[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*.{kt,kts}]\nend_of_line = lf\ninsert_final_newline = true\nmax_line_length = 140\nktlint_function_naming_ignore_when_annotated_with=Composable\n\n# Detekt orders imports correctly, while ktlint does not\nktlint_standard_import-ordering = disabled\n"
  },
  {
    "path": ".github/stale.yml",
    "content": "# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 60\n# Number of days of inactivity before a stale issue is closed\ndaysUntilClose: 7\n# Issues with these labels will never be considered stale\nexemptLabels:\n  - pinned\n  - security\n  - enhancement\n# Label to use when marking an issue as stale\nstaleLabel: wontfix\n# Comment to post when marking an issue as stale. Set to `false` to disable\nmarkComment: >\n  This issue has been automatically marked as stale because it has not had\n  recent activity. It will be closed if no further activity occurs. Thank you\n  for your contributions.\n# Comment to post when closing a stale issue. Set to `false` to disable\ncloseComment: true\n"
  },
  {
    "path": ".github/workflows/auto-approve.yml",
    "content": "name: Auto Approve\n\non: pull_request_target\n\njobs:\n  auto-approve:\n    runs-on: ubuntu-latest\n    permissions:\n      pull-requests: write\n    if: |\n      github.event.pull_request.head.repo.full_name == github.repository &&\n      github.actor == github.event.pull_request.user.login &&\n      contains(fromJson('[\"renovate[bot]\", \"igorwojda\"]'), github.actor)\n    steps:\n      - uses: hmarr/auto-approve-action@v4\n"
  },
  {
    "path": ".github/workflows/check.yml",
    "content": "name: Check\n\non:\n  push:\n    branches: [ main ] # Just in case main was not up to date while merging PR\n  pull_request:\n    types: [ opened, synchronize ]\n\n# Cancel previous runs on new push\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  build-debug:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: Build App\n        run: ./gradlew :app:assembleDebug --no-build-cache\n\n      - uses: actions/upload-artifact@v5\n        with:\n          name: app-debug\n          path: app/build/outputs/apk/debug/app-debug.apk\n\n  android-lint:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: lintDebug\n        run: ./gradlew lint\n\n      - uses: actions/upload-artifact@v5\n        if: always()\n        with:\n          name: android-lint-report\n          path: |\n            app/build/reports/lint-results*.html\n            feature/*/build/reports/lint-results*.html\n            library/*/build/reports/lint-results*.html\n\n  detekt:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: detekt\n        run: ./gradlew detektCheck\n\n      - uses: actions/upload-artifact@v5\n        if: always()\n        with:\n          name: detekt-report\n          path: |\n            build/reports/detekt/detekt.*\n            app/build/reports/detekt/detekt.*\n            feature/*/build/reports/detekt/detekt.*\n            library/*/build/reports/detekt/detekt.*\n            konsist-test/build/reports/detekt/detekt.*\n\n  konsist:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: konsist\n        run: ./gradlew konsist-test:test --rerun-tasks\n\n      - uses: actions/upload-artifact@v5\n        if: always()\n        with:\n          name: konsist-report\n          path: ./konsist-test/build/reports/*\n\n  spotless:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: spotlessCheck\n        run: ./gradlew spotlessCheck\n\n      - uses: actions/upload-artifact@v5\n        if: always()\n        with:\n          name: spotless-report\n          path: |\n            build/reports/spotless/*\n            app/build/reports/spotless/*\n            feature/*/build/reports/spotless/*\n            library/*/build/reports/spotless/*\n            konsist-test/build/reports/spotless/*\n\n  #  ui-test:\n  #    runs-on: macos-latest\n  #    steps:\n  #      - name: checkout\n  #        uses: actions/checkout@v4\n  #\n  #      - name: Set up JDK\n  #        uses: actions/setup-java@v4\n  #        with:\n  #          java-version: 17\n  #          distribution: 'zulu'\n  #\n  #      - name: Setup Gradle\n  #        uses: gradle/actions/setup-gradle@v4\n  #\n  #      - name: run ui tests\n  #        uses: reactivecircus/android-emulator-runner@v2\n  #        with:\n  #          api-level: 29\n  #          target: default\n  #          arch: x86\n  #          profile: Nexus 6\n  #          disable-animations: true\n  #          script: ./gradlew connectedCheck\n  #\n  #      - uses: actions/upload-artifact@v4\n  #        with:\n  #          name: ui-test-report\n  #          path: ./**/build/reports/androidTests/\n\n  unit-test:\n    runs-on: ubuntu-latest\n    steps:\n      - name: checkout\n        uses: actions/checkout@v5\n\n      - name: Set up JDK\n        uses: actions/setup-java@v5\n        with:\n          java-version: 17\n          distribution: 'zulu'\n\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n\n      - name: unitTest\n        run: ./gradlew test -x konsist-test:test\n\n      - uses: actions/upload-artifact@v5\n        if: always()\n        with:\n          name: unit-test-report\n          path: |\n            app/build/reports/tests/\n            feature/*/build/reports/tests/\n            library/*/build/reports/tests/\n"
  },
  {
    "path": ".github/workflows/claude-code-review.yml",
    "content": "name: Claude Code Review\n\non:\n  pull_request:\n    types: [opened, synchronize]\n    # Optional: Only run on specific file changes\n    # paths:\n    #   - \"src/**/*.ts\"\n    #   - \"src/**/*.tsx\"\n    #   - \"src/**/*.js\"\n    #   - \"src/**/*.jsx\"\n\njobs:\n  claude-review:\n    # Optional: Filter by PR author\n    # if: |\n    #   github.event.pull_request.user.login == 'external-contributor' ||\n    #   github.event.pull_request.user.login == 'new-developer' ||\n    #   github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'\n    \n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n      pull-requests: read\n      issues: read\n      id-token: write\n    \n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v5\n        with:\n          fetch-depth: 1\n\n      - name: Run Claude Code Review\n        id: claude-review\n        uses: anthropics/claude-code-action@v1\n        with:\n          claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}\n          prompt: |\n            Please review this pull request and provide feedback on:\n            - Code quality and best practices\n            - Potential bugs or issues\n            - Performance considerations\n            - Security concerns\n            - Test coverage\n            \n            Use the repository's CLAUDE.md for guidance on style and conventions. Be constructive and helpful in your feedback.\n\n            Use `gh pr comment` with your Bash tool to leave your review as a comment on the PR.\n          \n          # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md\n          # or https://docs.anthropic.com/en/docs/claude-code/sdk#command-line for available options\n          claude_args: '--allowed-tools \"Bash(./gradlew *),Bash(./gradlew konsist-test:*),Bash(./gradlew library:test-utils:*),Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)\"'\n\n"
  },
  {
    "path": ".github/workflows/claude.yml",
    "content": "name: Claude Code\n\non:\n  issue_comment:\n    types: [created]\n  pull_request_review_comment:\n    types: [created]\n  issues:\n    types: [opened, assigned]\n  pull_request_review:\n    types: [submitted]\n\njobs:\n  claude:\n    if: |\n      (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||\n      (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||\n      (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||\n      (github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))\n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n      pull-requests: read\n      issues: read\n      id-token: write\n      actions: read # Required for Claude to read CI results on PRs\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v5\n        with:\n          fetch-depth: 1\n\n      - name: Run Claude Code\n        id: claude\n        uses: anthropics/claude-code-action@v1\n        with:\n          claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}\n          \n          # This is an optional setting that allows Claude to read CI results on PRs\n          additional_permissions: |\n            actions: read\n\n          # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it.\n          # prompt: 'Update the pull request description to include a summary of changes.'\n\n          # Optional: Add claude_args to customize behavior and configuration\n          # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md\n          # or https://docs.anthropic.com/en/docs/claude-code/sdk#command-line for available options\n          # claude_args: '--model claude-opus-4-1-20250805 --allowed-tools Bash(gh pr:*)'\n\n"
  },
  {
    "path": ".gitignore",
    "content": "# Built application files\n*.apk\n*.ap_\n*.aab\n\n# Files for the ART/Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated files\nbin/\ngen/\nout/\n\n# Gradle files\n.gradle/\n\n# Build folders\n**/build/\n\n# Local configuration file (sdk path, etc)\nlocal.properties\n\n# Proguard folder generated by Eclipse\nproguard/\n\n# Log Files\n*.log\n\n# Android Studio Navigation editor temp files\n.navigation/\n\n# Android Studio captures folder\ncaptures/\n\n# IntelliJ\n*.iml\n.idea/\n\n# Google Services (e.g. APIs or Firebase)\ngoogle-services.json\n\n# Cache of project\n.gradletasknamecache\n\n#MacOS DS_Store\n**/.DS_Store\n\n# Kotlin\n*.salive\n\n# Claude Code\n.claude/\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, gender identity and expression, level of experience,\neducation, socio-economic status, nationality, personal appearance, race,\nreligion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n  advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n  address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at {{ email }}. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nWe appreciate contributions of any kind - new contributions\nare welcome whether it's through bug reports or new pull requests.\n\n## Tell us about enhancements and bugs\n\nPlease add an issue. We'll review it, add labels and reply when we get the chance.\n\n## See an issue you'd like to work on\n\nComment on the issue that you'd like to work on and we'll add the\n`claimed` label.  If you see the `claimed` label already on the issue you\nmight want to ask the contributor if they'd like some help.\n\n## Documentation needs updating\n\nGo right ahead! Just submit a pull request when you're done.\n\n## Pull Requests\n\nWe love pull requests from everyone:\n\n1. [Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this repository:\n2. Clone forked repository `git clone git@github.com:YOUR-USERNAME/android-showcase.git`\n3. Branch of the `main` branch.\n4. Make changes, push changes to your fork and\n   [submit a pull request](https://github.com/igorwojda/android-showcase/compare) against the `main` branch.\n\nAt this point you're waiting on us. We like to at least comment on pull requests within few days. We may suggest some\nchanges or improvements or alternatives.\n\nSome things that will increase the chance that your pull request is accepted:\n\n1. Write a [good commit message](https://chris.beams.io/posts/git-commit/)\n2. Make sure all tests and lint checks are passing (review them on the pull request page)\n3. Update [README](README.md) with any changes are needed\n4. Write tests (if needed)\n"
  },
  {
    "path": "DeveloperReadme.md",
    "content": "# Developer Readme\n\n## Detekt\n\n- [Detekt configuration](https://detekt.dev/docs/introduction/configurations/) contains link to `default-detekt-config.yml`.\n\n## Known Issues\n\n- AboutLibraries\n  - AboutLibraries `12.2.4` Gradle plugin does nto include test dependencies https://github.com/mikepenz/AboutLibraries/issues/1238\n  - AboutLibraries `13.0.0-rc01` Gradle plugin required Kotlin 2.2.0 https://github.com/mikepenz/AboutLibraries/issues/1237\n- Gradle \n  - Gradle `9.0` - Generated type-safe version catalogs accessors for `projcts` are not avialable inside `build-logic` module\n  - Gradle `9.0` - Generated type-safe version catalogs accessors for `libs` are not accessible from precompiled script plugin e.g. add(\"implementation\", libs.koin). Workaround is to use `implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))`.\n- Mockk \n  - Unable to mock some methods with implicit `continuation`\n  parameter in the `AlbumListViewModelTest` class ([Issue-957](https://github.com/mockk/mockk/issues/957))\n- Detekt\n  - The `UnnecessaryParentheses` rule was disabled https://github.com/detekt/detekt/issues/8668\n- Kotlin Plugin\n  - Auto-import (an import intention) for delegate does not work if the variable has the same name https://youtrack.jetbrains.com/issue/KTIJ-17403\n- Android Studio \n  - False positive \"Unused symbol\" for a custom Android application class referenced in `AndroidManifest.xml`\n  file ([KT-27971](https://youtrack.jetbrains.net/issue/KT-27971))\n- Coil \n  - No way to automatically retry image load, so some images may not be loaded when connection speed\n  is low ([Issue 132](https://github.com/coil-kt/coil/issues/132))\n"
  },
  {
    "path": "README.md",
    "content": "# 💎 Android Showcase 2.0\n\n[![Kotlin Version](https://img.shields.io/badge/Kotlin-2.x-blue.svg)](https://kotlinlang.org)\n[![AGP](https://img.shields.io/badge/AGP-8.x-blue?style=flat)](https://developer.android.com/studio/releases/gradle-plugin)\n[![Gradle](https://img.shields.io/badge/Gradle-9.x-blue?style=flat)](https://gradle.org)\n[![CodeFactor](https://www.codefactor.io/repository/github/igorwojda/android-showcase/badge)](https://www.codefactor.io/repository/github/igorwojda/android-showcase)\n\nA production-ready Android application demonstrating modern development practices and architectural patterns. This project showcases how to build scalable, maintainable, and testable Android applications using industry-standard tools and libraries.\n\nBuilt with **Clean Architecture** principles, this app serves as a comprehensive example of modular design, advanced Gradle configuration, and robust CI/CD practices. Perfect for teams looking to establish solid architectural foundations for large-scale Android projects.\n\n- [💎 Android Showcase 2.0](#-android-showcase-20)\n  - [Application Scope](#application-scope)\n  - [Tech-Stack](#tech-stack)\n  - [Architecture](#architecture)\n    - [Module Types and Dependencies](#module-types-and-dependencies)\n    - [Feature Module Structure](#feature-module-structure)\n      - [Presentation Layer](#presentation-layer)\n      - [Domain Layer](#domain-layer)\n      - [Data Layer](#data-layer)\n      - [Common Module Components](#common-module-components)\n    - [Data Flow](#data-flow)\n  - [Project Features](#project-features)\n    - [Development \\& Debugging](#development--debugging)\n    - [Custom Icons For Each Variant](#custom-icons-for-each-variant)\n    - [Themed Icons](#themed-icons)\n  - [Gradle Config](#gradle-config)\n    - [Dependency Management](#dependency-management)\n    - [Convention Plugins](#convention-plugins)\n    - [Type Safe Project Accessors](#type-safe-project-accessors)\n    - [Unified Version Configuration](#unified-version-configuration)\n      - [Java/JVM Version Configuration](#javajvm-version-configuration)\n    - [Generated type-safe version catalogs accessors in `build-logic` module](#generated-type-safe-version-catalogs-accessors-in-build-logic-module)\n    - [Gradle Configuration Cache](#gradle-configuration-cache)\n  - [Code Verification](#code-verification)\n    - [CI Pipeline](#ci-pipeline)\n    - [Pre-push Hooks](#pre-push-hooks)\n  - [Project Scope \\& Limitations](#project-scope--limitations)\n  - [Getting Started](#getting-started)\n  - [Roadmap](#roadmap)\n  - [Resources](#resources)\n  - [Contributing](#contributing)\n  - [Author](#author)\n  - [License](#license)\n  - [Animations License](#animations-license)\n\n## Application Scope\n\nA music discovery app built with Jetpack Compose that displays album information sourced from the [Last.fm API](https://www.last.fm/api). The application demonstrates real-world scenarios including network requests, local caching, navigation, and state management.\n\n**Features:**\n- **Album List** - Browse albums with search functionality\n- **Album Details** - View detailed album information and track listings  \n- **Favorites** - Save preferred albums (WIP)\n- **Profile** - User preferences and settings (WIP)\n\n<p>\n  <img src=\"misc/image/screen_album_list.png\" width=\"250\" />\n  <img src=\"misc/image/screen_album_detail.png\" width=\"250\" />\n  <img src=\"misc/image/screen_favorites.png\" width=\"250\" />\n  <img src=\"misc/image/screen_settings.png\" width=\"250\" />\n  <img src=\"misc/image/screen_open_source_libraries.png\" width=\"250\" />\n</p>\n\n## Tech-Stack\n\nBuilt with modern Android development tools and libraries, prioritizing, project structure stability and production-readiness.\n\n**Core Technologies:**\n- **[Kotlin 2.2+](https://kotlinlang.org/)** - Modern, expressive programming language\n  - **[Coroutines](https://kotlinlang.org/docs/coroutines-overview.html)** - Asynchronous programming\n  - **[Flow](https://kotlinlang.org/docs/flow.html)** - Reactive data streams\n  - **[KSP (Kotlin Symbol Processing)](https://kotlinlang.org/docs/ksp-overview.html)** - Kotlin Symbol Processing\n  - **[Serialization](https://kotlinlang.org/docs/serialization.html)** - JSON parsing\n\n**Android Jetpack:**\n- **[Compose](https://developer.android.com/jetpack/compose)** - Declarative UI framework\n- **[Navigation Compose](https://developer.android.com/jetpack/compose/navigation)** - Type-safe navigation\n- **[ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel)** - UI-related data management\n- **[Room](https://developer.android.com/jetpack/androidx/releases/room)** - Local database with SQLite\n- **[Core Splashscreen](https://developer.android.com/jetpack/androidx/releases/core#core_splashscreen_version_12_2)** - app Splashscreen\n\n**Networking & Images:**\n- **[Retrofit](https://square.github.io/retrofit/)** - HTTP client for API communication\n- **[Coil](https://github.com/coil-kt/coil)** - Image loading optimized for Compose\n\n**Dependency Injection:**\n- **[Koin](https://insert-koin.io/)** - Lightweight dependency injection framework\n\n**Architecture:**\n- **[Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html)** - Separation of concerns with defined layers\n- **Single Activity Architecture** - Modern navigation approach\n- **MVVM + MVI** - Reactive presentation layer pattern providing common UI state.\n- **Modular Design** - Feature-based modules for scalability\n\n**UI & Design:**\n- **[Material Design 3](https://m3.material.io/)** - Latest design system\n- **[Dynamic Theming](https://m3.material.io/styles/color/dynamic-color/overview)** - Wallpaper-based themes (Android 12+)\n- **[Dark Theme](https://material.io/develop/android/theming/dark)** - System-aware dark mode\n- **[Lottie](http://airbnb.io/lottie)** - Vector animations\n\n**Testing:**\n- **[JUnit 6](https://junit.org/)** - Modern testing framework\n- **[Mockk](https://mockk.io/)** - Kotlin-first mocking library\n- **[Kluent](https://github.com/MarkusAmshove/Kluent)** - Fluent assertion library\n- **[Espresso](https://developer.android.com/training/testing/espresso)** - UI testing (WIP)\n\n**Code Quality:**\n- **[Konsist](https://docs.konsist.lemonappdev.com/)** - Architecture and code structure convention tests\n- **[Ktlint](https://github.com/pinterest/ktlint)** - Kotlin code formatting and issue detection\n  - **[Ktlint Standard Rules](https://pinterest.github.io/ktlint/0.49.1/rules/standard/)** - set of custom rules for Jetpack Compose\n  - **[Nlopez Jetpack Compose Rules](https://mrmans0n.github.io/compose-rules/)** - set of custom rules for Jetpack Compose\n  - **[Twitter's Jetpack Compose Rules](https://twitter.github.io/compose-rules/)** - set of custom rules for Jetpack Compose\n- **[Detekt](https://github.com/arturbosch/detekt)** - Static analysis and complexity checks\n- **[Android Lint](http://tools.android.com/tips/lint)** - Android-specific code analysis\n- **[Spotless](https://github.com/diffplug/spotless)** - Code formatting enforcement\n\n**Build & CI:**\n- **[Gradle Kotlin DSL](https://docs.gradle.org/current/userguide/kotlin_dsl.html)** - Type-safe build scripts\n- **[Version Catalogs](https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog)** - Centralized dependency management\n- **[Convention Plugins](https://docs.gradle.org/current/samples/sample_convention_plugins.html)** - Shared build logic\n- **[Renovate](https://github.com/renovatebot/renovate)** - Automated dependency updates\n\n**GitHub Actions:**\n- **[Check](.github/workflows/check.yml)** - CI pipeline with build, lint, test, and code quality checks\n- **[Auto Approve](.github/workflows/auto-approve.yml)** - Auto-approval for trusted bot and maintainer PRs\n- **[Claude Code](.github/workflows/claude.yml)** - AI-powered code assistance and review\n- **[Claude Code Review](.github/workflows/claude-code-review.yml)** - Automated PR reviews using Claude\n\n**Gradle Plugins:**\n- **[Android Application](https://developer.android.com/build/releases/gradle-plugin)** (`com.android.application`) - Android app module configuration\n- **[Android Library](https://developer.android.com/build/releases/gradle-plugin)** (`com.android.library`) - Android library module configuration\n- **[Kotlin Android](https://kotlinlang.org/docs/gradle.html)** (`org.jetbrains.kotlin.android`) - Kotlin compilation for Android\n- **[Kotlin Serialization](https://kotlinlang.org/docs/serialization.html)** (`org.jetbrains.kotlin.plugin.serialization`) - JSON serialization support\n- **[Kotlin Compose Compiler](https://developer.android.com/jetpack/androidx/releases/compose-kotlin)** (`org.jetbrains.kotlin.plugin.compose`) - Compose compiler plugin\n- **[KSP](https://kotlinlang.org/docs/ksp-overview.html)** - Kotlin Symbol Processing\n- **[Detekt](https://detekt.dev/)** - Static code analysis\n- **[Spotless](https://github.com/diffplug/spotless)** - Code formatting\n- **[Test Logger](https://github.com/radarsh/gradle-test-logger-plugin)** - Enhanced test log output\n- **[Easylauncher](https://github.com/usefulness/easylauncher-gradle-plugin)** - Modify the launcher icon of each of your app-variants\n- **[AboutLibraries](https://github.com/mikepenz/AboutLibraries)** - collects dependency details, including licenses and visualize these in the app\n\n## Architecture\n\nThe project implements **Clean Architecture** with a modular approach, treating each feature as an independent, reusable component similar to a microservice. This design enables maintainability and scalability for large development teams.\n\n**Benefits of Modular Architecture:**\n- **Reusability** - Shared code across multiple app variants\n- **Separation of Concerns** - Clear module boundaries with explicit dependencies\n- **Parallel Development** - Teams can work on features independently\n- **Faster Build Times** - Incremental compilation and build caching\n- **Testability** - Isolated testing of individual components\n\n### Module Types and Dependencies\n\n![Module Dependencies](./misc/image/module_dependencies.png)\n\n**Module Types:**\n- **`app`** - Main application module containing navigation setup, DI configuration, and app-level components\n- **`feature-*`** - Feature modules (album, profile, favourite) containing feature-specific business logic  \n- **`feature-base`** - Shared foundation module providing common utilities and base classes\n- **`library-*`** - Utility modules for testing and shared functionality\n\n### Feature Module Structure\n\n`Clean Architecture` is implemented at the module level - each module contains its own set of Clean Architecture layers:\n\n![module_dependencies_layers](./misc/image/module_layers.png)\n\n> Notice that the `app` module and `library_x` modules structure differs a bit from the feature module structure.\n\nEach feature module contains 3 layers with a distinct set of responsibilities and common module components.\n\n![feature_structure](./misc/image/module_layers_details.png)\n\n#### Presentation Layer\n\nThis layer is closest to what the user sees on the screen.\n\nThe `presentation` layer mixes `MVVM` and `MVI` patterns:\n\n- `MVVM` - Jetpack `ViewModel` is used to encapsulate a `common UI state`. It exposes the `state` via observable state\n  holder (`Kotlin Flow`)\n- `MVI` - `action` modifies the `common UI state` and emits a new state to a view via `Kotlin Flow`\n\n> The `common state` is a single source of truth for each view. This solution derives from\n> [Unidirectional Data Flow](https://en.wikipedia.org/wiki/Unidirectional_Data_Flow_(computer_science)) and [Redux\n> principles](https://redux.js.org/introduction/three-principles).\n\nThis approach facilitates the creation of consistent states. The state is collected via `collectAsUiStateWithLifecycle`\nmethod. Flows collection happens in a lifecycle-aware manner, so\n[no resources are wasted](https://medium.com/androiddevelopers/consuming-flows-safely-in-jetpack-compose-cde014d0d5a3).\n\nStated is annotated with [Immutable](https://developer.android.com/reference/kotlin/androidx/compose/runtime/Immutable)\nannotation that is used by Jetpack compose to enable composition optimizations.\n\nComponents:\n\n- **Screen (Composable)** - observes common view state (through `Kotlin Flow`). Compose transform state (emitted by Kotlin\n  Flow) into application UI Consumes the state and transforms it into application UI (via `Jetpack Compose`). Pass user\n  interactions to `ViewModel`. Views are hard to test, so they should be as simple as possible.\n- **ViewModel** - emits (through `Kotlin Flow`) view state changes to the view and deals with user interactions (these\n  view models are not simply [POJO classes](https://en.wikipedia.org/wiki/Plain_old_Java_object)).\n- **ViewState** - common state for a single view\n- **StateTimeTravelDebugger** - logs actions and view state transitions to facilitate debugging.\n- **NavManager** - singleton that facilitates handling all navigation events inside `NavHostActivity` (instead of\n  separately, inside each view)\n\n#### Domain Layer\n\nThis is the core layer of the application. Notice that the `domain` layer is independent of any other layers. This\nallows making domain models and business logic independent from other layers. In other words, changes in other layers\nwill not affect the `domain` layer eg. changing the database (`data` layer) or screen UI (`presentation` layer) ideally will\nnot result in any code change within the `domain` layer.\n\nComponents:\n\n- **UseCase** - contains business logic\n- **DomainModel** - defines the core structure of the data that will be used within the application. This is the source\n  of truth for application data.\n- **Repository interface** - required to keep the `domain` layer independent from\n  the `data layer` ([Dependency inversion](https://en.wikipedia.org/wiki/Dependency_inversion_principle)).\n\n#### Data Layer\n\nEncapsulates application data. Provides the data to the `domain` layer eg. retrieves data from the internet and cache the\ndata in disk cache (when the device is offline).\n\nComponents:\n\n- **Repository** is exposing data to the `domain` layer. Depending on the application structure and quality of the\n  external API repository can also merge, filter, and transform the data. These operations intend to create\n  a high-quality data source for the `domain` layer. It is the responsibility of the Repository (one or more) to construct\n  Domain models by reading from the `Data Source` and accepting Domain models to be written to the `Data Source`\n- **Mapper** - maps `data model` to `domain model` (to keep `domain` layer independent from the `data` layer).\n\nThis application has two `Data Sources` - `Retrofit` (used for network access) and `Room` (local storage used to access\ndevice persistent memory). These data sources can be treated as an implicit sub-layer. Each data source consists of\nmultiple classes:\n\n- **Retrofit Service** - defines a set of API endpoints\n- **Retrofit Response Model** - definition of the network objects for a given endpoint (top-level model for the data\n  consists of `ApiModels`)\n- **Retrofit Api Data Model** - defines the network objects (sub-objects of the `Response Model`)\n- **Room Database** - persistence database to store app data\n- **Room DAO** - interact with the stored data\n- **Room Entity** - definition of the stored objects\n\nBoth `Retrofit API Data Models` and `Room Entities` contain annotations, so the given framework understands how to parse the\ndata into objects.\n\n#### Common Module Components\n\nEach module in the Android project contains several standard items that provide essential functionality and configuration:\n\nComponents:\n- **Gradle Build Script** - `build.gradle.kts` defining dependencies, build configurations, and plugins.\n- **Koin DI Module** - Dependency injection configuration\n- **Tests** - Unit tests (`test/`) and integration tests (`androidTest/`)\n- **Android Resources** - resources (`res/`) including strings, drawables, and assets.\n- **Android Manifest** - The `AndroidManifest.xml` file declaring module metadata.\n\n### Data Flow\n\nThe below diagram presents application data flow when a user interacts with the `album list screen`:\n\n![app_data_flow](./misc/image/app_data_flow.png)\n\n## Project Features\n\n### Development & Debugging\n\nTags ([LogTags](feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/util/LogTags.kt)) help filter and identify different types of logs during development and debugging.\n\nThe app provides detailed logging for development and debugging, with each log easily filterable by its tag:\n\n- `Navigation` - Navigation events and route changes\n![Navigation Logs](misc/image/logs_navigation.png)\n\n- `Action` - User actions and UI state modifications\n![Action Logs](misc/image/logs_action.png)\n\n- `Network` - Network requests, responses, and HTTP-related logs\n![Network Logs](misc/image/logs_network.png)\n\n### Custom Icons For Each Variant\n\nThanks to [Easylauncher Gradle plugin](https://github.com/usefulness/easylauncher-gradle-plugin) the `debug` build has custom icon label:\n\n<img src=\"./misc/image/application_icon_label.png\" alt=\"application_icon_label\" width=\"114\"/>\n\n### Themed Icons\n\nApp supports [Themed Icons](https://medium.com/@enikebraimoh/android-themed-icons-a-comprehensive-guide-3abb33ab51a7).\n\nLeft (classic icon), Right (themed icon):\n\n<img src=\"./misc/image/application_themed_icon.png\" alt=\"application_icon_label\" width=\"225\"/>\n\n## Gradle Config\n\n### Dependency Management\n\nGradle [versions catalog](https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog) is used as a centralized dependency management third-party dependency coordinates (group, artifact, version) are shared across all modules (Gradle projects and subprojects).\n\nGradle versions catalog consists of a few major sections:\n\n- `[versions]` - declare versions that can be referenced by all dependencies\n- `[libraries]` - declare the aliases to library coordinates\n- `[bundles]` - declare dependency bundles (groups)\n- `[plugins]` - declare Gradle plugin dependencies\n\nEach module uses convention a plugin, so common dependencies are shared without the need to add them explicitly in each module.\n\n### Convention Plugins\n\n[Convention plugins](https://docs.gradle.org/current/samples/sample_convention_plugins.html) standardize build configuration across modules by encapsulating common build logic into reusable plugins:\n\n- **[`Application Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ApplicationConventionPlugin.kt)** - Main application module configuration with Android app setup\n- **[`Feature Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/FeatureConventionPlugin.kt)** - Feature module configuration combining library and Kotlin conventions\n- **[`Library Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/LibraryConventionPlugin.kt)** - Android library module setup with common Android configuration\n- **[`Lotlin Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/KotlinConventionPlugin.kt)** - Kotlin compilation settings, toolchain, and compiler options\n- **[`Test Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/TestConventionPlugin.kt)** - Testing framework setup (JUnit, test logging, and test configurations)\n- **[`Test Library Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/TestConventionLibraryPlugin.kt)** - Testing setup specifically for library modules\n- **[`Detekt Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/DetektConventionPlugin.kt)** - Static code analysis configuration with Detekt\n- **[`Spotless Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/SpotlessConventionPlugin.kt)** - Code formatting and style enforcement with Spotless\n- **[`Easylauncher Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/EasyLauncherConventionPlugin.kt)** - App icon customization for different build variants\n- **[`AboutLibraries Convention`](./build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/AboutLibrariesConventionPlugin.kt)** - About libraries configuration\n\n### Type Safe Project Accessors\n\nEnables type-safe project references instead of error-prone string-based module paths:\n\n```kotlin\n// Before\nimplementation(project(\":feature:album\"))\n\n// After  \nimplementation(projects.feature.album)\n```\n\n### Unified Version Configuration\n\nAll dependency and Gradle plugin versions are defined in the TOML version catalog file ([libs.versions.toml](gradle/libs.versions.toml)).\n\n#### Java/JVM Version Configuration\n\nThe Java/JVM version is centralized across the project.\nIt is defined once in [`libs.versions.toml`](gradle/libs.versions.toml) file under the java entry.\nThe `generateJavaBuildConfig` task reads this value and generates a `JavaBuildConfig.kt` file with constants.\nThese constants are then used in Gradle convention plugins to configure both Java and Kotlin consistently:\n\n```kotlin\n compileOptions {\n     sourceCompatibility = JavaBuildConfig.JAVA_VERSION\n     targetCompatibility = JavaBuildConfig.JAVA_VERSION\n }\n \n kotlin {\n     compilerOptions {\n         jvmTarget = JavaBuildConfig.jvmTarget\n     }\n\n     jvmToolchain(JavaBuildConfig.jvmToolchainVersion)\n }\n```\n\n### Generated type-safe version catalogs accessors in `build-logic` module \n\nThe `build-logic` module provides type-safe access to version catalogs from within precompiled script plugins.\n\nThis is enabled via the `versionCatalogs` block in `build-logic/settings.gradle.kts`, which references the main version catalog file and `implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))` dependency in `build-logic/build.gradle.kts` file. \n\nThis setup allows you to use catalog dependencies in plugins, for example:\n\n```kotlin\nadd(\"implementation\", libs.timber)\n```\n\nAdditionally, extensions defined in [DependencyHandlerScope](build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ext/DependencyHandlerExt.kt) make the syntax more natural and equivalent to standard Gradle usage:\n\n```kotlin\nimplementation(libs.timber)\n```\n\n### Gradle Configuration Cache\n\nEnabled [Gradle Configuration Cache](https://docs.gradle.org/9.0.0/userguide/configuration_cache_enabling.html).\n\n## Code Verification\n\n**Quality Checks:**\n```bash\n./gradlew konsist-test:test --rerun-tasks          # Architecture & convention validation\n./gradlew lintDebug                               # Android lint analysis  \n./gradlew detektCheck                             # Code complexity & style analysis\n./gradlew spotlessCheck                           # Code formatting verification\n./gradlew testDebugUnitTest -x konsist-test:test   # Unit test execution (without Konsist tests)\n./gradlew connectedCheck                          # UI test execution (WIP)\n./gradlew :app:bundleDebug                        # Production build verification\n```\n\n**Auto-fix Commands:**\n```bash\n./gradlew detektApply             # Apply Detekt formatting fixes\n./gradlew spotlessApply           # Apply code formatting fixes\n./gradlew lintDebug               # Update lint baseline\n```\n\n### CI Pipeline\n\n[GitHub Actions](https://github.com/features/actions) workflows execute quality checks automatically:\n- **PR Validation** - All checks run in parallel on pull requests\n- **Main Branch Protection** - Post-merge validation ensures code quality\n- **Automated Dependency Updates** - Renovate bot creates PRs for dependency updates\n\nConfiguration: [`.github/workflows`](.github/workflows)\n\n### Pre-push Hooks\n\nOptional [Git hooks](https://git-scm.com/docs/githooks#_pre_push) can execute quality checks before pushing code, providing fast feedback during development.\n\n## Project Scope & Limitations\n\nThis showcase prioritizes **architecture, tooling, and development practices** over complex UI design. The interface uses Material Design 3 components but remains intentionally straightforward to focus on the underlying technical implementation.\n\n## Getting Started\n\n**Prerequisites:**\n- Android Studio Giraffe | 2022.3.1+ \n- JDK 17+\n- Android SDK 34+\n\n**Setup:**\n```bash\n# Clone the repository\ngit clone https://github.com/igorwojda/android-showcase.git\n\n# Open in Android Studio\n# File -> Open -> Select cloned directory\n```\n\n**Recommended IDE Plugins:**\n- [Detekt](https://plugins.jetbrains.com/plugin/10761-detekt) - Configure with [detekt.yml](detekt.yml)\n- [Kotlin](https://plugins.jetbrains.com/plugin/6954-kotlin) - Usually pre-installed\n- [Android](https://developer.android.com/studio) - Usually pre-installed\n\n## Roadmap\n\nActive development continues with focus on modern Android practices. View planned [enhancements](https://github.com/igorwojda/android-showcase/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Aenhancement) and contribute ideas.\n\n## Resources\n\n**Development Tools:**\n- [Material Theme Builder](https://m3.material.io/theme-builder#/dynamic) - Generate Material 3 dynamic themes\n- [Compose Material 3 Components](https://developer.android.com/reference/kotlin/androidx/compose/material3/package-summary) - Component reference\n- [Android Ecosystem Cheat Sheet](https://github.com/igorwojda/android-ecosystem-cheat-sheet) - 200+ essential Android tools\n- [Kotlin Coroutines Use Cases](https://github.com/LukasLechnerDev/Kotlin-Coroutine-Use-Cases-on-Android) - Practical coroutine examples\n\n**Recommended Projects:**\n- [Now in Android](https://github.com/android/nowinandroid) - Google's official modern Android showcase\n- [Android Architecture Blueprints](https://github.com/googlesamples/android-architecture) - Architecture pattern examples\n- [Compose Samples](https://github.com/android/compose-samples) - Official Jetpack Compose examples\n- [Kotlin Android Template](https://github.com/cortinico/kotlin-android-template) - Pre-configured project template\n- [Androidify](https://github.com/android/androidify) - Android's official character customization app\n- [WeatherXM Android](https://github.com/WeatherXM/wxm-android) - Weather data collection and rewards platform\n- [Songify](https://github.com/JamesBuhanan/Songify) - Spotify-inspired music streaming app\n- [Alkaa](https://github.com/igorescodro/alkaa) - Task management app with modern architecture\n- [KotlinConf App](https://github.com/JetBrains/kotlinconf-app) - JetBrains' official conference app\n- [Tivi](https://github.com/chrisbanes/tivi) - TV show tracking app by Chris Banes\n- [CatchUp](https://github.com/ZacSweers/CatchUp) - News aggregation app with modular architecture\n- [Heron](https://github.com/tunjid/heron) - Social media client showcasing modern Android development\n\n## Contributing\n\nContributions are welcome! Please check the [CONTRIBUTING.md](CONTRIBUTING.md) guidelines before submitting PRs.\n\n**Areas for Contribution:**\n- Feature implementations (Profile, Favorites screens)\n- UI/UX improvements and animations  \n- Performance optimizations\n- Testing coverage expansion\n- Documentation improvements\n\n## Author\n\n**Igor Wojda** - Senior Android Engineer\n\n[![Twitter Follow](https://img.shields.io/twitter/follow/igorwojda?style=social)](https://twitter.com/igorwojda)\n[![GitHub](https://img.shields.io/github/followers/igorwojda?style=social)](https://github.com/igorwojda)\n\n## License\n\n```\nMIT License\n\nCopyright (c) 2025 Igor Wojda\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and\nassociated documentation files (the \"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\n## Animations License\n\nFlowing animations are distributed under `Creative Commons License 2.0`:\n\n- [Error screen](https://lottiefiles.com/8049-error-screen) by Chetan Potnuru\n- [Building Screen](https://lottiefiles.com/1271-building-screen) by Carolina Cajazeira\n"
  },
  {
    "path": "app/build.gradle.kts",
    "content": "import com.igorwojda.showcase.buildlogic.ext.buildConfigFieldFromGradleProperty\n\nplugins {\n    id(\"com.igorwojda.showcase.convention.application\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.app\"\n\n    defaultConfig {\n        applicationId = \"com.igorwojda.showcase\"\n\n        versionCode = 1\n        versionName = \"0.0.1\" // SemVer (Major.Minor.Patch)\n\n        buildConfigFieldFromGradleProperty(project, \"apiBaseUrl\")\n        buildConfigFieldFromGradleProperty(project, \"apiToken\")\n    }\n\n    buildTypes {\n        getByName(\"release\") {\n            isMinifyEnabled = false\n            proguardFiles(\"proguard-android.txt\", \"proguard-rules.pro\")\n        }\n    }\n}\n\ndependencies {\n    // \"projects.\" Syntax utilizes Gradle TYPESAFE_PROJECT_ACCESSORS feature\n    implementation(projects.feature.base)\n    implementation(projects.feature.album)\n    implementation(projects.feature.settings)\n    implementation(projects.feature.favourite)\n}\n"
  },
  {
    "path": "app/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile"
  },
  {
    "path": "app/src/debug/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <application android:networkSecurityConfig=\"@xml/network_security_config\" />\n\n</manifest>\n"
  },
  {
    "path": "app/src/debug/res/xml/network_security_config.xml",
    "content": "<network-security-config>\n    <domain-config cleartextTrafficPermitted=\"true\">\n        <domain includeSubdomains=\"true\">ws.audioscrobbler.com</domain>\n    </domain-config>\n    <debug-overrides>\n        <trust-anchors>\n            <!-- Trust user added CAs.\n            Enables usage of Charles Proxy to review the traffic (debug build variant only).\n            See: https://www.charlesproxy.com/documentation/using-charles/ssl-certificates/\n            -->\n            <certificates src=\"user\" />\n        </trust-anchors>\n    </debug-overrides>\n</network-security-config>\n"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <uses-permission android:name=\"android.permission.INTERNET\" />\n\n    <!--\n    Data backup:\n    dataExtractionRules - API 31+\n    allowBackup and fullBackupContent - API < 31\n    -->\n    <application\n            android:name=\".ShowcaseApplication\"\n            android:allowBackup=\"false\"\n            android:fullBackupContent=\"false\"\n            android:dataExtractionRules=\"@xml/data_extraction_rules\"\n            android:icon=\"@mipmap/ic_launcher\"\n            android:label=\"@string/app_name\"\n            android:roundIcon=\"@mipmap/ic_launcher_round\"\n            android:supportsRtl=\"true\"\n            android:theme=\"@style/Theme.Showcase\"\n            android:usesCleartextTraffic=\"true\">\n\n        <activity\n                android:name=\"com.igorwojda.showcase.app.presentation.MainShowcaseActivity\"\n                android:exported=\"true\"\n                android:theme=\"@style/Theme.Showcase.Splash\">\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n                <action android:name=\"android.intent.action.VIEW\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/AppKoinModule.kt",
    "content": "package com.igorwojda.showcase.app\n\nimport com.igorwojda.showcase.app.data.api.AuthenticationInterceptor\nimport com.igorwojda.showcase.app.data.api.UserAgentInterceptor\nimport com.igorwojda.showcase.feature.base.data.retrofit.ApiResultAdapterFactory\nimport com.jakewharton.retrofit2.converter.kotlinx.serialization.asConverterFactory\nimport kotlinx.serialization.ExperimentalSerializationApi\nimport okhttp3.MediaType.Companion.toMediaType\nimport okhttp3.OkHttpClient\nimport okhttp3.logging.HttpLoggingInterceptor\nimport org.koin.core.module.dsl.singleOf\nimport org.koin.dsl.module\nimport retrofit2.Retrofit\nimport timber.log.Timber\n\nval appModule =\n    module {\n\n        single { AuthenticationInterceptor(BuildConfig.GRADLE_API_TOKEN) }\n\n        singleOf(::UserAgentInterceptor)\n\n        single {\n            HttpLoggingInterceptor { message ->\n                Timber.d(\"Http: $message\")\n            }.apply {\n                level = HttpLoggingInterceptor.Level.BODY\n            }\n        }\n\n        /*\n         * OkHttp logging interceptor with custom Timber logger.\n         *\n         * By default, HttpLoggingInterceptor uses the calling class name as the log tag which clutters Logcat and makes filtering harder.\n         *\n         * This custom configuration ensures:\n         * - All HTTP logs are tagged consistently as `\"Network\"`.\n         * - Logs are printed through Timber (instead of Android's `Log`).\n         * - Logging level is set to BODY to include headers and payloads.\n         */\n        single {\n            HttpLoggingInterceptor { message ->\n                Timber.tag(\"Network\").d(message)\n            }.apply {\n                /*\n                Use BODY logging only in debug builds.\n                Even if Timber.DebugTree() is planted only in debug, the interceptor still\n                reads/constructs request/response bodies when level = BODY.\n                This adds unnecessary overhead and may leak sensitive data if any logger\n                is active in production. Setting NONE in release avoids both risks.\n                 */\n                level =\n                    if (BuildConfig.DEBUG) {\n                        HttpLoggingInterceptor.Level.BODY\n                    } else {\n                        HttpLoggingInterceptor.Level.NONE\n                    }\n            }\n        }\n\n        single {\n            OkHttpClient\n                .Builder()\n                .apply {\n                    if (BuildConfig.DEBUG) {\n                        addInterceptor(get<HttpLoggingInterceptor>())\n                    }\n                    addInterceptor(get<AuthenticationInterceptor>())\n                    addInterceptor(get<UserAgentInterceptor>())\n                }.build()\n        }\n\n        single {\n            val contentType = \"application/json\".toMediaType()\n\n            val json =\n                kotlinx.serialization.json.Json {\n                    // By default Kotlin serialization will serialize all of the keys present in JSON object and throw an\n                    // exception if given key is not present in the Kotlin class. This flag allows to ignore JSON fields\n                    ignoreUnknownKeys = true\n                }\n\n            @OptIn(ExperimentalSerializationApi::class)\n            Retrofit\n                .Builder()\n                .baseUrl(BuildConfig.GRADLE_API_BASE_URL)\n                .client(get())\n                .addConverterFactory(json.asConverterFactory(contentType))\n                .addCallAdapterFactory(ApiResultAdapterFactory())\n                .build()\n        }\n    }\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/ShowcaseApplication.kt",
    "content": "package com.igorwojda.showcase.app\n\nimport android.app.Application\nimport com.igorwojda.showcase.feature.album.featureAlbumModules\nimport com.igorwojda.showcase.feature.favourite.featureFavouriteModules\nimport com.igorwojda.showcase.feature.settings.featureSettingsModules\nimport org.koin.android.ext.koin.androidContext\nimport org.koin.android.ext.koin.androidLogger\nimport org.koin.core.context.GlobalContext\nimport timber.log.Timber\n\nclass ShowcaseApplication : Application() {\n    override fun onCreate() {\n        super.onCreate()\n\n        initKoin()\n        initTimber()\n    }\n\n    private fun initKoin() {\n        GlobalContext.startKoin {\n            androidLogger()\n            androidContext(this@ShowcaseApplication)\n\n            modules(appModule)\n            modules(featureFavouriteModules)\n            modules(featureAlbumModules)\n            modules(featureSettingsModules)\n        }\n    }\n\n    private fun initTimber() {\n        if (BuildConfig.DEBUG) {\n            Timber.plant(Timber.DebugTree())\n        }\n    }\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/data/api/AuthenticationInterceptor.kt",
    "content": "package com.igorwojda.showcase.app.data.api\n\nimport okhttp3.Interceptor\nimport okhttp3.Response\n\nclass AuthenticationInterceptor(\n    private val apiKey: String,\n) : Interceptor {\n    override fun intercept(chain: Interceptor.Chain): Response =\n        chain.request().let {\n            val url =\n                it.url\n                    .newBuilder()\n                    .addQueryParameter(\"api_key\", apiKey)\n                    .addQueryParameter(\"format\", \"json\")\n                    .build()\n\n            val newRequest =\n                it\n                    .newBuilder()\n                    .url(url)\n                    .build()\n\n            chain.proceed(newRequest)\n        }\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/data/api/UserAgentInterceptor.kt",
    "content": "package com.igorwojda.showcase.app.data.api\n\nimport com.igorwojda.showcase.app.BuildConfig\nimport okhttp3.Interceptor\nimport okhttp3.Response\n\n/*\n * Adds a User-Agent header to the request. The header follows this format:\n * <AppName>/<version> Dalvik/<version> (Linux; U; Android <android version>; <device ID> Build/<buildtag>)\n *\n * See user agents in mobile apps: https://www.scientiamobile.com/correctly-form-user-agents-for-mobile-apps\n * See testing user agent: https://faisalman.github.io/ua-parser-js/\n */\nclass UserAgentInterceptor : Interceptor {\n    private val userAgent = \"showcase/${BuildConfig.VERSION_NAME} ${System.getProperty(\"http.agent\")}\"\n\n    override fun intercept(chain: Interceptor.Chain): Response =\n        chain\n            .request()\n            .newBuilder()\n            .header(\"User-Agent\", userAgent)\n            .build()\n            .let { chain.proceed(it) }\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/presentation/BottomNavigationBar.kt",
    "content": "package com.igorwojda.showcase.app.presentation\n\nimport androidx.annotation.DrawableRes\nimport androidx.annotation.StringRes\nimport androidx.compose.material3.Icon\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.NavigationBar\nimport androidx.compose.material3.NavigationBarItem\nimport androidx.compose.material3.NavigationBarItemDefaults\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.getValue\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.painterResource\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport androidx.navigation.NavController\nimport androidx.navigation.compose.currentBackStackEntryAsState\nimport androidx.navigation.compose.rememberNavController\nimport com.igorwojda.showcase.app.R\n\n@Composable\nfun BottomNavigationBar(\n    navController: NavController,\n    modifier: Modifier = Modifier,\n) {\n    val navigationItems = getBottomNavigationItems()\n\n    val navBackStackEntry by navController.currentBackStackEntryAsState()\n    val currentRoute = navBackStackEntry?.destination?.route\n\n    val selectedNavigationIndex = getSelectedNavigationIndex(currentRoute, navigationItems)\n\n    NavigationBar(\n        modifier = modifier,\n    ) {\n        navigationItems.forEachIndexed { index, item ->\n            NavigationBarItem(\n                selected = selectedNavigationIndex == index,\n                onClick = {\n                    navController.navigate(item.route) {\n                        popUpTo(0)\n                        restoreState = true // Restores previous state if returning\n                    }\n                },\n                icon = {\n                    Icon(\n                        painter = painterResource(item.iconRes),\n                        contentDescription = stringResource(item.titleRes),\n                    )\n                },\n                label = {\n                    Text(\n                        stringResource(item.titleRes),\n                    )\n                },\n                colors =\n                    NavigationBarItemDefaults.colors(\n                        selectedIconColor = MaterialTheme.colorScheme.surface,\n                        indicatorColor = MaterialTheme.colorScheme.primary,\n                    ),\n            )\n        }\n    }\n}\n\nprivate fun getBottomNavigationItems() =\n    listOf(\n        NavigationBarItem(\n            R.string.bottom_navigation_albums,\n            R.drawable.ic_music_library,\n            NavigationRoute.AlbumList,\n        ),\n        NavigationBarItem(\n            R.string.bottom_navigation_favorites,\n            R.drawable.ic_favorite,\n            NavigationRoute.Favourites,\n        ),\n        NavigationBarItem(\n            R.string.bottom_navigation_settings,\n            R.drawable.ic_settings,\n            NavigationRoute.Settings,\n        ),\n    )\n\n/*\nReturns the index of the selected bottom menu item based on the current route.\nIf no match is found, it defaults to the first item (index 0).\n*/\nprivate fun getSelectedNavigationIndex(\n    currentRoute: String?,\n    navigationItems: List<NavigationBarItem>,\n): Int =\n    navigationItems\n        .indexOfFirst { item ->\n            when (currentRoute) {\n                null -> false\n                NavigationRoute.AlbumDetail::class.qualifiedName -> item.route is NavigationRoute.AlbumList\n                NavigationRoute.AboutLibraries::class.qualifiedName -> item.route is NavigationRoute.Settings\n                else -> item.route::class.qualifiedName == currentRoute\n            }\n        }.takeIf { it >= 0 } ?: 0\n\ndata class NavigationBarItem(\n    @StringRes val titleRes: Int,\n    @DrawableRes val iconRes: Int,\n    val route: NavigationRoute,\n)\n\n@Preview\n@Composable\nprivate fun BottomNavigationBarPreview() {\n    BottomNavigationBar(\n        navController = rememberNavController(),\n    )\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/presentation/MainShowcaseActivity.kt",
    "content": "package com.igorwojda.showcase.app.presentation\n\nimport android.os.Build\nimport android.os.Bundle\nimport androidx.activity.ComponentActivity\nimport androidx.activity.compose.setContent\nimport androidx.compose.foundation.isSystemInDarkTheme\nimport androidx.compose.material3.ColorScheme\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.darkColorScheme\nimport androidx.compose.material3.dynamicDarkColorScheme\nimport androidx.compose.material3.dynamicLightColorScheme\nimport androidx.compose.material3.lightColorScheme\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.platform.LocalContext\nimport androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen\n\nclass MainShowcaseActivity : ComponentActivity() {\n    override fun onCreate(savedInstanceState: Bundle?) {\n        installSplashScreen()\n\n        super.onCreate(savedInstanceState)\n\n        setContent {\n            MaterialTheme(colorScheme = getColorScheme()) {\n                MainShowcaseScreen()\n            }\n        }\n    }\n\n    @Composable\n    private fun getColorScheme(): ColorScheme {\n        val darkTheme: Boolean = isSystemInDarkTheme()\n        val dynamicColor: Boolean = Build.VERSION.SDK_INT >= Build.VERSION_CODES.S\n\n        val context = LocalContext.current\n        return when {\n            dynamicColor -> if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)\n            darkTheme -> darkColorScheme()\n            else -> lightColorScheme()\n        }\n    }\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/presentation/MainShowcaseScreen.kt",
    "content": "package com.igorwojda.showcase.app.presentation\n\nimport android.os.Bundle\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.material3.Scaffold\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Modifier\nimport androidx.navigation.NavController\nimport androidx.navigation.NavDestination\nimport androidx.navigation.compose.NavHost\nimport androidx.navigation.compose.composable\nimport androidx.navigation.compose.rememberNavController\nimport androidx.navigation.createGraph\nimport androidx.navigation.toRoute\nimport com.igorwojda.showcase.app.BuildConfig\nimport com.igorwojda.showcase.app.presentation.util.NavigationDestinationLogger\nimport com.igorwojda.showcase.feature.album.presentation.screen.albumdetail.AlbumDetailScreen\nimport com.igorwojda.showcase.feature.album.presentation.screen.albumlist.AlbumListScreen\nimport com.igorwojda.showcase.feature.favourite.presentation.screen.favourite.FavouriteScreen\nimport com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries.AboutLibrariesScreen\nimport com.igorwojda.showcase.feature.settings.presentation.screen.settings.SettingsScreen\n\n@Composable\nfun MainShowcaseScreen(modifier: Modifier = Modifier) {\n    val navController = rememberNavController()\n\n    if (BuildConfig.DEBUG) {\n        addOnDestinationChangedListener(navController)\n    }\n\n    Scaffold(\n        modifier = modifier.fillMaxSize(),\n        bottomBar = { BottomNavigationBar(navController) },\n    ) { innerPadding ->\n\n        val graph =\n            navController.createGraph(startDestination = NavigationRoute.AlbumList) {\n                composable<NavigationRoute.AlbumList> {\n                    AlbumListScreen(\n                        // artistName: String, albumName: String, mbId: String?\n                        onNavigateToAlbumDetail = { artistName, albumName, albumMbId ->\n                            navController.navigate(\n                                NavigationRoute.AlbumDetail(artistName, albumName, albumMbId),\n                            )\n                        },\n                    )\n                }\n                composable<NavigationRoute.AlbumDetail> { backStackEntry ->\n                    // Retrieve typed args\n                    val args = backStackEntry.toRoute<NavigationRoute.AlbumDetail>()\n\n                    AlbumDetailScreen(\n                        albumName = args.albumName,\n                        artistName = args.artistName,\n                        albumMbId = args.albumMbId,\n                        onBackClick = {\n                            navController.popBackStack()\n                        },\n                    )\n                }\n                composable<NavigationRoute.Favourites> {\n                    FavouriteScreen()\n                }\n                composable<NavigationRoute.Settings> {\n                    SettingsScreen(\n                        onNavigateToAboutLibraries = {\n                            navController.navigate(NavigationRoute.AboutLibraries)\n                        },\n                    )\n                }\n                composable<NavigationRoute.AboutLibraries> {\n                    AboutLibrariesScreen(\n                        onBackClick = {\n                            navController.popBackStack()\n                        },\n                    )\n                }\n            }\n        NavHost(\n            navController = navController,\n            graph = graph,\n            modifier = Modifier.padding(innerPadding),\n        )\n    }\n}\n\nprivate fun addOnDestinationChangedListener(navController: NavController) {\n    navController.addOnDestinationChangedListener(\n        object : NavController.OnDestinationChangedListener {\n            override fun onDestinationChanged(\n                controller: NavController,\n                destination: NavDestination,\n                arguments: Bundle?,\n            ) {\n                NavigationDestinationLogger.logDestinationChange(destination, arguments)\n            }\n        },\n    )\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/presentation/NavigationRoute.kt",
    "content": "package com.igorwojda.showcase.app.presentation\n\nimport kotlinx.serialization.Serializable\n\nsealed interface NavigationRoute {\n    @Serializable\n    data object AlbumList : NavigationRoute\n\n    @Serializable\n    data class AlbumDetail(\n        val albumName: String,\n        val artistName: String,\n        val albumMbId: String?,\n    ) : NavigationRoute\n\n    @Serializable\n    data object Favourites : NavigationRoute\n\n    @Serializable\n    data object Settings : NavigationRoute\n\n    @Serializable\n    data object AboutLibraries : NavigationRoute\n}\n"
  },
  {
    "path": "app/src/main/kotlin/com/igorwojda/showcase/app/presentation/util/NavigationDestinationLogger.kt",
    "content": "package com.igorwojda.showcase.app.presentation.util\n\nimport android.os.Bundle\nimport androidx.navigation.NavDestination\nimport com.igorwojda.showcase.app.presentation.NavigationRoute\nimport com.igorwojda.showcase.feature.base.util.TimberLogTags\nimport timber.log.Timber\n\nobject NavigationDestinationLogger {\n    fun logDestinationChange(\n        destination: NavDestination,\n        arguments: Bundle?,\n    ) {\n        val className = NavigationRoute::class.simpleName\n        val destinationRoute = destination.route?.substringAfter(\"$className.\") ?: \"Unknown\"\n        val destinationId = destination.id\n        val destinationLabel = destination.label ?: \"No Label\"\n\n        val logMessage =\n            buildString {\n                appendLine(\"Navigation destination changed:\")\n                appendLine(\"\\tRoute: $destinationRoute\")\n                appendLine(\"\\tID: $destinationId\")\n                appendLine(\"\\tLabel: $destinationLabel\")\n\n                arguments?.let { bundle ->\n                    if (!bundle.isEmpty) {\n                        appendLine(\"   Arguments:\")\n                        bundle.keySet().forEach { key ->\n                            val value = getValueFromBundle(bundle, key) ?: \"null\"\n                            appendLine(\"\\t\\t$key: $value\")\n                        }\n                    }\n                }\n            }\n\n        Timber.tag(TimberLogTags.NAVIGATION).d(logMessage)\n    }\n\n    /**\n     * Retrieves a value from Bundle using Android Navigation supported types.\n     * Navigation supports: String, Int, Long, Float, Boolean, Parcelable, Serializable, and their arrays.\n     *\n     * @return String representation of the value, or null if no matching type found\n     */\n    private fun getValueFromBundle(\n        bundle: Bundle,\n        key: String,\n    ): String? =\n        bundle.getString(key)?.let { \"\\\"$it\\\"\" }\n            ?: runCatching { bundle.getInt(key) }.getOrNull()?.toString()\n            ?: runCatching { bundle.getLong(key) }.getOrNull()?.toString()\n            ?: runCatching { bundle.getFloat(key) }.getOrNull()?.toString()\n            ?: runCatching { bundle.getBoolean(key) }.getOrNull()?.toString()\n            ?: bundle.getStringArray(key)?.contentToString()\n            ?: bundle.getIntArray(key)?.contentToString()\n            ?: bundle.getLongArray(key)?.contentToString()\n            ?: bundle.getFloatArray(key)?.contentToString()\n            ?: bundle.getBooleanArray(key)?.contentToString()\n}\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_favorite.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n    android:viewportWidth=\"960\"\n    android:viewportHeight=\"960\">\n  <path\n      android:pathData=\"m480,840 l-58,-52q-101,-91 -167,-157T150,512.5Q111,460 95.5,416T80,326q0,-94 63,-157t157,-63q52,0 99,22t81,62q34,-40 81,-62t99,-22q94,0 157,63t63,157q0,46 -15.5,90T810,512.5Q771,565 705,631T538,788l-58,52ZM480,732q96,-86 158,-147.5t98,-107q36,-45.5 50,-81t14,-70.5q0,-60 -40,-100t-100,-40q-47,0 -87,26.5T518,280h-76q-15,-41 -55,-67.5T300,186q-60,0 -100,40t-40,100q0,35 14,70.5t50,81q36,45.5 98,107T480,732ZM480,459Z\"\n      android:fillColor=\"#e3e3e3\"/>\n</vector>\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_foreground.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:width=\"108dp\"\n        android:height=\"108dp\"\n        android:viewportWidth=\"45.47177\"\n        android:viewportHeight=\"45.47177\"\n        android:tint=\"#FB3430\">\n    <group android:translateX=\"10.735885\"\n           android:translateY=\"10.735885\">\n        <path\n            android:fillColor=\"#FF000000\"\n            android:pathData=\"M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4V7h4V3h-6z\"/>\n    </group>\n</vector>\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_foreground_themed.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:width=\"108dp\"\n        android:height=\"108dp\"\n        android:viewportWidth=\"45.47177\"\n        android:viewportHeight=\"45.47177\">\n    <group android:translateX=\"10.735885\"\n           android:translateY=\"10.735885\">\n        <path\n            android:fillColor=\"#FFFFFF\"\n            android:pathData=\"M12,3v10.55c-0.59,-0.34 -1.27,-0.55 -2,-0.55 -2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4V7h4V3h-6z\"/>\n    </group>\n</vector>"
  },
  {
    "path": "app/src/main/res/drawable/ic_music_library.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n    android:viewportWidth=\"960\"\n    android:viewportHeight=\"960\">\n  <path\n      android:pathData=\"M500,600q42,0 71,-29t29,-71v-220h120v-80L560,200v220q-13,-10 -28,-15t-32,-5q-42,0 -71,29t-29,71q0,42 29,71t71,29ZM320,720q-33,0 -56.5,-23.5T240,640v-480q0,-33 23.5,-56.5T320,80h480q33,0 56.5,23.5T880,160v480q0,33 -23.5,56.5T800,720L320,720ZM320,640h480v-480L320,160v480ZM160,880q-33,0 -56.5,-23.5T80,800v-560h80v560h560v80L160,880ZM320,160v480,-480Z\"\n      android:fillColor=\"#e3e3e3\"/>\n</vector>\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_settings.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n    android:viewportWidth=\"960\"\n    android:viewportHeight=\"960\">\n  <path\n      android:pathData=\"m370,880 l-16,-128q-13,-5 -24.5,-12T307,725l-119,50L78,585l103,-78q-1,-7 -1,-13.5v-27q0,-6.5 1,-13.5L78,375l110,-190 119,50q11,-8 23,-15t24,-12l16,-128h220l16,128q13,5 24.5,12t22.5,15l119,-50 110,190 -103,78q1,7 1,13.5v27q0,6.5 -2,13.5l103,78 -110,190 -118,-50q-11,8 -23,15t-24,12L590,880L370,880ZM440,800h79l14,-106q31,-8 57.5,-23.5T639,633l99,41 39,-68 -86,-65q5,-14 7,-29.5t2,-31.5q0,-16 -2,-31.5t-7,-29.5l86,-65 -39,-68 -99,42q-22,-23 -48.5,-38.5T533,266l-13,-106h-79l-14,106q-31,8 -57.5,23.5T321,327l-99,-41 -39,68 86,64q-5,15 -7,30t-2,32q0,16 2,31t7,30l-86,65 39,68 99,-42q22,23 48.5,38.5T427,694l13,106ZM482,620q58,0 99,-41t41,-99q0,-58 -41,-99t-99,-41q-59,0 -99.5,41T342,480q0,58 40.5,99t99.5,41ZM480,480Z\"\n      android:fillColor=\"#e3e3e3\"/>\n</vector>\n"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi/ic_launcher.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- References the base adaptive icon without monochrome support -->\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <background android:drawable=\"@color/ic_launcher_background\"/>\n    <foreground android:drawable=\"@drawable/ic_launcher_foreground\"/>\n</adaptive-icon>\n"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi/ic_launcher_round.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Base round adaptive icon without monochrome support -->\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <background android:drawable=\"@color/ic_launcher_background\"/>\n    <foreground android:drawable=\"@drawable/ic_launcher_foreground\"/>\n</adaptive-icon>\n"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Extends the base adaptive icon with monochrome support for Android 13+ -->\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <background android:drawable=\"@color/ic_launcher_background\"/>\n    <foreground android:drawable=\"@drawable/ic_launcher_foreground\"/>\n    <monochrome android:drawable=\"@drawable/ic_launcher_foreground_themed\"/>\n</adaptive-icon>"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v33/ic_launcher_round.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Round adaptive icon with monochrome support for Android 13+ -->\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <background android:drawable=\"@color/ic_launcher_background\"/>\n    <foreground android:drawable=\"@drawable/ic_launcher_foreground\"/>\n    <monochrome android:drawable=\"@drawable/ic_launcher_foreground_themed\"/>\n</adaptive-icon>"
  },
  {
    "path": "app/src/main/res/values/colors.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Splash Screen Colors -->\n    <color name=\"splash_background\">#FFFFFF</color>\n    <color name=\"splash_icon_background\">#3DDC84</color>\n</resources>"
  },
  {
    "path": "app/src/main/res/values/ic_launcher_background.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"ic_launcher_background\">#000000</color>\n</resources>"
  },
  {
    "path": "app/src/main/res/values/strings.xml",
    "content": "<resources>\n    <string name=\"app_name\">Showcase</string>\n\n    <string name=\"bottom_navigation_albums\">Albums</string>\n    <string name=\"bottom_navigation_favorites\">Favorites</string>\n    <string name=\"bottom_navigation_settings\">Settings</string>\n</resources>\n"
  },
  {
    "path": "app/src/main/res/values/styles.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Splash Screen theme for pre-Android 12 compatibility -->\n    <style name=\"Theme.Showcase.Splash\" parent=\"Theme.SplashScreen\">\n        <item name=\"windowSplashScreenBackground\">@color/splash_background</item>\n        <item name=\"windowSplashScreenAnimatedIcon\">@drawable/ic_launcher_foreground</item>\n        <item name=\"windowSplashScreenAnimationDuration\">1000</item>\n        <item name=\"windowSplashScreenIconBackgroundColor\">@color/splash_icon_background</item>\n        <item name=\"postSplashScreenTheme\">@style/Theme.Showcase</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "app/src/main/res/xml/data_extraction_rules.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?><!--\n   Sample data extraction rules file; uncomment and customize as necessary.\n   See https://developer.android.com/about/versions/12/backup-restore#xml-changes\n   for details.\n-->\n<data-extraction-rules>\n    <cloud-backup>\n        <exclude domain=\"root\" />\n        <exclude domain=\"file\" />\n        <exclude domain=\"database\" />\n        <exclude domain=\"sharedpref\" />\n        <exclude domain=\"external\" />\n    </cloud-backup>\n    <device-transfer>\n        <exclude domain=\"root\" />\n        <exclude domain=\"file\" />\n        <exclude domain=\"database\" />\n        <exclude domain=\"sharedpref\" />\n        <exclude domain=\"external\" />\n    </device-transfer>\n</data-extraction-rules>\n"
  },
  {
    "path": "build-logic/build.gradle.kts",
    "content": "import org.jetbrains.kotlin.gradle.dsl.JvmTarget\n\nplugins {\n    `kotlin-dsl`\n}\n\ngroup = \"com.igorwojda.showcase.buildlogic\"\n\n/*\nConfigure the build-logic plugins to target JDK from version catalog\nThis matches the JDK used to build the project, and is not related to what is running on device.\n*/\nval javaVersion =\n    libs\n        .versions\n        .java\n        .get()\n\nkotlin {\n    compilerOptions {\n        jvmTarget = JvmTarget.fromTarget(javaVersion)\n    }\n\n    jvmToolchain(javaVersion.toInt())\n}\n\ndependencies {\n    implementation(libs.android.gradlePlugin)\n    implementation(libs.kotlin.gradlePlugin)\n    implementation(libs.ksp.gradlePlugin)\n    implementation(libs.spotless.gradlePlugin)\n    implementation(libs.detekt.gradlePlugin)\n    implementation(libs.test.logger.gradlePlugin)\n    implementation(libs.compose.gradlePlugin)\n    implementation(libs.junit5.gradlePlugin)\n    implementation(libs.easy.launcher.gradlePlugin)\n    implementation(libs.about.libraries.gradlePlugin)\n\n    /*\n    Expose generated type-safe version catalogs accessors accessible from precompiled script plugins\n    e.g. add(\"implementation\", libs.koin)\n    https://github.com/gradle/gradle/issues/15383\n     */\n    implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))\n}\n\ntasks {\n    validatePlugins {\n        enableStricterValidation = true\n        failOnWarning = true\n    }\n}\n\ngradlePlugin {\n    plugins {\n        register(\"applicationConvention\") {\n            id = \"com.igorwojda.showcase.convention.application\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.ApplicationConventionPlugin\"\n        }\n\n        register(\"featureConvention\") {\n            id = \"com.igorwojda.showcase.convention.feature\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.FeatureConventionPlugin\"\n        }\n\n        register(\"libraryConvention\") {\n            id = \"com.igorwojda.showcase.convention.library\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.LibraryConventionPlugin\"\n        }\n\n        register(\"kotlinConvention\") {\n            id = \"com.igorwojda.showcase.convention.kotlin\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.KotlinConventionPlugin\"\n        }\n\n        register(\"testConvention\") {\n            id = \"com.igorwojda.showcase.convention.test\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.TestConventionPlugin\"\n        }\n\n        register(\"testLibraryConvention\") {\n            id = \"com.igorwojda.showcase.convention.test.library\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.TestConventionLibraryPlugin\"\n        }\n\n        register(\"spotlessConvention\") {\n            id = \"com.igorwojda.showcase.convention.spotless\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.SpotlessConventionPlugin\"\n        }\n\n        register(\"detektConvention\") {\n            id = \"com.igorwojda.showcase.convention.detekt\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.DetektConventionPlugin\"\n        }\n\n        register(\"easyLauncherConvention\") {\n            id = \"com.igorwojda.showcase.convention.easylauncher\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.EasyLauncherConventionPlugin\"\n        }\n\n        register(\"aboutLibrariesConvention\") {\n            id = \"com.igorwojda.showcase.convention.aboutlibraries\"\n            implementationClass = \"com.igorwojda.showcase.buildlogic.AboutLibrariesConventionPlugin\"\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/settings.gradle.kts",
    "content": "rootProject.name = \"build-logic\"\n\n@Suppress(\"UnstableApiUsage\")\ndependencyResolutionManagement {\n    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)\n\n    repositories {\n        google()\n        mavenCentral()\n        gradlePluginPortal()\n    }\n\n    versionCatalogs {\n        create(\"libs\") {\n            from(files(\"../gradle/libs.versions.toml\"))\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/AboutLibrariesConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.mikepenz.aboutlibraries.plugin.AboutLibrariesExtension\nimport com.mikepenz.aboutlibraries.plugin.DuplicateMode\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.configure\n\nclass AboutLibrariesConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"com.mikepenz.aboutlibraries.plugin.android\")\n            }\n\n            extensions.configure<AboutLibrariesExtension> {\n                library {\n                    // Avoids duplicate entries in the generated about libraries screen\n                    duplicationMode.set(DuplicateMode.MERGE)\n                }\n\n                collect {\n                    all.set(true)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ApplicationConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.android.build.api.dsl.ApplicationExtension\nimport com.igorwojda.showcase.buildlogic.config.JavaBuildConfig\nimport com.igorwojda.showcase.buildlogic.ext.debugImplementation\nimport com.igorwojda.showcase.buildlogic.ext.excludeLicenseAndMetaFiles\nimport com.igorwojda.showcase.buildlogic.ext.implementation\nimport com.igorwojda.showcase.buildlogic.ext.libs\nimport com.igorwojda.showcase.buildlogic.ext.versions\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.apply\nimport org.gradle.kotlin.dsl.configure\nimport org.gradle.kotlin.dsl.dependencies\n\n@Suppress(\"detekt.LongMethod\")\nclass ApplicationConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"com.android.application\")\n                apply(\"com.google.devtools.ksp\")\n                apply(\"org.jetbrains.kotlin.plugin.compose\")\n                apply<KotlinConventionPlugin>()\n                apply<SpotlessConventionPlugin>()\n                apply<EasyLauncherConventionPlugin>()\n                apply<AboutLibrariesConventionPlugin>()\n            }\n\n            extensions.configure<ApplicationExtension> {\n                compileSdk =\n                    versions\n                        .compile\n                        .sdk\n                        .get()\n                        .toInt()\n\n                defaultConfig {\n                    applicationId = \"com.igorwojda.showcase\"\n\n                    minSdk =\n                        versions\n                            .min\n                            .sdk\n                            .get()\n                            .toInt()\n\n                    targetSdk =\n                        versions\n                            .target\n                            .sdk\n                            .get()\n                            .toInt()\n\n                    versionCode = 1\n                    versionName = \"1.0\"\n                    testInstrumentationRunner = \"androidx.test.runner.AndroidJUnitRunner\"\n                    multiDexEnabled = true\n\n                    vectorDrawables {\n                        useSupportLibrary = true\n                    }\n                }\n\n                buildFeatures {\n                    viewBinding = true\n                    buildConfig = true\n                    compose = true\n                }\n\n                compileOptions {\n                    sourceCompatibility = JavaBuildConfig.JAVA_VERSION\n                    targetCompatibility = JavaBuildConfig.JAVA_VERSION\n                }\n\n                packaging {\n                    excludeLicenseAndMetaFiles()\n                }\n\n                testOptions {\n                    unitTests.isReturnDefaultValues = true\n                }\n            }\n\n            dependencies {\n                implementation(libs.kotlin.reflect)\n                implementation(libs.core.ktx)\n                implementation(libs.timber)\n                implementation(libs.coroutines)\n                implementation(libs.material.material)\n                implementation(libs.compose.material)\n                implementation(libs.material.icons)\n\n                // Compose dependencies\n                implementation(platform(libs.compose.bom))\n                implementation(libs.tooling.preview)\n                debugImplementation(libs.compose.ui.tooling)\n                debugImplementation(libs.compose.ui.test.manifest)\n                implementation(libs.navigation.compose)\n\n                // Koin\n                implementation(platform(libs.koin.bom))\n                implementation(libs.bundles.koin)\n\n                implementation(libs.bundles.retrofit)\n                implementation(libs.viewmodel.ktx)\n                implementation(libs.core.splashscreen)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/DetektConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport io.gitlab.arturbosch.detekt.Detekt\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\n\nclass DetektConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            pluginManager.apply(\"io.gitlab.arturbosch.detekt\")\n\n            repositories.mavenCentral()\n\n            val detektCheck =\n                tasks.register(\"detektCheck\", Detekt::class.java) {\n                    description = \"Checks that sourcecode satisfies detekt rules.\"\n                    autoCorrect = false\n                }\n\n            val detektApply =\n                tasks.register(\"detektApply\", Detekt::class.java) {\n                    description = \"Applies code formatting rules to sourcecode in-place.\"\n                    autoCorrect = true\n                }\n\n            listOf(detektCheck, detektApply).forEach { taskProvider ->\n                taskProvider.configure {\n                    group = \"verification\"\n                    parallel = true\n                    ignoreFailures = false\n                    setSource(file(rootDir))\n\n                    // Custom detekt config\n                    config.setFrom(\"$rootDir/detekt.yml\")\n\n                    // Use default configuration on top of custom config\n                    buildUponDefaultConfig = true\n\n                    // Runs detekt for all files in the Gradle project and all subprojects\n                    include(\"**/*.kt\", \"**/*.kts\")\n                    exclude(\"**/resources/**\", \"**/build/**\", \"**/generated/**\")\n\n                    reports {\n                        html.required.set(true)\n                        xml.required.set(true)\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/EasyLauncherConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.project.starter.easylauncher.filter.ChromeLikeFilter\nimport com.project.starter.easylauncher.plugin.EasyLauncherExtension\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.configure\n\n@Suppress(\"detekt.LongMethod\")\nclass EasyLauncherConventionPlugin : Plugin<Project> {\n    override fun apply(project: Project) {\n        with(project) {\n            with(pluginManager) {\n                apply(\"com.starter.easylauncher\")\n            }\n\n            extensions.configure<EasyLauncherExtension> {\n                defaultFlavorNaming(true)\n\n                buildTypes.create(\"debug\") {\n                    setFilters(\n                        chromeLike(\n                            ribbonColor = OVERLAY_COLOR_BACKGROUND_DEBUG,\n                            labelColor = OVERLAY_COLOR_TEXT,\n                            gravity = ChromeLikeFilter.Gravity.BOTTOM,\n                            overlayHeight = OVERLAY_HEIGHT,\n                            textSizeRatio = 0.2F,\n                        ),\n                    )\n                }\n            }\n        }\n    }\n\n    companion object {\n        private const val OVERLAY_COLOR_BACKGROUND_DEBUG = \"#99AD0000\"\n        private const val OVERLAY_COLOR_TEXT = \"#FFFFFF\"\n        private const val OVERLAY_HEIGHT = 0.25F\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/FeatureConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.android.build.api.dsl.LibraryExtension\nimport com.igorwojda.showcase.buildlogic.config.JavaBuildConfig\nimport com.igorwojda.showcase.buildlogic.ext.debugImplementation\nimport com.igorwojda.showcase.buildlogic.ext.excludeLicenseAndMetaFiles\nimport com.igorwojda.showcase.buildlogic.ext.implementation\nimport com.igorwojda.showcase.buildlogic.ext.ksp\nimport com.igorwojda.showcase.buildlogic.ext.libs\nimport com.igorwojda.showcase.buildlogic.ext.testImplementation\nimport com.igorwojda.showcase.buildlogic.ext.testRuntimeOnly\nimport com.igorwojda.showcase.buildlogic.ext.versions\nimport com.mikepenz.aboutlibraries.plugin.AboutLibrariesPlugin\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.apply\nimport org.gradle.kotlin.dsl.configure\nimport org.gradle.kotlin.dsl.dependencies\n\n@Suppress(\"detekt.LongMethod\")\nclass FeatureConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"com.android.library\")\n                apply<KotlinConventionPlugin>()\n                apply<TestConventionPlugin>()\n                apply<AboutLibrariesPlugin>()\n                apply(\"com.google.devtools.ksp\")\n                apply(\"org.jetbrains.kotlin.plugin.compose\")\n            }\n\n            extensions.configure<LibraryExtension> {\n                compileSdk =\n                    versions\n                        .compile\n                        .sdk\n                        .get()\n                        .toInt()\n\n                defaultConfig {\n                    minSdk =\n                        versions\n                            .min\n                            .sdk\n                            .get()\n                            .toInt()\n\n                    testInstrumentationRunner = \"androidx.test.runner.AndroidJUnitRunner\"\n                    consumerProguardFiles(\"consumer-rules.pro\")\n                }\n\n                buildFeatures {\n                    viewBinding = true\n                    buildConfig = true\n                    compose = true\n                }\n\n                compileOptions {\n                    sourceCompatibility = JavaBuildConfig.JAVA_VERSION\n                    targetCompatibility = JavaBuildConfig.JAVA_VERSION\n                }\n\n                testOptions {\n                    unitTests.isReturnDefaultValues = true\n                }\n\n                packaging {\n                    excludeLicenseAndMetaFiles()\n                }\n            }\n\n            dependencies {\n                // Add feature:base dependency only for non-base feature modules\n                if (project.path != \":feature:base\") {\n                    implementation(project(\":feature:base\"))\n                }\n\n                implementation(libs.kotlin.reflect)\n                implementation(libs.core.ktx)\n                implementation(libs.timber)\n                implementation(libs.coroutines)\n                implementation(libs.material.material)\n                implementation(libs.compose.material)\n                implementation(libs.material.icons)\n\n                // Compose dependencies\n                implementation(platform(libs.compose.bom))\n                implementation(libs.bundles.compose)\n                debugImplementation(libs.compose.ui.tooling)\n                debugImplementation(libs.compose.ui.test.manifest)\n\n                // Koin\n                implementation(platform(libs.koin.bom))\n                implementation(libs.bundles.koin)\n\n                implementation(libs.bundles.retrofit)\n                implementation(libs.viewmodel.ktx)\n\n                // Room\n                implementation(libs.bundles.room)\n                ksp(libs.room.compiler)\n\n                // Test dependencies\n                testImplementation(project(\":library:test-utils\"))\n                testImplementation(libs.bundles.test)\n                testRuntimeOnly(libs.junit.jupiter.engine)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/KotlinConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.igorwojda.showcase.buildlogic.config.JavaBuildConfig\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.withType\nimport org.jetbrains.kotlin.gradle.dsl.kotlinExtension\nimport org.jetbrains.kotlin.gradle.tasks.KotlinCompile\n\nclass KotlinConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"org.jetbrains.kotlin.android\")\n                apply(\"org.jetbrains.kotlin.plugin.serialization\")\n            }\n\n            kotlinExtension.jvmToolchain(JavaBuildConfig.JVM_TOOLCHAIN_VERSION)\n\n            tasks.withType<KotlinCompile>().configureEach {\n                compilerOptions {\n                    freeCompilerArgs.addAll(\n                        /*\n                        This ensures annotations on data class constructor parameters are applied to both\n                        the parameter and the backing field, preventing future breaking changes.\n                        See https://youtrack.jetbrains.com/issue/KT-73255: for more details.\n                         */\n                        \"-Xannotation-default-target=param-property\",\n                    )\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/LibraryConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.android.build.api.dsl.LibraryExtension\nimport com.igorwojda.showcase.buildlogic.config.JavaBuildConfig\nimport com.igorwojda.showcase.buildlogic.ext.excludeLicenseAndMetaFiles\nimport com.igorwojda.showcase.buildlogic.ext.versions\nimport com.mikepenz.aboutlibraries.plugin.AboutLibrariesPlugin\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.apply\nimport org.gradle.kotlin.dsl.configure\n\nclass LibraryConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"com.android.library\")\n                apply<KotlinConventionPlugin>()\n                apply<TestConventionPlugin>()\n                apply<AboutLibrariesPlugin>()\n                apply(\"com.google.devtools.ksp\")\n                apply(\"org.jetbrains.kotlin.plugin.compose\")\n            }\n\n            extensions.configure<LibraryExtension> {\n                compileSdk =\n                    versions\n                        .compile\n                        .sdk\n                        .get()\n                        .toInt()\n\n                defaultConfig {\n                    minSdk =\n                        versions\n                            .min\n                            .sdk\n                            .get()\n                            .toInt()\n\n                    testInstrumentationRunner = \"androidx.test.runner.AndroidJUnitRunner\"\n                    consumerProguardFiles(\"consumer-rules.pro\")\n                }\n\n                buildFeatures {\n                    viewBinding = true\n                    buildConfig = true\n                    compose = true\n                }\n\n                compileOptions {\n                    sourceCompatibility = JavaBuildConfig.JAVA_VERSION\n                    targetCompatibility = JavaBuildConfig.JAVA_VERSION\n                }\n\n                testOptions {\n                    unitTests.isReturnDefaultValues = true\n                }\n\n                packaging {\n                    excludeLicenseAndMetaFiles()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/SpotlessConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.diffplug.gradle.spotless.SpotlessExtension\nimport com.igorwojda.showcase.buildlogic.ext.libs\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.configure\n\nclass SpotlessConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            pluginManager.apply(\"com.diffplug.spotless\")\n\n            extensions.configure<SpotlessExtension> {\n                kotlin {\n                    target(\"**/*.kt\", \"**/*.kts\")\n\n                    // Some rules are disabled in .editorconfig to avoid conflicts with detekt\n                    val customRuleSets =\n                        listOf(\n                            libs.ktlint.ruleset.standard,\n                            libs.nlopez.compose.rules,\n                            libs.twitter.compose.rules,\n                        ).map {\n                            it.get().toString()\n                        }\n\n                    ktlint()\n                        .customRuleSets(customRuleSets)\n\n                    endWithNewline()\n                }\n\n                // Don't add spotless as dependency for the Gradle's check task to facilitate separated codebase checks\n                isEnforceCheck = false\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/TestConventionLibraryPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.android.build.api.dsl.LibraryExtension\nimport com.igorwojda.showcase.buildlogic.config.JavaBuildConfig\nimport com.igorwojda.showcase.buildlogic.ext.versions\nimport com.mikepenz.aboutlibraries.plugin.AboutLibrariesPlugin\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.apply\nimport org.gradle.kotlin.dsl.configure\n\nclass TestConventionLibraryPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            with(pluginManager) {\n                apply(\"com.android.library\")\n                apply<KotlinConventionPlugin>()\n                apply<TestConventionPlugin>()\n                apply<AboutLibrariesPlugin>()\n                apply(\"com.google.devtools.ksp\")\n            }\n\n            extensions.configure<LibraryExtension> {\n                compileSdk =\n                    versions\n                        .compile\n                        .sdk\n                        .get()\n                        .toInt()\n\n                defaultConfig {\n                    minSdk =\n                        versions\n                            .min\n                            .sdk\n                            .get()\n                            .toInt()\n\n                    testInstrumentationRunner = \"androidx.test.runner.AndroidJUnitRunner\"\n                    consumerProguardFiles(\"consumer-rules.pro\")\n                }\n\n                buildFeatures {\n                    viewBinding = false\n                    buildConfig = false\n                    compose = false\n                }\n\n                compileOptions {\n                    sourceCompatibility = JavaBuildConfig.JAVA_VERSION\n                    targetCompatibility = JavaBuildConfig.JAVA_VERSION\n                }\n\n                testOptions {\n                    unitTests.isReturnDefaultValues = true\n                }\n\n                packaging {\n                    resources.excludes +=\n                        setOf(\n                            \"META-INF/AL2.0\",\n                            \"META-INF/licenses/**\",\n                            \"**/attach_hotspot_windows.dll\",\n                            \"META-INF/LGPL2.1\",\n                        )\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/TestConventionPlugin.kt",
    "content": "package com.igorwojda.showcase.buildlogic\n\nimport com.adarshr.gradle.testlogger.TestLoggerExtension\nimport com.adarshr.gradle.testlogger.theme.ThemeType\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.api.tasks.testing.Test\nimport org.gradle.kotlin.dsl.configure\nimport org.gradle.kotlin.dsl.withType\n\nclass TestConventionPlugin : Plugin<Project> {\n    override fun apply(target: Project) {\n        with(target) {\n            pluginManager.apply(\"com.adarshr.test-logger\")\n\n            tasks.withType<Test> {\n                useJUnitPlatform()\n\n                // Enable parallel test execution\n                systemProperties =\n                    mapOf(\n                        \"junit.jupiter.execution.parallel.enabled\" to \"true\",\n                        \"junit.jupiter.execution.parallel.mode.default \" to \"concurrent\",\n                    )\n            }\n\n            extensions.configure<TestLoggerExtension> {\n                theme = ThemeType.MOCHA\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/config/JavaBuildConfig.kt",
    "content": "package com.igorwojda.showcase.buildlogic.config\n\nimport org.gradle.api.JavaVersion\nimport java.io.File\n\nobject JavaBuildConfig {\n    /**\n     * Reads the Java version from the `gradle/libs.versions.toml` file.\n     * (VersionCatalogsExtension is not available at this stage).\n     */\n    private val tomlJavaVersion by lazy {\n        File(System.getProperty(\"user.dir\"))\n            .resolve(\"gradle/libs.versions.toml\")\n            .readLines()\n            .firstOrNull { it.trim().startsWith(\"java\") }\n            ?.substringAfter(\"=\")\n            ?.trim('\"', ' ')\n            ?: error(\"❌ Could not find 'java' version in libs.versions.toml file\")\n    }\n\n    /*\n    Configure the buildLogic config to target JDK from version catalog\n    This matches the JDK used to build the project.\n     */\n    val JAVA_VERSION: JavaVersion = JavaVersion.toVersion(tomlJavaVersion)\n    val JVM_TOOLCHAIN_VERSION: Int = tomlJavaVersion.toInt()\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ext/BuildConfigExt.kt",
    "content": "package com.igorwojda.showcase.buildlogic.ext\n\nimport com.android.build.api.dsl.ApplicationDefaultConfig\nimport com.android.build.api.dsl.LibraryDefaultConfig\nimport org.gradle.api.Project\nimport java.util.Locale\n\n/**\n * Takes value from Gradle project property and sets it as Android build config property.\n * Example: apiToken variable present in the settings.gradle file will be accessible\n * as BuildConfig.GRADLE_API_TOKEN in the app.\n */\nfun ApplicationDefaultConfig.buildConfigFieldFromGradleProperty(\n    project: Project,\n    gradlePropertyName: String,\n) {\n    val (androidResourceName, propertyValue) = extractBuildConfigField(project, gradlePropertyName)\n    buildConfigField(\"String\", androidResourceName, propertyValue)\n}\n\n/**\n * Takes value from Gradle project property and sets it as Android build config property.\n * Example: apiToken variable present in the settings.gradle file will be accessible\n * as BuildConfig.GRADLE_API_TOKEN in the library.\n */\nfun LibraryDefaultConfig.buildConfigFieldFromGradleProperty(\n    project: Project,\n    gradlePropertyName: String,\n) {\n    val (androidResourceName, propertyValue) = extractBuildConfigField(project, gradlePropertyName)\n    buildConfigField(\"String\", androidResourceName, propertyValue)\n}\n\nprivate fun extractBuildConfigField(\n    project: Project,\n    gradlePropertyName: String,\n): Pair<String, String> {\n    val propertyValue = project.properties[gradlePropertyName] as? String\n    checkNotNull(propertyValue) { \"Gradle property $gradlePropertyName is null\" }\n\n    val androidResourceName = \"GRADLE_${gradlePropertyName.toSnakeCase()}\".uppercase(Locale.getDefault())\n    return androidResourceName to propertyValue\n}\n\nprivate fun String.toSnakeCase() = this.split(Regex(\"(?=[A-Z])\")).joinToString(\"_\") { it.lowercase(Locale.getDefault()) }\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ext/DependencyHandlerExt.kt",
    "content": "package com.igorwojda.showcase.buildlogic.ext\n\nimport org.gradle.accessors.dm.LibrariesForLibs\nimport org.gradle.api.Project\nimport org.gradle.api.provider.Provider\nimport org.gradle.kotlin.dsl.DependencyHandlerScope\n\nprivate const val IMPLEMENTATION = \"implementation\"\nprivate const val DEBUG_IMPLEMENTATION = \"debugImplementation\"\nprivate const val TEST_IMPLEMENTATION = \"testImplementation\"\nprivate const val TEST_RUNTIME_ONLY = \"testRuntimeOnly\"\nprivate const val KSP = \"ksp\"\n\nfun DependencyHandlerScope.implementation(provider: Provider<out Any>) {\n    add(IMPLEMENTATION, provider)\n}\n\nfun DependencyHandlerScope.implementation(project: Project) {\n    add(IMPLEMENTATION, project)\n}\n\nfun DependencyHandlerScope.implementation(provider: LibrariesForLibs.KotlinLibraryAccessors) {\n    add(IMPLEMENTATION, provider)\n}\n\nfun DependencyHandlerScope.debugImplementation(provider: Provider<out Any>) {\n    add(DEBUG_IMPLEMENTATION, provider)\n}\n\nfun DependencyHandlerScope.ksp(provider: Provider<out Any>) {\n    add(KSP, provider)\n}\n\nfun DependencyHandlerScope.testImplementation(project: Project) {\n    add(TEST_IMPLEMENTATION, project)\n}\n\nfun DependencyHandlerScope.testImplementation(provider: Provider<out Any>) {\n    add(TEST_IMPLEMENTATION, provider)\n}\n\nfun DependencyHandlerScope.testRuntimeOnly(provider: Provider<out Any>) {\n    add(TEST_RUNTIME_ONLY, provider)\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ext/PackagingExt.kt",
    "content": "package com.igorwojda.showcase.buildlogic.ext\n\nimport com.android.build.api.dsl.Packaging\n\nfun Packaging.excludeLicenseAndMetaFiles() {\n    resources.excludes +=\n        setOf(\n            \"META-INF/AL2.0\",\n            \"META-INF/licenses/**\",\n            \"**/attach_hotspot_windows.dll\",\n            \"META-INF/LGPL2.1\",\n        )\n}\n"
  },
  {
    "path": "build-logic/src/main/kotlin/com/igorwojda/showcase/buildlogic/ext/ProjectExt.kt",
    "content": "package com.igorwojda.showcase.buildlogic.ext\n\nimport org.gradle.accessors.dm.LibrariesForLibs\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.the\n\n/**\n * Returns \"libs\" from version catalog.\n */\nval Project.libs: LibrariesForLibs\n    get() = the<LibrariesForLibs>()\n\n/**\n * Returns \"versions\" from version catalog.\n */\nval Project.versions: LibrariesForLibs.VersionAccessors\n    get() = the<LibrariesForLibs>().versions\n"
  },
  {
    "path": "build.gradle.kts",
    "content": "plugins {\n    // Convention plugins\n    id(\"com.igorwojda.showcase.convention.detekt\")\n    id(\"com.igorwojda.showcase.convention.spotless\")\n\n    // Core Android and Kotlin plugins using version catalog\n    alias(libs.plugins.android.application) apply false\n    alias(libs.plugins.android.library) apply false\n    alias(libs.plugins.kotlin.android) apply false\n    alias(libs.plugins.kotlin.serialization) apply false\n    alias(libs.plugins.kotlin.symbol.processing) apply false\n    alias(libs.plugins.compose) apply false\n    alias(libs.plugins.test.logger) apply false\n    alias(libs.plugins.detekt) apply false\n    alias(libs.plugins.spotless) apply false\n    alias(libs.plugins.junit5.android) apply false\n}\n"
  },
  {
    "path": "detekt.yml",
    "content": "build:\n  maxIssues: 0\n  excludeCorrectable: false\n  weights:\n    # complexity: 2\n    # LongParameterList: 1\n    # style: 1\n    # comments: 1\n\nconfig:\n  validation: true\n  warningsAsErrors: true\n  checkExhaustiveness: true\n  # when writing own rules with new properties, exclude the property path e.g.: 'my_rule_set,.*>.*>[my_property]'\n  excludes: ''\n\nprocessors:\n  active: true\n  exclude:\n    - 'DetektProgressListener'\n  # - 'KtFileCountProcessor'\n  # - 'PackageCountProcessor'\n  # - 'ClassCountProcessor'\n  # - 'FunctionCountProcessor'\n  # - 'PropertyCountProcessor'\n  # - 'ProjectComplexityProcessor'\n  # - 'ProjectCognitiveComplexityProcessor'\n  # - 'ProjectLLOCProcessor'\n  # - 'ProjectCLOCProcessor'\n  # - 'ProjectLOCProcessor'\n  # - 'ProjectSLOCProcessor'\n  # - 'LicenseHeaderLoaderExtension'\n\nconsole-reports:\n  active: true\n  exclude:\n     - 'ProjectStatisticsReport'\n     - 'ComplexityReport'\n     - 'NotificationReport'\n     - 'FindingsReport'\n     - 'FileBasedFindingsReport'\n  #  - 'LiteFindingsReport'\n\noutput-reports:\n  active: true\n  exclude:\n  # - 'TxtOutputReport'\n  # - 'XmlOutputReport'\n  # - 'HtmlOutputReport'\n  # - 'MdOutputReport'\n  # - 'SarifOutputReport'\n\ncomments:\n  active: true\n  AbsentOrWrongFileLicense:\n    active: false\n    licenseTemplateFile: 'license.template'\n    licenseTemplateIsRegex: false\n  CommentOverPrivateFunction:\n    active: false\n  CommentOverPrivateProperty:\n    active: false\n  DeprecatedBlockTag:\n    active: true\n  EndOfSentenceFormat:\n    active: true\n    endOfSentenceFormat: '([.?!][ \\t\\n\\r\\f<])|([.?!:]$)'\n  KDocReferencesNonPublicProperty:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  OutdatedDocumentation:\n    active: true\n    matchTypeParameters: true\n    matchDeclarationsOrder: true\n    allowParamOnConstructorProperties: false\n  UndocumentedPublicClass:\n    active: false\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    searchInNestedClass: true\n    searchInInnerClass: true\n    searchInInnerObject: true\n    searchInInnerInterface: true\n    searchInProtectedClass: false\n    ignoreDefaultCompanionObject: false\n  UndocumentedPublicFunction:\n    active: false\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    searchProtectedFunction: false\n  UndocumentedPublicProperty:\n    active: false\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    searchProtectedProperty: false\n\ncomplexity:\n  active: true\n  CognitiveComplexMethod:\n    active: true\n    threshold: 15\n  ComplexCondition:\n    active: true\n    threshold: 4\n  ComplexInterface:\n    active: true\n    threshold: 10\n    includeStaticDeclarations: false\n    includePrivateDeclarations: false\n    ignoreOverloaded: false\n  CyclomaticComplexMethod:\n    active: true\n    threshold: 15\n    ignoreSingleWhenExpression: false\n    ignoreSimpleWhenEntries: false\n    ignoreNestingFunctions: false\n    nestingFunctions:\n      - 'also'\n      - 'apply'\n      - 'forEach'\n      - 'isNotNull'\n      - 'ifNull'\n      - 'let'\n      - 'run'\n      - 'use'\n      - 'with'\n  LabeledExpression:\n    active: true\n    ignoredLabels: []\n  LargeClass:\n    active: true\n    threshold: 600\n  LongMethod:\n    active: true\n    threshold: 60\n  LongParameterList:\n    active: true\n    functionThreshold: 6\n    constructorThreshold: 7\n    ignoreDefaultParameters: false\n    ignoreDataClasses: true\n    ignoreAnnotatedParameter: []\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  MethodOverloading:\n    active: true\n    threshold: 6\n  NamedArguments:\n    active: true\n    threshold: 3\n    ignoreArgumentsMatchingNames: false\n  NestedBlockDepth:\n    active: true\n    threshold: 4\n  NestedScopeFunctions:\n    active: true\n    threshold: 1\n    functions:\n      - 'kotlin.apply'\n      - 'kotlin.run'\n      - 'kotlin.with'\n      - 'kotlin.let'\n      - 'kotlin.also'\n  ReplaceSafeCallChainWithRun:\n    active: true\n  StringLiteralDuplication:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    threshold: 3\n    ignoreAnnotation: true\n    excludeStringsWithLessThan5Characters: true\n    ignoreStringsRegex: '$^'\n  TooManyFunctions:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    thresholdInFiles: 11\n    thresholdInClasses: 11\n    thresholdInInterfaces: 11\n    thresholdInObjects: 11\n    thresholdInEnums: 11\n    ignoreDeprecated: false\n    ignorePrivate: false\n    ignoreOverridden: false\n    ignoreAnnotatedFunctions: []\n\ncoroutines:\n  active: true\n  GlobalCoroutineUsage:\n    active: true\n  InjectDispatcher:\n    active: true\n    dispatcherNames:\n      - 'IO'\n      - 'Default'\n      - 'Unconfined'\n  RedundantSuspendModifier:\n    active: true\n  SleepInsteadOfDelay:\n    active: true\n  SuspendFunSwallowedCancellation:\n    active: true\n  SuspendFunWithCoroutineScopeReceiver:\n    active: true\n  SuspendFunWithFlowReturnType:\n    active: true\n\nempty-blocks:\n  active: true\n  EmptyCatchBlock:\n    active: true\n    allowedExceptionNameRegex: '_|(ignore|expected).*'\n  EmptyClassBlock:\n    active: true\n  EmptyDefaultConstructor:\n    active: true\n  EmptyDoWhileBlock:\n    active: true\n  EmptyElseBlock:\n    active: true\n  EmptyFinallyBlock:\n    active: true\n  EmptyForBlock:\n    active: true\n  EmptyFunctionBlock:\n    active: true\n    ignoreOverridden: false\n  EmptyIfBlock:\n    active: true\n  EmptyInitBlock:\n    active: true\n  EmptyKtFile:\n    active: true\n  EmptySecondaryConstructor:\n    active: true\n  EmptyTryBlock:\n    active: true\n  EmptyWhenBlock:\n    active: true\n  EmptyWhileBlock:\n    active: true\n\nexceptions:\n  active: true\n  ExceptionRaisedInUnexpectedLocation:\n    active: true\n    methodNames:\n      - 'equals'\n      - 'finalize'\n      - 'hashCode'\n      - 'toString'\n  InstanceOfCheckForException:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  NotImplementedDeclaration:\n    active: true\n  ObjectExtendsThrowable:\n    active: true\n  PrintStackTrace:\n    active: true\n  RethrowCaughtException:\n    active: true\n  ReturnFromFinally:\n    active: true\n    ignoreLabeled: false\n  SwallowedException:\n    active: true\n    ignoredExceptionTypes:\n      - 'InterruptedException'\n      - 'MalformedURLException'\n      - 'NumberFormatException'\n      - 'ParseException'\n    allowedExceptionNameRegex: '_|(ignore|expected).*'\n  ThrowingExceptionFromFinally:\n    active: true\n  ThrowingExceptionInMain:\n    active: true\n  ThrowingExceptionsWithoutMessageOrCause:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    exceptions:\n      - 'ArrayIndexOutOfBoundsException'\n      - 'Exception'\n      - 'IllegalArgumentException'\n      - 'IllegalMonitorStateException'\n      - 'IllegalStateException'\n      - 'IndexOutOfBoundsException'\n      - 'NullPointerException'\n      - 'RuntimeException'\n      - 'Throwable'\n  ThrowingNewInstanceOfSameException:\n    active: true\n  TooGenericExceptionCaught:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    exceptionNames:\n      - 'ArrayIndexOutOfBoundsException'\n      - 'Error'\n      - 'Exception'\n      - 'IllegalMonitorStateException'\n      - 'IndexOutOfBoundsException'\n      - 'NullPointerException'\n      - 'RuntimeException'\n      - 'Throwable'\n    allowedExceptionNameRegex: '_|(ignore|expected).*'\n  TooGenericExceptionThrown:\n    active: true\n    exceptionNames:\n      - 'Error'\n      - 'Exception'\n      - 'RuntimeException'\n      - 'Throwable'\n\nnaming:\n  active: true\n  BooleanPropertyNaming:\n    active: true\n    allowedPattern: '^(is|has|are)'\n  ClassNaming:\n    active: true\n    classPattern: '[A-Z][a-zA-Z0-9]*'\n  ConstructorParameterNaming:\n    active: true\n    parameterPattern: '[a-z][A-Za-z0-9]*'\n    privateParameterPattern: '[a-z][A-Za-z0-9]*'\n    excludeClassPattern: '$^'\n  EnumNaming:\n    active: true\n    enumEntryPattern: '[A-Z][_a-zA-Z0-9]*'\n  ForbiddenClassName:\n    active: true\n    forbiddenName: []\n  FunctionMaxLength:\n    active: false\n    maximumFunctionNameLength: 50\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  FunctionMinLength:\n    active: true\n    minimumFunctionNameLength: 3\n  FunctionNaming:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    functionPattern: '[a-z][a-zA-Z0-9]*'\n    excludeClassPattern: '$^'\n    ignoreAnnotated: ['Composable']\n  FunctionParameterNaming:\n    active: true\n    parameterPattern: '[a-z][A-Za-z0-9]*'\n    excludeClassPattern: '$^'\n  InvalidPackageDeclaration:\n    active: true\n    rootPackage: ''\n    requireRootInDeclaration: false\n  LambdaParameterNaming:\n    active: true\n    parameterPattern: '[a-z][A-Za-z0-9]*|_'\n  MatchingDeclarationName:\n    active: true\n    mustBeFirst: true\n    multiplatformTargets:\n      - 'ios'\n      - 'android'\n      - 'js'\n      - 'jvm'\n      - 'native'\n      - 'iosArm64'\n      - 'iosX64'\n      - 'macosX64'\n      - 'mingwX64'\n      - 'linuxX64'\n  MemberNameEqualsClassName:\n    active: true\n    ignoreOverridden: true\n  NoNameShadowing:\n    active: true\n  NonBooleanPropertyPrefixedWithIs:\n    active: true\n  ObjectPropertyNaming:\n    active: true\n    constantPattern: '[A-Za-z][_A-Za-z0-9]*'\n    propertyPattern: '[A-Za-z][_A-Za-z0-9]*'\n    privatePropertyPattern: '(_)?[A-Za-z][_A-Za-z0-9]*'\n  PackageNaming:\n    active: true\n    packagePattern: '[a-z]+(\\.[a-z][A-Za-z0-9]*)*'\n  TopLevelPropertyNaming:\n    active: true\n    constantPattern: '[A-Z][_A-Z0-9]*'\n    propertyPattern: '[A-Za-z][_A-Za-z0-9]*'\n    privatePropertyPattern: '_?[A-Za-z][_A-Za-z0-9]*'\n  VariableMaxLength:\n    active: true\n    maximumVariableNameLength: 64\n  VariableMinLength:\n    active: true\n    minimumVariableNameLength: 1\n  VariableNaming:\n    active: true\n    variablePattern: '[a-z][A-Za-z0-9]*'\n    privateVariablePattern: '(_)?[a-z][A-Za-z0-9]*'\n    excludeClassPattern: '$^'\n\nperformance:\n  active: true\n  ArrayPrimitive:\n    active: true\n  CouldBeSequence:\n    active: true\n    threshold: 3\n  ForEachOnRange:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  SpreadOperator:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  UnnecessaryPartOfBinaryExpression:\n    active: true\n  UnnecessaryTemporaryInstantiation:\n    active: true\n\npotential-bugs:\n  active: true\n  AvoidReferentialEquality:\n    active: true\n    forbiddenTypePatterns:\n      - 'kotlin.String'\n  CastNullableToNonNullableType:\n    active: true\n  CastToNullableType:\n    active: true\n  Deprecation:\n    active: true\n  DontDowncastCollectionTypes:\n    active: true\n  DoubleMutabilityForCollection:\n    active: true\n    mutableTypes:\n      - 'kotlin.collections.MutableList'\n      - 'kotlin.collections.MutableMap'\n      - 'kotlin.collections.MutableSet'\n      - 'java.util.ArrayList'\n      - 'java.util.LinkedHashSet'\n      - 'java.util.HashSet'\n      - 'java.util.LinkedHashMap'\n      - 'java.util.HashMap'\n  ElseCaseInsteadOfExhaustiveWhen:\n    active: true\n    ignoredSubjectTypes: []\n  EqualsAlwaysReturnsTrueOrFalse:\n    active: true\n  EqualsWithHashCodeExist:\n    active: true\n  ExitOutsideMain:\n    active: true\n  ExplicitGarbageCollectionCall:\n    active: true\n  HasPlatformType:\n    active: true\n  IgnoredReturnValue:\n    active: true\n    restrictToConfig: true\n    returnValueAnnotations:\n      - 'CheckResult'\n      - '*.CheckResult'\n      - 'CheckReturnValue'\n      - '*.CheckReturnValue'\n    ignoreReturnValueAnnotations:\n      - 'CanIgnoreReturnValue'\n      - '*.CanIgnoreReturnValue'\n    returnValueTypes:\n      - 'kotlin.sequences.Sequence'\n      - 'kotlinx.coroutines.flow.*Flow'\n      - 'java.util.stream.*Stream'\n    ignoreFunctionCall: []\n  ImplicitDefaultLocale:\n    active: true\n  ImplicitUnitReturnType:\n    active: true\n    allowExplicitReturnType: true\n  InvalidRange:\n    active: true\n  IteratorHasNextCallsNextMethod:\n    active: true\n  IteratorNotThrowingNoSuchElementException:\n    active: true\n  LateinitUsage:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    ignoreOnClassesPattern: ''\n  MapGetWithNotNullAssertionOperator:\n    active: true\n  MissingPackageDeclaration:\n    active: true\n    excludes: ['**/*.kts']\n  NullCheckOnMutableProperty:\n    active: true\n  NullableToStringCall:\n    active: true\n  PropertyUsedBeforeDeclaration:\n    active: true\n  UnconditionalJumpStatementInLoop:\n    active: true\n  UnnecessaryNotNullCheck:\n    active: true\n  UnnecessaryNotNullOperator:\n    active: true\n  UnnecessarySafeCall:\n    active: true\n  UnreachableCatchBlock:\n    active: true\n  UnreachableCode:\n    active: true\n  UnsafeCallOnNullableType:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n  UnsafeCast:\n    active: true\n  UnusedUnaryOperator:\n    active: true\n  UselessPostfixExpression:\n    active: true\n  WrongEqualsTypeParameter:\n    active: true\n\nstyle:\n  active: true\n  AlsoCouldBeApply:\n    active: true\n  BracesOnIfStatements:\n    active: true\n    singleLine: 'never'\n    multiLine: 'always'\n  BracesOnWhenStatements:\n    active: true\n    singleLine: 'necessary'\n    multiLine: 'consistent'\n  CanBeNonNullable:\n    active: true\n  CascadingCallWrapping:\n    active: false\n    includeElvis: true\n  ClassOrdering:\n    active: true\n  CollapsibleIfStatements:\n    active: true\n  DataClassContainsFunctions:\n    active: false\n    conversionFunctionPrefix:\n      - 'to'\n    allowOperators: false\n  DataClassShouldBeImmutable:\n    active: true\n  DestructuringDeclarationWithTooManyEntries:\n    active: true\n    maxDestructuringEntries: 3\n  DoubleNegativeLambda:\n    active: true\n    negativeFunctions:\n      - reason: 'Use `takeIf` instead.'\n        value: 'takeUnless'\n      - reason: 'Use `all` instead.'\n        value: 'none'\n    negativeFunctionNameParts:\n      - 'not'\n      - 'non'\n  EqualsNullCall:\n    active: true\n  EqualsOnSignatureLine:\n    active: true\n  ExplicitCollectionElementAccessMethod:\n    active: true\n  ExplicitItLambdaParameter:\n    active: true\n  ExpressionBodySyntax:\n    active: true\n    includeLineWrapping: false\n  ForbiddenAnnotation:\n    active: true\n    annotations:\n      - reason: 'it is a java annotation. Use `Suppress` instead.'\n        value: 'java.lang.SuppressWarnings'\n      - reason: 'it is a java annotation. Use `kotlin.Deprecated` instead.'\n        value: 'java.lang.Deprecated'\n      - reason: 'it is a java annotation. Use `kotlin.annotation.MustBeDocumented` instead.'\n        value: 'java.lang.annotation.Documented'\n      - reason: 'it is a java annotation. Use `kotlin.annotation.Target` instead.'\n        value: 'java.lang.annotation.Target'\n      - reason: 'it is a java annotation. Use `kotlin.annotation.Retention` instead.'\n        value: 'java.lang.annotation.Retention'\n      - reason: 'it is a java annotation. Use `kotlin.annotation.Repeatable` instead.'\n        value: 'java.lang.annotation.Repeatable'\n      - reason: 'Kotlin does not support @Inherited annotation, see https://youtrack.jetbrains.com/issue/KT-22265'\n        value: 'java.lang.annotation.Inherited'\n  ForbiddenComment:\n    active: true\n    comments:\n      - reason: 'Forbidden FIXME todo marker in comment, please fix the problem.'\n        value: 'FIXME:'\n      - reason: 'Forbidden STOPSHIP todo marker in comment, please address the problem before shipping the code.'\n        value: 'STOPSHIP:'\n      - reason: 'Forbidden TODO todo marker in comment, please do the changes.'\n        value: 'TODO:'\n    allowedPatterns: ''\n  ForbiddenImport:\n    active: true\n    imports: []\n    forbiddenPatterns: ''\n  ForbiddenMethodCall:\n    active: true\n    methods:\n      - reason: 'print does not allow you to configure the output stream. Use a logger instead.'\n        value: 'kotlin.io.print'\n      - reason: 'println does not allow you to configure the output stream. Use a logger instead.'\n        value: 'kotlin.io.println'\n  ForbiddenSuppress:\n    active: true\n    rules: []\n  ForbiddenVoid:\n    active: true\n    ignoreOverridden: false\n    ignoreUsageInGenerics: false\n  FunctionOnlyReturningConstant:\n    active: true\n    ignoreOverridableFunction: true\n    ignoreActualFunction: true\n    excludedFunctions: []\n  LoopWithTooManyJumpStatements:\n    active: true\n    maxJumpCount: 1\n  MagicNumber:\n    active: true\n    excludes: ['**/[Tt]est/**', '**/*Test.kt']\n    ignoreNumbers:\n      - '-1'\n      - '0'\n      - '1'\n      - '2'\n      - '60'  # Common for seconds/minutes\n      - '300'  # Common for milliseconds delay\n      - '1000'  # Common for milliseconds\n      - '3600'  # Seconds in hour\n    ignoreHashCodeFunction: true\n    ignorePropertyDeclaration: false\n    ignoreLocalVariableDeclaration: false\n    ignoreConstantDeclaration: true\n    ignoreCompanionObjectPropertyDeclaration: true\n    ignoreAnnotation: false\n    ignoreNamedArgument: true\n    ignoreEnums: false\n    ignoreRanges: false\n    ignoreExtensionFunctions: true\n  MandatoryBracesLoops:\n    active: true\n  MaxChainedCallsOnSameLine:\n    active: true\n    maxChainedCalls: 5\n  MaxLineLength:\n    active: true\n    maxLineLength: 140\n    excludePackageStatements: true\n    excludeImportStatements: true\n    excludeCommentStatements: false\n    excludeRawStrings: true\n  MayBeConst:\n    active: true\n  ModifierOrder:\n    active: true\n  MultilineLambdaItParameter:\n    active: true\n  MultilineRawStringIndentation:\n    active: true\n    indentSize: 4\n    trimmingMethods:\n      - 'trimIndent'\n      - 'trimMargin'\n  NestedClassesVisibility:\n    active: true\n  NewLineAtEndOfFile:\n    active: true\n  NoTabs:\n    active: true\n  NullableBooleanCheck:\n    active: true\n  ObjectLiteralToLambda:\n    active: true\n  OptionalAbstractKeyword:\n    active: true\n  OptionalUnit:\n    active: true\n  PreferToOverPairSyntax:\n    active: true\n  ProtectedMemberInFinalClass:\n    active: true\n  RedundantExplicitType:\n    active: true\n  RedundantHigherOrderMapUsage:\n    active: true\n  RedundantVisibilityModifierRule:\n    active: true\n  ReturnCount:\n    active: true\n    max: 3\n    excludedFunctions:\n      - 'equals'\n    excludeLabeled: false\n    excludeReturnFromLambda: true\n    excludeGuardClauses: false\n  SafeCast:\n    active: true\n  SerialVersionUIDInSerializableClass:\n    active: true\n  SpacingBetweenPackageAndImports:\n    active: true\n  StringShouldBeRawString:\n    active: true\n    maxEscapedCharacterCount: 2\n    ignoredCharacters: []\n  ThrowsCount:\n    active: true\n    max: 2\n    excludeGuardClauses: false\n  TrailingWhitespace:\n    active: true\n  TrimMultilineRawString:\n    active: true\n    trimmingMethods:\n      - 'trimIndent'\n      - 'trimMargin'\n  UnderscoresInNumericLiterals:\n    active: true\n    acceptableLength: 4\n    allowNonStandardGrouping: false\n  UnnecessaryAbstractClass:\n    active: true\n  UnnecessaryAnnotationUseSiteTarget:\n    active: true\n  UnnecessaryApply:\n    active: true\n  UnnecessaryBackticks:\n    active: true\n  UnnecessaryBracesAroundTrailingLambda:\n    active: true\n  UnnecessaryFilter:\n    active: true\n  UnnecessaryInheritance:\n    active: true\n  UnnecessaryInnerClass:\n    active: true\n  UnnecessaryLet:\n    active: true\n  UnnecessaryParentheses:\n    active: false\n    allowForUnclearPrecedence: false\n  UntilInsteadOfRangeTo:\n    active: true\n  UnusedImports:\n    active: true\n  UnusedParameter:\n    active: true\n    allowedNames: 'ignored|expected'\n  UnusedPrivateClass:\n    active: true\n  UnusedPrivateMember:\n    active: true\n    allowedNames: ''\n    ignoreAnnotated: ['Preview']\n  UnusedPrivateProperty:\n    active: true\n    allowedNames: '_|ignored|expected|serialVersionUID'\n  UseAnyOrNoneInsteadOfFind:\n    active: true\n  UseArrayLiteralsInAnnotations:\n    active: true\n  UseCheckNotNull:\n    active: true\n  UseCheckOrError:\n    active: true\n  UseDataClass:\n    active: true\n    allowVars: false\n  UseEmptyCounterpart:\n    active: true\n  UseIfEmptyOrIfBlank:\n    active: true\n  UseIfInsteadOfWhen:\n    active: true\n    ignoreWhenContainingVariableDeclaration: false\n  UseIsNullOrEmpty:\n    active: true\n  UseLet:\n    active: true\n  UseOrEmpty:\n    active: true\n  UseRequire:\n    active: true\n  UseRequireNotNull:\n    active: true\n  UseSumOfInsteadOfFlatMapSize:\n    active: true\n  UselessCallOnNotNull:\n    active: true\n  UtilityClassWithPublicConstructor:\n    active: true\n  VarCouldBeVal:\n    active: true\n    ignoreLateinitVar: false\n  WildcardImport:\n    active: true\n    excludeImports:\n      - 'java.util.*'\n"
  },
  {
    "path": "feature/album/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.feature\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.feature.album\"\n}\n"
  },
  {
    "path": "feature/album/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile\n"
  },
  {
    "path": "feature/album/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/AlbumKoinModule.kt",
    "content": "package com.igorwojda.showcase.feature.album\n\nimport com.igorwojda.showcase.feature.album.data.dataModule\nimport com.igorwojda.showcase.feature.album.domain.domainModule\nimport com.igorwojda.showcase.feature.album.presentation.presentationModule\n\nval featureAlbumModules =\n    listOf(\n        presentationModule,\n        domainModule,\n        dataModule,\n    )\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/DataModule.kt",
    "content": "package com.igorwojda.showcase.feature.album.data\n\nimport androidx.room.Room\nimport com.igorwojda.showcase.feature.album.data.datasource.api.service.AlbumRetrofitService\nimport com.igorwojda.showcase.feature.album.data.datasource.database.AlbumDatabase\nimport com.igorwojda.showcase.feature.album.data.mapper.AlbumMapper\nimport com.igorwojda.showcase.feature.album.data.mapper.ImageMapper\nimport com.igorwojda.showcase.feature.album.data.mapper.ImageSizeMapper\nimport com.igorwojda.showcase.feature.album.data.mapper.TagMapper\nimport com.igorwojda.showcase.feature.album.data.mapper.TrackMapper\nimport com.igorwojda.showcase.feature.album.data.repository.AlbumRepositoryImpl\nimport com.igorwojda.showcase.feature.album.domain.repository.AlbumRepository\nimport org.koin.core.module.dsl.bind\nimport org.koin.core.module.dsl.singleOf\nimport org.koin.dsl.module\nimport retrofit2.Retrofit\n\ninternal val dataModule =\n    module {\n\n        singleOf(::AlbumRepositoryImpl) { bind<AlbumRepository>() }\n\n        single { get<Retrofit>().create(AlbumRetrofitService::class.java) }\n\n        single {\n            Room\n                .databaseBuilder(\n                    get(),\n                    AlbumDatabase::class.java,\n                    \"Albums.db\",\n                ).build()\n        }\n\n        single { get<AlbumDatabase>().albums() }\n\n        singleOf(::ImageSizeMapper)\n        singleOf(::ImageMapper)\n        singleOf(::TrackMapper)\n        singleOf(::TagMapper)\n        singleOf(::AlbumMapper)\n    }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/AlbumApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class AlbumApiModel(\n    @SerialName(\"mbid\") val mbId: String? = null,\n    @SerialName(\"name\") val name: String,\n    @SerialName(\"artist\") val artist: String,\n    @SerialName(\"image\") val images: List<ImageApiModel>? = null,\n    @SerialName(\"tracks\") val tracks: TrackListApiModel? = null,\n    @SerialName(\"tags\") val tags: TagListApiModel? = null,\n)\n\ninternal fun AlbumApiModel.toRoomModel() =\n    AlbumRoomModel(\n        mbId = this.mbId ?: \"\",\n        name = this.name,\n        artist = this.artist,\n        images = this.images?.mapNotNull { it.toRoomModel() } ?: listOf(),\n        tracks = this.tracks?.track?.map { it.toRoomModel() },\n        tags = this.tags?.tag?.map { it.toRoomModel() },\n    )\n\ninternal fun AlbumApiModel.toDomainModel(): Album {\n    val images =\n        this.images\n            ?.filterNot { it.size == ImageSizeApiModel.UNKNOWN || it.url.isBlank() }\n            ?.map { it.toDomainModel() }\n\n    return Album(\n        mbId = this.mbId,\n        name = this.name,\n        artist = this.artist,\n        images = images ?: listOf(),\n        tracks = this.tracks?.track?.map { it.toDomainModel() },\n        tags = this.tags?.tag?.map { it.toDomainModel() },\n    )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/AlbumListApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class AlbumListApiModel(\n    @SerialName(\"album\") val album: List<AlbumApiModel>,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/ImageApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class ImageApiModel(\n    @SerialName(\"#text\") val url: String,\n    @SerialName(\"size\") val size: ImageSizeApiModel,\n)\n\ninternal fun ImageApiModel.toDomainModel() =\n    Image(\n        url = this.url,\n        size = this.size.toDomainModel(),\n    )\n\ninternal fun ImageApiModel.toRoomModel() = this.size.toRoomModel()?.let { ImageRoomModel(this.url, it) }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/ImageSizeApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal enum class ImageSizeApiModel {\n    @SerialName(\"medium\")\n    MEDIUM,\n\n    @SerialName(\"small\")\n    SMALL,\n\n    @SerialName(\"large\")\n    LARGE,\n\n    @SerialName(\"extralarge\")\n    EXTRA_LARGE,\n\n    @SerialName(\"mega\")\n    MEGA,\n\n    @SerialName(\"\")\n    UNKNOWN,\n}\n\ninternal fun ImageSizeApiModel.toDomainModel() = ImageSize.valueOf(this.name)\n\ninternal fun ImageSizeApiModel.toRoomModel(): ImageSizeRoomModel? =\n    when (this) {\n        ImageSizeApiModel.MEDIUM -> ImageSizeRoomModel.MEDIUM\n        ImageSizeApiModel.SMALL -> ImageSizeRoomModel.SMALL\n        ImageSizeApiModel.LARGE -> ImageSizeRoomModel.LARGE\n        ImageSizeApiModel.EXTRA_LARGE -> ImageSizeRoomModel.EXTRA_LARGE\n        ImageSizeApiModel.MEGA -> ImageSizeRoomModel.MEGA\n        ImageSizeApiModel.UNKNOWN -> null\n    }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/SearchAlbumResultsApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class SearchAlbumResultsApiModel(\n    @SerialName(\"albummatches\") val albumMatches: AlbumListApiModel,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/TagApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TagRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TagApiModel(\n    @SerialName(\"name\") val name: String,\n)\n\ninternal fun TagApiModel.toDomainModel() =\n    Tag(\n        name = this.name,\n    )\n\ninternal fun TagApiModel.toRoomModel() =\n    TagRoomModel(\n        name = this.name,\n    )\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/TagListApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TagListApiModel(\n    @SerialName(\"tag\") val tag: List<TagApiModel>,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/TrackApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TrackRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TrackApiModel(\n    @SerialName(\"name\") val name: String,\n    @SerialName(\"duration\") val duration: Int? = null,\n)\n\ninternal fun TrackApiModel.toDomainModel() =\n    Track(\n        name = this.name,\n        duration = this.duration,\n    )\n\ninternal fun TrackApiModel.toRoomModel() =\n    TrackRoomModel(\n        name = this.name,\n        duration = this.duration,\n    )\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/TrackListApiModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TrackListApiModel(\n    @SerialName(\"track\") val track: List<TrackApiModel>,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/response/GetAlbumInfoResponse.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.response\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.AlbumApiModel\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class GetAlbumInfoResponse(\n    @SerialName(\"album\") val album: AlbumApiModel,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/response/SearchAlbumResponse.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.response\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.SearchAlbumResultsApiModel\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class SearchAlbumResponse(\n    @SerialName(\"results\") val results: SearchAlbumResultsApiModel,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/service/AlbumRetrofitService.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.service\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.response.GetAlbumInfoResponse\nimport com.igorwojda.showcase.feature.album.data.datasource.api.response.SearchAlbumResponse\nimport com.igorwojda.showcase.feature.base.data.retrofit.ApiResult\nimport retrofit2.http.POST\nimport retrofit2.http.Query\n\ninternal interface AlbumRetrofitService {\n    @POST(\"./?method=album.search\")\n    suspend fun searchAlbumAsync(\n        @Query(\"album\") phrase: String?,\n        @Query(\"limit\") limit: Int = 60,\n    ): ApiResult<SearchAlbumResponse>\n\n    @POST(\"./?method=album.getInfo\")\n    suspend fun getAlbumInfoAsync(\n        @Query(\"artist\") artistName: String,\n        @Query(\"album\") albumName: String,\n        @Query(\"mbid\") mbId: String?,\n    ): ApiResult<GetAlbumInfoResponse>\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/AlbumDao.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.room.OnConflictStrategy\nimport androidx.room.Query\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\n\n@Dao\ninternal interface AlbumDao {\n    @Query(\"SELECT * FROM albums\")\n    suspend fun getAll(): List<AlbumRoomModel>\n\n    @Query(\"SELECT * FROM albums where artist = :artistName and name = :albumName and mbId = :mbId\")\n    suspend fun getAlbum(\n        artistName: String,\n        albumName: String,\n        mbId: String?,\n    ): AlbumRoomModel\n\n    @Insert(onConflict = OnConflictStrategy.REPLACE)\n    suspend fun insertAlbums(albums: List<AlbumRoomModel>)\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/AlbumDatabase.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database\n\nimport androidx.room.Database\nimport androidx.room.RoomDatabase\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\n\n@Database(entities = [AlbumRoomModel::class], version = 1, exportSchema = false)\ninternal abstract class AlbumDatabase : RoomDatabase() {\n    abstract fun albums(): AlbumDao\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/model/AlbumRoomModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database.model\n\nimport androidx.room.Entity\nimport androidx.room.PrimaryKey\nimport androidx.room.TypeConverter\nimport androidx.room.TypeConverters\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport kotlinx.serialization.json.Json\n\n@Entity(tableName = \"albums\")\n@TypeConverters(\n    AlbumImageRoomTypeConverter::class,\n    AlbumTrackRoomTypeConverter::class,\n    AlbumTagRoomTypeConverter::class,\n)\ninternal data class AlbumRoomModel(\n    @PrimaryKey(autoGenerate = true) val id: Int = 0,\n    val mbId: String,\n    val name: String,\n    val artist: String,\n    val images: List<ImageRoomModel> = listOf(),\n    val tracks: List<TrackRoomModel>?,\n    val tags: List<TagRoomModel>?,\n)\n\ninternal fun AlbumRoomModel.toDomainModel() =\n    Album(\n        this.name,\n        this.artist,\n        this.mbId,\n        this.images.mapNotNull { it.toDomainModel() },\n        this.tracks?.map { it.toDomainModel() },\n        this.tags?.map { it.toDomainModel() },\n    )\n\ninternal class AlbumImageRoomTypeConverter {\n    @TypeConverter\n    fun stringToList(data: String?) = data?.let { Json.decodeFromString<List<ImageRoomModel>>(it) } ?: listOf()\n\n    @TypeConverter\n    fun listToString(someObjects: List<ImageRoomModel>): String = Json.encodeToString(someObjects)\n}\n\ninternal class AlbumTrackRoomTypeConverter {\n    @TypeConverter\n    fun stringToList(data: String?) = data?.let { Json.decodeFromString<List<TrackRoomModel>>(it) } ?: listOf()\n\n    @TypeConverter\n    fun listToString(someObjects: List<TrackRoomModel>): String = Json.encodeToString(someObjects)\n}\n\ninternal class AlbumTagRoomTypeConverter {\n    @TypeConverter\n    fun stringToList(data: String?) = data?.let { Json.decodeFromString<List<TagRoomModel>>(it) } ?: listOf()\n\n    @TypeConverter\n    fun listToString(someObjects: List<TagRoomModel>): String = Json.encodeToString(someObjects)\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/model/ImageRoomModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database.model\n\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class ImageRoomModel(\n    val url: String,\n    val size: ImageSizeRoomModel,\n)\n\ninternal fun ImageRoomModel.toDomainModel() = this.size.toDomainModel()?.let { Image(this.url, it) }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/model/ImageSizeRoomModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database.model\n\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\n\ninternal enum class ImageSizeRoomModel {\n    MEDIUM,\n    SMALL,\n    LARGE,\n    EXTRA_LARGE,\n    MEGA,\n}\n\ninternal fun ImageSizeRoomModel.toDomainModel(): ImageSize? =\n    when (this) {\n        ImageSizeRoomModel.MEDIUM -> ImageSize.MEDIUM\n        ImageSizeRoomModel.SMALL -> ImageSize.SMALL\n        ImageSizeRoomModel.LARGE -> ImageSize.LARGE\n        ImageSizeRoomModel.EXTRA_LARGE -> ImageSize.EXTRA_LARGE\n        ImageSizeRoomModel.MEGA -> ImageSize.MEGA\n    }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/model/TagRoomModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database.model\n\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TagRoomModel(\n    val name: String,\n)\n\ninternal fun TagRoomModel.toDomainModel() =\n    Tag(\n        name = this.name,\n    )\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/datasource/database/model/TrackRoomModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.database.model\n\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport kotlinx.serialization.Serializable\n\n@Serializable\ninternal data class TrackRoomModel(\n    val name: String,\n    val duration: Int? = null,\n)\n\ninternal fun TrackRoomModel.toDomainModel() =\n    Track(\n        name = this.name,\n        duration = this.duration,\n    )\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/mapper/AlbumMapper.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.AlbumApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Album\n\ninternal class AlbumMapper(\n    private val imageMapper: ImageMapper,\n    private val trackMapper: TrackMapper,\n    private val tagMapper: TagMapper,\n) {\n    fun apiToRoom(apiModel: AlbumApiModel) =\n        AlbumRoomModel(\n            mbId = apiModel.mbId ?: \"\",\n            name = apiModel.name,\n            artist = apiModel.artist,\n            images = apiModel.images?.mapNotNull { imageMapper.apiToRoom(it) } ?: listOf(),\n            tracks = apiModel.tracks?.track?.map { trackMapper.apiToRoom(it) },\n            tags = apiModel.tags?.tag?.map { tagMapper.apiToRoom(it) },\n        )\n\n    fun apiToDomain(apiModel: AlbumApiModel): Album {\n        val images =\n            apiModel.images\n                ?.filterNot { it.size == ImageSizeApiModel.UNKNOWN || it.url.isBlank() }\n                ?.map { imageMapper.apiToDomain(it) }\n\n        return Album(\n            mbId = apiModel.mbId,\n            name = apiModel.name,\n            artist = apiModel.artist,\n            images = images ?: listOf(),\n            tracks = apiModel.tracks?.track?.map { trackMapper.apiToDomain(it) },\n            tags = apiModel.tags?.tag?.map { tagMapper.apiToDomain(it) },\n        )\n    }\n\n    fun roomToDomain(roomModel: AlbumRoomModel) =\n        Album(\n            roomModel.name,\n            roomModel.artist,\n            roomModel.mbId,\n            roomModel.images.mapNotNull { imageMapper.roomToDomain(it) },\n            roomModel.tracks?.map { trackMapper.roomToDomain(it) },\n            roomModel.tags?.map { tagMapper.roomToDomain(it) },\n        )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/mapper/ImageMapper.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Image\n\ninternal class ImageMapper(\n    private val imageSizeMapper: ImageSizeMapper,\n) {\n    fun apiToDomain(apiModel: ImageApiModel) =\n        Image(\n            url = apiModel.url,\n            size = imageSizeMapper.apiToDomain(apiModel.size),\n        )\n\n    fun apiToRoom(apiModel: ImageApiModel) =\n        imageSizeMapper.apiToRoom(apiModel.size)?.let {\n            ImageRoomModel(apiModel.url, it)\n        }\n\n    fun roomToDomain(roomModel: ImageRoomModel) =\n        imageSizeMapper.roomToDomain(roomModel.size)?.let {\n            Image(roomModel.url, it)\n        }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/mapper/ImageSizeMapper.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\n\ninternal class ImageSizeMapper {\n    fun apiToDomain(apiModel: ImageSizeApiModel): ImageSize = ImageSize.valueOf(apiModel.name)\n\n    fun apiToRoom(apiModel: ImageSizeApiModel): ImageSizeRoomModel? =\n        when (apiModel) {\n            ImageSizeApiModel.MEDIUM -> ImageSizeRoomModel.MEDIUM\n            ImageSizeApiModel.SMALL -> ImageSizeRoomModel.SMALL\n            ImageSizeApiModel.LARGE -> ImageSizeRoomModel.LARGE\n            ImageSizeApiModel.EXTRA_LARGE -> ImageSizeRoomModel.EXTRA_LARGE\n            ImageSizeApiModel.MEGA -> ImageSizeRoomModel.MEGA\n            ImageSizeApiModel.UNKNOWN -> null\n        }\n\n    fun roomToDomain(roomModel: ImageSizeRoomModel): ImageSize? =\n        when (roomModel) {\n            ImageSizeRoomModel.MEDIUM -> ImageSize.MEDIUM\n            ImageSizeRoomModel.SMALL -> ImageSize.SMALL\n            ImageSizeRoomModel.LARGE -> ImageSize.LARGE\n            ImageSizeRoomModel.EXTRA_LARGE -> ImageSize.EXTRA_LARGE\n            ImageSizeRoomModel.MEGA -> ImageSize.MEGA\n        }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/mapper/TagMapper.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TagRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\n\ninternal class TagMapper {\n    fun apiToDomain(apiModel: TagApiModel): Tag =\n        Tag(\n            name = apiModel.name,\n        )\n\n    fun apiToRoom(apiModel: TagApiModel): TagRoomModel =\n        TagRoomModel(\n            name = apiModel.name,\n        )\n\n    fun roomToDomain(roomModel: TagRoomModel): Tag =\n        Tag(\n            name = roomModel.name,\n        )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/mapper/TrackMapper.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TrackRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Track\n\ninternal class TrackMapper {\n    fun apiToDomain(apiModel: TrackApiModel): Track =\n        Track(\n            name = apiModel.name,\n            duration = apiModel.duration,\n        )\n\n    fun apiToRoom(apiModel: TrackApiModel): TrackRoomModel =\n        TrackRoomModel(\n            name = apiModel.name,\n            duration = apiModel.duration,\n        )\n\n    fun roomToDomain(roomModel: TrackRoomModel): Track =\n        Track(\n            name = roomModel.name,\n            duration = roomModel.duration,\n        )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/data/repository/AlbumRepositoryImpl.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.repository\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.service.AlbumRetrofitService\nimport com.igorwojda.showcase.feature.album.data.datasource.database.AlbumDao\nimport com.igorwojda.showcase.feature.album.data.mapper.AlbumMapper\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.repository.AlbumRepository\nimport com.igorwojda.showcase.feature.base.data.retrofit.ApiResult\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport timber.log.Timber\n\ninternal class AlbumRepositoryImpl(\n    private val albumRetrofitService: AlbumRetrofitService,\n    private val albumDao: AlbumDao,\n    private val albumMapper: AlbumMapper,\n) : AlbumRepository {\n    override suspend fun searchAlbum(phrase: String?): Result<List<Album>> =\n        when (val apiResult = albumRetrofitService.searchAlbumAsync(phrase)) {\n            is ApiResult.Success -> {\n                val albums =\n                    apiResult\n                        .data\n                        .results\n                        .albumMatches\n                        .album\n                        .also { albumsApiModels ->\n                            val albumsRoomModels = albumsApiModels.map { albumMapper.apiToRoom(it) }\n                            albumDao.insertAlbums(albumsRoomModels)\n                        }.map { albumMapper.apiToDomain(it) }\n\n                Result.Success(albums)\n            }\n            is ApiResult.Error -> {\n                Result.Failure()\n            }\n            is ApiResult.Exception -> {\n                Timber.e(apiResult.throwable)\n\n                val albums =\n                    albumDao\n                        .getAll()\n                        .map { albumMapper.roomToDomain(it) }\n\n                Result.Success(albums)\n            }\n        }\n\n    override suspend fun getAlbumInfo(\n        artistName: String,\n        albumName: String,\n        mbId: String?,\n    ): Result<Album> =\n        when (val apiResult = albumRetrofitService.getAlbumInfoAsync(artistName, albumName, mbId)) {\n            is ApiResult.Success -> {\n                val album =\n                    apiResult\n                        .data\n                        .album\n                        .let { albumMapper.apiToDomain(it) }\n\n                Result.Success(album)\n            }\n            is ApiResult.Error -> {\n                Result.Failure()\n            }\n            is ApiResult.Exception -> {\n                Timber.e(apiResult.throwable)\n\n                val album =\n                    albumDao\n                        .getAlbum(artistName, albumName, mbId)\n                        .let { albumMapper.roomToDomain(it) }\n\n                Result.Success(album)\n            }\n        }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/DomainModule.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain\n\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumListUseCase\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumUseCase\nimport org.koin.core.module.dsl.singleOf\nimport org.koin.dsl.module\n\ninternal val domainModule =\n    module {\n\n        singleOf(::GetAlbumListUseCase)\n\n        singleOf(::GetAlbumUseCase)\n    }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/enum/ImageSize.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.enum\n\ninternal enum class ImageSize {\n    SMALL,\n    MEDIUM,\n    LARGE,\n    EXTRA_LARGE,\n    MEGA,\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/model/Album.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.model\n\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\n\n// Images are loaded for both album list and album detail instance\n// Tracks and Tags are only loaded for album detail instance (not album list instance)\ninternal data class Album(\n    val name: String,\n    val artist: String,\n    val mbId: String? = null,\n    val images: List<Image> = emptyList(),\n    val tracks: List<Track>? = null,\n    val tags: List<Tag>? = null,\n) {\n    val id: String = \"$artist - $name\"\n\n    fun getDefaultImageUrl() = images.firstOrNull { it.size == ImageSize.EXTRA_LARGE }?.url\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/model/Image.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.model\n\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\n\ninternal data class Image(\n    val url: String,\n    val size: ImageSize,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/model/Tag.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.model\n\ninternal data class Tag(\n    val name: String,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/model/Track.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.model\n\ninternal data class Track(\n    val name: String,\n    val duration: Int? = null,\n)\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/repository/AlbumRepository.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.repository\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.domain.result.Result\n\ninternal interface AlbumRepository {\n    suspend fun getAlbumInfo(\n        artistName: String,\n        albumName: String,\n        mbId: String?,\n    ): Result<Album>\n\n    suspend fun searchAlbum(phrase: String?): Result<List<Album>>\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/usecase/GetAlbumListUseCase.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.usecase\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.repository.AlbumRepository\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport com.igorwojda.showcase.feature.base.domain.result.mapSuccess\n\ninternal class GetAlbumListUseCase(\n    private val albumRepository: AlbumRepository,\n) {\n    suspend operator fun invoke(query: String?): Result<List<Album>> {\n        val result =\n            albumRepository\n                .searchAlbum(query)\n                .mapSuccess {\n                    val albumsWithImages = value.filter { it.getDefaultImageUrl() != null }\n\n                    copy(value = albumsWithImages)\n                }\n\n        return result\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/domain/usecase/GetAlbumUseCase.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.usecase\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.repository.AlbumRepository\nimport com.igorwojda.showcase.feature.base.domain.result.Result\n\ninternal class GetAlbumUseCase(\n    private val albumRepository: AlbumRepository,\n) {\n    suspend operator fun invoke(\n        artistName: String,\n        albumName: String,\n        mbId: String?,\n    ): Result<Album> = albumRepository.getAlbumInfo(artistName, albumName, mbId)\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/PresentationModule.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation\n\nimport coil.ImageLoader\nimport com.igorwojda.showcase.feature.album.presentation.screen.albumdetail.AlbumDetailViewModel\nimport com.igorwojda.showcase.feature.album.presentation.screen.albumlist.AlbumListViewModel\nimport org.koin.core.module.dsl.singleOf\nimport org.koin.core.module.dsl.viewModelOf\nimport org.koin.dsl.module\n\ninternal val presentationModule =\n    module {\n\n        // AlbumList\n        viewModelOf(::AlbumListViewModel)\n\n        singleOf(::ImageLoader)\n\n        // AlbumDetails\n        viewModelOf(::AlbumDetailViewModel)\n    }\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/composable/SearchBarComposable.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.composable\n\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.material.icons.filled.Clear\nimport androidx.compose.material.icons.filled.Search\nimport androidx.compose.material3.Icon\nimport androidx.compose.material3.IconButton\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.OutlinedTextField\nimport androidx.compose.material3.OutlinedTextFieldDefaults\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.LaunchedEffect\nimport androidx.compose.runtime.getValue\nimport androidx.compose.runtime.mutableStateOf\nimport androidx.compose.runtime.remember\nimport androidx.compose.runtime.setValue\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.text.input.TextFieldValue\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.igorwojda.showcase.feature.album.R\nimport com.igorwojda.showcase.feature.base.common.res.Dimen\nimport kotlinx.coroutines.delay\n\n@Composable\nfun SearchBar(\n    query: String,\n    onQueryChange: (String) -> Unit,\n    onSearch: (String) -> Unit,\n    modifier: Modifier = Modifier,\n) {\n    val minimumProductQuerySize = 1\n    val delayBeforeSubmittingQuery = 300L\n\n    var textFieldValue by remember(query) { mutableStateOf(TextFieldValue(query)) }\n\n    // Debounce search - only trigger search after user stops typing\n    LaunchedEffect(textFieldValue.text, onSearch, onQueryChange) {\n        if (textFieldValue.text.length >= minimumProductQuerySize) {\n            delay(delayBeforeSubmittingQuery)\n            onSearch(textFieldValue.text)\n            onQueryChange(textFieldValue.text)\n        } else if (textFieldValue.text.isEmpty()) {\n            // Immediately search when query is cleared\n            onSearch(\"\")\n            onQueryChange(\"\")\n        }\n    }\n\n    OutlinedTextField(\n        value = textFieldValue,\n        modifier =\n            modifier\n                .fillMaxWidth()\n                .padding(Dimen.spaceM),\n        onValueChange = { newValue ->\n            textFieldValue = newValue\n        },\n        placeholder = {\n            Text(stringResource(R.string.album_list_search_placeholder))\n        },\n        leadingIcon = {\n            Icon(\n                imageVector = Icons.Default.Search,\n                contentDescription = \"Search\",\n            )\n        },\n        trailingIcon =\n            if (textFieldValue.text.isNotEmpty()) {\n                {\n                    IconButton(\n                        onClick = {\n                            textFieldValue = TextFieldValue(\"\")\n                            onSearch(\"\")\n                            onQueryChange(\"\")\n                        },\n                    ) {\n                        Icon(\n                            imageVector = Icons.Default.Clear,\n                            contentDescription = \"Clear search\",\n                        )\n                    }\n                }\n            } else {\n                null\n            },\n        singleLine = true,\n        colors =\n            OutlinedTextFieldDefaults.colors(\n                unfocusedBorderColor = MaterialTheme.colorScheme.outline.copy(alpha = 0.5f),\n                focusedBorderColor = MaterialTheme.colorScheme.primary,\n            ),\n    )\n}\n\n@Preview\n@Composable\nprivate fun SearchBarPreview() {\n    SearchBar(\n        query = \"Sample query\",\n        onQueryChange = { },\n        onSearch = { },\n    )\n}\n\n@Preview\n@Composable\nprivate fun SearchBarEmptyPreview() {\n    SearchBar(\n        query = \"\",\n        onQueryChange = { },\n        onSearch = { },\n    )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumdetail/AlbumDetailAction.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumdetail\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseAction\n\ninternal sealed interface AlbumDetailAction : BaseAction<AlbumDetailUiState> {\n    object AlbumLoadStart : AlbumDetailAction {\n        override fun reduce(state: AlbumDetailUiState) = AlbumDetailUiState.Loading\n    }\n\n    class AlbumLoadSuccess(\n        private val album: Album,\n    ) : AlbumDetailAction {\n        override fun reduce(state: AlbumDetailUiState) =\n            AlbumDetailUiState.Content(\n                artistName = album.artist,\n                albumName = album.name,\n                coverImageUrl = album.getDefaultImageUrl() ?: \"\",\n                tracks = album.tracks,\n                tags = album.tags,\n            )\n    }\n\n    object AlbumLoadFailure : AlbumDetailAction {\n        override fun reduce(state: AlbumDetailUiState) = AlbumDetailUiState.Error\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumdetail/AlbumDetailScreen.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumdetail\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation.layout.FlowRow\nimport androidx.compose.foundation.layout.Row\nimport androidx.compose.foundation.layout.Spacer\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport androidx.compose.foundation.layout.height\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.foundation.layout.size\nimport androidx.compose.foundation.layout.width\nimport androidx.compose.foundation.layout.wrapContentSize\nimport androidx.compose.foundation.rememberScrollState\nimport androidx.compose.foundation.verticalScroll\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.material.icons.automirrored.filled.ArrowBack\nimport androidx.compose.material.icons.outlined.Star\nimport androidx.compose.material3.ElevatedCard\nimport androidx.compose.material3.ExperimentalMaterial3Api\nimport androidx.compose.material3.Icon\nimport androidx.compose.material3.IconButton\nimport androidx.compose.material3.Scaffold\nimport androidx.compose.material3.SuggestionChip\nimport androidx.compose.material3.Text\nimport androidx.compose.material3.TopAppBar\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.LaunchedEffect\nimport androidx.compose.runtime.getValue\nimport androidx.compose.ui.Alignment.Companion.CenterHorizontally\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport androidx.compose.ui.unit.dp\nimport androidx.lifecycle.compose.collectAsStateWithLifecycle\nimport com.igorwojda.showcase.feature.album.R\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport com.igorwojda.showcase.feature.album.presentation.util.TimeUtil\nimport com.igorwojda.showcase.feature.base.common.res.Dimen\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.ErrorAnim\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.LoadingIndicator\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.PlaceholderImage\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.TextTitleLarge\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.TextTitleMedium\nimport org.koin.androidx.compose.koinViewModel\n\n@OptIn(ExperimentalMaterial3Api::class)\n@Composable\nfun AlbumDetailScreen(\n    albumName: String,\n    artistName: String,\n    albumMbId: String?,\n    modifier: Modifier = Modifier,\n    onBackClick: () -> Unit = {},\n) {\n    val viewModel: AlbumDetailViewModel = koinViewModel()\n    // Initialize the viewModel with args when the composable enters composition\n    LaunchedEffect(Unit) {\n        viewModel.onInit(albumName, artistName, albumMbId)\n    }\n\n    val uiState by viewModel.uiStateFlow.collectAsStateWithLifecycle()\n\n    Scaffold(\n        modifier = modifier,\n        topBar = {\n            TopAppBar(\n                title = { Text(text = albumName) },\n                navigationIcon = {\n                    IconButton(onClick = onBackClick) {\n                        Icon(\n                            imageVector = Icons.AutoMirrored.Filled.ArrowBack,\n                            contentDescription = stringResource(R.string.album_detail_back),\n                        )\n                    }\n                },\n            )\n        },\n    ) { innerPadding ->\n        when (val currentUiState = uiState) {\n            AlbumDetailUiState.Error -> {\n                ErrorAnim()\n            }\n            AlbumDetailUiState.Loading -> {\n                LoadingIndicator()\n            }\n            is AlbumDetailUiState.Content -> {\n                AlbumDetailContent(\n                    content = currentUiState,\n                    modifier = Modifier.padding(innerPadding),\n                )\n            }\n        }\n    }\n}\n\n@Composable\nprivate fun AlbumDetailContent(\n    content: AlbumDetailUiState.Content,\n    modifier: Modifier = Modifier,\n) {\n    Column(\n        modifier =\n            modifier\n                .padding(horizontal = Dimen.screenContentPadding)\n                .verticalScroll(rememberScrollState()),\n    ) {\n        ElevatedCard(\n            modifier =\n                Modifier\n                    .padding(Dimen.spaceM)\n                    .wrapContentSize()\n                    .size(320.dp)\n                    .align(CenterHorizontally),\n        ) {\n            PlaceholderImage(\n                url = content.coverImageUrl,\n                contentDescription = stringResource(id = R.string.album_detail_cover_content_description),\n                modifier = Modifier.fillMaxWidth(),\n            )\n        }\n        Spacer(modifier = Modifier.height(Dimen.spaceL))\n        TextTitleLarge(text = content.albumName)\n        TextTitleMedium(text = content.artistName)\n        Spacer(modifier = Modifier.height(Dimen.spaceL))\n\n        if (content.tags?.isNotEmpty() == true) {\n            Tags(content.tags)\n            Spacer(modifier = Modifier.height(Dimen.spaceL))\n        }\n\n        if (content.tracks?.isNotEmpty() == true) {\n            TextTitleMedium(text = stringResource(id = R.string.album_detail_tracks))\n            Spacer(modifier = Modifier.height(Dimen.spaceS))\n            Tracks(content.tracks)\n        }\n    }\n}\n\n@Composable\nprivate fun Tags(tags: List<Tag>?) {\n    FlowRow(\n        horizontalArrangement = Arrangement.spacedBy(Dimen.spaceS),\n        verticalArrangement = Arrangement.spacedBy(Dimen.spaceS),\n    ) {\n        tags?.forEach { tag ->\n            SuggestionChip(\n                onClick = { },\n                label = { Text(tag.name) },\n            )\n        }\n    }\n}\n\n@Composable\ninternal fun Tracks(tracks: List<Track>?) {\n    tracks?.forEach { track ->\n        TrackItem(track)\n    }\n}\n\n@Composable\ninternal fun TrackItem(track: Track) {\n    Row {\n        Icon(Icons.Outlined.Star, contentDescription = null)\n        Spacer(modifier = Modifier.width(Dimen.spaceS))\n\n        val text =\n            buildString {\n                append(track.name)\n                track.duration?.let { duration ->\n                    append(\" ${TimeUtil.formatTime(duration)}\")\n                }\n            }\n\n        Text(text = text)\n    }\n}\n\n@Preview\n@Composable\nprivate fun TrackItemPreview() {\n    TrackItem(\n        track =\n            Track(\n                name = \"Sample Track\",\n                duration = 180, // 3 minutes in seconds\n            ),\n    )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumdetail/AlbumDetailUiState.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumdetail\n\nimport androidx.compose.runtime.Immutable\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseState\n\n@Immutable\ninternal sealed interface AlbumDetailUiState : BaseState {\n    @Immutable\n    data class Content(\n        val albumName: String = \"\",\n        val artistName: String = \"\",\n        val coverImageUrl: String = \"\",\n        val tracks: List<Track>? = emptyList(),\n        val tags: List<Tag>? = emptyList(),\n    ) : AlbumDetailUiState\n\n    @Immutable\n    data object Loading : AlbumDetailUiState\n\n    @Immutable\n    data object Error : AlbumDetailUiState\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumdetail/AlbumDetailViewModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumdetail\n\nimport androidx.lifecycle.viewModelScope\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumUseCase\nimport com.igorwojda.showcase.feature.base.domain.result.Result.Failure\nimport com.igorwojda.showcase.feature.base.domain.result.Result.Success\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseViewModel\nimport kotlinx.coroutines.launch\n\ninternal class AlbumDetailViewModel(\n    private val getAlbumUseCase: GetAlbumUseCase,\n) : BaseViewModel<AlbumDetailUiState, AlbumDetailAction>(AlbumDetailUiState.Loading) {\n    fun onInit(\n        albumName: String,\n        artistName: String,\n        albumMbId: String?,\n    ) {\n        getAlbum(albumName, artistName, albumMbId)\n    }\n\n    private fun getAlbum(\n        albumName: String,\n        artistName: String,\n        albumMbId: String?,\n    ) {\n        sendAction(AlbumDetailAction.AlbumLoadStart)\n\n        viewModelScope.launch {\n            getAlbumUseCase(artistName, albumName, albumMbId).also {\n                when (it) {\n                    is Success -> {\n                        sendAction(AlbumDetailAction.AlbumLoadSuccess(it.value))\n                    }\n                    is Failure -> {\n                        sendAction(AlbumDetailAction.AlbumLoadFailure)\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumlist/AlbumListAction.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumlist\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseAction\n\ninternal sealed interface AlbumListAction : BaseAction<AlbumListUiState> {\n    object AlbumListLoadStart : AlbumListAction {\n        override fun reduce(state: AlbumListUiState) = AlbumListUiState.Loading\n    }\n\n    class AlbumListLoadSuccess(\n        private val albums: List<Album>,\n    ) : AlbumListAction {\n        override fun reduce(state: AlbumListUiState) = AlbumListUiState.Content(albums)\n    }\n\n    object AlbumListLoadFailure : AlbumListAction {\n        override fun reduce(state: AlbumListUiState) = AlbumListUiState.Error\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumlist/AlbumListScreen.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumlist\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.foundation.layout.size\nimport androidx.compose.foundation.layout.wrapContentSize\nimport androidx.compose.foundation.lazy.grid.GridCells\nimport androidx.compose.foundation.lazy.grid.LazyVerticalGrid\nimport androidx.compose.foundation.lazy.grid.items\nimport androidx.compose.material3.ElevatedCard\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.LaunchedEffect\nimport androidx.compose.runtime.getValue\nimport androidx.compose.runtime.mutableStateOf\nimport androidx.compose.runtime.remember\nimport androidx.compose.runtime.setValue\nimport androidx.compose.ui.Alignment\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport androidx.lifecycle.compose.collectAsStateWithLifecycle\nimport com.igorwojda.showcase.feature.album.R\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.presentation.composable.SearchBar\nimport com.igorwojda.showcase.feature.base.common.res.Dimen\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.ErrorAnim\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.LoadingIndicator\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.PlaceholderImage\nimport org.koin.androidx.compose.koinViewModel\n\n@Composable\nfun AlbumListScreen(\n    modifier: Modifier = Modifier,\n    onNavigateToAlbumDetail: ((artistName: String, albumName: String, albumMbId: String?) -> Unit)? = null,\n) {\n    val viewModel: AlbumListViewModel = koinViewModel()\n\n    val uiState by viewModel.uiStateFlow.collectAsStateWithLifecycle()\n\n    var searchQuery by remember { mutableStateOf(\"\") }\n\n    LaunchedEffect(Unit) {\n        viewModel.onInit()\n    }\n\n    Column(modifier = modifier.fillMaxSize()) {\n        // Search bar\n        SearchBar(\n            query = searchQuery,\n            onQueryChange = { newQuery ->\n                searchQuery = newQuery\n            },\n            onSearch = { query ->\n                if (query.isNotEmpty()) {\n                    viewModel.onInit(query)\n                } else {\n                    viewModel.onInit()\n                }\n            },\n        )\n\n        // Content\n        Box(\n            modifier = Modifier.fillMaxSize(),\n            contentAlignment = Alignment.Center,\n        ) {\n            when (val currentUiState = uiState) { // Extract to local variable for smart casting\n                AlbumListUiState.Error -> ErrorAnim()\n                AlbumListUiState.Loading -> LoadingIndicator()\n                is AlbumListUiState.Content -> AlbumListContent(currentUiState, onNavigateToAlbumDetail)\n            }\n        }\n    }\n}\n\n@Composable\nprivate fun AlbumListContent(\n    uiState: AlbumListUiState.Content,\n    onNavigateToAlbumDetail: ((String, String, String?) -> Unit)?,\n) {\n    AlbumGrid(\n        albums = uiState.albums,\n        onAlbumClick = { album ->\n            onNavigateToAlbumDetail?.invoke(album.artist, album.name, album.mbId)\n        },\n    )\n}\n\n@Composable\nprivate fun AlbumGrid(\n    albums: List<Album>,\n    onAlbumClick: (Album) -> Unit,\n) {\n    LazyVerticalGrid(\n        columns = GridCells.Adaptive(Dimen.imageSize),\n    ) {\n        items(items = albums, key = { it.id }) { album ->\n            ElevatedCard(\n                modifier =\n                    Modifier\n                        .padding(Dimen.spaceS)\n                        .wrapContentSize(),\n                onClick = { onAlbumClick(album) },\n            ) {\n                PlaceholderImage(\n                    url = album.getDefaultImageUrl(),\n                    contentDescription = stringResource(id = R.string.album_detail_cover_content_description),\n                    modifier = Modifier.size(Dimen.imageSize),\n                )\n            }\n        }\n    }\n}\n\n@Preview\n@Composable\nprivate fun AlbumGridPreview() {\n    val sampleAlbums =\n        listOf(\n            Album(\n                name = \"Sample Album 1\",\n                artist = \"Sample Artist\",\n                mbId = null,\n                images = emptyList(),\n            ),\n            Album(\n                name = \"Sample Album 2\",\n                artist = \"Sample Artist 2\",\n                mbId = null,\n                images = emptyList(),\n            ),\n        )\n\n    AlbumGrid(\n        albums = sampleAlbums,\n        onAlbumClick = { },\n    )\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumlist/AlbumListUiState.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumlist\n\nimport androidx.compose.runtime.Immutable\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseState\n\n@Immutable\ninternal sealed interface AlbumListUiState : BaseState {\n    @Immutable\n    data class Content(\n        val albums: List<Album>,\n    ) : AlbumListUiState\n\n    @Immutable\n    data object Loading : AlbumListUiState\n\n    @Immutable\n    data object Error : AlbumListUiState\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumlist/AlbumListViewModel.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumlist\n\nimport androidx.lifecycle.SavedStateHandle\nimport androidx.lifecycle.viewModelScope\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumListUseCase\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseViewModel\nimport kotlinx.coroutines.Job\nimport kotlinx.coroutines.launch\n\ninternal class AlbumListViewModel(\n    private val savedStateHandle: SavedStateHandle,\n    private val getAlbumListUseCase: GetAlbumListUseCase,\n) : BaseViewModel<AlbumListUiState, AlbumListAction>(AlbumListUiState.Loading) {\n    private var job: Job? = null\n\n    fun onInit(query: String? = (savedStateHandle[SAVED_QUERY_KEY] as? String) ?: DEFAULT_QUERY_NAME) {\n        getAlbumList(query)\n    }\n\n    private fun getAlbumList(query: String?) {\n        if (job != null) {\n            job?.cancel()\n            job = null\n        }\n\n        savedStateHandle[SAVED_QUERY_KEY] = query\n\n        sendAction(AlbumListAction.AlbumListLoadStart)\n\n        job =\n            viewModelScope.launch {\n                getAlbumListUseCase(query).also { result ->\n                    val albumListAction =\n                        when (result) {\n                            is Result.Success -> {\n                                AlbumListAction.AlbumListLoadSuccess(result.value)\n                            }\n                            is Result.Failure -> {\n                                AlbumListAction.AlbumListLoadFailure\n                            }\n                        }\n\n                    sendAction(albumListAction)\n                }\n            }\n    }\n\n    companion object {\n        const val DEFAULT_QUERY_NAME = \"Jackson\"\n        private const val SAVED_QUERY_KEY = \"query\"\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/kotlin/com/igorwojda/showcase/feature/album/presentation/util/TimeUtil.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.util\n\nobject TimeUtil {\n    /**\n     * provides a String representation of the given time.\n     * @return `seconds` in mm:ss format\n     */\n    internal fun formatTime(seconds: Int): String {\n        val secondsInMinute = 60\n        val secondsInHour = 3600\n\n        @Suppress(\"detekt.ImplicitDefaultLocale\")\n        return String.format(\"%02d:%02d\", seconds % secondsInHour / secondsInMinute, seconds % secondsInMinute)\n    }\n}\n"
  },
  {
    "path": "feature/album/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"album_list_search_hint\">Search Album</string>\n    <string name=\"album_list_title\">Albums</string>\n    <string name=\"album_list_search_placeholder\">Search albums…</string>\n\n    <string name=\"album_detail_cover_content_description\">Album Cover</string>\n    <string name=\"album_detail_tracks\">Tracks</string>\n    <string name=\"album_detail_back\">Back</string>\n</resources>\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/DataFixtures.kt",
    "content": "package com.igorwojda.showcase.feature.album.data\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.AlbumApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.AlbumListApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.SearchAlbumResultsApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagListApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackListApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.response.SearchAlbumResponse\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TagRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TrackRoomModel\n\nobject DataFixtures {\n    internal fun getAlbumsApiModel() =\n        listOf(\n            getAlbumApiModel(\"mbid1\", \"album1\", \"artist1\"),\n        )\n\n    internal fun getAlbumsRoomModels() =\n        listOf(\n            getAlbumRoomModel(1, \"mbid1\", \"album1\", \"artist1\"),\n            getAlbumRoomModel(2, \"mbid2\", \"album2\", \"artist2\"),\n        )\n\n    internal fun getAlbumApiModel(\n        mbId: String = \"mbId\",\n        name: String = \"album\",\n        artist: String = \"artist\",\n        images: List<ImageApiModel>? = listOf(getImageModelApiModel()),\n        tracks: TrackListApiModel = TrackListApiModel(getTrackModelApiModel()),\n        tags: TagListApiModel = TagListApiModel(getTagModelApiModel()),\n    ): AlbumApiModel =\n        AlbumApiModel(\n            mbId,\n            name,\n            artist,\n            images,\n            tracks,\n            tags,\n        )\n\n    internal fun getImageModelApiModel(\n        url: String = \"url_${ImageSizeApiModel.EXTRA_LARGE}\",\n        size: ImageSizeApiModel = ImageSizeApiModel.EXTRA_LARGE,\n    ) = ImageApiModel(url, size)\n\n    private fun getTrackModelApiModel(\n        name: String = \"track\",\n        duration: Int? = 12,\n    ) = listOf(TrackApiModel(name, duration))\n\n    private fun getTagModelApiModel(name: String = \"tag\") = listOf(TagApiModel(name))\n\n    private fun getAlbumRoomModel(\n        id: Int = 0,\n        mbId: String = \"mbId\",\n        name: String = \"album\",\n        artist: String = \"artist\",\n        images: List<ImageRoomModel> = listOf(getImageRoomModel()),\n        tracks: List<TrackRoomModel> = listOf(getTrackRoomModel()),\n        tags: List<TagRoomModel> = listOf(getTagRoomModel()),\n    ): AlbumRoomModel =\n        AlbumRoomModel(\n            id,\n            mbId,\n            name,\n            artist,\n            images,\n            tracks,\n            tags,\n        )\n\n    private fun getImageRoomModel(\n        url: String = \"url_${ImageSizeApiModel.EXTRA_LARGE}\",\n        size: ImageSizeRoomModel = ImageSizeRoomModel.EXTRA_LARGE,\n    ) = ImageRoomModel(url, size)\n\n    private fun getTrackRoomModel(\n        name: String = \"track\",\n        duration: Int = 12,\n    ) = TrackRoomModel(name, duration)\n\n    private fun getTagRoomModel(name: String = \"tag\") = TagRoomModel(name)\n\n    object ApiResponse {\n        internal fun getSearchAlbum() =\n            SearchAlbumResponse(\n                SearchAlbumResultsApiModel(\n                    AlbumListApiModel(getAlbumsApiModel()),\n                ),\n            )\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/AlbumApiModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.DataFixtures\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass AlbumApiModelTest {\n    @Test\n    fun `data model with full data maps to AlbumDomainModel`() {\n        // given\n        val sut = DataFixtures.getAlbumApiModel()\n\n        // when\n        val domainModel = sut.toDomainModel()\n\n        // then\n        domainModel shouldBeEqualTo\n            Album(\n                sut.name,\n                sut.artist,\n                sut.mbId,\n                sut.images?.map { it.toDomainModel() } ?: listOf(),\n                sut.tracks?.track?.map { it.toDomainModel() },\n                sut.tags?.tag?.map { it.toDomainModel() },\n            )\n    }\n\n    @Test\n    fun `data model with missing data maps to AlbumDomainModel`() {\n        // given\n        val sut =\n            DataFixtures.getAlbumApiModel(\n                images = emptyList(),\n            )\n\n        // when\n        val domainModel = sut.toDomainModel()\n\n        // then\n        domainModel shouldBeEqualTo\n            Album(\n                mbId = \"mbId\",\n                name = \"album\",\n                artist = \"artist\",\n                images = emptyList(),\n                tracks = listOf(Track(\"track\", 12)),\n                tags = listOf(Tag(\"tag\")),\n            )\n    }\n\n    @Test\n    fun `mapping filters out unknown size`() {\n        // given\n        val albumDataImages =\n            listOf(ImageSizeApiModel.EXTRA_LARGE, ImageSizeApiModel.UNKNOWN)\n                .map { DataFixtures.getImageModelApiModel(size = it) }\n        val sut = DataFixtures.getAlbumApiModel(images = albumDataImages)\n\n        // when\n        val domainModel = sut.toDomainModel()\n\n        // then\n        domainModel.images.single { it.size == ImageSize.EXTRA_LARGE }\n    }\n\n    @Test\n    fun `mapping filters out blank url`() {\n        // given\n        val images =\n            listOf(\"\", \"url\")\n                .map { DataFixtures.getImageModelApiModel(url = it) }\n\n        val sut = DataFixtures.getAlbumApiModel(images = images)\n\n        // when\n        val domainModel = sut.toDomainModel()\n\n        // then\n        domainModel.images.single { it.url == \"url\" }\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/ImageApiModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport com.igorwojda.showcase.feature.album.data.DataFixtures\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.amshove.kluent.shouldThrow\nimport org.junit.jupiter.api.Test\n\nclass ImageApiModelTest {\n    @Test\n    fun `map to AlbumWikiDomainModel`() {\n        // given\n        val url = \"url\"\n        val size = ImageSizeApiModel.EXTRA_LARGE\n        val sut = DataFixtures.getImageModelApiModel(url, size)\n\n        // when\n        val domainModel = sut.toDomainModel()\n\n        // then\n        domainModel shouldBeEqualTo Image(url, size.toDomainModel())\n    }\n\n    @Test\n    fun `crash when mapping unknown AlbumWikiDomainModel`() {\n        // given\n        val url = \"url\"\n        val size = ImageSizeApiModel.UNKNOWN\n        val sut = DataFixtures.getImageModelApiModel(url, size)\n\n        // when\n        val func = { sut.toDomainModel() }\n\n        // then\n        func shouldThrow IllegalArgumentException::class\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/datasource/api/model/ImageSizeApiModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.datasource.api.model\n\nimport org.junit.jupiter.api.Test\n\nclass ImageSizeApiModelTest {\n    @Test\n    fun `maps to AlbumDomainImageSize`() {\n        // given\n        val dataEnums =\n            ImageSizeApiModel\n                .entries\n                .filterNot { it == ImageSizeApiModel.UNKNOWN }\n\n        // when\n        dataEnums.forEach { it.toDomainModel() }\n\n        // then\n        // no explicit check is required, because test will crash if any of\n        // the costs in the enums can't be mapped to a domain enum\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/mapper/AlbumMapperTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.AlbumApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagListApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackListApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.AlbumRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TagRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TrackRoomModel\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport io.mockk.every\nimport io.mockk.mockk\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass AlbumMapperTest {\n    private val imageMapper: ImageMapper = mockk()\n    private val trackMapper: TrackMapper = mockk()\n    private val tagMapper: TagMapper = mockk()\n\n    private val sut =\n        AlbumMapper(\n            imageMapper,\n            trackMapper,\n            tagMapper,\n        )\n\n    @Test\n    fun `apiToRoom maps album correctly`() {\n        // given\n        val apiModel =\n            AlbumApiModel(\n                mbId = \"test-id\",\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                images =\n                    listOf(\n                        ImageApiModel(\"https://example.com/image.jpg\", ImageSizeApiModel.LARGE),\n                    ),\n                tracks =\n                    TrackListApiModel(\n                        listOf(TrackApiModel(\"Track 1\", 180)),\n                    ),\n                tags =\n                    TagListApiModel(\n                        listOf(TagApiModel(\"rock\")),\n                    ),\n            )\n\n        every { imageMapper.apiToRoom(any()) } returns ImageRoomModel(\"https://example.com/image.jpg\", ImageSizeRoomModel.LARGE)\n        every { trackMapper.apiToRoom(any()) } returns TrackRoomModel(\"Track 1\", 180)\n        every { tagMapper.apiToRoom(any()) } returns TagRoomModel(\"rock\")\n\n        // when\n        val result = sut.apiToRoom(apiModel)\n\n        // then\n        result shouldBeEqualTo\n            AlbumRoomModel(\n                mbId = \"test-id\",\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                images = listOf(ImageRoomModel(\"https://example.com/image.jpg\", ImageSizeRoomModel.LARGE)),\n                tracks = listOf(TrackRoomModel(\"Track 1\", 180)),\n                tags = listOf(TagRoomModel(\"rock\")),\n            )\n    }\n\n    @Test\n    fun `apiToDomain maps album correctly`() {\n        // given\n        val apiModel =\n            AlbumApiModel(\n                mbId = \"test-id\",\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                images =\n                    listOf(\n                        ImageApiModel(\"https://example.com/image.jpg\", ImageSizeApiModel.LARGE),\n                    ),\n                tracks =\n                    TrackListApiModel(\n                        listOf(TrackApiModel(\"Track 1\", 180)),\n                    ),\n                tags =\n                    TagListApiModel(\n                        listOf(TagApiModel(\"rock\")),\n                    ),\n            )\n\n        every { imageMapper.apiToDomain(any()) } returns Image(\"https://example.com/image.jpg\", ImageSize.LARGE)\n        every { trackMapper.apiToDomain(any()) } returns Track(\"Track 1\", 180)\n        every { tagMapper.apiToDomain(any()) } returns Tag(\"rock\")\n\n        // when\n        val result = sut.apiToDomain(apiModel)\n\n        // then\n        result shouldBeEqualTo\n            Album(\n                mbId = \"test-id\",\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                images = listOf(Image(\"https://example.com/image.jpg\", ImageSize.LARGE)),\n                tracks = listOf(Track(\"Track 1\", 180)),\n                tags = listOf(Tag(\"rock\")),\n            )\n    }\n\n    @Test\n    fun `roomToDomain maps album correctly`() {\n        // given\n        val roomModel =\n            AlbumRoomModel(\n                id = 1,\n                mbId = \"test-id\",\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                images = listOf(ImageRoomModel(\"https://example.com/image.jpg\", ImageSizeRoomModel.LARGE)),\n                tracks = listOf(TrackRoomModel(\"Track 1\", 180)),\n                tags = listOf(TagRoomModel(\"rock\")),\n            )\n\n        every { imageMapper.roomToDomain(any()) } returns Image(\"https://example.com/image.jpg\", ImageSize.LARGE)\n        every { trackMapper.roomToDomain(any()) } returns Track(\"Track 1\", 180)\n        every { tagMapper.roomToDomain(any()) } returns Tag(\"rock\")\n\n        // when\n        val result = sut.roomToDomain(roomModel)\n\n        // then\n        result shouldBeEqualTo\n            Album(\n                name = \"Test Album\",\n                artist = \"Test Artist\",\n                mbId = \"test-id\",\n                images = listOf(Image(\"https://example.com/image.jpg\", ImageSize.LARGE)),\n                tracks = listOf(Track(\"Track 1\", 180)),\n                tags = listOf(Tag(\"rock\")),\n            )\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/mapper/ImageMapperTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageRoomModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport io.mockk.every\nimport io.mockk.mockk\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass ImageMapperTest {\n    private val imageSizeMapper: ImageSizeMapper = mockk()\n    private val sut = ImageMapper(imageSizeMapper)\n\n    @Test\n    fun `apiToDomain maps image correctly`() {\n        // given\n        val apiModel = ImageApiModel(\"https://example.com/image.jpg\", ImageSizeApiModel.LARGE)\n        every { imageSizeMapper.apiToDomain(ImageSizeApiModel.LARGE) } returns ImageSize.LARGE\n\n        // when\n        val result = sut.apiToDomain(apiModel)\n\n        // then\n        result shouldBeEqualTo Image(\"https://example.com/image.jpg\", ImageSize.LARGE)\n    }\n\n    @Test\n    fun `apiToRoom maps image correctly`() {\n        // given\n        val apiModel = ImageApiModel(\"https://example.com/image.jpg\", ImageSizeApiModel.LARGE)\n        every { imageSizeMapper.apiToRoom(ImageSizeApiModel.LARGE) } returns ImageSizeRoomModel.LARGE\n\n        // when\n        val result = sut.apiToRoom(apiModel)\n\n        // then\n        result shouldBeEqualTo ImageRoomModel(\"https://example.com/image.jpg\", ImageSizeRoomModel.LARGE)\n    }\n\n    @Test\n    fun `roomToDomain maps image correctly`() {\n        // given\n        val roomModel = ImageRoomModel(\"https://example.com/image.jpg\", ImageSizeRoomModel.LARGE)\n        every { imageSizeMapper.roomToDomain(ImageSizeRoomModel.LARGE) } returns ImageSize.LARGE\n\n        // when\n        val result = sut.roomToDomain(roomModel)\n\n        // then\n        result shouldBeEqualTo Image(\"https://example.com/image.jpg\", ImageSize.LARGE)\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/mapper/ImageSizeMapperTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.ImageSizeApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.ImageSizeRoomModel\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass ImageSizeMapperTest {\n    private val sut = ImageSizeMapper()\n\n    @Test\n    fun `apiToDomain maps image size correctly`() {\n        // when & then\n        sut.apiToDomain(ImageSizeApiModel.LARGE) shouldBeEqualTo ImageSize.LARGE\n        sut.apiToDomain(ImageSizeApiModel.MEDIUM) shouldBeEqualTo ImageSize.MEDIUM\n        sut.apiToDomain(ImageSizeApiModel.SMALL) shouldBeEqualTo ImageSize.SMALL\n    }\n\n    @Test\n    fun `apiToRoom maps image size correctly`() {\n        // when & then\n        sut.apiToRoom(ImageSizeApiModel.LARGE) shouldBeEqualTo ImageSizeRoomModel.LARGE\n        sut.apiToRoom(ImageSizeApiModel.MEDIUM) shouldBeEqualTo ImageSizeRoomModel.MEDIUM\n        sut.apiToRoom(ImageSizeApiModel.SMALL) shouldBeEqualTo ImageSizeRoomModel.SMALL\n    }\n\n    @Test\n    fun `roomToDomain maps image size correctly`() {\n        // when & then\n        sut.roomToDomain(ImageSizeRoomModel.LARGE) shouldBeEqualTo ImageSize.LARGE\n        sut.roomToDomain(ImageSizeRoomModel.MEDIUM) shouldBeEqualTo ImageSize.MEDIUM\n        sut.roomToDomain(ImageSizeRoomModel.SMALL) shouldBeEqualTo ImageSize.SMALL\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/mapper/TagMapperTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TagApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TagRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass TagMapperTest {\n    private val sut = TagMapper()\n\n    @Test\n    fun `apiToDomain maps tag correctly`() {\n        // given\n        val apiModel = TagApiModel(\"rock\")\n\n        // when\n        val result = sut.apiToDomain(apiModel)\n\n        // then\n        result shouldBeEqualTo Tag(\"rock\")\n    }\n\n    @Test\n    fun `apiToRoom maps tag correctly`() {\n        // given\n        val apiModel = TagApiModel(\"rock\")\n\n        // when\n        val result = sut.apiToRoom(apiModel)\n\n        // then\n        result shouldBeEqualTo TagRoomModel(\"rock\")\n    }\n\n    @Test\n    fun `roomToDomain maps tag correctly`() {\n        // given\n        val roomModel = TagRoomModel(\"rock\")\n\n        // when\n        val result = sut.roomToDomain(roomModel)\n\n        // then\n        result shouldBeEqualTo Tag(\"rock\")\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/mapper/TrackMapperTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.mapper\n\nimport com.igorwojda.showcase.feature.album.data.datasource.api.model.TrackApiModel\nimport com.igorwojda.showcase.feature.album.data.datasource.database.model.TrackRoomModel\nimport com.igorwojda.showcase.feature.album.domain.model.Track\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass TrackMapperTest {\n    private val trackMapper = TrackMapper()\n\n    @Test\n    fun `apiToDomain maps track correctly`() {\n        // given\n        val apiModel = TrackApiModel(\"Test Track\", 180)\n\n        // when\n        val result = trackMapper.apiToDomain(apiModel)\n\n        // then\n        result shouldBeEqualTo Track(\"Test Track\", 180)\n    }\n\n    @Test\n    fun `apiToRoom maps track correctly`() {\n        // given\n        val apiModel = TrackApiModel(\"Test Track\", 180)\n\n        // when\n        val result = trackMapper.apiToRoom(apiModel)\n\n        // then\n        result shouldBeEqualTo TrackRoomModel(\"Test Track\", 180)\n    }\n\n    @Test\n    fun `roomToDomain maps track correctly`() {\n        // given\n        val roomModel = TrackRoomModel(\"Test Track\", 180)\n\n        // when\n        val result = trackMapper.roomToDomain(roomModel)\n\n        // then\n        result shouldBeEqualTo Track(\"Test Track\", 180)\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/data/repository/AlbumRepositoryImplTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.data.repository\n\nimport com.igorwojda.showcase.feature.album.data.DataFixtures\nimport com.igorwojda.showcase.feature.album.data.datasource.api.response.GetAlbumInfoResponse\nimport com.igorwojda.showcase.feature.album.data.datasource.api.response.SearchAlbumResponse\nimport com.igorwojda.showcase.feature.album.data.datasource.api.service.AlbumRetrofitService\nimport com.igorwojda.showcase.feature.album.data.datasource.database.AlbumDao\nimport com.igorwojda.showcase.feature.album.data.mapper.AlbumMapper\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.data.retrofit.ApiResult\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport io.mockk.coEvery\nimport io.mockk.coVerify\nimport io.mockk.every\nimport io.mockk.mockk\nimport kotlinx.coroutines.runBlocking\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\nimport java.net.UnknownHostException\n\nclass AlbumRepositoryImplTest {\n    private val mockService: AlbumRetrofitService = mockk()\n\n    private val mockAlbumDao: AlbumDao = mockk(relaxed = true)\n\n    private val mockAlbumMapper: AlbumMapper = mockk()\n\n    private val sut = AlbumRepositoryImpl(mockService, mockAlbumDao, mockAlbumMapper)\n\n    @Test\n    fun `searchAlbum handles api success and returns albums`() {\n        // given\n        val phrase = \"phrase\"\n        val mockAlbum = mockk<Album>()\n\n        coEvery { mockService.searchAlbumAsync(phrase) } returns\n            ApiResult.Success(\n                DataFixtures.ApiResponse.getSearchAlbum(),\n            )\n\n        every { mockAlbumMapper.apiToRoom(any()) } returns mockk()\n        every { mockAlbumMapper.apiToDomain(any()) } returns mockAlbum\n\n        // when\n        val actual = runBlocking { sut.searchAlbum(phrase) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(listOf(mockAlbum))\n    }\n\n    @Test\n    fun `searchAlbum handles api success and saves album in database`() {\n        // given\n        val phrase = \"phrase\"\n        coEvery { mockService.searchAlbumAsync(phrase) } returns\n            ApiResult.Success(\n                DataFixtures.ApiResponse.getSearchAlbum(),\n            )\n\n        every { mockAlbumMapper.apiToRoom(any()) } returns mockk()\n        every { mockAlbumMapper.apiToDomain(any()) } returns mockk()\n\n        // when\n        runBlocking { sut.searchAlbum(phrase) }\n\n        // then\n        coVerify { mockAlbumDao.insertAlbums(any()) }\n    }\n\n    @Test\n    fun `searchAlbum handles api exception and fallbacks to database`() {\n        // given\n        val phrase = \"phrase\"\n        val albumRoomModels = DataFixtures.getAlbumsRoomModels()\n        val mockAlbum1 = mockk<Album>()\n        val mockAlbum2 = mockk<Album>()\n\n        coEvery { mockService.searchAlbumAsync(phrase) } returns ApiResult.Exception(UnknownHostException())\n        coEvery { mockAlbumDao.getAll() } returns albumRoomModels\n        every { mockAlbumMapper.roomToDomain(albumRoomModels[0]) } returns mockAlbum1\n        every { mockAlbumMapper.roomToDomain(albumRoomModels[1]) } returns mockAlbum2\n\n        // when\n        val actual = runBlocking { sut.searchAlbum(phrase) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(listOf(mockAlbum1, mockAlbum2))\n    }\n\n    @Test\n    fun `searchAlbum handles api error `() {\n        // given\n        val phrase = \"phrase\"\n\n        coEvery { mockService.searchAlbumAsync(phrase) } returns mockk<ApiResult.Error<SearchAlbumResponse>>()\n\n        // when\n        val actual = runBlocking { sut.searchAlbum(phrase) }\n\n        // then\n        actual shouldBeEqualTo Result.Failure()\n    }\n\n    @Test\n    fun `getAlbumInfo handles api success and returns Album`() {\n        // given\n        val artistName = \"Michael Jackson\"\n        val albumName = \"Thriller\"\n        val mbId = \"123\"\n        val album = DataFixtures.getAlbumApiModel(mbId, albumName, artistName)\n        val mockAlbum = mockk<Album>()\n\n        coEvery {\n            mockService.getAlbumInfoAsync(artistName, albumName, mbId)\n        } returns\n            ApiResult.Success(\n                GetAlbumInfoResponse(album),\n            )\n\n        every { mockAlbumMapper.apiToDomain(album) } returns mockAlbum\n\n        // when\n        val actual = runBlocking { sut.getAlbumInfo(artistName, albumName, mbId) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(mockAlbum)\n    }\n\n    @Test\n    fun `getAlbumInfo handles api exception and fallbacks to database`() {\n        // given\n        val artistName = \"Michael Jackson\"\n        val albumName = \"Thriller\"\n        val mbId = \"123\"\n\n        coEvery {\n            mockService.getAlbumInfoAsync(artistName, albumName, mbId)\n        } returns ApiResult.Exception(UnknownHostException())\n\n        coEvery { mockAlbumDao.getAlbum(artistName, albumName, mbId) } returns mockk()\n        every { mockAlbumMapper.roomToDomain(any()) } returns mockk()\n\n        // when\n        runBlocking { sut.getAlbumInfo(artistName, albumName, mbId) }\n\n        // then\n        coVerify { mockAlbumDao.getAlbum(artistName, albumName, mbId) }\n    }\n\n    @Test\n    fun `getAlbumInfo handles api error`() {\n        // given\n        val artistName = \"Michael Jackson\"\n        val albumName = \"Thriller\"\n        val mbId = \"123\"\n\n        coEvery {\n            mockService.getAlbumInfoAsync(artistName, albumName, mbId)\n        } returns mockk<ApiResult.Error<GetAlbumInfoResponse>>()\n\n        // when\n        val actual = runBlocking { sut.getAlbumInfo(artistName, albumName, mbId) }\n\n        // then\n        actual shouldBeEqualTo Result.Failure()\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/domain/DomainFixtures.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain\n\nimport com.igorwojda.showcase.feature.album.domain.enum.ImageSize\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.model.Image\nimport com.igorwojda.showcase.feature.album.domain.model.Tag\nimport com.igorwojda.showcase.feature.album.domain.model.Track\n\nobject DomainFixtures {\n    internal fun getAlbum(\n        name: String = \"albumName\",\n        artist: String = \"artistName\",\n        mbId: String? = \"mbId\",\n        images: List<Image> = listOf(getImage()),\n        tracks: List<Track> = listOf(getTrack()),\n        tags: List<Tag> = listOf(getTag()),\n    ): Album = Album(name, artist, mbId, images, tracks, tags)\n\n    internal fun getImage(\n        url: String = \"url_${ImageSize.EXTRA_LARGE}\",\n        size: ImageSize = ImageSize.EXTRA_LARGE,\n    ) = Image(url, size)\n\n    private fun getTrack(\n        name: String = \"track\",\n        duration: Int = 12,\n    ) = Track(name, duration)\n\n    private fun getTag(name: String = \"tag\") = Tag(name)\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/domain/model/AlbumTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.model\n\nimport com.igorwojda.showcase.feature.album.domain.DomainFixtures\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass AlbumTest {\n    private lateinit var sut: Album\n\n    @Test\n    fun `get default image url`() {\n        // given\n        val image = DomainFixtures.getImage()\n\n        // when\n        sut = DomainFixtures.getAlbum(images = listOf(image))\n\n        // then\n        sut.getDefaultImageUrl() shouldBeEqualTo image.url\n    }\n\n    @Test\n    fun `get null default image url`() {\n        // given\n        sut = DomainFixtures.getAlbum(images = listOf())\n\n        // then\n        sut.getDefaultImageUrl() shouldBeEqualTo null\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/domain/usecase/GetAlbumListUseCaseTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.usecase\n\nimport com.igorwojda.showcase.feature.album.data.repository.AlbumRepositoryImpl\nimport com.igorwojda.showcase.feature.album.domain.DomainFixtures\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport io.mockk.coEvery\nimport io.mockk.coVerify\nimport io.mockk.mockk\nimport kotlinx.coroutines.runBlocking\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass GetAlbumListUseCaseTest {\n    private val mockAlbumRepository: AlbumRepositoryImpl = mockk()\n\n    private val sut = GetAlbumListUseCase(mockAlbumRepository)\n\n    @Test\n    fun `return list of albums`() {\n        // given\n        val albums = listOf(DomainFixtures.getAlbum(), DomainFixtures.getAlbum())\n        coEvery { mockAlbumRepository.searchAlbum(any()) } returns Result.Success(albums)\n\n        // when\n        val actual = runBlocking { sut(null) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(albums)\n    }\n\n    @Test\n    fun `WHEN onInit is called with no value then the default query search term is null`() =\n        runBlocking {\n            // given\n            val albums = listOf(DomainFixtures.getAlbum(), DomainFixtures.getAlbum())\n            coEvery { mockAlbumRepository.searchAlbum(any()) } returns Result.Success(albums)\n\n            sut(null)\n\n            coVerify { mockAlbumRepository.searchAlbum(null) }\n        }\n\n    @Test\n    fun `filter albums with default image`() {\n        // given\n        val albumWithImage = DomainFixtures.getAlbum()\n        val albumWithoutImage = DomainFixtures.getAlbum(images = listOf())\n        val albums = listOf(albumWithImage, albumWithoutImage)\n        coEvery { mockAlbumRepository.searchAlbum(any()) } returns Result.Success(albums)\n\n        // when\n        val actual = runBlocking { sut(null) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(listOf(albumWithImage))\n    }\n\n    @Test\n    fun `return error when repository throws an exception`() {\n        // given\n        val resultFailure = mockk<Result.Failure>()\n        coEvery { mockAlbumRepository.searchAlbum(any()) } returns resultFailure\n\n        // when\n        val actual = runBlocking { sut(null) }\n\n        // then\n        actual shouldBeEqualTo resultFailure\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/domain/usecase/GetAlbumUseCaseTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.domain.usecase\n\nimport com.igorwojda.showcase.feature.album.data.repository.AlbumRepositoryImpl\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport io.mockk.coEvery\nimport io.mockk.coVerify\nimport io.mockk.mockk\nimport kotlinx.coroutines.runBlocking\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\n\nclass GetAlbumUseCaseTest {\n    private val mockAlbumRepository: AlbumRepositoryImpl = mockk()\n\n    private val sut = GetAlbumUseCase(mockAlbumRepository)\n\n    @Test\n    fun `return album`() {\n        // given\n        val albumName = \"Thriller\"\n        val artistName = \"Michael Jackson\"\n        val mbId = \"123\"\n\n        val album = mockk<Album>()\n        coEvery { mockAlbumRepository.getAlbumInfo(artistName, albumName, mbId) } answers { Result.Success(album) }\n\n        // when\n        val actual = runBlocking { sut(artistName, albumName, mbId) }\n\n        // then\n        actual shouldBeEqualTo Result.Success(album)\n    }\n\n    @Test\n    fun `return error`() {\n        // given\n        val albumName = \"Thriller\"\n        val artistName = \"Michael Jackson\"\n        val mbId = \"123\"\n        val resultFailure = mockk<Result.Failure>()\n\n        coEvery { mockAlbumRepository.getAlbumInfo(artistName, albumName, mbId) } returns\n            resultFailure\n\n        // when\n        val actual = runBlocking { sut(artistName, albumName, mbId) }\n\n        // then\n        coVerify { mockAlbumRepository.getAlbumInfo(artistName, albumName, mbId) }\n        actual shouldBeEqualTo resultFailure\n    }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumdetail/AlbumDetailViewModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumdetail\n\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumUseCase\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport com.igorwojda.showcase.library.testutils.CoroutinesTestDispatcherExtension\nimport com.igorwojda.showcase.library.testutils.InstantTaskExecutorExtension\nimport io.mockk.coEvery\nimport io.mockk.mockk\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.advanceUntilIdle\nimport kotlinx.coroutines.test.runTest\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\nimport org.junit.jupiter.api.extension.ExtendWith\n\n@OptIn(ExperimentalCoroutinesApi::class)\n@ExtendWith(InstantTaskExecutorExtension::class, CoroutinesTestDispatcherExtension::class)\nclass AlbumDetailViewModelTest {\n    private val mockGetAlbumUseCase: GetAlbumUseCase = mockk()\n\n    private val sut =\n        AlbumDetailViewModel(\n            mockGetAlbumUseCase,\n        )\n\n    @Test\n    fun `onInit album is not found`() =\n        runTest {\n            // given\n            val albumName = \"Thriller\"\n            val artistName = \"Michael Jackson\"\n            val mbId = \"123\"\n\n            coEvery {\n                mockGetAlbumUseCase.invoke(artistName, albumName, mbId)\n            } returns Result.Failure()\n\n            // when\n            sut.onInit(albumName, artistName, mbId)\n\n            // then\n            advanceUntilIdle()\n            sut.uiStateFlow.value shouldBeEqualTo AlbumDetailUiState.Error\n        }\n\n    @Test\n    fun `onInit album is found`() =\n        runTest {\n            // given\n            val albumName = \"Thriller\"\n            val artistName = \"Michael Jackson\"\n            val mbId = \"123\"\n            val album = Album(albumName, artistName, mbId)\n\n            coEvery {\n                mockGetAlbumUseCase.invoke(artistName, albumName, mbId)\n            } returns Result.Success(album)\n\n            // when\n            sut.onInit(albumName, artistName, mbId)\n\n            // then\n            advanceUntilIdle()\n            sut.uiStateFlow.value shouldBeEqualTo\n                AlbumDetailUiState.Content(\n                    albumName = albumName,\n                    artistName = artistName,\n                    coverImageUrl = \"\",\n                    tracks = null,\n                    tags = null,\n                )\n        }\n}\n"
  },
  {
    "path": "feature/album/src/test/kotlin/com/igorwojda/showcase/feature/album/presentation/screen/albumlist/AlbumListViewModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.album.presentation.screen.albumlist\n\nimport androidx.lifecycle.SavedStateHandle\nimport com.igorwojda.showcase.feature.album.domain.model.Album\nimport com.igorwojda.showcase.feature.album.domain.usecase.GetAlbumListUseCase\nimport com.igorwojda.showcase.feature.base.domain.result.Result\nimport com.igorwojda.showcase.library.testutils.CoroutinesTestDispatcherExtension\nimport com.igorwojda.showcase.library.testutils.InstantTaskExecutorExtension\nimport io.mockk.coEvery\nimport io.mockk.mockk\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.advanceUntilIdle\nimport kotlinx.coroutines.test.runTest\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\nimport org.junit.jupiter.api.extension.ExtendWith\n\n@OptIn(ExperimentalCoroutinesApi::class)\n@ExtendWith(InstantTaskExecutorExtension::class, CoroutinesTestDispatcherExtension::class)\nclass AlbumListViewModelTest {\n    private val mockGetAlbumListUseCase: GetAlbumListUseCase = mockk()\n\n    private val savedStateHandle: SavedStateHandle = mockk(relaxed = true)\n\n    private val sut =\n        AlbumListViewModel(\n            savedStateHandle,\n            mockGetAlbumListUseCase,\n        )\n\n    @Test\n    fun `onInit emits state error`() =\n        runTest {\n            // given\n            coEvery { mockGetAlbumListUseCase.invoke(\"Jackson\") } returns Result.Failure()\n\n            // when\n            sut.onInit(\"Jackson\")\n\n            // then\n            advanceUntilIdle()\n\n            sut.uiStateFlow.value shouldBeEqualTo AlbumListUiState.Error\n        }\n\n    @Test\n    fun `onInit emits state success`() =\n        runTest {\n            // given\n            val album = Album(\"albumName\", \"artistName\")\n            val albums = listOf(album)\n            coEvery { mockGetAlbumListUseCase.invoke(\"Jackson\") } returns Result.Success(albums)\n\n            // when\n            sut.onInit(\"Jackson\")\n\n            // then\n            advanceUntilIdle()\n\n            sut.uiStateFlow.value shouldBeEqualTo\n                AlbumListUiState.Content(\n                    albums = albums,\n                )\n        }\n}\n"
  },
  {
    "path": "feature/base/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.feature\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.feature.base\"\n}\n"
  },
  {
    "path": "feature/base/consumer-rules.pro",
    "content": ""
  },
  {
    "path": "feature/base/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile"
  },
  {
    "path": "feature/base/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/common/delegate/Observer.kt",
    "content": "package com.igorwojda.showcase.feature.base.common.delegate\n\nimport kotlin.properties.ObservableProperty\nimport kotlin.properties.ReadWriteProperty\nimport kotlin.reflect.KProperty\n\ninline fun <T> observer(\n    initialValue: T,\n    crossinline onChange: (newValue: T) -> Unit,\n): ReadWriteProperty<Any?, T> =\n    object : ObservableProperty<T>(initialValue) {\n        override fun afterChange(\n            property: KProperty<*>,\n            oldValue: T,\n            newValue: T,\n        ) = onChange(newValue)\n    }\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/common/res/Dimen.kt",
    "content": "package com.igorwojda.showcase.feature.base.common.res\n\nimport androidx.compose.ui.unit.dp\n\nobject Dimen {\n    val spaceS = 4.dp\n    val spaceM = 8.dp\n    val spaceL = 16.dp\n    val spaceXL = 32.dp\n    val spaceXXL = 64.dp\n    val screenContentPadding = spaceL\n    val imageSize = 100.dp\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/data/retrofit/ApiResult.kt",
    "content": "package com.igorwojda.showcase.feature.base.data.retrofit\n\nsealed interface ApiResult<T> {\n    /**\n     * Represents a network result that successfully received a response containing body data.\n     */\n    data class Success<T>(\n        val data: T,\n    ) : ApiResult<T>\n\n    /**\n     * Represents a network result that successfully received a response containing an error message.\n     */\n    data class Error<T>(\n        val code: Int,\n        val message: String?,\n    ) : ApiResult<T>\n\n    /**\n     * Represents a network result that faced an unexpected exception before getting a response\n     * from the network such as IOException and UnKnownHostException.\n     */\n    data class Exception<T>(\n        val throwable: Throwable,\n    ) : ApiResult<T>\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/data/retrofit/ApiResultAdapterFactory.kt",
    "content": "package com.igorwojda.showcase.feature.base.data.retrofit\n\nimport retrofit2.Call\nimport retrofit2.CallAdapter\nimport retrofit2.Retrofit\nimport java.lang.reflect.ParameterizedType\nimport java.lang.reflect.Type\n\nclass ApiResultAdapterFactory : CallAdapter.Factory() {\n    override fun get(\n        returnType: Type,\n        annotations: Array<out Annotation>,\n        retrofit: Retrofit,\n    ): CallAdapter<*, *>? {\n        if (Call::class.java != getRawType(returnType)) return null\n        check(returnType is ParameterizedType)\n\n        val responseType = getParameterUpperBound(0, returnType)\n        if (getRawType(responseType) != ApiResult::class.java) return null\n        check(responseType is ParameterizedType)\n\n        val successType = getParameterUpperBound(0, responseType)\n\n        return ApiResultCallAdapter<Any>(successType)\n    }\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/data/retrofit/ApiResultCall.kt",
    "content": "package com.igorwojda.showcase.feature.base.data.retrofit\n\nimport okhttp3.Request\nimport okio.Timeout\nimport retrofit2.Call\nimport retrofit2.Callback\nimport retrofit2.Response\n\ninternal class ApiResultCall<T> constructor(\n    private val callDelegate: Call<T>,\n) : Call<ApiResult<T>> {\n    @Suppress(\"detekt.MagicNumber\")\n    override fun enqueue(callback: Callback<ApiResult<T>>) =\n        callDelegate.enqueue(\n            object : Callback<T> {\n                override fun onResponse(\n                    call: Call<T>,\n                    response: Response<T>,\n                ) {\n                    response.body()?.let {\n                        when (response.code()) {\n                            in 200..208 -> {\n                                callback.onResponse(this@ApiResultCall, Response.success(ApiResult.Success(it)))\n                            }\n                            in 400..409 -> {\n                                callback.onResponse(\n                                    this@ApiResultCall,\n                                    Response.success(ApiResult.Error(response.code(), response.message())),\n                                )\n                            }\n                        }\n                    } ?: callback.onResponse(this@ApiResultCall, Response.success(ApiResult.Error(123, \"message\")))\n                }\n\n                override fun onFailure(\n                    call: Call<T>,\n                    throwable: Throwable,\n                ) {\n                    callback.onResponse(this@ApiResultCall, Response.success(ApiResult.Exception(throwable)))\n                    call.cancel()\n                }\n            },\n        )\n\n    override fun clone(): Call<ApiResult<T>> = ApiResultCall(callDelegate.clone())\n\n    override fun execute(): Response<ApiResult<T>> = throw UnsupportedOperationException(\"ResponseCall does not support execute.\")\n\n    override fun isExecuted(): Boolean = callDelegate.isExecuted\n\n    override fun cancel() = callDelegate.cancel()\n\n    override fun isCanceled(): Boolean = callDelegate.isCanceled\n\n    override fun request(): Request = callDelegate.request()\n\n    override fun timeout(): Timeout = callDelegate.timeout()\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/data/retrofit/ApiResultCallAdapter.kt",
    "content": "package com.igorwojda.showcase.feature.base.data.retrofit\n\nimport retrofit2.Call\nimport retrofit2.CallAdapter\nimport java.lang.reflect.Type\n\ninternal class ApiResultCallAdapter<T>(\n    private val successType: Type,\n) : CallAdapter<T, Call<ApiResult<T>>> {\n    override fun responseType(): Type = successType\n\n    override fun adapt(call: Call<T>): Call<ApiResult<T>> = ApiResultCall(call)\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/domain/result/Result.kt",
    "content": "package com.igorwojda.showcase.feature.base.domain.result\n\nsealed interface Result<out T> {\n    data class Success<T>(\n        val value: T,\n    ) : Result<T>\n\n    data class Failure(\n        val throwable: Throwable? = null,\n    ) : Result<Nothing>\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/domain/result/ResultExt.kt",
    "content": "package com.igorwojda.showcase.feature.base.domain.result\n\ninline fun <T> Result<T>.mapSuccess(crossinline onResult: Result.Success<T>.() -> Result<T>): Result<T> {\n    if (this is Result.Success) {\n        return onResult(this)\n    }\n    return this\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/ErrorAnim.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Alignment\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.igorwojda.showcase.feature.base.R\n\n@Composable\nfun ErrorAnim(modifier: Modifier = Modifier) {\n    Box(\n        modifier = modifier.fillMaxSize(),\n        contentAlignment = Alignment.Center,\n    ) {\n        LabeledAnimation(R.string.common_data_not_found, R.raw.lottie_error_screen)\n    }\n}\n\n@Preview\n@Composable\nprivate fun ErrorAnimPreview() {\n    ErrorAnim()\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/Loading.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.foundation.layout.size\nimport androidx.compose.material3.CircularProgressIndicator\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Alignment\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.igorwojda.showcase.feature.base.common.res.Dimen\n\n@Composable\nfun LoadingIndicator(modifier: Modifier = Modifier) {\n    Box(\n        modifier = modifier.fillMaxSize(),\n        contentAlignment = Alignment.Center,\n    ) {\n        CircularProgressIndicator(\n            modifier =\n                Modifier\n                    .size(Dimen.spaceXXL),\n        )\n    }\n}\n\n@Preview\n@Composable\nprivate fun LoadingIndicatorPreview() {\n    LoadingIndicator()\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/Lottie.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.annotation.RawRes\nimport androidx.annotation.StringRes\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.foundation.layout.requiredSize\nimport androidx.compose.foundation.layout.wrapContentSize\nimport androidx.compose.material3.Card\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.getValue\nimport androidx.compose.ui.Alignment\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.airbnb.lottie.compose.LottieAnimation\nimport com.airbnb.lottie.compose.LottieCompositionSpec\nimport com.airbnb.lottie.compose.rememberLottieComposition\nimport com.igorwojda.showcase.feature.base.common.res.Dimen\n\n@Composable\nfun LabeledAnimation(\n    @StringRes label: Int,\n    @RawRes assetResId: Int,\n    modifier: Modifier = Modifier,\n) {\n    Card(\n        modifier = modifier.wrapContentSize(),\n    ) {\n        Column(\n            horizontalAlignment = Alignment.CenterHorizontally,\n            modifier =\n                Modifier\n                    .wrapContentSize()\n                    .padding(Dimen.spaceXL),\n        ) {\n            TextTitleMedium(text = stringResource(label))\n            LottieAssetLoader(assetResId)\n        }\n    }\n}\n\n@Composable\nfun LottieAssetLoader(\n    @RawRes assetResId: Int,\n    modifier: Modifier = Modifier,\n) {\n    val composition by rememberLottieComposition(LottieCompositionSpec.RawRes(assetResId))\n\n    LottieAnimation(\n        composition,\n        modifier = modifier.requiredSize(Dimen.imageSize),\n    )\n}\n\n@Preview\n@Composable\nprivate fun LabeledAnimationPreview() {\n    LabeledAnimation(\n        label = android.R.string.ok,\n        assetResId = com.igorwojda.showcase.feature.base.R.raw.lottie_building_screen,\n    )\n}\n\n@Preview\n@Composable\nprivate fun LottieAssetLoaderPreview() {\n    LottieAssetLoader(\n        assetResId = com.igorwojda.showcase.feature.base.R.raw.lottie_building_screen,\n    )\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/PlaceholderImage.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.material3.Surface\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.getValue\nimport androidx.compose.runtime.mutableStateOf\nimport androidx.compose.runtime.saveable.rememberSaveable\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.platform.LocalContext\nimport androidx.compose.ui.res.painterResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport coil.compose.AsyncImage\nimport coil.request.ImageRequest\nimport com.igorwojda.showcase.feature.base.R\n\nprivate val PLACEHOLDER_IMAGES =\n    listOf(\n        R.drawable.image_placeholder_1,\n        R.drawable.image_placeholder_2,\n        R.drawable.image_placeholder_3,\n    )\n\n@Composable\nfun PlaceholderImage(\n    url: Any?,\n    contentDescription: String?,\n    modifier: Modifier = Modifier,\n) {\n    Surface(modifier = modifier) {\n        val randomPlaceHolder by rememberSaveable {\n            mutableStateOf(PLACEHOLDER_IMAGES.random())\n        }\n\n        val model =\n            ImageRequest\n                .Builder(LocalContext.current)\n                .data(url)\n                .crossfade(true)\n                .build()\n\n        AsyncImage(\n            model = model,\n            contentDescription = contentDescription,\n            placeholder = painterResource(randomPlaceHolder),\n        )\n    }\n}\n\n@Preview\n@Composable\nprivate fun PlaceholderImagePreview() {\n    PlaceholderImage(\n        url = \"https://github.com/igorwojda/android-showcase/raw/main/misc/image/module_dependencies.png?raw=true\",\n        contentDescription = \"Sample image\",\n    )\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/TextTitleLarge.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.tooling.preview.Preview\n\n@Composable\nfun TextTitleLarge(\n    text: String,\n    modifier: Modifier = Modifier,\n) {\n    Text(\n        text = text,\n        modifier = modifier,\n        style = MaterialTheme.typography.titleLarge,\n    )\n}\n\n@Preview\n@Composable\nprivate fun TextTitleLargePreview() {\n    TextTitleLarge(text = \"Sample Large Title\")\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/TextTitleMedium.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.tooling.preview.Preview\n\n@Composable\nfun TextTitleMedium(\n    text: String,\n    modifier: Modifier = Modifier,\n) {\n    Text(\n        text = text,\n        modifier = modifier,\n        style = MaterialTheme.typography.titleMedium,\n    )\n}\n\n@Preview\n@Composable\nprivate fun TextTitleMediumPreview() {\n    TextTitleMedium(text = \"Sample Medium Title\")\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/compose/composable/UnderConstructionAnim.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.compose.composable\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.igorwojda.showcase.feature.base.R\n\n@Composable\nfun UnderConstructionAnim() {\n    LabeledAnimation(R.string.common_under_construction, R.raw.lottie_building_screen)\n}\n\n@Preview\n@Composable\nprivate fun UnderConstructionAnimPreview() {\n    UnderConstructionAnim()\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/viewmodel/BaseAction.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.viewmodel\n\ninterface BaseAction<State> {\n    fun reduce(state: State): State\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/viewmodel/BaseState.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.viewmodel\n\ninterface BaseState\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/viewmodel/BaseViewModel.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.viewmodel\n\nimport androidx.lifecycle.ViewModel\nimport com.igorwojda.showcase.feature.base.BuildConfig\nimport kotlinx.coroutines.flow.MutableStateFlow\nimport kotlinx.coroutines.flow.asStateFlow\nimport kotlin.properties.Delegates\n\nabstract class BaseViewModel<State : BaseState, Action : BaseAction<State>>(\n    initialState: State,\n) : ViewModel() {\n    private val _uiStateFlow = MutableStateFlow(initialState)\n    val uiStateFlow = _uiStateFlow.asStateFlow()\n\n    private var stateTimeTravelDebugger: StateTimeTravelDebugger? = null\n\n    init {\n        if (BuildConfig.DEBUG) {\n            stateTimeTravelDebugger = StateTimeTravelDebugger(this::class.java.simpleName)\n        }\n    }\n\n    // Delegate handles state event deduplication (multiple states of the same type holding the same data\n    // will not be emitted multiple times to UI)\n    private var state by Delegates.observable(initialState) { _, old, new ->\n        if (old != new) {\n            _uiStateFlow.value = new\n\n            stateTimeTravelDebugger?.apply {\n                addStateTransition(old, new)\n                logLast()\n            }\n        }\n    }\n\n    protected fun sendAction(action: Action) {\n        stateTimeTravelDebugger?.addAction(action)\n        state = action.reduce(state)\n    }\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/presentation/viewmodel/StateTimeTravelDebugger.kt",
    "content": "package com.igorwojda.showcase.feature.base.presentation.viewmodel\n\nimport com.igorwojda.showcase.feature.base.util.TimberLogTags\nimport kotlin.reflect.full.memberProperties\nimport timber.log.Timber\n\n/**\n * Logs actions and view state transitions to facilitate debugging.\n */\nclass StateTimeTravelDebugger(\n    private val viewClassName: String,\n) {\n    private val stateTimeline = mutableListOf<StateTransition>()\n    private var lastViewAction: BaseAction<*>? = null\n\n    // Get list of properties from  ViewState instances (all have the same type)\n    private val propertyNames by lazy {\n        stateTimeline\n            .first()\n            .oldState.javaClass.kotlin.memberProperties\n            .map { it.name }\n    }\n\n    fun addAction(viewAction: BaseAction<*>) {\n        lastViewAction = viewAction\n    }\n\n    fun addStateTransition(\n        oldState: BaseState,\n        newState: BaseState,\n    ) {\n        val lastViewAction = checkNotNull(lastViewAction) { \"lastViewAction is null. Please log action before logging state transition\" }\n        stateTimeline.add(StateTransition(oldState, lastViewAction, newState))\n        this.lastViewAction = null\n    }\n\n    private fun getMessage() = getMessage(stateTimeline)\n\n    private fun getMessage(stateTimeline: List<StateTransition>): String {\n        if (stateTimeline.isEmpty()) return \"$viewClassName has no state transitions\\n\"\n\n        return stateTimeline.joinToString(separator = \"\\n\", postfix = \"\\n\") { st ->\n            buildString {\n                append(\"Action: $viewClassName.${st.action.javaClass.simpleName}\")\n\n                if (propertyNames.isNotEmpty()) {\n                    append('\\n')\n\n                    append(\n                        propertyNames.joinToString(separator = \"\") { prop ->\n                            getLogLine(st.oldState, st.newState, prop)\n                        },\n                    )\n                }\n            }\n        }\n    }\n\n    fun logAll() {\n        Timber.d(getMessage())\n    }\n\n    fun logLast() {\n        val states = listOf(stateTimeline.last())\n        Timber.tag(TimberLogTags.ACTION).d(getMessage(states))\n    }\n\n    private fun getLogLine(\n        oldState: BaseState,\n        newState: BaseState,\n        propertyName: String,\n    ): String {\n        val oldValue = getPropertyValue(oldState, propertyName)\n        val newValue = getPropertyValue(newState, propertyName)\n        val indent = \"\\t\"\n\n        return if (oldValue != newValue) {\n            \"$indent*$propertyName: $oldValue -> $newValue\\n\"\n        } else {\n            \"$indent$propertyName: $newValue\\n\"\n        }\n    }\n\n    private fun getPropertyValue(\n        baseState: BaseState,\n        propertyName: String,\n    ): String {\n        baseState::class.memberProperties.forEach {\n            if (propertyName == it.name) {\n                var value = it.getter.call(baseState).toString()\n\n                if (value.isBlank()) {\n                    value = \"\\\"\\\"\"\n                }\n\n                return value\n            }\n        }\n\n        return \"\"\n    }\n\n    private data class StateTransition(\n        val oldState: BaseState,\n        val action: BaseAction<*>,\n        val newState: BaseState,\n    )\n}\n"
  },
  {
    "path": "feature/base/src/main/kotlin/com/igorwojda/showcase/feature/base/util/TimberLogTags.kt",
    "content": "package com.igorwojda.showcase.feature.base.util\n\n/**\n * Centralized log tags for consistent logging throughout the application.\n *\n * These tags help filter and identify different types of logs during development and debugging:\n * - Use with Timber: `Timber.tag(LogTags.NETWORK).d(\"message\")`\n * - Filter in Logcat by tag to see specific log categories\n */\nobject TimberLogTags {\n    /**\n     * Network requests, responses, and HTTP-related logs.\n     **/\n    const val NETWORK = \"Network\"\n\n    /**\n     * User actions and UI state modifications.\n     **/\n    const val ACTION = \"Action\"\n\n    /**\n     * Navigation events and route changes.\n     **/\n    const val NAVIGATION = \"Navigation\"\n}\n"
  },
  {
    "path": "feature/base/src/main/res/drawable/ic_search.xml",
    "content": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    android:width=\"24dp\" xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <path android:fillColor=\"@android:color/white\" android:pathData=\"M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z\"/>\n</vector>\n"
  },
  {
    "path": "feature/base/src/main/res/drawable/image_placeholder_1.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"88dp\"\n    android:height=\"88dp\"\n    android:viewportWidth=\"88\"\n    android:viewportHeight=\"88\">\n  <path\n      android:pathData=\"M0,0h88v88H0z\"\n      android:fillColor=\"#F9FAFA\"/>\n  <group>\n    <clip-path\n        android:pathData=\"M4,0L84,0A4,4 0,0 1,88 4L88,84A4,4 0,0 1,84 88L4,88A4,4 0,0 1,0 84L0,4A4,4 0,0 1,4 0z\"/>\n    <path\n        android:pathData=\"M26.302,158.365L38.93,186.75l-75.523,-0.821 9.455,-23.914c-14.514,-3.649 -27.427,-11.229 -38.739,-22.741 -5.653,-5.755 -11.172,-13.633 -16.556,-23.634l157.711,-11.715c-3.904,13.153 -11.038,24.936 -21.405,35.349 -8.297,8.514 -17.488,14.878 -27.572,19.091zM48.2,62.475l9.107,7.333 -127.422,5.96 50.08,-68.234L21.17,40.712 58.719,-25.75l10.503,6.146 -38.446,68.05 7.908,6.367 56.494,-64.931 9.072,8.175L48.2,62.476zM78.309,91.594l-164.983,13.564a112.06,112.06 0,0 1,-2.826 -13.36l168.213,-18.29v4.932c0,2.877 -0.136,7.262 -0.404,13.154z\"\n        android:fillColor=\"#000\"\n        android:fillAlpha=\"0.02\"\n        android:fillType=\"evenOdd\"/>\n  </group>\n</vector>\n"
  },
  {
    "path": "feature/base/src/main/res/drawable/image_placeholder_2.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"88dp\"\n    android:height=\"88dp\"\n    android:viewportWidth=\"88\"\n    android:viewportHeight=\"88\">\n  <path\n      android:pathData=\"M0,0h88v88H0z\"\n      android:fillColor=\"#F9FAFA\"/>\n  <group>\n    <clip-path\n        android:pathData=\"M4,0L84,0A4,4 0,0 1,88 4L88,84A4,4 0,0 1,84 88L4,88A4,4 0,0 1,0 84L0,4A4,4 0,0 1,4 0z\"/>\n    <path\n        android:pathData=\"M48.124,-16.848l-1.908,77.142h21.207l1.91,-76.486 -21.21,-0.656zM8.889,10.688l9.543,49.606h21.632L29.672,6.316 8.889,10.688zM95.843,7.409l-21.21,-1.528 -3.604,54.413h21.21l3.604,-52.885zM102.631,-22.528l-1.061,82.822h21.207l1.061,-82.386 -21.207,-0.436zM176.011,3.912l-13.785,56.382h21.844l12.513,-50.918 -20.572,-5.464zM153.105,60.294l13.787,-54.632L146.319,0.199l-15.27,60.095h22.056zM184.07,81.054L16.311,72.31l27.996,114.727 109.01,10.49L184.07,81.053zM132.534,100.282l-64.05,-1.31 -2.333,40.21h69.988l-3.605,-38.9z\"\n        android:fillColor=\"#000\"\n        android:fillAlpha=\"0.02\"\n        android:fillType=\"evenOdd\"/>\n  </group>\n</vector>\n"
  },
  {
    "path": "feature/base/src/main/res/drawable/image_placeholder_3.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"88dp\"\n    android:height=\"88dp\"\n    android:viewportWidth=\"88\"\n    android:viewportHeight=\"88\">\n  <path\n      android:pathData=\"M0,0h88v88H0z\"\n      android:fillColor=\"#F9FAFA\"/>\n  <group>\n    <clip-path\n        android:pathData=\"M4,0L84,0A4,4 0,0 1,88 4L88,84A4,4 0,0 1,84 88L4,88A4,4 0,0 1,0 84L0,4A4,4 0,0 1,4 0z\"/>\n    <path\n        android:pathData=\"M138.114,92.63L153,91.593l-0.291,-94.222L72.731,-33l-2.044,14.815 67.719,33.037 -0.292,77.778zM127.752,16.482l-59.4,-28.741L18,36.925l109.752,-20.444zM131.985,56.778l-0.147,-28.888L18,45.816l1.897,27.852 14.594,-11.853 20.726,14.222 18.68,-23.851L95.499,67l16.492,-24.148 19.995,13.926zM99.73,83.148l-22.184,-15.11 -18.534,23.555L36.68,76.481 20.919,89.223 22.525,111l109.752,-17.48 -0.146,-23.26L116.223,59 99.73,83.148z\"\n        android:fillColor=\"#000\"\n        android:fillAlpha=\"0.02\"\n        android:fillType=\"evenOdd\"/>\n  </group>\n</vector>\n"
  },
  {
    "path": "feature/base/src/main/res/raw/lottie_building_screen.json",
    "content": "{\n    \"v\": \"4.11.0\",\n    \"fr\": 29.9700012207031,\n    \"ip\": 0,\n    \"op\": 150.000006109625,\n    \"w\": 800,\n    \"h\": 800,\n    \"nm\": \"guincho\",\n    \"ddd\": 0,\n    \"assets\": [],\n    \"layers\": [\n        {\n            \"ddd\": 0,\n            \"ind\": 1,\n            \"ty\": 4,\n            \"nm\": \"Camada de forma 2\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        103.197,\n                        603,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -296,\n                        128,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -293,\n                                            127\n                                        ],\n                                        [\n                                            -352,\n                                            127\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tm\",\n                            \"s\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.833\n                                            ],\n                                            \"y\": [\n                                                0.833\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.167\n                                            ],\n                                            \"y\": [\n                                                0.167\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p833_0p833_0p167_0p167\"\n                                        ],\n                                        \"t\": 40,\n                                        \"s\": [\n                                            0\n                                        ],\n                                        \"e\": [\n                                            100\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 50.0000020365418\n                                    }\n                                ],\n                                \"ix\": 1\n                            },\n                            \"e\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.833\n                                            ],\n                                            \"y\": [\n                                                0.833\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.167\n                                            ],\n                                            \"y\": [\n                                                0.167\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p833_0p833_0p167_0p167\"\n                                        ],\n                                        \"t\": 30,\n                                        \"s\": [\n                                            0\n                                        ],\n                                        \"e\": [\n                                            100\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 40.0000016292334\n                                    }\n                                ],\n                                \"ix\": 2\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 3\n                            },\n                            \"m\": 1,\n                            \"ix\": 2,\n                            \"nm\": \"Aparar caminhos 1\",\n                            \"mn\": \"ADBE Vector Filter - Trim\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.867509191176,\n                                    0.867509191176,\n                                    0.867509191176,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 10,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 4,\n                            \"nm\": \"Traçado 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Forma 1\",\n                    \"np\": 4,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 2,\n            \"ty\": 4,\n            \"nm\": \"Camada de forma 1\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        123.197,\n                        576,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -296,\n                        128,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -293,\n                                            127\n                                        ],\n                                        [\n                                            -352,\n                                            127\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.867509191176,\n                                    0.867509191176,\n                                    0.867509191176,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 10,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 4,\n                            \"nm\": \"Traçado 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Forma 1\",\n                    \"np\": 3,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"tm\",\n                    \"s\": {\n                        \"a\": 1,\n                        \"k\": [\n                            {\n                                \"i\": {\n                                    \"x\": [\n                                        0.833\n                                    ],\n                                    \"y\": [\n                                        0.833\n                                    ]\n                                },\n                                \"o\": {\n                                    \"x\": [\n                                        0.167\n                                    ],\n                                    \"y\": [\n                                        0.167\n                                    ]\n                                },\n                                \"n\": [\n                                    \"0p833_0p833_0p167_0p167\"\n                                ],\n                                \"t\": 41,\n                                \"s\": [\n                                    0\n                                ],\n                                \"e\": [\n                                    100\n                                ]\n                            },\n                            {\n                                \"t\": 51.0000020772726\n                            }\n                        ],\n                        \"ix\": 1\n                    },\n                    \"e\": {\n                        \"a\": 1,\n                        \"k\": [\n                            {\n                                \"i\": {\n                                    \"x\": [\n                                        0.833\n                                    ],\n                                    \"y\": [\n                                        0.833\n                                    ]\n                                },\n                                \"o\": {\n                                    \"x\": [\n                                        0.167\n                                    ],\n                                    \"y\": [\n                                        0.167\n                                    ]\n                                },\n                                \"n\": [\n                                    \"0p833_0p833_0p167_0p167\"\n                                ],\n                                \"t\": 31,\n                                \"s\": [\n                                    0\n                                ],\n                                \"e\": [\n                                    100\n                                ]\n                            },\n                            {\n                                \"t\": 41.0000016699642\n                            }\n                        ],\n                        \"ix\": 2\n                    },\n                    \"o\": {\n                        \"a\": 0,\n                        \"k\": 0,\n                        \"ix\": 3\n                    },\n                    \"m\": 1,\n                    \"ix\": 2,\n                    \"nm\": \"Aparar caminhos 1\",\n                    \"mn\": \"ADBE Vector Filter - Trim\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 3,\n            \"ty\": 4,\n            \"nm\": \"roldana/crane contornos\",\n            \"parent\": 9,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        216,\n                        1.5,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        27,\n                        27,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"d\": 1,\n                            \"ty\": \"el\",\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    49.293,\n                                    49.293\n                                ],\n                                \"ix\": 2\n                            },\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 3\n                            },\n                            \"nm\": \"Caminho da elipse 1\",\n                            \"mn\": \"ADBE Vector Shape - Ellipse\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.736999990426,\n                                    0.552999997606,\n                                    0.184000007779,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    26.871,\n                                    26.652\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    107.14,\n                                    107.14\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Elipse 1\",\n                    \"np\": 3,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 4,\n            \"ty\": 4,\n            \"nm\": \"braço-detail/crane contornos\",\n            \"parent\": 9,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        109.5,\n                        92,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        79.5,\n                        83.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.766,\n                                            0.883\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.648,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -2.648\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.765,\n                                            1.765\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            79.007,\n                                            -30.014\n                                        ],\n                                        [\n                                            75.476,\n                                            -77.682\n                                        ],\n                                        [\n                                            72.827,\n                                            -82.979\n                                        ],\n                                        [\n                                            58.703,\n                                            -67.973\n                                        ],\n                                        [\n                                            62.235,\n                                            -27.366\n                                        ],\n                                        [\n                                            15.448,\n                                            -21.186\n                                        ],\n                                        [\n                                            -2.207,\n                                            -1.766\n                                        ],\n                                        [\n                                            1.324,\n                                            54.732\n                                        ],\n                                        [\n                                            -63.118,\n                                            63.559\n                                        ],\n                                        [\n                                            -79.007,\n                                            80.331\n                                        ],\n                                        [\n                                            -72.828,\n                                            82.979\n                                        ],\n                                        [\n                                            -71.945,\n                                            82.979\n                                        ],\n                                        [\n                                            3.089,\n                                            73.27\n                                        ],\n                                        [\n                                            18.096,\n                                            52.965\n                                        ],\n                                        [\n                                            14.566,\n                                            -1.766\n                                        ],\n                                        [\n                                            64,\n                                            -7.945\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.736999990426,\n                                    0.552999997606,\n                                    0.184000007779,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    79.257,\n                                    83.23\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 5,\n            \"ty\": 4,\n            \"nm\": \"guincho/crane contornos\",\n            \"parent\": 3,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 5,\n                            \"s\": [\n                                13\n                            ],\n                            \"e\": [\n                                -22\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 25,\n                            \"s\": [\n                                -22\n                            ],\n                            \"e\": [\n                                8\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 35,\n                            \"s\": [\n                                8\n                            ],\n                            \"e\": [\n                                -10\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 45,\n                            \"s\": [\n                                -10\n                            ],\n                            \"e\": [\n                                6\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 55,\n                            \"s\": [\n                                6\n                            ],\n                            \"e\": [\n                                -6\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.833\n                                ],\n                                \"y\": [\n                                    0.833\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.167\n                                ],\n                                \"y\": [\n                                    0.167\n                                ]\n                            },\n                            \"n\": [\n                                \"0p833_0p833_0p167_0p167\"\n                            ],\n                            \"t\": 65,\n                            \"s\": [\n                                -6\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 75.0000030548126\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -4.267,\n                        39.547,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -1.267,\n                        -1.953,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            5.297\n                                        ],\n                                        [\n                                            -5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.296\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.296\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            5.297\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            17.656,\n                                            8.827\n                                        ],\n                                        [\n                                            -17.655,\n                                            8.827\n                                        ],\n                                        [\n                                            -26.483,\n                                            0\n                                        ],\n                                        [\n                                            -17.655,\n                                            -8.827\n                                        ],\n                                        [\n                                            17.656,\n                                            -8.827\n                                        ],\n                                        [\n                                            26.483,\n                                            0\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.635000011968,\n                                    0.635000011968,\n                                    0.635000011968,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    26.733,\n                                    188.629\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            19.421,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            19.421\n                                        ],\n                                        [\n                                            -5.297,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.295\n                                        ],\n                                        [\n                                            -9.71,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            9.711\n                                        ],\n                                        [\n                                            9.711,\n                                            0\n                                        ],\n                                        [\n                                            1.766,\n                                            1.764\n                                        ],\n                                        [\n                                            0,\n                                            2.648\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.296\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -16.772\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -19.421,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.295\n                                        ],\n                                        [\n                                            5.296,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            9.711\n                                        ],\n                                        [\n                                            9.711,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -9.71\n                                        ],\n                                        [\n                                            -2.648,\n                                            0\n                                        ],\n                                        [\n                                            -1.765,\n                                            -1.766\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.296\n                                        ],\n                                        [\n                                            5.297,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            15.007,\n                                            3.531\n                                        ],\n                                        [\n                                            0,\n                                            19.421\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            0,\n                                            136.827\n                                        ],\n                                        [\n                                            -35.311,\n                                            101.517\n                                        ],\n                                        [\n                                            -26.482,\n                                            92.689\n                                        ],\n                                        [\n                                            -17.655,\n                                            101.517\n                                        ],\n                                        [\n                                            0,\n                                            119.173\n                                        ],\n                                        [\n                                            17.655,\n                                            101.517\n                                        ],\n                                        [\n                                            0,\n                                            83.862\n                                        ],\n                                        [\n                                            -6.179,\n                                            81.215\n                                        ],\n                                        [\n                                            -8.827,\n                                            75.035\n                                        ],\n                                        [\n                                            -8.827,\n                                            -128.001\n                                        ],\n                                        [\n                                            0,\n                                            -136.827\n                                        ],\n                                        [\n                                            8.828,\n                                            -128.001\n                                        ],\n                                        [\n                                            8.828,\n                                            67.09\n                                        ],\n                                        [\n                                            35.311,\n                                            101.517\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.795999983245,\n                                    0.804000016755,\n                                    0.819999964097,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    35.561,\n                                    137.077\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 6,\n            \"ty\": 4,\n            \"nm\": \"vidro2/crane contornos\",\n            \"parent\": 8,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        36,\n                        107,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        36,\n                        18,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -15.007\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            14.124\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -15.007,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            15.007,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -7.945,\n                                            -17.656\n                                        ],\n                                        [\n                                            -35.31,\n                                            9.71\n                                        ],\n                                        [\n                                            -35.31,\n                                            17.656\n                                        ],\n                                        [\n                                            8.827,\n                                            17.656\n                                        ],\n                                        [\n                                            35.31,\n                                            -8.827\n                                        ],\n                                        [\n                                            35.31,\n                                            -17.656\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.736999990426,\n                                    0.552999997606,\n                                    0.184000007779,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    35.56,\n                                    17.906\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 7,\n            \"ty\": 4,\n            \"nm\": \"vidro/crane contornos\",\n            \"parent\": 8,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        217,\n                        62.25,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        49,\n                        62.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            11.477,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -14.124,\n                                            -5.297\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            15.007,\n                                            11.476\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            15.007\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -17.655\n                                        ],\n                                        [\n                                            -9.71,\n                                            -6.18\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -7.945,\n                                            -61.793\n                                        ],\n                                        [\n                                            -48.551,\n                                            -61.793\n                                        ],\n                                        [\n                                            -48.551,\n                                            1.766\n                                        ],\n                                        [\n                                            -24.717,\n                                            35.311\n                                        ],\n                                        [\n                                            48.551,\n                                            61.793\n                                        ],\n                                        [\n                                            48.551,\n                                            -7.062\n                                        ],\n                                        [\n                                            24.717,\n                                            -52.965\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.736999990426,\n                                    0.552999997606,\n                                    0.184000007779,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    48.801,\n                                    62.043\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 8,\n            \"ty\": 4,\n            \"nm\": \"base2/crane contornos\",\n            \"parent\": 13,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -7.5,\n                        -74.5,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        133,\n                        80,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            -9.71\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -15.007\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.649,\n                                            6.179\n                                        ],\n                                        [\n                                            22.952,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -15.007,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -7.062\n                                        ],\n                                        [\n                                            -7.944,\n                                            -21.187\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -9.71,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -8.828,\n                                            -61.794\n                                        ],\n                                        [\n                                            -8.828,\n                                            8.827\n                                        ],\n                                        [\n                                            -105.049,\n                                            8.827\n                                        ],\n                                        [\n                                            -132.414,\n                                            36.193\n                                        ],\n                                        [\n                                            -132.414,\n                                            79.449\n                                        ],\n                                        [\n                                            -8.828,\n                                            79.449\n                                        ],\n                                        [\n                                            132.414,\n                                            79.449\n                                        ],\n                                        [\n                                            132.414,\n                                            -24.717\n                                        ],\n                                        [\n                                            128.882,\n                                            -45.02\n                                        ],\n                                        [\n                                            77.682,\n                                            -79.449\n                                        ],\n                                        [\n                                            8.827,\n                                            -79.449\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.995999983245,\n                                    0.760999971278,\n                                    0.298000021542,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    132.664,\n                                    79.699\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 9,\n            \"ty\": 4,\n            \"nm\": \"braço/crane contornos\",\n            \"parent\": 8,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        251.5,\n                        -95,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        107.5,\n                        103.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            14.124\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -5.296,\n                                            -1.766\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            6.18,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -13.241,\n                                            -0.882\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            82.979,\n                                            -102.842\n                                        ],\n                                        [\n                                            -106.814,\n                                            100.192\n                                        ],\n                                        [\n                                            -45.021,\n                                            100.192\n                                        ],\n                                        [\n                                            -27.366,\n                                            102.842\n                                        ],\n                                        [\n                                            106.814,\n                                            -76.359\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.995999983245,\n                                    0.760999971278,\n                                    0.298000021542,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    107.064,\n                                    103.092\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 10,\n            \"ty\": 4,\n            \"nm\": \"roda3/crane contornos\",\n            \"parent\": 11,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        124,\n                        22.5,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        150.5,\n                        22.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            12.358\n                                        ],\n                                        [\n                                            12.358,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -12.358\n                                        ],\n                                        [\n                                            -12.359,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            -12.358\n                                        ],\n                                        [\n                                            -12.359,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            12.358\n                                        ],\n                                        [\n                                            12.358,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            22.069,\n                                            0\n                                        ],\n                                        [\n                                            0.001,\n                                            -22.069\n                                        ],\n                                        [\n                                            -22.069,\n                                            0\n                                        ],\n                                        [\n                                            0.001,\n                                            22.069\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.635000011968,\n                                    0.635000011968,\n                                    0.635000011968,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    278.318,\n                                    22.319\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            12.358\n                                        ],\n                                        [\n                                            12.359,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -12.358\n                                        ],\n                                        [\n                                            -12.359,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            -12.358\n                                        ],\n                                        [\n                                            -12.359,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            12.358\n                                        ],\n                                        [\n                                            12.359,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            22.069,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -22.069\n                                        ],\n                                        [\n                                            -22.069,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            22.069\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.635000011968,\n                                    0.635000011968,\n                                    0.635000011968,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    22.319,\n                                    22.319\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 11,\n            \"ty\": 4,\n            \"nm\": \"roda2/crane contornos\",\n            \"parent\": 12,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        186,\n                        49,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        124,\n                        22.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            10.593\n                                        ],\n                                        [\n                                            -9.71,\n                                            2.648\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -11.476\n                                        ],\n                                        [\n                                            9.71,\n                                            -2.648\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            -10.593\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            9.71,\n                                            1.765\n                                        ],\n                                        [\n                                            0,\n                                            11.476\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -9.71,\n                                            -2.648\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            105.931,\n                                            0\n                                        ],\n                                        [\n                                            123.586,\n                                            -22.069\n                                        ],\n                                        [\n                                            0,\n                                            -22.069\n                                        ],\n                                        [\n                                            -123.586,\n                                            -22.069\n                                        ],\n                                        [\n                                            -105.931,\n                                            0\n                                        ],\n                                        [\n                                            -123.586,\n                                            22.069\n                                        ],\n                                        [\n                                            0,\n                                            22.069\n                                        ],\n                                        [\n                                            123.586,\n                                            22.069\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.795999983245,\n                                    0.804000016755,\n                                    0.819999964097,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    123.836,\n                                    22.319\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 12,\n            \"ty\": 4,\n            \"nm\": \"roda/crane contornos\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": 0.591,\n                                \"y\": 1\n                            },\n                            \"o\": {\n                                \"x\": 0.074,\n                                \"y\": 0\n                            },\n                            \"n\": \"0p591_1_0p074_0\",\n                            \"t\": 0,\n                            \"s\": [\n                                -258,\n                                607,\n                                0\n                            ],\n                            \"e\": [\n                                385,\n                                607,\n                                0\n                            ],\n                            \"to\": [\n                                107.166664123535,\n                                0,\n                                0\n                            ],\n                            \"ti\": [\n                                -107.166664123535,\n                                0,\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 30.0000012219251\n                        }\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        186,\n                        49,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            26.483,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            26.483\n                                        ],\n                                        [\n                                            -26.483,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -26.482\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -26.483,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -26.482\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            26.483,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            26.483\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            136.828,\n                                            48.552\n                                        ],\n                                        [\n                                            -136.827,\n                                            48.552\n                                        ],\n                                        [\n                                            -185.379,\n                                            0\n                                        ],\n                                        [\n                                            -136.827,\n                                            -48.552\n                                        ],\n                                        [\n                                            136.828,\n                                            -48.552\n                                        ],\n                                        [\n                                            185.379,\n                                            0\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.325,\n                                    0.325,\n                                    0.325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    185.629,\n                                    48.802\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 13,\n            \"ty\": 4,\n            \"nm\": \"base/crane contornos\",\n            \"parent\": 12,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        187.5,\n                        -12,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        44.5,\n                        13.5,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -44.138,\n                                            13.241\n                                        ],\n                                        [\n                                            44.138,\n                                            13.241\n                                        ],\n                                        [\n                                            44.138,\n                                            -13.241\n                                        ],\n                                        [\n                                            -44.138,\n                                            -13.241\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Caminho 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.736999990426,\n                                    0.552999997606,\n                                    0.184000007779,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Preenchimento 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    44.388,\n                                    13.491\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transformar\"\n                        }\n                    ],\n                    \"nm\": \"Grupo 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 150.000006109625,\n            \"st\": 0,\n            \"bm\": 0\n        }\n    ]\n}\n"
  },
  {
    "path": "feature/base/src/main/res/raw/lottie_error_screen.json",
    "content": "{\n    \"v\": \"5.2.1\",\n    \"fr\": 30,\n    \"ip\": 0,\n    \"op\": 30,\n    \"w\": 296,\n    \"h\": 296,\n    \"nm\": \"error screen\",\n    \"ddd\": 0,\n    \"assets\": [],\n    \"layers\": [\n        {\n            \"ddd\": 0,\n            \"ind\": 1,\n            \"ty\": 4,\n            \"nm\": \"Layer 3\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        148,\n                        148,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            31.38,\n                                            -31.38\n                                        ],\n                                        [\n                                            19.95,\n                                            -4.96\n                                        ],\n                                        [\n                                            22.99,\n                                            0.01\n                                        ],\n                                        [\n                                            19.67,\n                                            4.85\n                                        ],\n                                        [\n                                            10.03,\n                                            10.04\n                                        ],\n                                        [\n                                            -39.71,\n                                            39.71\n                                        ],\n                                        [\n                                            -19.88,\n                                            4.96\n                                        ],\n                                        [\n                                            -23.05,\n                                            0\n                                        ],\n                                        [\n                                            -19.64,\n                                            -4.83\n                                        ],\n                                        [\n                                            -10.05,\n                                            -10.05\n                                        ],\n                                        [\n                                            -4.83,\n                                            -15.64\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -9.97,\n                                            9.97\n                                        ],\n                                        [\n                                            -19.75,\n                                            4.92\n                                        ],\n                                        [\n                                            -22.84,\n                                            0\n                                        ],\n                                        [\n                                            -20.12,\n                                            -4.98\n                                        ],\n                                        [\n                                            -39.71,\n                                            -39.7\n                                        ],\n                                        [\n                                            9.95,\n                                            -9.95\n                                        ],\n                                        [\n                                            19.78,\n                                            -4.94\n                                        ],\n                                        [\n                                            22.82,\n                                            -0.02\n                                        ],\n                                        [\n                                            20.16,\n                                            4.96\n                                        ],\n                                        [\n                                            8.32,\n                                            8.32\n                                        ],\n                                        [\n                                            18.24,\n                                            59.02\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            112.3,\n                                            112.31\n                                        ],\n                                        [\n                                            65.74,\n                                            134.71\n                                        ],\n                                        [\n                                            0,\n                                            142.08\n                                        ],\n                                        [\n                                            -65.38,\n                                            134.81\n                                        ],\n                                        [\n                                            -112.3,\n                                            112.3\n                                        ],\n                                        [\n                                            -112.3,\n                                            -112.3\n                                        ],\n                                        [\n                                            -65.9,\n                                            -134.67\n                                        ],\n                                        [\n                                            0,\n                                            -142.08\n                                        ],\n                                        [\n                                            65.27,\n                                            -134.83\n                                        ],\n                                        [\n                                            112.3,\n                                            -112.3\n                                        ],\n                                        [\n                                            132.03,\n                                            -75.39\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ind\": 1,\n                            \"ty\": \"sh\",\n                            \"ix\": 2,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -148,\n                                            -148\n                                        ],\n                                        [\n                                            -148,\n                                            148\n                                        ],\n                                        [\n                                            148,\n                                            148\n                                        ],\n                                        [\n                                            148,\n                                            -148\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 2\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0,\n                                    0,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 3,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 0,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 2,\n            \"ty\": 4,\n            \"nm\": \"Layer 10\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    1\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_1_0\"\n                            ],\n                            \"t\": 6,\n                            \"s\": [\n                                37\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0_1_0p333_0\"\n                            ],\n                            \"t\": 16,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                37\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 26,\n                            \"s\": [\n                                37\n                            ],\n                            \"e\": [\n                                37\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    1\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_1_0\"\n                            ],\n                            \"t\": 36,\n                            \"s\": [\n                                37\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0_1_0p333_0\"\n                            ],\n                            \"t\": 46,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                37\n                            ]\n                        },\n                        {\n                            \"t\": 56\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        296.029,\n                        104.11,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        120.04,\n                        -65.903,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.893,\n                                            -0.018\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.018,\n                                            -1.893\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            29.406,\n                                            -75.358\n                                        ],\n                                        [\n                                            29.475,\n                                            -82.703\n                                        ],\n                                        [\n                                            32.935,\n                                            -86.098\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.749019622803,\n                                    0.749019622803,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 0.831,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 2,\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.025,\n                                            2.65\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.65,\n                                            -0.025\n                                        ],\n                                        [\n                                            0.025,\n                                            -2.65\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.65,\n                                            0.025\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.65,\n                                            -0.025\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.025,\n                                            -2.65\n                                        ],\n                                        [\n                                            2.65,\n                                            0.025\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.025,\n                                            2.65\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            32.428,\n                                            -68.682\n                                        ],\n                                        [\n                                            32.428,\n                                            -68.682\n                                        ],\n                                        [\n                                            27.675,\n                                            -73.526\n                                        ],\n                                        [\n                                            27.771,\n                                            -83.809\n                                        ],\n                                        [\n                                            32.615,\n                                            -88.562\n                                        ],\n                                        [\n                                            37.369,\n                                            -83.718\n                                        ],\n                                        [\n                                            37.272,\n                                            -73.435\n                                        ],\n                                        [\n                                            32.428,\n                                            -68.682\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.653,\n                                            0.025\n                                        ],\n                                        [\n                                            -0.025,\n                                            2.653\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.466,\n                                            0.73\n                                        ],\n                                        [\n                                            -2.105,\n                                            -2.144\n                                        ],\n                                        [\n                                            -0.278,\n                                            -0.345\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.025,\n                                            2.653\n                                        ],\n                                        [\n                                            -2.653,\n                                            -0.025\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.009,\n                                            -0.933\n                                        ],\n                                        [\n                                            3.087,\n                                            0.543\n                                        ],\n                                        [\n                                            0.312,\n                                            0.318\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            38.704,\n                                            -79.911\n                                        ],\n                                        [\n                                            38.631,\n                                            -72.186\n                                        ],\n                                        [\n                                            33.787,\n                                            -67.432\n                                        ],\n                                        [\n                                            29.034,\n                                            -72.276\n                                        ],\n                                        [\n                                            29.131,\n                                            -82.559\n                                        ],\n                                        [\n                                            29.881,\n                                            -85.089\n                                        ],\n                                        [\n                                            37.822,\n                                            -80.901\n                                        ],\n                                        [\n                                            38.704,\n                                            -79.911\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            40.951,\n                                            -47.483\n                                        ],\n                                        [\n                                            27.62,\n                                            -47.608\n                                        ],\n                                        [\n                                            24.716,\n                                            -50.567\n                                        ],\n                                        [\n                                            24.719,\n                                            -50.874\n                                        ],\n                                        [\n                                            27.679,\n                                            -53.778\n                                        ],\n                                        [\n                                            41.009,\n                                            -53.653\n                                        ],\n                                        [\n                                            43.914,\n                                            -50.694\n                                        ],\n                                        [\n                                            43.911,\n                                            -50.387\n                                        ],\n                                        [\n                                            40.951,\n                                            -47.483\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            42.322,\n                                            -47.47\n                                        ],\n                                        [\n                                            28.991,\n                                            -47.596\n                                        ],\n                                        [\n                                            26.087,\n                                            -50.554\n                                        ],\n                                        [\n                                            26.09,\n                                            -50.862\n                                        ],\n                                        [\n                                            29.05,\n                                            -53.765\n                                        ],\n                                        [\n                                            42.38,\n                                            -53.64\n                                        ],\n                                        [\n                                            45.285,\n                                            -50.681\n                                        ],\n                                        [\n                                            45.282,\n                                            -50.374\n                                        ],\n                                        [\n                                            42.322,\n                                            -47.47\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            41.164,\n                                            -70.105\n                                        ],\n                                        [\n                                            27.833,\n                                            -70.231\n                                        ],\n                                        [\n                                            24.929,\n                                            -73.19\n                                        ],\n                                        [\n                                            24.932,\n                                            -73.497\n                                        ],\n                                        [\n                                            27.892,\n                                            -76.401\n                                        ],\n                                        [\n                                            41.222,\n                                            -76.275\n                                        ],\n                                        [\n                                            44.127,\n                                            -73.316\n                                        ],\n                                        [\n                                            44.124,\n                                            -73.009\n                                        ],\n                                        [\n                                            41.164,\n                                            -70.105\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            42.535,\n                                            -70.092\n                                        ],\n                                        [\n                                            29.205,\n                                            -70.218\n                                        ],\n                                        [\n                                            26.3,\n                                            -73.177\n                                        ],\n                                        [\n                                            26.303,\n                                            -73.484\n                                        ],\n                                        [\n                                            29.263,\n                                            -76.388\n                                        ],\n                                        [\n                                            42.593,\n                                            -76.262\n                                        ],\n                                        [\n                                            45.498,\n                                            -73.303\n                                        ],\n                                        [\n                                            45.495,\n                                            -72.996\n                                        ],\n                                        [\n                                            42.535,\n                                            -70.092\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            41.093,\n                                            -62.564\n                                        ],\n                                        [\n                                            27.762,\n                                            -62.69\n                                        ],\n                                        [\n                                            24.858,\n                                            -65.649\n                                        ],\n                                        [\n                                            24.861,\n                                            -65.956\n                                        ],\n                                        [\n                                            27.821,\n                                            -68.86\n                                        ],\n                                        [\n                                            41.151,\n                                            -68.734\n                                        ],\n                                        [\n                                            44.056,\n                                            -65.775\n                                        ],\n                                        [\n                                            44.053,\n                                            -65.468\n                                        ],\n                                        [\n                                            41.093,\n                                            -62.564\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            42.464,\n                                            -62.552\n                                        ],\n                                        [\n                                            29.134,\n                                            -62.677\n                                        ],\n                                        [\n                                            26.229,\n                                            -65.636\n                                        ],\n                                        [\n                                            26.232,\n                                            -65.943\n                                        ],\n                                        [\n                                            29.192,\n                                            -68.847\n                                        ],\n                                        [\n                                            42.522,\n                                            -68.721\n                                        ],\n                                        [\n                                            45.427,\n                                            -65.762\n                                        ],\n                                        [\n                                            45.424,\n                                            -65.455\n                                        ],\n                                        [\n                                            42.464,\n                                            -62.552\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            41.022,\n                                            -55.024\n                                        ],\n                                        [\n                                            27.691,\n                                            -55.149\n                                        ],\n                                        [\n                                            24.787,\n                                            -58.108\n                                        ],\n                                        [\n                                            24.79,\n                                            -58.415\n                                        ],\n                                        [\n                                            27.75,\n                                            -61.319\n                                        ],\n                                        [\n                                            41.08,\n                                            -61.193\n                                        ],\n                                        [\n                                            43.985,\n                                            -58.234\n                                        ],\n                                        [\n                                            43.982,\n                                            -57.927\n                                        ],\n                                        [\n                                            41.022,\n                                            -55.024\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.62,\n                                            -0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.015,\n                                            -1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.619,\n                                            0.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.015,\n                                            1.619\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            42.393,\n                                            -55.011\n                                        ],\n                                        [\n                                            29.063,\n                                            -55.136\n                                        ],\n                                        [\n                                            26.158,\n                                            -58.095\n                                        ],\n                                        [\n                                            26.161,\n                                            -58.402\n                                        ],\n                                        [\n                                            29.121,\n                                            -61.306\n                                        ],\n                                        [\n                                            42.451,\n                                            -61.181\n                                        ],\n                                        [\n                                            45.356,\n                                            -58.222\n                                        ],\n                                        [\n                                            45.353,\n                                            -57.914\n                                        ],\n                                        [\n                                            42.393,\n                                            -55.011\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 11\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 11,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.005,\n                                            0.569\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.003,\n                                            -0.343\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ],\n                                        [\n                                            0.005,\n                                            -0.569\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.024,\n                                            0.336\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            42.03,\n                                            -69.069\n                                        ],\n                                        [\n                                            42.02,\n                                            -68.04\n                                        ],\n                                        [\n                                            25.91,\n                                            -68.192\n                                        ],\n                                        [\n                                            24.892,\n                                            -69.23\n                                        ],\n                                        [\n                                            25.93,\n                                            -70.249\n                                        ],\n                                        [\n                                            41.998,\n                                            -70.097\n                                        ],\n                                        [\n                                            42.03,\n                                            -69.069\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 12\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 12,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.005,\n                                            0.569\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ],\n                                        [\n                                            0.005,\n                                            -0.569\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            41.969,\n                                            -62.556\n                                        ],\n                                        [\n                                            41.949,\n                                            -60.5\n                                        ],\n                                        [\n                                            25.839,\n                                            -60.651\n                                        ],\n                                        [\n                                            24.821,\n                                            -61.689\n                                        ],\n                                        [\n                                            25.859,\n                                            -62.708\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 13\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 13,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.191,\n                                            -0.663\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.005,\n                                            0.569\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.082,\n                                            0.699\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.569,\n                                            -0.005\n                                        ],\n                                        [\n                                            0.005,\n                                            -0.569\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            41.795,\n                                            -55.016\n                                        ],\n                                        [\n                                            41.385,\n                                            -52.964\n                                        ],\n                                        [\n                                            25.768,\n                                            -53.111\n                                        ],\n                                        [\n                                            24.75,\n                                            -54.149\n                                        ],\n                                        [\n                                            25.788,\n                                            -55.167\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 14\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 14,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.851,\n                                            -0.027\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.047,\n                                            -2.85\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            15.54,\n                                            -59.034\n                                        ],\n                                        [\n                                            15.746,\n                                            -71.583\n                                        ],\n                                        [\n                                            20.982,\n                                            -76.684\n                                        ],\n                                        [\n                                            24.495,\n                                            -76.651\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.749019622803,\n                                    0.749019622803,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 1.744,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 2,\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 15\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 15,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.042,\n                                            4.503\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -4.503,\n                                            -0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.042,\n                                            -4.503\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.503,\n                                            0.042\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -4.503,\n                                            -0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.042,\n                                            -4.503\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.503,\n                                            0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.042,\n                                            4.503\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            33.661,\n                                            -46.18\n                                        ],\n                                        [\n                                            20.488,\n                                            -46.304\n                                        ],\n                                        [\n                                            12.413,\n                                            -54.534\n                                        ],\n                                        [\n                                            12.582,\n                                            -72.505\n                                        ],\n                                        [\n                                            20.811,\n                                            -80.581\n                                        ],\n                                        [\n                                            33.984,\n                                            -80.457\n                                        ],\n                                        [\n                                            42.06,\n                                            -72.227\n                                        ],\n                                        [\n                                            41.89,\n                                            -54.257\n                                        ],\n                                        [\n                                            33.661,\n                                            -46.18\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 16\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 16,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.042,\n                                            4.44\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -4.44,\n                                            -0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.042,\n                                            -4.44\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.44,\n                                            0.042\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -4.44,\n                                            -0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.042,\n                                            -4.44\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.44,\n                                            0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.042,\n                                            4.44\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            32.396,\n                                            -45.507\n                                        ],\n                                        [\n                                            20.369,\n                                            -45.62\n                                        ],\n                                        [\n                                            12.405,\n                                            -53.736\n                                        ],\n                                        [\n                                            12.583,\n                                            -72.618\n                                        ],\n                                        [\n                                            20.699,\n                                            -80.582\n                                        ],\n                                        [\n                                            32.726,\n                                            -80.469\n                                        ],\n                                        [\n                                            40.69,\n                                            -72.353\n                                        ],\n                                        [\n                                            40.512,\n                                            -53.471\n                                        ],\n                                        [\n                                            32.396,\n                                            -45.507\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 17\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 17,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.692,\n                                            -2.641\n                                        ],\n                                        [\n                                            4.072,\n                                            0.038\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.518,\n                                            7.602\n                                        ],\n                                        [\n                                            -0.004,\n                                            0.391\n                                        ],\n                                        [\n                                            -2.692,\n                                            2.641\n                                        ],\n                                        [\n                                            -4.072,\n                                            -0.038\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.077,\n                                            -8.137\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.038,\n                                            4.071\n                                        ],\n                                        [\n                                            -2.692,\n                                            2.642\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -7.746,\n                                            -0.073\n                                        ],\n                                        [\n                                            -0.031,\n                                            -0.384\n                                        ],\n                                        [\n                                            0.038,\n                                            -4.071\n                                        ],\n                                        [\n                                            2.692,\n                                            -2.642\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            8.137,\n                                            0.077\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            74.877,\n                                            -62.589\n                                        ],\n                                        [\n                                            70.46,\n                                            -52.21\n                                        ],\n                                        [\n                                            59.999,\n                                            -47.989\n                                        ],\n                                        [\n                                            37.377,\n                                            -48.202\n                                        ],\n                                        [\n                                            22.814,\n                                            -61.921\n                                        ],\n                                        [\n                                            22.777,\n                                            -63.08\n                                        ],\n                                        [\n                                            27.194,\n                                            -73.459\n                                        ],\n                                        [\n                                            37.655,\n                                            -77.68\n                                        ],\n                                        [\n                                            60.277,\n                                            -77.467\n                                        ],\n                                        [\n                                            74.877,\n                                            -62.589\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 18\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 18,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.692,\n                                            -2.641\n                                        ],\n                                        [\n                                            4.072,\n                                            0.038\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.518,\n                                            7.602\n                                        ],\n                                        [\n                                            -0.004,\n                                            0.391\n                                        ],\n                                        [\n                                            -2.692,\n                                            2.641\n                                        ],\n                                        [\n                                            -4.072,\n                                            -0.038\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.077,\n                                            -8.137\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.038,\n                                            4.071\n                                        ],\n                                        [\n                                            -2.692,\n                                            2.642\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -7.746,\n                                            -0.073\n                                        ],\n                                        [\n                                            -0.031,\n                                            -0.384\n                                        ],\n                                        [\n                                            0.038,\n                                            -4.071\n                                        ],\n                                        [\n                                            2.692,\n                                            -2.642\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            8.137,\n                                            0.077\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            76.934,\n                                            -62.57\n                                        ],\n                                        [\n                                            72.517,\n                                            -52.19\n                                        ],\n                                        [\n                                            62.056,\n                                            -47.97\n                                        ],\n                                        [\n                                            39.434,\n                                            -48.183\n                                        ],\n                                        [\n                                            24.871,\n                                            -61.902\n                                        ],\n                                        [\n                                            24.834,\n                                            -63.06\n                                        ],\n                                        [\n                                            29.251,\n                                            -73.44\n                                        ],\n                                        [\n                                            39.711,\n                                            -77.66\n                                        ],\n                                        [\n                                            62.334,\n                                            -77.447\n                                        ],\n                                        [\n                                            76.934,\n                                            -62.57\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.529411792755,\n                                    0.529411792755,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 19\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 19,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.923,\n                                            -3.14\n                                        ],\n                                        [\n                                            4.415,\n                                            0.042\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.37,\n                                            7.271\n                                        ],\n                                        [\n                                            -0.005,\n                                            0.5\n                                        ],\n                                        [\n                                            -2.699,\n                                            3.381\n                                        ],\n                                        [\n                                            -1.86,\n                                            0.935\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.091,\n                                            -9.652\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.046,\n                                            4.833\n                                        ],\n                                        [\n                                            -2.923,\n                                            3.133\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -5.041,\n                                            -2.666\n                                        ],\n                                        [\n                                            -0.03,\n                                            -0.487\n                                        ],\n                                        [\n                                            0.049,\n                                            -5.21\n                                        ],\n                                        [\n                                            1.401,\n                                            -1.763\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            8.83,\n                                            0.083\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            81.952,\n                                            -62.522\n                                        ],\n                                        [\n                                            77.146,\n                                            -50.207\n                                        ],\n                                        [\n                                            65.794,\n                                            -45.192\n                                        ],\n                                        [\n                                            57.883,\n                                            -45.267\n                                        ],\n                                        [\n                                            48.861,\n                                            -61.353\n                                        ],\n                                        [\n                                            48.827,\n                                            -62.834\n                                        ],\n                                        [\n                                            53.271,\n                                            -76.12\n                                        ],\n                                        [\n                                            58.212,\n                                            -80.229\n                                        ],\n                                        [\n                                            66.123,\n                                            -80.154\n                                        ],\n                                        [\n                                            81.952,\n                                            -62.522\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.745,\n                                    0.173,\n                                    0.161,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 20\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 20,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.857,\n                                            1.891\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.891,\n                                            1.857\n                                        ],\n                                        [\n                                            -1.857,\n                                            -1.891\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.891,\n                                            -1.857\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.892,\n                                            1.856\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.856,\n                                            -1.892\n                                        ],\n                                        [\n                                            1.892,\n                                            -1.856\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.856,\n                                            1.891\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            51.517,\n                                            -64.455\n                                        ],\n                                        [\n                                            51.517,\n                                            -64.455\n                                        ],\n                                        [\n                                            44.731,\n                                            -64.519\n                                        ],\n                                        [\n                                            29.145,\n                                            -80.402\n                                        ],\n                                        [\n                                            29.209,\n                                            -87.189\n                                        ],\n                                        [\n                                            35.995,\n                                            -87.125\n                                        ],\n                                        [\n                                            51.581,\n                                            -71.242\n                                        ],\n                                        [\n                                            51.517,\n                                            -64.455\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.65098041296,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 21\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 21,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.699,\n                                            -3.381\n                                        ],\n                                        [\n                                            4.072,\n                                            0.038\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.692,\n                                            0.9\n                                        ],\n                                        [\n                                            0.37,\n                                            7.271\n                                        ],\n                                        [\n                                            -0.005,\n                                            0.5\n                                        ],\n                                        [\n                                            -2.699,\n                                            3.381\n                                        ],\n                                        [\n                                            -1.86,\n                                            0.935\n                                        ],\n                                        [\n                                            -1.954,\n                                            -0.018\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.098,\n                                            -10.406\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.049,\n                                            5.21\n                                        ],\n                                        [\n                                            -2.699,\n                                            3.389\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.954,\n                                            -0.018\n                                        ],\n                                        [\n                                            -5.041,\n                                            -2.666\n                                        ],\n                                        [\n                                            -0.03,\n                                            -0.487\n                                        ],\n                                        [\n                                            0.049,\n                                            -5.21\n                                        ],\n                                        [\n                                            1.401,\n                                            -1.763\n                                        ],\n                                        [\n                                            1.708,\n                                            -0.868\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            8.137,\n                                            0.077\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            120.039,\n                                            -61.956\n                                        ],\n                                        [\n                                            115.594,\n                                            -48.671\n                                        ],\n                                        [\n                                            105.122,\n                                            -43.243\n                                        ],\n                                        [\n                                            63.388,\n                                            -43.844\n                                        ],\n                                        [\n                                            57.883,\n                                            -45.267\n                                        ],\n                                        [\n                                            48.861,\n                                            -61.353\n                                        ],\n                                        [\n                                            48.827,\n                                            -62.834\n                                        ],\n                                        [\n                                            53.271,\n                                            -76.12\n                                        ],\n                                        [\n                                            58.212,\n                                            -80.229\n                                        ],\n                                        [\n                                            63.743,\n                                            -81.548\n                                        ],\n                                        [\n                                            105.477,\n                                            -80.947\n                                        ],\n                                        [\n                                            120.039,\n                                            -61.956\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.984,\n                                    0.204,\n                                    0.188,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 22\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 22,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 455,\n            \"st\": 5,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 3,\n            \"ty\": 4,\n            \"nm\": \"Shape Layer 1\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        148,\n                        148,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -70,\n                                            52\n                                        ],\n                                        [\n                                            49,\n                                            52\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tm\",\n                            \"s\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.667\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.333\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p667_1_0p333_0\"\n                                        ],\n                                        \"t\": 22,\n                                        \"s\": [\n                                            0\n                                        ],\n                                        \"e\": [\n                                            53\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 28\n                                    }\n                                ],\n                                \"ix\": 1\n                            },\n                            \"e\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.667\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.333\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p667_1_0p333_0\"\n                                        ],\n                                        \"t\": 22,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            53\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 28\n                                    }\n                                ],\n                                \"ix\": 2\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 3\n                            },\n                            \"m\": 1,\n                            \"ix\": 2,\n                            \"nm\": \"Trim Paths 1\",\n                            \"mn\": \"ADBE Vector Filter - Trim\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 3,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 4,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 4,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0,\n                                    0,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": true\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Shape 1\",\n                    \"np\": 4,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 22,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 4,\n            \"ty\": 4,\n            \"nm\": \"Layer 2\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 10,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        148,\n                        148,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            2.074,\n                                            2.073\n                                        ],\n                                        [\n                                            1.881,\n                                            1.133\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -3.37,\n                                            0.001\n                                        ],\n                                        [\n                                            -1.917,\n                                            0.081\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.35,\n                                            -1.35\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.314,\n                                            0.249\n                                        ],\n                                        [\n                                            1.927,\n                                            0.001\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.561,\n                                            -3.267\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            37.552,\n                                            -2.047\n                                        ],\n                                        [\n                                            32.68,\n                                            -5.77\n                                        ],\n                                        [\n                                            -19.935,\n                                            105.027\n                                        ],\n                                        [\n                                            -9.884,\n                                            105.408\n                                        ],\n                                        [\n                                            -4.116,\n                                            105.275\n                                        ],\n                                        [\n                                            42.998,\n                                            6.062\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            8.66,\n                                            -0.007\n                                        ],\n                                        [\n                                            1.918,\n                                            -0.081\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.074,\n                                            -2.074\n                                        ],\n                                        [\n                                            -7.8,\n                                            -2.094\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.928,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.561,\n                                            3.268\n                                        ],\n                                        [\n                                            3.974,\n                                            3.974\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -7.683,\n                                            -1.651\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -9.887,\n                                            -14.625\n                                        ],\n                                        [\n                                            -15.659,\n                                            -14.491\n                                        ],\n                                        [\n                                            -62.778,\n                                            84.732\n                                        ],\n                                        [\n                                            -57.326,\n                                            92.831\n                                        ],\n                                        [\n                                            -39.071,\n                                            101.932\n                                        ],\n                                        [\n                                            15.103,\n                                            -12.148\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 5,\n            \"ty\": 4,\n            \"nm\": \"Layer 12\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        138.784,\n                        238.793,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        67.784,\n                        120.793,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.75,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.16,\n                                            -0.02\n                                        ],\n                                        [\n                                            0.91,\n                                            -0.11\n                                        ],\n                                        [\n                                            1.31,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.1,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.2,\n                                            -0.08\n                                        ],\n                                        [\n                                            0.21,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.11,\n                                            -0.04\n                                        ],\n                                        [\n                                            0.27,\n                                            -0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.72,\n                                            0.12\n                                        ],\n                                        [\n                                            -0.15,\n                                            0.02\n                                        ],\n                                        [\n                                            -0.89,\n                                            0.14\n                                        ],\n                                        [\n                                            -1.29,\n                                            0.17\n                                        ],\n                                        [\n                                            -0.1,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.18,\n                                            0.11\n                                        ],\n                                        [\n                                            -0.21,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.1,\n                                            0.07\n                                        ],\n                                        [\n                                            -0.27,\n                                            0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            89.689,\n                                            106.168\n                                        ],\n                                        [\n                                            89.689,\n                                            133.548\n                                        ],\n                                        [\n                                            87.499,\n                                            133.918\n                                        ],\n                                        [\n                                            87.039,\n                                            133.988\n                                        ],\n                                        [\n                                            84.329,\n                                            134.368\n                                        ],\n                                        [\n                                            80.429,\n                                            134.808\n                                        ],\n                                        [\n                                            80.129,\n                                            134.838\n                                        ],\n                                        [\n                                            76.549,\n                                            135.128\n                                        ],\n                                        [\n                                            75.929,\n                                            135.168\n                                        ],\n                                        [\n                                            72.609,\n                                            135.328\n                                        ],\n                                        [\n                                            71.799,\n                                            135.358\n                                        ],\n                                        [\n                                            71.749,\n                                            135.358\n                                        ],\n                                        [\n                                            71.749,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.850980401039,\n                                    0.188235297799,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.84,\n                                            -0.59\n                                        ],\n                                        [\n                                            1.67,\n                                            -0.41\n                                        ],\n                                        [\n                                            0.98,\n                                            -0.21\n                                        ],\n                                        [\n                                            0.57,\n                                            -0.11\n                                        ],\n                                        [\n                                            0.39,\n                                            -0.07\n                                        ],\n                                        [\n                                            0.04,\n                                            -0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.63,\n                                            0.7\n                                        ],\n                                        [\n                                            -1.54,\n                                            0.5\n                                        ],\n                                        [\n                                            -0.95,\n                                            0.24\n                                        ],\n                                        [\n                                            -0.56,\n                                            0.12\n                                        ],\n                                        [\n                                            -0.38,\n                                            0.07\n                                        ],\n                                        [\n                                            -0.04,\n                                            0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            105.579,\n                                            106.168\n                                        ],\n                                        [\n                                            105.579,\n                                            128.998\n                                        ],\n                                        [\n                                            100.369,\n                                            130.938\n                                        ],\n                                        [\n                                            95.549,\n                                            132.308\n                                        ],\n                                        [\n                                            92.659,\n                                            132.968\n                                        ],\n                                        [\n                                            90.969,\n                                            133.308\n                                        ],\n                                        [\n                                            89.819,\n                                            133.528\n                                        ],\n                                        [\n                                            89.689,\n                                            133.548\n                                        ],\n                                        [\n                                            89.689,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.78823530674,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.32,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.32,\n                                            0.04\n                                        ],\n                                        [\n                                            0.25,\n                                            0.01\n                                        ],\n                                        [\n                                            1.1,\n                                            0.07\n                                        ],\n                                        [\n                                            0.18,\n                                            0.01\n                                        ],\n                                        [\n                                            1.1,\n                                            0.11\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.32,\n                                            0.04\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.33,\n                                            0\n                                        ],\n                                        [\n                                            -0.25,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.11,\n                                            -0.04\n                                        ],\n                                        [\n                                            -0.18,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.12,\n                                            -0.07\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            71.749,\n                                            106.168\n                                        ],\n                                        [\n                                            71.749,\n                                            135.358\n                                        ],\n                                        [\n                                            67.789,\n                                            135.418\n                                        ],\n                                        [\n                                            67.779,\n                                            135.418\n                                        ],\n                                        [\n                                            63.809,\n                                            135.358\n                                        ],\n                                        [\n                                            63.049,\n                                            135.328\n                                        ],\n                                        [\n                                            59.729,\n                                            135.168\n                                        ],\n                                        [\n                                            59.179,\n                                            135.138\n                                        ],\n                                        [\n                                            55.849,\n                                            134.868\n                                        ],\n                                        [\n                                            55.849,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.180392161012,\n                                    0.454901963472,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.487,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.09,\n                                            0.01\n                                        ],\n                                        [\n                                            0.07,\n                                            0.01\n                                        ],\n                                        [\n                                            1.27,\n                                            0.17\n                                        ],\n                                        [\n                                            0.92,\n                                            0.14\n                                        ],\n                                        [\n                                            0.13,\n                                            0.02\n                                        ],\n                                        [\n                                            0.8,\n                                            0.14\n                                        ],\n                                        [\n                                            0.36,\n                                            0.07\n                                        ],\n                                        [\n                                            0.58,\n                                            0.12\n                                        ],\n                                        [\n                                            0.94,\n                                            0.24\n                                        ],\n                                        [\n                                            0.74,\n                                            0.21\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.09,\n                                            0\n                                        ],\n                                        [\n                                            -0.07,\n                                            0\n                                        ],\n                                        [\n                                            -1.3,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.94,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.13,\n                                            -0.02\n                                        ],\n                                        [\n                                            -0.81,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.36,\n                                            -0.06\n                                        ],\n                                        [\n                                            -0.59,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.98,\n                                            -0.21\n                                        ],\n                                        [\n                                            -0.77,\n                                            -0.19\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            55.849,\n                                            106.168\n                                        ],\n                                        [\n                                            55.849,\n                                            134.868\n                                        ],\n                                        [\n                                            55.579,\n                                            134.848\n                                        ],\n                                        [\n                                            55.359,\n                                            134.828\n                                        ],\n                                        [\n                                            51.489,\n                                            134.398\n                                        ],\n                                        [\n                                            48.699,\n                                            134.008\n                                        ],\n                                        [\n                                            48.319,\n                                            133.948\n                                        ],\n                                        [\n                                            45.899,\n                                            133.548\n                                        ],\n                                        [\n                                            44.829,\n                                            133.348\n                                        ],\n                                        [\n                                            43.059,\n                                            132.998\n                                        ],\n                                        [\n                                            40.169,\n                                            132.338\n                                        ],\n                                        [\n                                            37.909,\n                                            131.748\n                                        ],\n                                        [\n                                            37.909,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.7,\n                                            -3.7\n                                        ],\n                                        [\n                                            3.95,\n                                            -1.72\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -2.07,\n                                            7.09\n                                        ],\n                                        [\n                                            -2.4,\n                                            2.39\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            123.879,\n                                            106.168\n                                        ],\n                                        [\n                                            115.229,\n                                            122.838\n                                        ],\n                                        [\n                                            105.579,\n                                            128.998\n                                        ],\n                                        [\n                                            105.579,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.88,\n                                            0.29\n                                        ],\n                                        [\n                                            3.32,\n                                            2.69\n                                        ],\n                                        [\n                                            0.51,\n                                            0.51\n                                        ],\n                                        [\n                                            2.07,\n                                            7.09\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.93,\n                                            -0.26\n                                        ],\n                                        [\n                                            -5.33,\n                                            -1.71\n                                        ],\n                                        [\n                                            -0.59,\n                                            -0.48\n                                        ],\n                                        [\n                                            -3.71,\n                                            -3.7\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            37.909,\n                                            106.168\n                                        ],\n                                        [\n                                            37.909,\n                                            131.748\n                                        ],\n                                        [\n                                            35.199,\n                                            130.928\n                                        ],\n                                        [\n                                            22.009,\n                                            124.328\n                                        ],\n                                        [\n                                            20.349,\n                                            122.838\n                                        ],\n                                        [\n                                            11.689,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.811764717102,\n                                    0,\n                                    0.882352948189,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 18,\n            \"op\": 19,\n            \"st\": 18,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 6,\n            \"ty\": 4,\n            \"nm\": \"Layer 11\",\n            \"parent\": 9,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -75.783,\n                        60.775,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -75.783,\n                        60.775,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.307,\n                                            0.127\n                                        ],\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            1.184,\n                                            0.079\n                                        ],\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            1.094,\n                                            0.04\n                                        ],\n                                        [\n                                            0.282,\n                                            0.008\n                                        ],\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.281,\n                                            -0.166\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ],\n                                        [\n                                            -1.168,\n                                            -0.11\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.067\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.331,\n                                            -0.04\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ],\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ],\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ],\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ],\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ],\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.78823530674,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ],\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.282,\n                                            0.009\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.282,\n                                            0.008\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ],\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ],\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.73,\n                                            0.42\n                                        ],\n                                        [\n                                            0.967,\n                                            0.205\n                                        ],\n                                        [\n                                            0.539,\n                                            0.104\n                                        ],\n                                        [\n                                            0.404,\n                                            0.073\n                                        ],\n                                        [\n                                            0.744,\n                                            0.117\n                                        ],\n                                        [\n                                            0.176,\n                                            0.027\n                                        ],\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.6,\n                                            -0.52\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ],\n                                        [\n                                            -0.53,\n                                            -0.111\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.131\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.132\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ],\n                                        [\n                                            -43.197,\n                                            19.862\n                                        ],\n                                        [\n                                            -48.207,\n                                            18.452\n                                        ],\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ],\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ],\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ],\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ],\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.850980401039,\n                                    0.188235297799,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.177,\n                                            0.027\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.176,\n                                            0.027\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ],\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.969,\n                                            0.204\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.967,\n                                            0.205\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ],\n                                        [\n                                            -48.207,\n                                            18.452\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.405,\n                                            0.073\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.404,\n                                            0.073\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ],\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.324,\n                                            -0.04\n                                        ],\n                                        [\n                                            0.241,\n                                            -0.008\n                                        ],\n                                        [\n                                            1.12,\n                                            -0.069\n                                        ],\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.211,\n                                            -0.113\n                                        ],\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            1.286,\n                                            -0.163\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ],\n                                        [\n                                            -1.128,\n                                            0.04\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.227,\n                                            0.08\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ],\n                                        [\n                                            -1.311,\n                                            0.125\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ],\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ],\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ],\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ],\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ],\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.364705890417,\n                                    0.909803926945,\n                                    0.690196096897,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 11\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 11,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ],\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 12\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 12,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.241,\n                                            -0.009\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.241,\n                                            -0.008\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ],\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 13\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 13,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 14\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 14,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.952,\n                                            -0.145\n                                        ],\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            0.837,\n                                            -0.151\n                                        ],\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            0.613,\n                                            -0.13\n                                        ],\n                                        [\n                                            0.955,\n                                            -0.239\n                                        ],\n                                        [\n                                            1.52,\n                                            -0.49\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.97,\n                                            0.123\n                                        ],\n                                        [\n                                            -0.105,\n                                            0.016\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.133\n                                        ],\n                                        [\n                                            -0.342,\n                                            0.062\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.119\n                                        ],\n                                        [\n                                            -0.989,\n                                            0.211\n                                        ],\n                                        [\n                                            -1.64,\n                                            0.41\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ],\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ],\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ],\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ],\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ],\n                                        [\n                                            -103.617,\n                                            18.512\n                                        ],\n                                        [\n                                            -108.367,\n                                            19.862\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.180392161012,\n                                    0.454901963472,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 15\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 15,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.956,\n                                            -0.239\n                                        ],\n                                        [\n                                            -0.989,\n                                            0.211\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.955,\n                                            -0.239\n                                        ],\n                                        [\n                                            -0.99,\n                                            0.21\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -103.617,\n                                            18.512\n                                        ],\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 16\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 16,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            -0.105,\n                                            0.016\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            -0.106,\n                                            0.016\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 17\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 17,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            -0.342,\n                                            0.062\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            -0.343,\n                                            0.062\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ],\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 18\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 18,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.549,\n                                            17.966\n                                        ],\n                                        [\n                                            3.52,\n                                            3.52\n                                        ],\n                                        [\n                                            6.28,\n                                            2.02\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            5.333,\n                                            -18.29\n                                        ],\n                                        [\n                                            -2.04,\n                                            -6.61\n                                        ],\n                                        [\n                                            -3.38,\n                                            -3.38\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -19.686,\n                                            106.169\n                                        ],\n                                        [\n                                            -20.007,\n                                            43.552\n                                        ],\n                                        [\n                                            -28.347,\n                                            27.962\n                                        ],\n                                        [\n                                            -43.197,\n                                            19.862\n                                        ],\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.811764717102,\n                                    0,\n                                    0.882352948189,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 19\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 19,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.38,\n                                            -3.38\n                                        ],\n                                        [\n                                            -7.3,\n                                            -25.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -6.28,\n                                            2.02\n                                        ],\n                                        [\n                                            -13.074,\n                                            13.074\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -108.367,\n                                            19.862\n                                        ],\n                                        [\n                                            -123.217,\n                                            27.962\n                                        ],\n                                        [\n                                            -131.878,\n                                            106.169\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.882352948189,\n                                    0.525490224361,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 20\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 20,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.743,\n                                            0.118\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.131\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.744,\n                                            0.117\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.132\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ],\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 21\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 21,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.538,\n                                            0.104\n                                        ],\n                                        [\n                                            -0.53,\n                                            -0.111\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.539,\n                                            0.104\n                                        ],\n                                        [\n                                            -0.529,\n                                            -0.112\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ],\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 22\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 22,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.311,\n                                            0.125\n                                        ],\n                                        [\n                                            2.214,\n                                            -0.34\n                                        ],\n                                        [\n                                            -0.97,\n                                            0.123\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -2.302,\n                                            0.217\n                                        ],\n                                        [\n                                            0.952,\n                                            -0.145\n                                        ],\n                                        [\n                                            1.286,\n                                            -0.163\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 23\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 23,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.095,\n                                            0.039\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.067\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.094,\n                                            0.04\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.066\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ],\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 24\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 24,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            -1.331,\n                                            -0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            -1.332,\n                                            -0.039\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 25\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 25,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.309,\n                                            0.126\n                                        ],\n                                        [\n                                            -1.281,\n                                            -0.166\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.307,\n                                            0.127\n                                        ],\n                                        [\n                                            -1.282,\n                                            -0.166\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 26\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 26,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.185,\n                                            0.078\n                                        ],\n                                        [\n                                            -1.168,\n                                            -0.11\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.184,\n                                            0.079\n                                        ],\n                                        [\n                                            -1.169,\n                                            -0.109\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ],\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 27\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 27,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.325,\n                                            -0.039\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.324,\n                                            -0.04\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 28\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 28,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.132\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.133\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 29\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 29,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.613,\n                                            -0.131\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.119\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.613,\n                                            -0.13\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.12\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ],\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 30\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 30,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.121,\n                                            -0.067\n                                        ],\n                                        [\n                                            -1.128,\n                                            0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.12,\n                                            -0.069\n                                        ],\n                                        [\n                                            -1.129,\n                                            0.039\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ],\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 31\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 31,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.213,\n                                            -0.112\n                                        ],\n                                        [\n                                            -1.227,\n                                            0.08\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.211,\n                                            -0.113\n                                        ],\n                                        [\n                                            -1.228,\n                                            0.078\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ],\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 32\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 32,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.836,\n                                            -0.152\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.133\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.837,\n                                            -0.151\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.134\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ],\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 33\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 33,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 17,\n            \"op\": 22,\n            \"st\": 17,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 7,\n            \"ty\": 4,\n            \"nm\": \"Layer 8\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        138.784,\n                        238.793,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        67.784,\n                        120.793,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.75,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.16,\n                                            -0.02\n                                        ],\n                                        [\n                                            0.91,\n                                            -0.11\n                                        ],\n                                        [\n                                            1.31,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.1,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.2,\n                                            -0.08\n                                        ],\n                                        [\n                                            0.21,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.11,\n                                            -0.04\n                                        ],\n                                        [\n                                            0.27,\n                                            -0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.72,\n                                            0.12\n                                        ],\n                                        [\n                                            -0.15,\n                                            0.02\n                                        ],\n                                        [\n                                            -0.89,\n                                            0.14\n                                        ],\n                                        [\n                                            -1.29,\n                                            0.17\n                                        ],\n                                        [\n                                            -0.1,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.18,\n                                            0.11\n                                        ],\n                                        [\n                                            -0.21,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.1,\n                                            0.07\n                                        ],\n                                        [\n                                            -0.27,\n                                            0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            89.689,\n                                            106.168\n                                        ],\n                                        [\n                                            89.689,\n                                            133.548\n                                        ],\n                                        [\n                                            87.499,\n                                            133.918\n                                        ],\n                                        [\n                                            87.039,\n                                            133.988\n                                        ],\n                                        [\n                                            84.329,\n                                            134.368\n                                        ],\n                                        [\n                                            80.429,\n                                            134.808\n                                        ],\n                                        [\n                                            80.129,\n                                            134.838\n                                        ],\n                                        [\n                                            76.549,\n                                            135.128\n                                        ],\n                                        [\n                                            75.929,\n                                            135.168\n                                        ],\n                                        [\n                                            72.609,\n                                            135.328\n                                        ],\n                                        [\n                                            71.799,\n                                            135.358\n                                        ],\n                                        [\n                                            71.749,\n                                            135.358\n                                        ],\n                                        [\n                                            71.749,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.850980401039,\n                                    0.188235297799,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.84,\n                                            -0.59\n                                        ],\n                                        [\n                                            1.67,\n                                            -0.41\n                                        ],\n                                        [\n                                            0.98,\n                                            -0.21\n                                        ],\n                                        [\n                                            0.57,\n                                            -0.11\n                                        ],\n                                        [\n                                            0.39,\n                                            -0.07\n                                        ],\n                                        [\n                                            0.04,\n                                            -0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.63,\n                                            0.7\n                                        ],\n                                        [\n                                            -1.54,\n                                            0.5\n                                        ],\n                                        [\n                                            -0.95,\n                                            0.24\n                                        ],\n                                        [\n                                            -0.56,\n                                            0.12\n                                        ],\n                                        [\n                                            -0.38,\n                                            0.07\n                                        ],\n                                        [\n                                            -0.04,\n                                            0.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            105.579,\n                                            106.168\n                                        ],\n                                        [\n                                            105.579,\n                                            128.998\n                                        ],\n                                        [\n                                            100.369,\n                                            130.938\n                                        ],\n                                        [\n                                            95.549,\n                                            132.308\n                                        ],\n                                        [\n                                            92.659,\n                                            132.968\n                                        ],\n                                        [\n                                            90.969,\n                                            133.308\n                                        ],\n                                        [\n                                            89.819,\n                                            133.528\n                                        ],\n                                        [\n                                            89.689,\n                                            133.548\n                                        ],\n                                        [\n                                            89.689,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.78823530674,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ],\n                                        [\n                                            84.33,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.32,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.32,\n                                            0.04\n                                        ],\n                                        [\n                                            0.25,\n                                            0.01\n                                        ],\n                                        [\n                                            1.1,\n                                            0.07\n                                        ],\n                                        [\n                                            0.18,\n                                            0.01\n                                        ],\n                                        [\n                                            1.1,\n                                            0.11\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.32,\n                                            0.04\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.33,\n                                            0\n                                        ],\n                                        [\n                                            -0.25,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.11,\n                                            -0.04\n                                        ],\n                                        [\n                                            -0.18,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.12,\n                                            -0.07\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            71.749,\n                                            106.168\n                                        ],\n                                        [\n                                            71.749,\n                                            135.358\n                                        ],\n                                        [\n                                            67.789,\n                                            135.418\n                                        ],\n                                        [\n                                            67.779,\n                                            135.418\n                                        ],\n                                        [\n                                            63.809,\n                                            135.358\n                                        ],\n                                        [\n                                            63.049,\n                                            135.328\n                                        ],\n                                        [\n                                            59.729,\n                                            135.168\n                                        ],\n                                        [\n                                            59.179,\n                                            135.138\n                                        ],\n                                        [\n                                            55.849,\n                                            134.868\n                                        ],\n                                        [\n                                            55.849,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.180392161012,\n                                    0.454901963472,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.487,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.09,\n                                            0.01\n                                        ],\n                                        [\n                                            0.07,\n                                            0.01\n                                        ],\n                                        [\n                                            1.27,\n                                            0.17\n                                        ],\n                                        [\n                                            0.92,\n                                            0.14\n                                        ],\n                                        [\n                                            0.13,\n                                            0.02\n                                        ],\n                                        [\n                                            0.8,\n                                            0.14\n                                        ],\n                                        [\n                                            0.36,\n                                            0.07\n                                        ],\n                                        [\n                                            0.58,\n                                            0.12\n                                        ],\n                                        [\n                                            0.94,\n                                            0.24\n                                        ],\n                                        [\n                                            0.74,\n                                            0.21\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.09,\n                                            0\n                                        ],\n                                        [\n                                            -0.07,\n                                            0\n                                        ],\n                                        [\n                                            -1.3,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.94,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.13,\n                                            -0.02\n                                        ],\n                                        [\n                                            -0.81,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.36,\n                                            -0.06\n                                        ],\n                                        [\n                                            -0.59,\n                                            -0.12\n                                        ],\n                                        [\n                                            -0.98,\n                                            -0.21\n                                        ],\n                                        [\n                                            -0.77,\n                                            -0.19\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            55.849,\n                                            106.168\n                                        ],\n                                        [\n                                            55.849,\n                                            134.868\n                                        ],\n                                        [\n                                            55.579,\n                                            134.848\n                                        ],\n                                        [\n                                            55.359,\n                                            134.828\n                                        ],\n                                        [\n                                            51.489,\n                                            134.398\n                                        ],\n                                        [\n                                            48.699,\n                                            134.008\n                                        ],\n                                        [\n                                            48.319,\n                                            133.948\n                                        ],\n                                        [\n                                            45.899,\n                                            133.548\n                                        ],\n                                        [\n                                            44.829,\n                                            133.348\n                                        ],\n                                        [\n                                            43.059,\n                                            132.998\n                                        ],\n                                        [\n                                            40.169,\n                                            132.338\n                                        ],\n                                        [\n                                            37.909,\n                                            131.748\n                                        ],\n                                        [\n                                            37.909,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ],\n                                        [\n                                            51.486,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.7,\n                                            -3.7\n                                        ],\n                                        [\n                                            3.95,\n                                            -1.72\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -2.07,\n                                            7.09\n                                        ],\n                                        [\n                                            -2.4,\n                                            2.39\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            123.879,\n                                            106.168\n                                        ],\n                                        [\n                                            115.229,\n                                            122.838\n                                        ],\n                                        [\n                                            105.579,\n                                            128.998\n                                        ],\n                                        [\n                                            105.579,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.88,\n                                            0.29\n                                        ],\n                                        [\n                                            3.32,\n                                            2.69\n                                        ],\n                                        [\n                                            0.51,\n                                            0.51\n                                        ],\n                                        [\n                                            2.07,\n                                            7.09\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.93,\n                                            -0.26\n                                        ],\n                                        [\n                                            -5.33,\n                                            -1.71\n                                        ],\n                                        [\n                                            -0.59,\n                                            -0.48\n                                        ],\n                                        [\n                                            -3.71,\n                                            -3.7\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            37.909,\n                                            106.168\n                                        ],\n                                        [\n                                            37.909,\n                                            131.748\n                                        ],\n                                        [\n                                            35.199,\n                                            130.928\n                                        ],\n                                        [\n                                            22.009,\n                                            124.328\n                                        ],\n                                        [\n                                            20.349,\n                                            122.838\n                                        ],\n                                        [\n                                            11.689,\n                                            106.168\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.811764717102,\n                                    0,\n                                    0.882352948189,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 16,\n            \"op\": 17,\n            \"st\": 16,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 8,\n            \"ty\": 4,\n            \"nm\": \"Layer 5\",\n            \"parent\": 9,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -75.783,\n                        60.775,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -75.783,\n                        60.775,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.307,\n                                            0.127\n                                        ],\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            1.184,\n                                            0.079\n                                        ],\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            1.094,\n                                            0.04\n                                        ],\n                                        [\n                                            0.282,\n                                            0.008\n                                        ],\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.281,\n                                            -0.166\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ],\n                                        [\n                                            -1.168,\n                                            -0.11\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.067\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ],\n                                        [\n                                            -1.331,\n                                            -0.04\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ],\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ],\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ],\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ],\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ],\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.78823530674,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.226,\n                                            0.014\n                                        ],\n                                        [\n                                            -0.226,\n                                            -0.015\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ],\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.282,\n                                            0.009\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.282,\n                                            0.008\n                                        ],\n                                        [\n                                            -0.282,\n                                            -0.01\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ],\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.114,\n                                            0.011\n                                        ],\n                                        [\n                                            -0.114,\n                                            -0.011\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ],\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.73,\n                                            0.42\n                                        ],\n                                        [\n                                            0.967,\n                                            0.205\n                                        ],\n                                        [\n                                            0.539,\n                                            0.104\n                                        ],\n                                        [\n                                            0.404,\n                                            0.073\n                                        ],\n                                        [\n                                            0.744,\n                                            0.117\n                                        ],\n                                        [\n                                            0.176,\n                                            0.027\n                                        ],\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.6,\n                                            -0.52\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ],\n                                        [\n                                            -0.53,\n                                            -0.111\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.131\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.132\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ],\n                                        [\n                                            -43.197,\n                                            19.862\n                                        ],\n                                        [\n                                            -48.207,\n                                            18.452\n                                        ],\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ],\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ],\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ],\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ],\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.850980401039,\n                                    0.188235297799,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.177,\n                                            0.027\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.176,\n                                            0.027\n                                        ],\n                                        [\n                                            -0.176,\n                                            -0.028\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ],\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.969,\n                                            0.204\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.967,\n                                            0.205\n                                        ],\n                                        [\n                                            -0.936,\n                                            -0.231\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ],\n                                        [\n                                            -48.207,\n                                            18.452\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.405,\n                                            0.073\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.404,\n                                            0.073\n                                        ],\n                                        [\n                                            -0.4,\n                                            -0.077\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ],\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.324,\n                                            -0.04\n                                        ],\n                                        [\n                                            0.241,\n                                            -0.008\n                                        ],\n                                        [\n                                            1.12,\n                                            -0.069\n                                        ],\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            1.211,\n                                            -0.113\n                                        ],\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            1.286,\n                                            -0.163\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ],\n                                        [\n                                            -1.128,\n                                            0.04\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.227,\n                                            0.08\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ],\n                                        [\n                                            -1.311,\n                                            0.125\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ],\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ],\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ],\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ],\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ],\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.364705890417,\n                                    0.909803926945,\n                                    0.690196096897,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 11\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 11,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.162,\n                                            -0.01\n                                        ],\n                                        [\n                                            -0.162,\n                                            0.01\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ],\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 12\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 12,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.241,\n                                            -0.009\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.241,\n                                            -0.008\n                                        ],\n                                        [\n                                            -0.241,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ],\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 13\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 13,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.057,\n                                            -0.005\n                                        ],\n                                        [\n                                            -0.057,\n                                            0.005\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 14\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 14,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.952,\n                                            -0.145\n                                        ],\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            0.837,\n                                            -0.151\n                                        ],\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            0.613,\n                                            -0.13\n                                        ],\n                                        [\n                                            0.955,\n                                            -0.239\n                                        ],\n                                        [\n                                            1.52,\n                                            -0.49\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.97,\n                                            0.123\n                                        ],\n                                        [\n                                            -0.105,\n                                            0.016\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.133\n                                        ],\n                                        [\n                                            -0.342,\n                                            0.062\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.119\n                                        ],\n                                        [\n                                            -0.989,\n                                            0.211\n                                        ],\n                                        [\n                                            -1.64,\n                                            0.41\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ],\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ],\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ],\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ],\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ],\n                                        [\n                                            -103.617,\n                                            18.512\n                                        ],\n                                        [\n                                            -108.367,\n                                            19.862\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.180392161012,\n                                    0.454901963472,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 15\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 15,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.956,\n                                            -0.239\n                                        ],\n                                        [\n                                            -0.989,\n                                            0.211\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.955,\n                                            -0.239\n                                        ],\n                                        [\n                                            -0.99,\n                                            0.21\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -103.617,\n                                            18.512\n                                        ],\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 16\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 16,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            -0.105,\n                                            0.016\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.105,\n                                            -0.016\n                                        ],\n                                        [\n                                            -0.106,\n                                            0.016\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 17\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 17,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            -0.342,\n                                            0.062\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.339,\n                                            -0.065\n                                        ],\n                                        [\n                                            -0.343,\n                                            0.062\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ],\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 18\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 18,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.549,\n                                            17.966\n                                        ],\n                                        [\n                                            3.52,\n                                            3.52\n                                        ],\n                                        [\n                                            6.28,\n                                            2.02\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            5.333,\n                                            -18.29\n                                        ],\n                                        [\n                                            -2.04,\n                                            -6.61\n                                        ],\n                                        [\n                                            -3.38,\n                                            -3.38\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -19.686,\n                                            106.169\n                                        ],\n                                        [\n                                            -20.007,\n                                            43.552\n                                        ],\n                                        [\n                                            -28.347,\n                                            27.962\n                                        ],\n                                        [\n                                            -43.197,\n                                            19.862\n                                        ],\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.811764717102,\n                                    0,\n                                    0.882352948189,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 19\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 19,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.38,\n                                            -3.38\n                                        ],\n                                        [\n                                            -7.3,\n                                            -25.015\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -6.28,\n                                            2.02\n                                        ],\n                                        [\n                                            -13.074,\n                                            13.074\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -108.367,\n                                            19.862\n                                        ],\n                                        [\n                                            -123.217,\n                                            27.962\n                                        ],\n                                        [\n                                            -131.878,\n                                            106.169\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.882352948189,\n                                    0.525490224361,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 20\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 20,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.743,\n                                            0.118\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.131\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.744,\n                                            0.117\n                                        ],\n                                        [\n                                            -0.73,\n                                            -0.132\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.09,\n                                            16.884\n                                        ],\n                                        [\n                                            -53.879,\n                                            17.256\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 21\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 21,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.538,\n                                            0.104\n                                        ],\n                                        [\n                                            -0.53,\n                                            -0.111\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.539,\n                                            0.104\n                                        ],\n                                        [\n                                            -0.529,\n                                            -0.112\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -52.676,\n                                            17.485\n                                        ],\n                                        [\n                                            -51.068,\n                                            17.802\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 22\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 22,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.311,\n                                            0.125\n                                        ],\n                                        [\n                                            2.214,\n                                            -0.34\n                                        ],\n                                        [\n                                            -0.97,\n                                            0.123\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -2.302,\n                                            0.217\n                                        ],\n                                        [\n                                            0.952,\n                                            -0.145\n                                        ],\n                                        [\n                                            1.286,\n                                            -0.163\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.18,\n                                            15.967\n                                        ],\n                                        [\n                                            -94.961,\n                                            16.801\n                                        ],\n                                        [\n                                            -92.077,\n                                            16.398\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 23\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 23,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.095,\n                                            0.039\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.067\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.094,\n                                            0.04\n                                        ],\n                                        [\n                                            -1.086,\n                                            -0.066\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -70.941,\n                                            15.479\n                                        ],\n                                        [\n                                            -67.669,\n                                            15.634\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 24\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 24,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            -1.331,\n                                            -0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.336,\n                                            0\n                                        ],\n                                        [\n                                            -1.332,\n                                            -0.039\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ],\n                                        [\n                                            -71.785,\n                                            15.445\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 25\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 25,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.309,\n                                            0.126\n                                        ],\n                                        [\n                                            -1.281,\n                                            -0.166\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.307,\n                                            0.127\n                                        ],\n                                        [\n                                            -1.282,\n                                            -0.166\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.12,\n                                            15.992\n                                        ],\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 26\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 26,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.185,\n                                            0.078\n                                        ],\n                                        [\n                                            -1.168,\n                                            -0.11\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.184,\n                                            0.079\n                                        ],\n                                        [\n                                            -1.169,\n                                            -0.109\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -66.993,\n                                            15.679\n                                        ],\n                                        [\n                                            -63.463,\n                                            15.96\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 27\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 27,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.325,\n                                            -0.039\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.324,\n                                            -0.04\n                                        ],\n                                        [\n                                            -1.328,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -79.768,\n                                            15.444\n                                        ],\n                                        [\n                                            -75.787,\n                                            15.382\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 28\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 28,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.132\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.88,\n                                            0.114\n                                        ],\n                                        [\n                                            -0.865,\n                                            -0.133\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            16.43\n                                        ],\n                                        [\n                                            -56.618,\n                                            16.801\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 29\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 29,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.613,\n                                            -0.131\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.119\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.613,\n                                            -0.13\n                                        ],\n                                        [\n                                            -0.625,\n                                            0.12\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -100.695,\n                                            17.84\n                                        ],\n                                        [\n                                            -98.83,\n                                            17.471\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 30\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 30,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.121,\n                                            -0.067\n                                        ],\n                                        [\n                                            -1.128,\n                                            0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.12,\n                                            -0.069\n                                        ],\n                                        [\n                                            -1.129,\n                                            0.039\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -83.863,\n                                            15.631\n                                        ],\n                                        [\n                                            -80.488,\n                                            15.473\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 31\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 31,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            1.213,\n                                            -0.112\n                                        ],\n                                        [\n                                            -1.227,\n                                            0.08\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            1.211,\n                                            -0.113\n                                        ],\n                                        [\n                                            -1.228,\n                                            0.078\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.01,\n                                            15.95\n                                        ],\n                                        [\n                                            -84.349,\n                                            15.664\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 32\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 32,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0.836,\n                                            -0.152\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.133\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0.837,\n                                            -0.151\n                                        ],\n                                        [\n                                            -0.854,\n                                            0.134\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -97.814,\n                                            17.276\n                                        ],\n                                        [\n                                            -95.276,\n                                            16.851\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 33\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 33,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 15,\n            \"op\": 17,\n            \"st\": 15,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 9,\n            \"ty\": 4,\n            \"nm\": \"Layer 9\",\n            \"parent\": 11,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -10,\n                        91,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -75.782,\n                        120.795,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.334,\n                                            0.041\n                                        ],\n                                        [\n                                            -0.272,\n                                            0.01\n                                        ],\n                                        [\n                                            -1.099,\n                                            0.068\n                                        ],\n                                        [\n                                            -0.209,\n                                            0.014\n                                        ],\n                                        [\n                                            -1.185,\n                                            0.112\n                                        ],\n                                        [\n                                            -0.098,\n                                            0.009\n                                        ],\n                                        [\n                                            -1.286,\n                                            0.167\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.339,\n                                            0\n                                        ],\n                                        [\n                                            0.273,\n                                            -0.008\n                                        ],\n                                        [\n                                            1.108,\n                                            -0.04\n                                        ],\n                                        [\n                                            0.209,\n                                            -0.013\n                                        ],\n                                        [\n                                            1.201,\n                                            -0.08\n                                        ],\n                                        [\n                                            0.098,\n                                            -0.009\n                                        ],\n                                        [\n                                            1.313,\n                                            -0.127\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ],\n                                        [\n                                            -75.787,\n                                            135.422\n                                        ],\n                                        [\n                                            -75.777,\n                                            135.422\n                                        ],\n                                        [\n                                            -71.766,\n                                            135.358\n                                        ],\n                                        [\n                                            -70.95,\n                                            135.325\n                                        ],\n                                        [\n                                            -67.638,\n                                            135.167\n                                        ],\n                                        [\n                                            -67.013,\n                                            135.125\n                                        ],\n                                        [\n                                            -63.431,\n                                            134.84\n                                        ],\n                                        [\n                                            -63.136,\n                                            134.811\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.850980401039,\n                                    0.188235297799,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.209,\n                                            0.014\n                                        ],\n                                        [\n                                            0.209,\n                                            -0.013\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.209,\n                                            0.014\n                                        ],\n                                        [\n                                            0.209,\n                                            -0.013\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -67.013,\n                                            135.125\n                                        ],\n                                        [\n                                            -67.638,\n                                            135.167\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.272,\n                                            0.01\n                                        ],\n                                        [\n                                            0.273,\n                                            -0.008\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.272,\n                                            0.01\n                                        ],\n                                        [\n                                            0.273,\n                                            -0.008\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -70.95,\n                                            135.325\n                                        ],\n                                        [\n                                            -71.766,\n                                            135.358\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.098,\n                                            0.01\n                                        ],\n                                        [\n                                            0.098,\n                                            -0.009\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.098,\n                                            0.009\n                                        ],\n                                        [\n                                            0.099,\n                                            -0.009\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.136,\n                                            134.811\n                                        ],\n                                        [\n                                            -63.431,\n                                            134.84\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.929411768913,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.897,\n                                            0.137\n                                        ],\n                                        [\n                                            -0.153,\n                                            0.024\n                                        ],\n                                        [\n                                            -0.766,\n                                            0.138\n                                        ],\n                                        [\n                                            -0.38,\n                                            0.074\n                                        ],\n                                        [\n                                            -0.557,\n                                            0.118\n                                        ],\n                                        [\n                                            -0.943,\n                                            0.234\n                                        ],\n                                        [\n                                            -1.54,\n                                            0.5\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.913,\n                                            -0.118\n                                        ],\n                                        [\n                                            0.154,\n                                            -0.024\n                                        ],\n                                        [\n                                            0.781,\n                                            -0.123\n                                        ],\n                                        [\n                                            0.385,\n                                            -0.07\n                                        ],\n                                        [\n                                            0.567,\n                                            -0.109\n                                        ],\n                                        [\n                                            0.977,\n                                            -0.208\n                                        ],\n                                        [\n                                            1.67,\n                                            -0.41\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            106.169\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -56.521,\n                                            133.987\n                                        ],\n                                        [\n                                            -56.06,\n                                            133.915\n                                        ],\n                                        [\n                                            -53.74,\n                                            133.524\n                                        ],\n                                        [\n                                            -52.596,\n                                            133.305\n                                        ],\n                                        [\n                                            -50.903,\n                                            132.97\n                                        ],\n                                        [\n                                            -48.017,\n                                            132.312\n                                        ],\n                                        [\n                                            -43.197,\n                                            130.942\n                                        ],\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.78823530674,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 6\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.154,\n                                            0.024\n                                        ],\n                                        [\n                                            0.154,\n                                            -0.024\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.153,\n                                            0.024\n                                        ],\n                                        [\n                                            0.154,\n                                            -0.024\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.06,\n                                            133.915\n                                        ],\n                                        [\n                                            -56.521,\n                                            133.987\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.381,\n                                            0.073\n                                        ],\n                                        [\n                                            0.385,\n                                            -0.07\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.38,\n                                            0.074\n                                        ],\n                                        [\n                                            0.385,\n                                            -0.069\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -52.596,\n                                            133.305\n                                        ],\n                                        [\n                                            -53.74,\n                                            133.524\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 9\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.944,\n                                            0.234\n                                        ],\n                                        [\n                                            0.977,\n                                            -0.208\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.943,\n                                            0.234\n                                        ],\n                                        [\n                                            0.978,\n                                            -0.207\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -48.017,\n                                            132.312\n                                        ],\n                                        [\n                                            -50.903,\n                                            132.97\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0,\n                                    0.890196084976,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.302,\n                                            -0.124\n                                        ],\n                                        [\n                                            -0.076,\n                                            -0.007\n                                        ],\n                                        [\n                                            -1.205,\n                                            -0.079\n                                        ],\n                                        [\n                                            -0.185,\n                                            -0.011\n                                        ],\n                                        [\n                                            -1.109,\n                                            -0.04\n                                        ],\n                                        [\n                                            -0.255,\n                                            -0.008\n                                        ],\n                                        [\n                                            -1.324,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.277,\n                                            0.163\n                                        ],\n                                        [\n                                            0.076,\n                                            0.007\n                                        ],\n                                        [\n                                            1.189,\n                                            0.112\n                                        ],\n                                        [\n                                            0.185,\n                                            0.012\n                                        ],\n                                        [\n                                            1.101,\n                                            0.067\n                                        ],\n                                        [\n                                            0.255,\n                                            0.009\n                                        ],\n                                        [\n                                            1.319,\n                                            0.04\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ],\n                                        [\n                                            -88.207,\n                                            134.831\n                                        ],\n                                        [\n                                            -87.98,\n                                            134.853\n                                        ],\n                                        [\n                                            -84.386,\n                                            135.135\n                                        ],\n                                        [\n                                            -83.832,\n                                            135.173\n                                        ],\n                                        [\n                                            -80.516,\n                                            135.329\n                                        ],\n                                        [\n                                            -79.753,\n                                            135.359\n                                        ],\n                                        [\n                                            -75.787,\n                                            135.422\n                                        ],\n                                        [\n                                            -75.787,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.180392161012,\n                                    0.454901963472,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 11\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 11,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.076,\n                                            -0.007\n                                        ],\n                                        [\n                                            0.076,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.076,\n                                            -0.007\n                                        ],\n                                        [\n                                            0.076,\n                                            0.007\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -87.98,\n                                            134.853\n                                        ],\n                                        [\n                                            -88.207,\n                                            134.831\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 12\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 12,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.255,\n                                            -0.008\n                                        ],\n                                        [\n                                            0.255,\n                                            0.009\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.255,\n                                            -0.008\n                                        ],\n                                        [\n                                            0.255,\n                                            0.009\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -79.753,\n                                            135.359\n                                        ],\n                                        [\n                                            -80.516,\n                                            135.329\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 13\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 13,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 14\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 14,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.185,\n                                            -0.011\n                                        ],\n                                        [\n                                            0.185,\n                                            0.012\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.185,\n                                            -0.011\n                                        ],\n                                        [\n                                            0.185,\n                                            0.012\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -83.832,\n                                            135.173\n                                        ],\n                                        [\n                                            -84.386,\n                                            135.135\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.729411780834,\n                                    0.92549020052,\n                                    0.870588243008,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 15\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 15,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.72,\n                                            -0.42\n                                        ],\n                                        [\n                                            -0.978,\n                                            -0.207\n                                        ],\n                                        [\n                                            -0.594,\n                                            -0.113\n                                        ],\n                                        [\n                                            -0.359,\n                                            -0.065\n                                        ],\n                                        [\n                                            -0.817,\n                                            -0.127\n                                        ],\n                                        [\n                                            -0.124,\n                                            -0.019\n                                        ],\n                                        [\n                                            -0.939,\n                                            -0.12\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.59,\n                                            0.52\n                                        ],\n                                        [\n                                            0.945,\n                                            0.233\n                                        ],\n                                        [\n                                            0.584,\n                                            0.123\n                                        ],\n                                        [\n                                            0.356,\n                                            0.068\n                                        ],\n                                        [\n                                            0.801,\n                                            0.143\n                                        ],\n                                        [\n                                            0.124,\n                                            0.019\n                                        ],\n                                        [\n                                            0.922,\n                                            0.14\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.077,\n                                            106.169\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ],\n                                        [\n                                            -108.367,\n                                            130.932\n                                        ],\n                                        [\n                                            -103.397,\n                                            132.342\n                                        ],\n                                        [\n                                            -100.508,\n                                            132.997\n                                        ],\n                                        [\n                                            -98.734,\n                                            133.345\n                                        ],\n                                        [\n                                            -97.667,\n                                            133.548\n                                        ],\n                                        [\n                                            -95.24,\n                                            133.953\n                                        ],\n                                        [\n                                            -94.869,\n                                            134.011\n                                        ],\n                                        [\n                                            -92.078,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 16\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 16,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.979,\n                                            -0.206\n                                        ],\n                                        [\n                                            0.945,\n                                            0.233\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.978,\n                                            -0.207\n                                        ],\n                                        [\n                                            0.945,\n                                            0.233\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -100.508,\n                                            132.997\n                                        ],\n                                        [\n                                            -103.397,\n                                            132.342\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 17\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 17,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.078,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 18\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 18,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.124,\n                                            -0.019\n                                        ],\n                                        [\n                                            0.124,\n                                            0.019\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.124,\n                                            -0.019\n                                        ],\n                                        [\n                                            0.124,\n                                            0.019\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -94.869,\n                                            134.011\n                                        ],\n                                        [\n                                            -95.24,\n                                            133.953\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 19\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 19,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.36,\n                                            -0.064\n                                        ],\n                                        [\n                                            0.356,\n                                            0.068\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.359,\n                                            -0.065\n                                        ],\n                                        [\n                                            0.356,\n                                            0.068\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -97.667,\n                                            133.548\n                                        ],\n                                        [\n                                            -98.734,\n                                            133.345\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.937254905701,\n                                    0.078431375325,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 20\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 20,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -3.39,\n                                            3.38\n                                        ],\n                                        [\n                                            -2.067,\n                                            7.089\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            6.28,\n                                            -2.02\n                                        ],\n                                        [\n                                            3.701,\n                                            -3.704\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -43.197,\n                                            106.169\n                                        ],\n                                        [\n                                            -43.197,\n                                            130.942\n                                        ],\n                                        [\n                                            -28.337,\n                                            122.842\n                                        ],\n                                        [\n                                            -19.686,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.541176497936,\n                                    0.066666670144,\n                                    0.447058826685,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 21\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 21,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -3.706,\n                                            -3.703\n                                        ],\n                                        [\n                                            -6.28,\n                                            -2.01\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            2.069,\n                                            7.09\n                                        ],\n                                        [\n                                            3.38,\n                                            3.38\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -131.878,\n                                            106.169\n                                        ],\n                                        [\n                                            -123.217,\n                                            122.842\n                                        ],\n                                        [\n                                            -108.367,\n                                            130.932\n                                        ],\n                                        [\n                                            -108.367,\n                                            106.169\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.807843148708,\n                                    0,\n                                    0.854901969433,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 22\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 22,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.323,\n                                            0\n                                        ],\n                                        [\n                                            1.319,\n                                            0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.324,\n                                            0\n                                        ],\n                                        [\n                                            1.32,\n                                            0.039\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -75.787,\n                                            135.422\n                                        ],\n                                        [\n                                            -79.753,\n                                            135.359\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 23\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 23,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.335,\n                                            0.039\n                                        ],\n                                        [\n                                            1.339,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.334,\n                                            0.041\n                                        ],\n                                        [\n                                            1.339,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -71.766,\n                                            135.358\n                                        ],\n                                        [\n                                            -75.777,\n                                            135.422\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 24\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 24,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.109,\n                                            -0.039\n                                        ],\n                                        [\n                                            1.101,\n                                            0.067\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.109,\n                                            -0.04\n                                        ],\n                                        [\n                                            1.102,\n                                            0.066\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -80.516,\n                                            135.329\n                                        ],\n                                        [\n                                            -83.832,\n                                            135.173\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 25\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 25,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.206,\n                                            -0.078\n                                        ],\n                                        [\n                                            1.189,\n                                            0.112\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.205,\n                                            -0.079\n                                        ],\n                                        [\n                                            1.19,\n                                            0.111\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -84.386,\n                                            135.135\n                                        ],\n                                        [\n                                            -87.98,\n                                            134.853\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 26\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 26,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.303,\n                                            -0.123\n                                        ],\n                                        [\n                                            1.277,\n                                            0.163\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.302,\n                                            -0.124\n                                        ],\n                                        [\n                                            1.277,\n                                            0.163\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -88.207,\n                                            134.831\n                                        ],\n                                        [\n                                            -92.077,\n                                            134.402\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 27\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 27,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.557,\n                                            0.118\n                                        ],\n                                        [\n                                            0.567,\n                                            -0.109\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.557,\n                                            0.118\n                                        ],\n                                        [\n                                            0.566,\n                                            -0.11\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -50.903,\n                                            132.97\n                                        ],\n                                        [\n                                            -52.596,\n                                            133.305\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 28\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 28,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.765,\n                                            0.139\n                                        ],\n                                        [\n                                            0.781,\n                                            -0.123\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.766,\n                                            0.138\n                                        ],\n                                        [\n                                            0.78,\n                                            -0.124\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -53.74,\n                                            133.524\n                                        ],\n                                        [\n                                            -56.06,\n                                            133.915\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 29\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 29,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.939,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.922,\n                                            0.14\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.939,\n                                            -0.12\n                                        ],\n                                        [\n                                            0.922,\n                                            0.141\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -92.078,\n                                            134.402\n                                        ],\n                                        [\n                                            -94.869,\n                                            134.011\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 30\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 30,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.287,\n                                            0.167\n                                        ],\n                                        [\n                                            1.313,\n                                            -0.127\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.286,\n                                            0.167\n                                        ],\n                                        [\n                                            1.314,\n                                            -0.127\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ],\n                                        [\n                                            -63.136,\n                                            134.811\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 31\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 31,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.186,\n                                            0.111\n                                        ],\n                                        [\n                                            1.201,\n                                            -0.08\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.185,\n                                            0.112\n                                        ],\n                                        [\n                                            1.202,\n                                            -0.079\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -63.431,\n                                            134.84\n                                        ],\n                                        [\n                                            -67.013,\n                                            135.125\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 32\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 32,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.896,\n                                            0.138\n                                        ],\n                                        [\n                                            0.913,\n                                            -0.118\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.897,\n                                            0.137\n                                        ],\n                                        [\n                                            0.913,\n                                            -0.118\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -56.521,\n                                            133.987\n                                        ],\n                                        [\n                                            -59.234,\n                                            134.372\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 33\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 33,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -1.1,\n                                            0.067\n                                        ],\n                                        [\n                                            1.108,\n                                            -0.04\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -1.099,\n                                            0.068\n                                        ],\n                                        [\n                                            1.108,\n                                            -0.04\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -67.638,\n                                            135.167\n                                        ],\n                                        [\n                                            -70.95,\n                                            135.325\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 34\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 34,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.594,\n                                            -0.114\n                                        ],\n                                        [\n                                            0.584,\n                                            0.123\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.594,\n                                            -0.113\n                                        ],\n                                        [\n                                            0.583,\n                                            0.123\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -98.734,\n                                            133.345\n                                        ],\n                                        [\n                                            -100.508,\n                                            132.997\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 35\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 35,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            -0.816,\n                                            -0.128\n                                        ],\n                                        [\n                                            0.801,\n                                            0.143\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -0.817,\n                                            -0.127\n                                        ],\n                                        [\n                                            0.8,\n                                            0.144\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -95.24,\n                                            133.953\n                                        ],\n                                        [\n                                            -97.667,\n                                            133.548\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    0.701960802078,\n                                    0.65098041296,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 36\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 36,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 15,\n            \"op\": 22,\n            \"st\": 15,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 10,\n            \"ty\": 4,\n            \"nm\": \"stroke\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": -2,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        206.657,\n                        70.872,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        134.09,\n                        13.571,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        79.5,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            109.353,\n                                            -21.362\n                                        ],\n                                        [\n                                            121.95,\n                                            4.931\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tm\",\n                            \"s\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.667\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                1\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p667_1_1_0\"\n                                        ],\n                                        \"t\": 14,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 19\n                                    }\n                                ],\n                                \"ix\": 1\n                            },\n                            \"e\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.333\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0_1_0p333_0\"\n                                        ],\n                                        \"t\": 19,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 24\n                                    }\n                                ],\n                                \"ix\": 2\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 3\n                            },\n                            \"m\": 1,\n                            \"ix\": 2,\n                            \"nm\": \"Trim Paths 1\",\n                            \"mn\": \"ADBE Vector Filter - Trim\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 3,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 10,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 10,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 3,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            99.533,\n                                            2.308\n                                        ],\n                                        [\n                                            112.512,\n                                            13.571\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 3,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 10,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 10,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tm\",\n                            \"s\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.667\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                1\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p667_1_1_0\"\n                                        ],\n                                        \"t\": 14,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 19\n                                    }\n                                ],\n                                \"ix\": 1\n                            },\n                            \"e\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.333\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0_1_0p333_0\"\n                                        ],\n                                        \"t\": 19,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 24\n                                    }\n                                ],\n                                \"ix\": 2\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 3\n                            },\n                            \"m\": 1,\n                            \"ix\": 3,\n                            \"nm\": \"Trim Paths 1\",\n                            \"mn\": \"ADBE Vector Filter - Trim\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 2,\n                                \"ix\": 5\n                            },\n                            \"lc\": 1,\n                            \"lj\": 1,\n                            \"ml\": 4,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 4,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 2\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 4,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            134.09,\n                                            -15.014\n                                        ],\n                                        [\n                                            134.09,\n                                            2.172\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 3,\n                                \"ix\": 5\n                            },\n                            \"lc\": 2,\n                            \"lj\": 1,\n                            \"ml\": 10,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 10,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 1\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tm\",\n                            \"s\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0.667\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                1\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0p667_1_1_0\"\n                                        ],\n                                        \"t\": 14,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 19\n                                    }\n                                ],\n                                \"ix\": 1\n                            },\n                            \"e\": {\n                                \"a\": 1,\n                                \"k\": [\n                                    {\n                                        \"i\": {\n                                            \"x\": [\n                                                0\n                                            ],\n                                            \"y\": [\n                                                1\n                                            ]\n                                        },\n                                        \"o\": {\n                                            \"x\": [\n                                                0.333\n                                            ],\n                                            \"y\": [\n                                                0\n                                            ]\n                                        },\n                                        \"n\": [\n                                            \"0_1_0p333_0\"\n                                        ],\n                                        \"t\": 19,\n                                        \"s\": [\n                                            100\n                                        ],\n                                        \"e\": [\n                                            0\n                                        ]\n                                    },\n                                    {\n                                        \"t\": 24\n                                    }\n                                ],\n                                \"ix\": 2\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 3\n                            },\n                            \"m\": 1,\n                            \"ix\": 3,\n                            \"nm\": \"Trim Paths 1\",\n                            \"mn\": \"ADBE Vector Filter - Trim\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"st\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 3\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 4\n                            },\n                            \"w\": {\n                                \"a\": 0,\n                                \"k\": 2,\n                                \"ix\": 5\n                            },\n                            \"lc\": 1,\n                            \"lj\": 1,\n                            \"ml\": 4,\n                            \"ml2\": {\n                                \"a\": 0,\n                                \"k\": 4,\n                                \"ix\": 8\n                            },\n                            \"nm\": \"Stroke 2\",\n                            \"mn\": \"ADBE Vector Graphic - Stroke\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 4,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": -1,\n            \"op\": 449,\n            \"st\": -1,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 11,\n            \"ty\": 4,\n            \"nm\": \"Layer 1\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    1\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_1_0\"\n                            ],\n                            \"t\": 15,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                2\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0_1_0p333_0\"\n                            ],\n                            \"t\": 20,\n                            \"s\": [\n                                2\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 25\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": 0.667,\n                                \"y\": 1\n                            },\n                            \"o\": {\n                                \"x\": 1,\n                                \"y\": 0\n                            },\n                            \"n\": \"0p667_1_1_0\",\n                            \"t\": 15,\n                            \"s\": [\n                                57.935,\n                                269.325,\n                                0\n                            ],\n                            \"e\": [\n                                57.935,\n                                277.325,\n                                0\n                            ],\n                            \"to\": [\n                                0,\n                                1.33333337306976,\n                                0\n                            ],\n                            \"ti\": [\n                                0,\n                                0,\n                                0\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": 0,\n                                \"y\": 1\n                            },\n                            \"o\": {\n                                \"x\": 0.333,\n                                \"y\": 0\n                            },\n                            \"n\": \"0_1_0p333_0\",\n                            \"t\": 20,\n                            \"s\": [\n                                57.935,\n                                277.325,\n                                0\n                            ],\n                            \"e\": [\n                                57.935,\n                                269.325,\n                                0\n                            ],\n                            \"to\": [\n                                0,\n                                0,\n                                0\n                            ],\n                            \"ti\": [\n                                0,\n                                1.33333337306976,\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 25\n                        }\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -90.065,\n                        121.325,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            1.89\n                                        ],\n                                        [\n                                            -1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -1.89\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            1.89\n                                        ],\n                                        [\n                                            -1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -1.89\n                                        ],\n                                        [\n                                            1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            84.575,\n                                            85.183\n                                        ],\n                                        [\n                                            81.154,\n                                            88.604\n                                        ],\n                                        [\n                                            77.733,\n                                            85.183\n                                        ],\n                                        [\n                                            81.154,\n                                            81.761\n                                        ],\n                                        [\n                                            84.575,\n                                            85.183\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.165,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            2.166\n                                        ],\n                                        [\n                                            -2.166,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -2.168\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            2.166\n                                        ],\n                                        [\n                                            -2.166,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -2.168\n                                        ],\n                                        [\n                                            2.165,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            85.077,\n                                            85.183\n                                        ],\n                                        [\n                                            81.155,\n                                            89.104\n                                        ],\n                                        [\n                                            77.232,\n                                            85.183\n                                        ],\n                                        [\n                                            81.155,\n                                            81.261\n                                        ],\n                                        [\n                                            85.077,\n                                            85.183\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 2\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 2,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            1.89\n                                        ],\n                                        [\n                                            -1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -1.89\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            1.89\n                                        ],\n                                        [\n                                            -1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -1.89\n                                        ],\n                                        [\n                                            1.89,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            65.636,\n                                            85.183\n                                        ],\n                                        [\n                                            62.215,\n                                            88.604\n                                        ],\n                                        [\n                                            58.795,\n                                            85.183\n                                        ],\n                                        [\n                                            62.215,\n                                            81.761\n                                        ],\n                                        [\n                                            65.636,\n                                            85.183\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 3\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 3,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.165,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            2.166\n                                        ],\n                                        [\n                                            -2.168,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -2.168\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            2.166\n                                        ],\n                                        [\n                                            -2.168,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -2.168\n                                        ],\n                                        [\n                                            2.165,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            66.137,\n                                            85.183\n                                        ],\n                                        [\n                                            62.216,\n                                            89.104\n                                        ],\n                                        [\n                                            58.292,\n                                            85.183\n                                        ],\n                                        [\n                                            62.216,\n                                            81.261\n                                        ],\n                                        [\n                                            66.137,\n                                            85.183\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 4\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 4,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            4.852\n                                        ],\n                                        [\n                                            -4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -4.852\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            4.852\n                                        ],\n                                        [\n                                            -4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -4.852\n                                        ],\n                                        [\n                                            4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            80.469,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            58.958\n                                        ],\n                                        [\n                                            62.901,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            41.389\n                                        ],\n                                        [\n                                            80.469,\n                                            50.173\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.286274522543,\n                                    0.286274522543,\n                                    0.286274522543,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 5\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 5,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            5.621\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            5.621\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            81.86,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            60.349\n                                        ],\n                                        [\n                                            61.51,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            39.998\n                                        ],\n                                        [\n                                            81.86,\n                                            50.173\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ind\": 2,\n                            \"ty\": \"sh\",\n                            \"ix\": 3,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            5.619\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            5.619\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            81.86,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            29.434\n                                        ],\n                                        [\n                                            61.51,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            9.084\n                                        ],\n                                        [\n                                            81.86,\n                                            19.259\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 2\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"ring 2\",\n                    \"np\": 3,\n                    \"cix\": 2,\n                    \"ix\": 6,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            6.327\n                                        ],\n                                        [\n                                            -6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -6.327\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            6.327\n                                        ],\n                                        [\n                                            -6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -6.327\n                                        ],\n                                        [\n                                            6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            83.14,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            61.629\n                                        ],\n                                        [\n                                            60.229,\n                                            50.173\n                                        ],\n                                        [\n                                            71.685,\n                                            38.718\n                                        ],\n                                        [\n                                            83.14,\n                                            50.173\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 7\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 7,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            4.852\n                                        ],\n                                        [\n                                            -4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -4.852\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            4.852\n                                        ],\n                                        [\n                                            -4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -4.852\n                                        ],\n                                        [\n                                            4.852,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            80.469,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            28.043\n                                        ],\n                                        [\n                                            62.901,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            10.475\n                                        ],\n                                        [\n                                            80.469,\n                                            19.259\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.286274522543,\n                                    0.286274522543,\n                                    0.286274522543,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 8\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 8,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            5.619\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            5.619\n                                        ],\n                                        [\n                                            -5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -5.619\n                                        ],\n                                        [\n                                            5.619,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            81.86,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            29.434\n                                        ],\n                                        [\n                                            61.51,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            9.084\n                                        ],\n                                        [\n                                            81.86,\n                                            19.259\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    1,\n                                    1,\n                                    1,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"ring\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 9,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            6.327\n                                        ],\n                                        [\n                                            -6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -6.327\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            6.327\n                                        ],\n                                        [\n                                            -6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -6.327\n                                        ],\n                                        [\n                                            6.327,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            83.14,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            30.715\n                                        ],\n                                        [\n                                            60.229,\n                                            19.259\n                                        ],\n                                        [\n                                            71.685,\n                                            7.804\n                                        ],\n                                        [\n                                            83.14,\n                                            19.259\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 10\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 10,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            7.703,\n                                            24.927\n                                        ],\n                                        [\n                                            3.516,\n                                            3.514\n                                        ],\n                                        [\n                                            8.515,\n                                            2.094\n                                        ],\n                                        [\n                                            9.641,\n                                            -0.008\n                                        ],\n                                        [\n                                            8.361,\n                                            -2.091\n                                        ],\n                                        [\n                                            4.204,\n                                            -4.202\n                                        ],\n                                        [\n                                            -16.772,\n                                            -16.774\n                                        ],\n                                        [\n                                            -8.498,\n                                            -2.1\n                                        ],\n                                        [\n                                            -9.651,\n                                            0.003\n                                        ],\n                                        [\n                                            -8.342,\n                                            2.079\n                                        ],\n                                        [\n                                            -4.215,\n                                            4.215\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            13.255,\n                                            -13.255\n                                        ],\n                                        [\n                                            -2.039,\n                                            -6.611\n                                        ],\n                                        [\n                                            -4.247,\n                                            -4.247\n                                        ],\n                                        [\n                                            -8.294,\n                                            -2.046\n                                        ],\n                                        [\n                                            -9.738,\n                                            -0.002\n                                        ],\n                                        [\n                                            -8.393,\n                                            2.092\n                                        ],\n                                        [\n                                            -16.774,\n                                            16.775\n                                        ],\n                                        [\n                                            4.238,\n                                            4.238\n                                        ],\n                                        [\n                                            8.308,\n                                            2.05\n                                        ],\n                                        [\n                                            9.712,\n                                            0.003\n                                        ],\n                                        [\n                                            8.429,\n                                            -2.097\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            37.551,\n                                            92.832\n                                        ],\n                                        [\n                                            45.883,\n                                            13.547\n                                        ],\n                                        [\n                                            37.549,\n                                            -2.046\n                                        ],\n                                        [\n                                            17.682,\n                                            -11.562\n                                        ],\n                                        [\n                                            -9.89,\n                                            -14.624\n                                        ],\n                                        [\n                                            -37.729,\n                                            -11.494\n                                        ],\n                                        [\n                                            -57.329,\n                                            -2.048\n                                        ],\n                                        [\n                                            -57.329,\n                                            92.832\n                                        ],\n                                        [\n                                            -37.506,\n                                            102.337\n                                        ],\n                                        [\n                                            -9.886,\n                                            105.408\n                                        ],\n                                        [\n                                            17.879,\n                                            102.298\n                                        ],\n                                        [\n                                            37.551,\n                                            92.832\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.153890931373,\n                                    0.148028085746,\n                                    0.148028085746,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"screen\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 11,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.709,\n                                            3.709\n                                        ],\n                                        [\n                                            8.987,\n                                            2.21\n                                        ],\n                                        [\n                                            10.172,\n                                            -0.008\n                                        ],\n                                        [\n                                            8.819,\n                                            -2.206\n                                        ],\n                                        [\n                                            4.435,\n                                            -4.435\n                                        ],\n                                        [\n                                            -17.697,\n                                            -17.695\n                                        ],\n                                        [\n                                            -8.966,\n                                            -2.216\n                                        ],\n                                        [\n                                            -10.183,\n                                            0.003\n                                        ],\n                                        [\n                                            -8.8,\n                                            2.194\n                                        ],\n                                        [\n                                            -4.445,\n                                            4.448\n                                        ],\n                                        [\n                                            8.128,\n                                            26.299\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -2.152,\n                                            -6.973\n                                        ],\n                                        [\n                                            -4.48,\n                                            -4.482\n                                        ],\n                                        [\n                                            -8.747,\n                                            -2.157\n                                        ],\n                                        [\n                                            -10.273,\n                                            -0.002\n                                        ],\n                                        [\n                                            -8.856,\n                                            2.206\n                                        ],\n                                        [\n                                            -17.697,\n                                            17.697\n                                        ],\n                                        [\n                                            4.469,\n                                            4.471\n                                        ],\n                                        [\n                                            8.766,\n                                            2.163\n                                        ],\n                                        [\n                                            10.246,\n                                            0.003\n                                        ],\n                                        [\n                                            8.892,\n                                            -2.213\n                                        ],\n                                        [\n                                            13.985,\n                                            -13.983\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            48.953,\n                                            11.794\n                                        ],\n                                        [\n                                            40.161,\n                                            -4.656\n                                        ],\n                                        [\n                                            19.198,\n                                            -14.697\n                                        ],\n                                        [\n                                            -9.89,\n                                            -17.927\n                                        ],\n                                        [\n                                            -39.261,\n                                            -14.624\n                                        ],\n                                        [\n                                            -59.939,\n                                            -4.658\n                                        ],\n                                        [\n                                            -59.939,\n                                            95.442\n                                        ],\n                                        [\n                                            -39.026,\n                                            105.471\n                                        ],\n                                        [\n                                            -9.887,\n                                            108.711\n                                        ],\n                                        [\n                                            19.407,\n                                            105.429\n                                        ],\n                                        [\n                                            40.161,\n                                            95.444\n                                        ],\n                                        [\n                                            48.953,\n                                            11.794\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.37331495098,\n                                    0.37331495098,\n                                    0.37331495098,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 12\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 12,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            8.869,\n                                            29.673\n                                        ],\n                                        [\n                                            4.048,\n                                            4.185\n                                        ],\n                                        [\n                                            12.936,\n                                            3.303\n                                        ],\n                                        [\n                                            27.307,\n                                            -9.402\n                                        ],\n                                        [\n                                            6.201,\n                                            -6.41\n                                        ],\n                                        [\n                                            -19.311,\n                                            -19.966\n                                        ],\n                                        [\n                                            -9.321,\n                                            -3.178\n                                        ],\n                                        [\n                                            -30.476,\n                                            10.498\n                                        ],\n                                        [\n                                            -5.735,\n                                            3.831\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            15.26,\n                                            -15.778\n                                        ],\n                                        [\n                                            -2.348,\n                                            -7.869\n                                        ],\n                                        [\n                                            -4.281,\n                                            -4.426\n                                        ],\n                                        [\n                                            -13.562,\n                                            -3.466\n                                        ],\n                                        [\n                                            -9.204,\n                                            3.17\n                                        ],\n                                        [\n                                            -19.311,\n                                            19.966\n                                        ],\n                                        [\n                                            6.259,\n                                            6.471\n                                        ],\n                                        [\n                                            7.012,\n                                            2.391\n                                        ],\n                                        [\n                                            9.347,\n                                            -3.22\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            80.546,\n                                            101.767\n                                        ],\n                                        [\n                                            90.139,\n                                            7.387\n                                        ],\n                                        [\n                                            80.544,\n                                            -11.175\n                                        ],\n                                        [\n                                            57.668,\n                                            -22.502\n                                        ],\n                                        [\n                                            -48.545,\n                                            -22.421\n                                        ],\n                                        [\n                                            -71.112,\n                                            -11.175\n                                        ],\n                                        [\n                                            -71.11,\n                                            101.765\n                                        ],\n                                        [\n                                            -48.288,\n                                            113.079\n                                        ],\n                                        [\n                                            57.898,\n                                            113.034\n                                        ],\n                                        [\n                                            80.546,\n                                            101.767\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.286274522543,\n                                    0.286274522543,\n                                    0.286274522543,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.141,\n                                    0.33\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 13\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 13,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            9.238,\n                                            30.907\n                                        ],\n                                        [\n                                            4.215,\n                                            4.358\n                                        ],\n                                        [\n                                            13.472,\n                                            3.442\n                                        ],\n                                        [\n                                            28.44,\n                                            -9.792\n                                        ],\n                                        [\n                                            6.457,\n                                            -6.677\n                                        ],\n                                        [\n                                            -20.112,\n                                            -20.797\n                                        ],\n                                        [\n                                            -9.709,\n                                            -3.311\n                                        ],\n                                        [\n                                            -31.743,\n                                            10.936\n                                        ],\n                                        [\n                                            -5.975,\n                                            3.988\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            15.896,\n                                            -16.434\n                                        ],\n                                        [\n                                            -2.446,\n                                            -8.195\n                                        ],\n                                        [\n                                            -4.458,\n                                            -4.611\n                                        ],\n                                        [\n                                            -14.13,\n                                            -3.609\n                                        ],\n                                        [\n                                            -9.588,\n                                            3.302\n                                        ],\n                                        [\n                                            -20.114,\n                                            20.797\n                                        ],\n                                        [\n                                            6.52,\n                                            6.74\n                                        ],\n                                        [\n                                            7.304,\n                                            2.491\n                                        ],\n                                        [\n                                            9.738,\n                                            -3.355\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            82.983,\n                                            104.111\n                                        ],\n                                        [\n                                            92.975,\n                                            5.806\n                                        ],\n                                        [\n                                            82.982,\n                                            -13.526\n                                        ],\n                                        [\n                                            59.156,\n                                            -25.326\n                                        ],\n                                        [\n                                            -51.475,\n                                            -25.24\n                                        ],\n                                        [\n                                            -74.98,\n                                            -13.528\n                                        ],\n                                        [\n                                            -74.98,\n                                            104.11\n                                        ],\n                                        [\n                                            -51.209,\n                                            115.895\n                                        ],\n                                        [\n                                            59.392,\n                                            115.847\n                                        ],\n                                        [\n                                            82.983,\n                                            104.111\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 14\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 14,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                },\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            14.329\n                                        ],\n                                        [\n                                            -14.331,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -14.331\n                                        ],\n                                        [\n                                            14.331,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -14.331,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            -14.331\n                                        ],\n                                        [\n                                            14.331,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            14.329\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            2.214,\n                                            6.783\n                                        ],\n                                        [\n                                            2.214,\n                                            6.783\n                                        ],\n                                        [\n                                            -23.733,\n                                            -19.164\n                                        ],\n                                        [\n                                            2.214,\n                                            -45.112\n                                        ],\n                                        [\n                                            28.163,\n                                            -19.164\n                                        ],\n                                        [\n                                            2.214,\n                                            6.783\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 19\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 15,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 12,\n            \"ty\": 4,\n            \"nm\": \"left shoe\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    1\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_1_0\"\n                            ],\n                            \"t\": 15,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                5\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0_1_0p333_0\"\n                            ],\n                            \"t\": 20,\n                            \"s\": [\n                                5\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 25\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        106.319,\n                        266.292,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -41.681,\n                        118.292,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -2.118,\n                                            3.794\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.174,\n                                            4.183\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            -40.571,\n                                            132.473\n                                        ],\n                                        [\n                                            -25.49,\n                                            105.443\n                                        ],\n                                        [\n                                            -57.873,\n                                            101.613\n                                        ],\n                                        [\n                                            -49.513,\n                                            131.417\n                                        ],\n                                        [\n                                            -40.571,\n                                            132.473\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 13,\n            \"ty\": 4,\n            \"nm\": \"right shoe\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    1\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_1_0\"\n                            ],\n                            \"t\": 15,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                -15\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 20,\n                            \"s\": [\n                                -15\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 25\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        201.432,\n                        266.292,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        53.432,\n                        118.292,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            2.116,\n                                            3.794\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -1.176,\n                                            4.183\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            52.323,\n                                            132.473\n                                        ],\n                                        [\n                                            37.242,\n                                            105.443\n                                        ],\n                                        [\n                                            69.623,\n                                            101.613\n                                        ],\n                                        [\n                                            61.265,\n                                            131.417\n                                        ],\n                                        [\n                                            52.323,\n                                            132.473\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 14,\n            \"ty\": 4,\n            \"nm\": \"left anteena\",\n            \"parent\": 11,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 15,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                -8\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 17.143,\n                            \"s\": [\n                                -8\n                            ],\n                            \"e\": [\n                                8\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 19.286,\n                            \"s\": [\n                                8\n                            ],\n                            \"e\": [\n                                -4\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 21.429,\n                            \"s\": [\n                                -4\n                            ],\n                            \"e\": [\n                                4\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 23.571,\n                            \"s\": [\n                                4\n                            ],\n                            \"e\": [\n                                -2\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 25.714,\n                            \"s\": [\n                                -2\n                            ],\n                            \"e\": [\n                                2\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 27.857,\n                            \"s\": [\n                                2\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 30\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0.162,\n                                            2.252\n                                        ],\n                                        [\n                                            3.792,\n                                            -0.273\n                                        ],\n                                        [\n                                            -0.273,\n                                            -3.792\n                                        ],\n                                        [\n                                            -3.193,\n                                            -0.398\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            1.584,\n                                            -1.373\n                                        ],\n                                        [\n                                            -0.275,\n                                            -3.792\n                                        ],\n                                        [\n                                            -3.792,\n                                            0.273\n                                        ],\n                                        [\n                                            0.242,\n                                            3.332\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            15.619,\n                                            -7.348\n                                        ],\n                                        [\n                                            -30.297,\n                                            -78.134\n                                        ],\n                                        [\n                                            -27.93,\n                                            -83.83\n                                        ],\n                                        [\n                                            -35.293,\n                                            -90.2\n                                        ],\n                                        [\n                                            -41.663,\n                                            -82.837\n                                        ],\n                                        [\n                                            -35.654,\n                                            -76.504\n                                        ],\n                                        [\n                                            9.491,\n                                            -6.906\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 15,\n            \"ty\": 4,\n            \"nm\": \"right anteena\",\n            \"parent\": 11,\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 1,\n                    \"k\": [\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 15,\n                            \"s\": [\n                                0\n                            ],\n                            \"e\": [\n                                8\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 17.143,\n                            \"s\": [\n                                8\n                            ],\n                            \"e\": [\n                                -8\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 19.286,\n                            \"s\": [\n                                -8\n                            ],\n                            \"e\": [\n                                -4\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 21.429,\n                            \"s\": [\n                                -4\n                            ],\n                            \"e\": [\n                                4\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 23.571,\n                            \"s\": [\n                                4\n                            ],\n                            \"e\": [\n                                -2\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 25.714,\n                            \"s\": [\n                                -2\n                            ],\n                            \"e\": [\n                                2\n                            ]\n                        },\n                        {\n                            \"i\": {\n                                \"x\": [\n                                    0.667\n                                ],\n                                \"y\": [\n                                    1\n                                ]\n                            },\n                            \"o\": {\n                                \"x\": [\n                                    0.333\n                                ],\n                                \"y\": [\n                                    0\n                                ]\n                            },\n                            \"n\": [\n                                \"0p667_1_0p333_0\"\n                            ],\n                            \"t\": 27.857,\n                            \"s\": [\n                                2\n                            ],\n                            \"e\": [\n                                0\n                            ]\n                        },\n                        {\n                            \"t\": 30\n                        }\n                    ],\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -19.243,\n                        7.804,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        -19.243,\n                        7.804,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            3.721,\n                                            0.777\n                                        ],\n                                        [\n                                            0.777,\n                                            -3.721\n                                        ],\n                                        [\n                                            -0.912,\n                                            -1.454\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            -0.745,\n                                            3.577\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            -3.723,\n                                            -0.777\n                                        ],\n                                        [\n                                            -0.378,\n                                            1.813\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            3.568,\n                                            0.514\n                                        ],\n                                        [\n                                            0.777,\n                                            -3.721\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            30.836,\n                                            -73.957\n                                        ],\n                                        [\n                                            22.691,\n                                            -68.624\n                                        ],\n                                        [\n                                            23.601,\n                                            -63.564\n                                        ],\n                                        [\n                                            -19.243,\n                                            6.549\n                                        ],\n                                        [\n                                            -13.23,\n                                            7.804\n                                        ],\n                                        [\n                                            28.455,\n                                            -60.411\n                                        ],\n                                        [\n                                            36.167,\n                                            -65.811\n                                        ]\n                                    ],\n                                    \"c\": true\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0.239215686917,\n                                    0.239215686917,\n                                    0.239215686917,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 450,\n            \"st\": 0,\n            \"bm\": 0\n        },\n        {\n            \"ddd\": 0,\n            \"ind\": 16,\n            \"ty\": 4,\n            \"nm\": \"Layer 7\",\n            \"sr\": 1,\n            \"ks\": {\n                \"o\": {\n                    \"a\": 0,\n                    \"k\": 100,\n                    \"ix\": 11\n                },\n                \"r\": {\n                    \"a\": 0,\n                    \"k\": 0,\n                    \"ix\": 10\n                },\n                \"p\": {\n                    \"a\": 0,\n                    \"k\": [\n                        148,\n                        148,\n                        0\n                    ],\n                    \"ix\": 2\n                },\n                \"a\": {\n                    \"a\": 0,\n                    \"k\": [\n                        0,\n                        0,\n                        0\n                    ],\n                    \"ix\": 1\n                },\n                \"s\": {\n                    \"a\": 0,\n                    \"k\": [\n                        100,\n                        100,\n                        100\n                    ],\n                    \"ix\": 6\n                }\n            },\n            \"ao\": 0,\n            \"shapes\": [\n                {\n                    \"ty\": \"gr\",\n                    \"it\": [\n                        {\n                            \"ind\": 0,\n                            \"ty\": \"sh\",\n                            \"ix\": 1,\n                            \"ks\": {\n                                \"a\": 0,\n                                \"k\": {\n                                    \"i\": [\n                                        [\n                                            0,\n                                            0\n                                        ],\n                                        [\n                                            18.24,\n                                            59.015\n                                        ],\n                                        [\n                                            8.322,\n                                            8.322\n                                        ],\n                                        [\n                                            20.161,\n                                            4.959\n                                        ],\n                                        [\n                                            22.824,\n                                            -0.019\n                                        ],\n                                        [\n                                            19.787,\n                                            -4.947\n                                        ],\n                                        [\n                                            9.952,\n                                            -9.952\n                                        ],\n                                        [\n                                            -39.706,\n                                            -39.706\n                                        ],\n                                        [\n                                            -20.117,\n                                            -4.976\n                                        ],\n                                        [\n                                            -22.843,\n                                            0.004\n                                        ],\n                                        [\n                                            -19.746,\n                                            4.922\n                                        ],\n                                        [\n                                            -9.977,\n                                            9.977\n                                        ]\n                                    ],\n                                    \"o\": [\n                                        [\n                                            31.38,\n                                            -31.38\n                                        ],\n                                        [\n                                            -4.824,\n                                            -15.641\n                                        ],\n                                        [\n                                            -10.054,\n                                            -10.054\n                                        ],\n                                        [\n                                            -19.635,\n                                            -4.837\n                                        ],\n                                        [\n                                            -23.052,\n                                            0.001\n                                        ],\n                                        [\n                                            -19.875,\n                                            4.952\n                                        ],\n                                        [\n                                            -39.708,\n                                            39.708\n                                        ],\n                                        [\n                                            10.033,\n                                            10.033\n                                        ],\n                                        [\n                                            19.67,\n                                            4.855\n                                        ],\n                                        [\n                                            22.992,\n                                            0.007\n                                        ],\n                                        [\n                                            19.953,\n                                            -4.961\n                                        ],\n                                        [\n                                            0,\n                                            0\n                                        ]\n                                    ],\n                                    \"v\": [\n                                        [\n                                            112.305,\n                                            112.306\n                                        ],\n                                        [\n                                            132.028,\n                                            -75.39\n                                        ],\n                                        [\n                                            112.3,\n                                            -112.299\n                                        ],\n                                        [\n                                            65.267,\n                                            -134.827\n                                        ],\n                                        [\n                                            0,\n                                            -142.079\n                                        ],\n                                        [\n                                            -65.902,\n                                            -134.666\n                                        ],\n                                        [\n                                            -112.301,\n                                            -112.299\n                                        ],\n                                        [\n                                            -112.301,\n                                            112.302\n                                        ],\n                                        [\n                                            -65.378,\n                                            134.806\n                                        ],\n                                        [\n                                            0.002,\n                                            142.079\n                                        ],\n                                        [\n                                            65.737,\n                                            134.711\n                                        ],\n                                        [\n                                            112.305,\n                                            112.306\n                                        ]\n                                    ],\n                                    \"c\": false\n                                },\n                                \"ix\": 2\n                            },\n                            \"nm\": \"Path 1\",\n                            \"mn\": \"ADBE Vector Shape - Group\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"fl\",\n                            \"c\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0,\n                                    0,\n                                    1\n                                ],\n                                \"ix\": 4\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 5\n                            },\n                            \"r\": 1,\n                            \"nm\": \"Fill 1\",\n                            \"mn\": \"ADBE Vector Graphic - Fill\",\n                            \"hd\": false\n                        },\n                        {\n                            \"ty\": \"tr\",\n                            \"p\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 2\n                            },\n                            \"a\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    0,\n                                    0\n                                ],\n                                \"ix\": 1\n                            },\n                            \"s\": {\n                                \"a\": 0,\n                                \"k\": [\n                                    100,\n                                    100\n                                ],\n                                \"ix\": 3\n                            },\n                            \"r\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 6\n                            },\n                            \"o\": {\n                                \"a\": 0,\n                                \"k\": 100,\n                                \"ix\": 7\n                            },\n                            \"sk\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 4\n                            },\n                            \"sa\": {\n                                \"a\": 0,\n                                \"k\": 0,\n                                \"ix\": 5\n                            },\n                            \"nm\": \"Transform\"\n                        }\n                    ],\n                    \"nm\": \"Group 1\",\n                    \"np\": 2,\n                    \"cix\": 2,\n                    \"ix\": 1,\n                    \"mn\": \"ADBE Vector Group\",\n                    \"hd\": false\n                }\n            ],\n            \"ip\": 0,\n            \"op\": 0,\n            \"st\": 0,\n            \"bm\": 0\n        }\n    ],\n    \"markers\": []\n}\n"
  },
  {
    "path": "feature/base/src/main/res/values/color_palete.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"outer_space\">#2B2E30</color>\n    <color name=\"shark\">#1A1E21</color>\n    <color name=\"mine_shaft\">#3D3D3D</color>\n    <color name=\"red_orange\">#FB3430</color>\n    <color name=\"white\">#FFFFFF</color>\n</resources>\n"
  },
  {
    "path": "feature/base/src/main/res/values/ids.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <item name=\"tag_navigation_destination_id\" type=\"id\"/>\n</resources>\n"
  },
  {
    "path": "feature/base/src/main/res/values/strings.xml",
    "content": "<resources>\n    <string name=\"common_under_construction\">Under construction</string>\n    <string name=\"common_data_not_found\">Data not found</string>\n</resources>\n"
  },
  {
    "path": "feature/base/src/main/res/values/styles.xml",
    "content": "<resources>\n    <style name=\"Theme.Showcase\" parent=\"Theme.Material3.DynamicColors.DayNight\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style>\n</resources>\n"
  },
  {
    "path": "feature/favourite/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.feature\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.feature.favourite\"\n}\n"
  },
  {
    "path": "feature/favourite/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile\n"
  },
  {
    "path": "feature/favourite/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
  },
  {
    "path": "feature/favourite/src/main/kotlin/com/igorwojda/showcase/feature/favourite/FavouriteKoinModule.kt",
    "content": "package com.igorwojda.showcase.feature.favourite\n\nimport com.igorwojda.showcase.feature.favourite.data.dataModule\nimport com.igorwojda.showcase.feature.favourite.domain.domainModule\nimport com.igorwojda.showcase.feature.favourite.presentation.presentationModule\n\nval featureFavouriteModules =\n    listOf(\n        presentationModule,\n        domainModule,\n        dataModule,\n    )\n"
  },
  {
    "path": "feature/favourite/src/main/kotlin/com/igorwojda/showcase/feature/favourite/data/DataModule.kt",
    "content": "package com.igorwojda.showcase.feature.favourite.data\n\nimport org.koin.dsl.module\n\ninternal val dataModule = module { }\n"
  },
  {
    "path": "feature/favourite/src/main/kotlin/com/igorwojda/showcase/feature/favourite/domain/DomainModule.kt",
    "content": "package com.igorwojda.showcase.feature.favourite.domain\n\nimport org.koin.dsl.module\n\ninternal val domainModule = module { }\n"
  },
  {
    "path": "feature/favourite/src/main/kotlin/com/igorwojda/showcase/feature/favourite/presentation/PresentationModule.kt",
    "content": "package com.igorwojda.showcase.feature.favourite.presentation\n\nimport org.koin.dsl.module\n\ninternal val presentationModule = module { }\n"
  },
  {
    "path": "feature/favourite/src/main/kotlin/com/igorwojda/showcase/feature/favourite/presentation/screen/favourite/FavouriteScreen.kt",
    "content": "package com.igorwojda.showcase.feature.favourite.presentation.screen.favourite\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui.Alignment\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.tooling.preview.Preview\nimport com.igorwojda.showcase.feature.base.presentation.compose.composable.UnderConstructionAnim\n\n@Composable\nfun FavouriteScreen(modifier: Modifier = Modifier) {\n    Box(\n        modifier = modifier.fillMaxSize(),\n        contentAlignment = Alignment.Center,\n    ) {\n        UnderConstructionAnim()\n    }\n}\n\n@Preview\n@Composable\nprivate fun FavouriteScreenPreview() {\n    FavouriteScreen()\n}\n"
  },
  {
    "path": "feature/settings/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.feature\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.feature.settings\"\n}\n\ndependencies {\n    implementation(libs.aboutlibraries.compose)\n}\n"
  },
  {
    "path": "feature/settings/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile\n"
  },
  {
    "path": "feature/settings/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/SettingsKoinModule.kt",
    "content": "package com.igorwojda.showcase.feature.settings\n\nimport com.igorwojda.showcase.feature.settings.data.dataModule\nimport com.igorwojda.showcase.feature.settings.domain.domainModule\nimport com.igorwojda.showcase.feature.settings.presentation.presentationModule\n\nval featureSettingsModules =\n    listOf(\n        presentationModule,\n        domainModule,\n        dataModule,\n    )\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/data/DataModule.kt",
    "content": "package com.igorwojda.showcase.feature.settings.data\n\nimport org.koin.dsl.module\n\ninternal val dataModule = module { }\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/domain/DomainModule.kt",
    "content": "package com.igorwojda.showcase.feature.settings.domain\n\nimport org.koin.dsl.module\n\ninternal val domainModule = module { }\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/PresentationModule.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation\n\nimport com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries.AboutLibrariesViewModel\nimport com.igorwojda.showcase.feature.settings.presentation.screen.settings.SettingsViewModel\nimport org.koin.core.module.dsl.viewModelOf\nimport org.koin.dsl.module\n\ninternal val presentationModule =\n    module {\n        viewModelOf(::SettingsViewModel)\n        viewModelOf(::AboutLibrariesViewModel)\n    }\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/aboutlibraries/AboutLibrariesAction.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries\n\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseAction\n\ninternal sealed class AboutLibrariesAction : BaseAction<AboutLibrariesUiState>\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/aboutlibraries/AboutLibrariesScreen.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries\n\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.material.icons.automirrored.filled.ArrowBack\nimport androidx.compose.material3.ExperimentalMaterial3Api\nimport androidx.compose.material3.Icon\nimport androidx.compose.material3.IconButton\nimport androidx.compose.material3.Scaffold\nimport androidx.compose.material3.Text\nimport androidx.compose.material3.TopAppBar\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.getValue\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport androidx.lifecycle.compose.collectAsStateWithLifecycle\nimport com.igorwojda.showcase.feature.settings.R\nimport com.mikepenz.aboutlibraries.ui.compose.m3.LibrariesContainer\nimport org.koin.androidx.compose.koinViewModel\n\n@OptIn(ExperimentalMaterial3Api::class)\n@Composable\nfun AboutLibrariesScreen(\n    onBackClick: () -> Unit,\n    modifier: Modifier = Modifier,\n) {\n    val viewModel: AboutLibrariesViewModel = koinViewModel()\n    val uiState by viewModel.uiStateFlow.collectAsStateWithLifecycle()\n\n    when (uiState) {\n        is AboutLibrariesUiState.Content -> {\n            AboutLibrariesContent(\n                onBackClick = onBackClick,\n                modifier = modifier,\n            )\n        }\n    }\n}\n\n@OptIn(ExperimentalMaterial3Api::class)\n@Composable\nprivate fun AboutLibrariesContent(\n    onBackClick: () -> Unit,\n    modifier: Modifier = Modifier,\n) {\n    Scaffold(\n        modifier = modifier,\n        topBar = {\n            TopAppBar(\n                title = { Text(stringResource(R.string.about_libraries_screen_title)) },\n                navigationIcon = {\n                    IconButton(onClick = onBackClick) {\n                        Icon(\n                            imageVector = Icons.AutoMirrored.Filled.ArrowBack,\n                            contentDescription = stringResource(R.string.about_libraries_screen_back),\n                        )\n                    }\n                },\n            )\n        },\n    ) { paddingValues ->\n        LibrariesContainer(\n            modifier =\n                Modifier\n                    .fillMaxSize()\n                    .padding(paddingValues),\n        )\n    }\n}\n\n@Preview\n@Composable\nprivate fun AboutLibrariesScreenPreview() {\n    AboutLibrariesContent(\n        onBackClick = { },\n    )\n}\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/aboutlibraries/AboutLibrariesUiState.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries\n\nimport androidx.compose.runtime.Immutable\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseState\n\n@Immutable\ninternal sealed interface AboutLibrariesUiState : BaseState {\n    @Immutable\n    data object Content : AboutLibrariesUiState\n}\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/aboutlibraries/AboutLibrariesViewModel.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries\n\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseViewModel\n\ninternal class AboutLibrariesViewModel : BaseViewModel<AboutLibrariesUiState, AboutLibrariesAction>(AboutLibrariesUiState.Content)\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/settings/SettingsAction.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.settings\n\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseAction\n\ninternal sealed class SettingsAction : BaseAction<SettingsUiState>\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/settings/SettingsScreen.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.settings\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation.layout.fillMaxSize\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.foundation.rememberScrollState\nimport androidx.compose.foundation.verticalScroll\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.material.icons.automirrored.filled.ArrowForward\nimport androidx.compose.material.icons.filled.Info\nimport androidx.compose.material3.Card\nimport androidx.compose.material3.CardDefaults\nimport androidx.compose.material3.ExperimentalMaterial3Api\nimport androidx.compose.material3.Icon\nimport androidx.compose.material3.ListItem\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.getValue\nimport androidx.compose.ui.Modifier\nimport androidx.compose.ui.res.stringResource\nimport androidx.compose.ui.tooling.preview.Preview\nimport androidx.compose.ui.unit.dp\nimport androidx.lifecycle.compose.collectAsStateWithLifecycle\nimport com.igorwojda.showcase.feature.settings.R\nimport org.koin.androidx.compose.koinViewModel\n\n@OptIn(ExperimentalMaterial3Api::class)\n@Composable\nfun SettingsScreen(\n    onNavigateToAboutLibraries: () -> Unit,\n    modifier: Modifier = Modifier,\n) {\n    val viewModel: SettingsViewModel = koinViewModel()\n    val uiState by viewModel.uiStateFlow.collectAsStateWithLifecycle()\n\n    Column(\n        modifier =\n            modifier\n                .fillMaxSize()\n                .verticalScroll(rememberScrollState()),\n    ) {\n        when (uiState) {\n            SettingsUiState.Content -> SettingsContent(onNavigateToAboutLibraries)\n        }\n    }\n}\n\n@Composable\nprivate fun SettingsContent(onNavigateToAboutLibraries: () -> Unit) {\n    Column(\n        modifier = Modifier.padding(vertical = 8.dp),\n    ) {\n        Card(\n            modifier =\n                Modifier\n                    .fillMaxWidth(),\n            colors =\n                CardDefaults.cardColors(\n                    containerColor = MaterialTheme.colorScheme.surface,\n                ),\n        ) {\n            SettingsItem(\n                title = stringResource(R.string.settings_screen_open_source_licenses),\n                subtitle = stringResource(R.string.settings_screen_view_licenses_description),\n                icon = {\n                    Icon(\n                        imageVector = Icons.Default.Info,\n                        contentDescription = stringResource(R.string.settings_screen_licenses),\n                        tint = MaterialTheme.colorScheme.primary,\n                    )\n                },\n                onClick = onNavigateToAboutLibraries,\n            )\n        }\n    }\n}\n\n@Composable\nprivate fun SettingsItem(\n    title: String,\n    subtitle: String? = null,\n    icon: (@Composable () -> Unit)? = null,\n    enabled: Boolean = true,\n    onClick: () -> Unit,\n) {\n    ListItem(\n        modifier =\n            Modifier.clickable(\n                enabled = enabled,\n                onClick = onClick,\n            ),\n        headlineContent = {\n            Text(\n                text = title,\n                style = MaterialTheme.typography.bodyLarge,\n            )\n        },\n        supportingContent =\n            subtitle?.let {\n                {\n                    Text(\n                        text = it,\n                        style = MaterialTheme.typography.bodyMedium,\n                    )\n                }\n            },\n        leadingContent = icon,\n        trailingContent =\n            if (enabled) {\n                {\n                    Icon(\n                        imageVector = Icons.AutoMirrored.Filled.ArrowForward,\n                        contentDescription = stringResource(R.string.settings_screen_navigate),\n                        tint = MaterialTheme.colorScheme.onSurfaceVariant,\n                    )\n                }\n            } else {\n                null\n            },\n    )\n}\n\n@Preview\n@Composable\nprivate fun SettingsScreenPreview() {\n    SettingsContent(\n        onNavigateToAboutLibraries = { },\n    )\n}\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/settings/SettingsUiState.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.settings\n\nimport androidx.compose.runtime.Immutable\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseState\n\n@Immutable\ninternal sealed interface SettingsUiState : BaseState {\n    @Immutable\n    data object Content : SettingsUiState\n}\n"
  },
  {
    "path": "feature/settings/src/main/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/settings/SettingsViewModel.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.settings\n\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseViewModel\n\ninternal class SettingsViewModel : BaseViewModel<SettingsUiState, SettingsAction>(SettingsUiState.Content)\n"
  },
  {
    "path": "feature/settings/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"settings_screen_title\">Settings</string>\n    <string name=\"settings_screen_about\">About</string>\n    <string name=\"settings_screen_open_source_licenses\">Open Source Licenses</string>\n    <string name=\"settings_screen_view_licenses_description\">View licenses of third-party libraries</string>\n    <string name=\"settings_screen_licenses\">Licenses</string>\n    <string name=\"settings_screen_navigate\">Navigate</string>\n\n    <string name=\"about_libraries_screen_title\">Open Source Licenses</string>\n    <string name=\"about_libraries_screen_back\">Back</string>\n</resources>\n"
  },
  {
    "path": "feature/settings/src/test/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/aboutlibraries/AboutLibrariesViewModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.aboutlibraries\n\nimport com.igorwojda.showcase.library.testutils.CoroutinesTestDispatcherExtension\nimport com.igorwojda.showcase.library.testutils.InstantTaskExecutorExtension\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.runTest\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\nimport org.junit.jupiter.api.extension.ExtendWith\n\n@OptIn(ExperimentalCoroutinesApi::class)\n@ExtendWith(InstantTaskExecutorExtension::class, CoroutinesTestDispatcherExtension::class)\nclass AboutLibrariesViewModelTest {\n    private val sut = AboutLibrariesViewModel()\n\n    @Test\n    fun `initial state should be Content`() =\n        runTest {\n            // then\n            sut.uiStateFlow.value shouldBeEqualTo AboutLibrariesUiState.Content\n        }\n}\n"
  },
  {
    "path": "feature/settings/src/test/kotlin/com/igorwojda/showcase/feature/settings/presentation/screen/settings/SettingsViewModelTest.kt",
    "content": "package com.igorwojda.showcase.feature.settings.presentation.screen.settings\n\nimport com.igorwojda.showcase.library.testutils.CoroutinesTestDispatcherExtension\nimport com.igorwojda.showcase.library.testutils.InstantTaskExecutorExtension\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.runTest\nimport org.amshove.kluent.shouldBeEqualTo\nimport org.junit.jupiter.api.Test\nimport org.junit.jupiter.api.extension.ExtendWith\n\n@OptIn(ExperimentalCoroutinesApi::class)\n@ExtendWith(InstantTaskExecutorExtension::class, CoroutinesTestDispatcherExtension::class)\nclass SettingsViewModelTest {\n    private val sut = SettingsViewModel()\n\n    @Test\n    fun `initial state should be Content`() =\n        runTest {\n            // then\n            sut.uiStateFlow.value shouldBeEqualTo SettingsUiState.Content\n        }\n}\n"
  },
  {
    "path": "gradle/libs.versions.toml",
    "content": "[versions]\nkotlin = \"2.3.20\"\n\n# KSP depends on specific Kotlin version, so it must be upgraded together with Kotlin (disabled in Renovate)\n# https://repo.maven.apache.org/maven2/com/google/devtools/ksp/symbol-processing-gradle-plugin/\nkotlin-symbol-processing = \"2.3.6\"\n\n# Java and JVM Versions are also stored in buildSrc/src/main/kotlin/config/JavaBuildConfig.kt\njava = \"17\"\n\n# Android SDK versions are marked as unused, however these are used in the `build.gradle.kts` files\ncompile-sdk = \"36\"\nmin-sdk = \"28\"\ntarget-sdk = \"35\"\n\nnavigation = \"2.9.7\"\ntest-logger = \"4.0.0\"\ncoroutines = \"1.10.2\"\nretrofit = \"3.0.0\"\nokhttp = \"5.3.2\"\nkoin = \"4.2.0\"\ncoil = \"2.7.0\"\nlifecycle = \"2.10.0\"\nroom = \"2.8.4\"\nserialization-json = \"1.10.0\"\nkotlinx-serialization-converter = \"1.0.0\"\ntimber = \"5.0.1\"\ncompose = \"1.10.5\"\ncompose-bom = \"2025.12.01\"\nmaterial-compose = \"1.4.0\"\nmaterial = \"1.13.0\"\nmaterial-icons = \"1.7.8\"\nlottie = \"6.7.1\"\ncore-ktx = \"1.18.0\"\ncore-splashscreen = \"1.2.0\"\nspotless = \"8.1.0\"\ndetekt = \"1.23.8\"\nandroid-gradle-plugin = \"8.13.2\"\neasylauncher = \"6.4.1\"\nabout-libraries = \"13.2.1\"\n\n# ktlint-rules\nktlint-ruleset-standard = \"1.7.1\"\nnlopez-compose-rules = \"0.4.27\"\ntwitter-compose-rules = \"0.0.26\"\n\n# Test\njunit-jupiter = \"6.0.3\"\nandroid-junit5 = \"1.14.0.0\"\nkluent = \"1.73\"\ntest-runner = \"1.7.0\"\nmockk = \"1.14.9\"\nespresso = \"3.7.0\"\ncore-testing = \"2.2.0\"\nkonsist = \"0.17.3\"\n\n[plugins]\n# Search Gradle Plugins https://plugins.gradle.org/\nandroid-application = { id = \"com.android.application\", version.ref = \"android-gradle-plugin\" }\nandroid-library = { id = \"com.android.library\", version.ref = \"android-gradle-plugin\" }\nkotlin-android = { id = \"org.jetbrains.kotlin.android\", version.ref = \"kotlin\" }\nkotlin-serialization = { id = \"org.jetbrains.kotlin.plugin.serialization\", version.ref = \"kotlin\" }\nkotlin-symbol-processing = { id = \"com.google.devtools.ksp\", version.ref = \"kotlin-symbol-processing\" }\ndetekt = { id = \"io.gitlab.arturbosch.detekt\", version.ref = \"detekt\" }\nspotless = { id = \"com.diffplug.spotless\", version.ref = \"spotless\" }\njunit5-android = { id = \"de.mannodermaus.android-junit5\", version.ref = \"android-junit5\" }\ntest-logger = { id = \"com.adarshr.test-logger\", version.ref = \"test-logger\" }\ncompose = { id = \"org.jetbrains.kotlin.plugin.compose\", version.ref = \"kotlin\" }\n\n[libraries]\n# Gradle plugins for buildLogic module\nandroid-gradlePlugin = { module = \"com.android.tools.build:gradle\", version.ref = \"android-gradle-plugin\" }\nkotlin-gradlePlugin = { module = \"org.jetbrains.kotlin:kotlin-gradle-plugin\", version.ref = \"kotlin\" }\nksp-gradlePlugin = { module = \"com.google.devtools.ksp:symbol-processing-gradle-plugin\", version.ref = \"kotlin-symbol-processing\" }\nspotless-gradlePlugin = { module = \"com.diffplug.spotless:spotless-plugin-gradle\", version.ref = \"spotless\" }\ndetekt-gradlePlugin = { module = \"io.gitlab.arturbosch.detekt:detekt-gradle-plugin\", version.ref = \"detekt\" }\ntest-logger-gradlePlugin = { module = \"com.adarshr:gradle-test-logger-plugin\", version.ref = \"test-logger\" }\ncompose-gradlePlugin = { module = \"org.jetbrains.kotlin:compose-compiler-gradle-plugin\", version.ref = \"kotlin\" }\njunit5-gradlePlugin = { module = \"de.mannodermaus.gradle.plugins:android-junit5\", version.ref = \"android-junit5\" }\neasy-launcher-gradlePlugin = { module = \"com.starter.easylauncher:com.starter.easylauncher.gradle.plugin\", version.ref = \"easylauncher\" }\nabout-libraries-gradlePlugin = { module = \"com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin\", version.ref = \"about-libraries\" }\n\n# Dependencies\naboutlibraries-compose = { module = \"com.mikepenz:aboutlibraries-compose-m3\", version.ref = \"about-libraries\" }\nkotlin-reflect = { module = \"org.jetbrains.kotlin:kotlin-reflect\", version.ref = \"kotlin\" }\ncoroutines = { module = \"org.jetbrains.kotlinx:kotlinx-coroutines-android\", version.ref = \"coroutines\" }\nretrofit-core = { module = \"com.squareup.retrofit2:retrofit\", version.ref = \"retrofit\" }\nkotlinx-serialization-converter = { module = \"com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter\", version.ref = \"kotlinx-serialization-converter\" }\nserialization-json = { module = \"org.jetbrains.kotlinx:kotlinx-serialization-json\", version.ref = \"serialization-json\" }\n# Retrofit will use okhttp 4 (it has binary capability with okhttp 3)\n# See: https://square.github.io/okhttp/upgrading_to_okhttp_4/\nokhttp = { module = \"com.squareup.okhttp3:okhttp\", version.ref = \"okhttp\" }\nokhttp-interceptor = { module = \"com.squareup.okhttp3:logging-interceptor\", version.ref = \"okhttp\" }\nkoin-bom = { module = \"io.insert-koin:koin-bom\", version.ref = \"koin\" }\nkoin = { module = \"io.insert-koin:koin-android\" }\nkoin-compose = { module = \"io.insert-koin:koin-androidx-compose\"  }\nkoin-navigation = { module = \"io.insert-koin:koin-androidx-navigation\" }\ntimber = { module = \"com.jakewharton.timber:timber\", version.ref = \"timber\" }\ncompose-material = { module = \"androidx.compose.material3:material3\", version.ref = \"material-compose\" }\nmaterial-material = { module = \"com.google.android.material:material\", version.ref = \"material\" }\nmaterial-icons = { module = \"androidx.compose.material:material-icons-extended\", version.ref = \"material-icons\" }\nlottie-compose = { module = \"com.airbnb.android:lottie-compose\", version.ref = \"lottie\" }\ncoil-compose = { module = \"io.coil-kt:coil-compose\", version.ref = \"coil\" }\ncore-ktx = { module = \"androidx.core:core-ktx\", version.ref = \"core-ktx\" }\ncore-splashscreen = { module = \"androidx.core:core-splashscreen\", version.ref = \"core-splashscreen\" }\nviewmodel-ktx = { module = \"androidx.lifecycle:lifecycle-viewmodel-ktx\", version.ref = \"lifecycle\" }\ncompose-ui = { module = \"androidx.compose.ui:ui\", version.ref = \"compose\" }\ntooling-preview = { module = \"androidx.compose.ui:ui-tooling-preview\", version.ref = \"compose\" }\nroom-ktx = { module = \"androidx.room:room-ktx\", version.ref = \"room\" }\nroom-runtime = { module = \"androidx.room:room-runtime\", version.ref = \"room\" }\nroom-compiler = { module = \"androidx.room:room-compiler\", version.ref = \"room\" }\nkonsist = { module = \"com.lemonappdev:konsist\", version.ref = \"konsist\" }\n\n# Ktlint Rules\nktlint-ruleset-standard = { module = \"com.pinterest.ktlint:ktlint-ruleset-standard\", version.ref = \"ktlint-ruleset-standard\" }\nnlopez-compose-rules = { module = \"io.nlopez.compose.rules:ktlint\", version.ref = \"nlopez-compose-rules\" }\ntwitter-compose-rules = { module = \"com.twitter.compose.rules:ktlint\", version.ref = \"twitter-compose-rules\" }\n\n# Test dependencies\ntest-coroutines = { module = \"org.jetbrains.kotlinx:kotlinx-coroutines-test\", version.ref = \"coroutines\" }\nkluent = { module = \"org.amshove.kluent:kluent-android\", version.ref = \"kluent\" }\ntest-runner = { module = \"androidx.test:runner\", version.ref = \"test-runner\" }\nespresso = { module = \"androidx.test.espresso:espresso-core\", version.ref = \"espresso\" }\nmockk = { module = \"io.mockk:mockk\", version.ref = \"mockk\" }\ncore-testing = { module = \"androidx.arch.core:core-testing\", version.ref = \"core-testing\" }\njunit-jupiter-api = { module = \"org.junit.jupiter:junit-jupiter-api\", version.ref = \"junit-jupiter\" }\njunit-jupiter-engine = { module = \"org.junit.jupiter:junit-jupiter-engine\", version.ref = \"junit-jupiter\" }\njunit-platform-launcher = { module = \"org.junit.platform:junit-platform-launcher\", version = \"1.14.3\" }\nnavigation-compose = { group = \"androidx.navigation\", name = \"navigation-compose\", version.ref = \"navigation\" }\ncompose-bom = { module = \"androidx.compose:compose-bom\", version.ref = \"compose-bom\" }\ncompose-ui-tooling = { module = \"androidx.compose.ui:ui-tooling\", version.ref = \"compose\" }\ncompose-ui-test-manifest = { module = \"androidx.compose.ui:ui-test-manifest\", version.ref = \"compose\" }\n\n[bundles]\nretrofit = [\n    \"retrofit-core\",\n    \"kotlinx-serialization-converter\",\n    \"serialization-json\",\n    \"okhttp\",\n    \"okhttp-interceptor\"\n]\n\nkoin = [\"koin\", \"koin-compose\", \"koin-navigation\"]\n\ncompose = [\n    \"navigation-compose\",\n    \"compose-ui\",\n    \"tooling-preview\",\n    \"lottie-compose\",\n    \"coil-compose\"\n]\n\nroom = [\n    \"room-ktx\",\n    \"room-runtime\"\n]\n\ntest = [\n    \"test-coroutines\",\n    \"kluent\",\n    \"test-runner\",\n    \"espresso\",\n    \"mockk\",\n    \"core-testing\",\n    \"junit-jupiter-api\",\n    \"junit-jupiter-engine\",\n    \"junit-platform-launcher\",\n]\n"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-9.4.1-bin.zip\nnetworkTimeout=10000\nvalidateDistributionUrl=true\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\n"
  },
  {
    "path": "gradle.properties",
    "content": "# Project-wide Gradle settings.\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will override*\n# any settings specified in this file.\n# For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/build_environment.html\n# -------Gradle--------\n# Specifies the JVM arguments used for the daemon process.\n# The setting is particularly useful for tweaking memory settings.\norg.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8\norg.gradle.daemon=true\norg.gradle.parallel=true\norg.gradle.caching=true\norg.gradle.configuration-cache=true\n\n# -------Build parameters--------\n# Values may be overridden in CI using gradlew \"-Pname=value\" param\napiBaseUrl=\"http://ws.audioscrobbler.com/2.0/\"\n# Typically we shouldn't store token in public repository, however this is just a sample project, so\n# we can favour convenience (app can be compiled and launched after checkout) over security (each person who\n# checkouts the project must generate own api key and change app configuration before running it).\n# In real-live setup this key could be provided\\overriden by CI.\napiToken=\"70696db59158cb100370ad30a7a705c1\"\n\n# -------Kotlin--------\n# Kotlin code style for this project: \"official\" or \"obsolete\":\nkotlin.code.style=official\nkapt.use.worker.api=true\n# Enable Compile Avoidance, which skips annotation processing if only method bodies are changed in dependencies\n# To turn on Compile Avoidance we need to turn off AP discovery in compile path.\nkapt.include.compile.classpath=false\n\n# -------Android-------\nandroid.useAndroidX=true\nandroid.enableJetifier=true\nandroid.nonTransitiveRClass=true\n"
  },
  {
    "path": "gradlew",
    "content": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n# SPDX-License-Identifier: Apache-2.0\n#\n\n##############################################################################\n#\n#   Gradle start up script for POSIX generated by Gradle.\n#\n#   Important for running:\n#\n#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is\n#       noncompliant, but you have some other compliant shell such as ksh or\n#       bash, then to run this script, type that shell name before the whole\n#       command line, like:\n#\n#           ksh Gradle\n#\n#       Busybox and similar reduced shells will NOT work, because this script\n#       requires all of these POSIX shell features:\n#         * functions;\n#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,\n#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;\n#         * compound commands having a testable exit status, especially «case»;\n#         * various built-in commands including «command», «set», and «ulimit».\n#\n#   Important for patching:\n#\n#   (2) This script targets any POSIX shell, so it avoids extensions provided\n#       by Bash, Ksh, etc; in particular arrays are avoided.\n#\n#       The \"traditional\" practice of packing multiple parameters into a\n#       space-separated string is a well documented source of bugs and security\n#       problems, so this is (mostly) avoided, by progressively accumulating\n#       options in \"$@\", and eventually passing that to Java.\n#\n#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,\n#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;\n#       see the in-line comments for details.\n#\n#       There are tweaks for specific operating systems such as AIX, CygWin,\n#       Darwin, MinGW, and NonStop.\n#\n#   (3) This script is generated from the Groovy template\n#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt\n#       within the Gradle project.\n#\n#       You can find Gradle at https://github.com/gradle/gradle/.\n#\n##############################################################################\n\n# Attempt to set APP_HOME\n\n# Resolve links: $0 may be a link\napp_path=$0\n\n# Need this for daisy-chained symlinks.\nwhile\n    APP_HOME=${app_path%\"${app_path##*/}\"}  # leaves a trailing /; empty if no leading path\n    [ -h \"$app_path\" ]\ndo\n    ls=$( ls -ld \"$app_path\" )\n    link=${ls#*' -> '}\n    case $link in             #(\n      /*)   app_path=$link ;; #(\n      *)    app_path=$APP_HOME$link ;;\n    esac\ndone\n\n# This is normally unused\n# shellcheck disable=SC2034\nAPP_BASE_NAME=${0##*/}\n# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)\nAPP_HOME=$( cd -P \"${APP_HOME:-./}\" > /dev/null && printf '%s\n' \"$PWD\" ) || exit\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=maximum\n\nwarn () {\n    echo \"$*\"\n} >&2\n\ndie () {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n} >&2\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\nnonstop=false\ncase \"$( uname )\" in                #(\n  CYGWIN* )         cygwin=true  ;; #(\n  Darwin* )         darwin=true  ;; #(\n  MSYS* | MINGW* )  msys=true    ;; #(\n  NONSTOP* )        nonstop=true ;;\nesac\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=$JAVA_HOME/jre/sh/java\n    else\n        JAVACMD=$JAVA_HOME/bin/java\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=java\n    if ! command -v java >/dev/null 2>&1\n    then\n        die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nfi\n\n# Increase the maximum file descriptors if we can.\nif ! \"$cygwin\" && ! \"$darwin\" && ! \"$nonstop\" ; then\n    case $MAX_FD in #(\n      max*)\n        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        MAX_FD=$( ulimit -H -n ) ||\n            warn \"Could not query maximum file descriptor limit\"\n    esac\n    case $MAX_FD in  #(\n      '' | soft) :;; #(\n      *)\n        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        ulimit -n \"$MAX_FD\" ||\n            warn \"Could not set maximum file descriptor limit to $MAX_FD\"\n    esac\nfi\n\n# Collect all arguments for the java command, stacking in reverse order:\n#   * args from the command line\n#   * the main class name\n#   * -classpath\n#   * -D...appname settings\n#   * --module-path (only if needed)\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.\n\n# For Cygwin or MSYS, switch paths to Windows format before running java\nif \"$cygwin\" || \"$msys\" ; then\n    APP_HOME=$( cygpath --path --mixed \"$APP_HOME\" )\n    CLASSPATH=$( cygpath --path --mixed \"$CLASSPATH\" )\n\n    JAVACMD=$( cygpath --unix \"$JAVACMD\" )\n\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    for arg do\n        if\n            case $arg in                                #(\n              -*)   false ;;                            # don't mess with options #(\n              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath\n                    [ -e \"$t\" ] ;;                      #(\n              *)    false ;;\n            esac\n        then\n            arg=$( cygpath --path --ignore --mixed \"$arg\" )\n        fi\n        # Roll the args list around exactly as many times as the number of\n        # args, so each arg winds up back in the position where it started, but\n        # possibly modified.\n        #\n        # NB: a `for` loop captures its iteration list before it begins, so\n        # changing the positional parameters here affects neither the number of\n        # iterations, nor the values presented in `arg`.\n        shift                   # remove old arg\n        set -- \"$@\" \"$arg\"      # push replacement arg\n    done\nfi\n\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS='\"-Xmx64m\" \"-Xms64m\"'\n\n# Collect all arguments for the java command:\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,\n#     and any embedded shellness will be escaped.\n#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be\n#     treated as '${Hostname}' itself on the command line.\n\nset -- \\\n        \"-Dorg.gradle.appname=$APP_BASE_NAME\" \\\n        -classpath \"$CLASSPATH\" \\\n        org.gradle.wrapper.GradleWrapperMain \\\n        \"$@\"\n\n# Stop when \"xargs\" is not available.\nif ! command -v xargs >/dev/null 2>&1\nthen\n    die \"xargs is not available\"\nfi\n\n# Use \"xargs\" to parse quoted args.\n#\n# With -n1 it outputs one arg per line, with the quotes and backslashes removed.\n#\n# In Bash we could simply go:\n#\n#   readarray ARGS < <( xargs -n1 <<<\"$var\" ) &&\n#   set -- \"${ARGS[@]}\" \"$@\"\n#\n# but POSIX shell has neither arrays nor command substitution, so instead we\n# post-process each arg (as a line of input to sed) to backslash-escape any\n# character that might be a shell metacharacter, then use eval to reverse\n# that process (while maintaining the separation between arguments), and wrap\n# the whole thing up as a single \"set\" statement.\n#\n# This will of course break if any of these variables contains a newline or\n# an unmatched quote.\n#\n\neval \"set -- $(\n        printf '%s\\n' \"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\" |\n        xargs -n1 |\n        sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |\n        tr '\\n' ' '\n    )\" '\"$@\"'\n\nexec \"$JAVACMD\" \"$@\"\n"
  },
  {
    "path": "gradlew.bat",
    "content": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (the \"License\");\r\n@rem you may not use this file except in compliance with the License.\r\n@rem You may obtain a copy of the License at\r\n@rem\r\n@rem      https://www.apache.org/licenses/LICENSE-2.0\r\n@rem\r\n@rem Unless required by applicable law or agreed to in writing, software\r\n@rem distributed under the License is distributed on an \"AS IS\" BASIS,\r\n@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n@rem See the License for the specific language governing permissions and\r\n@rem limitations under the License.\r\n@rem\r\n@rem SPDX-License-Identifier: Apache-2.0\r\n@rem\r\n\r\n@if \"%DEBUG%\"==\"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\"==\"\" set DIRNAME=.\r\n@rem This is normally unused\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Resolve any \".\" and \"..\" in APP_HOME to make it shorter.\r\nfor %%i in (\"%APP_HOME%\") do set APP_HOME=%%~fi\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\"-Xmx64m\" \"-Xms64m\"\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif %ERRORLEVEL% equ 0 goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\r\n\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %*\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif %ERRORLEVEL% equ 0 goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nset EXIT_CODE=%ERRORLEVEL%\r\nif %EXIT_CODE% equ 0 set EXIT_CODE=1\r\nif not \"\"==\"%GRADLE_EXIT_CONSOLE%\" exit %EXIT_CODE%\r\nexit /b %EXIT_CODE%\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "konsist-test/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.test.library\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.konsist.test\"\n}\n\ndependencies {\n    implementation(projects.feature.base)\n\n    testImplementation(projects.library.testUtils)\n    testImplementation(libs.bundles.test)\n    testImplementation(libs.konsist)\n    testImplementation(libs.viewmodel.ktx)\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/AndroidKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport androidx.lifecycle.ViewModel\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.ext.list.withParentClassOf\nimport com.lemonappdev.konsist.api.verify.assertTrue\nimport org.junit.jupiter.api.Test\n\n// Check Android specific coding rules.\nclass AndroidKonsistTest {\n    @Test\n    fun `classes extending 'ViewModel' should have 'ViewModel' suffix`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withParentClassOf(ViewModel::class)\n            .assertTrue { it.name.endsWith(\"ViewModel\") }\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/CleanArchitectureKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.architecture.KoArchitectureCreator.assertArchitecture\nimport com.lemonappdev.konsist.api.architecture.Layer\nimport org.junit.jupiter.api.Test\n\n// Check architecture coding rules.\nclass CleanArchitectureKonsistTest {\n    @Test\n    fun `clean architecture layers have correct dependencies`() {\n        Konsist\n            .scopeFromProduction()\n            .assertArchitecture {\n                // Define layers\n                val packagePrefix = \"com.igorwojda.showcase\"\n                val domain = Layer(\"Domain\", \"$packagePrefix..domain..\")\n                val presentation = Layer(\"Presentation\", \"$packagePrefix..presentation..\")\n                val data = Layer(\"Data\", \"$packagePrefix..data..\")\n\n                // Define architecture assertions\n                domain.dependsOnNothing()\n                presentation.dependsOn(domain)\n                data.dependsOn(domain)\n            }\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/GeneralKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.ext.list.properties\nimport com.lemonappdev.konsist.api.verify.assertFalse\nimport com.lemonappdev.konsist.api.verify.assertTrue\nimport org.junit.jupiter.api.Test\n\n// Check General coding rules.\nclass GeneralKonsistTest {\n    @Test\n    fun `package name must match file path`() {\n        Konsist\n            .scopeFromProject()\n            .packages\n            .assertTrue { it.hasMatchingPath }\n    }\n\n    @Test\n    fun `no field should have 'm' prefix`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .properties()\n            .assertFalse {\n                val secondCharacterIsUppercase = it.name.getOrNull(1)?.isUpperCase() ?: false\n                it.name.startsWith('m') && secondCharacterIsUppercase\n            }\n    }\n\n    @Test\n    fun `no class should use Android util logging`() {\n        Konsist\n            .scopeFromProject()\n            .files\n            .assertFalse { it.hasImportWithName(\"android.util.Log\") }\n    }\n\n    @Test\n    fun `no empty files allowed`() {\n        Konsist\n            .scopeFromProject()\n            .files\n            .assertFalse { it.text.isEmpty() }\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/ModuleKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.verify.assertTrue\nimport org.junit.jupiter.api.Test\n\n// Check architecture coding rules.\nclass ModuleKonsistTest {\n    @Test\n    fun `every file in module reside in module specific package`() {\n        Konsist\n            .scopeFromProject()\n            .files\n            .assertTrue {\n                val modulePackageName =\n                    it.moduleName\n                        .lowercase()\n                        .replace(\"/\", \".\")\n                        .replace(\"-\", \"\")\n\n                val fullyQualifiedPackageName = \"com.igorwojda.showcase.$modulePackageName\"\n\n                it.packagee?.name?.startsWith(fullyQualifiedPackageName)\n            }\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/TestKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.ext.list.functions\nimport com.lemonappdev.konsist.api.verify.assertFalse\nimport org.junit.jupiter.api.Test\n\n// Check test coding rules.\nclass TestKonsistTest {\n    @Test\n    fun `don't use JUnit4 Test annotation`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .functions()\n            .assertFalse { it.hasAnnotationsWithAllNames(\"org.junit.Test\") } // should be only org.junit.jupiter.api.Test\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/UseCaseKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.ext.list.withNameEndingWith\nimport com.lemonappdev.konsist.api.verify.assertTrue\nimport java.util.Locale\nimport org.junit.jupiter.api.Test\n\n// Check test coding rules.\nclass UseCaseKonsistTest {\n    @Test\n    fun `every use case class has test`() {\n        Konsist\n            .scopeFromProduction()\n            .classes()\n            .withNameEndingWith(\"UseCase\")\n            .assertTrue { it.hasTestClasses(testPropertyName = \"sut\") }\n    }\n\n    @Test\n    fun `every use case constructor has alphabetically ordered parameters`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withNameEndingWith(\"UseCase\")\n            .flatMap { it.constructors }\n            .assertTrue {\n                val names = it.parameters.map { parameter -> parameter.name }\n                val sortedNames = names.sorted()\n                names == sortedNames\n            }\n    }\n\n    @Test\n    fun `classes with 'UseCase' suffix should reside in 'domain' and 'usecase' packages`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withNameEndingWith(\"UseCase\")\n            .assertTrue { it.resideInPackage(\"..domain..usecase..\") }\n    }\n\n    @Test\n    fun `classes with 'UseCase' suffix should have single public operator method named 'invoke'`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withNameEndingWith(\"UseCase\")\n            .assertTrue {\n                val hasSingleInvokeOperatorMethod =\n                    it.hasFunction { function ->\n                        function.name == \"invoke\" && function.hasPublicOrDefaultModifier && function.hasOperatorModifier\n                    }\n\n                hasSingleInvokeOperatorMethod && it.numPublicOrDefaultDeclarations() == 1\n            }\n    }\n\n    @Test\n    fun `every use case constructor parameter has name derived from parameter type`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withNameEndingWith(\"UseCase\")\n            .flatMap { it.constructors }\n            .flatMap { it.parameters }\n            .assertTrue {\n                val nameTitleCase = it.name.replaceFirstChar { char -> char.titlecase(Locale.getDefault()) }\n                nameTitleCase == it.type.sourceType\n            }\n    }\n}\n"
  },
  {
    "path": "konsist-test/src/test/kotlin/com/igorwojda/showcase/konsisttest/ViewModelKonsistTest.kt",
    "content": "package com.igorwojda.showcase.konsisttest\n\nimport com.igorwojda.showcase.feature.base.presentation.viewmodel.BaseViewModel\nimport com.lemonappdev.konsist.api.KoModifier\nimport com.lemonappdev.konsist.api.Konsist\nimport com.lemonappdev.konsist.api.ext.list.modifierprovider.withoutAllModifiers\nimport com.lemonappdev.konsist.api.ext.list.withDeclarations\nimport com.lemonappdev.konsist.api.ext.list.withNameEndingWith\nimport com.lemonappdev.konsist.api.ext.list.withParentClassOf\nimport com.lemonappdev.konsist.api.verify.assertTrue\nimport java.util.Locale\nimport org.junit.jupiter.api.Test\n\n// Check test coding rules.\nclass ViewModelKonsistTest {\n    @Test\n    fun `every view model has test`() {\n        Konsist\n            .scopeFromProduction()\n            .classes()\n            .withParentClassOf(BaseViewModel::class)\n            .withDeclarations() // Filter out empty view models\n            .assertTrue {\n                it.hasTestClasses(testPropertyName = \"sut\")\n            }\n    }\n\n    @Test\n    fun `every view model constructor parameter has name derived from parameter type`() {\n        Konsist\n            .scopeFromProject()\n            .classes()\n            .withNameEndingWith(\"ViewModel\")\n            .withoutAllModifiers(KoModifier.ABSTRACT)\n            .flatMap { it.constructors }\n            .flatMap { it.parameters }\n            .assertTrue {\n                val nameTitleCase = it.name.replaceFirstChar { char -> char.titlecase(Locale.getDefault()) }\n                nameTitleCase == it.type.sourceType\n            }\n    }\n}\n"
  },
  {
    "path": "library/test-utils/build.gradle.kts",
    "content": "plugins {\n    id(\"com.igorwojda.showcase.convention.library\")\n}\n\nandroid {\n    namespace = \"com.igorwojda.showcase.library.testutils\"\n}\n\ndependencies {\n    // implementation configuration is used here (instead of testImplementation) because this module is added as\n    // testImplementation dependency inside other modules. Using implementation allows to write tests for test utilities.\n    implementation(libs.kotlin.reflect)\n    implementation(libs.bundles.test)\n    implementation(libs.bundles.compose)\n\n    runtimeOnly(libs.junit.jupiter.engine)\n}\n"
  },
  {
    "path": "library/test-utils/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguardFiles setting in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Uncomment this to preserve the line number information for\n# debugging stack traces.\n#-keepattributes SourceFile,LineNumberTable\n\n# If you keep the line number information, uncomment this to\n# hide the original source file name.\n#-renamesourcefileattribute SourceFile\n"
  },
  {
    "path": "library/test-utils/src/main/AndroidManifest.xml",
    "content": "<manifest />\n"
  },
  {
    "path": "library/test-utils/src/main/kotlin/com/igorwojda/showcase/library/testutils/CoroutinesTestDispatcherExtension.kt",
    "content": "package com.igorwojda.showcase.library.testutils\n\nimport kotlinx.coroutines.Dispatchers\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.StandardTestDispatcher\nimport kotlinx.coroutines.test.resetMain\nimport kotlinx.coroutines.test.setMain\nimport org.junit.jupiter.api.extension.AfterEachCallback\nimport org.junit.jupiter.api.extension.BeforeEachCallback\nimport org.junit.jupiter.api.extension.ExtensionContext\n\n/**\n * A JUnit Test Extension that swaps the coroutine dispatcher for the TestDispatcher.\n *\n * Add this JUnit 5 extension to your test class using\n * @JvmField\n * @RegisterExtension\n * val coroutinesTestExtension = CoroutinesTestExtension()\n */\n@ExperimentalCoroutinesApi\nclass CoroutinesTestDispatcherExtension :\n    BeforeEachCallback,\n    AfterEachCallback {\n    override fun beforeEach(context: ExtensionContext) {\n        Dispatchers.setMain(StandardTestDispatcher())\n    }\n\n    override fun afterEach(context: ExtensionContext) {\n        Dispatchers.resetMain()\n    }\n}\n"
  },
  {
    "path": "library/test-utils/src/main/kotlin/com/igorwojda/showcase/library/testutils/InstantTaskExecutorExtension.kt",
    "content": "package com.igorwojda.showcase.library.testutils\n\nimport android.annotation.SuppressLint\nimport androidx.arch.core.executor.ArchTaskExecutor\nimport androidx.arch.core.executor.TaskExecutor\nimport org.junit.jupiter.api.extension.AfterEachCallback\nimport org.junit.jupiter.api.extension.BeforeEachCallback\nimport org.junit.jupiter.api.extension.ExtensionContext\n\n/**\n * A JUnit Test Extension that swaps the background executor used by the Architecture Components with a\n * different one which executes each task synchronously.\n *\n * Extension can be used for your host side tests that use Architecture Components.\n */\n@SuppressLint(\"RestrictedApi\")\nclass InstantTaskExecutorExtension :\n    BeforeEachCallback,\n    AfterEachCallback {\n    override fun beforeEach(context: ExtensionContext) {\n        ArchTaskExecutor.getInstance().setDelegate(\n            object : TaskExecutor() {\n                override fun executeOnDiskIO(runnable: Runnable) {\n                    runnable.run()\n                }\n\n                override fun postToMainThread(runnable: Runnable) {\n                    runnable.run()\n                }\n\n                override fun isMainThread() = true\n            },\n        )\n    }\n\n    override fun afterEach(context: ExtensionContext) {\n        ArchTaskExecutor.getInstance().setDelegate(null)\n    }\n}\n"
  },
  {
    "path": "renovate.json",
    "content": "{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"config:base\"\n  ],\n  \"lockFileMaintenance\": {\n    \"enabled\": true,\n    \"automerge\": true,\n    \"automergeType\": \"pr\",\n    \"platformAutomerge\": true\n  },\n  \"packageRules\": [\n    {\n      \"matchUpdateTypes\": [\n        \"minor\",\n        \"patch\"\n      ],\n      \"matchCurrentVersion\": \"!/^0/\",\n      \"automerge\": true,\n      \"automergeType\": \"pr\",\n      \"platformAutomerge\": true\n    },\n    {\n      \"matchPackagePatterns\": [\n        \"androidx.compose.ui:ui\",\n        \"androidx.compose.ui:ui-tooling-preview\"\n      ],\n      \"groupName\": \"androidx compose ui updates\"\n    },\n    {\n      \"matchPackageNames\": [\n        \"org.jetbrains.kotlin.*\",\n        \"com.google.devtools.ksp\",\n        \"com.android.library\",\n        \"com.android.application\"\n      ],\n      \"enabled\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "settings.gradle.kts",
    "content": "rootProject.name = \"android-showcase\"\n\ninclude(\n    \":app\",\n    \":feature:album\",\n    \":feature:settings\",\n    \":feature:favourite\",\n    \":feature:base\",\n    \":library:test-utils\",\n    \":konsist-test\",\n)\n\npluginManagement {\n    includeBuild(\"build-logic\")\n\n    repositories {\n        gradlePluginPortal()\n        google()\n        mavenCentral()\n    }\n}\n\n@Suppress(\"UnstableApiUsage\")\ndependencyResolutionManagement {\n    repositories {\n        google()\n        // Added for testing local Konsist artifacts\n        mavenLocal()\n        mavenCentral()\n    }\n}\n\n// Generate type safe accessors when referring to other projects eg.\n// Before: implementation(project(\":feature_album\"))\n// After: implementation(projects.featureAlbum)\nenableFeaturePreview(\"TYPESAFE_PROJECT_ACCESSORS\")\n"
  }
]