Import Cobalt 25.master.0.1032706
diff --git a/.github/actions/build/action.yaml b/.github/actions/build/action.yaml
index f641013..28616c4 100644
--- a/.github/actions/build/action.yaml
+++ b/.github/actions/build/action.yaml
@@ -25,7 +25,7 @@
           fi
         else
           BUILD_PLATFORM=${COBALT_BOOTLOADER}
-          BUILD_TARGET='loader_app_install elf_loader_sandbox_install crashpad_handler_install'
+          BUILD_TARGET='loader_app_install elf_loader_sandbox_install native_target/crashpad_handler'
         fi
         # GitHub Runners have home set to /github/home.
         if [ -d /root/starboard-toolchains ]; then
diff --git a/.github/actions/on_host_test/action.yaml b/.github/actions/on_host_test/action.yaml
index 7df5e2f..7d9efa0 100644
--- a/.github/actions/on_host_test/action.yaml
+++ b/.github/actions/on_host_test/action.yaml
@@ -60,12 +60,14 @@
       run: |
         echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
         echo "TEST_RESULTS_DIR=${GITHUB_WORKSPACE}/unit-test-results" >> $GITHUB_ENV
+        echo "XML_FILES_DIR=${GITHUB_WORKSPACE}/unit-test-results/${{ matrix.platform }}/${{ matrix.shard }}" >> $GITHUB_ENV
         echo "COVERAGE_DIR=${GITHUB_WORKSPACE}/coverage" >> $GITHUB_ENV
-        echo "TEST_REPORT_FILE=${GITHUB_WORKSPACE}/${{matrix.platform}}-${{matrix.shard}}" >> $GITHUB_ENV
     - name: Run Tests
+      id: run-tests
       shell: bash
       run: |
         set -x
+
         # Starboard toolchains are downloaded to a different dir on github. Create a symlink to reassure our tooling that everything is fine.
         if [ -d /root/starboard-toolchains ]; then
           ln -s /root/starboard-toolchains /github/home/starboard-toolchains
@@ -85,28 +87,31 @@
         elif [[ "${{matrix.shard}}" == 'evergreen-as-blackbox' ]]; then
           xvfb-run -a --server-args="-screen 0 1920x1080x24i +render +extension GLX -noreset" python3 $GITHUB_WORKSPACE/cobalt/black_box_tests/black_box_tests.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} ${loader_args} --test_set evergreen
         elif [[ "${{matrix.shard}}" == 'coverage' ]]; then
-          xvfb-run -a --server-args="-screen 0 1920x1080x24i +render +extension GLX -noreset" python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -r ${loader_args} --xml_output_dir=${TEST_RESULTS_DIR} --coverage_dir=${COVERAGE_DIR} --coverage_report
+          xvfb-run -a --server-args="-screen 0 1920x1080x24i +render +extension GLX -noreset" python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -r ${loader_args} --xml_output_dir=${XML_FILES_DIR} --coverage_dir=${COVERAGE_DIR} --coverage_report
         else
+          # Set 'test_type' output to unit_tests for the upload steps below.
+          echo "test_type=unit_tests" >> $GITHUB_OUTPUT
           if [[ "${{inputs.os}}" == 'windows' ]]; then
-            python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -s ${{matrix.shard}} -r
+            python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -s ${{matrix.shard}} -r --xml_output_dir=${XML_FILES_DIR}
           else
-            xvfb-run -a --server-args="-screen 0 1920x1080x24i +render +extension GLX -noreset" python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -s ${{matrix.shard}} -r ${loader_args} --xml_output_dir=${TEST_RESULTS_DIR}
+            xvfb-run -a --server-args="-screen 0 1920x1080x24i +render +extension GLX -noreset" python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_runner.py --platform ${{matrix.target_platform}} --config ${{matrix.config}} -s ${{matrix.shard}} -r ${loader_args} --xml_output_dir=${XML_FILES_DIR}
           fi
         fi
-    - name: Process unit test results
-      if: failure()
+    - name: Populate TAGS for unit test report
+      if: (success() || failure()) && steps.run-tests.outputs.test_type == 'unit_tests'
       shell: bash
       run: |
-        set -x
-        echo "Saving unit test report to ${TEST_REPORT_FILE}"
-        python3 ${GITHUB_WORKSPACE}/starboard/tools/testing/test_report_parser.py ${TEST_RESULTS_DIR} > ${TEST_REPORT_FILE}
-    - name: Upload unit test report
+        # Set tags for test differentiation.
+        tags="platform:${{ matrix.platform }}"
+        tags="${tags},os:${{ inputs.os }}"
+        echo $tags > ${TEST_RESULTS_DIR}/${{ matrix.platform }}/TAGS
+    - name: Archive unit test results
       uses: actions/upload-artifact@v3
-      if: failure()
+      if: (success() || failure()) && steps.run-tests.outputs.test_type == 'unit_tests'
       with:
-        name: unit-test-reports
-        path: ${{env.TEST_REPORT_FILE}}
-    - name: Upload coverage html report
+        name: unit-test-results
+        path: ${{env.TEST_RESULTS_DIR}}/
+    - name: Archive coverage html report
       if: success() && matrix.shard == 'coverage'
       uses: actions/upload-artifact@v3
       with:
diff --git a/.github/codecov.yml b/.github/codecov.yml
new file mode 100644
index 0000000..236a6f1
--- /dev/null
+++ b/.github/codecov.yml
@@ -0,0 +1,5 @@
+coverage:
+  status:
+    project:
+      default:
+        threshold: 1%
diff --git a/.github/config/win32.json b/.github/config/win32.json
index c65092c..9de9f00 100644
--- a/.github/config/win32.json
+++ b/.github/config/win32.json
@@ -11,7 +11,7 @@
       "name":"win32",
       "platform":"win32",
       "target_platform":"win-win32",
-      "extra_gn_arguments":"is_clang=false visual_studio_path=\\\"C:/BuildTools/VC/Tools/MSVC/14.15.26726\\\" msvc_path=\\\"C:/BuildTools/VC/Tools/MSVC/14.15.26726\\\""
+      "extra_gn_arguments":"is_clang=false"
     }
   ]
 }
diff --git a/.github/workflows/auto_assign.yaml b/.github/workflows/auto_assign.yaml
new file mode 100644
index 0000000..3a47169
--- /dev/null
+++ b/.github/workflows/auto_assign.yaml
@@ -0,0 +1,35 @@
+name: PR Reviewer Auto Assignment
+
+on:
+  pull_request_target:
+    types:
+      - opened
+      - reopened
+
+concurrency:
+  group: '${{ github.workflow }}-${{ github.event_name }} @ ${{ github.event.pull_request.number || github.sha }}'
+  cancel-in-progress: true
+
+jobs:
+  assign-reviewer:
+    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+    steps:
+    - name: Check if PR author is outside collaborator and assign reviewer
+      env:
+        PR_AUTHOR_LOGIN: ${{ github.event.pull_request.user.login }}
+        REPO_NAME: ${{ github.event.repository.full_name }}
+        PR_NUMBER: ${{ github.event.number }}
+      run: |
+        PERMISSION_LEVEL=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
+          "https://api.github.com/repos/$REPO_NAME/collaborators/$PR_AUTHOR_LOGIN/permission" | jq -r .role_name)
+
+        if [ "$PERMISSION_LEVEL" == "none" ] || [ "$PERMISSION_LEVEL" == "read" ]; then
+          echo "PR author is an outside collaborator. Adding label..."
+
+          curl -s -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
+            -H "Accept: application/vnd.github.v3+json" \
+            -d '["outside collaborator"]' \
+            "https://api.github.com/repos/$REPO_NAME/issues/$PR_NUMBER/labels"
+        fi
diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml
new file mode 100644
index 0000000..834696d
--- /dev/null
+++ b/.github/workflows/coverage.yaml
@@ -0,0 +1,30 @@
+name: coverage
+
+on:
+  pull_request:
+    types:
+      - opened
+      - edited
+      - reopened
+      - synchronize
+  push:
+    branches:
+      - main
+      - feature/*
+
+jobs:
+  linux-coverage:
+    # TODO(b/286302961): Move back and re-enable this check once sharding is supported.
+    # Run on main branch for pushes, PRs and manual invocations.
+    # if: |
+    #  ${{ github.ref == 'refs/heads/main' &&
+    #      (github.event_name == 'push' ||
+    #      github.event_name == 'pull_request' ||
+    #      (github.event_name == 'workflow_dispatch' && inputs.nightly == 'false')) }}
+    uses: ./.github/workflows/main.yaml
+    permissions:
+      packages: write
+      pull-requests: write
+    with:
+      platform: linux-coverage
+      nightly: ${{ github.event.inputs.nightly }}
diff --git a/.github/workflows/label-cherry-pick.yaml b/.github/workflows/label-cherry-pick.yaml
index 6ac390a..1a80289 100644
--- a/.github/workflows/label-cherry-pick.yaml
+++ b/.github/workflows/label-cherry-pick.yaml
@@ -96,4 +96,6 @@
           reviewers: ${{ github.event.pull_request.user.login }}
           title: "Cherry pick PR #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}"
           body: |
-            "Refer to the original PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}"
+            Refer to the original PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}
+
+            ${{ github.event.pull_request.body }}
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index 6a138cb..5baaaba 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -61,10 +61,7 @@
         # v2
         uses: gsactions/commit-message-checker@16fa2d5de096ae0d35626443bcd24f1e756cafee
         with:
-          excludeTitle: true
-          excludeDescription: true
-          checkAllCommitMessages: true
           accessToken: ${{ secrets.GITHUB_TOKEN }}
-          pattern: '^b\/\d+$'
+          pattern: 'b\/\d+'
           flags: 'gm'
-          error: 'Commit message should include at least one bug ID on a separate line (e.g. b/12345).'
+          error: 'PR title or description should include at least one bug ID.'
diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml
index e15041d..bff0dff 100644
--- a/.github/workflows/linux.yaml
+++ b/.github/workflows/linux.yaml
@@ -56,17 +56,3 @@
       platform: linux-modular
       nightly: ${{ github.event.inputs.nightly }}
       modular: true
-  linux-coverage:
-    # Run on main branch for pushes, PRs and manual invocations.
-    if: |
-     ${{ github.ref == 'refs/heads/main' &&
-         (github.event_name == 'push' ||
-         github.event_name == 'pull_request' ||
-         (github.event_name == 'workflow_dispatch' && inputs.nightly == 'false')) }}
-    uses: ./.github/workflows/main.yaml
-    permissions:
-      packages: write
-      pull-requests: write
-    with:
-      platform: linux-coverage
-      nightly: ${{ github.event.inputs.nightly }}
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index b501c1d..e0cd9b5 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -320,23 +320,3 @@
         uses: ./.github/actions/on_host_test
         with:
           os: linux
-
-  # Gets unit test report from on host tests and prints it.
-  on-host-unit-test-report:
-    needs: [on-host-test]
-    permissions: {}
-    if: failure()
-    runs-on: ubuntu-latest
-    steps:
-      - name: Collect Unit Test Reports
-        uses: actions/download-artifact@v3
-        with:
-          name: unit-test-reports
-          path: unit-test-reports
-      - name: Print Unit Test Reports
-        run: |
-          for filename in ${GITHUB_WORKSPACE}/unit-test-reports/*; do
-            basename $filename
-            cat $filename
-            echo
-          done
diff --git a/.github/workflows/main_win.yaml b/.github/workflows/main_win.yaml
index 3285f1a..ea1a301 100644
--- a/.github/workflows/main_win.yaml
+++ b/.github/workflows/main_win.yaml
@@ -130,7 +130,7 @@
   build:
     needs: [initialize]
     permissions: {}
-    runs-on: [self-hosted, X64, Windows]
+    runs-on: [self-hosted, win32]
     name: ${{matrix.name}}_${{matrix.config}}
     strategy:
       fail-fast: false
@@ -164,7 +164,7 @@
     needs: [initialize, build]
     permissions: {}
     if: needs.initialize.outputs.on_host_test == 'true'
-    runs-on: [self-hosted, Windows, X64]
+    runs-on: [self-hosted, win32]
     name: ${{matrix.name}}_${{matrix.shard}}_test
     strategy:
       fail-fast: false
diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml
index 787f056..1b282e4 100644
--- a/.github/workflows/pytest.yaml
+++ b/.github/workflows/pytest.yaml
@@ -18,7 +18,7 @@
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest]
-        python-version: ['3.7', '3.11']
+        python-version: ['3.8', '3.11']
       fail-fast: false
     runs-on: ${{ matrix.os }}
     steps:
diff --git a/.github/workflows/unit_test_report.yaml b/.github/workflows/unit_test_report.yaml
new file mode 100644
index 0000000..8f43f24
--- /dev/null
+++ b/.github/workflows/unit_test_report.yaml
@@ -0,0 +1,107 @@
+name: Upload Unit Test Results
+
+on:
+  workflow_run:
+    workflows:
+      - evergreen
+      - linux
+      - win32
+    types:
+      - completed
+
+jobs:
+  unit-test-report:
+    permissions: {}
+      # TODO(b/293508740): Report failed workflow runs back to triggering PR.
+      # pull-requests: write
+    if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }}
+    runs-on: ubuntu-latest
+    name: Upload Unit Test Reports
+    steps:
+      - name: Download '${{ github.event.workflow_run.name }}' Unit Test Results
+        # The `download-artifact` action can only access artifacts that were uploaded in the same workflow.
+        # Since it was not this workflow that uploaded the artifacts we must use rest api to download them.
+        # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow
+        uses: actions/github-script@v6
+        with:
+          script: |
+            const name = context.payload.workflow_run.name;
+            const url = context.payload.workflow_run.html_url;
+
+            console.log(`Downloading artifacts from ${url}`)
+            context.payload.workflow_run.pull_requests.forEach(pr => {
+              console.log(`Pull request: ${context.payload.repository.html_url}/pull/${pr.number}`);
+            });
+
+            let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
+              owner: context.repo.owner,
+              repo: context.repo.repo,
+              run_id: context.payload.workflow_run.id
+            });
+
+            let matchArtifacts = allArtifacts.data.artifacts.filter((artifact) => {
+              return artifact.name == "unit-test-results"
+            });
+
+            if (matchArtifacts.length == 1) {
+              let download = await github.rest.actions.downloadArtifact({
+                owner: context.repo.owner,
+                repo: context.repo.repo,
+                artifact_id: matchArtifacts[0].id,
+                archive_format: 'zip'
+              });
+              let fs = require('fs');
+              const path = `${process.env.GITHUB_WORKSPACE}/unit-test-results.zip`;
+              fs.writeFileSync(path, Buffer.from(download.data));
+            } else {
+              core.setFailed(`Expected one artifact with name 'unit-test-results'. Found ${matchArtifacts.length}.`);
+            }
+      - name: Extract Archived Unit Test Results
+        run: unzip unit-test-results.zip -d unit-test-results
+      - name: Get Datadog CLI
+        shell: bash
+        env:
+          DD_VERSION: 'v2.18.0'
+          DD_SHA256SUM: 'adbe9b3a41faaf0b1d9702ba256cf8fa9e474c0cc8216f25e5b489c53d6f0a70  datadog-ci'
+        run: |
+          set -e
+          download_url="https://github.com/DataDog/datadog-ci/releases/download/${DD_VERSION}/datadog-ci_linux-x64"
+          curl -L --fail $download_url --output datadog-ci
+          echo ${DD_SHA256SUM} | sha256sum --check
+          chmod +x datadog-ci
+      - name: Upload to Datadog
+        # Unit test results are archived on the following format:
+        # ├── <platform>
+        # │   ├── <shards>
+        # │   │   └── <test result xmls>
+        # │   └── TAGS
+        # ├── <platform>
+        # │   ├── <shards>
+        # │   │   └── <test result xmls>
+        # │   └── TAGS
+        # etc.
+        shell: bash
+        env:
+          DATADOG_API_KEY: ${{ secrets.DD_API_KEY }}
+          DATADOG_SITE: us5.datadoghq.com
+          DD_ENV: ci
+          DD_SERVICE: ${{ github.event.repository.name }}
+          # Need to populate git info via env vars as we don't have the repo to look at.
+          DD_GIT_REPOSITORY_URL: ${{ github.event.repository.git_url }}
+          DD_GIT_COMMIT_SHA: ${{ github.event.workflow_run.head_sha }}
+          DD_GIT_BRANCH: ${{ github.event.workflow_run.head_branch }}
+          DD_GIT_COMMIT_MESSAGE: ${{ github.event.workflow_run.head_commit.message }}
+          DD_GIT_COMMIT_AUTHOR_NAME: ${{ github.event.workflow_run.head_commit.author.name }}
+          DD_GIT_COMMIT_AUTHOR_EMAIL: ${{ github.event.workflow_run.head_commit.author.email }}
+          DD_GIT_COMMIT_AUTHOR_DATE: ${{ github.event.workflow_run.head_commit.timestamp }}
+          DD_GIT_COMMIT_COMMITTER_NAME: ${{ github.event.workflow_run.head_commit.committer.name }}
+          DD_GIT_COMMIT_COMMITTER_EMAIL: ${{ github.event.workflow_run.head_commit.committer.email }}
+          DD_GIT_COMMIT_COMMITTER_DATE:  ${{ github.event.workflow_run.head_commit.timestamp }}
+        run: |
+          # Loop over each platform, extract the tags and upload xml results.
+          for dir in unit-test-results/*/; do
+            echo "Uploading $dir test report"
+            export DD_TAGS=`cat ${dir}TAGS`
+            ./datadog-ci junit upload \
+                      $dir/**/*.xml
+          done
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index c4bd214..ea415f3 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -11,14 +11,17 @@
             base|
             build|
             buildtools|
+            cobalt/updater/win|
             components/crash/core/common|
-            components/metrics|
             components/metrics_services_manager|
+            components/metrics|
+            components/prefs|
             components/ukm|
             components/variations|
             components/version_info|
             crypto|
             extensions/buildflags|
+            glimp/include|
             net|
             internal/starboard/shared/playstation/glimp/shaders|
             testing|
@@ -29,6 +32,10 @@
         |
         components/update_client/((?!cobalt).)*$
         |
+        .*\.pb\.cc$ |
+        .*\.pb\.h$ |
+        .*\.patch$ |
+        .*Proto.java$|
         .*\.sig$
     )
 
@@ -50,15 +57,21 @@
                # The --ignore-words-list argument has a bug where it needs to
                # be lowercase, see
                # https://github.com/codespell-project/codespell/issues/1390
-               --ignore-words-list, atleast]
+               --ignore-words-list, "atleast,varius,ridiculus,statics",
+               ]
         exclude: |
             (?x)^(
                 (internal/)?starboard/[^/]+/i18n/|
                 cobalt/content/licenses/|
+                cobalt/content/ssl/|
                 cobalt/fetch/embedded_scripts|
+                cobalt/streams/embedded_scripts|
                 cobalt/loader/cors_preflight.cc|
                 internal/cobalt/browser/splash_screen/youtube_splash_screen.html|
-                internal/starboard/shared/playstation/storage_internal.cc
+                internal/starboard/shared/playstation/storage_internal.cc|
+                starboard/loader_app/app_key_test.cc|
+                starboard/shared/starboard/player/testdata|
+                starboard/shared/win32/media_transform.cc
             )
 
 -   repo: local
@@ -120,13 +133,25 @@
         stages: [push]
         exclude: |
             (?x)^(
+                .pylintrc$|
                 .pre-commit-config.yaml$|
-                cobalt/media/|
+                cobalt/base/unicode/|
+                cobalt/demos/content/|
                 cobalt/layout_tests/testdata/|
+                cobalt/math/|
+                cobalt/media/|
+                cobalt/streams/|
+                cobalt/updater/|
+                cobalt/webdriver/screencast/|
+                cobalt/websocket/|
+                components/crx_file/|
+                content/|
+                glimp/|
                 nb/|
                 starboard/android/apk/app/src/main/java/dev/cobalt/media/MediaDrmBridge.java$|
                 starboard/shared/starboard/player/filter/decoded_audio_queue.cc$|
                 starboard/shared/starboard/player/filter/decoded_audio_queue.h$|
+                starboard/shared/starboard/player/testdata/licences/|
                 starboard/shared/starboard/player/filter/wsola_internal.cc$
             )
         exclude_types: [markdown]
@@ -166,20 +191,6 @@
         stages: [push]
         always_run: true
         pass_filenames: false
-    -   id: osslint
-        name: osslint
-        entry: python precommit_hooks/osslint_wrapper.py
-        language: python
-        types: [text]
-        stages: [manual]
-    -   id: internal-file-check
-        name: Internal File Check
-        entry: python precommit_hooks/internal_file_check_wrapper.py
-        language: python
-        types: [text]
-        # TODO: Remove docker-compose-windows.yml after internal check evaluates
-        # properly on it.
-        exclude: '(^docker-compose-windows(-internal)?.yml|EXCLUDE\.FILES(\.RECURSIVE)?|codereview\.settings)$'
     -   id: gn-format
         name: GN format
         entry: gn format
diff --git a/.pylintrc b/.pylintrc
index 6892a44..3707dea 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -216,7 +216,7 @@
 class-rgx=^_?[A-Z][a-zA-Z0-9]*$
 
 # Regular expression matching correct module names
-module-rgx=^(_?[a-z][a-z0-9_]*|__init__)$
+module-rgx=^(_?[a-z][a-z0-9_]*|__init__|2)$
 
 # Regular expression matching correct method names
 method-rgx=(?x)^(?:(?P<exempt>_[a-z0-9_]+__|runTest|setUp|tearDown|setUpTestCase|tearDownTestCase|setupSelf|tearDownClass|setUpClass|(test|assert)_*[A-Z0-9][a-zA-Z0-9_]*|next)|(?P<camel_case>_{0,2}[A-Z][a-zA-Z0-9_]*)|(?P<snake_case>_{0,2}[a-z][a-z0-9_]*))$
@@ -426,6 +426,6 @@
 
 # Exceptions that will emit a warning when being caught. Defaults to
 # "Exception"
-overgeneral-exceptions=StandardError,
-                       Exception,
-                       BaseException
+overgeneral-exceptions=builtins.StandardError,
+                       builtins.Exception,
+                       builtins.BaseException
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9b82749..3853124 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -50,13 +50,17 @@
 
 #### General guidelines and philosophy for contribution
 
+*   Ensure your change references the bug you are addressing. Follow the
+    instructions
+    [here](https://cobalt.dev/communication.html#filing-bugs-and-feature-requests)
+    to view and create bugs.
 *   Include unit tests when you contribute new features, as they help to:
     1.   Prove that your code works correctly
     1.   Guard against future breaking changes to lower the maintenance cost.
 *   Bug fixes also generally require unit tests, because the presence of bugs
     usually indicates insufficient test coverage.
 *   When you contribute a new feature to Cobalt, the maintenance burden is
-    (by default) transferred to the Cobalbt team. This means that the benefit
+    (by default) transferred to the Cobalt team. This means that the benefit
     of the contribution must be compared against the cost of maintaining the
     feature.
 *   As every PR requires several CPU/GPU hours of CI testing, we discourage
diff --git a/README.md b/README.md
index 0a349a3..32d3816 100644
--- a/README.md
+++ b/README.md
@@ -43,14 +43,13 @@
 
   * **Limited Memory.** All except the very latest, expensive CE devices have a
     very small amount of memory available for applications. This usually is
-    somewhere in the ballpark of 200MB-500MB, including graphics and media
+    somewhere in the ballpark of 500MB, including graphics and media
     memory, as opposed to multiple gigabytes of CPU memory (and more gigabytes
     of GPU memory) in modern desktop and laptop computers, and mobile devices.
   * **Slow CPUs.** Most CE devices have much slower CPUs than what is available
     on even a budget desktop computer. Minor performance concerns can be greatly
-    exaggerated, which seriously affects priorities.
-  * **Fewer cores.** CE System-on-a-Chip (SoC) processors often do not have as
-    many processor cores as we are used to in modern computers.
+    exaggerated, which seriously affects priorities. Cobalt currently expects a
+    4-core 32-bit ARMv7 CPU as a baseline.
   * **Minimal GPU.** Not all CE devices have a monster GPU to throw shaders at
     to offload CPU work. As CE devices now have a standard GPU (though not
     nearly as powerful as even a laptop), OpenGL ES 2.0 is now required
@@ -62,10 +61,9 @@
     no ability to JIT.
   * **Heterogeneous Development Environments.** This is slowly evening out, but
     all CE devices run on custom hardware, often with proprietary methods of
-    building, packaging, deploying, and running programs. Almost all CE devices
-    have ARM processors instead of the more familiar x86. Sometimes the
-    toolchain doesn't support contemporary C++11/14 features. Sometimes the OS
-    isn't POSIX, or it tries to be, but it is only partially implemented.
+    building, packaging, deploying, and running programs. Sometimes the
+    toolchain doesn't support latest C++ language features. Sometimes the OS
+    does not support POSIX, or it is only partially implemented.
     Sometimes the program entry point is in another language or architecture
     that requires a "trampoline" over to native binary code.
   * **No navigation.** The point of a Single-Page Application is that you don't
@@ -73,10 +71,6 @@
     provides poor user feedback, not to mention a jarring transition. Instead,
     one loads data from an XMLHttpRequest (XHR), and then updates one's DOM to
     reflect the new data. AJAX! Web 2.0!!
-  * **No scrolling.** Well, full-screen, 10-foot UI SPA apps might scroll, but
-    not like traditional web pages, with scroll bars and a mouse
-    wheel. Scrolling is generally built into the app very carefully, with
-    support for a Directional Pad and a focus cursor.
 
 
 ## Architecture
@@ -92,19 +86,21 @@
 
   * **Web Implementation** - This is where the W3C standards are implemented,
     ultimately producing an annotated DOM tree that can be passed into the
-    Layout Engine to produce a Render Tree.
+    Layout Engine to produce a Render Tree. Cobalt uses a forked copy of
+    [Chrome Blink's Web IDL compiler](https://www.chromium.org/blink/webidl/) to
+    turn JavaScript IDLs to generated C++ bindings code.
   * **JavaScript Engine** - We have, perhaps surprisingly, *not* written our own
-    JavaScript Engine from scratch. Because of the JITing constraint, we have to
-    be flexible with which engine(s) we work with. We have a bindings layer that
-    interfaces with the JS Engine so that application script can interface with
-    natively-backed objects (like DOM elements).
+    JavaScript Engine from scratch. Cobalt is running on [Chromiums V8](https://v8.dev)
+    JavaScript engine. V8 supports all of our target platforms, including very
+    restricted ones where write-and-execute memory pages (needed for JIT) are
+    not available.
   * **Layout Engine** - The Layout Engine takes an annotated DOM Document
     produced by the Web Implementation and JavaScript Engine working together,
     and calculates a tree of rendering commands to send to the renderer (i.e. a
     Render Tree). It caches intermediate layout artifacts so that subsequent
     incremental layouts can be sped up.
   * **Renderer/Skia** - The Renderer walks a Render Tree produced by the Layout
-    Engine, rasterizes it using the third-party graphics library Skia, and swaps
+    Engine, rasterizes it using the [Chromium graphics library Skia](https://skia.org/), and swaps
     it to the front buffer. This is accomplished using Hardware Skia on OpenGL
     ES 2.0. Note that the renderer runs in a different thread from the Layout
     Engine, and can interpolate animations that do not require re-layout. This
@@ -122,7 +118,7 @@
     software. Mostly format decoders and parsers (e.g. libpng, libxml2,
     zlib). We fork these from Chromium, as we want them to be the most
     battle-tested versions of these libraries.
-  * **Starboard/Glimp/ANGLE** - **Starboard** is the Cobalt porting
+  * **Starboard** - **Starboard** is the Cobalt porting
     interface. One major difference between Cobalt and Chromium is that we have
     created a hard straight-C porting layer, and ported ALL of the compiled
     code, including Base and all third-party libraries, to use it instead of
@@ -130,10 +126,12 @@
     modern systems (see Android, Windows, MacOS X, and iOS). Additionally,
     Starboard includes APIs that haven't been effectively standardized across
     platforms, such as display Window creation, Input events, and Media
-    playback. **Glimp** is an OpenGL ES 2.0 implementation framework, built by
-    the Cobalt team directly on Starboard, designed to adapt proprietary 3D APIs
-    to GLES2. **ANGLE** Is a third-party library that adapts DirectX to GLES2,
-    similar to Glimp, but only for DirectX.
+    playback. A good overview of which OS interfaces are abstracted by Starboard
+    can be found in the [reference documentation.](https://cobalt.dev/reference/starboard/modules/configuration.html)
+  * **ANGLE and Glimp** [**ANGLE** is a Chromium library](https://angleproject.org/)
+    that adapts OpenGL ES 2.0 graphics to various other platform-native graphics APIs.
+    Cobalt uses it on Windows platforms to run on DirectX. Glimp is a similar
+    custom adapter layer that translatest from GL ES2.0 to PlayStation native graphics.
 
 ## The Cobalt Subset
 
diff --git a/base/BUILD.gn b/base/BUILD.gn
index b7cfe95..509aa37 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -1560,7 +1560,7 @@
     ]
     public_configs = [ ":base_public_defines" ]
     deps += [
-      "//nb",
+      "//starboard/common",
       "//starboard",
       "//starboard/client_porting/eztime",
     ]
@@ -1582,7 +1582,7 @@
     # TODO(b/206642994): see if we can remove this condition. It's added for now
     # because linking atomic leads to linker errors for evergreen on arm-hardfp,
     # and it's apparently not really needed (i.e., we can build without it).
-    if (!is_starboard || !sb_is_evergreen) {
+    if (!is_starboard || !sb_is_modular) {
       libs += [ "atomic" ]
     }
   }
diff --git a/base/android/jni_generator/AndroidManifest.xml b/base/android/jni_generator/AndroidManifest.xml
index ec28ff5..1555a81 100644
--- a/base/android/jni_generator/AndroidManifest.xml
+++ b/base/android/jni_generator/AndroidManifest.xml
@@ -7,7 +7,7 @@
 
 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.jni.generator">
 
-    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="24" />
+    <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="33" />
     <application></application>
 
 </manifest>
diff --git a/base/codereview.settings b/base/codereview.settings
deleted file mode 100644
index a4b341a..0000000
--- a/base/codereview.settings
+++ /dev/null
@@ -1,4 +0,0 @@
-# This file is used by gcl to get repository specific information.
-GERRIT_HOST: lbshell-internal-review.googlesource.com
-GERRIT_AUTODETECT_BRANCH: true
-CODE_REVIEW_SERVER: lbshell-internal-review.googlesource.com
diff --git a/base/files/file_starboard.cc b/base/files/file_starboard.cc
index 6c1e8ee..40e63d2 100644
--- a/base/files/file_starboard.cc
+++ b/base/files/file_starboard.cc
@@ -14,16 +14,28 @@
 
 // Adapted from platform_file_posix.cc
 
-#include "base/files/file.h"
+#include "base/files/file_starboard.h"
 
+#include "base/files/file.h"
 #include "base/files/file_path.h"
 #include "base/logging.h"
 #include "base/threading/thread_restrictions.h"
+#include "starboard/common/metrics/stats_tracker.h"
 #include "starboard/common/log.h"
 #include "starboard/file.h"
 
 namespace base {
 
+void RecordFileWriteStat(int write_file_result) {
+  auto& stats_tracker = starboard::StatsTrackerContainer::GetInstance()->stats_tracker();
+  if (write_file_result <= 0) {
+    stats_tracker.FileWriteFail();
+  } else {
+    stats_tracker.FileWriteSuccess();
+    stats_tracker.FileWriteBytesWritten(/*bytes_written=*/write_file_result);
+  }
+}
+
 // Make sure our Whence mappings match the system headers.
 static_assert(
     File::FROM_BEGIN == static_cast<int>(kSbFileFromBegin) &&
@@ -181,8 +193,9 @@
     return -1;
 
   SCOPED_FILE_TRACE_WITH_SIZE("WriteAtCurrentPos", size);
-
-  return SbFileWriteAll(file_.get(), data, size);
+  int write_result = SbFileWriteAll(file_.get(), data, size);
+  RecordFileWriteStat(write_result);
+  return write_result;
 }
 
 int File::WriteAtCurrentPosNoBestEffort(const char* data, int size) {
@@ -192,7 +205,9 @@
     return -1;
 
   SCOPED_FILE_TRACE_WITH_SIZE("WriteAtCurrentPosNoBestEffort", size);
-  return SbFileWrite(file_.get(), data, size);
+  int write_result = SbFileWrite(file_.get(), data, size);
+  RecordFileWriteStat(write_result);
+  return write_result;
 }
 
 int64_t File::GetLength() {
diff --git a/cobalt/h5vcc/h5vcc_account_info.idl b/base/files/file_starboard.h
similarity index 67%
copy from cobalt/h5vcc/h5vcc_account_info.idl
copy to base/files/file_starboard.h
index 1fc2417..81f8874 100644
--- a/cobalt/h5vcc/h5vcc_account_info.idl
+++ b/base/files/file_starboard.h
@@ -1,4 +1,4 @@
-// Copyright 2015 The Cobalt Authors. All Rights Reserved.
+// Copyright 2023 Google Inc. All Rights Reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -12,8 +12,13 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-interface H5vccAccountInfo {
-  readonly attribute DOMString avatarUrl;
-  readonly attribute DOMString username;
-  readonly attribute DOMString userId;
-};
+#ifndef BASE_FILES_FILE_STARBOARD_H_
+#define BASE_FILES_FILE_STARBOARD_H_
+
+namespace base {
+
+void RecordFileWriteStat(int write_file_result);
+
+}  // namespace base
+
+#endif  // BASE_FILES_FILE_STARBOARD_H_
diff --git a/base/files/file_util.cc b/base/files/file_util.cc
index 8654654..befe725 100644
--- a/base/files/file_util.cc
+++ b/base/files/file_util.cc
@@ -23,7 +23,6 @@
 #include "build/build_config.h"
 
 #if defined(STARBOARD)
-#include "starboard/common/file.h"
 #include "starboard/memory.h"
 #include "starboard/types.h"
 #endif
@@ -62,18 +61,16 @@
   // doing anything smart with text formatting.
 #ifdef STARBOARD
   // std::ifstream doesn't work on all our platforms.
-  starboard::ScopedFile file1(filename1.value().c_str(),
-                              kSbFileOpenOnly | kSbFileRead);
-  starboard::ScopedFile file2(filename2.value().c_str(),
-                              kSbFileOpenOnly | kSbFileRead);
-  auto file1_length = file1.GetSize();
-  if (file1_length != file2.GetSize()) {
+  base::File file1(filename1, base::File::FLAG_OPEN | base::File::FLAG_READ);
+  base::File file2(filename2, base::File::FLAG_OPEN | base::File::FLAG_READ);
+  auto file1_length = file1.GetLength();
+  if (file1_length != file2.GetLength()) {
     return false;
   }
   std::unique_ptr<char[]> file1_content(new char[file1_length]());
   std::unique_ptr<char[]> file2_content(new char[file1_length]());
-  if (file1.ReadAll(file1_content.get(), file1_length) != file1_length ||
-      file2.ReadAll(file2_content.get(), file1_length) != file1_length) {
+  if (file1.ReadAtCurrentPos(file1_content.get(), file1_length) != file1_length ||
+      file2.ReadAtCurrentPos(file2_content.get(), file1_length) != file1_length) {
     return false;
   }
 
diff --git a/base/logging.cc b/base/logging.cc
index a9d61c6..809e141 100644
--- a/base/logging.cc
+++ b/base/logging.cc
@@ -7,9 +7,11 @@
 #include <limits.h>
 
 #include "base/macros.h"
+#include "base/trace_event/trace_event.h"
 #include "build/build_config.h"
 
 #if defined(STARBOARD)
+#include "base/files/file_starboard.h"
 #include "starboard/client_porting/eztime/eztime.h"
 #include "starboard/common/log.h"
 #include "starboard/common/mutex.h"
@@ -555,7 +557,7 @@
   g_min_log_level = std::min(LOG_FATAL, level);
 }
 
-#if defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#if defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 int GetMinLogLevel() {
   return LOG_NUM_SEVERITIES;
 }
@@ -579,7 +581,7 @@
 
 void SetLogPrefix(const char* prefix) {}
 
-#else  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#else  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 
 int GetMinLogLevel() {
   return g_min_log_level;
@@ -623,7 +625,7 @@
          base::ContainsOnlyChars(prefix, "abcdefghijklmnopqrstuvwxyz"));
   g_log_prefix = prefix;
 }
-#endif  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#endif  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 
 void SetShowErrorDialogs(bool enable_dialogs) {
   show_error_dialogs = enable_dialogs;
@@ -723,6 +725,8 @@
 #endif
   stream_ << std::endl;
   std::string str_newline(stream_.str());
+  TRACE_EVENT_INSTANT1("log", "LogMessage", TRACE_EVENT_SCOPE_THREAD, "message",
+                       str_newline);
 
   // Give any log message handler first dibs on the message.
   if (log_message_handler &&
@@ -939,6 +943,7 @@
       while (written < str_newline.length()) {
         int result = SbFileWrite(g_log_file, &(str_newline.c_str()[written]),
                                  str_newline.length() - written);
+        base::RecordFileWriteStat(result);
         if (result < 0) {
           break;
         }
diff --git a/base/logging.h b/base/logging.h
index e2e94b5..33cd785 100644
--- a/base/logging.h
+++ b/base/logging.h
@@ -412,12 +412,12 @@
 // LOG_IS_ON(DFATAL) always holds in debug mode. In particular, CHECK()s will
 // always fire if they fail.
 
-#if defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#if defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 #define LOG_IS_ON(severity) false
-#else  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#else  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 #define LOG_IS_ON(severity) \
   (::logging::ShouldCreateLogMessage(::logging::LOG_##severity))
-#endif  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#endif  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 
 // We can't do any caching tricks with VLOG_IS_ON() like the
 // google-glog version since it requires GCC extensions.  This means
@@ -445,9 +445,9 @@
 #define LOG_IF(severity, condition) \
   LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
 
-#if defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#if defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 #define LOG_ONCE(severity) EAT_STREAM_PARAMETERS
-#else  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#else  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 #define LOG_ONCE_MSG "[once] "
 
 constexpr uint32_t kFnvOffsetBasis32 = 0x811c9dc5U;
@@ -481,7 +481,7 @@
           ((::logging::LogOnceHelper<::logging::hash_32_fnv1a_const(__FILE__), \
                                     __LINE__>::logged_ = true) == true)))      \
       << LOG_ONCE_MSG
-#endif  // defined(OFFICIAL_BUILD) && !SB_IS(EVERGREEN)
+#endif  // defined(OFFICIAL_BUILD) && !SB_IS(MODULAR)
 
 // The VLOG macros log with negative verbosities.
 #define VLOG_STREAM(verbose_level) \
diff --git a/base/message_loop/message_loop.cc b/base/message_loop/message_loop.cc
index bd9808a..163c712 100644
--- a/base/message_loop/message_loop.cc
+++ b/base/message_loop/message_loop.cc
@@ -24,7 +24,6 @@
 #include "base/threading/thread_id_name_manager.h"
 #include "base/threading/thread_task_runner_handle.h"
 #include "base/trace_event/trace_event.h"
-#include "nb/memory_scope.h"
 
 namespace base {
 
@@ -405,7 +404,6 @@
 }
 
 void MessageLoop::SetThreadTaskRunnerHandle() {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   DCHECK_CALLED_ON_VALID_THREAD(bound_thread_checker_);
   // Clear the previous thread task runner first, because only one can exist at
   // a time.
@@ -531,7 +529,6 @@
 }
 
 bool MessageLoop::DoDelayedWork(TimeTicks* next_delayed_work_time) {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   if (!task_execution_allowed_ ||
       !pending_task_queue_.delayed_tasks().HasTasks()) {
     *next_delayed_work_time = TimeTicks();
diff --git a/base/message_loop/message_pump_io_starboard.cc b/base/message_loop/message_pump_io_starboard.cc
index 767dd1b..0194e54 100644
--- a/base/message_loop/message_pump_io_starboard.cc
+++ b/base/message_loop/message_pump_io_starboard.cc
@@ -20,7 +20,6 @@
 #include "base/observer_list.h"
 #include "base/posix/eintr_wrapper.h"
 #include "base/time/time.h"
-#include "nb/memory_scope.h"
 #include "starboard/common/socket.h"
 #include "starboard/socket_waiter.h"
 
@@ -171,7 +170,6 @@
 
 // Reentrant!
 void MessagePumpIOStarboard::Run(Delegate* delegate) {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   AutoReset<bool> auto_reset_in_run(&in_run_, true);
 
   for (;;) {
diff --git a/base/message_loop/message_pump_ui_starboard.cc b/base/message_loop/message_pump_ui_starboard.cc
index 9a30ca3..ca6ce46 100644
--- a/base/message_loop/message_pump_ui_starboard.cc
+++ b/base/message_loop/message_pump_ui_starboard.cc
@@ -17,7 +17,6 @@
 #include "base/logging.h"
 #include "base/run_loop.h"
 #include "base/time/time.h"
-#include "nb/memory_scope.h"
 #include "starboard/event.h"
 #include "starboard/system.h"
 
@@ -106,7 +105,6 @@
 
 void MessagePumpUIStarboard::ScheduleDelayedWork(
     const base::TimeTicks& delayed_work_time) {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   base::TimeDelta delay;
   if (!delayed_work_time.is_null()) {
     delay = delayed_work_time - base::TimeTicks::Now();
@@ -121,7 +119,6 @@
     // Make sure any outstanding delayed event is canceled.
     CancelDelayedLocked();
 
-    TRACK_MEMORY_SCOPE("MessageLoop");
     outstanding_delayed_events_.insert(
         SbEventSchedule(&CallMessagePumpDelayed, this, delay.ToSbTime()));
   }
@@ -154,7 +151,6 @@
 }
 
 void MessagePumpUIStarboard::CancelDelayedLocked() {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   outstanding_events_lock_.AssertAcquired();
   for (SbEventIdSet::iterator it = outstanding_delayed_events_.begin();
        it != outstanding_delayed_events_.end(); ++it) {
diff --git a/base/metrics/persistent_histogram_storage.cc b/base/metrics/persistent_histogram_storage.cc
index 3801baf..0fb9628 100644
--- a/base/metrics/persistent_histogram_storage.cc
+++ b/base/metrics/persistent_histogram_storage.cc
@@ -14,10 +14,6 @@
 #include "base/time/time.h"
 #include "build/build_config.h"
 
-#if defined(STARBOARD)
-#include "starboard/common/file.h"
-#endif
-
 namespace {
 
 constexpr size_t kAllocSize = 1 << 20;  // 1 MiB
@@ -99,14 +95,7 @@
   StringPiece contents(static_cast<const char*>(allocator->data()),
                        allocator->used());
 #if defined(STARBOARD)
-  // All path should be UTF8 above Starboard.
-  SbFileError error;
-  bool out_created;
-  starboard::ScopedFile sb_file(file_path.AsUTF8Unsafe().c_str(),
-                                kSbFileCreateAlways | kSbFileWrite,
-                                &out_created, &error);
-
-  int bytes_written = sb_file.WriteAll(contents.data(), contents.size());
+  int bytes_written = base::WriteFile(file_path, contents.data(), contents.size());
   if (bytes_written == contents.size()) {
 #else
   if (!ImportantFileWriter::WriteFileAtomically(file_path, contents)) {
diff --git a/base/run_loop.cc b/base/run_loop.cc
index 29deb1d..d4d87d7 100644
--- a/base/run_loop.cc
+++ b/base/run_loop.cc
@@ -12,7 +12,6 @@
 #include "base/threading/thread_local.h"
 #include "base/threading/thread_task_runner_handle.h"
 #include "build/build_config.h"
-#include "nb/memory_scope.h"
 
 namespace base {
 
@@ -256,7 +255,6 @@
 #endif  // DCHECK_IS_ON()
 
 bool RunLoop::BeforeRun() {
-  TRACK_MEMORY_SCOPE("MessageLoop");
   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
 
 #if DCHECK_IS_ON()
diff --git a/base/single_thread_task_runner.cc b/base/single_thread_task_runner.cc
index 3c1d832..49c9f0b 100644
--- a/base/single_thread_task_runner.cc
+++ b/base/single_thread_task_runner.cc
@@ -22,6 +22,12 @@
 #if defined(STARBOARD)
 namespace {
 
+#if defined(COBALT_BUILD_TYPE_DEBUG)
+const int kTimeWaitInterval = 10000;
+#else
+const int kTimeWaitInterval = 2000;
+#endif
+
 // Runs the given task, and then signals the given WaitableEvent.
 void RunAndSignal(const base::Closure& task, base::WaitableEvent* event) {
   TRACE_EVENT0("task", "RunAndSignal");
@@ -49,7 +55,8 @@
   if (task_may_run) {
     // Wait for the task to complete before proceeding.
     do {
-      if (task_finished.TimedWait(base::TimeDelta::FromMilliseconds(1000))) {
+      if (task_finished.TimedWait(
+              base::TimeDelta::FromMilliseconds(kTimeWaitInterval))) {
         break;
       }
 #if !defined(COBALT_BUILD_TYPE_GOLD)
diff --git a/base/sys_info_starboard.cc b/base/sys_info_starboard.cc
index b5aae9c..138a14c 100644
--- a/base/sys_info_starboard.cc
+++ b/base/sys_info_starboard.cc
@@ -15,9 +15,11 @@
 #include "base/sys_info.h"
 
 #include "base/logging.h"
+#include "starboard/common/system_property.h"
 #include "starboard/system.h"
 
 namespace base {
+ using starboard::kSystemPropertyMaxLength;
 
 // static
 int SysInfo::NumberOfProcessors() {
@@ -56,4 +58,17 @@
   return AmountOfPhysicalMemoryImpl();
 }
 
+// static
+std::string SysInfo::OperatingSystemName() {
+  char value[kSystemPropertyMaxLength];
+  SbSystemGetProperty(kSbSystemPropertyPlatformName, value,
+                      kSystemPropertyMaxLength);
+  return value;
+}
+
+// static
+std::string SysInfo::OperatingSystemVersion() {
+  return SysInfo::OperatingSystemName();
+}
+
 }  // namespace base
diff --git a/build/android/gradle/android.jinja b/build/android/gradle/android.jinja
index 40d4506..7d566dd 100644
--- a/build/android/gradle/android.jinja
+++ b/build/android/gradle/android.jinja
@@ -51,7 +51,7 @@
 
     defaultConfig {
         vectorDrawables.useSupportLibrary = true
-        minSdkVersion 21
+        minSdkVersion 24
         targetSdkVersion {{ target_sdk_version }}
     }
 
diff --git a/build/config/android/config.gni b/build/config/android/config.gni
index 652ea74..8ffe591 100644
--- a/build/config/android/config.gni
+++ b/build/config/android/config.gni
@@ -48,7 +48,7 @@
 
     # The default to use for android:minSdkVersion for targets that do
     # not explicitly set it.
-    default_min_sdk_version = 21
+    default_min_sdk_version = 24
 
     # [WIP] Allows devs to achieve much faster edit-build-install cycles.
     # Currently only works for ChromeModern apks due to incremental install.
@@ -62,8 +62,8 @@
     android32_ndk_api_level = default_min_sdk_version
 
     # Android API level for 64 bits platforms
-    if (default_min_sdk_version < 21) {
-      android64_ndk_api_level = 21
+    if (default_min_sdk_version < 24) {
+      android64_ndk_api_level = 24
     } else {
       android64_ndk_api_level = default_min_sdk_version
     }
@@ -81,8 +81,8 @@
 
   if (!defined(default_android_ndk_root)) {
     default_android_ndk_root = "//third_party/android_ndk"
-    default_android_ndk_version = "r22"
-    default_android_ndk_major_version = 22
+    default_android_ndk_version = "r25"
+    default_android_ndk_major_version = 25
   } else {
     assert(defined(default_android_ndk_version))
     assert(defined(default_android_ndk_major_version))
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index 8f7c597..3996b5a 100644
--- a/build/config/win/BUILD.gn
+++ b/build/config/win/BUILD.gn
@@ -590,21 +590,3 @@
 config("nominmax") {
   defines = [ "NOMINMAX" ]
 }
-
-# Visual Studio 2022 Upgrade --------------------------------------------------
-
-# TODO(b/210151198) Visual Studio 2022 upgrade compatibility changes.
-# To be deleted after the upgrade completes and 2022 is the default.
-
-if (is_starboard) {
-  config("visual_studio_version_compat") {
-    if (use_visual_studio_2022) {
-      cflags = [
-        "/wd4800",
-        "/wd4834",
-        "/wd4858",
-        "/wd5208"
-      ]
-    }
-  }
-}
diff --git a/build/config/win/visual_studio_version.gni b/build/config/win/visual_studio_version.gni
index 11f5f02..63b9a97 100644
--- a/build/config/win/visual_studio_version.gni
+++ b/build/config/win/visual_studio_version.gni
@@ -4,7 +4,7 @@
 
 if (is_starboard) {
   declare_args() {
-    visual_studio_version = "14.15.26726"
+    visual_studio_version = "14.34.31933"
 
     # Full path to the Windows SDK, not including a backslash at the end.
     # This value is the default location, override if you have a different
@@ -15,20 +15,6 @@
     if (current_os == "winuwp") {
       wdk_version = "10.0.22000.0"
     } else {
-      wdk_version = "10.0.17763.0"
-    }
-  }
-
-  # TODO(b/210151198) Visual Studio 2022 upgrade compatibility changes.
-  # This argument should be removed, and replace the defaults for the arguments
-  # that are being overriden correspondingly.
-  declare_args() {
-    use_visual_studio_2022 = getenv("VISUAL_STUDIO_VERSION") == "2022"
-  }
-
-  if (use_visual_studio_2022) {
-    visual_studio_version = "14.34.31933"
-    if (current_os != "winuwp") {
       wdk_version = "10.0.18362.0"
     }
   }
@@ -36,14 +22,9 @@
   if (is_docker_build) {
     _default_visual_studio_path = "C:/BuildTools"
   } else {
-    if (use_visual_studio_2022) {
-      _vis_std_year = "2022"
-    } else {
-      _vis_std_year = "2017"
-    }
-    _default_visual_studio_path = getenv("VS2022INSTALLDIR")
+    _default_visual_studio_path = getenv("VSINSTALLDIR")
     if (_default_visual_studio_path == "") {
-      _default_visual_studio_path = "C:/Program Files (x86)/Microsoft Visual Studio/$_vis_std_year/Professional"
+      _default_visual_studio_path = "C:/Program Files (x86)/Microsoft Visual Studio/2022/Professional"
     }
   }
 
diff --git a/build/toolchain/gcc_toolchain.gni b/build/toolchain/gcc_toolchain.gni
index df72296..2a2cc3c 100644
--- a/build/toolchain/gcc_toolchain.gni
+++ b/build/toolchain/gcc_toolchain.gni
@@ -117,7 +117,7 @@
 template("gcc_toolchain") {
   toolchain(target_name) {
     is_starboard_toolchain = target_name == "starboard"
-    if (!build_with_separate_cobalt_toolchain) {
+    if (!sb_is_modular || sb_is_evergreen) {
       not_needed(["is_starboard_toolchain"])
     }
     assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value")
@@ -391,7 +391,7 @@
       # TODO(b/206642994): see if we can remove this condition. It's needed for
       # now to add cflags for evergreen platforms but we haven't yet decided
       # whether cflags should be added here for all platforms.
-      if (is_starboard && sb_is_evergreen && !is_starboard_toolchain) {
+      if (!is_starboard_toolchain && is_starboard && sb_is_modular) {
         command = "$asm -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{cflags}} {{asmflags}}${extra_asmflags} -c {{source}} -o {{output}}"
       } else {
         command = "$asm -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{asmflags}}${extra_asmflags} -c {{source}} -o {{output}}"
@@ -457,14 +457,7 @@
       # .TOC file, overwrite it, otherwise, don't change it.
       tocfile = sofile + ".TOC"
 
-      # TODO(b/206642994): see if we can remove this condition. It's needed for
-      # now because we use the ld.lld linker for evergreen platforms and need to
-      # pass options as `option` instead of `-Wl,option`.
-      if (is_starboard && sb_is_evergreen && !is_starboard_toolchain) {
-        link_command = "$ld -shared -soname=\"$soname\" {{ldflags}}${extra_ldflags} -o \"$unstripped_sofile\" @\"$rspfile\""
-      } else {
-        link_command = "$ld -shared -Wl,-soname=\"$soname\" {{ldflags}}${extra_ldflags} -o \"$unstripped_sofile\" @\"$rspfile\""
-      }
+      link_command = "$ld -shared -Wl,-soname=\"$soname\" {{ldflags}}${extra_ldflags} -o \"$unstripped_sofile\" @\"$rspfile\""
 
       # Generate a map file to be used for binary size analysis.
       # Map file adds ~10% to the link time on a z620.
@@ -491,11 +484,6 @@
 
       if (target_cpu == "mipsel" && is_component_build && is_android) {
         rspfile_content = "-Wl,--start-group -Wl,--whole-archive {{inputs}} {{solibs}} -Wl,--no-whole-archive {{libs}} -Wl,--end-group$tail_lib_dependencies"
-        # TODO(b/206642994): see if we can remove this condition. It's needed for
-        # now because we use the ld.lld linker for evergreen platforms and need
-        # to pass options as `option` instead of `-Wl,option`.
-      } else if (is_starboard && sb_is_evergreen && !is_starboard_toolchain) {
-        rspfile_content = "--whole-archive {{inputs}} {{solibs}} --no-whole-archive {{libs}}$tail_lib_dependencies"
       } else {
         rspfile_content = "-Wl,--whole-archive {{inputs}} {{solibs}} -Wl,--no-whole-archive {{libs}}$tail_lib_dependencies"
       }
diff --git a/cobalt/BUILD.gn b/cobalt/BUILD.gn
index 867f45e..92fe9dc 100644
--- a/cobalt/BUILD.gn
+++ b/cobalt/BUILD.gn
@@ -66,24 +66,20 @@
     "//third_party/brotli:dec_no_dictionary_data",
   ]
 
-  if (sb_is_evergreen) {
-    deps += [
-      "//base/util/values:values_util",
-      "//cobalt/updater",
-      "//cobalt/updater:crash_sandbox",
-      "//cobalt/updater:noop_sandbox",
-      "//cobalt/updater:one_app_only_sandbox",
-      "//components/client_update_protocol",
-      "//components/crx_file",
-      "//components/prefs",
-      "//components/update_client",
-      "//third_party/llvm-project/compiler-rt:compiler_rt",
-      "//third_party/llvm-project/libcxx:cxx",
-      "//third_party/llvm-project/libcxxabi:cxxabi",
-      "//third_party/musl:c",
-    ]
-    if (!build_with_separate_cobalt_toolchain) {
-      deps += [ "//third_party/llvm-project/libunwind:unwind_evergreen" ]
+  if (sb_is_modular) {
+    deps += [ "//base/util/values:values_util" ]
+    if (sb_is_evergreen) {
+      deps += [
+        # TODO(b/294247612): Remove unnecessary dependencies.
+        "//cobalt/updater",
+        "//cobalt/updater:crash_sandbox",
+        "//cobalt/updater:noop_sandbox",
+        "//cobalt/updater:one_app_only_sandbox",
+        "//components/client_update_protocol",
+        "//components/crx_file",
+        "//components/prefs",
+        "//components/update_client",
+      ]
     }
   }
 }
diff --git a/cobalt/account/user_authorizer.h b/cobalt/account/user_authorizer.h
index 784984a..a0eb78c 100644
--- a/cobalt/account/user_authorizer.h
+++ b/cobalt/account/user_authorizer.h
@@ -20,7 +20,6 @@
 
 #include "base/optional.h"
 #include "base/time/time.h"
-#include "starboard/user.h"
 
 namespace cobalt {
 namespace account {
@@ -35,7 +34,7 @@
 
 // Platform-specific mechanism to authorize a user to access protected resources
 // in a web app running in Cobalt. Manages getting, refreshing, and discarding
-// an access token associated with a platform user identified by a |SbUser|.
+// an access token associated with a platform user.
 class UserAuthorizer {
  public:
   UserAuthorizer() {}
@@ -51,7 +50,7 @@
   // including an invalid |user|, or user cancellation of the authorization
   // process.
   // On success, a std::unique_ptr holding a valid AccessToken is returned.
-  virtual std::unique_ptr<AccessToken> AuthorizeUser(SbUser user) = 0;
+  virtual std::unique_ptr<AccessToken> AuthorizeUser() = 0;
 
   // Remove authorization for |user| to use application resources (i.e.
   // sign-out).  This call will block until the linking process is complete,
@@ -62,7 +61,7 @@
   // succeeded.
   // Returns false if the process failed for any reason including an invalid
   // |user|, or user cancellation.
-  virtual bool DeauthorizeUser(SbUser user) = 0;
+  virtual bool DeauthorizeUser() = 0;
 
   // Requests a new access token to extend authorization for |user| to continue
   // using application resources.
@@ -71,7 +70,7 @@
   // including an invalid |user|, or |user| not already being authorized (in
   // which case AuthorizeUser should be called).
   // On success, a std::unique_ptr holding a valid AccessToken is returned.
-  virtual std::unique_ptr<AccessToken> RefreshAuthorization(SbUser user) = 0;
+  virtual std::unique_ptr<AccessToken> RefreshAuthorization() = 0;
 
   // Signals that the account manager is shutting down, and unblocks any pending
   // request. Calling other methods after |Shutdown| may have no effect.
diff --git a/cobalt/audio/async_audio_decoder.cc b/cobalt/audio/async_audio_decoder.cc
index c7885a1..df527e3 100644
--- a/cobalt/audio/async_audio_decoder.cc
+++ b/cobalt/audio/async_audio_decoder.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/audio/async_audio_decoder.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "base/logging.h"
 #include "cobalt/audio/audio_file_reader.h"
diff --git a/cobalt/audio/audio_device.cc b/cobalt/audio/audio_device.cc
index 7aae3b4..c2806c0 100644
--- a/cobalt/audio/audio_device.cc
+++ b/cobalt/audio/audio_device.cc
@@ -12,17 +12,15 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/audio/audio_device.h"
+
 #include <algorithm>
 #include <memory>
 
-#include "cobalt/audio/audio_device.h"
-
-#include "starboard/configuration.h"
-
 #include "base/trace_event/trace_event.h"
 #include "cobalt/audio/audio_helpers.h"
-
 #include "starboard/audio_sink.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace audio {
diff --git a/cobalt/audio/audio_file_reader.cc b/cobalt/audio/audio_file_reader.cc
index 3dad138..9b590d7 100644
--- a/cobalt/audio/audio_file_reader.cc
+++ b/cobalt/audio/audio_file_reader.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/audio/audio_file_reader.h"
 
+#include <memory>
+
 #include "cobalt/audio/audio_file_reader_wav.h"
 
 namespace cobalt {
diff --git a/cobalt/audio/audio_file_reader_wav.cc b/cobalt/audio/audio_file_reader_wav.cc
index c81ef88..ea8aa97 100644
--- a/cobalt/audio/audio_file_reader_wav.cc
+++ b/cobalt/audio/audio_file_reader_wav.cc
@@ -12,12 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/audio/audio_file_reader_wav.h"
+
 #include <memory>
 #include <sstream>
 #include <string>
 
-#include "cobalt/audio/audio_file_reader_wav.h"
-
 #include "base/basictypes.h"
 #include "base/logging.h"
 #include "cobalt/media/base/endian_util.h"
diff --git a/cobalt/audio/audio_node_input.cc b/cobalt/audio/audio_node_input.cc
index 977d67e..41d186b 100644
--- a/cobalt/audio/audio_node_input.cc
+++ b/cobalt/audio/audio_node_input.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/audio/audio_node_input.h"
 
+#include <memory>
+
 #include "base/logging.h"
 #include "cobalt/audio/audio_context.h"
 #include "cobalt/audio/audio_node.h"
@@ -101,16 +101,36 @@
     // output.R = R + 0.7071 * (input.C + input.SR)
     const float kFivePointOneToStereoMatrixSpeaker[] = {
         // 1.0 * L + 0.0 * R + 0.7071 * C + 0.0 * LFE + 0.7071 * SL + 0.0 * SR
-        1.0f, 0.0f, 0.7071f, 0.0f, 0.7071f, 0.0f,
+        1.0f,
+        0.0f,
+        0.7071f,
+        0.0f,
+        0.7071f,
+        0.0f,
         // 0.0 * L + 1.0 * R + 0.7071 * C + 0.0 * LFE + 0.0 * SL + 0.7071 * SR
-        0.0f, 1.0f, 0.7071f, 0.0f, 0.0f, 0.7071f,
+        0.0f,
+        1.0f,
+        0.7071f,
+        0.0f,
+        0.0f,
+        0.7071f,
     };
 
     const float kFivePointOneToStereoMatrixDiscrete[] = {
         // 1.0 * L + 0.0 * R + 0.0 * C + 0.0 * LFE + 0.0 * SL + 0.0 * SR
-        1.f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f,
+        1.f,
+        0.0f,
+        0.0f,
+        0.0f,
+        0.0f,
+        0.0f,
         // 0.0 * L + 1.0 * R + 0.0 * C + 0.0 * LFE + 0.0 * SL + 0.0 * SR
-        0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f,
+        0.0f,
+        1.0f,
+        0.0f,
+        0.0f,
+        0.0f,
+        0.0f,
     };
 
     MixAudioBufferBasedOnInterpretation(
@@ -137,12 +157,18 @@
     // output = 0.25 * (input.L + input.R + input.SL + input.SR);
     const float kQuadToMonoSpeaker[] = {
         // 0.25 * L + 0.25 * R + 0.25 * SL + 0.25 * SR
-        0.25f, 0.25f, 0.25f, 0.25f,
+        0.25f,
+        0.25f,
+        0.25f,
+        0.25f,
     };
 
     const float kQuadToMonoDiscrete[] = {
         // 1.0 * L + 0.0 * R + 0.0 * SL + 0.0 * SR
-        1.0f, 0.0f, 0.0f, 0.0f,
+        1.0f,
+        0.0f,
+        0.0f,
+        0.0f,
     };
 
     MixAudioBufferBasedOnInterpretation(kQuadToMonoSpeaker, kQuadToMonoDiscrete,
diff --git a/cobalt/audio/audio_node_output.cc b/cobalt/audio/audio_node_output.cc
index ed6c507..4b6c0c2 100644
--- a/cobalt/audio/audio_node_output.cc
+++ b/cobalt/audio/audio_node_output.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/audio/audio_node_output.h"
 
+#include <memory>
+
 #include "base/logging.h"
 #include "cobalt/audio/audio_context.h"
 #include "cobalt/audio/audio_node.h"
diff --git a/cobalt/base/BUILD.gn b/cobalt/base/BUILD.gn
index e335403..5552a2e 100644
--- a/cobalt/base/BUILD.gn
+++ b/cobalt/base/BUILD.gn
@@ -13,7 +13,7 @@
 # limitations under the License.
 
 config("base_config") {
-  defines = [ "COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS" ]
+  defines = []
 
   if (is_debug || is_devel) {
     defines += [
@@ -70,6 +70,7 @@
     "ref_counted_lock.h",
     "source_location.cc",
     "source_location.h",
+    "starboard_stats_tracker.h",
     "startup_timer.cc",
     "startup_timer.h",
     "statistics.h",
diff --git a/cobalt/base/c_val.h b/cobalt/base/c_val.h
index cc285c9..fde535a 100644
--- a/cobalt/base/c_val.h
+++ b/cobalt/base/c_val.h
@@ -235,17 +235,16 @@
   oss << std::fixed << std::setprecision(1) << std::setfill('0');
   if (value_in_us > kHour) {
     oss << value_in_us / kHour << ":" << std::setw(2)
-        << (value_in_us % kHour) / kMinute << ":"
-        << std::setw(2) << (value_in_us % kMinute) / kSecond << "h";
+        << (value_in_us % kHour) / kMinute << ":" << std::setw(2)
+        << (value_in_us % kMinute) / kSecond << "h";
   } else if (value_in_us > kMinute) {
     oss << value_in_us / kMinute << ":" << std::setw(2)
         << (value_in_us % kMinute) / kSecond << "m";
   } else if (value_in_us > kSecond) {
-    oss << std::setw(1)
-        << static_cast<double>(value_in_us) / kSecond << "s";
+    oss << std::setw(1) << static_cast<double>(value_in_us) / kSecond << "s";
   } else if (value_in_us > kMillisecond) {
-    oss << std::setw(1)
-        << static_cast<double>(value_in_us) / kMillisecond << "ms";
+    oss << std::setw(1) << static_cast<double>(value_in_us) / kMillisecond
+        << "ms";
   } else {
     oss << value_in_us << "us";
   }
@@ -646,10 +645,8 @@
  public:
   CValStub(const std::string& name, const T& initial_value,
            const std::string& description)
-      : value_(initial_value) {
-  }
-  CValStub(const std::string& name, const std::string& description) {
-  }
+      : value_(initial_value) {}
+  CValStub(const std::string& name, const std::string& description) {}
 
   operator T() const { return value_; }
 
diff --git a/cobalt/base/c_val_collection_entry_stats.h b/cobalt/base/c_val_collection_entry_stats.h
index 83b038a..69dec89 100644
--- a/cobalt/base/c_val_collection_entry_stats.h
+++ b/cobalt/base/c_val_collection_entry_stats.h
@@ -319,12 +319,10 @@
   typedef CValCollectionEntryStatsFlushResults<EntryType> FlushResults;
   typedef typename FlushResults::OnFlushCallback OnFlushCallback;
 
-  explicit CValCollectionEntryStatsStub(const std::string& name) {
-  }
+  explicit CValCollectionEntryStatsStub(const std::string& name) {}
   CValCollectionEntryStatsStub(
       const std::string& name, size_t max_size, bool enable_entry_list_c_val,
-      const OnFlushCallback& on_flush = OnFlushCallback()) {
-  }
+      const OnFlushCallback& on_flush = OnFlushCallback()) {}
 
   void AddEntry(const EntryType& value) {}
   void Flush() {}
diff --git a/cobalt/base/c_val_collection_entry_stats_test.cc b/cobalt/base/c_val_collection_entry_stats_test.cc
index f49ed30..153aa96 100644
--- a/cobalt/base/c_val_collection_entry_stats_test.cc
+++ b/cobalt/base/c_val_collection_entry_stats_test.cc
@@ -12,16 +12,17 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/base/c_val_collection_entry_stats.h"
+
 #include <string>
 
-#include "cobalt/base/c_val_collection_entry_stats.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace base {
 
diff --git a/cobalt/base/c_val_collection_timer_stats_test.cc b/cobalt/base/c_val_collection_timer_stats_test.cc
index b99c2de..273bb4b 100644
--- a/cobalt/base/c_val_collection_timer_stats_test.cc
+++ b/cobalt/base/c_val_collection_timer_stats_test.cc
@@ -12,17 +12,18 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/base/c_val_collection_timer_stats.h"
+
 #include <string>
 
 #include "base/time/time.h"
-#include "cobalt/base/c_val_collection_timer_stats.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace base {
 
diff --git a/cobalt/base/c_val_test.cc b/cobalt/base/c_val_test.cc
index 56477c0..7f34992 100644
--- a/cobalt/base/c_val_test.cc
+++ b/cobalt/base/c_val_test.cc
@@ -12,20 +12,21 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/base/c_val.h"
+
 #include <limits>
 #include <utility>
 
 #include "base/synchronization/waitable_event.h"
 #include "base/threading/simple_thread.h"
 #include "base/time/time.h"
-#include "cobalt/base/c_val.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace base {
 
@@ -662,7 +663,7 @@
 
 // Tests that we can create and destroy cvals no problem while simultaneously
 // reading from them.  The test creates two threads, a reader thread and a
-// creater/destroyer (and writer) thread.  These both attempt to access the same
+// creator/destroyer (and writer) thread.  These both attempt to access the same
 // cval as fast as possible.
 TEST(CValTest, RemoveAndRead) {
   const char* kTestCValName = "TestCVal";
diff --git a/cobalt/base/c_val_time_interval_entry_stats.h b/cobalt/base/c_val_time_interval_entry_stats.h
index 81dd774..075d9ef 100644
--- a/cobalt/base/c_val_time_interval_entry_stats.h
+++ b/cobalt/base/c_val_time_interval_entry_stats.h
@@ -186,8 +186,7 @@
 class CValTimeIntervalEntryStatsStub {
  public:
   CValTimeIntervalEntryStatsStub(const std::string& name,
-                                 int64 time_interval_in_ms) {
-  }
+                                 int64 time_interval_in_ms) {}
 
   void AddEntry(const EntryType& value) {}
   void AddEntry(const EntryType& value, const base::TimeTicks& now) {}
diff --git a/cobalt/base/c_val_time_interval_entry_stats_test.cc b/cobalt/base/c_val_time_interval_entry_stats_test.cc
index be3d93b..56bd15d 100644
--- a/cobalt/base/c_val_time_interval_entry_stats_test.cc
+++ b/cobalt/base/c_val_time_interval_entry_stats_test.cc
@@ -12,16 +12,17 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/base/c_val_time_interval_entry_stats.h"
+
 #include <string>
 
-#include "cobalt/base/c_val_time_interval_entry_stats.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace base {
 
diff --git a/cobalt/base/c_val_time_interval_timer_stats_test.cc b/cobalt/base/c_val_time_interval_timer_stats_test.cc
index 15190c5..a5ae787 100644
--- a/cobalt/base/c_val_time_interval_timer_stats_test.cc
+++ b/cobalt/base/c_val_time_interval_timer_stats_test.cc
@@ -12,17 +12,18 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/base/c_val_time_interval_timer_stats.h"
+
 #include <string>
 
 #include "base/time/time.h"
-#include "cobalt/base/c_val_time_interval_timer_stats.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace base {
 
diff --git a/cobalt/base/circular_buffer_shell.h b/cobalt/base/circular_buffer_shell.h
index add70ea..e9fa42e 100644
--- a/cobalt/base/circular_buffer_shell.h
+++ b/cobalt/base/circular_buffer_shell.h
@@ -1,9 +1,10 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
 // Copyright (c) 2014 Google Inc. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#ifndef BASE_CIRCULAR_BUFFER_SHELL_H_
-#define BASE_CIRCULAR_BUFFER_SHELL_H_
+#ifndef COBALT_BASE_CIRCULAR_BUFFER_SHELL_H_
+#define COBALT_BASE_CIRCULAR_BUFFER_SHELL_H_
 
 #include "base/base_export.h"
 #include "base/synchronization/lock.h"
@@ -101,4 +102,4 @@
 
 }  // namespace base
 
-#endif  // BASE_CIRCULAR_BUFFER_SHELL_H_
+#endif  // COBALT_BASE_CIRCULAR_BUFFER_SHELL_H_
diff --git a/cobalt/base/circular_buffer_shell_unittest.cc b/cobalt/base/circular_buffer_shell_unittest.cc
index 9c90eaf..444db67 100644
--- a/cobalt/base/circular_buffer_shell_unittest.cc
+++ b/cobalt/base/circular_buffer_shell_unittest.cc
@@ -1,4 +1,5 @@
 /*
+ * Copyright 2023 The Cobalt Authors. All Rights Reserved.
  * Copyright 2014 Google Inc. All Rights Reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,6 +19,8 @@
 
 #include <string.h>
 
+#include <memory>
+
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace {
diff --git a/cobalt/base/event.h b/cobalt/base/event.h
index 5e860f2..71e73ec 100644
--- a/cobalt/base/event.h
+++ b/cobalt/base/event.h
@@ -20,7 +20,7 @@
 namespace base {
 
 // Event is an abstract, generic class representing some system event that
-// occured.  Event producers like a SystemWindow will produce these events
+// occurred.  Event producers like a SystemWindow will produce these events
 // and dispatch them to the registered callbacks.
 // Derived classes should add the BASE_EVENT_SUBCLASS() macro to their public
 // attributes.
diff --git a/cobalt/base/event_dispatcher.cc b/cobalt/base/event_dispatcher.cc
index 018a505..1336d8f 100644
--- a/cobalt/base/event_dispatcher.cc
+++ b/cobalt/base/event_dispatcher.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/base/event_dispatcher.h"
 
+#include <memory>
+
 #include "base/logging.h"
 
 namespace base {
diff --git a/cobalt/base/event_dispatcher.h b/cobalt/base/event_dispatcher.h
index 3cc9d3a..cbc6743 100644
--- a/cobalt/base/event_dispatcher.h
+++ b/cobalt/base/event_dispatcher.h
@@ -48,7 +48,7 @@
   void RemoveEventCallback(TypeId type, const EventCallback& cb);
 
  private:
-  typedef hash_map<TypeId, std::vector<EventCallback> > CallbackMap;
+  typedef base::hash_map<TypeId, std::vector<EventCallback> > CallbackMap;
   CallbackMap event_callbacks_;
   // Lock to protect access to the callback map.
   mutable base::Lock lock_;
diff --git a/cobalt/base/generated_resources_types.h b/cobalt/base/generated_resources_types.h
index 0597a12..9b807e5 100644
--- a/cobalt/base/generated_resources_types.h
+++ b/cobalt/base/generated_resources_types.h
@@ -16,12 +16,12 @@
 #define COBALT_BASE_GENERATED_RESOURCES_TYPES_H_
 
 #include <string>
+
 #include "base/containers/hash_tables.h"
 
 struct FileContents {
   FileContents() {}
-  FileContents(const unsigned char *data, int size)
-      : data(data), size(size) {}
+  FileContents(const unsigned char *data, int size) : data(data), size(size) {}
 
   const unsigned char *data;
   int size;
diff --git a/cobalt/base/localized_strings.cc b/cobalt/base/localized_strings.cc
index 3388ca7..48f88bd 100644
--- a/cobalt/base/localized_strings.cc
+++ b/cobalt/base/localized_strings.cc
@@ -16,7 +16,10 @@
 
 #include <algorithm>
 
+#include "base/files/file_path.h"
+#include "base/files/file_util.h"
 #include "base/logging.h"
+#include "base/optional.h"
 #include "starboard/common/file.h"
 #include "starboard/common/log.h"
 #include "starboard/system.h"
@@ -26,64 +29,19 @@
 
 namespace {
 
-std::string GetFilenameForLanguage(const std::string& language) {
+base::Optional<base::FilePath> GetFilenameForLanguage(
+    const std::string& language) {
   const int kBufferSize = 256;
   char buffer[kBufferSize];
   bool got_path =
       SbSystemGetPath(kSbSystemPathContentDirectory, buffer, kBufferSize);
   if (!got_path) {
     DLOG(ERROR) << "Cannot get content path for i18n files.";
-    return std::string();
+    return base::nullopt;
   }
 
-  return std::string(buffer).append("/i18n/").append(language).append(".csv");
-}
-
-bool ReadFile(const std::string& filename, std::string* out_result) {
-  DCHECK_GT(filename.length(), 0);
-  DCHECK(out_result);
-
-  starboard::ScopedFile file(filename.c_str(), kSbFileOpenOnly | kSbFileRead);
-  if (!file.IsValid()) {
-    DLOG(WARNING) << "Cannot open i18n file: " << filename;
-    return false;
-  }
-
-  SbFileInfo file_info = {0};
-  bool got_info = file.GetInfo(&file_info);
-  if (!got_info) {
-    DLOG(ERROR) << "Cannot get information for i18n file.";
-    return false;
-  }
-  DCHECK_GT(file_info.size, 0);
-
-  const int kMaxBufferSize = 16 * 1024;
-  if (file_info.size > kMaxBufferSize) {
-    DLOG(ERROR) << "i18n file exceeds maximum size: " << file_info.size << " ("
-                << kMaxBufferSize << ")";
-    return false;
-  }
-
-  char* buffer = new char[file_info.size];
-  DCHECK(buffer);
-  int64_t bytes_to_read = file_info.size;
-  char* buffer_pos = buffer;
-  while (bytes_to_read > 0) {
-    int max_bytes_to_read = static_cast<int>(
-        std::min(static_cast<int64_t>(kSbInt32Max), bytes_to_read));
-    int bytes_read = file.Read(buffer_pos, max_bytes_to_read);
-    if (bytes_read < 0) {
-      DLOG(ERROR) << "Read from i18n file failed.";
-      delete[] buffer;
-      return false;
-    }
-    bytes_to_read -= bytes_read;
-    buffer_pos += bytes_read;
-  }
-
-  *out_result = std::string(buffer, file_info.size);
-  delete[] buffer;
-  return true;
+  return base::FilePath(buffer).Append("i18n").Append(language).AddExtension(
+      "csv");
 }
 
 }  // namespace
@@ -123,9 +81,13 @@
 }
 
 bool LocalizedStrings::LoadStrings(const std::string& language) {
-  const std::string filename = GetFilenameForLanguage(language);
+  auto opt_file_path = GetFilenameForLanguage(language);
+  if (!opt_file_path) {
+    return false;
+  }
+  auto file_path = opt_file_path.value();
   std::string file_contents;
-  if (!ReadFile(filename, &file_contents)) {
+  if (!base::ReadFileToString(file_path, &file_contents)) {
     DLOG_ONCE(ERROR) << "Error reading i18n file.";
     return false;
   }
diff --git a/cobalt/base/log_message_handler.h b/cobalt/base/log_message_handler.h
index 798a067..fcfca06 100644
--- a/cobalt/base/log_message_handler.h
+++ b/cobalt/base/log_message_handler.h
@@ -66,7 +66,8 @@
  private:
   // Type for map of callbacks.
   typedef std::map<LogMessageHandler::CallbackId,
-                   LogMessageHandler::OnLogMessageCallback> CallbackMap;
+                   LogMessageHandler::OnLogMessageCallback>
+      CallbackMap;
 
   // This class should only be instanced by the base::Singleton.
   LogMessageHandler();
diff --git a/cobalt/base/message_queue.h b/cobalt/base/message_queue.h
index be36eea..34fd96a 100644
--- a/cobalt/base/message_queue.h
+++ b/cobalt/base/message_queue.h
@@ -16,6 +16,7 @@
 #define COBALT_BASE_MESSAGE_QUEUE_H_
 
 #include <queue>
+
 #include "base/callback.h"
 #include "base/logging.h"
 #include "base/synchronization/lock.h"
diff --git a/cobalt/base/path_provider.cc b/cobalt/base/path_provider.cc
index 6dfbbe7..c1a543d 100644
--- a/cobalt/base/path_provider.cc
+++ b/cobalt/base/path_provider.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/base/path_provider.h"
 
+#include <memory>
+
 #include "base/files/file_path.h"
 #include "base/files/file_util.h"
 #include "base/logging.h"
diff --git a/cobalt/base/poller.h b/cobalt/base/poller.h
index 2a66ea5..aa3069a 100644
--- a/cobalt/base/poller.h
+++ b/cobalt/base/poller.h
@@ -60,9 +60,7 @@
     timer_->Start(FROM_HERE, period, user_task);
   }
 
-  void StopTimer() {
-    timer_.reset();
-  }
+  void StopTimer() { timer_.reset(); }
 
   base::MessageLoop* message_loop_;
   std::unique_ptr<RepeatingTimer<Poller> > timer_;
diff --git a/cobalt/base/starboard_stats_tracker.h b/cobalt/base/starboard_stats_tracker.h
new file mode 100644
index 0000000..aea4161
--- /dev/null
+++ b/cobalt/base/starboard_stats_tracker.h
@@ -0,0 +1,67 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#ifndef COBALT_BASE_STARBOARD_STATS_TRACKER_H_
+#define COBALT_BASE_STARBOARD_STATS_TRACKER_H_
+
+#include "cobalt/base/c_val.h"
+#include "starboard/common/metrics/stats_tracker.h"
+
+class StarboardStatsTracker : public starboard::StatsTracker {
+ public:
+  StarboardStatsTracker()
+      : file_write_success_("Starboard.FileWrite.Success", 0,
+                            "SbFileWrite() success count from cobalt."),
+        file_write_fail_("Starboard.FileWrite.Fail", 0,
+                         "SbFileWrite() fail count from cobalt."),
+        file_write_bytes_written_("Starboard.FileWrite.BytesWritten", 0,
+                                  "SbFileWrite() bytes written from cobalt."),
+        storage_write_record_success_(
+            "Starboard.StorageWriteRecord.Success", 0,
+            "SbStorageWriteRecord() success count from cobalt."),
+        storage_write_record_fail_(
+            "Starboard.StorageWriteRecord.Fail", 0,
+            "SbStorageWriteRecord() fail count from cobalt."),
+        storage_write_record_bytes_written_(
+            "Starboard.StorageWriteRecord.BytesWritten", 0,
+            "SbStorageWriteRecord() bytes written from cobalt.") {}
+
+  void FileWriteSuccess() override { ++file_write_success_; }
+
+  void FileWriteFail() override { ++file_write_fail_; }
+
+  void FileWriteBytesWritten(int bytes_written) override {
+    file_write_bytes_written_ += bytes_written;
+  }
+
+  void StorageWriteRecordSuccess() override { ++storage_write_record_success_; }
+
+  void StorageWriteRecordFail() override { ++storage_write_record_fail_; }
+
+  void StorageWriteRecordBytesWritten(int bytes_written) override {
+    storage_write_record_bytes_written_ += bytes_written;
+  }
+
+ private:
+  base::CVal<int, base::CValPublic> file_write_success_;
+  base::CVal<int, base::CValPublic> file_write_fail_;
+  base::CVal<base::cval::SizeInBytes, base::CValPublic>
+      file_write_bytes_written_;
+  base::CVal<int, base::CValPublic> storage_write_record_success_;
+  base::CVal<int, base::CValPublic> storage_write_record_fail_;
+  base::CVal<base::cval::SizeInBytes, base::CValPublic>
+      storage_write_record_bytes_written_;
+};
+
+#endif  // COBALT_BASE_STARBOARD_STATS_TRACKER_H_
diff --git a/cobalt/base/token_test.cc b/cobalt/base/token_test.cc
index 4dcb597..2ba7a64 100644
--- a/cobalt/base/token_test.cc
+++ b/cobalt/base/token_test.cc
@@ -17,10 +17,9 @@
 #include <algorithm>
 #include <vector>
 
-#include "testing/gtest/include/gtest/gtest.h"
-
 #include "base/logging.h"
 #include "starboard/common/string.h"
+#include "testing/gtest/include/gtest/gtest.h"
 
 namespace base {
 namespace {
diff --git a/cobalt/base/unicode/character.cc b/cobalt/base/unicode/character.cc
index a5fb6ad..ac0736d 100644
--- a/cobalt/base/unicode/character.cc
+++ b/cobalt/base/unicode/character.cc
@@ -26,17 +26,17 @@
 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-#include <algorithm>
-
 #include "cobalt/base/unicode/character.h"
 
+#include <algorithm>
+
 namespace base {
 namespace unicode {
 namespace {
 
 // Takes a flattened list of closed intervals
 template <class T, size_t size>
-bool ValueInIntervalList(const T(&intervalList)[size], const T& value) {
+bool ValueInIntervalList(const T (&intervalList)[size], const T& value) {
   const T* bound =
       std::upper_bound(&intervalList[0], &intervalList[size], value);
   if ((bound - intervalList) % 2 == 1) return true;
diff --git a/cobalt/base/unicode/character.h b/cobalt/base/unicode/character.h
index dae1b1b..bef9010 100644
--- a/cobalt/base/unicode/character.h
+++ b/cobalt/base/unicode/character.h
@@ -30,7 +30,6 @@
 #define COBALT_BASE_UNICODE_CHARACTER_H_
 
 #include "cobalt/base/unicode/character_values.h"
-
 #include "third_party/icu/source/common/unicode/uchar.h"
 
 namespace base {
diff --git a/cobalt/base/version_compatibility.cc b/cobalt/base/version_compatibility.cc
index 6b16d88..01149e3 100644
--- a/cobalt/base/version_compatibility.cc
+++ b/cobalt/base/version_compatibility.cc
@@ -12,8 +12,6 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
-
 #include "cobalt/base/version_compatibility.h"
 
 #include "base/logging.h"
@@ -49,5 +47,3 @@
 }
 
 }  // namespace base
-
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
diff --git a/cobalt/base/version_compatibility.h b/cobalt/base/version_compatibility.h
index aa4898e..cb22e24 100644
--- a/cobalt/base/version_compatibility.h
+++ b/cobalt/base/version_compatibility.h
@@ -15,8 +15,6 @@
 #ifndef COBALT_BASE_VERSION_COMPATIBILITY_H_
 #define COBALT_BASE_VERSION_COMPATIBILITY_H_
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
-
 #include <string>
 
 #include "base/atomicops.h"
@@ -57,6 +55,4 @@
 
 }  // namespace base
 
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
-
 #endif  // COBALT_BASE_VERSION_COMPATIBILITY_H_
diff --git a/cobalt/base/wrap_main_starboard.h b/cobalt/base/wrap_main_starboard.h
index db37f6c..e60b7fc 100644
--- a/cobalt/base/wrap_main_starboard.h
+++ b/cobalt/base/wrap_main_starboard.h
@@ -24,7 +24,7 @@
 #include "starboard/client_porting/wrap_main/wrap_main.h"
 #include "starboard/event.h"
 #include "starboard/system.h"
-#if SB_IS(EVERGREEN)
+#if SB_IS(MODULAR)
 #include "third_party/musl/src/starboard/internal/hwcap_impl.h"
 #endif
 
@@ -45,7 +45,7 @@
       DCHECK(!g_started);
       DCHECK(!g_at_exit);
       g_at_exit = new base::AtExitManager();
-#if SB_IS(EVERGREEN)
+#if SB_IS(MODULAR)
       init_musl_hwcap();
 #endif
       InitCobalt(data->argument_count, data->argument_values, data->link);
@@ -64,7 +64,7 @@
       if (!g_started) {
         DCHECK(!g_at_exit);
         g_at_exit = new base::AtExitManager();
-#if SB_IS(EVERGREEN)
+#if SB_IS(MODULAR)
         init_musl_hwcap();
 #endif
         InitCobalt(data->argument_count, data->argument_values, data->link);
diff --git a/cobalt/bindings/README.md b/cobalt/bindings/README.md
index 18269ee..09758eb 100644
--- a/cobalt/bindings/README.md
+++ b/cobalt/bindings/README.md
@@ -166,4 +166,3 @@
 Bindings test is tested in isolation via the bindings_test target.  Because bindings is the bridge from the JavaScript engine to the DOM, bindings test works by having an [entirely separate set of IDL](https://cobalt.googlesource.com/cobalt/+/2a8c847d785c1602f60915c8e0112e0aec6a15a5/src/cobalt/bindings/testing/testing.gyp?type=cs&sq=package:%5Ecobalt$&g=0#27) files that contain [minimal internal logic](https://cobalt.googlesource.com/cobalt/+/2a8c847d785c1602f60915c8e0112e0aec6a15a5/src/cobalt/bindings/testing/arbitrary_interface.h?q=arbitrary_interface&sq=package:%5Ecobalt$&dr=CSs#27), and are meant to [stress Web IDL features](https://cobalt.googlesource.com/cobalt/+/2a8c847d785c1602f60915c8e0112e0aec6a15a5/src/cobalt/bindings/testing/numeric_types_test_interface.idl?sq=package:%5Ecobalt$&dr=CSs&g=0).  This is accomplished by parameterizing what IDL files should get compiled at gyp time.  All other parts of the bindings build pipeline (such as the IDL compiler and jinja templates) are shared between bindings_test and cobalt entirely.  Note that bindings_test lives above the script/ interface, so no engine specific APIs can be used within the tests.
 
 Additionally, when it is convenient to implement a test entirely within JavaScript, certain script/ and bindings/ features are tested within layout_tests and web_platform_tests (see for example, [platform-object-user-properties-survive-gc.html](https://cobalt.googlesource.com/cobalt/+/2a8c847d785c1602f60915c8e0112e0aec6a15a5/src/cobalt/layout_tests/testdata/cobalt/platform-object-user-properties-survive-gc.html?type=cs&q=platform-object-user&sq=package:%5Ecobalt$&g=0#1)).  These serve as higher level, more end-to-end tests, that are good for testing more complex examples that also involve Cobalt's usage of script/.
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_indexed_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_indexed_getter_interface.cc
index d9037d8..a075e78 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_indexed_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_indexed_getter_interface.cc
@@ -213,7 +213,7 @@
                     [](v8::Isolate* isolate, AnonymousIndexedGetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->length(),
               &result_value);
@@ -368,5 +368,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_getter_interface.cc
index b1eb1fc..889b4a2 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_getter_interface.cc
@@ -376,5 +376,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_indexed_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_indexed_getter_interface.cc
index 1507906..a134146 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_indexed_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_anonymous_named_indexed_getter_interface.cc
@@ -322,7 +322,7 @@
                     [](v8::Isolate* isolate, AnonymousNamedIndexedGetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->length(),
               &result_value);
@@ -489,5 +489,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_arbitrary_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_arbitrary_interface.cc
index 6ccd0b9..35c9c48 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_arbitrary_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_arbitrary_interface.cc
@@ -130,7 +130,7 @@
                     [](v8::Isolate* isolate, ArbitraryInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->arbitrary_property(),
               &result_value);
@@ -353,5 +353,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_base_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_base_interface.cc
index a529fc2..81542b8 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_base_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_base_interface.cc
@@ -130,7 +130,7 @@
                     [](v8::Isolate* isolate, BaseInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->base_attribute(),
               &result_value);
@@ -331,5 +331,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_boolean_type_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_boolean_type_test_interface.cc
index 260c18e..cc68c22 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_boolean_type_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_boolean_type_test_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, BooleanTypeTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->boolean_property(),
               &result_value);
@@ -419,5 +419,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_function_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_function_interface.cc
index 5c911dd..1e61da7 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_function_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_function_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, CallbackFunctionInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->callback_attribute(),
               &result_value);
@@ -164,7 +164,7 @@
                     [](v8::Isolate* isolate, CallbackFunctionInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_callback_attribute(),
               &result_value);
@@ -711,5 +711,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_interface_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_interface_interface.cc
index bd5f09b..592494b 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_interface_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_callback_interface_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, CallbackInterfaceInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->callback_attribute(),
               &result_value);
@@ -417,5 +417,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_conditional_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_conditional_interface.cc
index 1135e4b..bd11e46 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_conditional_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_conditional_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, ConditionalInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->enabled_attribute(),
               &result_value);
@@ -166,7 +166,7 @@
                     [](v8::Isolate* isolate, ConditionalInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->disabled_attribute(),
               &result_value);
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constants_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constants_interface.cc
index d3515c4..574b47d 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constants_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constants_interface.cc
@@ -275,5 +275,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_interface.cc
index a582362..118ffaf 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_interface.cc
@@ -301,5 +301,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_with_arguments_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_with_arguments_interface.cc
index c30834e..9ac00e1 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_with_arguments_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_constructor_with_arguments_interface.cc
@@ -173,7 +173,7 @@
                     [](v8::Isolate* isolate, ConstructorWithArgumentsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->long_arg(),
               &result_value);
@@ -193,7 +193,7 @@
                     [](v8::Isolate* isolate, ConstructorWithArgumentsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->boolean_arg(),
               &result_value);
@@ -213,7 +213,7 @@
                     [](v8::Isolate* isolate, ConstructorWithArgumentsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->string_arg(),
               &result_value);
@@ -398,5 +398,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_convert_simple_object_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_convert_simple_object_interface.cc
index 5452403..c874c9f 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_convert_simple_object_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_convert_simple_object_interface.cc
@@ -307,5 +307,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_dictionary.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_dictionary.cc
index 188d81e..6757463 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_dictionary.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_dictionary.cc
@@ -119,4 +119,3 @@
 }  // namespace v8c
 }  // namespace script
 }  // namespace cobalt
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_getter_setter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_getter_setter_interface.cc
index 3177fef..2c090e0 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_getter_setter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_getter_setter_interface.cc
@@ -326,7 +326,7 @@
                     [](v8::Isolate* isolate, DerivedGetterSetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->length(),
               &result_value);
@@ -346,7 +346,7 @@
                     [](v8::Isolate* isolate, DerivedGetterSetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->property_on_derived_class(),
               &result_value);
@@ -786,5 +786,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_interface.cc
index ccd7e97..8f3ecb7 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_derived_interface.cc
@@ -134,7 +134,7 @@
                     [](v8::Isolate* isolate, DerivedInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->derived_attribute(),
               &result_value);
@@ -350,5 +350,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_interface.cc
index 23b7f5d..069c14e 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_interface.cc
@@ -125,7 +125,7 @@
                     [](v8::Isolate* isolate, DictionaryInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->dictionary_sequence(),
               &result_value);
@@ -507,5 +507,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_with_dictionary_member.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_with_dictionary_member.cc
index 0697e7c..7b8e190 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_with_dictionary_member.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dictionary_with_dictionary_member.cc
@@ -115,4 +115,3 @@
 }  // namespace v8c
 }  // namespace script
 }  // namespace cobalt
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_disabled_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_disabled_interface.cc
index 97d64d1..8f26a8e 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_disabled_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_disabled_interface.cc
@@ -122,7 +122,7 @@
                     [](v8::Isolate* isolate, DisabledInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->disabled_property(),
               &result_value);
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dom_string_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dom_string_test_interface.cc
index e82cf79..a309d07 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dom_string_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_dom_string_test_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->property(),
               &result_value);
@@ -160,7 +160,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->read_only_property(),
               &result_value);
@@ -180,7 +180,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->read_only_token_property(),
               &result_value);
@@ -200,7 +200,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->null_is_empty_property(),
               &result_value);
@@ -241,7 +241,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->undefined_is_empty_property(),
               &result_value);
@@ -282,7 +282,7 @@
                     [](v8::Isolate* isolate, DOMStringTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_undefined_is_empty_property(),
               &result_value);
@@ -551,5 +551,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_enumeration_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_enumeration_interface.cc
index 3542e55..ae9edb3 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_enumeration_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_enumeration_interface.cc
@@ -132,7 +132,7 @@
                     [](v8::Isolate* isolate, EnumerationInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->enum_property(),
               &result_value);
@@ -372,5 +372,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exception_object_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exception_object_interface.cc
index a8d8540..b941dca 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exception_object_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exception_object_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, ExceptionObjectInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->error(),
               &result_value);
@@ -139,7 +139,7 @@
                     [](v8::Isolate* isolate, ExceptionObjectInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->message(),
               &result_value);
@@ -309,5 +309,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exceptions_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exceptions_interface.cc
index e5125d3..5f5678f 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exceptions_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_exceptions_interface.cc
@@ -134,7 +134,7 @@
                     [](v8::Isolate* isolate, ExceptionsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->attribute_throws_exception(&exception_state),
               &result_value);
@@ -357,5 +357,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_extended_idl_attributes_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_extended_idl_attributes_interface.cc
index 48697f1..3afdbd5 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_extended_idl_attributes_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_extended_idl_attributes_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, ExtendedIDLAttributesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->attribute_default(),
               &result_value);
@@ -414,5 +414,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_garbage_collection_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_garbage_collection_test_interface.cc
index c63d041..61829bc 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_garbage_collection_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_garbage_collection_test_interface.cc
@@ -134,7 +134,7 @@
                     [](v8::Isolate* isolate, GarbageCollectionTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->previous(),
               &result_value);
@@ -175,7 +175,7 @@
                     [](v8::Isolate* isolate, GarbageCollectionTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->next(),
               &result_value);
@@ -363,5 +363,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_global_interface_parent.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_global_interface_parent.cc
index dff0c84..76c3add 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_global_interface_parent.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_global_interface_parent.cc
@@ -279,5 +279,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_indexed_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_indexed_getter_interface.cc
index 7e698f2..0525832 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_indexed_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_indexed_getter_interface.cc
@@ -238,7 +238,7 @@
                     [](v8::Isolate* isolate, IndexedGetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->length(),
               &result_value);
@@ -625,5 +625,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any.cc
index 48a1d90..37a00ff 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any.cc
@@ -369,5 +369,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any_dictionary.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any_dictionary.cc
index cc777e4..e110aad 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any_dictionary.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_any_dictionary.cc
@@ -493,5 +493,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_date.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_date.cc
index 538aebf..6108ba4 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_date.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_date.cc
@@ -369,5 +369,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_unsupported_properties.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_unsupported_properties.cc
index 5ef3e17..5239cb2 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_unsupported_properties.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_interface_with_unsupported_properties.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, InterfaceWithUnsupportedProperties* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->supported_attribute(),
               &result_value);
@@ -263,5 +263,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_constructor_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_constructor_interface.cc
index 2ac0763..bdc73f5 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_constructor_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_constructor_interface.cc
@@ -235,5 +235,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_getter_interface.cc
index 520508d..49ebda4 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_getter_interface.cc
@@ -644,5 +644,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_indexed_getter_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_indexed_getter_interface.cc
index 3b5a5b1..b8d9bc0 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_indexed_getter_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_named_indexed_getter_interface.cc
@@ -322,7 +322,7 @@
                     [](v8::Isolate* isolate, NamedIndexedGetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->length(),
               &result_value);
@@ -342,7 +342,7 @@
                     [](v8::Isolate* isolate, NamedIndexedGetterInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->property_on_base_class(),
               &result_value);
@@ -927,5 +927,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nested_put_forwards_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nested_put_forwards_interface.cc
index ab6e99c..3ceaa79 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nested_put_forwards_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nested_put_forwards_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, NestedPutForwardsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nested_forwarding_attribute(),
               &result_value);
@@ -311,5 +311,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_constructor_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_constructor_interface.cc
index 788a7ab..ff5d80a 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_constructor_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_constructor_interface.cc
@@ -223,5 +223,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_interface_object_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_interface_object_interface.cc
index e18f1c4..dca8822 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_interface_object_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_no_interface_object_interface.cc
@@ -223,5 +223,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nullable_types_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nullable_types_test_interface.cc
index ee2eef4..c7dd532 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nullable_types_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_nullable_types_test_interface.cc
@@ -125,7 +125,7 @@
                     [](v8::Isolate* isolate, NullableTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_boolean_property(),
               &result_value);
@@ -166,7 +166,7 @@
                     [](v8::Isolate* isolate, NullableTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_numeric_property(),
               &result_value);
@@ -207,7 +207,7 @@
                     [](v8::Isolate* isolate, NullableTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_string_property(),
               &result_value);
@@ -248,7 +248,7 @@
                     [](v8::Isolate* isolate, NullableTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_dictionary_property(),
               &result_value);
@@ -289,7 +289,7 @@
                     [](v8::Isolate* isolate, NullableTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_object_property(),
               &result_value);
@@ -1209,5 +1209,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_numeric_types_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_numeric_types_test_interface.cc
index 8e6fdb7..7dec2ca 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_numeric_types_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_numeric_types_test_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->byte_property(),
               &result_value);
@@ -160,7 +160,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->byte_clamp_property(),
               &result_value);
@@ -201,7 +201,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->octet_property(),
               &result_value);
@@ -242,7 +242,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->octet_clamp_property(),
               &result_value);
@@ -283,7 +283,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->short_property(),
               &result_value);
@@ -324,7 +324,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->short_clamp_property(),
               &result_value);
@@ -365,7 +365,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_short_property(),
               &result_value);
@@ -406,7 +406,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_short_clamp_property(),
               &result_value);
@@ -447,7 +447,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->long_property(),
               &result_value);
@@ -488,7 +488,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->long_clamp_property(),
               &result_value);
@@ -529,7 +529,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_long_property(),
               &result_value);
@@ -570,7 +570,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_long_clamp_property(),
               &result_value);
@@ -611,7 +611,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->long_long_property(),
               &result_value);
@@ -652,7 +652,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->long_long_clamp_property(),
               &result_value);
@@ -693,7 +693,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_long_long_property(),
               &result_value);
@@ -734,7 +734,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unsigned_long_long_clamp_property(),
               &result_value);
@@ -775,7 +775,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->double_property(),
               &result_value);
@@ -816,7 +816,7 @@
                     [](v8::Isolate* isolate, NumericTypesTestInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->unrestricted_double_property(),
               &result_value);
@@ -2679,5 +2679,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_object_type_bindings_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_object_type_bindings_interface.cc
index 1295813..753d5bb 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_object_type_bindings_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_object_type_bindings_interface.cc
@@ -131,7 +131,7 @@
                     [](v8::Isolate* isolate, ObjectTypeBindingsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->arbitrary_object(),
               &result_value);
@@ -172,7 +172,7 @@
                     [](v8::Isolate* isolate, ObjectTypeBindingsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->base_interface(),
               &result_value);
@@ -192,7 +192,7 @@
                     [](v8::Isolate* isolate, ObjectTypeBindingsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->derived_interface(),
               &result_value);
@@ -233,7 +233,7 @@
                     [](v8::Isolate* isolate, ObjectTypeBindingsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->object_property(),
               &result_value);
@@ -461,5 +461,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_operations_test_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_operations_test_interface.cc
index 9d89426..e184220 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_operations_test_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_operations_test_interface.cc
@@ -1748,5 +1748,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_promise_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_promise_interface.cc
index 71e955f..e959090 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_promise_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_promise_interface.cc
@@ -527,5 +527,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_put_forwards_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_put_forwards_interface.cc
index 4d321ab..b4e4a15 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_put_forwards_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_put_forwards_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, PutForwardsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->forwarding_attribute(),
               &result_value);
@@ -175,7 +175,7 @@
                     [](v8::Isolate* isolate, PutForwardsInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               PutForwardsInterface::static_forwarding_attribute(),
               &result_value);
@@ -373,5 +373,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_sequence_user.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_sequence_user.cc
index 77b171a..0182609 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_sequence_user.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_sequence_user.cc
@@ -1177,5 +1177,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_single_operation_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_single_operation_interface.cc
index 5cb91ed..dc84423 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_single_operation_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_single_operation_interface.cc
@@ -105,4 +105,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_static_properties_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_static_properties_interface.cc
index 79beed9..8cd2ad3 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_static_properties_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_static_properties_interface.cc
@@ -123,7 +123,7 @@
                     [](v8::Isolate* isolate, StaticPropertiesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               StaticPropertiesInterface::static_attribute(),
               &result_value);
@@ -554,5 +554,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_anonymous_operation_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_anonymous_operation_interface.cc
index a35969c..4cae118 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_anonymous_operation_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_anonymous_operation_interface.cc
@@ -243,5 +243,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_attribute_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_attribute_interface.cc
index d0bbdc0..4a23d1d 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_attribute_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_attribute_interface.cc
@@ -119,7 +119,7 @@
                     [](v8::Isolate* isolate, StringifierAttributeInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->the_stringifier_attribute(),
               &result_value);
@@ -305,5 +305,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_operation_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_operation_interface.cc
index 2cfb54c..f644e4c 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_operation_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_stringifier_operation_interface.cc
@@ -305,5 +305,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_target_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_target_interface.cc
index 9774c9c..a6b727b 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_target_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_target_interface.cc
@@ -335,5 +335,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_test_dictionary.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_test_dictionary.cc
index 8d035ae..917e74b 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_test_dictionary.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_test_dictionary.cc
@@ -423,4 +423,3 @@
 }  // namespace v8c
 }  // namespace script
 }  // namespace cobalt
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_union_types_interface.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_union_types_interface.cc
index a98e132..871031b 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_union_types_interface.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_union_types_interface.cc
@@ -131,7 +131,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->union_property(),
               &result_value);
@@ -172,7 +172,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->union_with_nullable_member_property(),
               &result_value);
@@ -213,7 +213,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->nullable_union_property(),
               &result_value);
@@ -254,7 +254,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->union_base_property(),
               &result_value);
@@ -295,7 +295,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->union_with_dictionary_property(),
               &result_value);
@@ -336,7 +336,7 @@
                     [](v8::Isolate* isolate, UnionTypesInterface* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->union_dicts_objects_property(),
               &result_value);
@@ -607,5 +607,3 @@
 }  // namespace testing
 }  // namespace bindings
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_window.cc b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_window.cc
index feb2cd0..75f15c2 100644
--- a/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_window.cc
+++ b/cobalt/bindings/generated/v8c/testing/cobalt/bindings/testing/v8c_window.cc
@@ -331,7 +331,7 @@
                     [](v8::Isolate* isolate, Window* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->window_property(),
               &result_value);
@@ -372,7 +372,7 @@
                     [](v8::Isolate* isolate, Window* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->window(),
               &result_value);
@@ -392,7 +392,7 @@
                     [](v8::Isolate* isolate, Window* impl,
                        cobalt::script::ExceptionState& exception_state,
                        v8::Local<v8::Value>& result_value) {
-  
+
       ToJSValue(isolate,
               impl->on_event(),
               &result_value);
@@ -1091,5 +1091,3 @@
 
 }  // namespace script
 }  // namespace cobalt
-
-
diff --git a/cobalt/bindings/templates/dictionary.h.template b/cobalt/bindings/templates/dictionary.h.template
index d178bd6..416d522 100644
--- a/cobalt/bindings/templates/dictionary.h.template
+++ b/cobalt/bindings/templates/dictionary.h.template
@@ -47,6 +47,7 @@
 #include "cobalt/script/script_value.h"
 #include "cobalt/script/sequence.h"
 #include "cobalt/script/typed_arrays.h"
+#include "cobalt/script/union_type.h"
 #include "cobalt/script/value_handle.h"
 {% for include in includes %}
 #include "{{include}}"
diff --git a/cobalt/bindings/testing/any_bindings_test.cc b/cobalt/bindings/testing/any_bindings_test.cc
index ac6539f..951e428 100644
--- a/cobalt/bindings/testing/any_bindings_test.cc
+++ b/cobalt/bindings/testing/any_bindings_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "base/logging.h"
-
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/interface_with_any.h"
 #include "testing/gmock/include/gmock/gmock.h"
diff --git a/cobalt/bindings/testing/any_dictionary_bindings_test.cc b/cobalt/bindings/testing/any_dictionary_bindings_test.cc
index 7082f6d..e9996df 100644
--- a/cobalt/bindings/testing/any_dictionary_bindings_test.cc
+++ b/cobalt/bindings/testing/any_dictionary_bindings_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "base/logging.h"
-
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/interface_with_any_dictionary.h"
 #include "testing/gmock/include/gmock/gmock.h"
diff --git a/cobalt/bindings/testing/boolean_type_bindings_test.cc b/cobalt/bindings/testing/boolean_type_bindings_test.cc
index b518870..d095a1e 100644
--- a/cobalt/bindings/testing/boolean_type_bindings_test.cc
+++ b/cobalt/bindings/testing/boolean_type_bindings_test.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/boolean_type_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::InSequence;
diff --git a/cobalt/bindings/testing/callback_function_test.cc b/cobalt/bindings/testing/callback_function_test.cc
index 6a87b34..7f454bd 100644
--- a/cobalt/bindings/testing/callback_function_test.cc
+++ b/cobalt/bindings/testing/callback_function_test.cc
@@ -18,12 +18,12 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::ContainsRegex;
-using ::testing::Invoke;
 using ::testing::InSequence;
+using ::testing::Invoke;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
@@ -117,10 +117,10 @@
   FunctionOwner function_owner(&test_mock());
   EXPECT_CALL(test_mock(), TakesFunctionWithOneParameter(_))
       .WillOnce(Invoke(&function_owner, &FunctionOwner::TakeOwnership));
-  EXPECT_TRUE(EvaluateScript(
-      "test.takesFunctionWithOneParameter(function(value) { "
-      "callback_value = value });",
-      NULL));
+  EXPECT_TRUE(
+      EvaluateScript("test.takesFunctionWithOneParameter(function(value) { "
+                     "callback_value = value });",
+                     NULL));
   ASSERT_TRUE(function_owner.IsSet());
 
   // Run the callback, and check that the value was passed through to script.
@@ -142,11 +142,11 @@
   FunctionOwner function_owner(&test_mock());
   EXPECT_CALL(test_mock(), TakesFunctionWithSeveralParameters(_))
       .WillOnce(Invoke(&function_owner, &FunctionOwner::TakeOwnership));
-  EXPECT_TRUE(EvaluateScript(
-      "test.takesFunctionWithSeveralParameters("
-      "function(param1, param2, param3) { "
-      "value1 = param1; value2 = param2; value3 = param3; });",
-      NULL));
+  EXPECT_TRUE(
+      EvaluateScript("test.takesFunctionWithSeveralParameters("
+                     "function(param1, param2, param3) { "
+                     "value1 = param1; value2 = param2; value3 = param3; });",
+                     NULL));
   ASSERT_TRUE(function_owner.IsSet());
 
   // Execute the callback
@@ -180,11 +180,11 @@
   FunctionOwner function_owner(&test_mock());
   EXPECT_CALL(test_mock(), TakesFunctionWithNullableParameters(_))
       .WillOnce(Invoke(&function_owner, &FunctionOwner::TakeOwnership));
-  EXPECT_TRUE(EvaluateScript(
-      "test.takesFunctionWithNullableParameters("
-      "function(param1, param2, param3) { "
-      "value1 = param1; value2 = param2; value3 = param3; });",
-      NULL));
+  EXPECT_TRUE(
+      EvaluateScript("test.takesFunctionWithNullableParameters("
+                     "function(param1, param2, param3) { "
+                     "value1 = param1; value2 = param2; value3 = param3; });",
+                     NULL));
   ASSERT_TRUE(function_owner.IsSet());
 
   // Execute the callback
diff --git a/cobalt/bindings/testing/callback_interface_test.cc b/cobalt/bindings/testing/callback_interface_test.cc
index 6131d45..b3a43bc 100644
--- a/cobalt/bindings/testing/callback_interface_test.cc
+++ b/cobalt/bindings/testing/callback_interface_test.cc
@@ -20,10 +20,10 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::ContainsRegex;
 using ::testing::Invoke;
 using ::testing::Return;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
diff --git a/cobalt/bindings/testing/conditional_attribute_test.cc b/cobalt/bindings/testing/conditional_attribute_test.cc
index f124a35..8cb1325 100644
--- a/cobalt/bindings/testing/conditional_attribute_test.cc
+++ b/cobalt/bindings/testing/conditional_attribute_test.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/conditional_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
diff --git a/cobalt/bindings/testing/constructor_bindings_test.cc b/cobalt/bindings/testing/constructor_bindings_test.cc
index 4d88d85..23296e4 100644
--- a/cobalt/bindings/testing/constructor_bindings_test.cc
+++ b/cobalt/bindings/testing/constructor_bindings_test.cc
@@ -96,10 +96,10 @@
 
 TEST_F(ConstructorBindingsTest, NamedConstructorHasCorrectPrototype) {
   std::string result;
-  EXPECT_TRUE(EvaluateScript(
-      "Object.getPrototypeOf(SomeNamedConstructor) === "
-      "Object.getPrototypeOf(NamedConstructorInterface);",
-      &result));
+  EXPECT_TRUE(
+      EvaluateScript("Object.getPrototypeOf(SomeNamedConstructor) === "
+                     "Object.getPrototypeOf(NamedConstructorInterface);",
+                     &result));
   EXPECT_STREQ("true", result.c_str());
 }
 
diff --git a/cobalt/bindings/testing/date_bindings_test.cc b/cobalt/bindings/testing/date_bindings_test.cc
index bb58362..9b4c420 100644
--- a/cobalt/bindings/testing/date_bindings_test.cc
+++ b/cobalt/bindings/testing/date_bindings_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "base/logging.h"
-
 #include "base/time/time.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/interface_with_date.h"
diff --git a/cobalt/bindings/testing/dependent_interface_test.cc b/cobalt/bindings/testing/dependent_interface_test.cc
index 0bc3f4a..524a2da 100644
--- a/cobalt/bindings/testing/dependent_interface_test.cc
+++ b/cobalt/bindings/testing/dependent_interface_test.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/target_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
diff --git a/cobalt/bindings/testing/dom_string_bindings_test.cc b/cobalt/bindings/testing/dom_string_bindings_test.cc
index c66bd43..015cda0 100644
--- a/cobalt/bindings/testing/dom_string_bindings_test.cc
+++ b/cobalt/bindings/testing/dom_string_bindings_test.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/dom_string_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
diff --git a/cobalt/bindings/testing/enumeration_bindings_test.cc b/cobalt/bindings/testing/enumeration_bindings_test.cc
index 01acc6a..c985c6d 100644
--- a/cobalt/bindings/testing/enumeration_bindings_test.cc
+++ b/cobalt/bindings/testing/enumeration_bindings_test.cc
@@ -65,10 +65,11 @@
   InSequence dummy;
 
   std::string result;
-  EXPECT_TRUE(EvaluateScript(
-      "var caught_exception = null; "
-      "try { test.enumProperty = \"invalid\"; } "
-      "catch (e) { caught_exception = e }", NULL));
+  EXPECT_TRUE(
+      EvaluateScript("var caught_exception = null; "
+                     "try { test.enumProperty = \"invalid\"; } "
+                     "catch (e) { caught_exception = e }",
+                     NULL));
   EXPECT_TRUE(
       EvaluateScript("caught_exception.constructor === TypeError;", &result));
   EXPECT_STREQ("true", result.c_str());
diff --git a/cobalt/bindings/testing/exceptions_bindings_test.cc b/cobalt/bindings/testing/exceptions_bindings_test.cc
index 44ba808..6b95bfc 100644
--- a/cobalt/bindings/testing/exceptions_bindings_test.cc
+++ b/cobalt/bindings/testing/exceptions_bindings_test.cc
@@ -22,8 +22,8 @@
 using ::testing::DoAll;
 using ::testing::InSequence;
 using ::testing::Invoke;
-using ::testing::Return;
 using ::testing::NiceMock;
+using ::testing::Return;
 using ::testing::WithArg;
 
 #define EXPECT_SUBSTRING(needle, haystack) \
@@ -75,8 +75,9 @@
 
 TEST_F(ExceptionsBindingsTest, ThrowExceptionFromOperation) {
   SimpleExceptionSetter exception_setter(script::kSimpleTypeError);
-  EXPECT_CALL(test_mock(), FunctionThrowsException(_)).WillOnce(
-      Invoke(&exception_setter, &SimpleExceptionSetter::FireException));
+  EXPECT_CALL(test_mock(), FunctionThrowsException(_))
+      .WillOnce(
+          Invoke(&exception_setter, &SimpleExceptionSetter::FireException));
 
   std::string result;
   EXPECT_FALSE(EvaluateScript("test.functionThrowsException();", &result));
@@ -85,9 +86,10 @@
 
 TEST_F(ExceptionsBindingsTest, ThrowExceptionFromGetter) {
   SimpleExceptionSetter exception_setter(script::kSimpleRangeError);
-  EXPECT_CALL(test_mock(), attribute_throws_exception(_)).WillOnce(
-      DoAll(Invoke(&exception_setter, &SimpleExceptionSetter::FireException),
-            Return(false)));
+  EXPECT_CALL(test_mock(), attribute_throws_exception(_))
+      .WillOnce(DoAll(
+          Invoke(&exception_setter, &SimpleExceptionSetter::FireException),
+          Return(false)));
 
   std::string result;
   EXPECT_FALSE(
@@ -113,13 +115,14 @@
   ExceptionObjectSetter exception_setter(exception_object);
 
   InSequence in_sequence_dummy;
-  EXPECT_CALL(test_mock(), FunctionThrowsException(_)).WillOnce(
-      Invoke(&exception_setter, &ExceptionObjectSetter::FireException));
-  EXPECT_TRUE(EvaluateScript(
-      "var error = null;"
-      "try { test.functionThrowsException(); }"
-      "catch(e) { error = e; }",
-      NULL));
+  EXPECT_CALL(test_mock(), FunctionThrowsException(_))
+      .WillOnce(
+          Invoke(&exception_setter, &ExceptionObjectSetter::FireException));
+  EXPECT_TRUE(
+      EvaluateScript("var error = null;"
+                     "try { test.functionThrowsException(); }"
+                     "catch(e) { error = e; }",
+                     NULL));
 
   std::string result;
   EXPECT_TRUE(EvaluateScript("error instanceof Error;", &result));
diff --git a/cobalt/bindings/testing/extended_attributes_test.cc b/cobalt/bindings/testing/extended_attributes_test.cc
index 883ee4f..66708e8 100644
--- a/cobalt/bindings/testing/extended_attributes_test.cc
+++ b/cobalt/bindings/testing/extended_attributes_test.cc
@@ -17,7 +17,6 @@
 #include "base/strings/stringprintf.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/extended_idl_attributes_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
diff --git a/cobalt/bindings/testing/get_own_property_descriptor.cc b/cobalt/bindings/testing/get_own_property_descriptor.cc
index 5945d36..8814534 100644
--- a/cobalt/bindings/testing/get_own_property_descriptor.cc
+++ b/cobalt/bindings/testing/get_own_property_descriptor.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/bindings/testing/getter_setter_test.cc b/cobalt/bindings/testing/getter_setter_test.cc
index 580aa49..182b59c 100644
--- a/cobalt/bindings/testing/getter_setter_test.cc
+++ b/cobalt/bindings/testing/getter_setter_test.cc
@@ -25,11 +25,11 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
-using ::testing::Invoke;
+using ::testing::_;
 using ::testing::InSequence;
+using ::testing::Invoke;
 using ::testing::Return;
 using ::testing::ReturnArg;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
diff --git a/cobalt/bindings/testing/interface_object_test.cc b/cobalt/bindings/testing/interface_object_test.cc
index 80a9fbf..d422738 100644
--- a/cobalt/bindings/testing/interface_object_test.cc
+++ b/cobalt/bindings/testing/interface_object_test.cc
@@ -15,7 +15,6 @@
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/no_interface_object_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
@@ -36,16 +35,16 @@
 // Interface object for non-callback interface is a global property.
 TEST_F(InterfaceObjectTest, InterfaceObjectIsGlobalProperty) {
   std::string result;
-  EXPECT_TRUE(EvaluateScript(
-      "this.hasOwnProperty(\"ArbitraryInterface\");", &result));
+  EXPECT_TRUE(
+      EvaluateScript("this.hasOwnProperty(\"ArbitraryInterface\");", &result));
   EXPECT_STREQ("true", result.c_str());
 }
 
 // Interface object for non-callback interface is a function object.
 TEST_F(InterfaceObjectTest, InterfaceObjectIsFunctionObject) {
   std::string result;
-  EXPECT_TRUE(EvaluateScript(
-      "ArbitraryInterface instanceof Function;", &result));
+  EXPECT_TRUE(
+      EvaluateScript("ArbitraryInterface instanceof Function;", &result));
   EXPECT_STREQ("true", result.c_str());
 }
 
@@ -58,8 +57,7 @@
   EXPECT_STREQ("true", result.c_str());
 
   EXPECT_TRUE(EvaluateScript(
-      "ArbitraryInterface.prototype == Object.getPrototypeOf(test);",
-      &result));
+      "ArbitraryInterface.prototype == Object.getPrototypeOf(test);", &result));
   EXPECT_STREQ("true", result.c_str());
 }
 
diff --git a/cobalt/bindings/testing/interface_with_any_dictionary.h b/cobalt/bindings/testing/interface_with_any_dictionary.h
index 11609a9..8748905 100644
--- a/cobalt/bindings/testing/interface_with_any_dictionary.h
+++ b/cobalt/bindings/testing/interface_with_any_dictionary.h
@@ -16,7 +16,6 @@
 #define COBALT_BINDINGS_TESTING_INTERFACE_WITH_ANY_DICTIONARY_H_
 
 #include "base/compiler_specific.h"
-
 #include "cobalt/bindings/testing/test_dictionary.h"
 #include "cobalt/script/script_value.h"
 #include "cobalt/script/value_handle.h"
diff --git a/cobalt/bindings/testing/numeric_type_bindings_test.cc b/cobalt/bindings/testing/numeric_type_bindings_test.cc
index 3906ebc..4cc347e 100644
--- a/cobalt/bindings/testing/numeric_type_bindings_test.cc
+++ b/cobalt/bindings/testing/numeric_type_bindings_test.cc
@@ -17,7 +17,6 @@
 #include "base/strings/stringprintf.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/numeric_types_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Eq;
diff --git a/cobalt/bindings/testing/object_type_bindings_test.cc b/cobalt/bindings/testing/object_type_bindings_test.cc
index fce4047..3472fb7 100644
--- a/cobalt/bindings/testing/object_type_bindings_test.cc
+++ b/cobalt/bindings/testing/object_type_bindings_test.cc
@@ -120,10 +120,10 @@
   EXPECT_CALL(test_mock(), derived_interface());
 
   std::string result;
-  EXPECT_TRUE(EvaluateScript(
-      "Object.getPrototypeOf(test.derivedInterface) === "
-      "DerivedInterface.prototype;",
-      &result));
+  EXPECT_TRUE(
+      EvaluateScript("Object.getPrototypeOf(test.derivedInterface) === "
+                     "DerivedInterface.prototype;",
+                     &result));
   EXPECT_STREQ("true", result.c_str());
 }
 
diff --git a/cobalt/bindings/testing/operations_bindings_test.cc b/cobalt/bindings/testing/operations_bindings_test.cc
index c5f7b49..3f8c077 100644
--- a/cobalt/bindings/testing/operations_bindings_test.cc
+++ b/cobalt/bindings/testing/operations_bindings_test.cc
@@ -15,7 +15,6 @@
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/operations_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::_;
@@ -144,11 +143,11 @@
 TEST_F(OperationsBindingsTest, OverloadedOperationInvalidNumberOfArguments) {
   InSequence in_sequence_dummy;
 
-  EXPECT_TRUE(EvaluateScript(
-      "var error = null;"
-      "try { test.overloadedFunction(1, 2); }"
-      "catch(e) { error = e; }",
-      NULL));
+  EXPECT_TRUE(
+      EvaluateScript("var error = null;"
+                     "try { test.overloadedFunction(1, 2); }"
+                     "catch(e) { error = e; }",
+                     NULL));
   std::string result;
   EXPECT_TRUE(EvaluateScript(
       "Object.getPrototypeOf(error) === TypeError.prototype;", &result));
diff --git a/cobalt/bindings/testing/optional_arguments_bindings_test.cc b/cobalt/bindings/testing/optional_arguments_bindings_test.cc
index cf86e73..0d11ee9 100644
--- a/cobalt/bindings/testing/optional_arguments_bindings_test.cc
+++ b/cobalt/bindings/testing/optional_arguments_bindings_test.cc
@@ -15,7 +15,6 @@
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/operations_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::Return;
diff --git a/cobalt/bindings/testing/promise_test.cc b/cobalt/bindings/testing/promise_test.cc
index c85bc31..ea2bdf7 100644
--- a/cobalt/bindings/testing/promise_test.cc
+++ b/cobalt/bindings/testing/promise_test.cc
@@ -20,12 +20,12 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::ContainsRegex;
-using ::testing::Invoke;
 using ::testing::InSequence;
+using ::testing::Invoke;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
diff --git a/cobalt/bindings/testing/sequence_bindings_test.cc b/cobalt/bindings/testing/sequence_bindings_test.cc
index ac3737a..b5f2e2f 100644
--- a/cobalt/bindings/testing/sequence_bindings_test.cc
+++ b/cobalt/bindings/testing/sequence_bindings_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "base/logging.h"
-
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/base_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
diff --git a/cobalt/bindings/testing/static_properties_bindings_test.cc b/cobalt/bindings/testing/static_properties_bindings_test.cc
index 170aa9f..ab5137c 100644
--- a/cobalt/bindings/testing/static_properties_bindings_test.cc
+++ b/cobalt/bindings/testing/static_properties_bindings_test.cc
@@ -14,7 +14,6 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/static_properties_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::_;
@@ -79,7 +78,8 @@
 TEST_F(StaticPropertiesBindingsTest, GetStaticAttribute) {
   std::string result;
   EXPECT_CALL(StaticPropertiesInterface::static_methods_mock.Get(),
-              static_attribute()).WillOnce(Return("test_string"));
+              static_attribute())
+      .WillOnce(Return("test_string"));
   EXPECT_TRUE(
       EvaluateScript("StaticPropertiesInterface.staticAttribute;", &result));
   EXPECT_STREQ("test_string", result.c_str());
diff --git a/cobalt/bindings/testing/union_type_bindings_test.cc b/cobalt/bindings/testing/union_type_bindings_test.cc
index 01e4a76..060b722 100644
--- a/cobalt/bindings/testing/union_type_bindings_test.cc
+++ b/cobalt/bindings/testing/union_type_bindings_test.cc
@@ -14,14 +14,13 @@
 
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/union_types_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::ContainsRegex;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
@@ -35,8 +34,9 @@
   InSequence dummy;
 
   std::string result;
-  EXPECT_CALL(test_mock(), union_property()).WillOnce(
-      Return(UnionTypesInterface::UnionPropertyType(std::string("foo"))));
+  EXPECT_CALL(test_mock(), union_property())
+      .WillOnce(
+          Return(UnionTypesInterface::UnionPropertyType(std::string("foo"))));
   EXPECT_TRUE(
       EvaluateScript("typeof test.unionProperty == \"string\";", &result));
   EXPECT_STREQ("true", result.c_str());
@@ -44,10 +44,10 @@
   EXPECT_CALL(test_mock(), union_property())
       .WillOnce(Return(UnionTypesInterface::UnionPropertyType(
           base::WrapRefCounted(new ArbitraryInterface()))));
-  EXPECT_TRUE(EvaluateScript(
-      "Object.getPrototypeOf(test.unionProperty) === "
-      "ArbitraryInterface.prototype;",
-      &result));
+  EXPECT_TRUE(
+      EvaluateScript("Object.getPrototypeOf(test.unionProperty) === "
+                     "ArbitraryInterface.prototype;",
+                     &result));
   EXPECT_STREQ("true", result.c_str());
 
   EXPECT_CALL(test_mock(), union_property())
diff --git a/cobalt/bindings/testing/union_types_interface.h b/cobalt/bindings/testing/union_types_interface.h
index 39e9ff4..86c37c9 100644
--- a/cobalt/bindings/testing/union_types_interface.h
+++ b/cobalt/bindings/testing/union_types_interface.h
@@ -32,9 +32,9 @@
 class UnionTypesInterface : public script::Wrappable {
  public:
   typedef script::UnionType4<std::string, bool,
-                             scoped_refptr<ArbitraryInterface>,
-                             int32_t> UnionPropertyType;
-  typedef base::Optional<script::UnionType2<double, std::string> >
+                             scoped_refptr<ArbitraryInterface>, int32_t>
+      UnionPropertyType;
+  typedef base::Optional<script::UnionType2<double, std::string>>
       NullableUnionPropertyType;
   typedef script::UnionType2<scoped_refptr<BaseInterface>, std::string>
       UnionBasePropertyType;
@@ -45,19 +45,19 @@
       script::UnionType2<DerivedDictionary, scoped_refptr<ArbitraryInterface>>;
 
   MOCK_METHOD0(union_property, UnionPropertyType());
-  MOCK_METHOD1(set_union_property, void(const UnionPropertyType&));
+  MOCK_METHOD1(set_union_property, void(const UnionPropertyType &));
 
   MOCK_METHOD0(union_with_nullable_member_property,
                NullableUnionPropertyType());
   MOCK_METHOD1(set_union_with_nullable_member_property,
-               void(const NullableUnionPropertyType&));
+               void(const NullableUnionPropertyType &));
 
   MOCK_METHOD0(nullable_union_property, NullableUnionPropertyType());
   MOCK_METHOD1(set_nullable_union_property,
-               void(const NullableUnionPropertyType&));
+               void(const NullableUnionPropertyType &));
 
   MOCK_METHOD0(union_base_property, UnionBasePropertyType());
-  MOCK_METHOD1(set_union_base_property, void(const UnionBasePropertyType&));
+  MOCK_METHOD1(set_union_base_property, void(const UnionBasePropertyType &));
 
   MOCK_METHOD0(union_with_dictionary_property, UnionDictPropertyType());
   MOCK_METHOD1(set_union_with_dictionary_property,
diff --git a/cobalt/bindings/testing/variadic_arguments_bindings_test.cc b/cobalt/bindings/testing/variadic_arguments_bindings_test.cc
index ec140aa..ef45ab1 100644
--- a/cobalt/bindings/testing/variadic_arguments_bindings_test.cc
+++ b/cobalt/bindings/testing/variadic_arguments_bindings_test.cc
@@ -15,13 +15,12 @@
 #include "cobalt/bindings/testing/arbitrary_interface.h"
 #include "cobalt/bindings/testing/bindings_test_base.h"
 #include "cobalt/bindings/testing/operations_test_interface.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::InSequence;
 using ::testing::Return;
 using ::testing::SaveArg;
-using ::testing::_;
 
 namespace cobalt {
 namespace bindings {
@@ -61,14 +60,16 @@
       "test.variadicStringArgumentsAfterOptionalArgument();", NULL));
 
   std::vector<std::string> string_args;
-  EXPECT_CALL(test_mock(), VariadicStringArgumentsAfterOptionalArgument(
-                               true, _)).WillOnce(SaveArg<1>(&string_args));
+  EXPECT_CALL(test_mock(),
+              VariadicStringArgumentsAfterOptionalArgument(true, _))
+      .WillOnce(SaveArg<1>(&string_args));
   EXPECT_TRUE(EvaluateScript(
       "test.variadicStringArgumentsAfterOptionalArgument(true);", NULL));
   EXPECT_EQ(0, string_args.size());
 
-  EXPECT_CALL(test_mock(), VariadicStringArgumentsAfterOptionalArgument(
-                               false, _)).WillOnce(SaveArg<1>(&string_args));
+  EXPECT_CALL(test_mock(),
+              VariadicStringArgumentsAfterOptionalArgument(false, _))
+      .WillOnce(SaveArg<1>(&string_args));
   EXPECT_TRUE(EvaluateScript(
       "test.variadicStringArgumentsAfterOptionalArgument(false, \"zero\", "
       "\"one\");",
diff --git a/cobalt/bindings/v8c/templates/macros.cc.template b/cobalt/bindings/v8c/templates/macros.cc.template
index ce11720..d7545c9 100644
--- a/cobalt/bindings/v8c/templates/macros.cc.template
+++ b/cobalt/bindings/v8c/templates/macros.cc.template
@@ -220,7 +220,7 @@
 {# If no variadic arguments have been set, we still call the function with
    signature that has the variadic argument and pass an empty vector. There is
    no such function signature that takes the optional parameter immediately
-   preceeding the variadic argument but does not take the variadic arguments. #}
+   preceding the variadic argument but does not take the variadic arguments. #}
 {% if loop.last or not operation.arguments[num_arguments].is_variadic %}
 {% set function_arguments =
       operation.arguments[0:num_arguments]|map(attribute='name')|list %}
diff --git a/cobalt/black_box_tests/README.md b/cobalt/black_box_tests/README.md
index 409390c..1ad41d0 100644
--- a/cobalt/black_box_tests/README.md
+++ b/cobalt/black_box_tests/README.md
@@ -15,37 +15,57 @@
   3. Re-fetch network requests after network shortage.
 
 
+## Adding a New Test
+
+  1. Add a python test script in tests/.
+     1.  The python script, at a minimum, needs to load your HTML (see step #2)
+         and call both `runner.WaitForJSTestsSetup()` and
+         `self.assertTrue(runner.JSTestsSucceeded())`. See one of the many python
+         scripts in this directory as an example.
+  2. Add target web page(s) and associated resources(if any) to testdata/.
+     1.  At a minimum, call `setupFinished()` and `onEndTest()` when the test is
+         ready to run and when it's completed running respectively. You'll need
+         to have loaded `<script src='black_box_js_test_utils.js'></script>` for
+         these utility methods to be available.
+  3. Add the test name (name of the python test script) to black_box_tests.py
+     to automate new test. Add the name to the list of tests requiring
+     app launcher support for system signals (e.g. suspend/resume), or the list
+     of tests requiring deep link support, or the list of tests that don't.
+
+
 ## Running Tests:
 
   1. To run all tests:
 
-     $ python path/to/black_box_tests.py --platform PLATFORM --config CONFIG
+     `$ python path/to/black_box_tests.py --platform PLATFORM --config CONFIG`
 
      e.g.
-     $ python path/to/black_box_tests.py --platform linux-x64x11 --config
-       devel
+     `$ python path/to/black_box_tests.py --platform linux-x64x11 --config
+       devel`
 
 
   2. To run an individual test:
 
-     $ python path/to/black_box_tests.py --platform PLATFORM --config CONFIG
-       --test_name TEST_NAME
+     `$ python path/to/black_box_tests.py --platform PLATFORM --config CONFIG
+       --test_name TEST_NAME`
 
      e.g.
-     $ python path/to/black_box_tests.py --platform linux-x64x11 --config devel
-       --test_name preload_font
+     `$ python path/to/black_box_tests.py --platform linux-x64x11 --config devel
+       --test_name preload_font`
 
-     You can apply --gtest_filter through --target_params, e.g.
-     $ python path/to/black_box_tests.py --platform linux-x64x11 --config devel
-       --test_name web_platform_tests
-       --target_params="--gtest_filter=fetch/*"
+     You can apply `--gtest_filter` through `--target_params`, e.g.
+     ```
+       $ python path/to/black_box_tests.py --platform linux-x64x11 --config devel
+         --test_name web_platform_tests
+         --target_params="--gtest_filter=fetch/*"
+     ```
 
      Note: When declaring a gtest_filter, it will override the filters defined
      in GetWebPlatformTestFilters in configuration.py.
 
   If you see a HTTPConnection error which eventually
   causes a TimeoutException for the test, you might want
-  to add "--server_binding_address localhost" in your
+  to add `--server_binding_address localhost` in your
   python command.
 
 ## Tests
@@ -59,17 +79,18 @@
 
 A wrapper around the app launcher. BlackBoxCobaltRunner includes a webdriver
 module attached to the app launcher's Cobalt instance after it starts running.
-Includes a method(JSTestsSucceeded()) to check test result on the JavaScript
+Includes a method(`JSTestsSucceeded()`) to check test result on the JavaScript
 side. Call this method to wait for JavaScript test result.
 black_box_js_test_utils.js provides some utility functions that are meant to
-work with runner.JSTestsSucceeded() in the python test scripts. Together,
+work with `runner.JSTestsSucceeded()` in the python test scripts. Together,
 they allow for test logic to exist in either the python test scripts or
 JavaScript test data.
-e.g. Call OnEndTest() to signal test completion on the JavaScript side,
-JSTestsSucceeded() will react to the signal and return the test status of
+
+Call `OnEndTest()` to signal test completion on the JavaScript side,
+`JSTestsSucceeded()` will react to the signal and return the test status of
 JavaScript test logic; another example is that when the python script wants to
-wait for some setup steps on JavaScript, call runner.WaitForJSTestsSetup().
-Calling setupFinished() in JavaScript whenever ready will unblock the wait.
+wait for some setup steps on JavaScript, call `runner.WaitForJSTestsSetup()`.
+Calling `setupFinished()` in JavaScript whenever ready will unblock the wait.
 
 
 ## Test Data
@@ -77,18 +98,10 @@
 A default local test server will be launched before any unit test starts to
 serve the test data in black_box_tests/testdata/. The server's port will be
 passed to the app launcher to fetch test data from.
+
 Test data can include the target web page for Cobalt to open and any additional
 resources (font file, JavaScripts...).
+
 Tests are free to start their own HTTP servers if the default test server is
 inadequate (e.g. The test is testing that Cobalt handles receipt of a specific
 HTTP server generated error code properly).
-
-
-## Adding a New Test
-
-  1. Add a python test script in tests/.
-  2. Add target web page(s) and associated resources(if any) to testdata/.
-  3. Add the test name(name of the python test script) to black_box_tests.py
-     to automate new test. Add the name to the list of tests requiring
-     app launcher support for system signals(e.g. suspend/resume), or the list
-     of tests requiring deep link support, or the list of tests that don't.
diff --git a/tools/lbshell/open_source_release/create_tarball.sh b/cobalt/black_box_tests/bbt_settings.py
old mode 100755
new mode 100644
similarity index 79%
rename from tools/lbshell/open_source_release/create_tarball.sh
rename to cobalt/black_box_tests/bbt_settings.py
index 79904b4..d6d67fd
--- a/tools/lbshell/open_source_release/create_tarball.sh
+++ b/cobalt/black_box_tests/bbt_settings.py
@@ -1,5 +1,3 @@
-#!/bin/bash
-#
 # Copyright 2023 The Cobalt Authors. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +11,7 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+"""Contains global settings for all tests"""
 
-CURRENT_DIR="$( dirname "${BASH_SOURCE[0]}" )"
-${CURRENT_DIR}/../../../internal/tools/lbshell/open_source_release/create_tarball.sh "$@"
+# Setting it to None instead of 0 exposes issues.
+default_web_server_port = None
diff --git a/cobalt/black_box_tests/black_box_cobalt_runner.py b/cobalt/black_box_tests/black_box_cobalt_runner.py
index 9e83f09..c3829c6 100644
--- a/cobalt/black_box_tests/black_box_cobalt_runner.py
+++ b/cobalt/black_box_tests/black_box_cobalt_runner.py
@@ -50,6 +50,7 @@
                target_params=None,
                success_message=None,
                poll_until_wait_seconds=POLL_UNTIL_WAIT_SECONDS,
+               web_server_port=None,
                **kwargs):
     # For black box tests, don't log inline script warnings, we intend to
     # explicitly control timings for suspends and resumes, so we are not
@@ -65,6 +66,7 @@
         target_params,
         success_message,
         poll_until_wait_seconds=poll_until_wait_seconds,
+        web_server_port=web_server_port,
         **kwargs)
 
     self.poll_until_wait_seconds = poll_until_wait_seconds
diff --git a/cobalt/black_box_tests/black_box_tests.py b/cobalt/black_box_tests/black_box_tests.py
index 99b11c4..3c6c44e 100755
--- a/cobalt/black_box_tests/black_box_tests.py
+++ b/cobalt/black_box_tests/black_box_tests.py
@@ -27,6 +27,7 @@
 import unittest
 
 from cobalt.black_box_tests import black_box_cobalt_runner
+from cobalt.black_box_tests import bbt_settings
 from cobalt.black_box_tests.proxy_server import ProxyServer
 from starboard.tools import abstract_launcher
 from starboard.tools import build
@@ -78,6 +79,7 @@
     'h5vcc_storage_write_verify_test',
     'http_cache',
     'persistent_cookie',
+    'scroll',
     'service_worker_add_to_cache_test',
     'service_worker_cache_keys_test',
     'service_worker_controller_activation_test',
@@ -89,6 +91,7 @@
     'service_worker_test',
     'service_worker_persist_test',
     'soft_mic_platform_service_test',
+    'telemetry_test',
     'text_encoding_test',
     'wasm_basic_test',
     'web_debugger',
@@ -108,7 +111,8 @@
 ]
 # These tests can only run on Evergreen-compatible platforms.
 _TESTS_EVERGREEN_END_TO_END = [
-    'evergreen_verify_qa_channel_update_test',
+    # Temporary disable test to publish new SB 16 changes b/149243810
+    #'evergreen_verify_qa_channel_update_test',
 ]
 # Location of test files.
 _TEST_DIR_PATH = 'cobalt.black_box_tests.tests.'
@@ -153,6 +157,7 @@
         launcher_params=_launcher_params,
         url=url,
         target_params=all_target_params,
+        web_server_port=bbt_settings.default_web_server_port,
         **kwargs)
 
   def GetBindingAddress(self):
@@ -243,6 +248,11 @@
     _wpt_http_port = args.wpt_http_port or str(
         self.GetUnusedPort([_server_binding_address]))
 
+    # Port used to set up tunneling between host and device for testdata server.
+    sock = socket.socket()
+    sock.bind(('', 0))
+    bbt_settings.default_web_server_port = sock.getsockname()[1]
+
     # Proxy is only needed for WPT
     self.use_proxy = args.test_set in ['all', 'wpt']
 
diff --git a/cobalt/black_box_tests/testdata/allow_eval.html b/cobalt/black_box_tests/testdata/allow_eval.html
index c7ad9e4..78f2714 100644
--- a/cobalt/black_box_tests/testdata/allow_eval.html
+++ b/cobalt/black_box_tests/testdata/allow_eval.html
@@ -22,4 +22,4 @@
     }
     onEndTest();
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/black_box_js_test_utils.js b/cobalt/black_box_tests/testdata/black_box_js_test_utils.js
index e4dfc8a..ce5dde4 100644
--- a/cobalt/black_box_tests/testdata/black_box_js_test_utils.js
+++ b/cobalt/black_box_tests/testdata/black_box_js_test_utils.js
@@ -72,7 +72,7 @@
   }
 }
 
-function assertFalse(result) {
+function assertFalse(result, msg) {
   if (result) {
     const errorMessage = '\n' +
       'Black Box Test Assertion failed: \n' +
diff --git a/cobalt/black_box_tests/testdata/disable_eval_with_csp.html b/cobalt/black_box_tests/testdata/disable_eval_with_csp.html
index 447a3bd..349fd4d 100644
--- a/cobalt/black_box_tests/testdata/disable_eval_with_csp.html
+++ b/cobalt/black_box_tests/testdata/disable_eval_with_csp.html
@@ -18,4 +18,4 @@
     eval('1+3')
 
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/persistent_cookie.html b/cobalt/black_box_tests/testdata/persistent_cookie.html
index d7e838f..e029f39 100644
--- a/cobalt/black_box_tests/testdata/persistent_cookie.html
+++ b/cobalt/black_box_tests/testdata/persistent_cookie.html
@@ -71,4 +71,4 @@
     }
     setupFinished();
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/preload_font.html b/cobalt/black_box_tests/testdata/preload_font.html
index 180af0e..b7a17c3 100644
--- a/cobalt/black_box_tests/testdata/preload_font.html
+++ b/cobalt/black_box_tests/testdata/preload_font.html
@@ -44,4 +44,4 @@
     document.addEventListener("visibilitychange", handleVisibilityChange);
     setupFinished();
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/preload_launch_parameter.html b/cobalt/black_box_tests/testdata/preload_launch_parameter.html
index 2576463..a040d79 100644
--- a/cobalt/black_box_tests/testdata/preload_launch_parameter.html
+++ b/cobalt/black_box_tests/testdata/preload_launch_parameter.html
@@ -32,4 +32,4 @@
 
     setupFinished();
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/scroll.html b/cobalt/black_box_tests/testdata/scroll.html
new file mode 100644
index 0000000..d8adade
--- /dev/null
+++ b/cobalt/black_box_tests/testdata/scroll.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+
+<html>
+
+<head>
+  <title>Cobalt scroll test</title>
+  <script src='black_box_js_test_utils.js'></script>
+  <style>
+    .app {
+      position: absolute;
+      width: 80rem;
+      height: 45rem;
+      overflow: hidden;
+      padding: 20px;
+      z-index: 1;
+    }
+
+    .row {
+      /* pointer-events: auto; */
+      position: relative;
+      overflow: auto;
+      height: 20rem;
+      width: 80rem;
+    }
+
+    .tile {
+      position: absolute;
+      height: 10rem;
+      width: 200rem;
+      background: linear-gradient(0.25turn, #f4aca9, #ebf8e1, #bce6f3);
+    }
+  </style>
+</head>
+
+<body>
+  <div class="app" style="overflow:auto;">
+    <div id="row" class="row" style="height: 20rem;">
+      <div id="top_one" class="tile">One</div>
+    </div>
+  </div>
+</body>
+<script>
+  function checkEndState() {
+    const scroll_container = document.getElementById("row");
+    assertTrue(scroll_container.scrollLeft > 0);
+    onEndTest();
+  }
+
+  window.onload = () => {
+    setupFinished();
+  }
+
+  window.onkeydown = (event) => {
+    if (event.key == 0) {
+      checkEndState();
+    }
+  }
+</script>
+
+</html>
diff --git a/cobalt/black_box_tests/testdata/suspend_visibility.html b/cobalt/black_box_tests/testdata/suspend_visibility.html
index 092e817..6dbf5a0 100644
--- a/cobalt/black_box_tests/testdata/suspend_visibility.html
+++ b/cobalt/black_box_tests/testdata/suspend_visibility.html
@@ -74,4 +74,4 @@
     document.addEventListener("visibilitychange", handleVisibilityChange);
     setupFinished();
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/telemetry_test.html b/cobalt/black_box_tests/testdata/telemetry_test.html
new file mode 100644
index 0000000..01ccf90
--- /dev/null
+++ b/cobalt/black_box_tests/testdata/telemetry_test.html
@@ -0,0 +1,72 @@
+<!DOCTYPE html>
+<!--
+  Copyright 2023 The Cobalt Authors. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<html>
+
+<head>
+    <title>Cobalt Telemetry Test</title>
+    <script src='black_box_js_test_utils.js'></script>
+</head>
+
+<body>
+    <script>
+        const metrics = window.h5vcc.metrics;
+        const EVENT_INTERVAL_SECS = 5;
+        let lastMetricType = '';
+        let lastPayload = '';
+        let payloadCount = 0;
+
+        function metricEventHandler(metricType, payload) {
+            lastMetricType = metricType;
+            lastPayload = payload;
+            payloadCount++;
+        }
+
+        function initTelemetry() {
+            metrics.enable();
+            metrics.setMetricEventInterval(EVENT_INTERVAL_SECS);
+            metrics.onMetricEvent(metricEventHandler);
+        }
+        window.onload = function () {
+            initTelemetry();
+
+            setupFinished();
+
+            setTimeout(() => {
+                assertTrue(metrics.isEnabled(), 'metrics should be enabled');
+                assertEqual('COBALT_UMA', lastMetricType, 'metricType should be uma');
+                assertTrue(lastPayload.length > 0, 'payload should be non-empty');
+                assertEqual(1, payloadCount, 'only one payload sent');
+            }, 4000);
+
+            setTimeout(() => {
+                assertEqual('COBALT_UMA', lastMetricType, 'metricType should be uma');
+                assertTrue(lastPayload.length > 0, 'payload should be non-empty');
+                assertEqual(2, payloadCount, 'two payloads sent');
+
+                metrics.disable();
+
+                setTimeout(() => {
+                    assertFalse(metrics.isEnabled(), 'should disable metrics');
+                    onEndTest();
+                }, 1000);
+            }, 11000);
+        }
+    </script>
+</body>
+
+</html>
diff --git a/cobalt/black_box_tests/testdata/timer_hit_after_preload.html b/cobalt/black_box_tests/testdata/timer_hit_after_preload.html
index facfcfb..cc2c20b 100644
--- a/cobalt/black_box_tests/testdata/timer_hit_after_preload.html
+++ b/cobalt/black_box_tests/testdata/timer_hit_after_preload.html
@@ -41,4 +41,4 @@
     NewElement.setAttribute('id', 'script_executed');
     document.appendChild(NewElement);
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/testdata/timer_hit_in_preload.html b/cobalt/black_box_tests/testdata/timer_hit_in_preload.html
index a8b8510..5048f7b 100644
--- a/cobalt/black_box_tests/testdata/timer_hit_in_preload.html
+++ b/cobalt/black_box_tests/testdata/timer_hit_in_preload.html
@@ -37,4 +37,4 @@
       verifyAllMethods();
     }, 1500);
   </script>
-</body>
\ No newline at end of file
+</body>
diff --git a/cobalt/black_box_tests/tests/preload_font.py b/cobalt/black_box_tests/tests/preload_font.py
index b43a00a..6b09bf5 100644
--- a/cobalt/black_box_tests/tests/preload_font.py
+++ b/cobalt/black_box_tests/tests/preload_font.py
@@ -40,8 +40,9 @@
         start_time = time.time()
         while runner.IsInPreload():
           if time.time() - start_time > _MAX_RESUME_WAIT_SECONDS:
-            raise Exception('Cobalt can not exit preload mode after receiving'
-                            'resume signal')
+            raise RuntimeError(
+                'Cobalt can not exit preload mode after receiving'
+                'resume signal')
           time.sleep(.1)
         # At this point, Cobalt is in started mode.
         self.assertTrue(runner.JSTestsSucceeded())
diff --git a/cobalt/black_box_tests/tests/scroll.py b/cobalt/black_box_tests/tests/scroll.py
new file mode 100644
index 0000000..e0db0fd
--- /dev/null
+++ b/cobalt/black_box_tests/tests/scroll.py
@@ -0,0 +1,64 @@
+# Copyright 2023 The Cobalt Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""Tests for scroll containers."""
+
+import logging
+import traceback
+
+from cobalt.black_box_tests import black_box_tests
+from cobalt.black_box_tests.threaded_web_server import ThreadedWebServer
+from selenium.webdriver.common.action_chains import ActionChains
+from selenium.webdriver.common import keys
+
+# Time to sleep after a mouse move to give the device time to process it and
+# to avoid collapsing with subsequent move events.
+_SLEEP_AFTER_MOVE_TIME = 0.5
+
+
+def find_element_by_id(runner, id_selector):
+  return runner.webdriver.find_elements_by_css_selector('#' + id_selector)[0]
+
+
+class PointerTest(black_box_tests.BlackBoxTestCase):
+  """Tests pointer and mouse event."""
+
+  def test_pointer_events(self):
+    try:
+      with ThreadedWebServer(
+          binding_address=self.GetBindingAddress()) as server:
+        url = server.GetURL(file_name='testdata/scroll.html')
+
+        with self.CreateCobaltRunner(url=url) as runner:
+          logging.info('JS Test Setup WaitForJSTestsSetup')
+          runner.WaitForJSTestsSetup()
+          logging.info('JS Test Setup')
+          self.assertTrue(runner.webdriver)
+
+          row = find_element_by_id(runner, 'row')
+
+          # Perform mouse actions with ActionChains.
+          #   https://www.selenium.dev/selenium/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html#module-selenium.webdriver.common.action_chains  # pylint: disable=line-too-long
+          actions = ActionChains(runner.webdriver)
+          actions.click_and_hold(row).pause(_SLEEP_AFTER_MOVE_TIME)
+          actions.move_by_offset(-100, 0)
+          actions.release()
+          actions.perform()
+          runner.SendKeys(keys.Keys.NUMPAD0)
+          self.assertTrue(runner.JSTestsSucceeded())
+    except:  # pylint: disable=bare-except
+      traceback.print_exc()
+      # Consider an exception being thrown as a test failure.
+      self.fail('Test failure')
+    finally:
+      logging.info('Cleaning up.')
diff --git a/cobalt/black_box_tests/tests/telemetry_test.py b/cobalt/black_box_tests/tests/telemetry_test.py
new file mode 100644
index 0000000..dbb937b
--- /dev/null
+++ b/cobalt/black_box_tests/tests/telemetry_test.py
@@ -0,0 +1,34 @@
+# Copyright 2023 The Cobalt Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+"""Tests Cobalt Telemetry functionality."""
+
+from cobalt.black_box_tests import black_box_tests
+from cobalt.black_box_tests.threaded_web_server import ThreadedWebServer
+
+
+class TelemetryTest(black_box_tests.BlackBoxTestCase):
+  """Test Cobalt Telemetry functionality."""
+
+  def test_telemetry(self):
+
+    with ThreadedWebServer(binding_address=self.GetBindingAddress()) as server:
+      url = server.GetURL(file_name='testdata/telemetry_test.html')
+
+      # target_params to pass args to cobalt
+      with self.CreateCobaltRunner(
+          url=url,
+          poll_until_wait_seconds=70,
+          target_params=['--initial-metrics-upload-interval=0']) as runner:
+        runner.WaitForJSTestsSetup()
+        self.assertTrue(runner.JSTestsSucceeded())
diff --git a/cobalt/black_box_tests/threaded_web_server.py b/cobalt/black_box_tests/threaded_web_server.py
index d305ea3..040dcac 100644
--- a/cobalt/black_box_tests/threaded_web_server.py
+++ b/cobalt/black_box_tests/threaded_web_server.py
@@ -19,11 +19,12 @@
 
 import logging
 import os
-from six.moves import SimpleHTTPServer
-from six.moves import socketserver
 import socket
 import threading
 
+from six.moves import SimpleHTTPServer
+from six.moves import socketserver
+
 
 class _ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
   pass
@@ -67,7 +68,6 @@
     base_path: A path considered to be the root directory.
     paths_to_headers: A dictionary with keys partial paths and values of header
     dicts. Key is expected to be a substring of a file being served.
-
     E.g. if you have a test with files foo.html and foo.js, you can serve them
     separate headers with the following:
     paths_to_headers = {
@@ -154,7 +154,10 @@
     if not binding_address:
       # No specific binding address specified. Bind to any interfaces instead.
       binding_address = '0.0.0.0'
-    self._server = _ThreadedTCPServer((binding_address, 0), handler)
+    # pylint: disable=import-outside-toplevel
+    from cobalt.black_box_tests.bbt_settings import default_web_server_port
+    binding_port = default_web_server_port
+    self._server = _ThreadedTCPServer((binding_address, binding_port), handler)
 
     self._server_thread = None
 
@@ -164,6 +167,9 @@
       # When listening to any interfaces, get the IPv4 address of the hostname.
       self._bound_host = socket.gethostbyname(socket.gethostname())
 
+  def GetPort(self):
+    return self._bound_port
+
   def GetURL(self, file_name):
     """Given a |file_name|, return a HTTP URI that can be fetched.
 
diff --git a/cobalt/black_box_tests/web_platform_test_server.py b/cobalt/black_box_tests/web_platform_test_server.py
index 50ebda8..4d5d38a 100644
--- a/cobalt/black_box_tests/web_platform_test_server.py
+++ b/cobalt/black_box_tests/web_platform_test_server.py
@@ -73,7 +73,7 @@
     self._server_thread = threading.Thread(target=self.main)
     self._server_thread.start()
     while not self._server_started:
-      time.sleep(.1)
+      time.sleep(0.1)
     return self
 
   def __exit__(self, exc_type, exc_value, traceback):
diff --git a/cobalt/browser/BUILD.gn b/cobalt/browser/BUILD.gn
index 5b015e8..97ac9fa 100644
--- a/cobalt/browser/BUILD.gn
+++ b/cobalt/browser/BUILD.gn
@@ -58,7 +58,6 @@
     "//net",
   ]
   data_deps = [
-    "//cobalt/dom:licenses",
     "//cobalt/network:copy_ssl_certificates",
     "//third_party/icu:icudata",
   ]
@@ -157,7 +156,6 @@
     "//cobalt/audio",
     "//cobalt/base",
     "//cobalt/browser/memory_settings:browser_memory_settings",
-    "//cobalt/browser/memory_tracker:memory_tracker_tool",
     "//cobalt/browser/metrics",
     "//cobalt/build:cobalt_build_id",
     "//cobalt/build:cobalt_build_info",
@@ -200,9 +198,9 @@
     "//components/metrics",
     "//components/metrics_services_manager",
     "//crypto",
-    "//nb",
     "//net",
     "//starboard",
+    "//starboard/common",
     "//third_party/icu:icui18n",
     "//third_party/protobuf:protobuf_lite",
     "//url",
@@ -245,8 +243,6 @@
     "memory_settings/pretty_print_test.cc",
     "memory_settings/table_printer_test.cc",
     "memory_settings/test_common.h",
-    "memory_tracker/tool/tool_impl_test.cc",
-    "memory_tracker/tool/util_test.cc",
     "user_agent_string_test.cc",
   ]
 
@@ -255,7 +251,6 @@
     ":browser_switches",
     "//cobalt/base",
     "//cobalt/browser/memory_settings:browser_memory_settings",
-    "//cobalt/browser/memory_tracker:memory_tracker_tool",
     "//cobalt/dom",
     "//cobalt/loader",
     "//cobalt/math",
@@ -263,7 +258,6 @@
     "//cobalt/speech",
     "//cobalt/storage",
     "//cobalt/test:run_all_unittests",
-    "//nb",
     "//testing/gmock",
     "//testing/gtest",
   ]
diff --git a/cobalt/browser/application.cc b/cobalt/browser/application.cc
index 69a52c0..e05b7d0 100644
--- a/cobalt/browser/application.cc
+++ b/cobalt/browser/application.cc
@@ -49,17 +49,15 @@
 #include "cobalt/base/on_screen_keyboard_hidden_event.h"
 #include "cobalt/base/on_screen_keyboard_shown_event.h"
 #include "cobalt/base/on_screen_keyboard_suggestions_updated_event.h"
+#include "cobalt/base/starboard_stats_tracker.h"
 #include "cobalt/base/startup_timer.h"
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 #include "cobalt/base/version_compatibility.h"
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 #include "cobalt/base/window_on_offline_event.h"
 #include "cobalt/base/window_on_online_event.h"
 #include "cobalt/base/window_size_changed_event.h"
 #include "cobalt/browser/client_hint_headers.h"
 #include "cobalt/browser/device_authentication.h"
 #include "cobalt/browser/memory_settings/auto_mem_settings.h"
-#include "cobalt/browser/memory_tracker/tool.h"
 #include "cobalt/browser/metrics/cobalt_metrics_services_manager.h"
 #include "cobalt/browser/switches.h"
 #include "cobalt/browser/user_agent_platform_info.h"
@@ -78,6 +76,7 @@
 #include "cobalt/watchdog/watchdog.h"
 #include "components/metrics/metrics_service.h"
 #include "starboard/common/device_type.h"
+#include "starboard/common/metrics/stats_tracker.h"
 #include "starboard/common/system_property.h"
 #include "starboard/configuration.h"
 #include "starboard/event.h"
@@ -528,14 +527,6 @@
 base::LazyInstance<NonTrivialStaticFields>::DestructorAtExit
     non_trivial_static_fields = LAZY_INSTANCE_INITIALIZER;
 
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-const char kMemoryTrackerCommand[] = "memory_tracker";
-const char kMemoryTrackerCommandShortHelp[] = "Create a memory tracker.";
-const char kMemoryTrackerCommandLongHelp[] =
-    "Create a memory tracker of the given type. Use an empty string to see the "
-    "available trackers.";
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
 void AddCrashHandlerAnnotations(const UserAgentPlatformInfo& platform_info) {
   auto crash_handler_extension =
       static_cast<const CobaltExtensionCrashHandlerApi*>(
@@ -631,17 +622,7 @@
 
 Application::Application(const base::Closure& quit_closure, bool should_preload,
                          SbTimeMonotonic timestamp)
-    : message_loop_(base::MessageLoop::current()),
-      quit_closure_(quit_closure)
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-      ,
-      ALLOW_THIS_IN_INITIALIZER_LIST(memory_tracker_command_handler_(
-          kMemoryTrackerCommand,
-          base::Bind(&Application::OnMemoryTrackerCommand,
-                     base::Unretained(this)),
-          kMemoryTrackerCommandShortHelp, kMemoryTrackerCommandLongHelp))
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-{
+    : message_loop_(base::MessageLoop::current()), quit_closure_(quit_closure) {
   DCHECK(!quit_closure_.is_null());
   if (should_preload) {
     preload_timestamp_ = timestamp;
@@ -693,6 +674,9 @@
   // URLRequestContext;
   base::TaskScheduler::CreateAndStartWithDefaultParams("Cobalt TaskScheduler");
 
+  starboard::StatsTrackerContainer::GetInstance()->set_stats_tracker(
+      std::make_unique<StarboardStatsTracker>());
+
   // Initializes persistent settings.
   persistent_settings_ =
       std::make_unique<persistent_storage::PersistentSettings>(
@@ -768,7 +752,6 @@
 
 #endif  // defined(ENABLE_DEBUG_COMMAND_LINE_SWITCHES)
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
   constexpr int kDefaultMinCompatibilityVersion = 1;
   int minimum_version = kDefaultMinCompatibilityVersion;
 #if defined(ENABLE_DEBUG_COMMAND_LINE_SWITCHES)
@@ -781,7 +764,6 @@
   }
 #endif  // defined(ENABLE_DEBUG_COMMAND_LINE_SWITCHES)
   base::VersionCompatibility::GetInstance()->SetMinimumVersion(minimum_version);
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 
   base::Optional<std::string> partition_key;
   if (command_line->HasSwitch(browser::switches::kLocalStoragePartitionUrl)) {
@@ -860,14 +842,6 @@
 
   EnableUsingStubImageDecoderIfRequired();
 
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-  if (command_line->HasSwitch(switches::kMemoryTracker)) {
-    std::string command_arg =
-        command_line->GetSwitchValueASCII(switches::kMemoryTracker);
-    memory_tracker_tool_ = memory_tracker::CreateMemoryTrackerTool(command_arg);
-  }
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
   if (command_line->HasSwitch(switches::kDisableImageAnimations)) {
     options.web_module_options.enable_image_animations = false;
   }
@@ -907,6 +881,9 @@
   network_module_.reset(new network::NetworkModule(
       CreateUserAgentString(platform_info), GetClientHintHeaders(platform_info),
       &event_dispatcher_, network_module_options));
+  // This is not necessary, but since some platforms need a lot of time to read
+  // the savegame, start the storage manager as soon as possible here.
+  network_module_->EnsureStorageManagerStarted();
 
   AddCrashHandlerAnnotations(platform_info);
 
@@ -1013,15 +990,20 @@
 #endif  // ENABLE_WEBDRIVER
 
 #if defined(ENABLE_DEBUGGER)
-  int remote_debugging_port = GetRemoteDebuggingPort();
-  if (remote_debugging_port == 0) {
-    DLOG(INFO) << "Remote web debugger disabled because "
-               << switches::kRemoteDebuggingPort << " is 0.";
+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+          switches::kDisableWebDebugger)) {
+    LOG(INFO) << "Remote web debugger disabled.";
   } else {
-    debug_web_server_.reset(new debug::remote::DebugWebServer(
-        remote_debugging_port, GetDevServersListenIp(),
-        base::Bind(&BrowserModule::CreateDebugClient,
-                   base::Unretained(browser_module_.get()))));
+    int remote_debugging_port = GetRemoteDebuggingPort();
+    if (remote_debugging_port == 0) {
+      LOG(INFO) << "Remote web debugger disabled because "
+                << switches::kRemoteDebuggingPort << " is 0.";
+    } else {
+      debug_web_server_.reset(new debug::remote::DebugWebServer(
+          remote_debugging_port, GetDevServersListenIp(),
+          base::Bind(&BrowserModule::CreateDebugClient,
+                     base::Unretained(browser_module_.get()))));
+    }
   }
 #endif  // ENABLE_DEBUGGER
 
@@ -1052,10 +1034,6 @@
   // an opportunity to clean up late logs and persist metrics.
   metrics::CobaltMetricsServicesManager::DeleteInstance();
 
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-  memory_tracker_tool_.reset(NULL);
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
   // Unregister event callbacks.
   event_dispatcher_.RemoveEventCallback(base::WindowSizeChangedEvent::TypeId(),
                                         window_size_change_event_callback_);
@@ -1471,24 +1449,6 @@
   event_dispatcher_.DispatchEvent(std::unique_ptr<base::Event>(event));
 }
 
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-void Application::OnMemoryTrackerCommand(const std::string& message) {
-  if (base::MessageLoop::current() != message_loop_) {
-    message_loop_->task_runner()->PostTask(
-        FROM_HERE, base::Bind(&Application::OnMemoryTrackerCommand,
-                              base::Unretained(this), message));
-    return;
-  }
-
-  if (memory_tracker_tool_) {
-    LOG(ERROR) << "Can not create a memory tracker when one is already active.";
-    return;
-  }
-  LOG(WARNING) << "Creating \"" << message << "\" memory tracker.";
-  memory_tracker_tool_ = memory_tracker::CreateMemoryTrackerTool(message);
-}
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
 // Called to handle deep link consumed events.
 void Application::OnDeepLinkConsumedCallback(const std::string& link) {
   LOG(INFO) << "Got deep link consumed callback: " << link;
@@ -1558,9 +1518,9 @@
   // it's enabled or upload interval.
   bool is_metrics_enabled = persistent_settings_->GetPersistentSettingAsBool(
       metrics::kMetricEnabledSettingName, false);
-  metrics_services_manager_->SetUploadInterval(
-      persistent_settings_->GetPersistentSettingAsInt(
-          metrics::kMetricEventIntervalSettingName, 300));
+  auto metric_event_interval = persistent_settings_->GetPersistentSettingAsInt(
+      metrics::kMetricEventIntervalSettingName, 300);
+  metrics_services_manager_->SetUploadInterval(metric_event_interval);
   metrics_services_manager_->ToggleMetricsEnabled(is_metrics_enabled);
   // Metric recording state initialization _must_ happen before we bootstrap
   // otherwise we crash.
@@ -1569,6 +1529,10 @@
   // UpdateUploadPermissions bootstraps the whole metric reporting, scheduling,
   // and uploading cycle.
   metrics_services_manager_->UpdateUploadPermissions(is_metrics_enabled);
+  LOG(INFO)
+      << "Cobalt Telemetry initialized with settings: is_metrics_enabled: "
+      << is_metrics_enabled
+      << ", metric_event_interval: " << metric_event_interval;
 }
 
 }  // namespace browser
diff --git a/cobalt/browser/application.h b/cobalt/browser/application.h
index 7ca2d5d..5015219 100644
--- a/cobalt/browser/application.h
+++ b/cobalt/browser/application.h
@@ -26,7 +26,6 @@
 #include "base/threading/thread_checker.h"
 #include "cobalt/base/event_dispatcher.h"
 #include "cobalt/browser/browser_module.h"
-#include "cobalt/browser/memory_tracker/tool.h"
 #include "cobalt/browser/metrics/cobalt_metrics_services_manager.h"
 #include "cobalt/network/network_module.h"
 #include "cobalt/persistent_storage/persistent_settings.h"
@@ -199,17 +198,6 @@
 
   base::RepeatingTimer stats_update_timer_;
 
-#if defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-  std::unique_ptr<memory_tracker::Tool> memory_tracker_tool_;
-
-  // Command handler object for creating a memory tracker.
-  debug::console::ConsoleCommandManager::CommandHandler
-      memory_tracker_command_handler_;
-
-  // Create a memory tracker with the given message
-  void OnMemoryTrackerCommand(const std::string& message);
-#endif  // defined(ENABLE_DEBUGGER) && defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
   // Deep links are stored here until they are reported consumed.
   std::string unconsumed_deep_link_;
 
diff --git a/cobalt/browser/browser_module.cc b/cobalt/browser/browser_module.cc
index e8f1c28..d83200f 100644
--- a/cobalt/browser/browser_module.cc
+++ b/cobalt/browser/browser_module.cc
@@ -55,7 +55,6 @@
 #include "cobalt/ui_navigation/scroll_engine/scroll_engine.h"
 #include "cobalt/web/csp_delegate_factory.h"
 #include "cobalt/web/navigator_ua_data.h"
-#include "nb/memory_scope.h"
 #include "starboard/atomic.h"
 #include "starboard/common/string.h"
 #include "starboard/configuration.h"
@@ -621,6 +620,10 @@
   }
 
   options.debugger_state = debugger_state_.get();
+  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
+          switches::kDisableWebDebugger)) {
+    options.enable_debugger = true;
+  }
 #endif  // ENABLE_DEBUGGER
 
   // Pass down this callback from to Web module.
@@ -1419,9 +1422,14 @@
       FROM_HERE,
       base::Bind(&BrowserModule::GetDebugDispatcherInternal,
                  base::Unretained(this), base::Unretained(&debug_dispatcher)));
-  DCHECK(debug_dispatcher);
-  return std::unique_ptr<debug::DebugClient>(
-      new debug::DebugClient(debug_dispatcher, delegate));
+  if (debug_dispatcher) {
+    return std::unique_ptr<debug::DebugClient>(
+        new debug::DebugClient(debug_dispatcher, delegate));
+  } else {
+    LOG(ERROR)
+        << "Debugger connected but debugging the main web module is disabled.";
+    return nullptr;
+  }
 }
 
 void BrowserModule::GetDebugDispatcherInternal(
diff --git a/cobalt/browser/debug_console.cc b/cobalt/browser/debug_console.cc
index b08fed0..f540eec 100644
--- a/cobalt/browser/debug_console.cc
+++ b/cobalt/browser/debug_console.cc
@@ -205,7 +205,14 @@
 
 void DebugConsole::CycleMode() {
   base::AutoLock lock(mode_mutex_);
-  mode_ = (mode_ + 1) % debug::console::kDebugConsoleModeCount;
+  int number_of_modes = debug::console::kDebugConsoleModeCount;
+#if defined(ENABLE_DEBUGGER)
+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+          switches::kDisableWebDebugger)) {
+    number_of_modes = (debug::console::kDebugConsoleModeHud + 1);
+  }
+#endif
+  mode_ = (mode_ + 1) % number_of_modes;
 }
 
 debug::console::DebugConsoleMode DebugConsole::GetMode() {
diff --git a/cobalt/browser/idl_files.gni b/cobalt/browser/idl_files.gni
index 4663d09..12adde0 100644
--- a/cobalt/browser/idl_files.gni
+++ b/cobalt/browser/idl_files.gni
@@ -156,7 +156,6 @@
   "//cobalt/h5vcc/dial/dial_server.idl",
   "//cobalt/h5vcc/h5vcc.idl",
   "//cobalt/h5vcc/h5vcc_accessibility.idl",
-  "//cobalt/h5vcc/h5vcc_account_info.idl",
   "//cobalt/h5vcc/h5vcc_account_manager_internal.idl",
   "//cobalt/h5vcc/h5vcc_audio_config.idl",
   "//cobalt/h5vcc/h5vcc_audio_config_array.idl",
diff --git a/cobalt/browser/memory_settings/calculations_test.cc b/cobalt/browser/memory_settings/calculations_test.cc
index 62104a7..502321e 100644
--- a/cobalt/browser/memory_settings/calculations_test.cc
+++ b/cobalt/browser/memory_settings/calculations_test.cc
@@ -24,7 +24,6 @@
 #include "starboard/common/log.h"
 #include "starboard/memory.h"
 #include "starboard/system.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/browser/memory_settings/pretty_print_test.cc b/cobalt/browser/memory_settings/pretty_print_test.cc
index 4034bfa..3eafe36 100644
--- a/cobalt/browser/memory_settings/pretty_print_test.cc
+++ b/cobalt/browser/memory_settings/pretty_print_test.cc
@@ -30,7 +30,6 @@
 #include "starboard/memory.h"
 #include "starboard/string.h"
 #include "starboard/system.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/browser/memory_tracker/BUILD.gn b/cobalt/browser/memory_tracker/BUILD.gn
deleted file mode 100644
index f2ecb49..0000000
--- a/cobalt/browser/memory_tracker/BUILD.gn
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2021 The Cobalt Authors. All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-static_library("memory_tracker_tool") {
-  has_pedantic_warnings = true
-  sources = [
-    "tool.cc",
-    "tool.h",
-    "tool/buffered_file_writer.cc",
-    "tool/buffered_file_writer.h",
-    "tool/compressed_time_series_tool.cc",
-    "tool/compressed_time_series_tool.h",
-    "tool/histogram_table_csv_base.h",
-    "tool/internal_fragmentation_tool.cc",
-    "tool/internal_fragmentation_tool.h",
-    "tool/leak_finder_tool.cc",
-    "tool/leak_finder_tool.h",
-    "tool/log_writer_tool.cc",
-    "tool/log_writer_tool.h",
-    "tool/malloc_logger_tool.cc",
-    "tool/malloc_logger_tool.h",
-    "tool/malloc_stats_tool.cc",
-    "tool/malloc_stats_tool.h",
-    "tool/memory_size_binner_tool.cc",
-    "tool/memory_size_binner_tool.h",
-    "tool/params.cc",
-    "tool/params.h",
-    "tool/print_csv_tool.cc",
-    "tool/print_csv_tool.h",
-    "tool/print_tool.cc",
-    "tool/print_tool.h",
-    "tool/tool_impl.cc",
-    "tool/tool_impl.h",
-    "tool/tool_thread.cc",
-    "tool/tool_thread.h",
-    "tool/util.cc",
-    "tool/util.h",
-  ]
-  deps = [
-    "//base",
-    "//cobalt/base",
-    "//cobalt/script",
-    "//nb",
-    "//starboard",
-  ]
-}
diff --git a/cobalt/browser/memory_tracker/tool.cc b/cobalt/browser/memory_tracker/tool.cc
deleted file mode 100644
index 0db436a..0000000
--- a/cobalt/browser/memory_tracker/tool.cc
+++ /dev/null
@@ -1,514 +0,0 @@
-// Copyright 2016 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool.h"
-
-#include <cmath>
-#include <cstdlib>
-#include <map>
-#include <memory>
-#include <string>
-
-#include "base/logging.h"
-#include "base/strings/string_number_conversions.h"
-#include "cobalt/browser/memory_tracker/tool/compressed_time_series_tool.h"
-#include "cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.h"
-#include "cobalt/browser/memory_tracker/tool/leak_finder_tool.h"
-#include "cobalt/browser/memory_tracker/tool/log_writer_tool.h"
-#include "cobalt/browser/memory_tracker/tool/malloc_logger_tool.h"
-#include "cobalt/browser/memory_tracker/tool/malloc_stats_tool.h"
-#include "cobalt/browser/memory_tracker/tool/memory_size_binner_tool.h"
-#include "cobalt/browser/memory_tracker/tool/print_csv_tool.h"
-#include "cobalt/browser/memory_tracker/tool/print_tool.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "cobalt/browser/memory_tracker/tool/tool_thread.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "starboard/common/log.h"
-#include "starboard/configuration.h"
-#include "starboard/configuration_constants.h"
-#include "starboard/file.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-#if !defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-// Null implementation for memory tracker tool.
-class NullTool : public Tool {
- public:
-  virtual ~NullTool() {}
-};
-
-// Instantiates the memory tracker tool from the command argument.
-std::unique_ptr<Tool> CreateMemoryTrackerTool(const std::string&) {
-  return std::unique_ptr<Tool>(new NullTool);
-}
-
-#else
-
-using nb::analytics::MemoryTracker;
-
-namespace {
-enum SwitchEnum {
-  kNull,
-  kStartup,
-  kContinuousPrinter,
-  kCompressedTimeseries,
-  kBinnerAnalytics,
-  kAllocationLogger,
-  kLeakTracer,
-  kJavascriptLeakTracer,
-  kInternalFragmentationTracer,
-  kMallocStats,
-  kMallocLogger,
-};
-
-struct SwitchVal {
-  SwitchVal() : help_msg(), enum_value(kNull) {}
-  SwitchVal(const SwitchVal& other)
-      : tool_name(other.tool_name),
-        help_msg(other.help_msg),
-        enum_value(other.enum_value) {}
-  SwitchVal(const char* name, const char* msg, SwitchEnum val)
-      : tool_name(name), help_msg(msg), enum_value(val) {}
-
-  std::string tool_name;
-  std::string help_msg;
-  SwitchEnum enum_value;
-};
-
-class SbLogger : public AbstractLogger {
- public:
-  void Output(const char* str) override { LOG(INFO) << str; }
-  void Flush() override { SbLogFlush(); }
-};
-
-class FileLogger : public AbstractLogger {
- public:
-  explicit FileLogger(const std::string& filename);
-  ~FileLogger();
-  void Output(const char* str) override {
-    if (SbFileIsValid(log_file_)) {
-      SbFileWrite(log_file_, str, static_cast<int>(strlen(str)));
-      SbFileFlush(log_file_);
-    } else {
-      LOG(INFO) << str;
-    }
-  }
-  void Flush() override { SbLogFlush(); }
-
- private:
-  SbFile log_file_;
-};
-
-FileLogger::FileLogger(const std::string& filename)
-    : log_file_(kSbFileInvalid) {
-  char file_name_buff[2048] = {};
-  SbSystemGetPath(kSbSystemPathDebugOutputDirectory, file_name_buff,
-                  arraysize(file_name_buff));
-  std::string path(file_name_buff);
-  if (!path.empty()) {  // Protect against a dangling "/" at end.
-    const int back_idx_signed = static_cast<int>(path.length()) - 1;
-    if (back_idx_signed >= 0) {
-      const size_t idx = back_idx_signed;
-      if (path[idx] == kSbFileSepChar) {
-        path.erase(idx);
-      }
-    }
-  }
-  path.push_back(kSbFileSepChar);
-  path.append(filename);
-  int flags = kSbFileCreateAlways | kSbFileWrite;
-  bool created_ok = false;
-  SbFileError error_code = kSbFileOk;
-  log_file_ = SbFileOpen(path.c_str(), flags, &created_ok, &error_code);
-  if (log_file_ == kSbFileInvalid || !created_ok) {
-    LOG(ERROR) << "Error creating log file";
-    return;
-  } else {
-    LOG(INFO) << "Logging to file: " << path;
-  }
-}
-
-FileLogger::~FileLogger() {
-  SbFileClose(log_file_);
-  log_file_ = kSbFileInvalid;
-}  // namespace
-
-// Parses out the toolname for a tool command.
-// Example:
-//   INPUT:  "tool_name(arg):filename"
-//   OUTPUT: "tool_name"
-std::string ParseToolName(const std::string& command_arg) {
-  const size_t first_open_paren_idx = command_arg.find('(');
-  if (first_open_paren_idx == std::string::npos) {
-    const size_t first_colon_idx = command_arg.find(':');
-    if (first_colon_idx == std::string::npos) {
-      return command_arg;
-    }
-    return command_arg.substr(0, first_colon_idx);
-  }
-  return command_arg.substr(0, first_open_paren_idx);
-}
-
-// Parses out the output filename for a tool command.
-// Example:
-//   INPUT:  "tool_name(arg):filename"
-//   OUTPUT: "filename"
-std::string ParseFileName(const std::string& command_arg) {
-  const size_t first_colon_idx = command_arg.find(':');
-  if (first_colon_idx == std::string::npos) {
-    return "";
-  }
-  return command_arg.substr(1 + first_colon_idx);
-}
-
-// Parses out the arguments for a tool.
-// Example:
-//   INPUT:  "tool_name(arg):filename"
-//   OUTPUT: "arg"
-std::string ParseToolArg(const std::string& command_arg) {
-  const size_t first_open_paren_idx = command_arg.find('(');
-  const size_t last_closing_paren_idx = command_arg.find_last_of(')');
-
-  if ((first_open_paren_idx == std::string::npos) ||
-      (last_closing_paren_idx == std::string::npos)) {
-    return "";
-  }
-
-  if (last_closing_paren_idx < first_open_paren_idx) {
-    return "";
-  }
-
-  const size_t begin_idx = first_open_paren_idx + 1;
-  const size_t length = (last_closing_paren_idx - begin_idx);
-  std::string arg_str = command_arg.substr(begin_idx, length);
-  return arg_str;
-}
-
-struct DisableMemoryTrackerInScope {
-  explicit DisableMemoryTrackerInScope(MemoryTracker* tracker)
-      : tracker_(tracker) {
-    if (tracker_) {
-      tracker_->SetMemoryTrackingEnabled(false);
-    }
-  }
-
-  ~DisableMemoryTrackerInScope() {
-    if (tracker_) {
-      tracker_->SetMemoryTrackingEnabled(true);
-    }
-  }
-
-  MemoryTracker* tracker_;
-};
-
-}  // namespace.
-
-class MemoryTrackerThreadImpl : public Tool {
- public:
-  explicit MemoryTrackerThreadImpl(base::SimpleThread* ptr)
-      : thread_ptr_(ptr) {}
-  ~MemoryTrackerThreadImpl() override { thread_ptr_.reset(NULL); }
-  std::unique_ptr<base::SimpleThread> thread_ptr_;
-};
-
-std::unique_ptr<Tool> CreateMemoryTrackerTool(const std::string& command_arg) {
-  // The command line switch for memory_tracker was used. Look into the args
-  // and determine the mode that the memory_tracker should be used for.
-
-  // The map is used to
-  // 1) Resolve the string to an enum.
-  // 2) Print a useful help method of all known memory_tracker modes.
-  typedef std::map<std::string, SwitchVal> SwitchMap;
-
-  SwitchVal startup_tool(
-      "startup(num_mins=1)",  // Name of tool.
-      "  Records high-frequency memory metrics for the first 60\n"
-      "  seconds of program launch and then dumps it out in CSV format\n"
-      "  to stdout.\n",
-      kStartup);
-
-  SwitchVal continuous_printer_tool(
-      "continuous_printer",  // Name of tool.
-      "  Once every second the memory state is dumped to stdout.\n",
-      kContinuousPrinter);
-
-  SwitchVal compressed_timeseries_tool(
-      "compressed_timeseries",  // Name of tool.
-      "  Use this tool to see the growth in memory usage as the app runs.\n"
-      "  The memory growth is segmented into memory scopes and outputted as\n"
-      "  CSV. The compressed time-series will depict the full history of\n"
-      "  the memory using a fixed number of rows. Older history has degraded\n"
-      "  resolution and while new entries are captured in full detail. This\n"
-      "  achieved by evicting old entries by an exponential decay scheme.\n",
-      kCompressedTimeseries);
-
-  SwitchVal binner_tool(
-      "binner(region=NULL)",
-      "  Dumps memory statistics once a second in CSV format to stdout.\n"
-      "  The default memory region is all memory regions. Pass the\n"
-      "  name of the memory region to specify that only that memory region\n"
-      "  should be tracked. For example: binner(Javascript).\n",
-      kBinnerAnalytics);
-
-  SwitchVal allocation_logger_tool(
-      "allocation_logger",
-      "  Continuously writes allocations and deallocations to\n"
-      "  memory_log.txt. This is a legacy format used by lbshell. The\n"
-      "  location of this memory_log.txt file is in the platform dependent\n"
-      "  directory specified by kSbSystemPathDebugOutputDirectory.\n",
-      kAllocationLogger);
-
-  SwitchVal leak_tracing_tool(
-      "leak_tracer",
-      "  Automatically detects leaks and reports them in CSV format.\n",
-      kLeakTracer);
-
-  SwitchVal js_leak_tracing_tool(
-      "js_leak_tracer",
-      "  Automatically detects Javascript leaks and reports them in CSV\n"
-      "  format.\n",
-      kJavascriptLeakTracer);
-
-  SwitchVal internal_fragmentation_tracer_tool(
-      "internal_fragmentation_tracer",
-      "  Traces internal fragmentation and stores it in CSV format.\n",
-      kInternalFragmentationTracer);
-
-  SwitchVal malloc_stats_tool(
-      "malloc_stats",
-      "  Queries the allocation system for memory usage. This is the most\n"
-      "  lightweight tool. Output is CSV format.\n",
-      kMallocStats);
-
-  SwitchVal malloc_logger_tool(
-      "malloc_logger",
-      "  Continuously writes allocations, deallocations, allocation location\n"
-      "  and malloc stats to memory_log_<timestamp>.csv, without headers.\n"
-      "  The location of this log file is in the platform dependent\n"
-      "  directory specified by kSbSystemPathDebugOutputDirectory.\n",
-      kMallocLogger);
-
-  SwitchMap switch_map;
-  switch_map[ParseToolName(startup_tool.tool_name)] = startup_tool;
-  switch_map[ParseToolName(continuous_printer_tool.tool_name)] =
-      continuous_printer_tool;
-  switch_map[ParseToolName(compressed_timeseries_tool.tool_name)] =
-      compressed_timeseries_tool;
-  switch_map[ParseToolName(binner_tool.tool_name)] = binner_tool;
-  switch_map[ParseToolName(allocation_logger_tool.tool_name)] =
-      allocation_logger_tool;
-  switch_map[ParseToolName(leak_tracing_tool.tool_name)] = leak_tracing_tool;
-  switch_map[ParseToolName(js_leak_tracing_tool.tool_name)] =
-      js_leak_tracing_tool;
-  switch_map[ParseToolName(internal_fragmentation_tracer_tool.tool_name)] =
-      internal_fragmentation_tracer_tool;
-  switch_map[ParseToolName(malloc_logger_tool.tool_name)] = malloc_logger_tool;
-
-  switch_map[ParseToolName(malloc_stats_tool.tool_name)] = malloc_stats_tool;
-
-  std::string tool_name = ParseToolName(command_arg);
-  std::string tool_arg = ParseToolArg(command_arg);
-  std::string filename = ParseFileName(command_arg);
-
-  // FAST OUT - is a thread type not selected? Then print out a help menu
-  // and request that the app should shut down.
-  SwitchMap::const_iterator found_it = switch_map.find(tool_name);
-  if (found_it == switch_map.end()) {
-    // Error, tell the user what to do instead and then exit.
-    std::stringstream ss;
-    ss << "\nNo memory tracker tool selected so help has been invoked:\n";
-    ss << "Memory Tracker help:\n";
-    for (SwitchMap::const_iterator it = switch_map.begin();
-         it != switch_map.end(); ++it) {
-      const std::string& name = it->first;
-      const SwitchVal& val = it->second;
-      ss << "    memory_tracker=" << name << " \n" << val.help_msg;
-    }
-    ss << "\nIf the string has a colon, then the name after the colon is used\n"
-          "as the filename for output.\n"
-          "For example: \"leak_tracer:leaks.csv\"\n";
-    LOG(INFO) << ss.str();
-    ss.str("");  // Clears the contents of stringstream.
-
-    // Try and turn off all logging so that the stdout is less likely to be
-    // polluted by interleaving output.
-    logging::SetMinLogLevel(INT_MAX);
-    // SbThreadSleep wants microseconds. We sleep here so that the user can
-    // read the help message before the engine starts up again and the
-    // fills the output with more logging text.
-    const SbTime four_seconds = 4000 * kSbTimeMillisecond;
-    SbThreadSleep(four_seconds);
-
-    found_it = switch_map.find(continuous_printer_tool.tool_name);
-
-    // One more help message and 1-second pause. Then continue on with the
-    // execution as normal.
-    const SbTime one_second = 1000 * kSbTimeMillisecond;
-    SbThreadSleep(one_second);
-  }
-
-  // Okay we have been resolved to use a memory tracker in some way.
-  DLOG(INFO) << "\n\nUsing MemoryTracking=" << found_it->first << "\n";
-
-  // Tools are expected to instantiate the MemoryTracker if they need it.
-  MemoryTracker* memory_tracker = NULL;
-  std::unique_ptr<AbstractTool> tool_ptr;
-
-  const SwitchVal& value = found_it->second;
-  switch (value.enum_value) {
-    case kNull: {
-      SB_NOTREACHED();
-      break;
-    }
-    case kStartup: {
-      double num_mins = 1.0;
-      if (!tool_arg.empty()) {
-        if (!base::StringToDouble(tool_arg, &num_mins) ||
-            std::isnan(num_mins) || num_mins <= 0) {
-          num_mins = 1.0;
-        }
-      }
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-
-      // Converts minutes into Sampling interval and also total sampling time.
-      // To keep the amount of elements in the output static, we adjust the
-      // sampling.
-      //
-      // The number of samples produced is held constants and is:
-      //   kNumSamples = F::TotalSamplingTime(num_mins) /
-      //                 F::SamplingIntervalMs(num_mins)
-      struct F {
-        static int SamplingIntervalMs(double mins) {
-          // kNumSamples is chosen such that SamplingIntervalMs(1) outputs
-          // 240ms.
-          static const double kNumSamples = 250.;
-          const int sample_time_ms =
-              static_cast<int>(ToMilliseconds(mins) / kNumSamples);
-          return static_cast<int>(sample_time_ms);
-        }
-
-        // TotalSamplingTime(1) outputs 60,000 milliseconds, or 1 minute.
-        static int ToMilliseconds(double mins) {
-          const double milliseconds = mins * 60. * 1000.;
-          return static_cast<int>(milliseconds);
-        }
-      };
-
-      // Sample time increases with the number of seconds. At one second we
-      // sample 4 times a second. This keeps the number of samples constant
-      // regardless of input time.
-      int sampling_interval_ms = F::SamplingIntervalMs(num_mins);
-      // Time until output is triggered.
-      int sampling_time_ms = F::ToMilliseconds(num_mins);
-      // Create a thread that will gather memory metrics for startup.
-      DisableMemoryTrackerInScope disable_in_scope(memory_tracker);
-      tool_ptr.reset(new PrintCSVTool(sampling_interval_ms, sampling_time_ms));
-      break;
-    }
-    case kContinuousPrinter: {
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      // Create a thread that will continuously report memory use.
-      DisableMemoryTrackerInScope disable_in_scope(memory_tracker);
-      tool_ptr.reset(new PrintTool);
-      break;
-    }
-    case kCompressedTimeseries: {
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      // Create a thread that will continuously report memory use.
-      DisableMemoryTrackerInScope disable_in_scope(memory_tracker);
-      tool_ptr.reset(new CompressedTimeSeriesTool);
-      break;
-    }
-    case kBinnerAnalytics: {
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      DisableMemoryTrackerInScope disable_in_scope(memory_tracker);
-      // Create a thread that will continuously report javascript memory
-      // analytics.
-      tool_ptr.reset(new MemorySizeBinnerTool(tool_arg));
-      break;
-    }
-    case kAllocationLogger: {
-      std::unique_ptr<LogWriterTool> disk_writer_tool(new LogWriterTool());
-      tool_ptr.reset(disk_writer_tool.release());
-      break;
-    }
-    case kLeakTracer: {
-      std::unique_ptr<LeakFinderTool> leak_finder(
-          new LeakFinderTool(LeakFinderTool::kCPlusPlus));
-
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      memory_tracker->SetMemoryTrackerDebugCallback(leak_finder.get());
-      tool_ptr.reset(leak_finder.release());
-      break;
-    }
-    case kJavascriptLeakTracer: {
-      std::unique_ptr<LeakFinderTool> leak_finder(
-          new LeakFinderTool(LeakFinderTool::kJavascript));
-
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      memory_tracker->SetMemoryTrackerDebugCallback(leak_finder.get());
-      tool_ptr.reset(leak_finder.release());
-      break;
-    }
-    case kInternalFragmentationTracer: {
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      tool_ptr.reset(new InternalFragmentationTool());
-      break;
-    }
-    case kMallocStats: {
-      tool_ptr.reset(new MallocStatsTool);
-      break;
-    }
-    case kMallocLogger: {
-      std::unique_ptr<MallocLoggerTool> malloc_logger(new MallocLoggerTool());
-
-      memory_tracker = MemoryTracker::Get();
-      memory_tracker->InstallGlobalTrackingHooks();
-      memory_tracker->SetMemoryTrackerDebugCallback(malloc_logger.get());
-      tool_ptr.reset(malloc_logger.release());
-      break;
-    }
-  }
-
-  if (tool_ptr.get()) {
-    DisableMemoryTrackerInScope disable_in_scope(memory_tracker);
-    AbstractLogger* logger = NULL;
-    if (!filename.empty()) {
-      logger = new FileLogger(filename);
-    }
-    if (!logger) {
-      logger = new SbLogger;
-    }
-    base::SimpleThread* thread = new ToolThread(memory_tracker,  // May be NULL.
-                                                tool_ptr.release(), logger);
-    return std::unique_ptr<Tool>(new MemoryTrackerThreadImpl(thread));
-  } else {
-    return std::unique_ptr<Tool>();
-  }
-}
-
-#endif  // !defined(STARBOARD_ALLOWS_MEMORY_TRACKING)
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool.h b/cobalt/browser/memory_tracker/tool.h
deleted file mode 100644
index d18fdce..0000000
--- a/cobalt/browser/memory_tracker/tool.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2016 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_H_
-
-#include <memory>
-#include <string>
-
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Self running tool. It only has a destructor defined.
-class Tool {
- public:
-  virtual ~Tool() {}
-};
-
-// Instantiates the memory tracker tool from the command argument.
-std::unique_ptr<Tool> CreateMemoryTrackerTool(const std::string& command_arg);
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/buffered_file_writer.cc b/cobalt/browser/memory_tracker/tool/buffered_file_writer.cc
deleted file mode 100644
index 73d3b47..0000000
--- a/cobalt/browser/memory_tracker/tool/buffered_file_writer.cc
+++ /dev/null
@@ -1,152 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/buffered_file_writer.h"
-
-#include "base/basictypes.h"
-#include "base/logging.h"
-
-#include "starboard/common/condition_variable.h"
-#include "starboard/common/log.h"
-#include "starboard/common/mutex.h"
-#include "starboard/file.h"
-#include "starboard/thread.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-BufferedFileWriter::BufferedFileWriter(const std::string& file_path)
-    : current_log_buffer_(0),
-      log_buffer_to_flush_(NULL),
-      log_file_(kSbFileInvalid),
-      diskwrite_mutex_(),
-      diskwrite_cond_(diskwrite_mutex_),
-      quit_thread_(false),
-      file_path_(file_path) {
-  memset(log_buffers_, 0, sizeof(log_buffers_));
-  StartThread();
-}
-
-BufferedFileWriter::~BufferedFileWriter() { QuitThread(); }
-
-void BufferedFileWriter::QuitThread() {
-  quit_thread_ = true;
-  SwapBuffers();
-  diskwrite_cond_.Signal();
-
-  SbThreadJoin(flush_thread_, NULL);
-
-  SbFileClose(log_file_);
-  log_file_ = kSbFileInvalid;
-}
-
-void BufferedFileWriter::StartThread() {
-  // Do not reset the LogBuffers here, as they may have been written to
-  // before the log thread was started.
-  int flags = kSbFileCreateAlways | kSbFileWrite;
-  bool created_ok = false;
-  SbFileError error_code = kSbFileOk;
-
-  log_file_ = SbFileOpen(file_path_.c_str(), flags, &created_ok, &error_code);
-
-  if (log_file_ == kSbFileInvalid || !created_ok) {
-    SbLogRaw("Error creating memory log file\n");
-    return;
-  }
-
-  flush_thread_ = SbThreadCreate(0,  // default stack size.
-                                 kSbThreadPriorityHigh, kSbThreadNoAffinity,
-                                 true,  // true - joinable.
-                                 "AllocationLoggerWriter", ThreadEntryFunc,
-                                 static_cast<void*>(this));
-}
-
-void BufferedFileWriter::Append(const char* data, size_t num_bytes) {
-  if (num_bytes > kBufferSize) {
-    // We can never log this, and it's probably an error, but let's not write
-    // over the end of the buffer.
-    DCHECK(false) << "Log data is larger than the full buffer size. "
-                     "Dropping log data\n";
-    return;
-  }
-
-  starboard::ScopedLock lock(buffer_write_mutex_);
-
-  // This function may be called before memory_log_writer_start.
-  if (log_buffers_[current_log_buffer_].num_bytes + num_bytes > kBufferSize) {
-    if (!SwapBuffers()) {
-      // Failed to swap the buffer, so we will have to drop this log
-      DCHECK(false) << "Dropping log data. Try increasing buffer size.";
-      return;
-    }
-  }
-
-  LogBuffer& current_buffer = log_buffers_[current_log_buffer_];
-  memcpy(current_buffer.buffer + current_buffer.num_bytes, data,
-               num_bytes);
-  current_buffer.num_bytes += num_bytes;
-  return;
-}
-
-void BufferedFileWriter::Run() {
-  starboard::ScopedLock lock(diskwrite_mutex_);
-  while (!quit_thread_) {
-    if (log_buffer_to_flush_ != NULL) {
-      size_t bytes_written =
-          SbFileWrite(log_file_, log_buffer_to_flush_->buffer,
-                      static_cast<int>(log_buffer_to_flush_->num_bytes));
-      if (bytes_written != log_buffer_to_flush_->num_bytes) {
-        SbLogRaw("Error writing to memory log. Aborting logging\n");
-        break;
-      }
-      log_buffer_to_flush_->num_bytes = 0;
-      log_buffer_to_flush_ = NULL;
-    }
-    diskwrite_cond_.Wait();  // Unlocks diskwrite_mutex_.
-  }
-}
-
-void* BufferedFileWriter::ThreadEntryFunc(void* context) {
-  BufferedFileWriter* self = static_cast<BufferedFileWriter*>(context);
-  self->Run();
-  return NULL;
-}
-
-bool BufferedFileWriter::SwapBuffers() {
-  // If the non-logging threads block on this for too long, try increasing
-  // the size of the buffers.
-  diskwrite_mutex_.Acquire();
-
-  bool can_swap = (log_buffer_to_flush_ == NULL);
-  if (!can_swap) {
-    SbLogRaw("Cannot swap buffer while a flush is pending.\n");
-  } else {
-    log_buffer_to_flush_ = &(log_buffers_[current_log_buffer_]);
-    current_log_buffer_ = (current_log_buffer_ + 1) % kNumBuffers;
-    SB_DCHECK(log_buffers_[current_log_buffer_].num_bytes == 0);
-  }
-
-  diskwrite_cond_.Signal();
-
-  diskwrite_mutex_.Release();
-  SbThreadYield();
-
-  return can_swap;
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/buffered_file_writer.h b/cobalt/browser/memory_tracker/tool/buffered_file_writer.h
deleted file mode 100644
index 7001464..0000000
--- a/cobalt/browser/memory_tracker/tool/buffered_file_writer.h
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_BUFFERED_FILE_WRITER_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_BUFFERED_FILE_WRITER_H_
-
-#include <string>
-
-#include "starboard/common/condition_variable.h"
-#include "starboard/common/log.h"
-#include "starboard/common/mutex.h"
-#include "starboard/file.h"
-#include "starboard/memory.h"
-#include "starboard/thread.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// This is a heavy weight file writing class. It's "heavy weight" because
-// 1) It uses its own thread.
-// 2) It uses a 4mb inlined buffer for file writes. This class guarantees
-// that it will never allocate memory and therefore can be used in high
-// performance, low-level data writes.
-class BufferedFileWriter {
- public:
-  // Constructs the BufferedFileWriter with the path to write to. A thread is
-  // started which will begin writing to the file object.
-  explicit BufferedFileWriter(const std::string& file_path);
-
-  // Implicitly calls JoinThread(). This is safe if JoinThread() has already
-  // been called.
-  ~BufferedFileWriter();
-
-  // Can be called by any thread. Pushes data to the buffer to be written out
-  // by the disk writing thread as is.
-  // Note that this append is raw and will NOT add any new line or other
-  // formatting characters.
-  void Append(const char* data, size_t num_bytes);
-
- private:
-  static void* ThreadEntryFunc(void* context);  // Delegates to Run().
-  void Run();
-  bool SwapBuffers();
-  void StartThread();
-  void QuitThread();
-
-  static const int kBufferSize = 1 << 20;
-  static const int kNumBuffers = 2;
-  struct LogBuffer {
-    char buffer[kBufferSize];
-    size_t num_bytes;
-  };
-  LogBuffer log_buffers_[kNumBuffers];
-  int current_log_buffer_;
-  LogBuffer* log_buffer_to_flush_;
-  SbFile log_file_;
-
-  starboard::Mutex diskwrite_mutex_;
-  starboard::Mutex buffer_write_mutex_;
-  starboard::ConditionVariable diskwrite_cond_;
-  SbThread flush_thread_;
-  bool quit_thread_;
-  std::string file_path_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_BUFFERED_FILE_WRITER_H_
diff --git a/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.cc b/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.cc
deleted file mode 100644
index 5cb3d52..0000000
--- a/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.cc
+++ /dev/null
@@ -1,247 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/compressed_time_series_tool.h"
-
-#include <iomanip>
-#include <map>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "starboard/common/log.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-///////////////////////////////////////////////////////////////////////////////
-CompressedTimeSeriesTool::CompressedTimeSeriesTool() : number_samples_(400) {}
-
-void CompressedTimeSeriesTool::Run(Params* params) {
-  TimeSeries timeseries;
-  Timer timer_status_message(base::TimeDelta::FromSeconds(1));
-
-  // Outputs CSV once every minute.
-  Timer timer_output_csv(base::TimeDelta::FromMinutes(1));
-
-  // Initial sample time is every 50 milliseconds.
-  base::TimeDelta current_sample_interval =
-      base::TimeDelta::FromMilliseconds(50);
-
-  while (!params->wait_for_finish_signal(current_sample_interval.ToSbTime())) {
-    AcquireSample(params->memory_tracker(), &timeseries,
-                  params->time_since_start());
-
-    if (IsFull(timeseries, number_samples_)) {
-      Compress(&timeseries);           // Remove every other element.
-      current_sample_interval *= 2;    // Double the sample time.
-      timer_status_message.Restart();  // Skip status message.
-    }
-
-    if (timer_output_csv.UpdateAndIsExpired()) {
-      const std::string str = ToCsvString(timeseries);
-      params->logger()->Output(str.c_str());
-      timer_status_message.Restart();  // Skip status message.
-    }
-
-    // Print status message.
-    if (timer_status_message.UpdateAndIsExpired()) {
-      std::stringstream ss;
-      ss << tool_name() << " is running..." << kNewLine;
-      params->logger()->Output(ss.str().c_str());
-    }
-  }
-}
-
-std::string CompressedTimeSeriesTool::ToCsvString(
-    const TimeSeries& timeseries) {
-  size_t largest_sample_size = 0;
-  size_t smallest_sample_size = INT_MAX;
-
-  typedef MapAllocationSamples::const_iterator MapIt;
-
-  // Sanitize samples_in and store as samples.
-  const MapAllocationSamples& samples_in = timeseries.samples_;
-  MapAllocationSamples samples;
-  for (MapIt it = samples_in.begin(); it != samples_in.end(); ++it) {
-    std::string name = it->first;
-    const AllocationSamples& value = it->second;
-
-    if (value.allocated_bytes_.size() != value.number_allocations_.size()) {
-      SB_NOTREACHED() << "Error at " << __FILE__ << ":" << __LINE__;
-      return "ERROR";
-    }
-
-    const size_t n = value.allocated_bytes_.size();
-    if (n > largest_sample_size) {
-      largest_sample_size = n;
-    }
-    if (n < smallest_sample_size) {
-      smallest_sample_size = n;
-    }
-
-    const bool duplicate_found = (samples.end() != samples.find(name));
-    if (duplicate_found) {
-      SB_NOTREACHED() << "Error, duplicate found for entry: " << name
-                      << kNewLine;
-    }
-    // Store value as a sanitized sample.
-    samples[name] = value;
-  }
-
-  SB_DCHECK(largest_sample_size == smallest_sample_size);
-
-  std::stringstream ss;
-
-  // Begin output to CSV.
-
-  // Preamble
-  ss << kNewLine << "//////////////////////////////////////////////" << kNewLine
-     << "// CSV of BYTES allocated per region (MB's)." << kNewLine
-     << "// Units are in Megabytes. This is designed" << kNewLine
-     << "// to be used in a stacked graph." << kNewLine;
-
-  // HEADER.
-  ss << kQuote << "Time(mins)" << kQuote << kDelimiter;
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    const std::string& name = it->first;
-    ss << kQuote << SanitizeCSVKey(name) << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-
-  // Print out the values of each of the samples.
-  for (size_t i = 0; i < smallest_sample_size; ++i) {
-    // Output time first so that it can be used as an x-axis.
-    const double time_mins =
-        timeseries.time_stamps_[i].InMilliseconds() / (1000. * 60.);
-    ss << time_mins << ",";
-    for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-      const int64 alloc_bytes = it->second.allocated_bytes_[i];
-      // Convert to float megabytes with decimals of precision.
-      double n = static_cast<double>(alloc_bytes / (1000 * 10));
-      n = n / (100.);
-      ss << n << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-  ss << "// END CSV of BYTES allocated per region." << kNewLine;
-  ss << "//////////////////////////////////////////////";
-
-  ss << kNewLine;
-  // Preamble
-  ss << kNewLine << "//////////////////////////////////////////////";
-  ss << kNewLine << "// CSV of COUNT of allocations per region." << kNewLine;
-
-  // HEADER
-  ss << kQuote << "Time(mins)" << kQuote << kDelimiter;
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    const std::string& name = it->first;
-    ss << kQuote << SanitizeCSVKey(name) << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-  for (size_t i = 0; i < smallest_sample_size; ++i) {
-    // Output time first so that it can be used as an x-axis.
-    const double time_mins =
-        timeseries.time_stamps_[i].InMilliseconds() / (1000. * 60.);
-    ss << time_mins << ",";
-    for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-      const int64 n_allocs = it->second.number_allocations_[i];
-      ss << n_allocs << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-  ss << "// END CSV of COUNT of allocations per region." << kNewLine;
-  ss << "//////////////////////////////////////////////";
-  ss << kNewLine << kNewLine;
-
-  std::string output = ss.str();
-  return output;
-}
-
-void CompressedTimeSeriesTool::AcquireSample(
-    nb::analytics::MemoryTracker* memory_tracker, TimeSeries* timeseries,
-    const base::TimeDelta& time_now) {
-  const size_t sample_count = timeseries->time_stamps_.size();
-  timeseries->time_stamps_.push_back(time_now);
-
-  MapAllocationSamples& map_samples = timeseries->samples_;
-
-  std::vector<const nb::analytics::AllocationGroup*> vector_output;
-  memory_tracker->GetAllocationGroups(&vector_output);
-
-  // Sample all known memory scopes.
-  for (size_t i = 0; i < vector_output.size(); ++i) {
-    const nb::analytics::AllocationGroup* group = vector_output[i];
-    const std::string& name = group->name();
-
-    const bool first_creation =
-        map_samples.find(group->name()) == map_samples.end();
-
-    AllocationSamples& new_entry = map_samples[name];
-
-    // Didn't see it before so create new entry.
-    if (first_creation) {
-      // Make up for lost samples...
-      new_entry.allocated_bytes_.resize(sample_count, 0);
-      new_entry.number_allocations_.resize(sample_count, 0);
-    }
-
-    int32 num_allocs = -1;
-    int64 allocation_bytes = -1;
-    group->GetAggregateStats(&num_allocs, &allocation_bytes);
-
-    new_entry.allocated_bytes_.push_back(allocation_bytes);
-    new_entry.number_allocations_.push_back(num_allocs);
-  }
-
-  // Sample the in use memory bytes reported by malloc.
-  nb::analytics::MemoryStats memory_stats =
-      nb::analytics::GetProcessMemoryStats();
-  AllocationSamples& process_mem_in_use = map_samples["ProcessMemoryInUse"];
-  process_mem_in_use.allocated_bytes_.push_back(memory_stats.used_cpu_memory);
-  process_mem_in_use.number_allocations_.push_back(0);
-
-  // Sample the reserved memory bytes reported by malloc.
-  AllocationSamples& process_mem_reserved =
-      map_samples["ProcessMemoryReserved"];
-  process_mem_reserved.allocated_bytes_.push_back(memory_stats.used_cpu_memory);
-  process_mem_reserved.number_allocations_.push_back(0);
-}
-
-bool CompressedTimeSeriesTool::IsFull(const TimeSeries& timeseries,
-                                      size_t samples_limit) {
-  return timeseries.time_stamps_.size() >= samples_limit;
-}
-
-void CompressedTimeSeriesTool::Compress(TimeSeries* timeseries) {
-  typedef MapAllocationSamples::iterator MapIt;
-  MapAllocationSamples& samples = timeseries->samples_;
-  RemoveOddElements(&(timeseries->time_stamps_));
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    AllocationSamples& data = it->second;
-    RemoveOddElements(&data.allocated_bytes_);
-    RemoveOddElements(&data.number_allocations_);
-  }
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.h b/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.h
deleted file mode 100644
index 35bcfe0..0000000
--- a/cobalt/browser/memory_tracker/tool/compressed_time_series_tool.h
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_COMPRESSED_TIME_SERIES_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_COMPRESSED_TIME_SERIES_TOOL_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Generates CSV values of the engine memory. This includes memory
-// consumption in bytes and also the number of allocations.
-// Allocations are segmented by category such as "Javascript" and "Network and
-// are periodically dumped to the Params::abstract_logger_.
-//
-// Compression:
-//  During early run, the sampling rate is extremely high, however the sampling
-//  rate will degrade by half each time the sampling buffer fills up.
-//
-//  Additionally, every time the sampling buffer fills up, space is freed by
-//  evicting every other element.
-//
-// Example output:
-//  //////////////////////////////////////////////
-//  // CSV of BYTES allocated per region (MB's).
-//  // Units are in Megabytes. This is designed
-//  // to be used in a stacked graph.
-//  "Time(mins)","CSS","DOM","Javascript","Media","base::MessageLoop"....
-//  0,0,0,0,0,0...
-//  1022.54,3.3,7.19,49.93,50.33....
-//  ...
-//  // END CSV of BYTES allocated per region.
-//  //////////////////////////////////////////////
-//
-//  //////////////////////////////////////////////
-//  // CSV of COUNT of allocations per region.
-//  "Time(mins)","CSS","DOM","Javascript","Media","base::MessageLoop"....
-//  0,0,0,0,0,0...
-//  1022.54,57458,70011,423217,27,54495,43460...
-//  ...
-//  // END CSV of COUNT of allocations per region.
-//  //////////////////////////////////////////////
-class CompressedTimeSeriesTool : public AbstractTool {
- public:
-  CompressedTimeSeriesTool();
-  void Run(Params* params) override;
-  std::string tool_name() const override {
-    return "MemoryTrackerCompressedTimeSeries";
-  }
-
- private:
-  static std::string ToCsvString(const TimeSeries& histogram);
-  static void AcquireSample(nb::analytics::MemoryTracker* memory_tracker,
-                            TimeSeries* histogram, const base::TimeDelta& dt);
-  static bool IsFull(const TimeSeries& histogram, size_t num_samples);
-  static void Compress(TimeSeries* histogram);
-
-  const int number_samples_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_COMPRESSED_TIME_SERIES_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/histogram_table_csv_base.h b/cobalt/browser/memory_tracker/tool/histogram_table_csv_base.h
deleted file mode 100644
index 3a96a34..0000000
--- a/cobalt/browser/memory_tracker/tool/histogram_table_csv_base.h
+++ /dev/null
@@ -1,190 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_HISTOGRAM_TABLE_CSV_BASE_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_HISTOGRAM_TABLE_CSV_BASE_H_
-
-#include <map>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "base/logging.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// This HistogramTableCSV provides most of the functionality for generating a
-// csv table from a histogram of data.
-//
-// Subclasses need to override ValueToString(...) so that the
-// data-type can be stringified during the call to ToString().
-//
-// Example:
-//  class MyHistogram : public HistogramTableCSV<int64_t>() {...}
-//  MyHistogram my_histogram;
-//  my_histogram.set_title("Memory Values");
-//
-//  // Add first row.
-//  my_histogram.BeginRow(time_delta);
-//  my_histogram.AddRowValue("ColumnA", 0);
-//  my_histogram.AddRowValue("ColumnB", 0);
-//  my_histogram.FinalizeRow();
-//
-//  // Add second row.
-//  my_histogram.BeginRow(time_delta);
-//  my_histogram.AddRowValue("ColumnA", 1);
-//  my_histogram.AddRowValue("ColumnB", 2);
-//  my_histogram.AddRowValue("ColumnC", 1);  // Ok, ColumnC will be autofilled.
-//  my_histogram.FinalizeRow();
-//
-//  Print(my_histogram.ToString());
-template <typename ValueType>
-class HistogramTableCSVBase {
- public:
-  typedef std::map<std::string, std::vector<ValueType> > TableData;
-
-  // default_value is used to auto-fill values, such as when a new column
-  // is introduced.
-  explicit HistogramTableCSVBase(const ValueType& default_value)
-      : default_value_(default_value) {}
-
-  virtual std::string ValueToString(const ValueType& value) const = 0;
-
-  void set_title(const std::string& title) { title_ = title; }
-
-  void BeginRow(const base::TimeDelta time_value) {
-    time_values_.push_back(time_value);
-  }
-
-  void AddRowValue(const std::string& column_key, const ValueType& value) {
-    if (time_values_.empty()) {
-      NOTREACHED() << "table_data_ was empty.";
-      time_values_.push_back(base::TimeDelta());
-    }
-    const size_t n = time_values_.size();
-    std::vector<ValueType>& column = table_data_[column_key];
-    while (column.size() < n - 1) {
-      column.push_back(default_value_);
-    }
-    column.push_back(value);
-  }
-
-  void FinalizeRow() {
-    const size_t n = time_values_.size();
-    for (typename TableData::iterator it = table_data_.begin();
-         it != table_data_.end(); ++it) {
-      std::vector<ValueType>& column = it->second;
-      while (column.size() < n) {
-        column.push_back(default_value_);
-      }
-    }
-  }
-
-  std::string ToString() const {
-    const char kSeparator[] = "//////////////////////////////////////////////";
-    std::stringstream ss;
-    ss << kSeparator << kNewLine;
-    if (title_.size()) {
-      ss << "// CSV of " << title_ << kNewLine;
-    }
-    for (size_t i = 0; i < NumberOfRows(); ++i) {
-      ss << StringifyRow(i);
-    }
-    ss << kSeparator;
-    return ss.str();
-  }
-
-  // All odd elements are removed. Effectively compressing the table in half.
-  void RemoveOddElements() {
-    memory_tracker::RemoveOddElements(&time_values_);
-    for (typename TableData::iterator it = table_data_.begin();
-         it != table_data_.end(); ++it) {
-      memory_tracker::RemoveOddElements(&it->second);
-    }
-  }
-
-  size_t NumberOfRows() const { return time_values_.size(); }
-
- protected:
-  static std::string JoinValues(const std::vector<std::string>& row_values) {
-    std::stringstream ss;
-    for (size_t i = 0; i < row_values.size(); ++i) {
-      ss << kQuote << row_values[i] << kQuote << kDelimiter;
-    }
-    ss << kNewLine;
-    return ss.str();
-  }
-
-  static std::string TimeToMinutesString(base::TimeDelta dt) {
-    double value_minutes = dt.InSecondsF() / 60.;
-    char buff[128];
-    SbStringFormatF(buff, sizeof(buff), "%.2f", value_minutes);
-    return std::string(buff);
-  }
-
-  std::string StringifyRow(size_t index) const {
-    if (index == 0) {
-      // Create header row.
-      std::vector<std::string> column_keys;
-      column_keys.push_back("Time(min)");
-      for (typename TableData::const_iterator it = table_data_.begin();
-           it != table_data_.end(); ++it) {
-        column_keys.push_back(SanitizeCSVKey(it->first));
-      }
-      return JoinValues(column_keys);
-    } else {
-      // Create data row.
-      std::vector<std::string> row_values;
-      row_values.push_back(TimeToMinutesString(time_values_[index]));
-      for (typename TableData::const_iterator it = table_data_.begin();
-           it != table_data_.end(); ++it) {
-        const std::vector<ValueType>& column = it->second;
-        const std::string value_str = ValueToString(column[index]);
-        row_values.push_back(value_str);
-      }
-      return JoinValues(row_values);
-    }
-  }
-
-  std::string title_;
-  ValueType default_value_;
-  std::vector<base::TimeDelta> time_values_;
-  TableData table_data_;
-};
-
-// Useful for tracking values in megabytes.
-class MemoryBytesHistogramCSV : public HistogramTableCSVBase<int64_t> {
- public:
-  MemoryBytesHistogramCSV() : HistogramTableCSVBase<int64_t>(0) {}
-  std::string ValueToString(const int64_t& bytes) const override {
-    return ToMegabyteString(bytes);
-  }
-
-  static std::string ToMegabyteString(int64_t bytes) {
-    double megabytes = static_cast<double>(bytes) / (1024.0 * 1024.0);
-    char buff[128];
-    SbStringFormatF(buff, sizeof(buff), "%.1f", megabytes);
-    return std::string(buff);
-  }
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_HISTOGRAM_TABLE_CSV_BASE_H_
diff --git a/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.cc b/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.cc
deleted file mode 100644
index 223af84..0000000
--- a/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.cc
+++ /dev/null
@@ -1,202 +0,0 @@
-// Copyright 2018 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.h"
-// C++ headers.
-#include <algorithm>
-#include <map>
-#include <set>
-#include <vector>
-// Cobalt headers.
-#include "cobalt/browser/memory_tracker/tool/histogram_table_csv_base.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/bit_cast.h"
-// Starboard headers.
-#include "starboard/configuration_constants.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-namespace {
-
-using nb::analytics::AllocationRecord;
-using nb::analytics::AllocationVisitor;
-using nb::analytics::MemoryTracker;
-
-class FragmentationProcessor : private AllocationVisitor {
- public:
-  explicit FragmentationProcessor(uintptr_t page_size)
-      : page_size_(page_size) {}
-
-  void Process(MemoryTracker* tracker, size_t* allocated_memory_in_pages,
-               size_t* used_memory_in_segments) {
-    memory_segments_.erase(memory_segments_.begin(), memory_segments_.end());
-    *allocated_memory_in_pages = 0;
-    *used_memory_in_segments = 0;
-    tracker->Accept(this);
-
-    // Note that because of the fine course locking used for
-    // the memory tracker, it's accepted that there can be
-    // an occasional overlapping memory segment, where the memory region
-    // was deallocated and then recycled during the segment collection phase.
-    // This will then show up as an overlapping region. This is resolved
-    // by selecting the first memory segment, and discarding any
-    // memory segments that overlap it.
-    // While this can skew results, the rate of overlaps in practice is so low
-    // that we can essentially ignore it without warning the user.
-    std::sort(memory_segments_.begin(), memory_segments_.end());
-    std::vector<Segment> copy_no_overlaps;
-    copy_no_overlaps.reserve(memory_segments_.size());
-    for (const Segment& seg : memory_segments_) {
-      if (copy_no_overlaps.empty() ||
-          !seg.Intersects(copy_no_overlaps.back())) {
-        copy_no_overlaps.push_back(seg);
-      }
-    }
-    memory_segments_.swap(copy_no_overlaps);
-
-    if (!memory_segments_.empty()) {
-      std::set<uintptr_t> page_ids;
-
-      std::vector<Segment> sub_segments;
-      for (const Segment& seg : memory_segments_) {
-        if (!seg.size()) {  // Ignore 0-size segments.
-          continue;
-        }
-        // Use erase() instead of clear(), because it has stronger
-        // guarantees about recycling memory in the vector.
-        sub_segments.erase(sub_segments.begin(), sub_segments.end());
-        // Memory allocation segments may span multiple pages. In this
-        // case we will break them up and store them in sub_segments.
-        seg.SplitAcrossPageBoundaries(page_size_, &sub_segments);
-
-        for (const Segment& sub_seg : sub_segments) {
-          uintptr_t page_id = GetPageId(sub_seg.begin());
-          page_ids.insert(page_id);
-        }
-      }
-      *allocated_memory_in_pages = page_ids.size() * page_size_;
-    }
-    *used_memory_in_segments = CountUsedMemoryInSegments();
-  }
-
- private:
-  // Implements AllocationVisitor::Visitor().
-  bool Visit(const void* memory,
-             const AllocationRecord& alloc_record) override {
-    const char* memory_begin = static_cast<const char*>(memory);
-    const char* memory_end = memory_begin + alloc_record.size;
-    memory_segments_.push_back(Segment(nullptr, memory_begin, memory_end));
-    return true;
-  }
-  uintptr_t GetPageId(const char* ptr) const {
-    return nb::bit_cast<uintptr_t>(ptr) / page_size_;
-  }
-  size_t CountUsedMemoryInSegments() const {
-    if (memory_segments_.empty()) {
-      return 0;
-    }
-    size_t total_bytes = 0;
-    const Segment* prev_segment = nullptr;
-    for (const Segment& seg : memory_segments_) {
-      size_t size = seg.size();
-      if (prev_segment && prev_segment->Intersects(seg)) {
-        // Sanity check - FragmentationProcessor::Process() is expected
-        // to resolve overlapping memory segments that occur from the
-        // concurrent nature of memory collection.
-        SB_NOTREACHED() << "Memory segments intersected!";
-        size = 0;
-      }
-      prev_segment = &seg;
-      total_bytes += size;
-    }
-    return total_bytes;
-  }
-
-  std::vector<Segment> memory_segments_;
-  const uintptr_t page_size_;
-};
-
-}  // namespace.
-
-InternalFragmentationTool::InternalFragmentationTool() {}
-
-InternalFragmentationTool::~InternalFragmentationTool() {}
-
-std::string InternalFragmentationTool::tool_name() const {
-  return "InternalFragmentationTool";
-}
-
-void InternalFragmentationTool::Run(Params* params) {
-  // Run function does almost nothing.
-  params->logger()->Output("InternalFragmentationTool running...\n");
-
-  Timer output_timer(base::TimeDelta::FromSeconds(30));
-  Timer sample_timer(base::TimeDelta::FromMilliseconds(50));
-
-  MemoryBytesHistogramCSV histogram_table;
-  histogram_table.set_title("Internal Fragmentation - Probably undercounts");
-
-  FragmentationProcessor visitor(kSbMemoryPageSize);
-
-  // If we get a finish signal then this will break out of the loop.
-  while (!params->wait_for_finish_signal(250 * kSbTimeMillisecond)) {
-    // LOG CSV.
-    if (output_timer.UpdateAndIsExpired()) {
-      std::stringstream ss;
-      ss << kNewLine << histogram_table.ToString() << kNewLine << kNewLine;
-      params->logger()->Output(ss.str());
-    }
-
-    // ADD A HISTOGRAM SAMPLE.
-    if (sample_timer.UpdateAndIsExpired()) {
-      histogram_table.BeginRow(params->time_since_start());
-
-      size_t allocated_memory_in_pages = 0;
-      size_t used_memory = 0;
-      visitor.Process(params->memory_tracker(), &allocated_memory_in_pages,
-                      &used_memory);
-
-      SB_DCHECK(allocated_memory_in_pages > used_memory)
-          << "allocated_memory_in_pages: " << allocated_memory_in_pages << ","
-          << "used_memory: " << used_memory;
-
-      histogram_table.AddRowValue("TotalReservedCpuMemoryInPages(MB)",
-                                  allocated_memory_in_pages);
-      histogram_table.AddRowValue("TotalCpuMemoryInUse(MB)", used_memory);
-      histogram_table.FinalizeRow();
-    }
-
-    // COMPRESS TABLE WHEN FULL.
-    //
-    // Table is full, therefore eliminate half of the elements.
-    // Reduce sample frequency to match.
-    if (histogram_table.NumberOfRows() >= 100) {
-      // Compression step.
-      histogram_table.RemoveOddElements();
-
-      // By doubling the sampling time this keeps the table linear with
-      // respect to time. If sampling time was not doubled then there
-      // would be time distortion in the graph.
-      sample_timer.ScaleTriggerTime(2.0);
-      sample_timer.Restart();
-    }
-  }
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.h b/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.h
deleted file mode 100644
index bebd634..0000000
--- a/cobalt/browser/memory_tracker/tool/internal_fragmentation_tool.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2018 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_INTERNAL_FRAGMENTATION_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_INTERNAL_FRAGMENTATION_TOOL_H_
-
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-class InternalFragmentationTool : public AbstractTool {
- public:
-  InternalFragmentationTool();
-  ~InternalFragmentationTool() override;
-  // Interface AbstractMemoryTrackerTool
-  std::string tool_name() const override;
-  void Run(Params* params) override;
-
- private:
-  DISALLOW_COPY_AND_ASSIGN(InternalFragmentationTool);
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_INTERNAL_FRAGMENTATION_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/leak_finder_tool.cc b/cobalt/browser/memory_tracker/tool/leak_finder_tool.cc
deleted file mode 100644
index 31a89a3..0000000
--- a/cobalt/browser/memory_tracker/tool/leak_finder_tool.cc
+++ /dev/null
@@ -1,476 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/leak_finder_tool.h"
-
-#include <algorithm>
-#include <iomanip>
-#include <map>
-#include <utility>
-
-#include "base/timer/timer.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "cobalt/script/util/stack_trace_helpers.h"
-#include "nb/memory_scope.h"
-#include "starboard/common/string.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Number of output values to display in the csv.
-const size_t kNumberOfOutputColumns = 40;
-
-LeakFinderTool::LeakFinderTool(StackTraceMode mode)
-    : string_pool_(128),
-      frame_map_(128),
-      callframe_map_(128),
-      stack_trace_mode_(mode) {
-  default_callframe_str_ = &string_pool_.Intern("<Unknown>");
-}
-
-LeakFinderTool::~LeakFinderTool() {
-  frame_map_.Clear();
-  callframe_map_.Clear();
-}
-
-bool LeakFinderTool::IsJavascriptScope(
-    const nb::analytics::CallStack& callstack) {
-  // March through all MemoryScopes in the callstack and check if any of them
-  // contains a javascript scope. If it does return true.
-  for (nb::analytics::CallStack::const_iterator it = callstack.begin();
-       it != callstack.end(); ++it) {
-    const NbMemoryScopeInfo* memory_scope = *it;
-    const bool is_javascript_scope =
-        strstr(memory_scope->memory_scope_name_, "Javascript");
-    if (is_javascript_scope) {
-      return true;
-    }
-  }
-  return false;
-}
-
-void LeakFinderTool::OnMemoryAllocation(
-    const void* memory_block, const nb::analytics::AllocationRecord& record,
-    const nb::analytics::CallStack& callstack) {
-  // When in javascript mode, filter only allocations with "Javascript" in
-  // the memory scope name.
-  if (stack_trace_mode_ == kJavascript) {
-    if (!IsJavascriptScope(callstack)) {
-      return;
-    }
-  }
-
-  // symbol_str can be used as a unique key. The same value of callstack will
-  // always produce the same string pointer.
-  const std::string* symbol_str = GetOrCreateSymbol(callstack);
-  // Track the allocation.
-  if (!callframe_map_.SetIfMissing(memory_block, symbol_str)) {
-    CallFrameMap::EntryHandle entry_handle;
-    callframe_map_.Get(memory_block, &entry_handle);
-
-    const void* ptr = entry_handle.Valid() ? entry_handle.Key() : NULL;
-    entry_handle.ReleaseLockAndInvalidate();
-
-    DCHECK(false) << "Unexpected memory block at " << memory_block
-                  << " already existed as: " << ptr;
-  }
-
-  AllocationFrameMap::EntryHandle entry_handle;
-  frame_map_.GetOrCreate(symbol_str, &entry_handle);
-
-  // While this entry_handle is in use, no other threads
-  // can modify this entry.
-  AllocRec& alloc_rec = entry_handle.ValueMutable();
-  alloc_rec.total_bytes += record.size;
-  alloc_rec.num_allocs++;
-}
-
-void LeakFinderTool::OnMemoryDeallocation(
-    const void* memory_block, const nb::analytics::AllocationRecord& record,
-    const nb::analytics::CallStack& callstack) {
-
-  const std::string* symbol_str = NULL;
-
-  {
-    CallFrameMap::EntryHandle entry_handle;
-    if (!callframe_map_.Get(memory_block, &entry_handle)) {
-      // This happens if the allocation happened before this tool attached
-      // to the memory tracker or if the memory allocation was filtered and
-      // therefore isn't being tracked.
-      return;
-    }
-    symbol_str = entry_handle.Value();
-    callframe_map_.Remove(&entry_handle);
-  }
-
-  // This case can happen if the memory tracker attaches after the allocation.
-  if (!symbol_str) {
-    return;
-  }
-
-  AllocationFrameMap::EntryHandle entry_handle;
-  frame_map_.GetOrCreate(symbol_str, &entry_handle);
-
-  // While entry_handle is in use, no other element can modify
-  // this element.
-  AllocRec& alloc_rec = entry_handle.ValueMutable();
-  alloc_rec.total_bytes -= record.size;
-  alloc_rec.num_allocs--;
-}
-
-std::string LeakFinderTool::tool_name() const {
-  return "MemoryTrackerLeakFinder";
-}
-
-void LeakFinderTool::Run(Params* params) {
-  // Run function does almost nothing.
-  params->logger()->Output("MemoryTrackerLeakFinder running...");
-
-  static const size_t kMaxSamples = 400;
-
-  // This value will decay whenever the buffer fills up and is compressed via
-  // sample elimination.
-  SbTime sample_time = 50;  // 50 microseconds.
-
-  std::vector<base::TimeDelta> time_values;
-  std::map<const std::string*, std::vector<AllocRec> > map_allocations;
-
-  SbTime start_time = SbTimeGetMonotonicNow();
-  Timer output_trigger(base::TimeDelta::FromMinutes(1));
-
-  const double recording_delay_mins = 5.0;
-
-  // Controls how often an update status message is sent to output.
-  Timer output_status_timer(base::TimeDelta::FromSeconds(1));
-
-  while (true) {
-    if (params->wait_for_finish_signal(sample_time)) {
-      break;  // Finish received, break.
-    }
-    SbTime now_time = SbTimeGetMonotonicNow();
-
-    const base::TimeDelta time_since_start =
-        base::Time::FromSbTime(now_time) - base::Time::FromSbTime(start_time);
-
-    // DELAY RECORDING AS STARTUP MEMORY IS INITIALIZED
-    // Cleaner graphs if we wait until after startup.
-    //
-    const double times_since_start_mins = time_since_start.InSecondsF() / 60.0;
-    if (times_since_start_mins < recording_delay_mins) {
-      if (output_status_timer.UpdateAndIsExpired()) {
-        double remaining_time_mins =
-            (recording_delay_mins - times_since_start_mins);
-        std::stringstream ss;
-        ss << "MemoryTrackerLeakFinder starting in " << remaining_time_mins
-           << " minutes.\n";
-        params->logger()->Output(ss.str().c_str());
-      }
-      continue;
-    }
-
-    time_values.push_back(time_since_start);
-
-    // To improve performance, make a copy of the values to a vector on
-    // the stack.
-    std::vector<std::pair<const std::string*, AllocRec> > samples;
-    SampleSnapshot(&samples);
-
-    // Take a snapshot.
-    for (size_t i = 0; i < samples.size(); ++i) {
-      std::pair<const std::string*, AllocRec> sample = samples[i];
-      std::vector<AllocRec>& sample_history = map_allocations[sample.first];
-
-      sample_history.resize(time_values.size());
-      sample_history.back() = sample.second;
-    }
-
-    if (output_trigger.UpdateAndIsExpired() && time_values.size() > 10) {
-      // Timer expired so dump the current information output.
-
-      std::vector<AllocationProfile> alloc_profiles;
-      GenerateTopLeakingAllocationProfiles(time_values, map_allocations,
-                                           &alloc_profiles);
-      if (alloc_profiles.empty()) {
-        params->logger()->Output(
-            "MemoryTrackerLeakFinder: alloc_profiles was "
-            "empty and nothing is written.");
-      } else {
-        if (alloc_profiles.size() > kNumberOfOutputColumns) {
-          alloc_profiles.resize(kNumberOfOutputColumns);
-        }
-
-        std::string csv_str = GenerateCSV(time_values, alloc_profiles);
-        params->logger()->Output(csv_str.c_str());
-      }
-    }
-
-    // Compress the buffer, and modify sample_time so that it's twice as slow.
-    if (time_values.size() >= kMaxSamples) {
-      sample_time *= 2;  // Double the time that it takes to trigger a sample.
-      // Remove every other element in time_values.
-      RemoveOddElements(&time_values);
-
-      // Remove every other element in the samples.
-      for (size_t i = 0; i < samples.size(); ++i) {
-        std::pair<const std::string*, AllocRec> sample = samples[i];
-        std::vector<AllocRec>& sample_history = map_allocations[sample.first];
-        RemoveOddElements(&sample_history);
-      }
-    }
-  }
-}
-
-const std::string* LeakFinderTool::GetOrCreateSymbol(
-    const nb::analytics::CallStack& callstack) {
-  const std::string* symbol_str = NULL;
-
-  // In javascript mode we try and get the javascript symbol. Otherwise
-  // fallback to C++ symbol.
-  if (stack_trace_mode_ == kJavascript) {
-    symbol_str = TryGetJavascriptSymbol();
-    if (symbol_str) {
-      return symbol_str;
-    }
-  }
-
-  symbol_str = GetOrCreateCplusPlusSymbol(callstack);
-  return symbol_str;
-}
-
-const std::string* LeakFinderTool::GetOrCreateCplusPlusSymbol(
-    const nb::analytics::CallStack& callstack) {
-  if (callstack.empty()) {
-    return default_callframe_str_;
-  } else {
-    const NbMemoryScopeInfo* memory_scope = callstack.back();
-
-    const bool skip =
-        strstr(memory_scope->function_name_, "js_malloc") ||
-        strstr(memory_scope->function_name_, "js_realloc") ||
-        strstr(memory_scope->function_name_, "new_");
-
-    // Skip up one callstack because we don't want to track calls to
-    // allocation functions.
-    if (skip && callstack.size() > 1) {
-      memory_scope = callstack[callstack.size() - 2];
-    }
-
-    const char* file_name = BaseNameFast(memory_scope->file_name_);
-
-    // Generates a symbol.
-    // Example:
-    //   "Javascript:Interpreter.cpp(415):RunScript()"
-    char symbol_buff[128];
-    SbStringFormatF(symbol_buff, sizeof(symbol_buff), "%s:%s(%d)::%s()",
-                    memory_scope->memory_scope_name_, file_name,
-                    memory_scope->line_number_, memory_scope->function_name_);
-
-    // Get's a unique pointer to a string containing the symbol. If the symbol
-    // was previously generated then the previous symbol is returned.
-    return &string_pool_.Intern(symbol_buff);
-  }
-}
-
-const std::string* LeakFinderTool::TryGetJavascriptSymbol() {
-  auto* js_stack_gen = script::util::GetThreadLocalStackTraceGenerator();
-  if (!js_stack_gen || !js_stack_gen->Valid()) {
-    return NULL;
-  }
-
-  // Only get one symbol.
-  char buffer[256];
-  if (!js_stack_gen->GenerateStackTraceString(1, buffer, sizeof(buffer))) {
-    return NULL;
-  }
-  const char* file_name = BaseNameFast(buffer);
-  return &string_pool_.Intern(file_name);
-}
-
-void LeakFinderTool::SampleSnapshot(
-    std::vector<std::pair<const std::string*, AllocRec> >* destination) {
-  destination->erase(destination->begin(), destination->end());
-
-  const size_t sample_size = frame_map_.GetSize();
-
-  // Do this locally.
-  destination->reserve(sample_size + 10);
-  frame_map_.CopyToStdVector(destination);
-}
-
-std::string LeakFinderTool::GenerateCSV(
-    const std::vector<base::TimeDelta>& time_values,
-    const std::vector<AllocationProfile>& data) {
-  std::stringstream ss;
-  ss << std::fixed;  // Turn off scientific notation for CSV values.
-  ss << std::setprecision(3);
-  ss << kNewLine << kNewLine;
-
-  // HEADER
-  ss << "// Allocation in megabytes. Keep in mind that only" << kNewLine
-     << "// the N top allocations will be displayed, sorted" << kNewLine
-     << "// by slope steepness. Negative slopping allocations" << kNewLine
-     << "// and allocations that have few blocks may be filtered" << kNewLine
-     << "// out." << kNewLine << kQuote << "Time(min)" << kQuote << kDelimiter;
-  for (size_t i = 0; i < data.size(); ++i) {
-    const AllocationProfile& alloc_profile = data[i];
-    const std::string& name = *alloc_profile.name_;
-    ss << kQuote << name << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-
-  // BODY
-  for (size_t i = 0; i < time_values.size(); ++i) {
-    for (size_t j = 0; j < data.size(); ++j) {
-      if (j == 0) {
-        double mins = time_values[i].InSecondsF() / 60.f;
-        if (mins < .001) {
-          mins = 0;
-        }
-        ss << mins << kDelimiter;
-      }
-
-      const AllocationProfile& alloc_profile = data[j];
-      const std::vector<AllocRec>& alloc_history =
-          *alloc_profile.alloc_history_;
-
-      double megabytes = static_cast<double>(alloc_history[i].total_bytes) /
-                         static_cast<double>(1024 * 1024);
-
-      DCHECK_EQ(alloc_history.size(), time_values.size());
-      ss << megabytes << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-  ss << kNewLine << kNewLine;
-  ss << "// Object counts." << kNewLine;
-  ss << kQuote << "Time(min)" << kQuote << kDelimiter;
-  for (size_t i = 0; i < data.size(); ++i) {
-    const AllocationProfile& alloc_profile = data[i];
-    const std::string& name = *alloc_profile.name_;
-    ss << kQuote << name << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-  for (size_t i = 0; i < time_values.size(); ++i) {
-    for (size_t j = 0; j < data.size(); ++j) {
-      if (j == 0) {
-        double mins = time_values[i].InSecondsF() / 60.f;
-        if (mins < .001) {
-          mins = 0;
-        }
-        ss << mins << kDelimiter;
-      }
-      const AllocationProfile& alloc_profile = data[j];
-      const std::vector<AllocRec>& alloc_history =
-          *alloc_profile.alloc_history_;
-      DCHECK_EQ(alloc_history.size(), time_values.size());
-      ss << alloc_history[i].num_allocs << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-
-  ss << kNewLine << kNewLine;
-  return ss.str();
-}
-
-void LeakFinderTool::GenerateTopLeakingAllocationProfiles(
-    const std::vector<base::TimeDelta>& time_values, const MapSamples& samples,
-    std::vector<AllocationProfile>* destination) {
-  // GENERATE LINEAR REGRESSION LINE
-  // first value is time in microseconds.
-  // second value is total_bytes.
-  std::vector<std::pair<int64_t, int64_t> > sample_data;
-
-  typedef std::map<const std::string*, SlopeYIntercept> LinearRegressionMap;
-  LinearRegressionMap linear_regression_map;
-
-  std::vector<AllocationProfile> allocation_profiles;
-
-  for (MapSamples::const_iterator it = samples.begin(); it != samples.end();
-       ++it) {
-    const std::string* allocation_name = it->first;
-    const std::vector<AllocRec>& allocation_samples = it->second;
-
-    if (allocation_samples.empty()) {
-      continue;
-    }
-
-    // Filter out allocations records that have low number of allocations.
-    if (allocation_samples.back().num_allocs < 10) {
-      continue;
-    }
-
-    // Filter out allocations that are insignificant.
-    int64_t largest_allocation_sample = 0;
-    const int64_t kMinAllocationSize = 1024 * 64;
-    for (size_t i = 0; i < allocation_samples.size(); ++i) {
-      int64_t bytes = allocation_samples[i].total_bytes;
-      largest_allocation_sample = std::max(largest_allocation_sample, bytes);
-    }
-    if (largest_allocation_sample < kMinAllocationSize) {
-      continue;
-    }
-
-    // Filter out allocations where there is no growth between first quartile
-    // and final output.
-    const AllocRec& first_quartile_sample =
-        allocation_samples[allocation_samples.size() / 4];
-    const AllocRec& final_sample = allocation_samples.back();
-
-    const double increase_ratio =
-        static_cast<double>(final_sample.total_bytes) /
-        static_cast<double>(first_quartile_sample.total_bytes);
-
-    // 5% threshold of increase to be qualified as a lead.
-    static const double kMinIncreaseThreshold = .05;
-
-    // If the increase between first quartile and final sample less than 5%
-    // then skip.
-    if (increase_ratio < kMinIncreaseThreshold) {
-      continue;
-    }
-
-    sample_data.clear();  // Recycle.
-    for (size_t i = 0; i < time_values.size(); ++i) {
-      std::pair<int64_t, int64_t> datum(time_values[i].InMicroseconds(),
-                                        allocation_samples[i].total_bytes);
-      sample_data.push_back(datum);
-    }
-
-    double slope = 0;
-    double y_intercept = 0;
-    bool valid = GetLinearFit(sample_data.begin(), sample_data.end(), &slope,
-                              &y_intercept);
-    DCHECK(valid);
-    linear_regression_map[allocation_name] =
-        SlopeYIntercept(slope, y_intercept);
-    AllocationProfile alloc_profile(allocation_name, &allocation_samples, slope,
-                                    y_intercept);
-    alloc_profile.leak_potential_ =
-        allocation_samples.back().total_bytes * slope;
-    allocation_profiles.push_back(alloc_profile);
-  }
-
-  std::sort(allocation_profiles.begin(), allocation_profiles.end(),
-            AllocationProfile::CompareLeakPotential);
-  // Biggest one first.
-  std::reverse(allocation_profiles.begin(), allocation_profiles.end());
-  *destination = allocation_profiles;
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/leak_finder_tool.h b/cobalt/browser/memory_tracker/tool/leak_finder_tool.h
deleted file mode 100644
index 66f42f5..0000000
--- a/cobalt/browser/memory_tracker/tool/leak_finder_tool.h
+++ /dev/null
@@ -1,163 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_LEAK_FINDER_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_LEAK_FINDER_TOOL_H_
-
-#include <map>
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/concurrent_map.h"
-#include "nb/hash.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Records allocations and outputs leaks as a CSV. Each column will
-// have an associated symbol.
-class LeakFinderTool : public AbstractTool,
-                       public nb::analytics::MemoryTrackerDebugCallback {
- public:
-  enum StackTraceMode {
-    // Always get the C++ version of the stack trace.
-    kCPlusPlus,
-    // Whenever possible, get the javascript stack trace,
-    // else fallback to CPlusPlus.
-    kJavascript,
-  };
-
-  explicit LeakFinderTool(StackTraceMode pref);
-  virtual ~LeakFinderTool();
-
-  // OnMemoryAllocation() and OnMemoryDeallocation() are part of
-  // class MemoryTrackerDebugCallback.
-  void OnMemoryAllocation(const void* memory_block,
-                          const nb::analytics::AllocationRecord& record,
-                          const nb::analytics::CallStack& callstack) override;
-
-  void OnMemoryDeallocation(const void* memory_block,
-                            const nb::analytics::AllocationRecord& record,
-                            const nb::analytics::CallStack& callstack) override;
-
-  // Interface AbstractMemoryTrackerTool
-  std::string tool_name() const override;
-  void Run(Params* params) override;
-
-  const std::string* GetOrCreateSymbol(
-      const nb::analytics::CallStack& callstack);
-
-  const std::string* TryGetJavascriptSymbol();
-  const std::string* GetOrCreateCplusPlusSymbol(
-      const nb::analytics::CallStack& callstack);
-
- private:
-  struct AllocRec;
-  // A map from callsite -> allocation size.
-  // typedef std::map<const std::string*, AllocRec> AllocationFrameMap;
-  typedef nb::ConcurrentMap<const std::string*, AllocRec,
-                            nb::PODHasher<const std::string*> >
-      AllocationFrameMap;
-
-  // A map of memory -> callsite.
-  // This keeps track of what callsites belong to which allocations.
-  // typedef std::map<const void*, const std::string*> CallFrameMap;
-  //
-  typedef nb::ConcurrentMap<const void*, const std::string*,
-                            nb::PODHasher<const std::string*> >
-      CallFrameMap;
-
-  // A map from callsite -> allocation data.
-  typedef std::map<const std::string*, std::vector<AllocRec> > MapSamples;
-  // A value type for holding a slope and Y-intercept.
-  typedef std::pair<double, double> SlopeYIntercept;
-  // An AllocationRecord.
-  struct AllocRec {
-    AllocRec() : total_bytes(0), num_allocs(0) {}
-    AllocRec(const AllocRec& other)
-        : total_bytes(other.total_bytes), num_allocs(other.num_allocs) {}
-    AllocRec& operator=(const AllocRec& other) {
-      total_bytes = other.total_bytes;
-      num_allocs = other.num_allocs;
-      return *this;
-    }
-    int64_t total_bytes;
-    int32_t num_allocs;
-  };
-
-  // This data structure is used to for sorting leaks. The important variable
-  // is |leak_potential|, which represents how likely this AllocationProfile
-  // is a leak.
-  struct AllocationProfile {
-    AllocationProfile()
-        : name_(NULL),
-          alloc_history_(NULL),
-          slope_(0),
-          y_intercept_(0),
-          leak_potential_(0) {}
-
-    AllocationProfile(const std::string* name,
-                      const std::vector<AllocRec>* alloc_history, double slope,
-                      double y_intercept)
-        : name_(name),
-          alloc_history_(alloc_history),
-          slope_(slope),
-          y_intercept_(y_intercept),
-          leak_potential_(0) {}
-    const std::string* name_;
-    const std::vector<AllocRec>* alloc_history_;
-    // Linear regression data.
-    double slope_;
-    double y_intercept_;
-
-    // This this value is set externally. Higher values indicate higher chance
-    // that this is a leak.
-    double leak_potential_;
-
-    static bool CompareLeakPotential(const AllocationProfile& a,
-                                     const AllocationProfile& b) {
-      return a.leak_potential_ < b.leak_potential_;
-    }
-  };
-
-  static std::string GenerateCSV(
-      const std::vector<base::TimeDelta>& time_values,
-      const std::vector<AllocationProfile>& data);
-
-  void SampleSnapshot(
-      std::vector<std::pair<const std::string*, AllocRec> >* destination);
-
-  static void GenerateTopLeakingAllocationProfiles(
-      const std::vector<base::TimeDelta>& time_values,
-      const MapSamples& samples, std::vector<AllocationProfile>* destination);
-
-  static bool IsJavascriptScope(const nb::analytics::CallStack& callstack);
-
-  const std::string* default_callframe_str_;
-  nb::ConcurrentStringInterner string_pool_;
-  AllocationFrameMap frame_map_;
-  CallFrameMap callframe_map_;
-  StackTraceMode stack_trace_mode_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_LEAK_FINDER_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/log_writer_tool.cc b/cobalt/browser/memory_tracker/tool/log_writer_tool.cc
deleted file mode 100644
index b8dd168..0000000
--- a/cobalt/browser/memory_tracker/tool/log_writer_tool.cc
+++ /dev/null
@@ -1,171 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/log_writer_tool.h"
-
-#include <algorithm>
-
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/buffered_file_writer.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "starboard/client_porting/poem/string_poem.h"
-#include "starboard/common/string.h"
-#include "starboard/configuration.h"
-#include "starboard/configuration_constants.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-LogWriterTool::LogWriterTool() : start_time_(NowTime()) {
-  buffered_file_writer_.reset(new BufferedFileWriter(MemoryLogPath()));
-  InitAndRegisterMemoryReporter();
-}
-
-LogWriterTool::~LogWriterTool() {
-  // No locks are used for the thread reporter, so when it's set to null
-  // we allow one second for any suspended threads to run through and finish
-  // their reporting.
-  SbMemorySetReporter(NULL);
-  SbThreadSleep(kSbTimeSecond);
-  buffered_file_writer_.reset(NULL);
-}
-
-std::string LogWriterTool::tool_name() const {
-  return "MemoryTrackerLogWriter";
-}
-
-void LogWriterTool::Run(Params* params) {
-  // Run function does almost nothing.
-  params->logger()->Output("MemoryTrackerLogWriter running...");
-}
-
-void LogWriterTool::OnMemoryAllocation(const void* memory_block, size_t size) {
-  void* addresses[kMaxStackSize] = {};
-  // Though the SbSystemGetStack API documentation does not specify any possible
-  // negative return values, we take no chance.
-  const size_t count = std::max(SbSystemGetStack(addresses, kMaxStackSize), 0);
-
-  const size_t n = 256;
-  char buff[n] = {0};
-  size_t buff_pos = 0;
-
-  int time_since_start_ms = GetTimeSinceStartMs();
-  // Writes "+ <ALLOCATION ADDRESS> <size> <time>"
-  int bytes_written =
-      SbStringFormatF(buff, sizeof(buff), "+ %" PRIXPTR " %x %d",
-                      reinterpret_cast<uintptr_t>(memory_block),
-                      static_cast<unsigned int>(size), time_since_start_ms);
-
-  buff_pos += bytes_written;
-  const size_t end_index = std::min(count, kStartIndex + kNumAddressPrints);
-
-  // For each of the stack addresses that we care about, concat them to the
-  // buffer. This was originally written to do multiple stack addresses but
-  // this tends to overflow on some lower platforms so it's possible that
-  // this loop only iterates once.
-  for (size_t i = kStartIndex; i < end_index; ++i) {
-    void* p = addresses[i];
-    bytes_written =
-        SbStringFormatF(buff + buff_pos, sizeof(buff) - buff_pos,
-                        " %" PRIXPTR "", reinterpret_cast<uintptr_t>(p));
-    DCHECK_GE(bytes_written, 0);
-
-    if (bytes_written < 0) {
-      DCHECK(false) << "Error occurred while writing string.";
-      continue;
-    }
-
-    buff_pos += static_cast<size_t>(bytes_written);
-  }
-  // Adds a "\n" at the end.
-  starboard::strlcat(buff + buff_pos, "\n", static_cast<int>(n - buff_pos));
-  buffered_file_writer_->Append(buff, strlen(buff));
-}
-
-void LogWriterTool::OnMemoryDeallocation(const void* memory_block) {
-  const size_t n = 256;
-  char buff[n] = {0};
-  // Writes "- <ADDRESS OF ALLOCATION> \n"
-  SbStringFormatF(buff, sizeof(buff), "- %" PRIXPTR "\n",
-                  reinterpret_cast<uintptr_t>(memory_block));
-  buffered_file_writer_->Append(buff, strlen(buff));
-}
-
-void LogWriterTool::OnAlloc(void* context, const void* memory, size_t size) {
-  LogWriterTool* self = static_cast<LogWriterTool*>(context);
-  self->OnMemoryAllocation(memory, size);
-}
-
-void LogWriterTool::OnDealloc(void* context, const void* memory) {
-  LogWriterTool* self = static_cast<LogWriterTool*>(context);
-  self->OnMemoryDeallocation(memory);
-}
-
-void LogWriterTool::OnMapMemory(void* context, const void* memory,
-                                size_t size) {
-  LogWriterTool* self = static_cast<LogWriterTool*>(context);
-  self->OnMemoryAllocation(memory, size);
-}
-
-void LogWriterTool::OnUnMapMemory(void* context, const void* memory,
-                                  size_t size) {
-  LogWriterTool* self = static_cast<LogWriterTool*>(context);
-  self->OnMemoryDeallocation(memory);
-}
-
-std::string LogWriterTool::MemoryLogPath() {
-  char file_name_buff[2048] = {};
-  SbSystemGetPath(kSbSystemPathDebugOutputDirectory, file_name_buff,
-                  arraysize(file_name_buff));
-  std::string path(file_name_buff);
-  if (!path.empty()) {  // Protect against a dangling "/" at end.
-    const int back_idx_signed = static_cast<int>(path.length()) - 1;
-    if (back_idx_signed >= 0) {
-      const size_t idx = back_idx_signed;
-      if (path[idx] == kSbFileSepChar) {
-        path.erase(idx);
-      }
-    }
-  }
-  path.push_back(kSbFileSepChar);
-  path.append("memory_log.txt");
-  return path;
-}
-
-base::TimeTicks LogWriterTool::NowTime() {
-  // NowFromSystemTime() is slower but more accurate. However it might
-  // be useful to use the faster but less accurate version if there is
-  // a speedup.
-  return base::TimeTicks::Now();
-}
-
-int LogWriterTool::GetTimeSinceStartMs() const {
-  base::TimeDelta dt = NowTime() - start_time_;
-  return static_cast<int>(dt.InMilliseconds());
-}
-
-void LogWriterTool::InitAndRegisterMemoryReporter() {
-  DCHECK(!memory_reporter_.get()) << "Memory Reporter already registered.";
-
-  SbMemoryReporter mem_reporter = {OnAlloc, OnDealloc, OnMapMemory,
-                                   OnUnMapMemory, this};
-  memory_reporter_.reset(new SbMemoryReporter(mem_reporter));
-  SbMemorySetReporter(memory_reporter_.get());
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/log_writer_tool.h b/cobalt/browser/memory_tracker/tool/log_writer_tool.h
deleted file mode 100644
index dfd7b42..0000000
--- a/cobalt/browser/memory_tracker/tool/log_writer_tool.h
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_LOG_WRITER_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_LOG_WRITER_TOOL_H_
-
-#include <memory>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/buffered_file_writer.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "starboard/memory_reporter.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-class BufferedFileWriter;
-
-// Outputs memory_log.txt to the output log location. This log contains
-// allocations with a stack trace (non-symbolized) and deallocations without
-// a stack.
-class LogWriterTool : public AbstractTool {
- public:
-  LogWriterTool();
-  virtual ~LogWriterTool();
-
-  // Interface AbstractMemoryTrackerTool
-  std::string tool_name() const override;
-  void Run(Params* params) override;
-
-  void OnMemoryAllocation(const void* memory_block, size_t size);
-  void OnMemoryDeallocation(const void* memory_block);
-
- private:
-  // Callbacks for MemoryReporter
-  static void OnAlloc(void* context, const void* memory, size_t size);
-  static void OnDealloc(void* context, const void* memory);
-  static void OnMapMemory(void* context, const void* memory, size_t size);
-  static void OnUnMapMemory(void* context, const void* memory, size_t size);
-  static std::string MemoryLogPath();
-
-  static base::TimeTicks NowTime();
-  static const size_t kStartIndex = 5;
-  static const size_t kNumAddressPrints = 1;
-  static const size_t kMaxStackSize = 10;
-
-  int GetTimeSinceStartMs() const;
-  void InitAndRegisterMemoryReporter();
-
-  base::TimeTicks start_time_;
-  std::unique_ptr<SbMemoryReporter> memory_reporter_;
-  std::unique_ptr<BufferedFileWriter> buffered_file_writer_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_LOG_WRITER_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/malloc_logger_tool.cc b/cobalt/browser/memory_tracker/tool/malloc_logger_tool.cc
deleted file mode 100644
index 1bae210..0000000
--- a/cobalt/browser/memory_tracker/tool/malloc_logger_tool.cc
+++ /dev/null
@@ -1,204 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/malloc_logger_tool.h"
-
-#include <algorithm>
-
-#include "base/time/time.h"
-#include "cobalt/base/c_val.h"
-#include "cobalt/browser/memory_tracker/tool/buffered_file_writer.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/memory_scope.h"
-#include "starboard/common/string.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-namespace {
-const int kAllocationRecord = 1;
-const int kDeallocationRecord = 0;
-const size_t kStartIndex = 5;
-const size_t kNumAddressPrints = 2;
-const size_t kMaxStackSize = 10;
-const size_t kRecordLimit = 1024;
-const NbMemoryScopeInfo kEmptyCallstackMemoryScopeInfo = {nullptr, "-", "-",
-                                                          0,       "-", true};
-}  // namespace
-
-MallocLoggerTool::MallocLoggerTool()
-    : start_time_(NowTime()),
-      atomic_counter_(0),
-      atomic_used_memory_(SbSystemGetUsedCPUMemory()) {
-  buffered_file_writer_.reset(new BufferedFileWriter(MemoryLogPath()));
-}
-
-MallocLoggerTool::~MallocLoggerTool() {
-  // No locks are used for the thread reporter, so when it's set to null
-  // we allow one second for any suspended threads to run through and finish
-  // their reporting.
-  SbMemorySetReporter(NULL);
-  SbThreadSleep(kSbTimeSecond);
-  buffered_file_writer_.reset(NULL);
-}
-
-std::string MallocLoggerTool::tool_name() const {
-  return "MemoryTrackerMallocLogger";
-}
-
-void MallocLoggerTool::Run(Params* params) {
-  // Update malloc stats every second
-  params->logger()->Output("MemoryTrackerMallocLogger running...");
-
-  // There are some memory allocations which do not get tracked.
-  // Those allocations show up as fragmentation.
-  // It has been empirically observed that a majority (98%+) of these
-  // untracked allocations happen in the first 20 seconds of Cobalt runtime.
-  //
-  // Also, there is minimal external fragmentation (< 1 MB) during this initial
-  // period.
-  //
-  // The following piece of code resets atomic_used_memory_ at the 20 second
-  // mark, to compensate for the deviation due to untracked memory.
-  base::TimeDelta current_sample_interval = base::TimeDelta::FromSeconds(20);
-  if (!params->wait_for_finish_signal(current_sample_interval.ToSbTime())) {
-    atomic_used_memory_.store(SbSystemGetUsedCPUMemory());
-  }
-
-  // Export fragmentation as a CVal on HUD.
-  base::CVal<base::cval::SizeInBytes> memory_fragmentation(
-      "Memory.CPU.Fragmentation", base::cval::SizeInBytes(0),
-      "Memory Fragmentation");
-
-  // Update CVal every 5 seconds
-  current_sample_interval = base::TimeDelta::FromSeconds(5);
-  int64_t allocated_memory = 0;
-  int64_t used_memory = 0;
-  while (!params->wait_for_finish_signal(current_sample_interval.ToSbTime())) {
-    allocated_memory = SbSystemGetUsedCPUMemory();
-    used_memory = atomic_used_memory_.load();
-    memory_fragmentation = static_cast<uint64>(
-        std::max(allocated_memory - used_memory, static_cast<int64_t>(0)));
-  }
-}
-
-void MallocLoggerTool::LogRecord(const void* memory_block,
-                                 const nb::analytics::AllocationRecord& record,
-                                 const nb::analytics::CallStack& callstack,
-                                 int type) {
-  const int log_counter = atomic_counter_.increment();
-  const int64_t used_memory = atomic_used_memory_.load();
-  const int64_t allocated_memory = SbSystemGetUsedCPUMemory();
-  const int time_since_start_ms = GetTimeSinceStartMs();
-  char buff[kRecordLimit] = {0};
-  size_t buff_pos = 0;
-  void* addresses[kMaxStackSize];
-
-  const NbMemoryScopeInfo* memory_scope;
-  if (callstack.empty()) {
-    memory_scope = &kEmptyCallstackMemoryScopeInfo;
-  } else {
-    memory_scope = callstack.back();
-  }
-
-  int bytes_written = SbStringFormatF(
-      buff, sizeof(buff),
-      "%u,%d,%zd,\"%s\",%d,%s,%d,%" PRId64 ",%" PRId64 ",%" PRIXPTR ",\"",
-      log_counter, type, record.size, memory_scope->file_name_,
-      memory_scope->line_number_, memory_scope->function_name_,
-      time_since_start_ms, allocated_memory, used_memory,
-      reinterpret_cast<uintptr_t>(memory_block));
-
-  buff_pos += static_cast<size_t>(bytes_written);
-  const size_t count = std::max(SbSystemGetStack(addresses, kMaxStackSize), 0);
-  const size_t end_index = std::min(count, kStartIndex + kNumAddressPrints);
-  // For each of the stack addresses that we care about, concat them to the
-  // buffer. This was originally written to do multiple stack addresses but
-  // this tends to overflow on some lower platforms so it's possible that
-  // this loop only iterates once.
-  for (size_t i = kStartIndex; i < end_index; ++i) {
-    void* p = addresses[i];
-    bytes_written =
-        SbStringFormatF(buff + buff_pos, kRecordLimit - buff_pos,
-                        ",%" PRIXPTR "", reinterpret_cast<uintptr_t>(p));
-    DCHECK_GE(bytes_written, 0);
-    buff_pos += static_cast<size_t>(bytes_written);
-  }
-
-  // Adds a "\n" at the end.
-  bytes_written = starboard::strlcat(buff + buff_pos, "\"\n",
-                                     static_cast<int>(kRecordLimit - buff_pos));
-  buff_pos += bytes_written;
-  buffered_file_writer_->Append(buff, buff_pos);
-}
-
-void MallocLoggerTool::OnMemoryAllocation(
-    const void* memory_block, const nb::analytics::AllocationRecord& record,
-    const nb::analytics::CallStack& callstack) {
-  atomic_used_memory_.fetch_add(record.size);
-  LogRecord(memory_block, record, callstack, kAllocationRecord);
-}
-
-void MallocLoggerTool::OnMemoryDeallocation(
-    const void* memory_block, const nb::analytics::AllocationRecord& record,
-    const nb::analytics::CallStack& callstack) {
-  atomic_used_memory_.fetch_sub(record.size);
-  LogRecord(memory_block, record, callstack, kDeallocationRecord);
-}
-
-std::string MallocLoggerTool::MemoryLogPath() {
-  char file_name_buff[2048] = {};
-  SbSystemGetPath(kSbSystemPathDebugOutputDirectory, file_name_buff,
-                  arraysize(file_name_buff));
-  std::string path(file_name_buff);
-  if (!path.empty()) {  // Protect against a dangling "/" at end.
-    const int back_idx_signed = static_cast<int>(path.length()) - 1;
-    if (back_idx_signed >= 0) {
-      const size_t idx = back_idx_signed;
-      if (path[idx] == '/') {
-        path.erase(idx);
-      }
-    }
-  }
-
-  base::Time time = base::Time::Now();
-  base::Time::Exploded exploded;
-  time.LocalExplode(&exploded);
-
-  std::stringstream ss;
-  ss << "/memory_log_" << exploded.year << "-" << exploded.month << "-"
-     << exploded.day_of_month << ":" << exploded.hour << "-" << exploded.minute
-     << "-" << exploded.second << ".csv";
-  path.append(ss.str());
-  return path;
-}
-
-base::TimeTicks MallocLoggerTool::NowTime() {
-  // NowFromSystemTime() is slower but more accurate. However it might
-  // be useful to use the faster but less accurate version if there is
-  // a speedup.
-  return base::TimeTicks::Now();
-}
-
-int MallocLoggerTool::GetTimeSinceStartMs() const {
-  base::TimeDelta dt = NowTime() - start_time_;
-  return static_cast<int>(dt.InMilliseconds());
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/malloc_logger_tool.h b/cobalt/browser/memory_tracker/tool/malloc_logger_tool.h
deleted file mode 100644
index 2086d79..0000000
--- a/cobalt/browser/memory_tracker/tool/malloc_logger_tool.h
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_LOGGER_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_LOGGER_TOOL_H_
-
-#include <memory>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "nb/memory_scope.h"
-#include "starboard/common/atomic.h"
-#include "starboard/memory_reporter.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-class BufferedFileWriter;
-
-// Outputs memory_log_<time_stamp>.csv to the output log location. This log
-// contains allocations and deallocations with a non-symbolized stack trace.
-class MallocLoggerTool : public AbstractTool,
-                         public nb::analytics::MemoryTrackerDebugCallback {
- public:
-  MallocLoggerTool();
-  virtual ~MallocLoggerTool();
-
-  // Interface AbstractMemoryTrackerTool
-  std::string tool_name() const override;
-  void Run(Params* params) override;
-
-  // OnMemoryAllocation() and OnMemoryDeallocation() are part of
-  // class MemoryTrackerDebugCallback.
-  void OnMemoryAllocation(const void* memory_block,
-                          const nb::analytics::AllocationRecord& record,
-                          const nb::analytics::CallStack& callstack) override;
-
-  void OnMemoryDeallocation(const void* memory_block,
-                            const nb::analytics::AllocationRecord& record,
-                            const nb::analytics::CallStack& callstack) override;
-
-  // Method to obtain allocation, stack information and generate records
-  void LogRecord(const void* memory_block,
-                 const nb::analytics::AllocationRecord& record,
-                 const nb::analytics::CallStack& callstack, const int type);
-
- private:
-  static std::string MemoryLogPath();
-  static base::TimeTicks NowTime();
-
-  int GetTimeSinceStartMs() const;
-
-  base::TimeTicks start_time_;
-  std::unique_ptr<SbMemoryReporter> memory_reporter_;
-  std::unique_ptr<BufferedFileWriter> buffered_file_writer_;
-  starboard::atomic_int32_t atomic_counter_;
-  starboard::atomic_int64_t atomic_used_memory_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_LOGGER_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/malloc_stats_tool.cc b/cobalt/browser/memory_tracker/tool/malloc_stats_tool.cc
deleted file mode 100644
index bbb7e58..0000000
--- a/cobalt/browser/memory_tracker/tool/malloc_stats_tool.cc
+++ /dev/null
@@ -1,90 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/malloc_stats_tool.h"
-
-#include <string>
-#include <vector>
-
-#include "cobalt/browser/memory_tracker/tool/histogram_table_csv_base.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "nb/analytics/memory_tracker.h"
-#include "starboard/common/string.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-MallocStatsTool::MallocStatsTool() {}
-
-std::string MallocStatsTool::tool_name() const { return "MallocStatsTool"; }
-
-void MallocStatsTool::Run(Params* params) {
-  params->logger()->Output("MallocStatsTool running...\n");
-
-  Timer output_timer(base::TimeDelta::FromSeconds(30));
-  Timer sample_timer(base::TimeDelta::FromMilliseconds(50));
-
-  MemoryBytesHistogramCSV histogram_table;
-  histogram_table.set_title("Malloc Stats");
-
-  // If we get a finish signal then this will break out of the loop.
-  while (!params->wait_for_finish_signal(250 * kSbTimeMillisecond)) {
-    // LOG CSV.
-    if (output_timer.UpdateAndIsExpired()) {
-      std::stringstream ss;
-      ss << kNewLine << histogram_table.ToString() << kNewLine << kNewLine;
-      params->logger()->Output(ss.str());
-    }
-
-    // ADD A HISTOGRAM SAMPLE.
-    if (sample_timer.UpdateAndIsExpired()) {
-      // Take a sample.
-      nb::analytics::MemoryStats memory_stats =
-          nb::analytics::GetProcessMemoryStats();
-
-      histogram_table.BeginRow(params->time_since_start());
-      histogram_table.AddRowValue("TotalCpuMemory(MB)",
-                                  memory_stats.total_cpu_memory);
-      histogram_table.AddRowValue("UsedCpuMemory(MB)",
-                                  memory_stats.used_cpu_memory);
-      histogram_table.AddRowValue("TotalGpuMemory(MB)",
-                                  memory_stats.total_gpu_memory);
-      histogram_table.AddRowValue("UsedGpuMemory(MB)",
-                                  memory_stats.used_gpu_memory);
-      histogram_table.FinalizeRow();
-    }
-
-    // COMPRESS TABLE WHEN FULL.
-    //
-    // Table is full, therefore eliminate half of the elements.
-    // Reduce sample frequency to match.
-    if (histogram_table.NumberOfRows() >= 100) {
-      // Compression step.
-      histogram_table.RemoveOddElements();
-
-      // By double the sampling time this keeps the table linear with
-      // respect to time. If sampling time was not doubled then there
-      // would be time distortion in the graph.
-      sample_timer.ScaleTriggerTime(2.0);
-      sample_timer.Restart();
-    }
-  }
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/malloc_stats_tool.h b/cobalt/browser/memory_tracker/tool/malloc_stats_tool.h
deleted file mode 100644
index 0d16bd7..0000000
--- a/cobalt/browser/memory_tracker/tool/malloc_stats_tool.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_STATS_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_STATS_TOOL_H_
-
-#include <string>
-
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Generates a CSV table of the memory stats. This tool does not use
-// per-allocation tracking and therefore has a lower memory footprint than
-// most other tools.
-class MallocStatsTool : public AbstractTool {
- public:
-  MallocStatsTool();
-  std::string tool_name() const override;
-  void Run(Params* params) override;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_MALLOC_STATS_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.cc b/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.cc
deleted file mode 100644
index 709d88a..0000000
--- a/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.cc
+++ /dev/null
@@ -1,111 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/memory_size_binner_tool.h"
-
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "base/threading/platform_thread.h"
-#include "base/time/time.h"
-#include "cobalt/base/c_val.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "starboard/common/log.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-namespace {
-
-const nb::analytics::AllocationGroup* FindAllocationGroup(
-    const std::string& name, nb::analytics::MemoryTracker* memory_tracker) {
-  std::vector<const nb::analytics::AllocationGroup*> groups;
-  memory_tracker->GetAllocationGroups(&groups);
-  // Find by exact string match.
-  for (size_t i = 0; i < groups.size(); ++i) {
-    const nb::analytics::AllocationGroup* group = groups[i];
-    if (group->name().compare(name) == 0) {
-      return group;
-    }
-  }
-  return NULL;
-}
-}  // namespace.
-
-MemorySizeBinnerTool::MemorySizeBinnerTool(const std::string& memory_scope_name)
-    : memory_scope_name_(memory_scope_name) {}
-
-void MemorySizeBinnerTool::Run(Params* params) {
-  const nb::analytics::AllocationGroup* target_group = NULL;
-
-  while (!params->finished()) {
-    if (target_group == NULL && !memory_scope_name_.empty()) {
-      target_group =
-          FindAllocationGroup(memory_scope_name_, params->memory_tracker());
-    }
-
-    std::stringstream ss;
-    ss.precision(2);
-    if (target_group || memory_scope_name_.empty()) {
-      AllocationSizeBinner visitor_binner = AllocationSizeBinner(target_group);
-      params->memory_tracker()->Accept(&visitor_binner);
-
-      size_t min_size = 0;
-      size_t max_size = 0;
-
-      visitor_binner.GetLargestSizeRange(&min_size, &max_size);
-
-      FindTopSizes top_size_visitor =
-          FindTopSizes(min_size, max_size, target_group);
-      params->memory_tracker()->Accept(&top_size_visitor);
-
-      ss << kNewLine;
-      ss << "TimeNow " << params->TimeInMinutesString() << " (minutes):";
-      ss << kNewLine;
-      if (!memory_scope_name_.empty()) {
-        ss << "Tracking Memory Scope \"" << memory_scope_name_ << "\", ";
-      } else {
-        ss << "Tracking whole program, ";
-      }
-      ss << "first row is allocation size range, second row is number of "
-         << kNewLine << "allocations in that range." << kNewLine;
-      ss << visitor_binner.ToCSVString();
-      ss << kNewLine;
-      ss << "Largest allocation range: \"" << min_size << "..." << max_size
-         << "\"" << kNewLine;
-      ss << "Printing out top allocations from this range: " << kNewLine;
-      ss << top_size_visitor.ToString(5) << kNewLine;
-    } else {
-      ss << "No allocations for \"" << memory_scope_name_ << "\".";
-    }
-
-    params->logger()->Output(ss.str().c_str());
-    params->logger()->Flush();
-
-    // Sleep until the next sample.
-    base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
-  }
-}
-
-std::string MemorySizeBinnerTool::tool_name() const {
-  return "MemoryTrackerCompressedTimeSeries";
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.h b/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.h
deleted file mode 100644
index 324e6df..0000000
--- a/cobalt/browser/memory_tracker/tool/memory_size_binner_tool.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_MEMORY_SIZE_BINNER_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_MEMORY_SIZE_BINNER_TOOL_H_
-
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// This tool inspects a memory scope and reports on the memory usage.
-// The output will be a CSV file printed to stdout representing
-// the number of memory allocations for objects. The objects are binned
-// according to the size of the memory allocation. Objects within the same
-// power of two are binned together. For example 1024 will be binned with 1025.
-class MemorySizeBinnerTool : public AbstractTool {
- public:
-  // memory_scope_name represents the memory scope that is to be investigated.
-  explicit MemorySizeBinnerTool(const std::string& memory_scope_name);
-
-  void Run(Params* params) override;
-  std::string tool_name() const override;
-
- private:
-  std::string memory_scope_name_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_MEMORY_SIZE_BINNER_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/params.cc b/cobalt/browser/memory_tracker/tool/params.cc
deleted file mode 100644
index d1fc5a3..0000000
--- a/cobalt/browser/memory_tracker/tool/params.cc
+++ /dev/null
@@ -1,68 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/params.h"
-
-#include <sstream>
-
-#include "base/basictypes.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-Params::Params(nb::analytics::MemoryTracker* memory_tracker,
-               AbstractLogger* logger, base::Time start_time)
-    : memory_tracker_(memory_tracker),
-      finished_(false),
-      logger_(logger),
-      timer_(start_time) {}
-
-bool Params::finished() const { return finished_; }
-
-bool Params::wait_for_finish_signal(SbTime wait_us) {
-  return finished_semaphore_.TakeWait(wait_us);
-}
-
-void Params::set_finished(bool val) {
-  finished_ = val;
-  finished_semaphore_.Put();
-}
-
-nb::analytics::MemoryTracker* Params::memory_tracker() const {
-  return memory_tracker_;
-}
-
-cobalt::browser::memory_tracker::AbstractLogger* Params::logger() {
-  return logger_.get();
-}
-
-base::TimeDelta Params::time_since_start() const {
-  return base::Time::NowFromSystemTime() - timer_;
-}
-
-std::string Params::TimeInMinutesString() const {
-  base::TimeDelta delta_t = time_since_start();
-  int64 seconds = delta_t.InSeconds();
-  float time_mins = static_cast<float>(seconds) / 60.f;
-  std::stringstream ss;
-
-  ss << time_mins;
-  return ss.str();
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/params.h b/cobalt/browser/memory_tracker/tool/params.h
deleted file mode 100644
index 1f71052..0000000
--- a/cobalt/browser/memory_tracker/tool/params.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_PARAMS_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_PARAMS_H_
-
-#include <memory>
-#include <string>
-
-#include "base/time/time.h"
-#include "nb/analytics/memory_tracker.h"
-#include "starboard/common/semaphore.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-class AbstractLogger;
-
-class Params {
- public:
-  Params(nb::analytics::MemoryTracker* memory_tracker, AbstractLogger* logger,
-         base::Time start_time);
-  bool finished() const;
-  bool wait_for_finish_signal(SbTime wait_us);
-  void set_finished(bool val);
-
-  nb::analytics::MemoryTracker* memory_tracker() const;
-  AbstractLogger* logger();
-  base::TimeDelta time_since_start() const;
-  std::string TimeInMinutesString() const;
-
- private:
-  nb::analytics::MemoryTracker* memory_tracker_;
-  bool finished_;
-  std::unique_ptr<AbstractLogger> logger_;
-  base::Time timer_;
-  starboard::Semaphore finished_semaphore_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_PARAMS_H_
diff --git a/cobalt/browser/memory_tracker/tool/print_csv_tool.cc b/cobalt/browser/memory_tracker/tool/print_csv_tool.cc
deleted file mode 100644
index 90ecb57..0000000
--- a/cobalt/browser/memory_tracker/tool/print_csv_tool.cc
+++ /dev/null
@@ -1,262 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/print_csv_tool.h"
-
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "cobalt/base/c_val.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "starboard/common/log.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-PrintCSVTool::PrintCSVTool(int sampling_interval_ms, int sampling_time_ms)
-    : sample_interval_ms_(sampling_interval_ms),
-      sampling_time_ms_(sampling_time_ms) {}
-
-std::string PrintCSVTool::ToCsvString(const MapAllocationSamples& samples_in) {
-  typedef MapAllocationSamples Map;
-  typedef Map::const_iterator MapIt;
-
-  size_t largest_sample_size = 0;
-  size_t smallest_sample_size = INT_MAX;
-
-  // Sanitize samples_in and store as samples.
-  MapAllocationSamples samples;
-  for (MapIt it = samples_in.begin(); it != samples_in.end(); ++it) {
-    std::string name = it->first;
-    const AllocationSamples& value = it->second;
-
-    if (value.allocated_bytes_.size() != value.number_allocations_.size()) {
-      SB_NOTREACHED() << "Error at " << __FILE__ << ":" << __LINE__;
-      return "ERROR";
-    }
-
-    const size_t n = value.allocated_bytes_.size();
-    if (n > largest_sample_size) {
-      largest_sample_size = n;
-    }
-    if (n < smallest_sample_size) {
-      smallest_sample_size = n;
-    }
-
-    const bool duplicate_found = (samples.end() != samples.find(name));
-    if (duplicate_found) {
-      SB_NOTREACHED() << "Error, duplicate found for entry: " << name
-                      << kNewLine;
-    }
-    // Store value as a sanitized sample.
-    samples[name] = value;
-  }
-
-  SB_DCHECK(largest_sample_size == smallest_sample_size);
-
-  std::stringstream ss;
-
-  // Begin output to CSV.
-  // Sometimes we need to skip the CPU memory entry.
-  const MapIt total_cpu_memory_it = samples.find(UntrackedMemoryKey());
-
-  // Preamble
-  ss << kNewLine << "//////////////////////////////////////////////";
-  ss << kNewLine << "// CSV of bytes / allocation" << kNewLine;
-  // HEADER.
-  ss << "Name" << kDelimiter << kQuote << "Bytes/Alloc" << kQuote << kNewLine;
-  // DATA.
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    if (total_cpu_memory_it == it) {
-      continue;
-    }
-
-    const AllocationSamples& samples_ref = it->second;
-    if (samples_ref.allocated_bytes_.empty() ||
-        samples_ref.number_allocations_.empty()) {
-      SB_NOTREACHED() << "Should not be here";
-      return "ERROR";
-    }
-    const int64 n_allocs = samples_ref.number_allocations_.back();
-    const int64 n_bytes = samples_ref.allocated_bytes_.back();
-    int64 bytes_per_alloc = 0;
-    if (n_allocs > 0) {
-      bytes_per_alloc = n_bytes / n_allocs;
-    }
-    const std::string& name = it->first;
-    ss << kQuote << SanitizeCSVKey(name) << kQuote << kDelimiter
-       << bytes_per_alloc << kNewLine;
-  }
-  ss << kNewLine;
-
-  // Preamble
-  ss << kNewLine << "//////////////////////////////////////////////" << kNewLine
-     << "// CSV of bytes allocated per region (MB's)." << kNewLine
-     << "// Units are in Megabytes. This is designed" << kNewLine
-     << "// to be used in a stacked graph." << kNewLine;
-
-  // HEADER.
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    if (total_cpu_memory_it == it) {
-      continue;
-    }
-    // Strip out any characters that could make parsing the csv difficult.
-    const std::string name = SanitizeCSVKey(it->first);
-    ss << kQuote << name << kQuote << kDelimiter;
-  }
-  // Save the total for last.
-  if (total_cpu_memory_it != samples.end()) {
-    const std::string& name = SanitizeCSVKey(total_cpu_memory_it->first);
-    ss << kQuote << name << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-
-  // Print out the values of each of the samples.
-  for (size_t i = 0; i < smallest_sample_size; ++i) {
-    for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-      if (total_cpu_memory_it == it) {
-        continue;
-      }
-      const int64 alloc_bytes = it->second.allocated_bytes_[i];
-      // Convert to float megabytes with decimals of precision.
-      double n = static_cast<double>(alloc_bytes / (1000 * 10));
-      n = n / (100.);
-      ss << n << kDelimiter;
-    }
-    if (total_cpu_memory_it != samples.end()) {
-      const int64 alloc_bytes = total_cpu_memory_it->second.allocated_bytes_[i];
-      // Convert to float megabytes with decimals of precision.
-      double n = static_cast<double>(alloc_bytes / (1000 * 10));
-      n = n / (100.);
-      ss << n << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-
-  ss << kNewLine;
-  // Preamble
-  ss << kNewLine << "//////////////////////////////////////////////";
-  ss << kNewLine << "// CSV of number of allocations per region." << kNewLine;
-
-  // HEADER
-  for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-    if (total_cpu_memory_it == it) {
-      continue;
-    }
-    const std::string& name = SanitizeCSVKey(it->first);
-    ss << kQuote << name << kQuote << kDelimiter;
-  }
-  ss << kNewLine;
-  for (size_t i = 0; i < smallest_sample_size; ++i) {
-    for (MapIt it = samples.begin(); it != samples.end(); ++it) {
-      if (total_cpu_memory_it == it) {
-        continue;
-      }
-      const int64 n_allocs = it->second.number_allocations_[i];
-      ss << n_allocs << kDelimiter;
-    }
-    ss << kNewLine;
-  }
-  std::string output = ss.str();
-  return output;
-}
-
-const char* PrintCSVTool::UntrackedMemoryKey() { return "Untracked Memory"; }
-
-void PrintCSVTool::Run(Params* params) {
-  params->logger()->Output("\nMemoryTrackerPrintCSVThread is sampling...\n");
-  int sample_count = 0;
-  MapAllocationSamples map_samples;
-
-  while (!TimeExpiredYet(*params) && !params->finished()) {
-    // Sample total memory used by the system.
-    nb::analytics::MemoryStats mem_stats =
-        nb::analytics::GetProcessMemoryStats();
-    int64 untracked_used_memory =
-        mem_stats.used_cpu_memory + mem_stats.used_gpu_memory;
-
-    std::vector<const nb::analytics::AllocationGroup*> vector_output;
-    params->memory_tracker()->GetAllocationGroups(&vector_output);
-
-    // Sample all known memory scopes.
-    for (size_t i = 0; i < vector_output.size(); ++i) {
-      const nb::analytics::AllocationGroup* group = vector_output[i];
-      const std::string& name = group->name();
-
-      const bool first_creation =
-          map_samples.find(group->name()) == map_samples.end();
-
-      AllocationSamples* new_entry = &(map_samples[name]);
-
-      // Didn't see it before so create new entry.
-      if (first_creation) {
-        // Make up for lost samples...
-        new_entry->allocated_bytes_.resize(sample_count, 0);
-        new_entry->number_allocations_.resize(sample_count, 0);
-      }
-
-      int32 num_allocs = -1;
-      int64 allocation_bytes = -1;
-      group->GetAggregateStats(&num_allocs, &allocation_bytes);
-
-      new_entry->allocated_bytes_.push_back(allocation_bytes);
-      new_entry->number_allocations_.push_back(num_allocs);
-
-      untracked_used_memory -= allocation_bytes;
-    }
-
-    // Now push in remaining total.
-    AllocationSamples* process_sample = &(map_samples[UntrackedMemoryKey()]);
-    if (untracked_used_memory < 0) {
-      // On some platforms, total GPU memory may not be correctly reported.
-      // However the allocations from the GPU memory may be reported. In this
-      // case untracked_used_memory will go negative. To protect the memory
-      // reporting the untracked_used_memory is set to 0 so that it doesn't
-      // cause an error in reporting.
-      untracked_used_memory = 0;
-    }
-    process_sample->allocated_bytes_.push_back(untracked_used_memory);
-    process_sample->number_allocations_.push_back(-1);
-
-    ++sample_count;
-    base::PlatformThread::Sleep(
-        base::TimeDelta::FromMilliseconds(sample_interval_ms_));
-  }
-
-  std::stringstream ss;
-  ss.precision(2);
-  ss << "Time now: " << params->TimeInMinutesString() << ",\n";
-  ss << ToCsvString(map_samples);
-  params->logger()->Output(ss.str().c_str());
-  params->logger()->Flush();
-  // Prevents the "thread exited code 0" from being interleaved into the
-  // output. This happens if flush is not implemented correctly in the system.
-  base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
-}
-
-bool PrintCSVTool::TimeExpiredYet(const Params& params) {
-  base::TimeDelta dt = params.time_since_start();
-  int64 dt_ms = dt.InMilliseconds();
-  const bool expired_time = dt_ms > sampling_time_ms_;
-  return expired_time;
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/print_csv_tool.h b/cobalt/browser/memory_tracker/tool/print_csv_tool.h
deleted file mode 100644
index 623334e..0000000
--- a/cobalt/browser/memory_tracker/tool/print_csv_tool.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_CSV_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_CSV_TOOL_H_
-
-#include <map>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Generates CSV values of the engine.
-// There are three sections of data including:
-//   1. average bytes / alloc
-//   2. # Bytes allocated per memory scope.
-//   3. # Allocations per memory scope.
-// This data can be pasted directly into a Google spreadsheet and visualized.
-// Note that this thread will implicitly call Start() is called during
-// construction and Cancel() & Join() during destruction.
-class PrintCSVTool : public AbstractTool {
- public:
-  // This tool will only produce on CSV dump of the engine. This is useful
-  // for profiling startup memory consumption.
-  PrintCSVTool(int sampling_interval_ms, int sampling_time_ms);
-
-  // Overridden so that the thread can exit gracefully.
-  void Run(Params* params) override;
-  std::string tool_name() const override { return "MemoryTrackerPrintCSV"; }
-
- private:
-  typedef std::map<std::string, AllocationSamples> MapAllocationSamples;
-  static std::string ToCsvString(const MapAllocationSamples& samples);
-  static const char* UntrackedMemoryKey();
-  bool TimeExpiredYet(const Params& params);
-
-  const int sample_interval_ms_;
-  const int sampling_time_ms_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_CSV_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/print_tool.cc b/cobalt/browser/memory_tracker/tool/print_tool.cc
deleted file mode 100644
index 6344974..0000000
--- a/cobalt/browser/memory_tracker/tool/print_tool.cc
+++ /dev/null
@@ -1,187 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/print_tool.h"
-
-#include <map>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/threading/platform_thread.h"
-#include "cobalt/base/c_val.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "starboard/common/log.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-using nb::analytics::AllocationGroup;
-
-class PrintTool::CvalsMap {
- public:
-  typedef base::CVal<base::cval::SizeInBytes> CValType;
-
-  ~CvalsMap() {
-    while (!map_.empty()) {
-      MapCvals::iterator it = map_.begin();
-      delete it->second;
-      map_.erase(it);
-    }
-  }
-
-  void Update(const std::string& name, size_t value) {
-    std::string cval_name = GetCvalName(name);
-    CValType*& val = map_[cval_name];
-    if (!val) {
-      // Create if not found.
-      val = new CValType(cval_name, 0,
-                         "Automatically generated by the "
-                         "browser::memory_tracker system.");
-    }
-    (*val) = value;
-  }
-
-  static std::string GetCvalName(const std::string& name) {
-    std::stringstream ss;
-    ss << "Memory.Scope." << name;
-    return ss.str();
-  }
-
- private:
-  typedef std::map<std::string, CValType*> MapCvals;
-  MapCvals map_;
-};
-
-PrintTool::PrintTool() : cvals_map_(new CvalsMap) {}
-
-PrintTool::~PrintTool() {}
-
-void PrintTool::Run(Params* params) {
-  const std::string kSeparator =
-      "--------------------------------------------------";
-
-  while (!params->finished()) {
-    std::vector<const AllocationGroup*> vector_output;
-    params->memory_tracker()->GetAllocationGroups(&vector_output);
-
-    typedef std::map<std::string, const AllocationGroup*> Map;
-    typedef Map::const_iterator MapIt;
-
-    Map output;
-    for (size_t i = 0; i < vector_output.size(); ++i) {
-      const AllocationGroup* group = vector_output[i];
-      output[group->name()] = group;
-    }
-
-    int32 num_allocs = 0;
-    int64 total_bytes = 0;
-
-    struct F {
-      static void PrintRow(std::stringstream* ss, const std::string& v1,
-                           const std::string& v2, const std::string& v3) {
-        ss->width(25);
-        *ss << std::left << v1;
-        ss->width(13);
-        *ss << std::right << v2 << "  ";
-        ss->width(10);
-        *ss << std::right << v3 << "\n";
-      }
-    };
-
-    if (params->memory_tracker()->IsMemoryTrackingEnabled()) {
-      // If this isn't true then it would cause an infinite loop. The
-      // following will likely crash.
-      SB_DCHECK(false) << "Unexpected, memory tracking should be disabled.";
-    }
-
-    std::stringstream ss;
-
-    ss << kNewLine;
-    ss << "TimeNow " << params->TimeInMinutesString()
-       << " (minutes):" << kNewLine << kNewLine;
-
-    ss << kSeparator << kNewLine;
-    nb::analytics::MemoryStats memstats =
-        nb::analytics::GetProcessMemoryStats();
-
-    F::PrintRow(&ss, "MALLOC STAT", "IN USE BYTES", "");
-    ss << kSeparator << kNewLine;
-    F::PrintRow(&ss, "Total CPU Reserved",
-                NumberFormatWithCommas(memstats.total_cpu_memory), "");
-
-    F::PrintRow(&ss, "Total CPU Used",
-                NumberFormatWithCommas(memstats.used_cpu_memory), "");
-
-    F::PrintRow(&ss, "Total GPU Reserved",
-                NumberFormatWithCommas(memstats.total_gpu_memory), "");
-
-    F::PrintRow(&ss, "Total GPU Used",
-                NumberFormatWithCommas(memstats.used_gpu_memory), "");
-
-    ss << kSeparator << kNewLine << kNewLine;
-
-    ss << kSeparator << kNewLine;
-    F::PrintRow(&ss, "MEMORY REGION", "IN USE BYTES", "NUM ALLOCS");
-    ss << kSeparator << kNewLine;
-
-    for (MapIt it = output.begin(); it != output.end(); ++it) {
-      const AllocationGroup* group = it->second;
-      if (!group) {
-        continue;
-      }
-
-      int32 num_group_allocs = -1;
-      int64 total_group_bytes = -1;
-
-      group->GetAggregateStats(&num_group_allocs, &total_group_bytes);
-      SB_DCHECK(-1 != num_group_allocs);
-      SB_DCHECK(-1 != total_group_bytes);
-
-      cvals_map_->Update(group->name(), static_cast<size_t>(total_group_bytes));
-
-      num_allocs += num_group_allocs;
-      total_bytes += total_group_bytes;
-
-      F::PrintRow(&ss, it->first, NumberFormatWithCommas(total_group_bytes),
-                  NumberFormatWithCommas(num_group_allocs));
-    }
-
-    cvals_map_->Update("Total", static_cast<size_t>(total_bytes));
-
-    ss << kNewLine;
-
-    F::PrintRow(&ss, "Total (in groups above)",
-                NumberFormatWithCommas(total_bytes),
-                NumberFormatWithCommas(num_allocs));
-
-    ss << kSeparator << kNewLine;
-    ss << kNewLine << kNewLine;
-
-    params->logger()->Output(ss.str().c_str());
-    // Output once every 5 seconds.
-    base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(5));
-  }
-}
-
-std::string PrintTool::tool_name() const { return "MemoryTrackerPrintThread"; }
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/print_tool.h b/cobalt/browser/memory_tracker/tool/print_tool.h
deleted file mode 100644
index f50b249..0000000
--- a/cobalt/browser/memory_tracker/tool/print_tool.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_TOOL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_TOOL_H_
-
-#include <memory>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Start() is called when this object is created, and Cancel() & Join() are
-// called during destruction.
-class PrintTool : public AbstractTool {
- public:
-  PrintTool();
-  ~PrintTool() override;
-
-  // Overridden so that the thread can exit gracefully.
-  void Run(Params* params) override;
-  std::string tool_name() const override;
-
- private:
-  class CvalsMap;
-  std::unique_ptr<CvalsMap> cvals_map_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_PRINT_TOOL_H_
diff --git a/cobalt/browser/memory_tracker/tool/tool_impl.cc b/cobalt/browser/memory_tracker/tool/tool_impl.cc
deleted file mode 100644
index 4b4580f..0000000
--- a/cobalt/browser/memory_tracker/tool/tool_impl.cc
+++ /dev/null
@@ -1,236 +0,0 @@
-// Copyright 2016 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-
-#include <algorithm>
-#include <cstring>
-#include <iomanip>
-#include <iterator>
-#include <map>
-#include <set>
-#include <sstream>
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "base/time/time.h"
-#include "cobalt/base/c_val_collection_entry_stats.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_thread.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "nb/concurrent_map.h"
-#include "nb/memory_scope.h"
-#include "starboard/common/semaphore.h"
-#include "starboard/common/string.h"
-#include "starboard/configuration.h"
-#include "starboard/file.h"
-#include "starboard/system.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-using nb::analytics::AllocationGroup;
-using nb::analytics::AllocationRecord;
-using nb::analytics::AllocationVisitor;
-using nb::analytics::GetProcessMemoryStats;
-using nb::analytics::MemoryStats;
-using nb::analytics::MemoryTracker;
-
-size_t AllocationSizeBinner::GetBucketIndexForAllocationSize(size_t size) {
-  for (int i = 0; i < 32; ++i) {
-    size_t val = static_cast<size_t>(0x1) << i;
-    if (val > size) {
-      return i;
-    }
-  }
-  SB_NOTREACHED();
-  return 32;
-}
-
-void AllocationSizeBinner::GetSizeRange(size_t size, size_t* min_value,
-                                        size_t* max_value) {
-  size_t idx = GetBucketIndexForAllocationSize(size);
-  IndexToSizeRange(idx, min_value, max_value);
-}
-
-void AllocationSizeBinner::IndexToSizeRange(size_t idx, size_t* min_value,
-                                            size_t* max_value) {
-  if (idx == 0) {
-    *min_value = 0;
-    *max_value = 0;
-    return;
-  }
-  *min_value = static_cast<size_t>(0x1) << (idx - 1);
-  *max_value = (*min_value << 1) - 1;
-  return;
-}
-
-size_t AllocationSizeBinner::GetIndexRepresentingMostMemoryConsumption() const {
-  int64 largest_allocation_total = 0;
-  size_t largest_allocation_total_idx = 0;
-
-  for (size_t i = 0; i < allocation_histogram_.size(); ++i) {
-    size_t alloc_size = static_cast<size_t>(0x1) << i;
-    size_t count = allocation_histogram_[i];
-    int64 allocation_total =
-        static_cast<int64>(alloc_size) * static_cast<int64>(count);
-
-    if (largest_allocation_total < allocation_total) {
-      largest_allocation_total = allocation_total;
-      largest_allocation_total_idx = i;
-    }
-  }
-  return largest_allocation_total_idx;
-}
-
-void AllocationSizeBinner::GetLargestSizeRange(size_t* min_value,
-                                               size_t* max_value) const {
-  size_t index = GetIndexRepresentingMostMemoryConsumption();
-  IndexToSizeRange(index, min_value, max_value);
-}
-
-AllocationSizeBinner::AllocationSizeBinner(const AllocationGroup* group_filter)
-    : group_filter_(group_filter) {
-  allocation_histogram_.resize(33);
-}
-
-bool AllocationSizeBinner::PassesFilter(
-    const AllocationRecord& alloc_record) const {
-  if (group_filter_ == NULL) {
-    return true;
-  }
-
-  return alloc_record.allocation_group == group_filter_;
-}
-
-bool AllocationSizeBinner::Visit(const void* memory,
-                                 const AllocationRecord& alloc_record) {
-  if (PassesFilter(alloc_record)) {
-    const size_t idx = GetBucketIndexForAllocationSize(alloc_record.size);
-    allocation_histogram_[idx]++;
-  }
-  return true;
-}
-
-std::string AllocationSizeBinner::ToCSVString() const {
-  size_t first_idx = 0;
-  size_t end_idx = allocation_histogram_.size();
-
-  // Determine the start index by skipping all consecutive head entries
-  // that are 0.
-  while (first_idx < allocation_histogram_.size()) {
-    const size_t num_allocs = allocation_histogram_[first_idx];
-    if (num_allocs > 0) {
-      break;
-    }
-    first_idx++;
-  }
-
-  // Determine the end index by skipping all consecutive tail entries
-  // that are 0.
-  while (end_idx > 0) {
-    if (end_idx < allocation_histogram_.size()) {
-      const size_t num_allocs = allocation_histogram_[end_idx];
-      if (num_allocs > 0) {
-        ++end_idx;
-        break;
-      }
-    }
-    end_idx--;
-  }
-
-  std::stringstream ss;
-  for (size_t i = first_idx; i < end_idx; ++i) {
-    size_t min = 0;
-    size_t max = 0;
-    IndexToSizeRange(i, &min, &max);
-    std::stringstream name_ss;
-    name_ss << kQuote << min << "..." << max << kQuote;
-    ss << name_ss.str() << kDelimiter;
-  }
-  ss << kNewLine;
-
-  for (size_t i = first_idx; i < end_idx; ++i) {
-    const size_t num_allocs = allocation_histogram_[i];
-    ss << num_allocs << kDelimiter;
-  }
-  ss << kNewLine;
-  return ss.str();
-}
-
-FindTopSizes::FindTopSizes(size_t minimum_size, size_t maximum_size,
-                           const AllocationGroup* group)
-    : minimum_size_(minimum_size),
-      maximum_size_(maximum_size),
-      group_filter_(group) {}
-
-bool FindTopSizes::Visit(const void* memory,
-                         const AllocationRecord& alloc_record) {
-  if (PassesFilter(alloc_record)) {
-    size_counter_[alloc_record.size]++;
-  }
-  return true;
-}
-
-std::string FindTopSizes::ToString(size_t max_elements_to_print) const {
-  std::vector<GroupAllocation> group_allocs = GetTopAllocations();
-  const size_t n = std::min(max_elements_to_print, group_allocs.size());
-
-  if (!group_allocs.empty()) {
-    std::stringstream ss;
-
-    for (size_t i = 0; i < n; ++i) {
-      GroupAllocation g = group_allocs[i];
-      size_t total_size = g.allocation_count * g.allocation_size;
-      ss << "    " << total_size
-         << " bytes allocated with object size: " << g.allocation_size
-         << " bytes in " << g.allocation_count << " instances " << kNewLine;
-    }
-    return ss.str();
-  } else {
-    return std::string();
-  }
-}
-
-std::vector<FindTopSizes::GroupAllocation> FindTopSizes::GetTopAllocations()
-    const {
-  std::vector<GroupAllocation> group_allocs;
-  // Push objects to a vector.
-  for (SizeCounterMap::const_iterator it = size_counter_.begin();
-       it != size_counter_.end(); ++it) {
-    GroupAllocation alloc = {it->first, it->second};
-    group_allocs.push_back(alloc);
-  }
-
-  std::sort(group_allocs.begin(), group_allocs.end(),
-            GroupAllocation::LessAllocationSize);
-  // Biggest first.
-  std::reverse(group_allocs.begin(), group_allocs.end());
-  return group_allocs;
-}
-
-bool FindTopSizes::PassesFilter(const AllocationRecord& alloc_record) const {
-  if (alloc_record.size < minimum_size_) return false;
-  if (alloc_record.size > maximum_size_) return false;
-  if (!group_filter_) return true;  // No group filter when null.
-  return group_filter_ == alloc_record.allocation_group;
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/tool_impl.h b/cobalt/browser/memory_tracker/tool/tool_impl.h
deleted file mode 100644
index 8551002..0000000
--- a/cobalt/browser/memory_tracker/tool/tool_impl.h
+++ /dev/null
@@ -1,162 +0,0 @@
-// Copyright 2016 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_IMPL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_IMPL_H_
-
-#include <deque>
-#include <map>
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "base/debug/stack_trace.h"
-#include "base/memory/ref_counted.h"
-#include "base/threading/simple_thread.h"
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/buffered_file_writer.h"
-#include "cobalt/browser/memory_tracker/tool/util.h"
-#include "nb/analytics/memory_tracker.h"
-#include "nb/analytics/memory_tracker_helpers.h"
-#include "nb/concurrent_map.h"
-#include "nb/string_interner.h"
-#include "nb/thread_local_object.h"
-#include "starboard/memory_reporter.h"
-
-namespace starboard {
-class ScopedFile;
-}  // namespace starboard
-
-namespace nb {
-namespace analytics {
-class AllocationGroup;
-class AllocationRecord;
-class MemoryTracker;
-}  // namespace analytics
-}  // namespace nb
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Interface for logging. This allows dependency inject to override in the case
-// of future tests.
-class AbstractLogger {
- public:
-  virtual ~AbstractLogger() {}
-  virtual void Output(const char* str) = 0;
-  void Output(const std::string& str) { Output(str.c_str()); }
-  virtual void Flush() = 0;
-};
-
-// Params holds important data needed by the MemoryTracker tools during
-// their run cycle.
-class Params;
-
-// Base class for all tools.
-class AbstractTool {
- public:
-  virtual ~AbstractTool() {}
-  virtual std::string tool_name() const = 0;
-  virtual void Run(Params* params) = 0;
-};
-
-// Bins the size according from all the encountered allocations.
-// If AllocationGroup* is non-null, then this is used as a filter such that
-// ONLY allocations belonging to that AllocationGroup are considered.
-class AllocationSizeBinner : public nb::analytics::AllocationVisitor {
- public:
-  typedef std::vector<int> AllocationHistogram;
-  // Maps the input size to a bin number. This function performs a 2^n
-  // mapping. Here is a table of some size mappings:
-  // Example:
-  //   GetIndex(0) == 0;
-  //   GetIndex(1) == 1;
-  //   GetIndex(2) == 2;
-  //   GetIndex(3) == 2;
-  //   GetIndex(4) == 3;
-  //   ...
-  //   GetIndex(15) == 4;
-  //   GetIndex(16) == 5;
-  static size_t GetBucketIndexForAllocationSize(size_t size);
-  static void GetSizeRange(size_t size, size_t* min_value, size_t* max_value);
-  static void IndexToSizeRange(size_t size, size_t* min_value,
-                               size_t* max_value);
-
-  explicit AllocationSizeBinner(
-      const nb::analytics::AllocationGroup* group_filter);
-  bool Visit(const void* memory,
-             const nb::analytics::AllocationRecord& alloc_record) override;
-
-  size_t GetIndexRepresentingMostMemoryConsumption() const;
-  void GetLargestSizeRange(size_t* min_value, size_t* max_value) const;
-  bool PassesFilter(const nb::analytics::AllocationRecord& alloc_record) const;
-  // Outputs CSV formatted string of the data values.
-  // The header containing the binning range is printed first, then the
-  // the number of allocations in that bin.
-  // Example:
-  //   "16...32","32...64","64...128","128...256",...
-  //   831,3726,3432,10285,...
-  //
-  // In this example there are 831 allocations of size 16-32 bytes.
-  std::string ToCSVString() const;
-  const AllocationHistogram& allocation_histogram() const {
-    return allocation_histogram_;
-  }
-
- private:
-  AllocationHistogram allocation_histogram_;
-  // Only these allocations are tracked.
-  const nb::analytics::AllocationGroup* group_filter_;
-};
-
-// Finds the top allocations by size.
-class FindTopSizes : public nb::analytics::AllocationVisitor {
- public:
-  FindTopSizes(size_t minimum_size, size_t maximum_size,
-               const nb::analytics::AllocationGroup* group);
-
-  bool Visit(const void* memory,
-             const nb::analytics::AllocationRecord& alloc_record) override;
-
-  struct GroupAllocation {
-    size_t allocation_size;
-    size_t allocation_count;
-
-    static bool LessAllocationSize(GroupAllocation a, GroupAllocation b) {
-      size_t total_size_a = a.allocation_size * a.allocation_count;
-      size_t total_size_b = b.allocation_size * b.allocation_count;
-      return total_size_a < total_size_b;
-    }
-  };
-
-  std::string ToString(size_t max_elements_to_print) const;
-  std::vector<GroupAllocation> GetTopAllocations() const;
-
- private:
-  typedef std::map<size_t, size_t> SizeCounterMap;
-
-  bool PassesFilter(const nb::analytics::AllocationRecord& alloc_record) const;
-  size_t minimum_size_;
-  size_t maximum_size_;
-  const nb::analytics::AllocationGroup* group_filter_;
-  SizeCounterMap size_counter_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_IMPL_H_
diff --git a/cobalt/browser/memory_tracker/tool/tool_impl_test.cc b/cobalt/browser/memory_tracker/tool/tool_impl_test.cc
deleted file mode 100644
index 96f44ee..0000000
--- a/cobalt/browser/memory_tracker/tool/tool_impl_test.cc
+++ /dev/null
@@ -1,114 +0,0 @@
-// Copyright 2016 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "build/build_config.h"
-
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-using ::nb::analytics::AllocationGroup;
-using ::nb::analytics::AllocationRecord;
-using ::nb::analytics::AllocationVisitor;
-
-// Tests the expectation that AllocationSizeBinner will correctly bin
-// allocations.
-TEST(MemoryTrackerToolTest, AllocationSizeBinner) {
-  const size_t index =
-      AllocationSizeBinner::GetBucketIndexForAllocationSize(24);
-  EXPECT_EQ(5, static_cast<int>(index));
-
-  const size_t kAllocSize = 24;
-
-  AllocationSizeBinner binner(NULL);
-  void* dummy_memory = SbMemoryAllocate(kAllocSize);
-
-  AllocationRecord allocation_record(kAllocSize, NULL);
-  binner.Visit(dummy_memory, allocation_record);
-
-  size_t min_val = 0;
-  size_t max_val = 0;
-  AllocationSizeBinner::GetSizeRange(kAllocSize, &min_val, &max_val);
-  EXPECT_EQ(16, static_cast<int>(min_val));
-  EXPECT_EQ(31, static_cast<int>(max_val));
-
-  // 0 -> [0,0]
-  // 1 -> [1,1]
-  // 2 -> [2,3]
-  // 3 -> [4,7]
-  // 4 -> [8,15]
-  // 5 -> [16,31] ...
-  EXPECT_EQ(1, binner.allocation_histogram()[5]);
-
-  allocation_record.size = 15;
-  binner.Visit(NULL, allocation_record);
-  binner.Visit(NULL, allocation_record);
-
-  size_t min_value = 0;
-  size_t max_value = 0;
-  binner.GetLargestSizeRange(&min_value, &max_value);
-  EXPECT_EQ(min_value, static_cast<int>(8));
-  EXPECT_EQ(max_value, static_cast<int>(15));
-
-  std::string csv_string = binner.ToCSVString();
-
-  // Expect header.
-  bool found = (csv_string.find("\"8...15\",\"16...31\"") != std::string::npos);
-  EXPECT_TRUE(found);
-
-  // Expect data.
-  found = (csv_string.find("2,1") != std::string::npos);
-  SbMemoryDeallocate(dummy_memory);
-}
-
-// Tests the expectation that AllocationSizeBinner will correctly bin
-// allocations.
-TEST(MemoryTrackerToolTest, FindTopSizes) {
-  const size_t min_size = 21;
-  const size_t max_size = 23;
-  AllocationGroup* group = NULL;  // signals "accept any group".
-
-  FindTopSizes top_sizes_visitor(min_size, max_size, group);
-
-  AllocationRecord record_a(21, group);
-  AllocationRecord record_b(22, group);
-  AllocationRecord record_c(22, group);
-  AllocationRecord record_d(24, group);
-
-  const void* dummy_alloc = NULL;
-  top_sizes_visitor.Visit(dummy_alloc, record_a);
-  top_sizes_visitor.Visit(dummy_alloc, record_b);
-  top_sizes_visitor.Visit(dummy_alloc, record_c);
-  top_sizes_visitor.Visit(dummy_alloc, record_d);
-
-  std::vector<FindTopSizes::GroupAllocation> top_allocations =
-      top_sizes_visitor.GetTopAllocations();
-
-  // Expect element 24 to be filtered out, leaving only 22 and 24.
-  EXPECT_EQ(top_allocations.size(), 2);
-  // Expect that allocation size 22 is the top allocation.
-  EXPECT_EQ(top_allocations[0].allocation_size, 22);
-  EXPECT_EQ(top_allocations[0].allocation_count, 2);
-  // And then the 21 byte allocation.
-  EXPECT_EQ(top_allocations[1].allocation_size, 21);
-  EXPECT_EQ(top_allocations[1].allocation_count, 1);
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/tool_thread.cc b/cobalt/browser/memory_tracker/tool/tool_thread.cc
deleted file mode 100644
index 7f5858b..0000000
--- a/cobalt/browser/memory_tracker/tool/tool_thread.cc
+++ /dev/null
@@ -1,90 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/tool_thread.h"
-
-#include "base/time/time.h"
-#include "cobalt/browser/memory_tracker/tool/params.h"
-#include "cobalt/browser/memory_tracker/tool/tool_impl.h"
-#include "nb/analytics/memory_tracker.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-namespace {
-// NoMemoryTracking will disable memory tracking while in the current scope of
-// execution. When the object is destroyed it will reset the previous state
-// of allocation tracking.
-// Example:
-//   void Foo() {
-//     NoMemoryTracking no_memory_tracking_in_scope;
-//     int* ptr = new int();  // ptr is not tracked.
-//     delete ptr;
-//     return;    // Previous memory tracking state is restored.
-//   }
-class NoMemoryTracking {
- public:
-  explicit NoMemoryTracking(nb::analytics::MemoryTracker* owner)
-      : prev_val_(false), owner_(owner) {
-    if (owner_) {
-      prev_val_ = owner_->IsMemoryTrackingEnabled();
-      owner_->SetMemoryTrackingEnabled(false);
-    }
-  }
-  ~NoMemoryTracking() {
-    if (owner_) {
-      owner_->SetMemoryTrackingEnabled(prev_val_);
-    }
-  }
-
- private:
-  bool prev_val_;
-  nb::analytics::MemoryTracker* owner_;
-};
-
-}  // namespace.
-
-ToolThread::ToolThread(nb::analytics::MemoryTracker* memory_tracker,
-                       AbstractTool* tool, AbstractLogger* logger)
-    : Super(tool->tool_name()),
-      params_(
-          new Params(memory_tracker, logger, base::Time::NowFromSystemTime())),
-      tool_(tool) {
-  Start();
-}
-
-ToolThread::~ToolThread() {
-  nb::analytics::MemoryTracker* memory_tracker = params_->memory_tracker();
-  if (memory_tracker) {
-    memory_tracker->SetMemoryTrackerDebugCallback(nullptr);
-  }
-  Join();
-  tool_.reset();
-  params_.reset();
-}
-
-void ToolThread::Join() {
-  params_->set_finished(true);
-  Super::Join();
-}
-
-void ToolThread::Run() {
-  NoMemoryTracking no_mem_tracking_in_this_scope(params_->memory_tracker());
-  // This tool will run until the finished_ if flipped to false.
-  tool_->Run(params_.get());
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/tool_thread.h b/cobalt/browser/memory_tracker/tool/tool_thread.h
deleted file mode 100644
index 7f6108c..0000000
--- a/cobalt/browser/memory_tracker/tool/tool_thread.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_THREAD_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_THREAD_H_
-
-#include <memory>
-
-#include "base/compiler_specific.h"
-#include "base/threading/simple_thread.h"
-
-namespace nb {
-namespace analytics {
-class MemoryTracker;
-}  // namespace analytics
-}  // namespace nb
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-class AbstractLogger;
-class AbstractTool;
-class Params;
-
-// ToolThread sets up the the thread environment to run an AbstractTool.
-class ToolThread : public base::SimpleThread {
- public:
-  typedef base::SimpleThread Super;
-  ToolThread(nb::analytics::MemoryTracker* memory_tracker, AbstractTool* tool,
-             AbstractLogger* logger);
-  virtual ~ToolThread();
-
-  void Join();
-  void Run();
-
- private:
-  std::unique_ptr<Params> params_;
-  std::unique_ptr<AbstractTool> tool_;
-};
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_TOOL_THREAD_H_
diff --git a/cobalt/browser/memory_tracker/tool/util.cc b/cobalt/browser/memory_tracker/tool/util.cc
deleted file mode 100644
index e865670..0000000
--- a/cobalt/browser/memory_tracker/tool/util.cc
+++ /dev/null
@@ -1,221 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/util.h"
-
-#include <algorithm>
-#include <iterator>
-#include <string>
-#include <vector>
-
-#include "base/time/time.h"
-#include "nb/bit_cast.h"
-#include "starboard/common/string.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-const char kQuote[] = "\"";
-const char kDelimiter[] = ",";
-const char kNewLine[] = "\n";
-
-std::string RemoveString(const std::string& haystack, const char* needle) {
-  const size_t kNotFound = std::string::npos;
-
-  // Base case. No modification needed.
-  size_t pos = haystack.find(needle);
-  if (pos == kNotFound) {
-    return haystack;
-  }
-  const size_t n = strlen(needle);
-  std::string output;
-  output.reserve(haystack.size());
-
-  // Copy string, omitting the portion containing the "needle".
-  std::copy(haystack.begin(), haystack.begin() + pos,
-            std::back_inserter(output));
-  std::copy(haystack.begin() + pos + n, haystack.end(),
-            std::back_inserter(output));
-
-  // Recursively remove same needle in haystack.
-  return RemoveString(output, needle);
-}
-
-std::string SanitizeCSVKey(std::string key) {
-  key = RemoveString(key, kQuote);
-  key = RemoveString(key, kDelimiter);
-  key = RemoveString(key, kNewLine);
-  return key;
-}
-
-std::string InsertCommasIntoNumberString(const std::string& input) {
-  typedef std::vector<char> CharVector;
-  typedef CharVector::iterator CharIt;
-
-  CharVector chars(input.begin(), input.end());
-  std::reverse(chars.begin(), chars.end());
-
-  CharIt curr_it = chars.begin();
-  CharIt mid = std::find(chars.begin(), chars.end(), '.');
-  if (mid == chars.end()) {
-    mid = curr_it;
-  }
-
-  CharVector out(curr_it, mid);
-
-  int counter = 0;
-  for (CharIt it = mid; it != chars.end(); ++it) {
-    if (counter != 0 && (counter % 3 == 0)) {
-      out.push_back(',');
-    }
-    if (*it != '.') {
-      counter++;
-    }
-    out.push_back(*it);
-  }
-
-  std::reverse(out.begin(), out.end());
-  std::stringstream ss;
-  for (size_t i = 0; i < out.size(); ++i) {
-    ss << out[i];
-  }
-  return ss.str();
-}
-
-Timer::Timer(base::TimeDelta delta_time) {
-  start_time_ = Now();
-  time_before_expiration_ = delta_time;
-}
-
-Timer::Timer(base::TimeDelta delta_time, Timer::TimeFunctor time_functor) {
-  time_function_override_ = time_functor;
-  start_time_ = Now();
-  time_before_expiration_ = delta_time;
-}
-
-void Timer::Restart() { start_time_ = Now(); }
-
-bool Timer::UpdateAndIsExpired() {
-  base::TimeTicks now_time = Now();
-  base::TimeDelta delta_time = now_time - start_time_;
-  if (delta_time >= time_before_expiration_) {
-    start_time_ = now_time;
-    return true;
-  } else {
-    return false;
-  }
-}
-
-base::TimeTicks Timer::Now() {
-  if (time_function_override_.is_null()) {
-    return base::TimeTicks::Now();
-  } else {
-    return time_function_override_.Run();
-  }
-}
-
-void Timer::ScaleTriggerTime(double scale) {
-  int64_t old_dt = time_before_expiration_.InMicroseconds();
-  int64_t new_dt = static_cast<int64_t>(static_cast<double>(old_dt) * scale);
-  time_before_expiration_ = base::TimeDelta::FromMicroseconds(new_dt);
-}
-
-Segment::Segment(const std::string* name, const char* start_address,
-                 const char* end_address)
-    : name_(name), begin_(start_address), end_(end_address) {}
-
-void Segment::SplitAcrossPageBoundaries(size_t page_size,
-                                        std::vector<Segment>* segments) const {
-  if (size() == 0) {
-    segments->push_back(*this);
-    return;
-  }
-
-  uintptr_t page_start = nb::bit_cast<uintptr_t>(begin_) / page_size;
-  uintptr_t page_end = nb::bit_cast<uintptr_t>(end_ - 1) / page_size;
-
-  if (page_start == page_end) {
-    segments->push_back(*this);
-    return;
-  }
-
-  for (uintptr_t p = page_start; p <= page_end; ++p) {
-    uintptr_t start_addr;
-    if (p == page_start) {
-      start_addr = nb::bit_cast<uintptr_t>(begin_);
-    } else {
-      start_addr = p * page_size;
-    }
-
-    uintptr_t end_addr;
-    if (p == page_end) {
-      end_addr = nb::bit_cast<uintptr_t>(end_);
-    } else {
-      end_addr = (p + 1) * page_size;
-    }
-
-    const char* start = nb::bit_cast<const char*>(start_addr);
-    const char* end = nb::bit_cast<const char*>(end_addr);
-    segments->push_back(Segment(name_, start, end));
-  }
-}
-
-bool Segment::Intersects(const Segment& other) const {
-  size_t total_span = std::distance(std::min(begin_, other.begin()),
-                                    std::max(end_, other.end()));
-
-  bool intersects = (size() + other.size()) > total_span;
-  return intersects;
-}
-
-bool Segment::operator<(const Segment& other) const {
-  return begin_ < other.begin();
-}
-
-bool Segment::operator==(const Segment& other) const {
-  if (begin_ == other.begin() && end_ == other.end()) {
-    DCHECK(name_ == other.name_);
-    return true;
-  }
-  return false;
-}
-
-size_t Segment::size() const { return std::distance(begin_, end_); }
-
-const char* BaseNameFast(const char* file_name) {
-  // Case: Linux.
-  const char* end_pos = file_name + strlen(file_name);
-  const char* last_forward_slash = strrchr(file_name, '/');
-  if (last_forward_slash) {
-    if (end_pos != last_forward_slash) {
-      ++last_forward_slash;
-    }
-    return last_forward_slash;
-  }
-
-  // Case: Windows.
-  const char* last_backward_slash = strrchr(file_name, '\\');
-  if (last_backward_slash) {
-    if (end_pos != last_backward_slash) {
-      ++last_backward_slash;
-    }
-    return last_backward_slash;
-  }
-  return file_name;
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/memory_tracker/tool/util.h b/cobalt/browser/memory_tracker/tool/util.h
deleted file mode 100644
index a6ef651..0000000
--- a/cobalt/browser/memory_tracker/tool/util.h
+++ /dev/null
@@ -1,209 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_BROWSER_MEMORY_TRACKER_TOOL_UTIL_H_
-#define COBALT_BROWSER_MEMORY_TRACKER_TOOL_UTIL_H_
-
-#include <map>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include "base/callback.h"
-#include "base/logging.h"
-#include "base/time/time.h"
-#include "starboard/common/string.h"
-#include "starboard/types.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-
-// Used for CSV generation.
-extern const char kQuote[];
-extern const char kDelimiter[];
-extern const char kNewLine[];
-
-// This is a simple algorithm to remove the "needle" from the haystack. Note
-// that this function is simple and not well optimized.
-std::string RemoveString(const std::string& haystack, const char* needle);
-
-// Not optimized but works ok for a tool that dumps out in user time.
-std::string SanitizeCSVKey(std::string key);
-
-// Converts "2345.54" => "2,345.54".
-std::string InsertCommasIntoNumberString(const std::string& input);
-
-template <typename T>
-std::string NumberFormatWithCommas(T val) {
-  // Convert value to string.
-  std::stringstream ss;
-  ss << val;
-  std::string s = InsertCommasIntoNumberString(ss.str());
-  return s;
-}
-
-// Removes odd elements and resizes vector.
-template <typename VectorType>
-void RemoveOddElements(VectorType* v) {
-  typedef typename VectorType::iterator iterator;
-
-  iterator read_it = v->end();
-  iterator write_it = v->end();
-  for (size_t i = 0; i * 2 < v->size(); ++i) {
-    write_it = v->begin() + i;
-    read_it = v->begin() + (i * 2);
-    *write_it = *read_it;
-  }
-  if (write_it != v->end()) {
-    write_it++;
-  }
-  v->erase(write_it, v->end());
-}
-
-// Simple timer class that fires periodically after time has elapsed.
-class Timer {
- public:
-  typedef base::Callback<base::TimeTicks(void)> TimeFunctor;
-
-  explicit Timer(base::TimeDelta delta_time);
-  Timer(base::TimeDelta delta_time, TimeFunctor f);
-
-  void Restart();
-  bool UpdateAndIsExpired();  // Returns true if the expiration was triggered.
-  void ScaleTriggerTime(double scale);
-
- private:
-  base::TimeTicks Now();
-  base::TimeTicks start_time_;
-  base::TimeDelta time_before_expiration_;
-  TimeFunctor time_function_override_;
-};
-
-struct AllocationSamples {
-  std::vector<int32_t> number_allocations_;
-  std::vector<int64_t> allocated_bytes_;
-};
-typedef std::map<std::string, AllocationSamples> MapAllocationSamples;
-typedef std::vector<base::TimeDelta> TimeStamps;
-
-struct TimeSeries {
-  MapAllocationSamples samples_;
-  TimeStamps time_stamps_;
-};
-
-// Generates a linear fit in the form of slope / y-intercept form.
-// Returns true if linear fit was calculated. False otherwise. Reasons for
-// returning false include passing in an empty range, such that
-// begin_it == end_it, or all x-values being the same.
-//
-// Algorithm adapted from:
-// https://en.wikipedia.org/wiki/Simple_linear_regression#Fitting_the_regression_line
-// Example:
-//    std::vector<std::pair<int, int> > data;
-//    for (int i = 0; i < 10; ++i) {
-//      data.push_back(std::pair<int, int>(i+1, 2*i));
-//    }
-//    double slope = 0;
-//    double y_intercept = 0;
-//    GetLinearFit(data.begin(), data.end(), &slope, &y_intercept);
-//    std::cout << "slope: " << slope << "\n";
-//    std::cout << "y_intercept: " << y_intercept<< "\n";
-template <typename PairIterator>
-bool GetLinearFit(PairIterator begin_it, PairIterator end_it, double* out_slope,
-                  double* out_yintercept) {
-  if (begin_it == end_it) {
-    return false;
-  }
-
-  size_t n = 0;
-  double x_avg = 0;
-  double y_avg = 0;
-
-  for (PairIterator it = begin_it; it != end_it; ++it) {
-    x_avg += it->first;
-    y_avg += it->second;
-    n++;
-  }
-
-  x_avg /= n;
-  y_avg /= n;
-
-  double numerator = 0;
-  double denominator = 0;
-
-  for (PairIterator it = begin_it; it != end_it; ++it) {
-    double x_variance = it->first - x_avg;
-    double y_variance = it->second - y_avg;
-    numerator += (x_variance * y_variance);
-    denominator += (x_variance * x_variance);
-  }
-
-  if (denominator == 0.0) {
-    return false;  // Failed to generate any value.
-  }
-
-  double slope = numerator / denominator;
-  double yintercept = y_avg - slope * x_avg;
-
-  *out_slope = slope;
-  *out_yintercept = yintercept;
-  return true;
-}
-
-// Segment represents a named memory segment of allocated memory.
-// The name is optional and can be null.
-class Segment {
- public:
-  // Equal name string values must have equal pointers.
-  Segment(const std::string* name, const char* start_address,
-          const char* end_address);
-
-  // Using the page_size, split this Segment into one Segment
-  // per page. Each of the sub_segments will copy the name
-  // pointer from this.
-  void SplitAcrossPageBoundaries(size_t page_size,
-                                 std::vector<Segment>* sub_segments) const;
-
-  bool Intersects(const Segment& other) const;
-
-  bool operator<(const Segment& other) const;
-  bool operator==(const Segment& other) const;
-
-  size_t size() const;
-  const std::string* name() const { return name_; }
-
-  const char* begin() const { return begin_; }
-  const char* end() const { return end_; }
-
- private:
-  const std::string* name_;
-  const char* begin_;
-  const char* end_;
-};
-
-// Returns a substring with the directory path removed from the filename.
-// Example:
-//   F::BaseNameFast("directory/filename.cc") => "filename.cc"
-//   F::BaseNameFast("directory\filename.cc") => "filename.cc"
-//
-// Note that base::FilePath::BaseName() isn't used because of performance
-// reasons.
-const char* BaseNameFast(const char* file_name);
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
-
-#endif  // COBALT_BROWSER_MEMORY_TRACKER_TOOL_UTIL_H_
diff --git a/cobalt/browser/memory_tracker/tool/util_test.cc b/cobalt/browser/memory_tracker/tool/util_test.cc
deleted file mode 100644
index b49d0ad..0000000
--- a/cobalt/browser/memory_tracker/tool/util_test.cc
+++ /dev/null
@@ -1,229 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/browser/memory_tracker/tool/util.h"
-
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "base/bind.h"
-#include "nb/bit_cast.h"
-#include "starboard/types.h"
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace cobalt {
-namespace browser {
-namespace memory_tracker {
-namespace {
-
-const char* ToAddress(uintptr_t val) { return nb::bit_cast<const char*>(val); }
-
-// 4k page size.
-static const uintptr_t kPageSize = 4096;
-
-class FakeTimeSource {
- public:
-  explicit FakeTimeSource(base::TimeTicks value) : static_time_(value) {}
-  void set_static_time(base::TimeTicks value) { static_time_ = value; }
-  base::TimeTicks GetTime() { return static_time_; }
-
- private:
-  base::TimeTicks static_time_;
-};
-
-}  // namespace.
-
-// Tests the expectation that AllocationSizeBinner will correctly bin
-// allocations.
-TEST(UtilTest, RemoveString) {
-  std::string value = "abba";
-  value = RemoveString(value, "bb");
-  EXPECT_STREQ("aa", value.c_str());
-}
-
-// Tests the expectation that AllocationSizeBinner will correctly bin
-// allocations.
-TEST(UtilTest, InsertCommasIntoNumberString) {
-  std::string value = "2345.54";
-  std::string value_with_commas = InsertCommasIntoNumberString(value);
-
-  EXPECT_STREQ("2,345.54", value_with_commas.c_str());
-}
-
-TEST(UtilTest, NumberFormatWithCommas) {
-  int value = 1000;
-  std::string value_with_commas = NumberFormatWithCommas<int>(value);
-
-  EXPECT_STREQ("1,000", value_with_commas.c_str());
-}
-
-// Tests the expectation that RemoveOddElements() removes the odd elements of
-// a vector and resizes it.
-TEST(UtilTest, RemoveOddElements) {
-  std::vector<int> values;
-
-  // EVEN TEST.
-  values.push_back(0);
-  values.push_back(1);
-  values.push_back(2);
-  values.push_back(3);
-
-  RemoveOddElements(&values);
-
-  ASSERT_EQ(2, values.size());
-  EXPECT_EQ(0, values[0]);
-  EXPECT_EQ(2, values[1]);
-
-  values.clear();
-
-  // ODD TEST
-  values.push_back(0);
-  values.push_back(1);
-  values.push_back(2);
-  values.push_back(3);
-  values.push_back(4);
-  RemoveOddElements(&values);
-
-  ASSERT_EQ(3, values.size());
-  EXPECT_EQ(0, values[0]);
-  EXPECT_EQ(2, values[1]);
-  EXPECT_EQ(4, values[2]);
-}
-
-// Tests the expectation that GetLinearFit() generates the expected linear
-// regression values.
-TEST(UtilTest, GetLinearFit) {
-  std::vector<std::pair<int, int> > data;
-  for (int i = 0; i < 10; ++i) {
-    data.push_back(std::pair<int, int>(i + 1, 2 * i));
-  }
-  double slope = 0;
-  double y_intercept = 0;
-  GetLinearFit(data.begin(), data.end(), &slope, &y_intercept);
-
-  EXPECT_DOUBLE_EQ(2.0f, slope);
-  EXPECT_DOUBLE_EQ(-2.0f, y_intercept);
-}
-
-// Test the expectation that BaseNameFast() works correctly for both windows
-// and linux path types.
-TEST(UtilTest, BaseNameFast) {
-  const char* linux_path = "directory/filename.cc";
-  const char* win_path = "directory\\filename.cc";
-
-  EXPECT_STREQ("filename.cc", BaseNameFast(linux_path));
-  EXPECT_STREQ("filename.cc", BaseNameFast(win_path));
-}
-
-TEST(UtilTest, TimerUse) {
-  base::TimeTicks initial_time = base::TimeTicks::Now();
-  FakeTimeSource time_source(initial_time);
-
-  Timer::TimeFunctor time_functor =
-      base::Bind(&FakeTimeSource::GetTime, base::Unretained(&time_source));
-
-  Timer test_timer(base::TimeDelta::FromSeconds(30), time_functor);
-  EXPECT_FALSE(test_timer.UpdateAndIsExpired());  // 0 time has elapsed.
-
-  time_source.set_static_time(initial_time + base::TimeDelta::FromSeconds(29));
-  // 29 seconds has elapsed, which is less than the 30 seconds required for
-  // the timer to fire.
-  EXPECT_FALSE(test_timer.UpdateAndIsExpired());
-  time_source.set_static_time(initial_time + base::TimeDelta::FromSeconds(30));
-  // 31 seconds has elapsed, which means that the next call to
-  // UpdateAndIsExpired() should succeed.
-  EXPECT_TRUE(test_timer.UpdateAndIsExpired());
-  // Now that the value fired, expect that it won't fire again (until the next
-  // 30 seconds has passed).
-  EXPECT_FALSE(test_timer.UpdateAndIsExpired());
-  time_source.set_static_time(initial_time + base::TimeDelta::FromSeconds(60));
-  EXPECT_TRUE(test_timer.UpdateAndIsExpired());
-  EXPECT_FALSE(test_timer.UpdateAndIsExpired());
-}
-
-TEST(Segment, SplitAcrossPageBoundaries_Simple) {
-  std::string name("AllocName");
-  const char* start_addr = ToAddress(0);
-  const char* end_addr = ToAddress(1);
-
-  Segment memory_segment(&name, start_addr, end_addr);
-
-  std::vector<Segment> segments;
-  memory_segment.SplitAcrossPageBoundaries(kPageSize, &segments);
-  ASSERT_EQ(1, segments.size());
-
-  ASSERT_EQ(memory_segment, segments[0]);
-}
-
-TEST(Segment, SplitAcrossPageBoundaries_WholePage) {
-  std::string name("AllocName");
-  const char* start_addr = ToAddress(0);
-  const char* end_addr = ToAddress(kPageSize);
-
-  Segment memory_segment(&name, start_addr, end_addr);
-
-  std::vector<Segment> segments;
-  memory_segment.SplitAcrossPageBoundaries(kPageSize, &segments);
-  ASSERT_EQ(1, segments.size());
-
-  ASSERT_EQ(memory_segment, segments[0]);
-}
-
-TEST(Segment, SplitAcrossPageBoundaries_Across) {
-  std::string name("AllocName");
-  const char* start_addr = ToAddress(kPageSize / 2);
-  const char* mid_addr = ToAddress(kPageSize);
-  const char* end_addr = ToAddress(kPageSize + kPageSize / 2);
-
-  Segment memory_segment(&name, start_addr, end_addr);
-
-  std::vector<Segment> segments;
-  memory_segment.SplitAcrossPageBoundaries(kPageSize, &segments);
-
-  ASSERT_EQ(2, segments.size());
-
-  Segment s1(&name, start_addr, mid_addr);
-  Segment s2(&name, mid_addr, end_addr);
-
-  ASSERT_EQ(s1, segments[0]);
-  ASSERT_EQ(s2, segments[1]);
-}
-
-TEST(Segment, SplitAcrossPageBoundaries_Many) {
-  std::string name("AllocName");
-  const char* start_addr = ToAddress(kPageSize / 2);
-  const char* mid_0_addr = ToAddress(kPageSize);
-  const char* mid_1_addr = ToAddress(kPageSize * 2);
-  const char* end_addr = ToAddress(2 * kPageSize + kPageSize / 2);
-
-  Segment memory_segment(&name, start_addr, end_addr);
-
-  std::vector<Segment> segments;
-  memory_segment.SplitAcrossPageBoundaries(4096, &segments);
-  ASSERT_EQ(3, segments.size());
-
-  Segment s1(&name, start_addr, mid_0_addr);
-  Segment s2(&name, mid_0_addr, mid_1_addr);
-  Segment s3(&name, mid_1_addr, end_addr);
-
-  ASSERT_EQ(s1, segments[0]);
-  ASSERT_EQ(s2, segments[1]);
-  ASSERT_EQ(s3, segments[2]);
-}
-
-}  // namespace memory_tracker
-}  // namespace browser
-}  // namespace cobalt
diff --git a/cobalt/browser/metrics/cobalt_metrics_log_uploader.cc b/cobalt/browser/metrics/cobalt_metrics_log_uploader.cc
index 2076f6b..49f1c81 100644
--- a/cobalt/browser/metrics/cobalt_metrics_log_uploader.cc
+++ b/cobalt/browser/metrics/cobalt_metrics_log_uploader.cc
@@ -14,18 +14,32 @@
 
 #include "cobalt/browser/metrics/cobalt_metrics_log_uploader.h"
 
+#include "base/base64url.h"
 #include "base/logging.h"
 #include "cobalt/browser/metrics/cobalt_metrics_uploader_callback.h"
 #include "cobalt/h5vcc/h5vcc_metric_type.h"
 #include "components/metrics/log_decoder.h"
 #include "components/metrics/metrics_log_uploader.h"
 #include "third_party/metrics_proto/chrome_user_metrics_extension.pb.h"
+#include "third_party/metrics_proto/cobalt_uma_event.pb.h"
 #include "third_party/metrics_proto/reporting_info.pb.h"
 
 namespace cobalt {
 namespace browser {
 namespace metrics {
 
+// Helper method to create a trimmed down and sanitized version of the UMA
+// proto for Cobalt
+void PopulateCobaltUmaEvent(
+    const ::metrics::ChromeUserMetricsExtension& uma_proto,
+    const ::metrics::ReportingInfo reporting_info_proto,
+    CobaltUMAEvent& cobalt_proto) {
+  cobalt_proto.mutable_histogram_event()->CopyFrom(uma_proto.histogram_event());
+  cobalt_proto.mutable_user_action_event()->CopyFrom(
+      uma_proto.user_action_event());
+  cobalt_proto.mutable_reporting_info()->CopyFrom(reporting_info_proto);
+}
+
 CobaltMetricsLogUploader::CobaltMetricsLogUploader(
     ::metrics::MetricsLogUploader::MetricServiceType service_type,
     const ::metrics::MetricsLogUploader::UploadCallback& on_upload_complete)
@@ -35,12 +49,26 @@
     const std::string& compressed_log_data, const std::string& log_hash,
     const ::metrics::ReportingInfo& reporting_info) {
   if (service_type_ == ::metrics::MetricsLogUploader::UMA) {
-    std::string uncompressed_serialized_proto;
-    ::metrics::DecodeLogData(compressed_log_data,
-                             &uncompressed_serialized_proto);
     if (upload_handler_ != nullptr) {
-      upload_handler_->Run(h5vcc::H5vccMetricType::kH5vccMetricTypeUma,
-                           uncompressed_serialized_proto);
+      std::string uncompressed_serialized_proto;
+      ::metrics::DecodeLogData(compressed_log_data,
+                               &uncompressed_serialized_proto);
+
+      ::metrics::ChromeUserMetricsExtension uma_event;
+      uma_event.ParseFromString(uncompressed_serialized_proto);
+      CobaltUMAEvent cobalt_uma_event;
+      PopulateCobaltUmaEvent(uma_event, reporting_info, cobalt_uma_event);
+      LOG(INFO) << "Publishing Cobalt metrics upload event. Type: "
+                << h5vcc::H5vccMetricType::kH5vccMetricTypeCobaltUma;
+      std::string base64_encoded_proto;
+      // Base64 encode the payload as web client's can't consume it without
+      // corrupting the data (see b/293431381). Also, use a URL/web safe
+      // encoding so it can be safely included in any web network request.
+      base::Base64UrlEncode(cobalt_uma_event.SerializeAsString(),
+                            base::Base64UrlEncodePolicy::INCLUDE_PADDING,
+                            &base64_encoded_proto);
+      upload_handler_->Run(h5vcc::H5vccMetricType::kH5vccMetricTypeCobaltUma,
+                           base64_encoded_proto);
     }
   }
 
diff --git a/cobalt/browser/metrics/cobalt_metrics_log_uploader_test.cc b/cobalt/browser/metrics/cobalt_metrics_log_uploader_test.cc
index 21f2770..78e7d18 100644
--- a/cobalt/browser/metrics/cobalt_metrics_log_uploader_test.cc
+++ b/cobalt/browser/metrics/cobalt_metrics_log_uploader_test.cc
@@ -16,12 +16,14 @@
 
 #include <memory>
 
+#include "base/base64url.h"
 #include "base/test/mock_callback.h"
 #include "cobalt/browser/metrics/cobalt_metrics_uploader_callback.h"
 #include "cobalt/h5vcc/h5vcc_metrics.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 #include "third_party/metrics_proto/chrome_user_metrics_extension.pb.h"
+#include "third_party/metrics_proto/cobalt_uma_event.pb.h"
 #include "third_party/metrics_proto/reporting_info.pb.h"
 #include "third_party/zlib/google/compression_utils.h"
 
@@ -64,14 +66,30 @@
   const auto cb = mock_upload_handler.Get();
   uploader_->SetOnUploadHandler(&cb);
   ::metrics::ReportingInfo dummy_reporting_info;
+  dummy_reporting_info.set_attempt_count(33);
   ::metrics::ChromeUserMetricsExtension uma_log;
   uma_log.set_session_id(1234);
   uma_log.set_client_id(1234);
+  auto histogram_event = uma_log.add_histogram_event();
+  histogram_event->set_name_hash(1234);
+  auto user_event = uma_log.add_user_action_event();
+  user_event->set_name_hash(42);
+
+  CobaltUMAEvent cobalt_event;
+  cobalt_event.mutable_histogram_event()->CopyFrom(uma_log.histogram_event());
+  cobalt_event.mutable_user_action_event()->CopyFrom(
+      uma_log.user_action_event());
+  cobalt_event.mutable_reporting_info()->CopyFrom(dummy_reporting_info);
+
   std::string compressed_message;
   compression::GzipCompress(uma_log.SerializeAsString(), &compressed_message);
+  std::string base64_encoded_proto;
+  base::Base64UrlEncode(cobalt_event.SerializeAsString(),
+                        base::Base64UrlEncodePolicy::INCLUDE_PADDING,
+                        &base64_encoded_proto);
   EXPECT_CALL(mock_upload_handler,
-              Run(Eq(h5vcc::H5vccMetricType::kH5vccMetricTypeUma),
-                  StrEq(uma_log.SerializeAsString())))
+              Run(Eq(h5vcc::H5vccMetricType::kH5vccMetricTypeCobaltUma),
+                  StrEq(base64_encoded_proto)))
       .Times(1);
   uploader_->UploadLog(compressed_message, "fake_hash", dummy_reporting_info);
   ASSERT_EQ(callback_count_, 1);
@@ -79,11 +97,20 @@
   ::metrics::ChromeUserMetricsExtension uma_log2;
   uma_log2.set_session_id(456);
   uma_log2.set_client_id(567);
+  CobaltUMAEvent cobalt_event2;
+  cobalt_event2.mutable_histogram_event()->CopyFrom(uma_log2.histogram_event());
+  cobalt_event2.mutable_user_action_event()->CopyFrom(
+      uma_log2.user_action_event());
+  cobalt_event2.mutable_reporting_info()->CopyFrom(dummy_reporting_info);
   std::string compressed_message2;
   compression::GzipCompress(uma_log2.SerializeAsString(), &compressed_message2);
+  std::string base64_encoded_proto2;
+  base::Base64UrlEncode(cobalt_event2.SerializeAsString(),
+                        base::Base64UrlEncodePolicy::INCLUDE_PADDING,
+                        &base64_encoded_proto2);
   EXPECT_CALL(mock_upload_handler,
-              Run(Eq(h5vcc::H5vccMetricType::kH5vccMetricTypeUma),
-                  StrEq(uma_log2.SerializeAsString())))
+              Run(Eq(h5vcc::H5vccMetricType::kH5vccMetricTypeCobaltUma),
+                  StrEq(base64_encoded_proto2)))
       .Times(1);
   uploader_->UploadLog(compressed_message2, "fake_hash", dummy_reporting_info);
   ASSERT_EQ(callback_count_, 2);
diff --git a/cobalt/browser/metrics/cobalt_metrics_services_manager.cc b/cobalt/browser/metrics/cobalt_metrics_services_manager.cc
index 3874d08..acb5d8b 100644
--- a/cobalt/browser/metrics/cobalt_metrics_services_manager.cc
+++ b/cobalt/browser/metrics/cobalt_metrics_services_manager.cc
@@ -16,6 +16,7 @@
 
 #include <memory>
 
+#include "base/logging.h"
 #include "cobalt/browser/metrics/cobalt_metrics_service_client.h"
 #include "cobalt/browser/metrics/cobalt_metrics_services_manager_client.h"
 #include "components/metrics_services_manager/metrics_services_manager.h"
@@ -56,6 +57,7 @@
       static_cast<CobaltMetricsServiceClient*>(GetMetricsServiceClient());
   DCHECK(client);
   client->SetOnUploadHandler(uploader_callback);
+  LOG(INFO) << "New Cobalt Telemetry metric upload handler bound.";
 }
 
 void CobaltMetricsServicesManager::ToggleMetricsEnabled(bool is_enabled) {
@@ -73,6 +75,7 @@
   client->GetEnabledStateProvider()->SetConsentGiven(is_enabled);
   client->GetEnabledStateProvider()->SetReportingEnabled(is_enabled);
   UpdateUploadPermissions(is_enabled);
+  LOG(INFO) << "Cobalt Telemetry enabled state toggled to: " << is_enabled;
 }
 
 void CobaltMetricsServicesManager::SetUploadInterval(
@@ -90,6 +93,8 @@
           GetMetricsServiceClient());
   DCHECK(client);
   client->SetUploadInterval(interval_seconds);
+  LOG(INFO) << "Cobalt Telemetry metric upload interval changed to: "
+            << interval_seconds;
 }
 
 
diff --git a/cobalt/browser/metrics/cobalt_metrics_services_manager_client.cc b/cobalt/browser/metrics/cobalt_metrics_services_manager_client.cc
index 224490c..36002ca 100644
--- a/cobalt/browser/metrics/cobalt_metrics_services_manager_client.cc
+++ b/cobalt/browser/metrics/cobalt_metrics_services_manager_client.cc
@@ -17,12 +17,14 @@
 #include <memory>
 
 #include "base/callback_forward.h"
+#include "base/command_line.h"
 #include "base/metrics/field_trial.h"
 #include "cobalt/browser/metrics/cobalt_metrics_service_client.h"
 #include "components/metrics/client_info.h"
 #include "components/metrics/metrics_service.h"
 #include "components/metrics/metrics_service_client.h"
 #include "components/metrics/metrics_state_manager.h"
+#include "components/metrics/metrics_switches.h"
 #include "components/metrics_services_manager/metrics_services_manager_client.h"
 #include "components/prefs/in_memory_pref_store.h"
 #include "components/prefs/pref_registry_simple.h"
@@ -57,13 +59,14 @@
   return enabled_state_provider_->IsConsentGiven();
 }
 
-// If the user has forced metrics collection on via the override flag.
+// If the user has forced metrics collection on via the override flag. This
+// switch being set trumps/overrides any other mechanism to enable telemetry
+// (e.g., through the h5vcc_metrics API).
 bool CobaltMetricsServicesManagerClient::IsMetricsReportingForceEnabled() {
-  // TODO(b/286091096): Add support for metrics logging forcing.
-  return false;
+  return base::CommandLine::ForCurrentProcess()->HasSwitch(
+      ::metrics::switches::kForceEnableMetricsReporting);
 }
 
-
 void StoreMetricsClientInfo(const ::metrics::ClientInfo& client_info) {
   // ClientInfo is a way to get data into the metrics component, but goes unused
   // in Cobalt. Do nothing with it for now.
diff --git a/cobalt/browser/metrics/cobalt_metrics_services_manager_client_test.cc b/cobalt/browser/metrics/cobalt_metrics_services_manager_client_test.cc
index c6bf848..fd1fcd2 100644
--- a/cobalt/browser/metrics/cobalt_metrics_services_manager_client_test.cc
+++ b/cobalt/browser/metrics/cobalt_metrics_services_manager_client_test.cc
@@ -16,10 +16,12 @@
 
 #include <memory>
 
+#include "base/command_line.h"
 #include "base/memory/scoped_refptr.h"
 #include "base/metrics/user_metrics.h"
 #include "base/test/test_simple_task_runner.h"
 #include "components/metrics/metrics_service_client.h"
+#include "components/metrics/metrics_switches.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
@@ -58,12 +60,19 @@
   EXPECT_FALSE(client_->IsMetricsReportingEnabled());
 }
 
-TEST_F(CobaltMetricsServicesManagerClientTest, ForceEnabledStateIsCorrect) {
-  // TODO(b/286091096): Add tests for force enabling on the command-line.
+TEST_F(CobaltMetricsServicesManagerClientTest,
+       ForceEnabledStateIsCorrectWithoutFlag) {
   EXPECT_FALSE(client_->IsMetricsReportingForceEnabled());
 }
 
 TEST_F(CobaltMetricsServicesManagerClientTest,
+       ForceEnabledStateIsCorrectWithFlag) {
+  base::CommandLine::ForCurrentProcess()->AppendSwitch(
+      ::metrics::switches::kForceEnableMetricsReporting);
+  EXPECT_TRUE(client_->IsMetricsReportingForceEnabled());
+}
+
+TEST_F(CobaltMetricsServicesManagerClientTest,
        MetricsServiceClientAndStateManagerAreConstructedProperly) {
   auto metrics_client = client_->CreateMetricsServiceClient();
   ASSERT_NE(metrics_client, nullptr);
diff --git a/cobalt/browser/on_screen_keyboard_starboard_bridge.cc b/cobalt/browser/on_screen_keyboard_starboard_bridge.cc
index ccd818e..f534caa 100644
--- a/cobalt/browser/on_screen_keyboard_starboard_bridge.cc
+++ b/cobalt/browser/on_screen_keyboard_starboard_bridge.cc
@@ -18,7 +18,6 @@
 
 #include "base/bind.h"
 #include "base/callback.h"
-
 #include "starboard/event.h"
 
 namespace cobalt {
@@ -50,7 +49,7 @@
 
 void OnScreenKeyboardStarboardBridge::UpdateSuggestions(
     const script::Sequence<std::string>& suggestions, int ticket) {
-  std::unique_ptr<const char* []> suggestions_data(
+  std::unique_ptr<const char*[]> suggestions_data(
       new const char*[suggestions.size()]);
   for (script::Sequence<std::string>::size_type i = 0; i < suggestions.size();
        ++i) {
diff --git a/cobalt/browser/screen_shot_writer.cc b/cobalt/browser/screen_shot_writer.cc
index 8b27ca4..5e639c3 100644
--- a/cobalt/browser/screen_shot_writer.cc
+++ b/cobalt/browser/screen_shot_writer.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/browser/screen_shot_writer.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/basictypes.h"
 #include "base/bind.h"
 #include "base/files/file_util.h"
diff --git a/cobalt/browser/service_worker_registry.cc b/cobalt/browser/service_worker_registry.cc
index f5dd468..bbfdf0f 100644
--- a/cobalt/browser/service_worker_registry.cc
+++ b/cobalt/browser/service_worker_registry.cc
@@ -22,6 +22,7 @@
 #include "base/threading/thread.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/network/network_module.h"
+#include "cobalt/watchdog/watchdog.h"
 
 namespace cobalt {
 namespace browser {
@@ -29,6 +30,18 @@
 namespace {
 // Signals the given WaitableEvent.
 void SignalWaitableEvent(base::WaitableEvent* event) { event->Signal(); }
+
+// The watchdog client name used to represent service worker registry thread.
+const char kWatchdogName[] = "service worker registry";
+// The watchdog time interval in microseconds allowed between pings before
+// triggering violations.
+const int64_t kWatchdogTimeInterval = 15000000;
+// The watchdog time wait in microseconds to initially wait before triggering
+// violations.
+const int64_t kWatchdogTimeWait = 15000000;
+// The watchdog time interval in milliseconds between pings.
+const int64_t kWatchdogTimePing = 5000;
+
 }  // namespace
 
 void ServiceWorkerRegistry::WillDestroyCurrentMessageLoop() {
@@ -43,6 +56,21 @@
   if (!thread_.Start()) return;
   DCHECK(message_loop());
 
+  watchdog::Watchdog* watchdog = watchdog::Watchdog::GetInstance();
+
+  // Registers service worker thread as a watchdog client.
+  if (watchdog) {
+    watchdog_registered_ = true;
+    watchdog->Register(kWatchdogName, kWatchdogName,
+                       base::kApplicationStateStarted, kWatchdogTimeInterval,
+                       kWatchdogTimeWait, watchdog::PING);
+    message_loop()->task_runner()->PostDelayedTask(
+        FROM_HERE,
+        base::Bind(&ServiceWorkerRegistry::PingWatchdog,
+                   base::Unretained(this)),
+        base::TimeDelta::FromMilliseconds(kWatchdogTimePing));
+  }
+
   message_loop()->task_runner()->PostTask(
       FROM_HERE,
       base::Bind(&ServiceWorkerRegistry::Initialize, base::Unretained(this),
@@ -69,6 +97,13 @@
   DCHECK(message_loop());
   DCHECK(thread_.IsRunning());
 
+  // Unregisters service worker thread as a watchdog client.
+  watchdog::Watchdog* watchdog = watchdog::Watchdog::GetInstance();
+  if (watchdog) {
+    watchdog_registered_ = false;
+    watchdog->Unregister(kWatchdogName);
+  }
+
   // Ensure that the destruction observer got added before stopping the thread.
   // Stop the thread. This will cause the destruction observer to be notified.
   destruction_observer_added_.Wait();
@@ -77,6 +112,21 @@
   DCHECK(!service_worker_context_);
 }
 
+// Ping watchdog every 5 second, otherwise a violation will be triggered.
+void ServiceWorkerRegistry::PingWatchdog() {
+  DCHECK_EQ(base::MessageLoop::current(), message_loop());
+
+  watchdog::Watchdog* watchdog = watchdog::Watchdog::GetInstance();
+  // If watchdog is already unregistered or shut down, stop ping watchdog.
+  if (!watchdog_registered_ || !watchdog) return;
+
+  watchdog->Ping(kWatchdogName);
+  message_loop()->task_runner()->PostDelayedTask(
+      FROM_HERE,
+      base::Bind(&ServiceWorkerRegistry::PingWatchdog, base::Unretained(this)),
+      base::TimeDelta::FromMilliseconds(kWatchdogTimePing));
+}
+
 void ServiceWorkerRegistry::EnsureServiceWorkerStarted(
     const url::Origin& storage_key, const GURL& client_url,
     base::WaitableEvent* done_event) {
diff --git a/cobalt/browser/service_worker_registry.h b/cobalt/browser/service_worker_registry.h
index 5b57118..4880d6a 100644
--- a/cobalt/browser/service_worker_registry.h
+++ b/cobalt/browser/service_worker_registry.h
@@ -21,6 +21,7 @@
 #include "base/synchronization/waitable_event.h"
 #include "base/threading/thread.h"
 #include "cobalt/network/network_module.h"
+#include "cobalt/watchdog/watchdog.h"
 #include "cobalt/web/web_settings.h"
 #include "cobalt/worker/service_worker_context.h"
 
@@ -57,6 +58,10 @@
                   network::NetworkModule* network_module,
                   web::UserAgentPlatformInfo* platform_info, const GURL& url);
 
+  void PingWatchdog();
+
+  bool watchdog_registered_ = false;
+
   // The thread created and owned by the Service Worker Registry.
   // All registry mutations occur on this thread. The thread has to outlive all
   // web Agents that use service workers.,
diff --git a/cobalt/browser/splash_screen_cache.cc b/cobalt/browser/splash_screen_cache.cc
index a139f6f..3e27fdf 100644
--- a/cobalt/browser/splash_screen_cache.cc
+++ b/cobalt/browser/splash_screen_cache.cc
@@ -19,12 +19,13 @@
 #include <vector>
 
 #include "base/base64.h"
+#include "base/files/file_path.h"
+#include "base/files/file_util.h"
 #include "base/hash.h"
 #include "base/optional.h"
 #include "base/strings/string_util.h"
 #include "base/synchronization/lock.h"
 #include "cobalt/base/get_application_key.h"
-#include "starboard/common/file.h"
 #include "starboard/common/string.h"
 #include "starboard/configuration_constants.h"
 #include "starboard/directory.h"
@@ -85,13 +86,8 @@
   if (!CreateDirsForKey(key.value())) {
     return false;
   }
-  std::string full_path =
-      std::string(path.data()) + kSbFileSepString + key.value();
-  starboard::ScopedFile cache_file(
-      full_path.c_str(), kSbFileCreateAlways | kSbFileWrite, NULL, NULL);
-
-  return cache_file.WriteAll(content.c_str(),
-                             static_cast<int>(content.size())) > 0;
+  base::FilePath file_path = base::FilePath(path.data()).Append(key.value());
+  return base::WriteFile(file_path, content.c_str(), content.size()) > 0;
 }
 
 bool SplashScreenCache::IsSplashScreenCached() const {
@@ -120,18 +116,18 @@
     result->reset();
     return 0;
   }
-  std::string full_path = std::string(path.data()) + kSbFileSepString + key;
-  starboard::ScopedFile cache_file(full_path.c_str(),
-                                   kSbFileOpenOnly | kSbFileRead, NULL, NULL);
-  SbFileInfo info;
-  bool success = SbFileGetPathInfo(full_path.c_str(), &info);
-  if (!success) {
+  base::FilePath file_path = base::FilePath(path.data()).Append(key);
+  int64_t file_size;
+  if (!base::GetFileSize(file_path, &file_size)) {
     result->reset();
     return 0;
   }
-  const int kFileSize = static_cast<int>(info.size);
-  result->reset(new char[kFileSize]);
-  int result_size = cache_file.ReadAll(result->get(), kFileSize);
+  result->reset(new char[file_size]);
+  int result_size = base::ReadFile(file_path, result->get(), file_size);
+  if (result_size <= 0) {
+    result->reset();
+    return 0;
+  }
   last_page_hash_ = base::Hash(result->get(), result_size);
   return result_size;
 }
diff --git a/cobalt/browser/switches.cc b/cobalt/browser/switches.cc
index e455eeb..70bb756 100644
--- a/cobalt/browser/switches.cc
+++ b/cobalt/browser/switches.cc
@@ -36,6 +36,9 @@
     "IPv4), and to listen to LOOPBACK use \"::1\" (\"127.0.0.1\" for IPv4)";
 
 #if defined(ENABLE_DEBUGGER)
+const char kDisableWebDebugger[] = "disable_web_debugger";
+const char kDisableWebDebuggerHelp[] = "Disable support for the web debugger";
+
 const char kRemoteDebuggingPort[] = "remote_debugging_port";
 const char kRemoteDebuggingPortHelp[] =
     "Remote web debugger is served from the specified port. If 0, then the "
@@ -121,11 +124,6 @@
     "If this flag is set, input will be continuously generated randomly "
     "instead of taken from an external input device (like a controller).";
 
-const char kMemoryTracker[] = "memory_tracker";
-const char kMemoryTrackerHelp[] =
-    "Enables memory tracking by installing the memory tracker on startup. Run "
-    "--memory_tracker=help for more info.";
-
 const char kMinCompatibilityVersion[] = "min_compatibility_version";
 const char kMinCompatibilityVersionHelp[] =
     "The minimum version of Cobalt that will be checked during compatibility "
@@ -444,8 +442,9 @@
     {kDebugConsoleMode, kDebugConsoleModeHelp},
         {kDevServersListenIp, kDevServersListenIpHelp},
 #if defined(ENABLE_DEBUGGER)
-        {kWaitForWebDebugger, kWaitForWebDebuggerHelp},
+        {kDisableWebDebugger, kDisableWebDebuggerHelp},
         {kRemoteDebuggingPort, kRemoteDebuggingPortHelp},
+        {kWaitForWebDebugger, kWaitForWebDebuggerHelp},
 #endif  // ENABLE_DEBUGGER
         {kDisableImageAnimations, kDisableImageAnimationsHelp},
         {kForceDeterministicRendering, kForceDeterministicRenderingHelp},
@@ -459,7 +458,7 @@
         {kExtraWebFileDir, kExtraWebFileDirHelp},
         {kFakeMicrophone, kFakeMicrophoneHelp},
         {kIgnoreCertificateErrors, kIgnoreCertificateErrorsHelp},
-        {kInputFuzzer, kInputFuzzerHelp}, {kMemoryTracker, kMemoryTrackerHelp},
+        {kInputFuzzer, kInputFuzzerHelp},
         {kMinCompatibilityVersion, kMinCompatibilityVersionHelp},
         {kNullSavegame, kNullSavegameHelp}, {kProd, kProdHelp},
         {kRequireCSP, kRequireCSPHelp},
diff --git a/cobalt/browser/switches.h b/cobalt/browser/switches.h
index c1401d7..8cef3d8 100644
--- a/cobalt/browser/switches.h
+++ b/cobalt/browser/switches.h
@@ -30,6 +30,8 @@
 extern const char kDevServersListenIpHelp[];
 
 #if defined(ENABLE_DEBUGGER)
+extern const char kDisableWebDebugger[];
+extern const char kDisableWebDebuggerHelp[];
 extern const char kRemoteDebuggingPort[];
 extern const char kRemoteDebuggingPortHelp[];
 extern const char kWaitForWebDebugger[];
@@ -62,8 +64,6 @@
 extern const char kIgnoreCertificateErrorsHelp[];
 extern const char kInputFuzzer[];
 extern const char kInputFuzzerHelp[];
-extern const char kMemoryTracker[];
-extern const char kMemoryTrackerHelp[];
 extern const char kMinCompatibilityVersion[];
 extern const char kMinCompatibilityVersionHelp[];
 extern const char kNullSavegame[];
diff --git a/cobalt/browser/system_platform_error_handler.cc b/cobalt/browser/system_platform_error_handler.cc
index b16feca..71e03d3 100644
--- a/cobalt/browser/system_platform_error_handler.cc
+++ b/cobalt/browser/system_platform_error_handler.cc
@@ -23,7 +23,7 @@
     const SystemPlatformErrorOptions& options) {
   DCHECK(!options.callback.is_null());
 
-  CallbackData* callback_data = new CallbackData{ &mutex_, options.callback };
+  CallbackData* callback_data = new CallbackData{&mutex_, options.callback};
 
   if (!SbSystemRaisePlatformError(
           options.error_type,
diff --git a/cobalt/browser/web_module.cc b/cobalt/browser/web_module.cc
index 33ca0be..c955f83 100644
--- a/cobalt/browser/web_module.cc
+++ b/cobalt/browser/web_module.cc
@@ -142,8 +142,7 @@
 
 #if defined(ENABLE_DEBUGGER)
   debug::backend::DebugDispatcher* debug_dispatcher() {
-    DCHECK(debug_module_);
-    return debug_module_->debug_dispatcher();
+    return debug_module_ ? debug_module_->debug_dispatcher() : nullptr;
   }
 #endif  // ENABLE_DEBUGGER
 
@@ -229,7 +228,13 @@
 
   void FreezeDebugger(
       std::unique_ptr<debug::backend::DebuggerState>* debugger_state) {
-    if (debugger_state) *debugger_state = debug_module_->Freeze();
+    if (debugger_state) {
+      if (debug_module_) {
+        *debugger_state = debug_module_->Freeze();
+      } else {
+        debugger_state->reset();
+      }
+    }
   }
 #endif  // defined(ENABLE_DEBUGGER)
 
@@ -537,6 +542,7 @@
       data.options.loader_thread_priority));
 
   animated_image_tracker_.reset(new loader::image::AnimatedImageTracker(
+      web_context_->name().c_str(),
       data.options.animated_image_decode_thread_priority));
 
   DCHECK_LE(0, data.options.image_cache_capacity);
@@ -612,7 +618,7 @@
   web_context_->global_environment()->AddRoot(media_source_registry_.get());
 
 #if defined(ENABLE_DEBUGGER)
-  if (data.options.wait_for_web_debugger) {
+  if (data.options.enable_debugger && data.options.wait_for_web_debugger) {
     // Post a task that blocks the message loop and waits for the web debugger.
     // This must be posted before the the window's task to load the document.
     waiting_for_web_debugger_->store(true);
@@ -717,13 +723,15 @@
   }
 
 #if defined(ENABLE_DEBUGGER)
-  debug_overlay_.reset(
-      new debug::backend::RenderOverlay(render_tree_produced_callback_));
+  if (data.options.enable_debugger) {
+    debug_overlay_.reset(
+        new debug::backend::RenderOverlay(render_tree_produced_callback_));
 
-  debug_module_.reset(new debug::backend::DebugModule(
-      &debugger_hooks_, web_context_->global_environment(),
-      debug_overlay_.get(), resource_provider_, window_,
-      data.options.debugger_state));
+    debug_module_.reset(new debug::backend::DebugModule(
+        &debugger_hooks_, web_context_->global_environment(),
+        debug_overlay_.get(), resource_provider_, window_,
+        data.options.debugger_state));
+  }
 #endif  // ENABLE_DEBUGGER
 
   report_unload_timing_info_callback_ =
@@ -954,7 +962,11 @@
                  last_render_tree_produced_time_));
 
 #if defined(ENABLE_DEBUGGER)
-  debug_overlay_->OnRenderTreeProduced(layout_results_with_callback);
+  if (debug_overlay_) {
+    debug_overlay_->OnRenderTreeProduced(layout_results_with_callback);
+  } else {
+    render_tree_produced_callback_.Run(layout_results_with_callback);
+  }
 #else   // ENABLE_DEBUGGER
   render_tree_produced_callback_.Run(layout_results_with_callback);
 #endif  // ENABLE_DEBUGGER
@@ -975,6 +987,7 @@
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
   web_module_stat_tracker_->OnRenderTreeRasterized(produced_time,
                                                    rasterized_time);
+  animated_image_tracker_->OnRenderTreeRasterized();
   if (produced_time >= last_render_tree_produced_time_) {
     is_render_tree_rasterization_pending_ = false;
   }
@@ -1034,12 +1047,13 @@
 #if defined(ENABLE_DEBUGGER)
 void WebModule::Impl::WaitForWebDebugger() {
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
-  DCHECK(debug_module_);
-  LOG(WARNING) << "\n-------------------------------------"
-                  "\n Waiting for web debugger to connect "
-                  "\n-------------------------------------";
-  // This blocks until the web debugger connects.
-  debug_module_->debug_dispatcher()->SetPaused(true);
+  if (debug_module_) {
+    LOG(WARNING) << "\n-------------------------------------"
+                    "\n Waiting for web debugger to connect "
+                    "\n-------------------------------------";
+    // This blocks until the web debugger connects.
+    debug_module_->debug_dispatcher()->SetPaused(true);
+  }
   waiting_for_web_debugger_->store(false);
 }
 #endif  // defined(ENABLE_DEBUGGER)
@@ -1130,7 +1144,7 @@
 
 #if defined(ENABLE_DEBUGGER)
   // The debug overlay may be holding onto a render tree, clear that out.
-  debug_overlay_->ClearInput();
+  if (debug_overlay_) debug_overlay_->ClearInput();
 #endif
 
   // Force garbage collection in |javascript_engine|.
diff --git a/cobalt/browser/web_module.h b/cobalt/browser/web_module.h
index 8c28dce..28fa714 100644
--- a/cobalt/browser/web_module.h
+++ b/cobalt/browser/web_module.h
@@ -229,6 +229,8 @@
     bool limit_performance_timer_resolution = true;
 
 #if defined(ENABLE_DEBUGGER)
+    // Whether a debugger should be started for this WebModule.
+    bool enable_debugger = false;
     // Whether the debugger should block until remote devtools connects.
     bool wait_for_web_debugger = false;
 
diff --git a/cobalt/build/build_info.py b/cobalt/build/build_info.py
index 2edcc52..aed2646 100755
--- a/cobalt/build/build_info.py
+++ b/cobalt/build/build_info.py
@@ -26,6 +26,7 @@
 
 _BUILD_ID_PATTERN = '^BUILD_NUMBER=([1-9][0-9]{6,})$'
 _GIT_REV_PATTERN = '^GitOrigin-RevId: ([0-9a-f]{40})$'
+_COBALT_VERSION_PATTERN = '^#define COBALT_VERSION "(.*)"$'
 
 
 def get_build_id_and_git_rev_from_commits(cwd):
@@ -77,6 +78,16 @@
   return _get_last_commit_with_format(r'%s', cwd=cwd)
 
 
+def _get_cobalt_version():
+  version_header_path = os.path.join(os.path.dirname(FILE_DIR), 'version.h')
+  contents = ''
+  with open(version_header_path, 'r', encoding='utf-8') as f:
+    contents = f.read()
+  compiled_cobalt_version_pattern = re.compile(
+      _COBALT_VERSION_PATTERN, flags=re.MULTILINE)
+  return compiled_cobalt_version_pattern.search(contents).group(1)
+
+
 def main(output_path, cwd=FILE_DIR):
   """Writes a Cobalt build_info json file."""
   build_rev = _get_hash_from_last_commit(cwd=cwd)
@@ -84,6 +95,7 @@
   if build_id is None:
     build_id = get_build_id_from_commit_count(cwd=cwd)
     git_rev = build_rev
+  cobalt_version = _get_cobalt_version()
   build_time = datetime.datetime.now().ctime()
   author = _get_author_from_last_commit(cwd=cwd)
   commit = _get_subject_from_last_commit(cwd=cwd)
@@ -92,6 +104,7 @@
       'build_id': build_id,
       'build_rev': build_rev,
       'git_rev': git_rev,
+      'cobalt_version': cobalt_version,
       'build_time': build_time,
       'author': author,
       'commit': commit
@@ -108,6 +121,7 @@
 Build ID: {build_id}
 Build Rev: {build_rev}
 Git Rev: {git_rev}
+Cobalt Version: {cobalt_version}
 Build Time: {build_time}
 Author: {author}
 Commit: {commit}
diff --git a/cobalt/build/cobalt_configuration.py b/cobalt/build/cobalt_configuration.py
index 91b90a6..e1320ab 100644
--- a/cobalt/build/cobalt_configuration.py
+++ b/cobalt/build/cobalt_configuration.py
@@ -105,6 +105,7 @@
     ]
     return filters
 
+  # TODO(b/292007482): Replace static list with gn query.
   def GetTestTargets(self):
     return [
         'audio_test',
@@ -112,38 +113,48 @@
         'base_unittests',
         'bindings_test',
         'browser_test',
+        'components_metrics_tests',
+        'crypto_impl_test',
         'crypto_unittests',
         'csp_test',
-        'css_parser_test',
         'cssom_test',
+        'css_parser_test',
+        'cwrappers_test',
         'dom_parser_test',
         'dom_test',
         'extension_test',
+        # TODO(b/292127297): This target is not built for all platforms.
+        # 'ffmpeg_demuxer_test',
         'graphics_system_test',
         'layout_test',
         'layout_tests',
-        'cwrappers_test',
         'loader_test',
         'math_test',
         'media_capture_test',
         'media_session_test',
         'media_stream_test',
+        # TODO(b/292030213): Crashes on evergreen
+        # 'media_test',
         'memory_store_test',
         'metrics_test',
         'nb_test',
         'net_unittests',
         'network_test',
+        'overlay_info_test',
         'persistent_settings_test',
+        'png_utils_test',
         'poem_unittests',
-        'render_tree_test',
         'renderer_test',
+        'render_tree_test',
         'scroll_engine_tests',
+        'speech_test',
         'storage_test',
         'text_encoding_test',
-        'web_test',
+        'watchdog_test',
         'web_animations_test',
         'webdriver_test',
         'websocket_test',
+        'web_test',
         'worker_test',
         'xhr_test',
         'zip_unittests',
diff --git a/cobalt/build/gn.py b/cobalt/build/gn.py
index 7ff3bc4..e8c4472 100755
--- a/cobalt/build/gn.py
+++ b/cobalt/build/gn.py
@@ -68,7 +68,7 @@
   parser.add_argument(
       '-p',
       '--platform',
-      required=True,
+      default='linux-x64x11',
       choices=list(PLATFORMS),
       help='The platform to build.')
   parser.add_argument(
diff --git a/cobalt/codereview.settings b/cobalt/codereview.settings
deleted file mode 100644
index a4b341a..0000000
--- a/cobalt/codereview.settings
+++ /dev/null
@@ -1,4 +0,0 @@
-# This file is used by gcl to get repository specific information.
-GERRIT_HOST: lbshell-internal-review.googlesource.com
-GERRIT_AUTODETECT_BRANCH: true
-CODE_REVIEW_SERVER: lbshell-internal-review.googlesource.com
diff --git a/cobalt/csp/content_security_policy_test.cc b/cobalt/csp/content_security_policy_test.cc
index 8ef00fd..880ff4e 100644
--- a/cobalt/csp/content_security_policy_test.cc
+++ b/cobalt/csp/content_security_policy_test.cc
@@ -12,9 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/csp/content_security_policy.h"
+
 #include <memory>
 
-#include "cobalt/csp/content_security_policy.h"
 #include "testing/gtest/include/gtest/gtest.h"
 #include "url/gurl.h"
 
diff --git a/cobalt/css_parser/BUILD.gn b/cobalt/css_parser/BUILD.gn
index d6a668c..bff1cfa 100644
--- a/cobalt/css_parser/BUILD.gn
+++ b/cobalt/css_parser/BUILD.gn
@@ -94,7 +94,6 @@
     ":css_grammar",
     "//cobalt/base",
     "//cobalt/cssom",
-    "//nb",
     "//starboard/common",
   ]
 
diff --git a/cobalt/css_parser/border_shorthand_property_parse_structures.cc b/cobalt/css_parser/border_shorthand_property_parse_structures.cc
index cb259db..b18735d 100644
--- a/cobalt/css_parser/border_shorthand_property_parse_structures.cc
+++ b/cobalt/css_parser/border_shorthand_property_parse_structures.cc
@@ -40,7 +40,7 @@
       break;
     }
     case 2: {
-      // If left is mising, it is the same as right; If bottom is missing, it is
+      // If left is missing, it is the same as right; If bottom is missing, it's
       // the same as top.
       border_top = list->value()[0];
       border_right = list->value()[1];
diff --git a/cobalt/css_parser/margin_or_padding_shorthand.cc b/cobalt/css_parser/margin_or_padding_shorthand.cc
index 2067923..5260e2d 100644
--- a/cobalt/css_parser/margin_or_padding_shorthand.cc
+++ b/cobalt/css_parser/margin_or_padding_shorthand.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/css_parser/margin_or_padding_shorthand.h"
 
+#include <memory>
+
 namespace cobalt {
 namespace css_parser {
 
diff --git a/cobalt/css_parser/parser.cc b/cobalt/css_parser/parser.cc
index 49a1e2d..ccc9b42 100644
--- a/cobalt/css_parser/parser.cc
+++ b/cobalt/css_parser/parser.cc
@@ -88,7 +88,6 @@
 #include "cobalt/cssom/unicode_range_value.h"
 #include "cobalt/cssom/universal_selector.h"
 #include "cobalt/cssom/url_value.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace css_parser {
@@ -271,21 +270,18 @@
           supports_map_to_mesh == Parser::kSupportsMapToMeshRectangular) {}
 
 scoped_refptr<cssom::CSSStyleSheet> ParserImpl::ParseStyleSheet() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kStyleSheetEntryPointToken);
   return Parse() ? style_sheet_
                  : base::WrapRefCounted(new cssom::CSSStyleSheet(css_parser_));
 }
 
 scoped_refptr<cssom::CSSRule> ParserImpl::ParseRule() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kRuleEntryPointToken);
   return Parse() ? rule_ : NULL;
 }
 
 scoped_refptr<cssom::CSSDeclaredStyleData>
 ParserImpl::ParseStyleDeclarationList() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kStyleDeclarationListEntryPointToken);
   return Parse() ? style_declaration_data_
                  : base::WrapRefCounted(new cssom::CSSDeclaredStyleData());
@@ -293,7 +289,6 @@
 
 scoped_refptr<cssom::CSSFontFaceDeclarationData>
 ParserImpl::ParseFontFaceDeclarationList() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kFontFaceDeclarationListEntryPointToken);
   return Parse()
              ? font_face_declaration_data_
@@ -312,7 +307,6 @@
 
 scoped_refptr<cssom::PropertyValue> ParserImpl::ParsePropertyValue(
     const std::string& property_name) {
-  TRACK_MEMORY_SCOPE("CSS");
   Token property_name_token;
   bool is_property_name_known =
       scanner_.DetectPropertyNameToken(property_name, &property_name_token);
@@ -335,7 +329,6 @@
 void ParserImpl::ParsePropertyIntoDeclarationData(
     const std::string& property_name,
     cssom::CSSDeclarationData* declaration_data) {
-  TRACK_MEMORY_SCOPE("CSS");
   Token property_name_token;
   bool is_property_name_known =
       scanner_.DetectPropertyNameToken(property_name, &property_name_token);
@@ -364,13 +357,11 @@
 }
 
 scoped_refptr<cssom::MediaList> ParserImpl::ParseMediaList() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kMediaListEntryPointToken);
   return Parse() ? media_list_ : base::WrapRefCounted(new cssom::MediaList());
 }
 
 scoped_refptr<cssom::MediaQuery> ParserImpl::ParseMediaQuery() {
-  TRACK_MEMORY_SCOPE("CSS");
   scanner_.PrependToken(kMediaQueryEntryPointToken);
   return Parse() ? media_query_ : base::WrapRefCounted(new cssom::MediaQuery());
 }
@@ -390,7 +381,6 @@
 }
 
 bool ParserImpl::Parse() {
-  TRACK_MEMORY_SCOPE("CSS");
   // For more information on error codes
   // see http://www.gnu.org/software/bison/manual/html_node/Parser-Function.html
   TRACE_EVENT0("cobalt::css_parser", "ParseImpl::Parse");
diff --git a/cobalt/css_parser/parser_test.cc b/cobalt/css_parser/parser_test.cc
index 3c1d879..d65c464 100644
--- a/cobalt/css_parser/parser_test.cc
+++ b/cobalt/css_parser/parser_test.cc
@@ -1405,7 +1405,9 @@
 // for the expanded properties for values 'inherit' and 'initial'.
 TEST_F(ParserTest, ParsesShorthandPropertyInitialAndInherit) {
   const char* shorthand_property_keywords[] = {
-      "inherit", "initial", nullptr,
+      "inherit",
+      "initial",
+      nullptr,
   };
 
   // Helper class to check if a PropertyValue is a KeywordValue.
diff --git a/cobalt/css_parser/scanner_test.cc b/cobalt/css_parser/scanner_test.cc
index 3bd87ac..e5e9a7d 100644
--- a/cobalt/css_parser/scanner_test.cc
+++ b/cobalt/css_parser/scanner_test.cc
@@ -27,9 +27,9 @@
 // below, this DISABLED test should be enabled.
 
 const char* kNumericLocales[] = {
-  "",       // default locale
-  "C",      // dot radix separator
-  "de_DE",  // comma radix separator
+    "",       // default locale
+    "C",      // dot radix separator
+    "de_DE",  // comma radix separator
 };
 
 class ScannerTest : public ::testing::Test,
@@ -42,14 +42,14 @@
       return;
     }
 
-#if SB_IS(EVERGREEN)
+#if SB_IS(MODULAR)
     // We don't support changing locale for Evergreen so run only
     // if the default/empty local is passed in the param.
     locale_okay_ = (GetParam()[0] == 0);
 #else
     // Save the old locale.
     char* old_locale_cstr = setlocale(LC_NUMERIC, nullptr);
-    EXPECT_TRUE(old_locale_cstr != nullptr) << "Cant' save original locale";
+    EXPECT_TRUE(old_locale_cstr != nullptr) << "Can't save original locale";
     old_locale_ = old_locale_cstr;
 
     // Keep the default locale when the param is empty, and for other param
@@ -60,7 +60,7 @@
   }
 
   virtual void TearDown() {
-#if !SB_IS(EVERGREEN)
+#if !SB_IS(MODULAR)
     if (!old_locale_.empty()) setlocale(LC_NUMERIC, old_locale_.c_str());
 #endif
   }
@@ -764,10 +764,10 @@
   const char* text;
   int token;
 } known_dash_functions[] = {
-  { "-cobalt-mtm", kCobaltMtmFunctionToken },
-  { "-cobalt-ui-nav-focus-transform", kCobaltUiNavFocusTransformFunctionToken },
-  { "-cobalt-ui-nav-spotlight-transform",
-    kCobaltUiNavSpotlightTransformFunctionToken },
+    {"-cobalt-mtm", kCobaltMtmFunctionToken},
+    {"-cobalt-ui-nav-focus-transform", kCobaltUiNavFocusTransformFunctionToken},
+    {"-cobalt-ui-nav-spotlight-transform",
+     kCobaltUiNavSpotlightTransformFunctionToken},
 };
 }  // namespace
 
@@ -778,10 +778,11 @@
 
     Scanner scanner(text.c_str(), &string_pool_);
     ASSERT_EQ(known_dash_functions[i].token,
-              yylex(&token_value_, &token_location_, &scanner)) << text;
+              yylex(&token_value_, &token_location_, &scanner))
+        << text;
     ASSERT_EQ(')', yylex(&token_value_, &token_location_, &scanner)) << text;
-    ASSERT_EQ(kEndOfFileToken,
-              yylex(&token_value_, &token_location_, &scanner)) << text;
+    ASSERT_EQ(kEndOfFileToken, yylex(&token_value_, &token_location_, &scanner))
+        << text;
   }
 }
 
@@ -792,10 +793,11 @@
 
     Scanner scanner(text.c_str(), &string_pool_);
     ASSERT_EQ(known_dash_functions[i].token,
-              yylex(&token_value_, &token_location_, &scanner)) << text;
+              yylex(&token_value_, &token_location_, &scanner))
+        << text;
     ASSERT_EQ(')', yylex(&token_value_, &token_location_, &scanner)) << text;
-    ASSERT_EQ(kEndOfFileToken,
-              yylex(&token_value_, &token_location_, &scanner)) << text;
+    ASSERT_EQ(kEndOfFileToken, yylex(&token_value_, &token_location_, &scanner))
+        << text;
   }
 }
 
diff --git a/cobalt/css_parser/string_pool.h b/cobalt/css_parser/string_pool.h
index b94f72d..1383b91 100644
--- a/cobalt/css_parser/string_pool.h
+++ b/cobalt/css_parser/string_pool.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <vector>
 
 
 namespace cobalt {
diff --git a/cobalt/css_parser/trivial_string_piece.h b/cobalt/css_parser/trivial_string_piece.h
index 4c5be8f..eb491eb 100644
--- a/cobalt/css_parser/trivial_string_piece.h
+++ b/cobalt/css_parser/trivial_string_piece.h
@@ -54,8 +54,7 @@
 
 // Used by tests.
 inline bool operator==(const TrivialStringPiece& lhs, const char* rhs) {
-  return strncmp(lhs.begin, rhs, lhs.size()) == 0 &&
-         rhs[lhs.size()] == '\0';
+  return strncmp(lhs.begin, rhs, lhs.size()) == 0 && rhs[lhs.size()] == '\0';
 }
 
 // Used by tests.
diff --git a/cobalt/cssom/animation_set.cc b/cobalt/cssom/animation_set.cc
index 751b72a..1432030 100644
--- a/cobalt/cssom/animation_set.cc
+++ b/cobalt/cssom/animation_set.cc
@@ -160,19 +160,21 @@
 
     // Create the animation and insert it into our map of currently active
     // animations.
-    InternalAnimationMap::iterator inserted = animations_.insert(
-        std::make_pair(
-            name_string,
-            AnimationEntry(Animation(name_string, keyframes, current_time,
-                GetTimeValue(i, style.animation_delay().get()),
-                GetTimeValue(i, style.animation_duration().get()),
-                GetFillMode(i, style.animation_fill_mode().get()),
-                GetIterationCount(
-                    i, style.animation_iteration_count().get()),
-                GetDirection(i, style.animation_direction().get()),
-                GetTimingFunction(
-                    i, style.animation_timing_function().get())))))
-        .first;
+    InternalAnimationMap::iterator inserted =
+        animations_
+            .insert(std::make_pair(
+                name_string,
+                AnimationEntry(Animation(
+                    name_string, keyframes, current_time,
+                    GetTimeValue(i, style.animation_delay().get()),
+                    GetTimeValue(i, style.animation_duration().get()),
+                    GetFillMode(i, style.animation_fill_mode().get()),
+                    GetIterationCount(i,
+                                      style.animation_iteration_count().get()),
+                    GetDirection(i, style.animation_direction().get()),
+                    GetTimingFunction(
+                        i, style.animation_timing_function().get())))))
+            .first;
     if (event_handler_) {
       event_handler_->OnAnimationStarted(inserted->second.animation, this);
     }
@@ -187,8 +189,8 @@
     // If the animation is playing, but the current time is past the end time,
     // then we should signal to the event handler that it has ended.
     bool animation_has_ended =
-        current_time >= iter->second.animation.start_time() +
-                        iter->second.animation.duration();
+        current_time >=
+        iter->second.animation.start_time() + iter->second.animation.duration();
     if (animation_has_ended && !iter->second.ended) {
       iter->second.ended = true;
       if (event_handler_) {
diff --git a/cobalt/cssom/animation_set.h b/cobalt/cssom/animation_set.h
index 081ab95..5504f59 100644
--- a/cobalt/cssom/animation_set.h
+++ b/cobalt/cssom/animation_set.h
@@ -17,6 +17,7 @@
 
 #include <map>
 #include <string>
+#include <utility>
 
 #include "cobalt/cssom/animation.h"
 #include "cobalt/cssom/css_computed_style_data.h"
diff --git a/cobalt/cssom/cascade_precedence.h b/cobalt/cssom/cascade_precedence.h
index 60f978e..ffb72b2 100644
--- a/cobalt/cssom/cascade_precedence.h
+++ b/cobalt/cssom/cascade_precedence.h
@@ -79,7 +79,7 @@
  public:
   explicit CascadePrecedence(Origin origin) : origin_(origin) {}
   CascadePrecedence(Origin origin, const Specificity& specificity,
-                  const Appearance& appearance)
+                    const Appearance& appearance)
       : origin_(origin), specificity_(specificity), appearance_(appearance) {}
 
   Origin origin() const { return origin_; }
diff --git a/cobalt/cssom/cascaded_style_test.cc b/cobalt/cssom/cascaded_style_test.cc
index da6cb14..644b611 100644
--- a/cobalt/cssom/cascaded_style_test.cc
+++ b/cobalt/cssom/cascaded_style_test.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/cascaded_style.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/css_parser/parser.h"
 #include "cobalt/cssom/cascade_precedence.h"
 #include "cobalt/cssom/css_computed_style_data.h"
@@ -46,44 +47,47 @@
   // rule 2 > rule 3 > rule 1.
 
   scoped_refptr<CSSStyleRule> css_style_rule_1 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 100px !important;"
-                    "  right: 100px;"
-                    "  width: 100px;"
-                    "  height: 100px;"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 100px !important;"
+              "  right: 100px;"
+              "  width: 100px;"
+              "  height: 100px;"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_1(kNormalUserAgent);
   rules_with_cascade_precedence.push_back(
       std::make_pair(css_style_rule_1, cascade_precedence_1));
 
   scoped_refptr<CSSStyleRule> css_style_rule_2 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 200px;"
-                    "  right: 200px !important;"
-                    "  width: 200px;"
-                    "  height: 200px;"
-                    "  vertical-align: top !important;"
-                    "  text-align: center !important;"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 200px;"
+              "  right: 200px !important;"
+              "  width: 200px;"
+              "  height: 200px;"
+              "  vertical-align: top !important;"
+              "  text-align: center !important;"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_2(kNormalOverride);
   rules_with_cascade_precedence.push_back(
       std::make_pair(css_style_rule_2, cascade_precedence_2));
 
   scoped_refptr<CSSStyleRule> css_style_rule_3 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 300px;"
-                    "  right: 300px;"
-                    "  width: 300px !important;"
-                    "  height: 300px;"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 300px;"
+              "  right: 300px;"
+              "  width: 300px !important;"
+              "  height: 300px;"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_3(kNormalAuthor);
   rules_with_cascade_precedence.push_back(
@@ -121,25 +125,27 @@
   // rule 2 > rule 1.
 
   scoped_refptr<CSSStyleRule> css_style_rule_1 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 100px !important;"
-                    "  right: 100px;"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 100px !important;"
+              "  right: 100px;"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_1(kNormalUserAgent);
   rules_with_cascade_precedence.push_back(
       std::make_pair(css_style_rule_1, cascade_precedence_1));
 
   scoped_refptr<CSSStyleRule> css_style_rule_2 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 200px;"
-                    "  right: 200px !important;"
-                    "  background-image: url(foo.png);"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 200px;"
+              "  right: 200px !important;"
+              "  background-image: url(foo.png);"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_2(kNormalOverride);
   rules_with_cascade_precedence.push_back(
@@ -177,13 +183,14 @@
       GURL("https://www.youtube.com/tv/img");
 
   scoped_refptr<CSSStyleRule> css_style_rule =
-      css_parser->ParseRule(
-                    "div {"
-                    "  left: 200px;"
-                    "  right: 200px !important;"
-                    "  background-image: url(foo.png);"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  left: 200px;"
+              "  right: 200px !important;"
+              "  background-image: url(foo.png);"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence(kNormalOverride);
   rules_with_cascade_precedence.push_back(
@@ -221,12 +228,13 @@
   // rule 2 > rule 1.
 
   scoped_refptr<CSSStyleRule> css_style_rule_1 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  right: 100px;"
-                    "  background-image: url(bar.png) !important;"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  right: 100px;"
+              "  background-image: url(bar.png) !important;"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_1(kNormalUserAgent);
   rules_with_cascade_precedence.push_back(
@@ -238,12 +246,13 @@
   css_style_rule_1->set_parent_style_sheet(parent_style_sheet_1.get());
 
   scoped_refptr<CSSStyleRule> css_style_rule_2 =
-      css_parser->ParseRule(
-                    "div {"
-                    "  right: 200px !important;"
-                    "  background-image: url(foo.png);"
-                    "}",
-                    base::SourceLocation("[object CascadedStyleTest]", 1, 1))
+      css_parser
+          ->ParseRule(
+              "div {"
+              "  right: 200px !important;"
+              "  background-image: url(foo.png);"
+              "}",
+              base::SourceLocation("[object CascadedStyleTest]", 1, 1))
           ->AsCSSStyleRule();
   CascadePrecedence cascade_precedence_2(kNormalOverride);
   rules_with_cascade_precedence.push_back(
diff --git a/cobalt/cssom/color_stop.h b/cobalt/cssom/color_stop.h
index cdbd4d0..367a079 100644
--- a/cobalt/cssom/color_stop.h
+++ b/cobalt/cssom/color_stop.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <vector>
 
 #include "base/memory/ref_counted.h"
 #include "cobalt/cssom/length_value.h"
diff --git a/cobalt/cssom/combinator.cc b/cobalt/cssom/combinator.cc
index 88e485f..e266360 100644
--- a/cobalt/cssom/combinator.cc
+++ b/cobalt/cssom/combinator.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/combinator.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/cssom/compound_selector.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/complex_selector.cc b/cobalt/cssom/complex_selector.cc
index e62cc7e..2bf8abd 100644
--- a/cobalt/cssom/complex_selector.cc
+++ b/cobalt/cssom/complex_selector.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/complex_selector.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/logging.h"
 #include "cobalt/cssom/combinator.h"
 #include "cobalt/cssom/compound_selector.h"
diff --git a/cobalt/cssom/complex_selector.h b/cobalt/cssom/complex_selector.h
index 93405e6..037a2ed 100644
--- a/cobalt/cssom/complex_selector.h
+++ b/cobalt/cssom/complex_selector.h
@@ -52,9 +52,7 @@
   CompoundSelector* first_selector() { return first_selector_.get(); }
   CompoundSelector* last_selector() { return last_selector_; }
 
-  int combinator_count() {
-    return combinator_count_;
-  }
+  int combinator_count() { return combinator_count_; }
 
   // For a chain of compound selectors separated by combinators, AppendSelector
   // should be first called with the left most compound selector, then
diff --git a/cobalt/cssom/compound_selector.h b/cobalt/cssom/compound_selector.h
index 54a79fb..3369215 100644
--- a/cobalt/cssom/compound_selector.h
+++ b/cobalt/cssom/compound_selector.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <vector>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/cssom/computed_style_test.cc b/cobalt/cssom/computed_style_test.cc
index dc1bfe1..7088a10 100644
--- a/cobalt/cssom/computed_style_test.cc
+++ b/cobalt/cssom/computed_style_test.cc
@@ -15,6 +15,7 @@
 #include "cobalt/cssom/computed_style.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "cobalt/base/polymorphic_downcast.h"
@@ -1172,7 +1173,8 @@
   DCHECK_EQ(2u, box_shadow_list->value().size());
 
   float expected_length_value[2][3] = {
-      {100.0f, 30.0f, 150.0f}, {100.0f, 40.0f, 0.0f},
+      {100.0f, 30.0f, 150.0f},
+      {100.0f, 40.0f, 0.0f},
   };
   float expected_color[2] = {0x0047ABFF, 0x000080FF};
   bool expected_has_inset[2] = {true, false};
@@ -1829,7 +1831,8 @@
   DCHECK_EQ(2u, text_shadow_list->value().size());
 
   float expected_length_value[2][3] = {
-      {100.0f, 30.0f, 150.0f}, {100.0f, 40.0f, 0.0f},
+      {100.0f, 30.0f, 150.0f},
+      {100.0f, 40.0f, 0.0f},
   };
   float expected_color[2] = {0x0047ABFF, 0x000080FF};
 
diff --git a/cobalt/cssom/css.idl b/cobalt/cssom/css.idl
index 2569462..100dc48 100644
--- a/cobalt/cssom/css.idl
+++ b/cobalt/cssom/css.idl
@@ -17,4 +17,4 @@
 interface CSS {
   [CallWith=EnvironmentSettings] static boolean supports(DOMString property,
                                                          DOMString value);
-};
\ No newline at end of file
+};
diff --git a/cobalt/cssom/css_computed_style_data_property_set_matcher_test.cc b/cobalt/cssom/css_computed_style_data_property_set_matcher_test.cc
index 6ecb327..115ab22 100644
--- a/cobalt/cssom/css_computed_style_data_property_set_matcher_test.cc
+++ b/cobalt/cssom/css_computed_style_data_property_set_matcher_test.cc
@@ -13,11 +13,9 @@
 // limitations under the License.
 
 #include "cobalt/cssom/css_computed_style_data.h"
-
 #include "cobalt/cssom/font_style_value.h"
 #include "cobalt/cssom/font_weight_value.h"
 #include "cobalt/cssom/keyword_value.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/css_computed_style_data_test.cc b/cobalt/cssom/css_computed_style_data_test.cc
index edc4722..7195282 100644
--- a/cobalt/cssom/css_computed_style_data_test.cc
+++ b/cobalt/cssom/css_computed_style_data_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/cssom/css_computed_style_data.h"
+
 #include "cobalt/cssom/css_style_sheet.h"
 #include "cobalt/cssom/font_weight_value.h"
 #include "cobalt/cssom/integer_value.h"
@@ -20,7 +21,6 @@
 #include "cobalt/cssom/length_value.h"
 #include "cobalt/cssom/property_definitions.h"
 #include "cobalt/cssom/rgba_color_value.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/css_computed_style_declaration_test.cc b/cobalt/cssom/css_computed_style_declaration_test.cc
index ac53074..8ba0f2d 100644
--- a/cobalt/cssom/css_computed_style_declaration_test.cc
+++ b/cobalt/cssom/css_computed_style_declaration_test.cc
@@ -26,9 +26,9 @@
 namespace cobalt {
 namespace cssom {
 
+using dom::testing::FakeExceptionState;
 using ::testing::_;
 using ::testing::Return;
-using dom::testing::FakeExceptionState;
 
 TEST(CSSComputedStyleDeclarationTest, CSSTextSetterRaisesException) {
   scoped_refptr<CSSComputedStyleDeclaration> style =
diff --git a/cobalt/cssom/css_condition_rule.h b/cobalt/cssom/css_condition_rule.h
index dd78bb7..197bebe 100644
--- a/cobalt/cssom/css_condition_rule.h
+++ b/cobalt/cssom/css_condition_rule.h
@@ -41,9 +41,7 @@
   // Custom, not in any spec.
   //
   // From CSSRule.
-  void Accept(CSSRuleVisitor* visitor) override {
-    NOTREACHED();
-  }
+  void Accept(CSSRuleVisitor* visitor) override { NOTREACHED(); }
 
   // Returns the cached result of evaluating the condition.
   bool condition_value() { return cached_condition_value_; }
diff --git a/cobalt/cssom/css_declared_style_data.cc b/cobalt/cssom/css_declared_style_data.cc
index b5eae46..1f0e8b4 100644
--- a/cobalt/cssom/css_declared_style_data.cc
+++ b/cobalt/cssom/css_declared_style_data.cc
@@ -152,7 +152,8 @@
        property_value_iterator != declared_property_values_.end();
        ++property_value_iterator) {
     if (!property_value_iterator->second->Equals(
-            *that.declared_property_values_.find(property_value_iterator->first)
+            *that.declared_property_values_
+                 .find(property_value_iterator->first)
                  ->second)) {
       return false;
     }
diff --git a/cobalt/cssom/css_declared_style_data_test.cc b/cobalt/cssom/css_declared_style_data_test.cc
index a3f8cef..c3afa40 100644
--- a/cobalt/cssom/css_declared_style_data_test.cc
+++ b/cobalt/cssom/css_declared_style_data_test.cc
@@ -20,7 +20,6 @@
 #include "cobalt/cssom/length_value.h"
 #include "cobalt/cssom/property_definitions.h"
 #include "cobalt/cssom/rgba_color_value.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/css_declared_style_declaration_test.cc b/cobalt/cssom/css_declared_style_declaration_test.cc
index 5e3b92b..abd0322 100644
--- a/cobalt/cssom/css_declared_style_declaration_test.cc
+++ b/cobalt/cssom/css_declared_style_declaration_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/cssom/css_declared_style_declaration.h"
+
 #include "cobalt/cssom/css_declared_style_data.h"
 #include "cobalt/cssom/css_parser.h"
 #include "cobalt/cssom/css_style_rule.h"
diff --git a/cobalt/cssom/css_font_face_declaration_data.cc b/cobalt/cssom/css_font_face_declaration_data.cc
index 1b5efd3..552c65b 100644
--- a/cobalt/cssom/css_font_face_declaration_data.cc
+++ b/cobalt/cssom/css_font_face_declaration_data.cc
@@ -47,8 +47,8 @@
 scoped_refptr<PropertyValue> CSSFontFaceDeclarationData::GetPropertyValue(
     PropertyKey key) const {
   scoped_refptr<PropertyValue>* property_value_reference =
-      const_cast<CSSFontFaceDeclarationData*>(this)
-          ->GetPropertyValueReference(key);
+      const_cast<CSSFontFaceDeclarationData*>(this)->GetPropertyValueReference(
+          key);
   return property_value_reference ? *property_value_reference : NULL;
 }
 
diff --git a/cobalt/cssom/css_font_face_declaration_data_test.cc b/cobalt/cssom/css_font_face_declaration_data_test.cc
index a7287fa..6eabfd4 100644
--- a/cobalt/cssom/css_font_face_declaration_data_test.cc
+++ b/cobalt/cssom/css_font_face_declaration_data_test.cc
@@ -16,7 +16,6 @@
 
 #include "cobalt/cssom/keyword_value.h"
 #include "cobalt/cssom/property_definitions.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/css_font_face_rule_test.cc b/cobalt/cssom/css_font_face_rule_test.cc
index 9245801..7338325 100644
--- a/cobalt/cssom/css_font_face_rule_test.cc
+++ b/cobalt/cssom/css_font_face_rule_test.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/css_font_face_rule.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/cssom/css_font_face_declaration_data.h"
 #include "cobalt/cssom/css_style_sheet.h"
 #include "cobalt/cssom/font_style_value.h"
diff --git a/cobalt/cssom/css_grouping_rule.h b/cobalt/cssom/css_grouping_rule.h
index 4d364f2..55d7e0e 100644
--- a/cobalt/cssom/css_grouping_rule.h
+++ b/cobalt/cssom/css_grouping_rule.h
@@ -49,9 +49,7 @@
   // Custom, not in any spec.
   //
   // From CSSRule.
-  void Accept(CSSRuleVisitor* visitor) override {
-    NOTREACHED();
-  }
+  void Accept(CSSRuleVisitor* visitor) override { NOTREACHED(); }
 
   void SetIndex(int index) override;
   int IndexWidth() const override;
diff --git a/cobalt/cssom/css_property_definitions_test.cc b/cobalt/cssom/css_property_definitions_test.cc
index 20d3009..cd528a1 100644
--- a/cobalt/cssom/css_property_definitions_test.cc
+++ b/cobalt/cssom/css_property_definitions_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "cobalt/cssom/property_definitions.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/css_style_sheet_test.cc b/cobalt/cssom/css_style_sheet_test.cc
index edd0825..5c17d59 100644
--- a/cobalt/cssom/css_style_sheet_test.cc
+++ b/cobalt/cssom/css_style_sheet_test.cc
@@ -12,16 +12,17 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
+#include "cobalt/cssom/css_style_sheet.h"
 
-#include "cobalt/cssom/css_rule_list.h"
+#include <memory>
+#include <utility>
 
 #include "cobalt/cssom/css_media_rule.h"
 #include "cobalt/cssom/css_parser.h"
+#include "cobalt/cssom/css_rule_list.h"
 #include "cobalt/cssom/css_rule_style_declaration.h"
 #include "cobalt/cssom/css_style_declaration.h"
 #include "cobalt/cssom/css_style_rule.h"
-#include "cobalt/cssom/css_style_sheet.h"
 #include "cobalt/cssom/length_value.h"
 #include "cobalt/cssom/media_feature.h"
 #include "cobalt/cssom/media_feature_keyword_value.h"
diff --git a/cobalt/cssom/css_transition_set.cc b/cobalt/cssom/css_transition_set.cc
index 8a6787d..a310e1c 100644
--- a/cobalt/cssom/css_transition_set.cc
+++ b/cobalt/cssom/css_transition_set.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <cmath>
+#include <utility>
 
 #include "base/lazy_instance.h"
 #include "cobalt/base/polymorphic_downcast.h"
@@ -139,7 +140,7 @@
   scoped_refptr<PropertyValue> current_value_within_old_transition =
       old_transition.Evaluate(current_time);
 
-  // If the new transition is a reversal fo the old transition, we need to
+  // If the new transition is a reversal of the old transition, we need to
   // setup reversing_adjusted_start_value and reversing_shortening_factor so
   // that they can be used to reduce the new transition's duration.
   scoped_refptr<PropertyValue> new_reversing_adjusted_start_value;
diff --git a/cobalt/cssom/css_transition_set_test.cc b/cobalt/cssom/css_transition_set_test.cc
index d94a45a..b789693 100644
--- a/cobalt/cssom/css_transition_set_test.cc
+++ b/cobalt/cssom/css_transition_set_test.cc
@@ -12,12 +12,14 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/cssom/css_transition_set.h"
+
 #include <memory>
+#include <utility>
 
 #include "base/time/time.h"
 #include "cobalt/cssom/css_computed_style_data.h"
 #include "cobalt/cssom/css_transition.h"
-#include "cobalt/cssom/css_transition_set.h"
 #include "cobalt/cssom/keyword_value.h"
 #include "cobalt/cssom/length_value.h"
 #include "cobalt/cssom/number_value.h"
@@ -28,7 +30,6 @@
 #include "cobalt/cssom/time_list_value.h"
 #include "cobalt/cssom/timing_function.h"
 #include "cobalt/cssom/timing_function_list_value.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/filter_function_list_value.h b/cobalt/cssom/filter_function_list_value.h
index 7bcbc0b..cb9cce6 100644
--- a/cobalt/cssom/filter_function_list_value.h
+++ b/cobalt/cssom/filter_function_list_value.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_FILTER_FUNCTION_LIST_VALUE_H_
 
 #include <string>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "cobalt/base/polymorphic_equatable.h"
diff --git a/cobalt/cssom/font_weight_value.h b/cobalt/cssom/font_weight_value.h
index 0a6e33b..25f808e 100644
--- a/cobalt/cssom/font_weight_value.h
+++ b/cobalt/cssom/font_weight_value.h
@@ -39,10 +39,10 @@
     kLightAka300,
     kNormalAka400,
     kMediumAka500,
-    kSemiBoldAka600,    // same as Demi Bold
+    kSemiBoldAka600,  // same as Demi Bold
     kBoldAka700,
-    kExtraBoldAka800,   // same as Ultra Bold
-    kBlackAka900,       // same as Heavy
+    kExtraBoldAka800,  // same as Ultra Bold
+    kBlackAka900,      // same as Heavy
   };
 
   // For the sake of saving memory an explicit instantiation of this class
diff --git a/cobalt/cssom/interpolate_property_value_test.cc b/cobalt/cssom/interpolate_property_value_test.cc
index 548594a..cfc8805 100644
--- a/cobalt/cssom/interpolate_property_value_test.cc
+++ b/cobalt/cssom/interpolate_property_value_test.cc
@@ -12,14 +12,16 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/cssom/interpolate_property_value.h"
+
 #include <cmath>
+#include <utility>
 
 #include "base/time/time.h"
 #include "cobalt/cssom/calc_value.h"
 #include "cobalt/cssom/cobalt_ui_nav_focus_transform_function.h"
 #include "cobalt/cssom/cobalt_ui_nav_spotlight_transform_function.h"
 #include "cobalt/cssom/css_transition.h"
-#include "cobalt/cssom/interpolate_property_value.h"
 #include "cobalt/cssom/interpolated_transform_property_value.h"
 #include "cobalt/cssom/keyword_value.h"
 #include "cobalt/cssom/length_value.h"
diff --git a/cobalt/cssom/interpolated_transform_property_value.cc b/cobalt/cssom/interpolated_transform_property_value.cc
index ea31222..0de8d3b 100644
--- a/cobalt/cssom/interpolated_transform_property_value.cc
+++ b/cobalt/cssom/interpolated_transform_property_value.cc
@@ -23,9 +23,7 @@
 InterpolatedTransformPropertyValue::InterpolatedTransformPropertyValue(
     TransformPropertyValue* start_value, TransformPropertyValue* end_value,
     float progress)
-    : start_value_(start_value),
-      end_value_(end_value),
-      progress_(progress) {
+    : start_value_(start_value), end_value_(end_value), progress_(progress) {
   DCHECK(start_value);
   DCHECK(end_value);
 }
@@ -44,8 +42,7 @@
     const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus) const {
   return math::InterpolateMatrices(
       start_value_->ToMatrix(used_size, used_ui_nav_focus),
-      end_value_->ToMatrix(used_size, used_ui_nav_focus),
-      progress_);
+      end_value_->ToMatrix(used_size, used_ui_nav_focus), progress_);
 }
 
 }  // namespace cssom
diff --git a/cobalt/cssom/interpolated_transform_property_value.h b/cobalt/cssom/interpolated_transform_property_value.h
index ad271dd..cdff3fb 100644
--- a/cobalt/cssom/interpolated_transform_property_value.h
+++ b/cobalt/cssom/interpolated_transform_property_value.h
@@ -38,8 +38,8 @@
   }
 
   math::Matrix3F ToMatrix(const math::SizeF& used_size,
-      const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus)
-      const override;
+                          const scoped_refptr<ui_navigation::NavItem>&
+                              used_ui_nav_focus) const override;
 
   bool operator==(const InterpolatedTransformPropertyValue& other) const {
     return progress_ == other.progress_ &&
diff --git a/cobalt/cssom/linear_gradient_value.h b/cobalt/cssom/linear_gradient_value.h
index bb50727..44a0e44 100644
--- a/cobalt/cssom/linear_gradient_value.h
+++ b/cobalt/cssom/linear_gradient_value.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_LINEAR_GRADIENT_VALUE_H_
 
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/basictypes.h"
diff --git a/cobalt/cssom/list_value.h b/cobalt/cssom/list_value.h
index 8658928..f4be9f3 100644
--- a/cobalt/cssom/list_value.h
+++ b/cobalt/cssom/list_value.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_LIST_VALUE_H_
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/basictypes.h"
diff --git a/cobalt/cssom/map_to_mesh_function.h b/cobalt/cssom/map_to_mesh_function.h
index 3a888e7..09e495f 100644
--- a/cobalt/cssom/map_to_mesh_function.h
+++ b/cobalt/cssom/map_to_mesh_function.h
@@ -17,6 +17,8 @@
 
 #include <memory>
 #include <string>
+#include <utility>
+#include <vector>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/cssom/media_query.cc b/cobalt/cssom/media_query.cc
index 252f5ce..6b4cdbc 100644
--- a/cobalt/cssom/media_query.cc
+++ b/cobalt/cssom/media_query.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/media_query.h"
 
+#include <memory>
+
 #include "base/memory/ref_counted.h"
 #include "cobalt/cssom/media_feature.h"
 #include "cobalt/cssom/viewport_size.h"
diff --git a/cobalt/cssom/media_query_test.cc b/cobalt/cssom/media_query_test.cc
index 6aba6b8..90938a8 100644
--- a/cobalt/cssom/media_query_test.cc
+++ b/cobalt/cssom/media_query_test.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/media_query.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/memory/ref_counted.h"
 #include "cobalt/cssom/length_value.h"
 #include "cobalt/cssom/media_feature.h"
diff --git a/cobalt/cssom/not_pseudo_class.cc b/cobalt/cssom/not_pseudo_class.cc
index a206a21..eb6d85d 100644
--- a/cobalt/cssom/not_pseudo_class.cc
+++ b/cobalt/cssom/not_pseudo_class.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/not_pseudo_class.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/cssom/compound_selector.h"
 #include "cobalt/cssom/selector_visitor.h"
 
diff --git a/cobalt/cssom/not_pseudo_class.h b/cobalt/cssom/not_pseudo_class.h
index f028015..abb4da6 100644
--- a/cobalt/cssom/not_pseudo_class.h
+++ b/cobalt/cssom/not_pseudo_class.h
@@ -35,8 +35,7 @@
 //   https://www.w3.org/TR/selectors4/#negation-pseudo
 class NotPseudoClass : public PseudoClass {
  public:
-  NotPseudoClass()
-      : PseudoClass(base::Tokens::not_pseudo_class_selector()) {}
+  NotPseudoClass() : PseudoClass(base::Tokens::not_pseudo_class_selector()) {}
   ~NotPseudoClass() override {}
 
   // From Selector.
diff --git a/cobalt/cssom/property_definitions.cc b/cobalt/cssom/property_definitions.cc
index 6a4db89..382d936 100644
--- a/cobalt/cssom/property_definitions.cc
+++ b/cobalt/cssom/property_definitions.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/bind.h"
diff --git a/cobalt/cssom/property_key_list_value.h b/cobalt/cssom/property_key_list_value.h
index 5dd0774..e275c2e 100644
--- a/cobalt/cssom/property_key_list_value.h
+++ b/cobalt/cssom/property_key_list_value.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/cssom/property_list_value.h b/cobalt/cssom/property_list_value.h
index d938d37..9056de2 100644
--- a/cobalt/cssom/property_list_value.h
+++ b/cobalt/cssom/property_list_value.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "cobalt/base/polymorphic_equatable.h"
diff --git a/cobalt/cssom/property_value_to_string_test.cc b/cobalt/cssom/property_value_to_string_test.cc
index 609e2b2..9a1bc8d 100644
--- a/cobalt/cssom/property_value_to_string_test.cc
+++ b/cobalt/cssom/property_value_to_string_test.cc
@@ -14,8 +14,6 @@
 
 #include <memory>
 
-#include "cobalt/cssom/property_value.h"
-
 #include "base/memory/ptr_util.h"
 #include "base/time/time.h"
 #include "cobalt/cssom/absolute_url_value.h"
@@ -36,6 +34,7 @@
 #include "cobalt/cssom/property_definitions.h"
 #include "cobalt/cssom/property_key_list_value.h"
 #include "cobalt/cssom/property_list_value.h"
+#include "cobalt/cssom/property_value.h"
 #include "cobalt/cssom/radial_gradient_value.h"
 #include "cobalt/cssom/ratio_value.h"
 #include "cobalt/cssom/resolution_value.h"
diff --git a/cobalt/cssom/property_value_visitor.cc b/cobalt/cssom/property_value_visitor.cc
index 1156137..b94a999 100644
--- a/cobalt/cssom/property_value_visitor.cc
+++ b/cobalt/cssom/property_value_visitor.cc
@@ -70,8 +70,7 @@
   VisitDefault(font_weight_value);
 }
 
-void DefaultingPropertyValueVisitor::VisitInteger(
-    IntegerValue* integer_value) {
+void DefaultingPropertyValueVisitor::VisitInteger(IntegerValue* integer_value) {
   VisitDefault(integer_value);
 }
 
diff --git a/cobalt/cssom/property_value_visitor_test.cc b/cobalt/cssom/property_value_visitor_test.cc
index 11762be..27854ac 100644
--- a/cobalt/cssom/property_value_visitor_test.cc
+++ b/cobalt/cssom/property_value_visitor_test.cc
@@ -15,6 +15,7 @@
 #include "cobalt/cssom/property_value_visitor.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "cobalt/cssom/absolute_url_value.h"
@@ -261,7 +262,7 @@
 
 TEST(PropertyValueVisitorTest, VisitsShadowValue) {
   scoped_refptr<ShadowValue> shadow_value =
-      new ShadowValue(std::vector<scoped_refptr<LengthValue> >(),
+      new ShadowValue(std::vector<scoped_refptr<LengthValue>>(),
                       new RGBAColorValue(0x0047abff), false);
   MockPropertyValueVisitor mock_visitor;
   EXPECT_CALL(mock_visitor, VisitShadow(shadow_value.get()));
@@ -322,8 +323,8 @@
   scoped_refptr<InterpolatedTransformPropertyValue> interpolated_value(
       new InterpolatedTransformPropertyValue(start_value, end_value, 0.5f));
   MockPropertyValueVisitor mock_visitor;
-  EXPECT_CALL(mock_visitor, VisitTransformPropertyValue(
-      interpolated_value.get()));
+  EXPECT_CALL(mock_visitor,
+              VisitTransformPropertyValue(interpolated_value.get()));
   interpolated_value->Accept(&mock_visitor);
 }
 
diff --git a/cobalt/cssom/radial_gradient_value.h b/cobalt/cssom/radial_gradient_value.h
index bcef848..87aa71a 100644
--- a/cobalt/cssom/radial_gradient_value.h
+++ b/cobalt/cssom/radial_gradient_value.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_RADIAL_GRADIENT_VALUE_H_
 
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/basictypes.h"
@@ -80,9 +81,7 @@
 
   const scoped_refptr<PropertyListValue>& position() const { return position_; }
 
-  const ColorStopList& color_stop_list() const {
-    return color_stop_list_;
-  }
+  const ColorStopList& color_stop_list() const { return color_stop_list_; }
 
   std::string ToString() const override;
 
diff --git a/cobalt/cssom/resolution_value.cc b/cobalt/cssom/resolution_value.cc
index 9381048..a578f1a 100644
--- a/cobalt/cssom/resolution_value.cc
+++ b/cobalt/cssom/resolution_value.cc
@@ -35,9 +35,10 @@
 }
 
 std::string ResolutionValue::ToString() const {
-  return base::StringPrintf(
-      "%.7g%s", value_,
-      unit_ == kDPIUnit ? "dpi" : unit_ == kDPCMUnit ? "dpcm" : "");
+  return base::StringPrintf("%.7g%s", value_,
+                            unit_ == kDPIUnit    ? "dpi"
+                            : unit_ == kDPCMUnit ? "dpcm"
+                                                 : "");
 }
 
 }  // namespace cssom
diff --git a/cobalt/cssom/rotate_function.h b/cobalt/cssom/rotate_function.h
index ccfc11b..2b19e0f 100644
--- a/cobalt/cssom/rotate_function.h
+++ b/cobalt/cssom/rotate_function.h
@@ -47,8 +47,8 @@
   }
 
   math::Matrix3F ToMatrix(const math::SizeF& used_size,
-      const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus)
-      const override;
+                          const scoped_refptr<ui_navigation::NavItem>&
+                              used_ui_nav_focus) const override;
 
   bool operator==(const RotateFunction& other) const {
     return clockwise_angle_in_radians_ == other.clockwise_angle_in_radians_;
diff --git a/cobalt/cssom/scale_function.h b/cobalt/cssom/scale_function.h
index 252a078..33a0333 100644
--- a/cobalt/cssom/scale_function.h
+++ b/cobalt/cssom/scale_function.h
@@ -50,8 +50,8 @@
   }
 
   math::Matrix3F ToMatrix(const math::SizeF& used_size,
-      const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus)
-      const override;
+                          const scoped_refptr<ui_navigation::NavItem>&
+                              used_ui_nav_focus) const override;
 
   bool operator==(const ScaleFunction& other) const {
     return x_factor_ == other.x_factor_ && y_factor_ == other.y_factor_;
diff --git a/cobalt/cssom/scoped_list_value.h b/cobalt/cssom/scoped_list_value.h
index 0577930..0ec7fe3 100644
--- a/cobalt/cssom/scoped_list_value.h
+++ b/cobalt/cssom/scoped_list_value.h
@@ -16,6 +16,8 @@
 #define COBALT_CSSOM_SCOPED_LIST_VALUE_H_
 
 #include <memory>
+#include <utility>
+#include <vector>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/cssom/scoped_ref_list_value.h b/cobalt/cssom/scoped_ref_list_value.h
index fc7f8fb..0cd6ccf 100644
--- a/cobalt/cssom/scoped_ref_list_value.h
+++ b/cobalt/cssom/scoped_ref_list_value.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_SCOPED_REF_LIST_VALUE_H_
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/basictypes.h"
diff --git a/cobalt/cssom/selector.h b/cobalt/cssom/selector.h
index 7a12aa8..83a5405 100644
--- a/cobalt/cssom/selector.h
+++ b/cobalt/cssom/selector.h
@@ -16,6 +16,7 @@
 #define COBALT_CSSOM_SELECTOR_H_
 
 #include <memory>
+#include <vector>
 
 #include "cobalt/cssom/specificity.h"
 
diff --git a/cobalt/cssom/selector_test.cc b/cobalt/cssom/selector_test.cc
index 43381b7..e856823 100644
--- a/cobalt/cssom/selector_test.cc
+++ b/cobalt/cssom/selector_test.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/selector.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/cssom/child_combinator.h"
 #include "cobalt/cssom/class_selector.h"
 #include "cobalt/cssom/complex_selector.h"
@@ -123,8 +124,7 @@
     complex_selector->AppendSelector(
         std::unique_ptr<CompoundSelector>(new CompoundSelector()));
 
-    for (int i = 0; i < ComplexSelector::kCombinatorLimit;
-         i++) {
+    for (int i = 0; i < ComplexSelector::kCombinatorLimit; i++) {
       std::unique_ptr<CompoundSelector> compound_selector(
           new CompoundSelector());
       std::unique_ptr<ChildCombinator> child_combinator(new ChildCombinator());
@@ -142,9 +142,7 @@
     complex_selector->AppendSelector(
         std::unique_ptr<CompoundSelector>(new CompoundSelector()));
 
-    for (int i = 0;
-         i < 2 * ComplexSelector::kCombinatorLimit + 1;
-         i++) {
+    for (int i = 0; i < 2 * ComplexSelector::kCombinatorLimit + 1; i++) {
       std::unique_ptr<CompoundSelector> compound_selector(
           new CompoundSelector());
       std::unique_ptr<ChildCombinator> child_combinator(new ChildCombinator());
diff --git a/cobalt/cssom/selector_tree.cc b/cobalt/cssom/selector_tree.cc
index 6dc91db..bd41332 100644
--- a/cobalt/cssom/selector_tree.cc
+++ b/cobalt/cssom/selector_tree.cc
@@ -16,9 +16,7 @@
 
 #include <set>
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 #include "cobalt/base/version_compatibility.h"
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 #include "cobalt/cssom/complex_selector.h"
 #include "cobalt/cssom/compound_selector.h"
 #include "cobalt/cssom/css_style_rule.h"
@@ -76,7 +74,6 @@
   return owned_nodes_map_[std::make_pair(node, combinator)];
 }
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 namespace {
 
 // This uses the old CompoundSelector compare logic that had a bug where 'not'
@@ -178,7 +175,6 @@
 bool SelectorTree::ValidateVersionCompatibility() const {
   return !HasNotPseudoClassCompatibilityViolations(owned_nodes_map_);
 }
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 
 SelectorTree::Node* SelectorTree::GetOrCreateNodeForComplexSelector(
     ComplexSelector* complex_selector) {
diff --git a/cobalt/cssom/selector_tree.h b/cobalt/cssom/selector_tree.h
index b02a176..a42d2ae 100644
--- a/cobalt/cssom/selector_tree.h
+++ b/cobalt/cssom/selector_tree.h
@@ -202,11 +202,9 @@
   // Used by unit tests only.
   const OwnedNodes& children(const Node* node, CombinatorType combinator);
 
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
   // Validates the selector tree's compatibility against pre-selected versions
   // of Cobalt. Returns true if there are no version compatibility violations.
   bool ValidateVersionCompatibility() const;
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 
  private:
   // Gets or creates node for complex selector, starting from root.
diff --git a/cobalt/cssom/selector_tree_test.cc b/cobalt/cssom/selector_tree_test.cc
index 38f7cac..42d9493 100644
--- a/cobalt/cssom/selector_tree_test.cc
+++ b/cobalt/cssom/selector_tree_test.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/cssom/selector_tree.h"
 
+#include <memory>
+
 #include "cobalt/base/version_compatibility.h"
 #include "cobalt/css_parser/parser.h"
 #include "cobalt/cssom/css_style_rule.h"
diff --git a/cobalt/cssom/serializer.cc b/cobalt/cssom/serializer.cc
index d7cf50f..c7f8ad2 100644
--- a/cobalt/cssom/serializer.cc
+++ b/cobalt/cssom/serializer.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/cssom/serializer.h"
+
 #include "cobalt/cssom/active_pseudo_class.h"
 #include "cobalt/cssom/after_pseudo_element.h"
 #include "cobalt/cssom/attribute_selector.h"
diff --git a/cobalt/cssom/serializer_test.cc b/cobalt/cssom/serializer_test.cc
index 3429edc..eb1a192 100644
--- a/cobalt/cssom/serializer_test.cc
+++ b/cobalt/cssom/serializer_test.cc
@@ -14,6 +14,9 @@
 
 #include "cobalt/cssom/serializer.h"
 
+#include <memory>
+#include <vector>
+
 #include "cobalt/base/token.h"
 #include "cobalt/css_parser/parser.h"
 #include "cobalt/cssom/css_style_rule.h"
diff --git a/cobalt/cssom/time_list_value.cc b/cobalt/cssom/time_list_value.cc
index 1dce453..edb7c7f 100644
--- a/cobalt/cssom/time_list_value.cc
+++ b/cobalt/cssom/time_list_value.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/cssom/time_list_value.h"
+
 #include <inttypes.h>
 
 #include "base/strings/stringprintf.h"
-#include "cobalt/cssom/time_list_value.h"
 
 namespace cobalt {
 namespace cssom {
diff --git a/cobalt/cssom/time_list_value.h b/cobalt/cssom/time_list_value.h
index ba3eef0..4b8d8b1 100644
--- a/cobalt/cssom/time_list_value.h
+++ b/cobalt/cssom/time_list_value.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/cssom/timing_function_list_value.h b/cobalt/cssom/timing_function_list_value.h
index f1e97e3..e597f94 100644
--- a/cobalt/cssom/timing_function_list_value.h
+++ b/cobalt/cssom/timing_function_list_value.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "cobalt/base/polymorphic_equatable.h"
diff --git a/cobalt/cssom/timing_function_test.cc b/cobalt/cssom/timing_function_test.cc
index c8f6872..d3aaf67 100644
--- a/cobalt/cssom/timing_function_test.cc
+++ b/cobalt/cssom/timing_function_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/cssom/timing_function.h"
+
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/cssom/transform_function.h b/cobalt/cssom/transform_function.h
index 9e586c8..120d07d 100644
--- a/cobalt/cssom/transform_function.h
+++ b/cobalt/cssom/transform_function.h
@@ -51,7 +51,8 @@
 
   virtual std::string ToString() const = 0;
 
-  virtual math::Matrix3F ToMatrix(const math::SizeF& used_size,
+  virtual math::Matrix3F ToMatrix(
+      const math::SizeF& used_size,
       const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus) const = 0;
 
   virtual ~TransformFunction() {}
diff --git a/cobalt/cssom/transform_function_list_value.cc b/cobalt/cssom/transform_function_list_value.cc
index 95f0d71..35e7a12 100644
--- a/cobalt/cssom/transform_function_list_value.cc
+++ b/cobalt/cssom/transform_function_list_value.cc
@@ -14,15 +14,15 @@
 
 #include "cobalt/cssom/transform_function_list_value.h"
 
+#include <utility>
+
 namespace cobalt {
 namespace cssom {
 
-TransformFunctionListValue::Builder::Builder()
-    : traits_(0) {}
+TransformFunctionListValue::Builder::Builder() : traits_(0) {}
 
 TransformFunctionListValue::Builder::Builder(Builder&& other)
-    : functions_(std::move(other.functions_)),
-      traits_(other.traits_) {}
+    : functions_(std::move(other.functions_)), traits_(other.traits_) {}
 
 void TransformFunctionListValue::Builder::emplace_back(
     TransformFunction* function) {
diff --git a/cobalt/cssom/transform_function_list_value.h b/cobalt/cssom/transform_function_list_value.h
index eccc723..9c39a01 100644
--- a/cobalt/cssom/transform_function_list_value.h
+++ b/cobalt/cssom/transform_function_list_value.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/compiler_specific.h"
@@ -72,8 +73,8 @@
   }
 
   math::Matrix3F ToMatrix(const math::SizeF& used_size,
-      const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus)
-      const override;
+                          const scoped_refptr<ui_navigation::NavItem>&
+                              used_ui_nav_focus) const override;
 
   bool operator==(const TransformFunctionListValue& other) const;
 
diff --git a/cobalt/cssom/transform_property_value.h b/cobalt/cssom/transform_property_value.h
index f707aaf..ceaa3be 100644
--- a/cobalt/cssom/transform_property_value.h
+++ b/cobalt/cssom/transform_property_value.h
@@ -37,7 +37,8 @@
   // Returns whether the transform has any functions with the specified trait.
   virtual bool HasTrait(TransformFunction::Trait trait) const = 0;
 
-  virtual math::Matrix3F ToMatrix(const math::SizeF& used_size,
+  virtual math::Matrix3F ToMatrix(
+      const math::SizeF& used_size,
       const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus) const = 0;
 };
 
diff --git a/cobalt/cssom/translate_function.cc b/cobalt/cssom/translate_function.cc
index dae29cd..a018a9a 100644
--- a/cobalt/cssom/translate_function.cc
+++ b/cobalt/cssom/translate_function.cc
@@ -25,7 +25,7 @@
 namespace cssom {
 
 TranslateFunction::TranslateFunction(Axis axis,
-    const scoped_refptr<PropertyValue>& offset)
+                                     const scoped_refptr<PropertyValue>& offset)
     : axis_(axis), offset_(offset) {
   DCHECK(offset);
   if (offset_type() == kLength && offset_as_length()->IsUnitRelative()) {
@@ -124,16 +124,16 @@
     const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus) const {
   switch (axis_) {
     case kXAxis:
-      return math::TranslateMatrix(length_component_in_pixels() +
-                                   percentage_component() * used_size.width(),
-                                   0.0f);
+      return math::TranslateMatrix(
+          length_component_in_pixels() +
+              percentage_component() * used_size.width(),
+          0.0f);
     case kYAxis:
-      return math::TranslateMatrix(0.0f,
-                                   length_component_in_pixels() +
-                                   percentage_component() * used_size.height());
+      return math::TranslateMatrix(
+          0.0f, length_component_in_pixels() +
+                    percentage_component() * used_size.height());
     case kZAxis:
-      if (length_component_in_pixels() != 0 ||
-          percentage_component() != 0) {
+      if (length_component_in_pixels() != 0 || percentage_component() != 0) {
         LOG(ERROR) << "translateZ is currently a noop in Cobalt.";
       }
       break;
diff --git a/cobalt/cssom/translate_function.h b/cobalt/cssom/translate_function.h
index 3a84ab1..70033f4 100644
--- a/cobalt/cssom/translate_function.h
+++ b/cobalt/cssom/translate_function.h
@@ -70,8 +70,8 @@
   std::string ToString() const override;
 
   math::Matrix3F ToMatrix(const math::SizeF& used_size,
-      const scoped_refptr<ui_navigation::NavItem>& used_ui_nav_focus)
-      const override;
+                          const scoped_refptr<ui_navigation::NavItem>&
+                              used_ui_nav_focus) const override;
 
   bool operator==(const TranslateFunction& other) const {
     return offset_->Equals(*other.offset_) && axis_ == other.axis_;
diff --git a/cobalt/debug/BUILD.gn b/cobalt/debug/BUILD.gn
index 2c48c85..0bdf9b5 100644
--- a/cobalt/debug/BUILD.gn
+++ b/cobalt/debug/BUILD.gn
@@ -92,6 +92,9 @@
       "console/command_manager.cc",
       "console/command_manager.h",
     ]
-    deps = [ "//cobalt/base" ]
+    deps = [
+      "//cobalt/base",
+      "//starboard:starboard_headers_only",
+    ]
   }
 }
diff --git a/cobalt/debug/backend/command_map.h b/cobalt/debug/backend/command_map.h
index 919fc36..40467eb 100644
--- a/cobalt/debug/backend/command_map.h
+++ b/cobalt/debug/backend/command_map.h
@@ -17,6 +17,7 @@
 
 #include <map>
 #include <string>
+#include <utility>
 
 #include "base/bind.h"
 #include "base/optional.h"
diff --git a/cobalt/debug/backend/log_agent.cc b/cobalt/debug/backend/log_agent.cc
index 9fc974a..593fb0a 100644
--- a/cobalt/debug/backend/log_agent.cc
+++ b/cobalt/debug/backend/log_agent.cc
@@ -14,13 +14,22 @@
 
 #include "cobalt/debug/backend/log_agent.h"
 
+#include "base/bind.h"
 #include "base/logging.h"
+#include "cobalt/debug/console/command_manager.h"
 
 namespace cobalt {
 namespace debug {
 namespace backend {
 
 namespace {
+const char kDebugLogCommand[] = "debug_log";
+const char kDebugLogCommandShortHelp[] =
+    "Turns browser debug logging on or off.";
+const char kDebugLogCommandLongHelp[] =
+    "When turned on, browser logs are sent in such a way that they are visible "
+    "in devtools.";
+
 // Error levels:
 constexpr char kInfoLevel[] = "info";
 constexpr char kWarningLevel[] = "warning";
@@ -42,7 +51,21 @@
 }
 }  // namespace
 
-LogAgent::LogAgent(DebugDispatcher* dispatcher) : AgentBase("Log", dispatcher) {
+void LogAgent::OnDebugLog(const std::string& message) {
+  SetDebugLog(console::ConsoleCommandManager::CommandHandler::IsOnEnableOrTrue(
+      message));
+}
+void LogAgent::SetDebugLog(bool enable) {
+  event_method_ = domain_ + (enable ? ".entryAdded" : ".browserEntryAdded");
+}
+
+LogAgent::LogAgent(DebugDispatcher* dispatcher)
+    : AgentBase("Log", dispatcher),
+      debug_log_command_handler_(
+          kDebugLogCommand,
+          base::Bind(&LogAgent::OnDebugLog, base::Unretained(this)),
+          kDebugLogCommandShortHelp, kDebugLogCommandLongHelp) {
+  SetDebugLog(false);
   // Get log output while still making it available elsewhere.
   log_message_handler_callback_id_ =
       base::LogMessageHandler::GetInstance()->AddCallback(
@@ -63,9 +86,10 @@
     // except it only shows up in the debug console and not in remote devtools.
     // TODO: Flesh out the rest of LogEntry properties (source, timestamp)
     JSONObject params(new base::DictionaryValue());
+    params->SetString("entry.source", "other");
     params->SetString("entry.text", str);
     params->SetString("entry.level", GetLogLevelFromSeverity(severity));
-    dispatcher_->SendEvent(domain_ + ".browserEntryAdded", params);
+    dispatcher_->SendEvent(event_method_, params);
   }
 
   // Don't suppress the log message.
diff --git a/cobalt/debug/backend/log_agent.h b/cobalt/debug/backend/log_agent.h
index 97e6fe0..5a6fb50 100644
--- a/cobalt/debug/backend/log_agent.h
+++ b/cobalt/debug/backend/log_agent.h
@@ -19,6 +19,7 @@
 #include "cobalt/base/log_message_handler.h"
 #include "cobalt/debug/backend/agent_base.h"
 #include "cobalt/debug/backend/debug_dispatcher.h"
+#include "cobalt/debug/console/command_manager.h"
 
 namespace cobalt {
 namespace debug {
@@ -33,6 +34,9 @@
   explicit LogAgent(DebugDispatcher* dispatcher);
   ~LogAgent();
 
+  void OnDebugLog(const std::string& message);
+  void SetDebugLog(bool enable);
+
  private:
   // Called by LogMessageHandler for each log message.
   // May be called from any thread.
@@ -46,6 +50,11 @@
 
   // The callback id of our recipient of log messages so we can unregister it.
   base::LogMessageHandler::CallbackId log_message_handler_callback_id_;
+
+  std::string event_method_;
+
+  debug::console::ConsoleCommandManager::CommandHandler
+      debug_log_command_handler_;
 };
 
 }  // namespace backend
diff --git a/cobalt/debug/backend/overlay_agent.cc b/cobalt/debug/backend/overlay_agent.cc
index a1686cd..05ceeca 100644
--- a/cobalt/debug/backend/overlay_agent.cc
+++ b/cobalt/debug/backend/overlay_agent.cc
@@ -14,6 +14,9 @@
 
 #include "cobalt/debug/backend/overlay_agent.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/math/clamp.h"
 #include "cobalt/math/rect_f.h"
 #include "cobalt/render_tree/brush.h"
diff --git a/cobalt/debug/backend/overlay_agent.h b/cobalt/debug/backend/overlay_agent.h
index b9186de..cbef52e 100644
--- a/cobalt/debug/backend/overlay_agent.h
+++ b/cobalt/debug/backend/overlay_agent.h
@@ -14,6 +14,8 @@
 #ifndef COBALT_DEBUG_BACKEND_OVERLAY_AGENT_H_
 #define COBALT_DEBUG_BACKEND_OVERLAY_AGENT_H_
 
+#include <memory>
+
 #include "cobalt/debug/backend/agent_base.h"
 #include "cobalt/debug/backend/debug_dispatcher.h"
 #include "cobalt/debug/backend/render_layer.h"
diff --git a/cobalt/debug/backend/page_agent.cc b/cobalt/debug/backend/page_agent.cc
index 8c96420..fdd1d2a 100644
--- a/cobalt/debug/backend/page_agent.cc
+++ b/cobalt/debug/backend/page_agent.cc
@@ -15,6 +15,7 @@
 #include "cobalt/debug/backend/page_agent.h"
 
 #include <string>
+#include <utility>
 
 #include "base/bind.h"
 #include "base/values.h"
diff --git a/cobalt/debug/backend/script_debugger_agent.cc b/cobalt/debug/backend/script_debugger_agent.cc
index d9f024a..a1b3f86 100644
--- a/cobalt/debug/backend/script_debugger_agent.cc
+++ b/cobalt/debug/backend/script_debugger_agent.cc
@@ -15,6 +15,7 @@
 #include "cobalt/debug/backend/script_debugger_agent.h"
 
 #include <string>
+#include <utility>
 
 #include "base/strings/stringprintf.h"
 #include "cobalt/debug/json_object.h"
diff --git a/cobalt/debug/backend/tracing_agent.cc b/cobalt/debug/backend/tracing_agent.cc
index 1e10129..3c26d29 100644
--- a/cobalt/debug/backend/tracing_agent.cc
+++ b/cobalt/debug/backend/tracing_agent.cc
@@ -14,6 +14,8 @@
 
 #include "cobalt/debug/backend/tracing_agent.h"
 
+#include <utility>
+
 #include "base/bind.h"
 #include "base/values.h"
 #include "cobalt/script/script_debugger.h"
diff --git a/cobalt/debug/backend/tracing_agent.h b/cobalt/debug/backend/tracing_agent.h
index a9c0bda..f2101fb 100644
--- a/cobalt/debug/backend/tracing_agent.h
+++ b/cobalt/debug/backend/tracing_agent.h
@@ -33,7 +33,7 @@
 // TracingAgent doesn't use AgentBase.
 //
 // https://chromedevtools.github.io/devtools-protocol/tot/Tracing
-class TracingAgent : public script::ScriptDebugger::TraceDelegate  {
+class TracingAgent : public script::ScriptDebugger::TraceDelegate {
  public:
   explicit TracingAgent(DebugDispatcher* dispatcher,
                         script::ScriptDebugger* script_debugger);
diff --git a/cobalt/debug/console/command_manager.cc b/cobalt/debug/console/command_manager.cc
index a25879a..3c30ae3 100644
--- a/cobalt/debug/console/command_manager.cc
+++ b/cobalt/debug/console/command_manager.cc
@@ -15,6 +15,7 @@
 #include "cobalt/debug/console/command_manager.h"
 
 #include "base/logging.h"
+#include "starboard/string.h"
 
 namespace cobalt {
 namespace debug {
@@ -45,6 +46,16 @@
   manager->UnregisterCommandHandler(this);
 }
 
+// Returns true if the message is 'on', 'enable', or 'true'.
+// static
+bool ConsoleCommandManager::CommandHandler::IsOnEnableOrTrue(
+    const std::string& message) {
+  return (SbStringCompareNoCase("on", message.c_str()) == 0) ||
+         (SbStringCompareNoCase("enable", message.c_str()) == 0) ||
+         (SbStringCompareNoCase("true", message.c_str()) == 0);
+}
+
+
 void ConsoleCommandManager::HandleCommand(const std::string& command,
                                           const std::string& message) const {
   DCHECK_GT(command.length(), size_t(0));
diff --git a/cobalt/debug/console/command_manager.h b/cobalt/debug/console/command_manager.h
index 66a5601..1ace46c 100644
--- a/cobalt/debug/console/command_manager.h
+++ b/cobalt/debug/console/command_manager.h
@@ -61,6 +61,9 @@
     const std::string& short_help() const { return short_help_; }
     const std::string& long_help() const { return long_help_; }
 
+    // Returns true if the message is 'on', 'enable', or 'true'.
+    static bool IsOnEnableOrTrue(const std::string& message);
+
    private:
     std::string command_;
     CommandCallback callback_;
diff --git a/cobalt/debug/console/content/debugger_client.js b/cobalt/debug/console/content/debugger_client.js
index 2ceb3e0..daaa47b 100644
--- a/cobalt/debug/console/content/debugger_client.js
+++ b/cobalt/debug/console/content/debugger_client.js
@@ -16,6 +16,7 @@
   this.DEBUGGER_DETACHED = 0;
   this.DEBUGGER_ATTACHING = 1;
   this.DEBUGGER_ATTACHED = 2;
+  this.DEBUGGER_DISABLED = 3;
   this.scripts = [];
   this.attachState = this.DEBUGGER_DETACHED;
   this.onAttachCallback = this.onAttach.bind(this);
@@ -25,11 +26,11 @@
 
 // Attaches to the debugger and listens for debug events.
 // Enables the domains we care about here.
-DebuggerClient.prototype.attach = function() {
+DebuggerClient.prototype.attach = function () {
   if (this.attachState == this.DEBUGGER_DETACHED) {
     this.attachState = this.DEBUGGER_ATTACHING;
     printToMessageLog(MessageLog.INTERACTIVE,
-                      'Attempting to attach to debugger...');
+      'Attempting to attach to debugger...');
     this.scripts = [];
     debugHub.onEvent.addListener(this.onEventCallback);
     debugHub.attach(this.onAttachCallback);
@@ -38,14 +39,14 @@
     this.sendCommand('Runtime.enable');
   } else if (this.attachState == this.DEBUGGER_ATTACHING) {
     printToMessageLog(MessageLog.INTERACTIVE,
-                      'Still attempting to attach to debugger...');
+      'Still attempting to attach to debugger...');
   }
 }
 
-// Local method to list the parsed scripts the client has been notifed of
+// Local method to list the parsed scripts the client has been notified of
 // via the |Debugger.scriptParsed| event. Maps the possibly very long script id
 // from the debug dispatcher to a more human-readable 0-based index.
-DebuggerClient.prototype.getScripts = function(scriptId) {
+DebuggerClient.prototype.getScripts = function (scriptId) {
   for (var i in this.scripts) {
     var index = this.pad(i, 3);
     var scriptUrl = this.scripts[i].url;
@@ -57,7 +58,7 @@
 
 // Each debugger command has an associated callback to get the result.
 
-DebuggerClient.prototype.getScriptSource = function(scriptId) {
+DebuggerClient.prototype.getScriptSource = function (scriptId) {
   // If the id looks like an index into the local script array, look it up there.
   if (scriptId >= 0 && scriptId < this.scripts.length) {
     scriptId = this.scripts[scriptId].scriptId;
@@ -69,7 +70,7 @@
   this.sendCommand(method, params, callback);
 }
 
-DebuggerClient.prototype.getScriptSourceCallback = function(result) {
+DebuggerClient.prototype.getScriptSourceCallback = function (result) {
   var scriptSource = result.scriptSource;
   var lines = scriptSource.split('\n');
   for (var i = 0; i < lines.length; i++) {
@@ -78,7 +79,7 @@
   }
 }
 
-DebuggerClient.prototype.evaluate = function(expression, callback) {
+DebuggerClient.prototype.evaluate = function (expression, callback) {
   var method = 'Runtime.evaluate';
   var params = {};
   params.contextId = this.executionContext;
@@ -92,8 +93,8 @@
 
 // All debugger commands are routed through this method. Converts the command
 // parameters into a JSON string to pass to the debug dispatcher.
-DebuggerClient.prototype.sendCommand = function(method, commandParams,
-                                                callback) {
+DebuggerClient.prototype.sendCommand = function (method, commandParams,
+  callback) {
   var jsonParams = JSON.stringify(commandParams);
   var responseCallback = this.responseCallback.bind(this, method, callback);
   debugHub.sendCommand(method, jsonParams, responseCallback);
@@ -102,15 +103,15 @@
 // All command responses are routed through this method. Parses the JSON
 // response from the debug dispatcher, checks for errors and passes on to the
 // command-specific callback to handle the result.
-DebuggerClient.prototype.responseCallback = function(method, callback,
-                                                     responseString) {
+DebuggerClient.prototype.responseCallback = function (method, callback,
+  responseString) {
   var response = JSON.parse(responseString);
 
   if (response && response.error) {
     printToMessageLog(
-        MessageLog.ERROR,
-        '[ERROR(' + response.error.code + '):' + method + '] ' +
-            response.error.message);
+      MessageLog.ERROR,
+      '[ERROR(' + response.error.code + '):' + method + '] ' +
+      response.error.message);
   } else if (callback) {
     if (response) {
       callback(response.result);
@@ -122,10 +123,10 @@
 
 //-- Events.
 
-DebuggerClient.prototype.onAttach = function() {
+DebuggerClient.prototype.onAttach = function () {
   if (debugHub.lastError) {
     printToMessageLog(MessageLog.WARNING, 'Could not attach to debugger.');
-    this.attachState = this.DEBUGGER_DETACHED;
+    this.attachState = this.DEBUGGER_DISABLED;
   } else {
     printToMessageLog(MessageLog.INTERACTIVE, 'Debugger attached.');
     this.attachState = this.DEBUGGER_ATTACHED;
@@ -135,7 +136,7 @@
 // All events generated by the debug dispatcher are routed through this method.
 // Parses the JSON string and passes on to the appropriate handler according to
 // the method name.
-DebuggerClient.prototype.onEvent = function(method, paramString) {
+DebuggerClient.prototype.onEvent = function (method, paramString) {
   var params = JSON.parse(paramString);
   if (method == 'Console.messageAdded') {
     this.onConsoleMessageAdded(params)
@@ -152,32 +153,32 @@
   }
 }
 
-DebuggerClient.prototype.onDetached = function() {
+DebuggerClient.prototype.onDetached = function () {
   printToMessageLog(MessageLog.INTERACTIVE, 'Debugger detached.');
   this.attachState = this.DEBUGGER_DETACHED;
 }
 
-DebuggerClient.prototype.onExecutionContextCreated = function(params) {
+DebuggerClient.prototype.onExecutionContextCreated = function (params) {
   this.executionContext = params.context.id;
   printToMessageLog(MessageLog.INFO,
-                    'Execution context created: ' + this.executionContext);
+    'Execution context created: ' + this.executionContext);
 }
 
-DebuggerClient.prototype.onLogEntryAdded = function(params) {
+DebuggerClient.prototype.onLogEntryAdded = function (params) {
   printToMessageLog(params.entry.level, params.entry.text);
 }
 
 
-DebuggerClient.prototype.onConsoleMessageAdded = function(params) {
+DebuggerClient.prototype.onConsoleMessageAdded = function (params) {
   // Translate Console.messageAdded params to Runtime.consoleAPICalled params.
   var consoleApiParams = {
     type: params.message.level,
-    args: [ { type: 'string', value: params.message.text } ]
+    args: [{ type: 'string', value: params.message.text }]
   };
   this.onConsoleApiCalled(consoleApiParams);
 }
 
-DebuggerClient.prototype.onConsoleApiCalled = function(params) {
+DebuggerClient.prototype.onConsoleApiCalled = function (params) {
   var severity = params.type;
   if (severity === "assert") {
     severity = MessageLog.ERROR;
@@ -200,13 +201,13 @@
   printToMessageLog(MessageLog.CONSOLE + severity, message);
 }
 
-DebuggerClient.prototype.onScriptParsed = function(params) {
+DebuggerClient.prototype.onScriptParsed = function (params) {
   this.scripts.push(params);
 }
 
 //--- Utils.
 
-DebuggerClient.prototype.pad = function(number, minLength) {
+DebuggerClient.prototype.pad = function (number, minLength) {
   var result = number.toString();
   while (result.length < minLength) {
     result = ' ' + result;
diff --git a/cobalt/debug/console/content/message_log.js b/cobalt/debug/console/content/message_log.js
index c22b510..dfa989f 100644
--- a/cobalt/debug/console/content/message_log.js
+++ b/cobalt/debug/console/content/message_log.js
@@ -224,4 +224,3 @@
   this.displayPos = 0;
   this.displayMessages();
 }
-
diff --git a/cobalt/demos/content/animated-webp-performance-demo/10_turtle.webp b/cobalt/demos/content/animated-webp-performance-demo/10_turtle.webp
new file mode 100644
index 0000000..800df18
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/10_turtle.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/1_fan.webp b/cobalt/demos/content/animated-webp-performance-demo/1_fan.webp
new file mode 100644
index 0000000..f982fd8
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/1_fan.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/2_heart.webp b/cobalt/demos/content/animated-webp-performance-demo/2_heart.webp
new file mode 100644
index 0000000..79cdd39
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/2_heart.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/3_cry.webp b/cobalt/demos/content/animated-webp-performance-demo/3_cry.webp
new file mode 100644
index 0000000..c045e21
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/3_cry.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/4_clap.webp b/cobalt/demos/content/animated-webp-performance-demo/4_clap.webp
new file mode 100644
index 0000000..194a34c
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/4_clap.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/5_egg.webp b/cobalt/demos/content/animated-webp-performance-demo/5_egg.webp
new file mode 100644
index 0000000..995a4cb
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/5_egg.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/6_party.webp b/cobalt/demos/content/animated-webp-performance-demo/6_party.webp
new file mode 100644
index 0000000..d5dfb16
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/6_party.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/7_rofl.webp b/cobalt/demos/content/animated-webp-performance-demo/7_rofl.webp
new file mode 100644
index 0000000..4c6c375
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/7_rofl.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/8_melt.webp b/cobalt/demos/content/animated-webp-performance-demo/8_melt.webp
new file mode 100644
index 0000000..3feba61
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/8_melt.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/9_explode.webp b/cobalt/demos/content/animated-webp-performance-demo/9_explode.webp
new file mode 100644
index 0000000..3c548ce
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/9_explode.webp
Binary files differ
diff --git a/cobalt/demos/content/animated-webp-performance-demo/index.html b/cobalt/demos/content/animated-webp-performance-demo/index.html
new file mode 100644
index 0000000..5613cc8
--- /dev/null
+++ b/cobalt/demos/content/animated-webp-performance-demo/index.html
@@ -0,0 +1,166 @@
+<!DOCTYPE html>
+<!--
+ | Demo to help test animated webp performance metrics.
+ | We set up decoding speed tracking on a regular interval, and make a
+ | customizeable page with varying number of decoded images.
+ -->
+<html>
+
+<head>
+  <title>WebP performance test</title>
+  <style type="text/css">
+
+    body {
+      background-color: white;
+    }
+    .image {
+      width: 100px;
+      height: 100px;
+      background-size: contain;
+      display: inline-block;
+    }
+    .highlight {
+      background-color: rgb(0, 255, 0);
+    }
+  </style>
+  <script type="text/javascript">
+    window.onload = () => {
+      var size = 100; // Default pixel size of rendered images
+      var search = window.location.search;
+      var num = 1; // Default number of decoded images
+
+      // Grab URL search args
+      var matches = search.matchAll(/num=([0-9]+)/gm);
+      for (const match of matches) {
+        num = match[1]
+      }
+      var matches = search.matchAll(/size=([0-9]+)/gm);
+      for (const match of matches) {
+        size = match[1]
+      }
+
+      // Insert images into DOM tree
+      var layer = document.getElementById('layer');
+      function addImage(img, size) {
+        var el = document.createElement('span');
+        console.log(`adding ${img}`);
+        el.classList.add('image');
+        el.style['backgroundImage'] = `url(${img}.webp)`;
+        el.style['width'] = `${size}px`;
+        el.style['height'] = `${size}px`;
+        layer.appendChild(el)
+        console.log("Added image");
+      }
+      var images = [
+        "1_fan","2_heart","3_cry","4_clap", "5_egg",
+        "6_party","7_rofl","8_melt","9_explode","10_turtle"
+      ]
+      for(i = 0; i< num; i++)  {
+        (function(i) {
+          var img = images[i % 10];
+          window.setTimeout( () => {  addImage(img,size) } , 1 + i*40);
+        })(i)
+      }
+
+      // Set up function retrieve CVals.
+      var getCVal = function(name) { return 0 }
+      if (typeof h5vcc != "undefined" && typeof h5vcc.cVal != "undefined") {
+        getCVal = function(name) {
+          return h5vcc.cVal.getValue(name);
+        }
+      }
+
+      // Set up periodic stats tracking loop.
+      var last_frames = 0;
+      var last_time = performance.now();
+      function updateStats() {
+        var current_time = performance.now();
+        var time_delta_milliseconds = current_time - last_time;
+        var decoded_frames =
+          getCVal('Count.MainWebModule.AnimatedImage.DecodedFrames');
+        var underruns = getCVal('Count.MainWebModule.AnimatedImage.DecodingUnderruns');
+        var overruns = getCVal('Count.MainWebModule.AnimatedImage.DecodingOverruns');
+        var newly_decoded_frames = decoded_frames - last_frames;
+        var fps = parseInt( newly_decoded_frames * 100 / (time_delta_milliseconds / 1000.0)) / 100;
+        document.getElementById('Active').textContent =
+          getCVal('Count.MainWebModule.AnimatedImage.Active');
+        document.getElementById('DecodedFrames').textContent = decoded_frames;
+        document.getElementById('DecodingUnderruns').textContent = underruns
+        document.getElementById('DecodingOverruns').textContent = overruns;
+        document.getElementById('DecodedFPS').textContent = fps;
+        document.getElementById('UnderrunPercent').textContent =  parseInt(underruns / decoded_frames * 100.0);
+        document.getElementById('OverrunPercent').textContent =  parseInt(overruns / decoded_frames * 100.0);
+
+        last_frames = decoded_frames;
+        last_time = current_time;
+      }
+      window.setInterval(updateStats, 1000);
+
+      // Set up keyboard menu nav
+      var menu = document.getElementById('menu').children;
+      var index = 0;
+      function refresh() {
+        var textBox = document.getElementById('nav');
+        for (let i = 0; i < menu.length; i++) {
+          if (i == index) {
+            menu[i].classList.add('highlight');
+          } else {
+            menu[i].classList.remove('highlight');
+          }
+        }
+      }
+      document.addEventListener('keydown', function (e) {
+        // left, up, android left, up
+        if ([37, 38, 32782, 32780].includes(e.keyCode)) {
+          index -= 1;
+        //right, down, android right, down
+        } else if ([39, 40, 32781, 32783].includes(e.keyCode)) {
+          index += 1;
+        // enter, android enter
+        } else if ([13, 32768].includes(e.keyCode)) {
+          var el = document.getElementById('menu').children[index];
+          window.location = el.firstChild.href;
+        }
+        index = (index + menu.length) % menu.length;
+        refresh();
+      });
+      refresh();
+    }
+  </script>
+</head>
+
+<body>
+  <div class="background"></div>
+  <div id="menu">
+    <span><a href="?size=100&amp;num=1">1 small image</a></span>
+    <span><a href="?size=300&amp;num=1">1 large image</a></span>
+    <span><a href="?size=100&amp;num=2">2 small images</a></span>
+    <span><a href="?size=300&amp;num=2">2 large image</a></span>
+    <span><a href="?size=100&amp;num=3">3 small images</a></span>
+    <span><a href="?size=300&amp;num=3">3 large images</a></span>
+    <span><a href="?size=100&amp;num=4">4 small images</a></span>
+    <span><a href="?size=300&amp;num=4">4 large images</a></span>
+    <div></div>
+    <span><a href="?size=100&amp;num=4">5 small images</a></span>
+    <span><a href="?size=300&amp;num=4">5 large images</a></span>
+    <span><a href="?size=100&amp;num=6">6 small images</a></span>
+    <span><a href="?size=300&amp;num=6">6 large images</a></span>
+    <span><a href="?size=100&amp;num=8">8 small images</a></span>
+    <span><a href="?size=300&amp;num=8">8 large images</a></span>
+    <span><a href="?size=100&amp;num=10">10 small images</a></span>
+    <span><a href="?size=300&amp;num=10">10 large images</a></span>
+  </div>
+  <div id="metrics">
+    <div><span>Total images playing:</span><span id="Active"></span></div>
+    <div><span>Total frames decoded:</span><span id="DecodedFrames"></span></div>
+    <div><span>Total frames underrun:</span><span id="DecodingUnderruns"></span></div>
+    <div><span>Total frames overrun:</span><span id="DecodingOverruns"></span></div>
+    <div><span>Frames decoded per second:</span><span id="DecodedFPS"></span></div>
+    <div><span>Underrun %:</span><span id="UnderrunPercent"></span>
+      <span>Overrun %:</span><span id="OverrunPercent"></span></div>
+  </div>
+
+  <div class="layer" id="layer"></div>
+</body>
+
+</html>
diff --git a/cobalt/demos/content/animations-demo/index.html b/cobalt/demos/content/animations-demo/index.html
index 9ccc565..a74bde0 100644
--- a/cobalt/demos/content/animations-demo/index.html
+++ b/cobalt/demos/content/animations-demo/index.html
@@ -77,4 +77,4 @@
   <div class="fern-layer"></div>
   <div class="intro-layer"></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/demos/content/animations-demo/layer_fern.js b/cobalt/demos/content/animations-demo/layer_fern.js
index 403ffdb..d6393a4 100644
--- a/cobalt/demos/content/animations-demo/layer_fern.js
+++ b/cobalt/demos/content/animations-demo/layer_fern.js
@@ -59,4 +59,3 @@
   AppendFern(fernContainer, 0.28);
   layerElement.appendChild(fernContainer);
 }
-
diff --git a/cobalt/demos/content/animations-demo/layer_intro.css b/cobalt/demos/content/animations-demo/layer_intro.css
index 6c0ca7b..f393a8a 100644
--- a/cobalt/demos/content/animations-demo/layer_intro.css
+++ b/cobalt/demos/content/animations-demo/layer_intro.css
@@ -36,4 +36,4 @@
   font-size: 70px;
 
   animation: text-animation 4s 1s both;
-}
\ No newline at end of file
+}
diff --git a/cobalt/demos/content/animations-demo/layer_sun.js b/cobalt/demos/content/animations-demo/layer_sun.js
index 103da84..1b1492f 100644
--- a/cobalt/demos/content/animations-demo/layer_sun.js
+++ b/cobalt/demos/content/animations-demo/layer_sun.js
@@ -69,4 +69,3 @@
   }
   layerElement.appendChild(sunBladeLayerContainerElement);
 }
-
diff --git a/cobalt/demos/content/crash-demo/crash-demo.html b/cobalt/demos/content/crash-demo/crash-demo.html
index 5ea1ebf..ff48653 100644
--- a/cobalt/demos/content/crash-demo/crash-demo.html
+++ b/cobalt/demos/content/crash-demo/crash-demo.html
@@ -93,4 +93,4 @@
   </script>
 </body>
 
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/demos/content/lottie-player-demo/white_material_wave_loading.json b/cobalt/demos/content/lottie-player-demo/white_material_wave_loading.json
index cafcccf..b62abd4 100644
--- a/cobalt/demos/content/lottie-player-demo/white_material_wave_loading.json
+++ b/cobalt/demos/content/lottie-player-demo/white_material_wave_loading.json
@@ -1 +1 @@
-{"v":"4.6.8","fr":29.9700012207031,"ip":0,"op":40.0000016292334,"w":256,"h":256,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[208.6,127.969,0],"e":[208.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":30,"s":[208.6,88,0],"e":[208.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":40.0000016292334}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9843137,0.5490196,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[168.6,128,0],"e":[168.6,88,0],"to":[0,-6.66666650772095,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":25,"s":[168.6,88,0],"e":[168.6,128,0],"to":[0,0,0],"ti":[0,-6.66666650772095,0]},{"t":35.0000014255792}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9921569,0.8470588,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[128.594,127.969,0],"e":[128.594,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[128.594,88,0],"e":[128.594,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":30.0000012219251}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.2627451,0.627451,0.2784314,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":5,"s":[88.6,127.969,0],"e":[88.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[88.6,88,0],"e":[88.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":25.0000010182709}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.1176471,0.5333334,0.8980392,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[48.6,127.969,0],"e":[48.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[48.6,88,0],"e":[48.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":20.0000008146167}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.8980392,0.2235294,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1}]}
\ No newline at end of file
+{"v":"4.6.8","fr":29.9700012207031,"ip":0,"op":40.0000016292334,"w":256,"h":256,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[208.6,127.969,0],"e":[208.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":30,"s":[208.6,88,0],"e":[208.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":40.0000016292334}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9843137,0.5490196,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[168.6,128,0],"e":[168.6,88,0],"to":[0,-6.66666650772095,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":25,"s":[168.6,88,0],"e":[168.6,128,0],"to":[0,0,0],"ti":[0,-6.66666650772095,0]},{"t":35.0000014255792}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9921569,0.8470588,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[128.594,127.969,0],"e":[128.594,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[128.594,88,0],"e":[128.594,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":30.0000012219251}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.2627451,0.627451,0.2784314,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":5,"s":[88.6,127.969,0],"e":[88.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[88.6,88,0],"e":[88.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":25.0000010182709}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.1176471,0.5333334,0.8980392,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[48.6,127.969,0],"e":[48.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[48.6,88,0],"e":[48.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":20.0000008146167}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.8980392,0.2235294,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1}]}
diff --git a/cobalt/demos/content/material-design-spinner-demo/index.html b/cobalt/demos/content/material-design-spinner-demo/index.html
index d1a27a9..398d273 100644
--- a/cobalt/demos/content/material-design-spinner-demo/index.html
+++ b/cobalt/demos/content/material-design-spinner-demo/index.html
@@ -125,4 +125,4 @@
       </div>
     </div>
   </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/demos/content/media-element-demo/package-lock.json b/cobalt/demos/content/media-element-demo/package-lock.json
index 698b6f8..8c190bf 100644
--- a/cobalt/demos/content/media-element-demo/package-lock.json
+++ b/cobalt/demos/content/media-element-demo/package-lock.json
@@ -281,9 +281,9 @@
       "dev": true
     },
     "ansi-regex": {
-      "version": "4.1.0",
-      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
-      "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
+      "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
       "dev": true
     },
     "ansi-styles": {
@@ -396,9 +396,9 @@
       "dev": true
     },
     "async": {
-      "version": "2.6.3",
-      "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
-      "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+      "version": "2.6.4",
+      "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
+      "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
       "dev": true,
       "requires": {
         "lodash": "^4.17.14"
@@ -418,9 +418,9 @@
       "dev": true
     },
     "balanced-match": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
-      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+      "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
       "dev": true
     },
     "base": {
@@ -728,6 +728,16 @@
         "unset-value": "^1.0.0"
       }
     },
+    "call-bind": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+      "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1",
+        "get-intrinsic": "^1.0.2"
+      }
+    },
     "camelcase": {
       "version": "5.3.1",
       "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
@@ -929,7 +939,7 @@
     "concat-map": {
       "version": "0.0.1",
       "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
-      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+      "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
       "dev": true
     },
     "concat-stream": {
@@ -1018,6 +1028,30 @@
             "ssri": "^8.0.0",
             "tar": "^6.0.2",
             "unique-filename": "^1.1.1"
+          },
+          "dependencies": {
+            "tar": {
+              "version": "6.1.15",
+              "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz",
+              "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==",
+              "dev": true,
+              "requires": {
+                "chownr": "^2.0.0",
+                "fs-minipass": "^2.0.0",
+                "minipass": "^5.0.0",
+                "minizlib": "^2.1.1",
+                "mkdirp": "^1.0.3",
+                "yallist": "^4.0.0"
+              },
+              "dependencies": {
+                "minipass": {
+                  "version": "5.0.0",
+                  "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
+                  "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
+                  "dev": true
+                }
+              }
+            }
           }
         },
         "chownr": {
@@ -1048,18 +1082,15 @@
           }
         },
         "json5": {
-          "version": "2.1.3",
-          "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
-          "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
-          "dev": true,
-          "requires": {
-            "minimist": "^1.2.5"
-          }
+          "version": "2.2.3",
+          "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+          "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+          "dev": true
         },
         "loader-utils": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
-          "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+          "version": "2.0.4",
+          "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
+          "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
           "dev": true,
           "requires": {
             "big.js": "^5.2.2",
@@ -1180,9 +1211,9 @@
           }
         },
         "ssri": {
-          "version": "8.0.0",
-          "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
-          "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
+          "version": "8.0.1",
+          "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
+          "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
           "dev": true,
           "requires": {
             "minipass": "^3.1.1"
@@ -1307,9 +1338,9 @@
       "dev": true
     },
     "decode-uri-component": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
-      "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
+      "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
       "dev": true
     },
     "define-property": {
@@ -1428,24 +1459,24 @@
       }
     },
     "elliptic": {
-      "version": "6.5.3",
-      "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
-      "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
+      "version": "6.5.4",
+      "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
+      "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
       "dev": true,
       "requires": {
-        "bn.js": "^4.4.0",
-        "brorand": "^1.0.1",
+        "bn.js": "^4.11.9",
+        "brorand": "^1.1.0",
         "hash.js": "^1.0.0",
-        "hmac-drbg": "^1.0.0",
-        "inherits": "^2.0.1",
-        "minimalistic-assert": "^1.0.0",
-        "minimalistic-crypto-utils": "^1.0.0"
+        "hmac-drbg": "^1.0.1",
+        "inherits": "^2.0.4",
+        "minimalistic-assert": "^1.0.1",
+        "minimalistic-crypto-utils": "^1.0.1"
       },
       "dependencies": {
         "bn.js": {
-          "version": "4.11.9",
-          "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
-          "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==",
+          "version": "4.12.0",
+          "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+          "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
           "dev": true
         }
       }
@@ -1846,9 +1877,9 @@
       }
     },
     "follow-redirects": {
-      "version": "1.12.1",
-      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.12.1.tgz",
-      "integrity": "sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg==",
+      "version": "1.15.2",
+      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
+      "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
       "dev": true
     },
     "for-in": {
@@ -1910,12 +1941,30 @@
       "dev": true,
       "optional": true
     },
+    "function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+      "dev": true
+    },
     "get-caller-file": {
       "version": "2.0.5",
       "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
       "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
       "dev": true
     },
+    "get-intrinsic": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
+      "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1",
+        "has": "^1.0.3",
+        "has-proto": "^1.0.1",
+        "has-symbols": "^1.0.3"
+      }
+    },
     "get-value": {
       "version": "2.0.6",
       "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
@@ -1937,9 +1986,9 @@
       }
     },
     "glob-parent": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
-      "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+      "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
       "dev": true,
       "requires": {
         "is-glob": "^4.0.1"
@@ -2000,12 +2049,33 @@
       "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
       "dev": true
     },
+    "has": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1"
+      }
+    },
     "has-flag": {
       "version": "3.0.0",
       "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
       "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
       "dev": true
     },
+    "has-proto": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
+      "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
+      "dev": true
+    },
+    "has-symbols": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+      "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+      "dev": true
+    },
     "has-value": {
       "version": "1.0.0",
       "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
@@ -2087,7 +2157,7 @@
     "hmac-drbg": {
       "version": "1.0.1",
       "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
-      "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+      "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==",
       "dev": true,
       "requires": {
         "hash.js": "^1.0.3",
@@ -2202,9 +2272,9 @@
       "dev": true
     },
     "ini": {
-      "version": "1.3.5",
-      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
-      "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
       "dev": true
     },
     "interpret": {
@@ -2387,9 +2457,9 @@
       "dev": true
     },
     "json5": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
-      "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+      "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
       "dev": true,
       "requires": {
         "minimist": "^1.2.0"
@@ -2408,9 +2478,9 @@
       "dev": true
     },
     "loader-utils": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
-      "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz",
+      "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==",
       "dev": true,
       "requires": {
         "big.js": "^5.2.2",
@@ -2429,9 +2499,9 @@
       }
     },
     "lodash": {
-      "version": "4.17.19",
-      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
-      "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+      "version": "4.17.21",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
       "dev": true
     },
     "lru-cache": {
@@ -2549,22 +2619,22 @@
     "minimalistic-crypto-utils": {
       "version": "1.0.1",
       "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
-      "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
+      "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==",
       "dev": true
     },
     "minimatch": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
-      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+      "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
       "dev": true,
       "requires": {
         "brace-expansion": "^1.1.7"
       }
     },
     "minimist": {
-      "version": "1.2.5",
-      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
-      "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+      "version": "1.2.8",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+      "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
       "dev": true
     },
     "minipass": {
@@ -2810,6 +2880,12 @@
         }
       }
     },
+    "object-inspect": {
+      "version": "1.12.3",
+      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
+      "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
+      "dev": true
+    },
     "object-visit": {
       "version": "1.0.1",
       "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
@@ -3115,10 +3191,13 @@
       "dev": true
     },
     "qs": {
-      "version": "6.9.4",
-      "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
-      "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==",
-      "dev": true
+      "version": "6.11.2",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
+      "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
+      "dev": true,
+      "requires": {
+        "side-channel": "^1.0.4"
+      }
     },
     "querystring": {
       "version": "0.2.0",
@@ -3426,6 +3505,17 @@
       "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
       "dev": true
     },
+    "side-channel": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+      "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+      "dev": true,
+      "requires": {
+        "call-bind": "^1.0.0",
+        "get-intrinsic": "^1.0.2",
+        "object-inspect": "^1.9.0"
+      }
+    },
     "slash": {
       "version": "3.0.0",
       "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
@@ -3565,9 +3655,9 @@
       }
     },
     "source-map-support": {
-      "version": "0.5.19",
-      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz",
-      "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
+      "version": "0.5.21",
+      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+      "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
       "dev": true,
       "requires": {
         "buffer-from": "^1.0.0",
@@ -3598,9 +3688,9 @@
       }
     },
     "ssri": {
-      "version": "6.0.1",
-      "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz",
-      "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==",
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz",
+      "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==",
       "dev": true,
       "requires": {
         "figgy-pudding": "^3.5.1"
@@ -3710,44 +3800,10 @@
       "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
       "dev": true
     },
-    "tar": {
-      "version": "6.0.5",
-      "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz",
-      "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==",
-      "dev": true,
-      "requires": {
-        "chownr": "^2.0.0",
-        "fs-minipass": "^2.0.0",
-        "minipass": "^3.0.0",
-        "minizlib": "^2.1.1",
-        "mkdirp": "^1.0.3",
-        "yallist": "^4.0.0"
-      },
-      "dependencies": {
-        "chownr": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
-          "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
-          "dev": true
-        },
-        "mkdirp": {
-          "version": "1.0.4",
-          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-          "dev": true
-        },
-        "yallist": {
-          "version": "4.0.0",
-          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-          "dev": true
-        }
-      }
-    },
     "terser": {
-      "version": "4.8.0",
-      "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
-      "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
+      "version": "4.8.1",
+      "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz",
+      "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==",
       "dev": true,
       "requires": {
         "commander": "^2.20.0",
@@ -4352,9 +4408,9 @@
       "dev": true
     },
     "y18n": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
-      "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+      "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
       "dev": true
     },
     "yallist": {
diff --git a/cobalt/demos/content/media-element-demo/public/assets/ac3.mp4 b/cobalt/demos/content/media-element-demo/public/assets/ac3.mp4
new file mode 100644
index 0000000..683e060
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/ac3.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/dash-audio.mp4 b/cobalt/demos/content/media-element-demo/public/assets/dash-audio.mp4
new file mode 100644
index 0000000..b26721c
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/dash-audio.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/dash-video-1080p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/dash-video-1080p.mp4
new file mode 100644
index 0000000..e5513e8
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/dash-video-1080p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/dash-video-240p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/dash-video-240p.mp4
new file mode 100644
index 0000000..f8f78dd
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/dash-video-240p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/eac3.mp4 b/cobalt/demos/content/media-element-demo/public/assets/eac3.mp4
new file mode 100644
index 0000000..a228a2f
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/eac3.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p.mp4
new file mode 100644
index 0000000..18baf1d
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p_720p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p_720p.mp4
new file mode 100644
index 0000000..6122f7b
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/hvc1_480p_720p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/hvc1_720p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/hvc1_720p.mp4
new file mode 100644
index 0000000..7599258
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/hvc1_720p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/hvc1_hdr_480p.mp4 b/cobalt/demos/content/media-element-demo/public/assets/hvc1_hdr_480p.mp4
new file mode 100644
index 0000000..580b00c
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/hvc1_hdr_480p.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/public/assets/progressive.mp4 b/cobalt/demos/content/media-element-demo/public/assets/progressive.mp4
new file mode 100644
index 0000000..2299f73
--- /dev/null
+++ b/cobalt/demos/content/media-element-demo/public/assets/progressive.mp4
Binary files differ
diff --git a/cobalt/demos/content/media-element-demo/src/components/component.ts b/cobalt/demos/content/media-element-demo/src/components/component.ts
index 55f9474..2caacdd 100644
--- a/cobalt/demos/content/media-element-demo/src/components/component.ts
+++ b/cobalt/demos/content/media-element-demo/src/components/component.ts
@@ -35,7 +35,7 @@
 
 /**
  * Renders a component to the container element.
- * @param CtorOrFunc Can be either a component contructor or a component
+ * @param CtorOrFunc Can be either a component constructor or a component
  *     function. The component function is easier to write but does not keep
  *     track of internal states.
  * @param props Component props.
diff --git a/cobalt/demos/content/media-element-demo/src/components/watch.ts b/cobalt/demos/content/media-element-demo/src/components/watch.ts
index 5503d44..6089099 100644
--- a/cobalt/demos/content/media-element-demo/src/components/watch.ts
+++ b/cobalt/demos/content/media-element-demo/src/components/watch.ts
@@ -25,7 +25,7 @@
 
   /**
    * Listens to any key event and displays a message. Bootstraps the page once
-   * user interacts with the docuemnt.
+   * user interacts with the document.
    */
   private waitForInteraction() {
     const messageEl = document.createElement('h1');
diff --git a/cobalt/demos/content/media-element-demo/src/utils/limited_source_buffer.ts b/cobalt/demos/content/media-element-demo/src/utils/limited_source_buffer.ts
index 63f5aae..21b77e0 100644
--- a/cobalt/demos/content/media-element-demo/src/utils/limited_source_buffer.ts
+++ b/cobalt/demos/content/media-element-demo/src/utils/limited_source_buffer.ts
@@ -5,7 +5,7 @@
 
 /**
  * A source buffer wrapper that limits the array buffers that can be added to
- * the source buffer. If the bufferred length exceeds the limit, it will
+ * the source buffer. If the buffered length exceeds the limit, it will
  * automatically pauses and waits until the remaining playback time is below the
  * limit.
  */
diff --git a/cobalt/demos/content/selector-tester/selector-tester.html b/cobalt/demos/content/selector-tester/selector-tester.html
index 937066f..2f1a01e 100644
--- a/cobalt/demos/content/selector-tester/selector-tester.html
+++ b/cobalt/demos/content/selector-tester/selector-tester.html
@@ -113,7 +113,7 @@
 
   <my-div style="position:absolute; left: 50%; width: 40%;">
     <div id="title">
-    <markup>&lt;div id="titile"&gt;</markup>
+    <markup>&lt;div id="title"&gt;</markup>
       Hello, Cobalt!
     <markup>&lt;/div&gt;</markup>
     </div>
diff --git a/cobalt/demos/content/smooth-animations-demo/index.html b/cobalt/demos/content/smooth-animations-demo/index.html
index 917415d..6ba0eb9 100644
--- a/cobalt/demos/content/smooth-animations-demo/index.html
+++ b/cobalt/demos/content/smooth-animations-demo/index.html
@@ -48,7 +48,7 @@
       subContainer.className = 'sub-container';
       subContainer.style.width = '50%';
       subContainer.style.height = '50%';
-      return subContainer;      
+      return subContainer;
     }
     // Build a complicated scene in order to force a layout that takes a long
     // time.
diff --git a/cobalt/demos/content/smooth-key-scroll/index.html b/cobalt/demos/content/smooth-key-scroll/index.html
index 4ad10f3..1ebe7cd 100644
--- a/cobalt/demos/content/smooth-key-scroll/index.html
+++ b/cobalt/demos/content/smooth-key-scroll/index.html
@@ -183,4 +183,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/demos/content/telemetry/index.html b/cobalt/demos/content/telemetry/index.html
index d3744a8..3dc2958 100644
--- a/cobalt/demos/content/telemetry/index.html
+++ b/cobalt/demos/content/telemetry/index.html
@@ -50,7 +50,6 @@
             log('Enabling metrics reporting: metrics.enable()');
             metrics.enable();
             log(`Setting metric event interval: metrics.setMetricEventInterval(${EVENT_INTERVAL_SECS})`);
-            log(`Note that the first upload interval will always be 60 seconds, regardless of metricEventInterval.`);
             metrics.setMetricEventInterval(EVENT_INTERVAL_SECS);
             log('Binding metric event handler: metrics.onMetricEvent(metricEventHandler)');
             metrics.onMetricEvent(metricEventHandler);
@@ -62,8 +61,12 @@
             log.textContent = logText;
             LOG_CONTAINER.appendChild(log);
         }
-
-        init();
+        // Persistent settings are only ready/validated after the browser module
+        // has fully loaded. As telemetry uses persistent settings, everything
+        // must happen after onload.
+        window.onload = function() {
+            init();
+        }
     </script>
 </body>
 
diff --git a/cobalt/demos/content/transitions-demo/transitions-demo.html b/cobalt/demos/content/transitions-demo/transitions-demo.html
index 65f6217..9a09ec1 100644
--- a/cobalt/demos/content/transitions-demo/transitions-demo.html
+++ b/cobalt/demos/content/transitions-demo/transitions-demo.html
@@ -372,4 +372,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/demos/content/transparent-animated-webp-demo/index.html b/cobalt/demos/content/transparent-animated-webp-demo/index.html
index e3fda4a..2ba6f5d 100644
--- a/cobalt/demos/content/transparent-animated-webp-demo/index.html
+++ b/cobalt/demos/content/transparent-animated-webp-demo/index.html
@@ -67,4 +67,4 @@
   </div>
 </body>
 
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/demos/content/video-background-demo/dash-audio.mp4 b/cobalt/demos/content/video-background-demo/dash-audio.mp4
new file mode 100644
index 0000000..b26721c
--- /dev/null
+++ b/cobalt/demos/content/video-background-demo/dash-audio.mp4
Binary files differ
diff --git a/cobalt/demos/content/video-background-demo/sddefault.jpg b/cobalt/demos/content/video-background-demo/sddefault.jpg
new file mode 100644
index 0000000..ef2dae5
--- /dev/null
+++ b/cobalt/demos/content/video-background-demo/sddefault.jpg
Binary files differ
diff --git a/cobalt/demos/content/video-background-demo/video-background-demo.html b/cobalt/demos/content/video-background-demo/video-background-demo.html
new file mode 100644
index 0000000..c68d4da
--- /dev/null
+++ b/cobalt/demos/content/video-background-demo/video-background-demo.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<!--
+ | Copyright 2023 The Cobalt Authors. All Rights Reserved.
+ |
+ | Licensed under the Apache License, Version 2.0 (the "License");
+ | you may not use this file except in compliance with the License.
+ | You may obtain a copy of the License at
+ |
+ |     http://www.apache.org/licenses/LICENSE-2.0
+ |
+ | Unless required by applicable law or agreed to in writing, software
+ | distributed under the License is distributed on an "AS IS" BASIS,
+ | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ | See the License for the specific language governing permissions and
+ | limitations under the License.
+ -->
+
+<html>
+  <head>
+    <title>Video Elements With Background</title>
+    <style>
+        body {
+          margin: 0;
+        }
+
+        video {
+          width: 100%;
+          height: 100%;
+        }
+
+        #ui-layer {
+          display: flex;
+          justify-content: space-between;
+          position: absolute;
+          top: 15%;
+          height: 85%;
+          width: 100%;
+          background-color: rgba(33, 33, 33, .75);
+          padding: 24px;
+          margin: auto;
+        }
+
+        .item {
+          width: 320px;
+          height: 240px;
+          display: inline-block;
+          margin: 24px;
+          vertical-align: middle;
+        }
+    </style>
+  </head>
+  <body>
+    <div id="ui-layer">
+      <div class="item">
+        <video id="video1" muted="1" style="background-color: #4285F4">
+        </video>
+      </div>
+      <div class="item">
+        <video id="video2" muted="1"
+           style="background-image: url(sddefault.jpg);
+                  background-size: 320px 240px;">
+        </video>
+      </div>
+      <div class="item">
+        <video id="video3" muted="1" style="background-color: #4285F4">
+        </video>
+      </div>
+      <div class="item">
+        <video id="video4" muted="1"
+           style="background-image: url(sddefault.jpg);
+                  background-size: 320px 240px;">
+        </video>
+      </div>
+    </div>
+    <script src="video-background-demo.js"></script>
+  </body>
+</html>
diff --git a/cobalt/demos/content/video-background-demo/video-background-demo.js b/cobalt/demos/content/video-background-demo/video-background-demo.js
new file mode 100644
index 0000000..1c50180
--- /dev/null
+++ b/cobalt/demos/content/video-background-demo/video-background-demo.js
@@ -0,0 +1,106 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+var nextVideoElementIndex = 0;
+var audioData;
+var videoData;
+
+function downloadMediaData(downloadedCallback) {
+  var xhr = new XMLHttpRequest;
+
+  xhr.onload = function() {
+    audioData = xhr.response;
+    console.log("Downloaded " + audioData.byteLength + " of audio data.");
+
+    xhr.onload = function() {
+      videoData = xhr.response;
+      console.log("Downloaded " + videoData.byteLength + " of video data.");
+      downloadedCallback();
+    }
+
+    xhr.open("GET", "vp9-720p.webm", true);
+    xhr.send();
+  }
+
+  xhr.open("GET", "dash-audio.mp4", true);
+  xhr.responseType = "arraybuffer";
+  xhr.send();
+}
+
+function playVideoOn(videoElement) {
+  var ms = new MediaSource;
+  ms.addEventListener('sourceopen', function() {
+    console.log("Creating SourceBuffer objects.");
+    var audioBuffer = ms.addSourceBuffer('audio/mp4; codecs="mp4a.40.2"');
+    var videoBuffer = ms.addSourceBuffer('video/webm; codecs="vp9"; decode-to-texture=true');
+    audioBuffer.addEventListener("updateend", function() {
+      audioBuffer.abort();
+      videoBuffer.addEventListener("updateend", function() {
+        setTimeout(function() {
+          videoBuffer.addEventListener("updateend", function() {
+            videoBuffer.abort();
+            ms.endOfStream();
+            videoElement.ontimeupdate = function() {
+              if (videoElement.currentTime > 10) {
+                console.log("Stop playback.");
+                videoElement.src = '';
+                videoElement.load();
+                videoElement.ontimeupdate = null;
+              }
+            }
+            console.log("Start playback.");
+            videoElement.play();
+          });
+          videoBuffer.appendBuffer(videoData.slice(1024));
+        }, 5000);
+      });
+      videoBuffer.appendBuffer(videoData.slice(0, 1024));
+    });
+    audioBuffer.appendBuffer(audioData);
+  });
+
+  console.log("Attaching MediaSource to video element.");
+  videoElement.src = URL.createObjectURL(ms);
+}
+
+function setupKeyHandler() {
+  document.onkeydown = function() {
+    videoElements = document.getElementsByTagName('video');
+    for(let i = 0; i < videoElements.length; i++) {
+      if (videoElements[i].playing) {
+        console.log("Ignore key press as a video is still playing.");
+        return;
+      }
+    }
+
+    nextVideoElementIndex = nextVideoElementIndex % videoElements.length;
+
+    console.log("Trying to play next video at index " + nextVideoElementIndex);
+
+    var currentVideoElement = videoElements[nextVideoElementIndex];
+    if (currentVideoElement.setMaxVideoCapabilities) {
+      if (nextVideoElementIndex < videoElements.length / 2) {
+        currentVideoElement.setMaxVideoCapabilities("");
+      } else {
+        currentVideoElement.setMaxVideoCapabilities("width=1920; height=1080");
+      }
+    }
+
+    nextVideoElementIndex++;
+
+    playVideoOn(currentVideoElement);
+  };
+}
+
+downloadMediaData(setupKeyHandler);
diff --git a/cobalt/demos/content/video-background-demo/vp9-720p.webm b/cobalt/demos/content/video-background-demo/vp9-720p.webm
new file mode 100644
index 0000000..08a670e
--- /dev/null
+++ b/cobalt/demos/content/video-background-demo/vp9-720p.webm
Binary files differ
diff --git a/cobalt/doc/cvals.md b/cobalt/doc/cvals.md
index 6accd8f..68317e4 100644
--- a/cobalt/doc/cvals.md
+++ b/cobalt/doc/cvals.md
@@ -119,6 +119,18 @@
     compatibility violations encountered.
 *   **Count.XHR** - The total number of xhr::XMLHttpRequest in existence
     globally.
+*   **Count.MainWebModule.AnimatedImage.Active** - The total number of currently
+    active animated image decoders. Same image from a single URL source rendered
+    multiple times across the content counts as one decoder.
+*   **Count.MainWebModule.AnimatedImage.DecodedFrames** - Total number of decoded
+    frames across all active image decoders. This number resets only when
+    WebModule gets re-created - e.g. page reload, navigation.
+*   **Count.MainWebModule.AnimatedImage.DecodingUnderruns** - Total number of
+    frames when animated image decoding has fallen behind real-time, as defined
+    by image frame exposure times. This indicates a CPU bottleneck.
+*   **Count.MainWebModule.AnimatedImage.DecodingOverruns** - Total number of
+    frames when animated image decoding has been attempted too early, before
+    next frame exposure time. This indicates a timing issue in platform.
 
 ### Event
 
diff --git a/cobalt/dom/BUILD.gn b/cobalt/dom/BUILD.gn
index e25b7f2..9ce1859 100644
--- a/cobalt/dom/BUILD.gn
+++ b/cobalt/dom/BUILD.gn
@@ -322,7 +322,7 @@
   ]
 
   deps = [
-    ":licenses",
+    ":embed_license_as_header_file",
     "//base:i18n",
     "//cobalt/base",
     "//cobalt/browser:generated_bindings",
@@ -349,7 +349,6 @@
     "//cobalt/worker",
     "//cobalt/xhr:global_stats",
     "//crypto",
-    "//nb",
     "//net",
     "//starboard/common",
     "//third_party/icu:icuuc",
@@ -359,13 +358,13 @@
   ]
 }
 
-copy("licenses") {
-  install_content = true
-  license_path =
-      "licenses/platform/$cobalt_licenses_platform/licenses_cobalt.txt"
-  sources = [ "$static_contents_source_dir/$license_path" ]
-  outputs =
-      [ "$sb_static_contents_output_data_dir/licenses/licenses_cobalt.txt" ]
+action("embed_license_as_header_file") {
+  script = "//cobalt/build/generate_data_header.py"
+  license_path = "//cobalt/content/licenses/platform/$cobalt_licenses_platform/licenses_cobalt.txt"
+  inputs = [ "$license_path" ]
+  outputs = [ "$target_gen_dir/embedded_licenses.h" ]
+  args = [ "DOMEmbeddedResources" ] + rebase_path(outputs, root_build_dir) +
+         rebase_path(inputs, root_build_dir)
 }
 
 target(gtest_target_type, "dom_test") {
@@ -438,12 +437,9 @@
     "//cobalt/storage/store:memory_store",
     "//cobalt/test:run_all_unittests",
     "//cobalt/web:dom_exception",
-    "//nb",
     "//net:test_support",
     "//testing/gmock",
     "//testing/gtest",
     "//url",
   ]
-
-  data_deps = [ ":licenses" ]
 }
diff --git a/cobalt/dom/abort_controller.cc b/cobalt/dom/abort_controller.cc
index 68ccb9a..9d1c2e9 100644
--- a/cobalt/dom/abort_controller.cc
+++ b/cobalt/dom/abort_controller.cc
@@ -21,9 +21,7 @@
   abort_signal_ = new AbortSignal(settings);
 }
 
-void AbortController::Abort() {
-  abort_signal_->SignalAbort();
-}
+void AbortController::Abort() { abort_signal_->SignalAbort(); }
 
 void AbortController::TraceMembers(script::Tracer* tracer) {
   tracer->Trace(abort_signal_);
diff --git a/cobalt/dom/application_lifecycle_state_test.cc b/cobalt/dom/application_lifecycle_state_test.cc
index 5dd3c37..4ebf38c 100644
--- a/cobalt/dom/application_lifecycle_state_test.cc
+++ b/cobalt/dom/application_lifecycle_state_test.cc
@@ -12,15 +12,14 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/dom/application_lifecycle_state.h"
 
+#include <memory>
+
 #include "base/debug/stack_trace.h"
 #include "base/logging.h"
 #include "cobalt/base/application_state.h"
 #include "cobalt/dom/visibility_state.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
@@ -42,6 +41,7 @@
   MOCK_METHOD1(OnVisibilityStateChanged,
                void(VisibilityState visibility_state));
   MOCK_METHOD1(OnFrozennessChanged, void(bool is_frozen));
+
  protected:
   MockApplicationLifecycleStateObserver() {}
 };
diff --git a/cobalt/dom/attr.h b/cobalt/dom/attr.h
index f94a23e..3113d4e 100644
--- a/cobalt/dom/attr.h
+++ b/cobalt/dom/attr.h
@@ -34,8 +34,7 @@
 //
 // This class is designed to proxy the actual attribute value which is stored
 // in the Element and be created only on demand.
-class Attr : public script::Wrappable,
-             public base::SupportsWeakPtr<Attr> {
+class Attr : public script::Wrappable, public base::SupportsWeakPtr<Attr> {
  public:
   // If container is NULL, the Attr will be created in a detached state.
   Attr(const std::string& name, const std::string& value,
diff --git a/cobalt/dom/audio_track.h b/cobalt/dom/audio_track.h
index b3869e6..08ebd85 100644
--- a/cobalt/dom/audio_track.h
+++ b/cobalt/dom/audio_track.h
@@ -61,12 +61,9 @@
   static bool IsValidKind(const char* kind) {
     // https://www.w3.org/TR/html51/semantics-embedded-content.html#dom-audiotrack-audiotrackkind
     return strcmp(kind, "alternative") == 0 ||
-           strcmp(kind, "descriptions") == 0 ||
-           strcmp(kind, "main") == 0 ||
-           strcmp(kind, "main-desc") == 0 ||
-           strcmp(kind, "translation") == 0 ||
-           strcmp(kind, "commentary") == 0 ||
-           strlen(kind) == 0;
+           strcmp(kind, "descriptions") == 0 || strcmp(kind, "main") == 0 ||
+           strcmp(kind, "main-desc") == 0 || strcmp(kind, "translation") == 0 ||
+           strcmp(kind, "commentary") == 0 || strlen(kind) == 0;
   }
 
   DEFINE_WRAPPABLE_TYPE(AudioTrack);
diff --git a/cobalt/dom/base64.cc b/cobalt/dom/base64.cc
index e233070..621edb6 100644
--- a/cobalt/dom/base64.cc
+++ b/cobalt/dom/base64.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <algorithm>
-
 #include "cobalt/dom/base64.h"
 
+#include <algorithm>
+
 #include "base/base64.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/c_val_view.h b/cobalt/dom/c_val_view.h
index 50905ee..fd9d111 100644
--- a/cobalt/dom/c_val_view.h
+++ b/cobalt/dom/c_val_view.h
@@ -19,8 +19,8 @@
 
 #include "base/memory/ref_counted.h"
 #include "base/optional.h"
-#include "cobalt/script/wrappable.h"
 #include "cobalt/script/sequence.h"
+#include "cobalt/script/wrappable.h"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/camera_3d.cc b/cobalt/dom/camera_3d.cc
index 8d75e92..3e491bb 100644
--- a/cobalt/dom/camera_3d.cc
+++ b/cobalt/dom/camera_3d.cc
@@ -16,11 +16,10 @@
 
 #include "cobalt/dom/camera_3d.h"
 
-#include "third_party/glm/glm/gtx/euler_angles.hpp"
-
 #include "base/basictypes.h"
 #include "base/time/time.h"
 #include "cobalt/dom/device_orientation_event.h"
+#include "third_party/glm/glm/gtx/euler_angles.hpp"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/captions/caption_character_edge_style.idl b/cobalt/dom/captions/caption_character_edge_style.idl
index fe27590..b8bd92f 100644
--- a/cobalt/dom/captions/caption_character_edge_style.idl
+++ b/cobalt/dom/captions/caption_character_edge_style.idl
@@ -18,4 +18,4 @@
   "depressed",
   "uniform",
   "drop-shadow",
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/captions/caption_color.idl b/cobalt/dom/captions/caption_color.idl
index f1ea52d..449dc9c 100644
--- a/cobalt/dom/captions/caption_color.idl
+++ b/cobalt/dom/captions/caption_color.idl
@@ -22,4 +22,4 @@
   "red",
   "white",
   "yellow",
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/captions/caption_font_family.idl b/cobalt/dom/captions/caption_font_family.idl
index 964b1af..a913660 100644
--- a/cobalt/dom/captions/caption_font_family.idl
+++ b/cobalt/dom/captions/caption_font_family.idl
@@ -20,4 +20,4 @@
   "proportional-sans-serif",
   "proportional-serif",
   "small-capitals",
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/captions/caption_font_size_percentage.idl b/cobalt/dom/captions/caption_font_size_percentage.idl
index 82d5566..afd2db4 100644
--- a/cobalt/dom/captions/caption_font_size_percentage.idl
+++ b/cobalt/dom/captions/caption_font_size_percentage.idl
@@ -25,4 +25,4 @@
   "250",
   "275",
   "300",
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/captions/caption_opacity_percentage.idl b/cobalt/dom/captions/caption_opacity_percentage.idl
index b4b6e7f..58e9c33 100644
--- a/cobalt/dom/captions/caption_opacity_percentage.idl
+++ b/cobalt/dom/captions/caption_opacity_percentage.idl
@@ -18,4 +18,4 @@
   "50",
   "75",
   "100",
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/captions/system_caption_settings.cc b/cobalt/dom/captions/system_caption_settings.cc
index fa07b56..7308247 100644
--- a/cobalt/dom/captions/system_caption_settings.cc
+++ b/cobalt/dom/captions/system_caption_settings.cc
@@ -12,11 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/dom/captions/system_caption_settings.h"
+
 #include <string>
 
 #include "base/compiler_specific.h"
 #include "base/logging.h"
-
 #include "cobalt/base/accessibility_caption_settings_changed_event.h"
 #include "cobalt/base/event_dispatcher.h"
 #include "cobalt/dom/captions/caption_character_edge_style.h"
@@ -25,9 +26,7 @@
 #include "cobalt/dom/captions/caption_font_size_percentage.h"
 #include "cobalt/dom/captions/caption_opacity_percentage.h"
 #include "cobalt/dom/captions/caption_state.h"
-#include "cobalt/dom/captions/system_caption_settings.h"
 #include "cobalt/web/event_target.h"
-
 #include "starboard/accessibility.h"
 #include "starboard/memory.h"
 
diff --git a/cobalt/dom/css_animations_adapter.cc b/cobalt/dom/css_animations_adapter.cc
index c886de6..bd09c9c 100644
--- a/cobalt/dom/css_animations_adapter.cc
+++ b/cobalt/dom/css_animations_adapter.cc
@@ -15,6 +15,7 @@
 #include "cobalt/dom/css_animations_adapter.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "cobalt/base/tokens.h"
diff --git a/cobalt/dom/css_animations_adapter.h b/cobalt/dom/css_animations_adapter.h
index 2574e4e..15e8389 100644
--- a/cobalt/dom/css_animations_adapter.h
+++ b/cobalt/dom/css_animations_adapter.h
@@ -18,6 +18,7 @@
 #include <map>
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/memory/ref_counted.h"
 #include "cobalt/cssom/animation.h"
diff --git a/cobalt/dom/css_transitions_adapter.cc b/cobalt/dom/css_transitions_adapter.cc
index 6e91f68..64ffdae 100644
--- a/cobalt/dom/css_transitions_adapter.cc
+++ b/cobalt/dom/css_transitions_adapter.cc
@@ -15,6 +15,7 @@
 #include "cobalt/dom/css_transitions_adapter.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "cobalt/base/tokens.h"
diff --git a/cobalt/dom/css_transitions_adapter.h b/cobalt/dom/css_transitions_adapter.h
index c3a23c1..3472572 100644
--- a/cobalt/dom/css_transitions_adapter.h
+++ b/cobalt/dom/css_transitions_adapter.h
@@ -17,6 +17,7 @@
 
 #include <map>
 #include <memory>
+#include <utility>
 
 #include "base/basictypes.h"
 #include "base/compiler_specific.h"
diff --git a/cobalt/dom/device_orientation_event_init.idl b/cobalt/dom/device_orientation_event_init.idl
index d84a3ef..2943274 100644
--- a/cobalt/dom/device_orientation_event_init.idl
+++ b/cobalt/dom/device_orientation_event_init.idl
@@ -18,4 +18,4 @@
   double? beta = null;
   double? gamma = null;
   boolean absolute = false;
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/document.cc b/cobalt/dom/document.cc
index b3d1ca0..e405cd9 100644
--- a/cobalt/dom/document.cc
+++ b/cobalt/dom/document.cc
@@ -64,7 +64,6 @@
 #include "cobalt/web/custom_event.h"
 #include "cobalt/web/dom_exception.h"
 #include "cobalt/web/message_event.h"
-#include "nb/memory_scope.h"
 
 using cobalt::cssom::ViewportSize;
 
@@ -234,7 +233,6 @@
 scoped_refptr<web::Event> Document::CreateEvent(
     const std::string& interface_name,
     script::ExceptionState* exception_state) {
-  TRACK_MEMORY_SCOPE("DOM");
   // https://www.w3.org/TR/dom/#dom-document-createevent
   // The match of interface name is case-insensitive.
   if (base::strcasecmp(interface_name.c_str(), "event") == 0 ||
@@ -992,11 +990,9 @@
       AppendRulesFromCSSStyleSheetToSelectorTree(css_style_sheet,
                                                  selector_tree_.get());
     }
-#if defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
     // Now that the selector tree is fully updated, validate its version
     // compatibility.
     selector_tree_->ValidateVersionCompatibility();
-#endif  // defined(COBALT_ENABLE_VERSION_COMPATIBILITY_VALIDATIONS)
 
     scoped_refptr<HTMLHtmlElement> current_html = html();
     if (current_html) {
diff --git a/cobalt/dom/document_timeline.cc b/cobalt/dom/document_timeline.cc
index ce6ff25..a2c8529 100644
--- a/cobalt/dom/document_timeline.cc
+++ b/cobalt/dom/document_timeline.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/dom/document_timeline.h"
+
 #include "base/memory/weak_ptr.h"
 #include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/dom/document.h"
-#include "cobalt/dom/document_timeline.h"
 #include "cobalt/dom/dom_settings.h"
 #include "cobalt/dom/window.h"
 
@@ -26,11 +27,11 @@
 
 scoped_refptr<base::BasicClock> CreateOffsetClock(Document* document,
                                                   double origin_time) {
-  return document->navigation_start_clock() ?
-      new base::OffsetClock(
-        document->navigation_start_clock(),
-        base::TimeDelta::FromMillisecondsD(origin_time)) :
-      NULL;
+  return document->navigation_start_clock()
+             ? new base::OffsetClock(
+                   document->navigation_start_clock(),
+                   base::TimeDelta::FromMillisecondsD(origin_time))
+             : NULL;
 }
 }  // namespace
 
diff --git a/cobalt/dom/dom_implementation.cc b/cobalt/dom/dom_implementation.cc
index c298f10..c32c30d 100644
--- a/cobalt/dom/dom_implementation.cc
+++ b/cobalt/dom/dom_implementation.cc
@@ -38,7 +38,6 @@
 scoped_refptr<XMLDocument> DOMImplementation::CreateDocument(
     base::Optional<std::string> namespace_name,
     const std::string& qualified_name, scoped_refptr<DocumentType> doctype) {
-
   // 1. Let document be a new XMLDocument.
   scoped_refptr<XMLDocument> document = new XMLDocument(html_element_context_);
 
diff --git a/cobalt/dom/dom_rect_read_only.idl b/cobalt/dom/dom_rect_read_only.idl
index 1e35306..343c374 100644
--- a/cobalt/dom/dom_rect_read_only.idl
+++ b/cobalt/dom/dom_rect_read_only.idl
@@ -28,4 +28,3 @@
   readonly attribute unrestricted double bottom;
   readonly attribute unrestricted double left;
 };
-
diff --git a/cobalt/dom/dom_string_map.cc b/cobalt/dom/dom_string_map.cc
index 26db29e..14d99a0 100644
--- a/cobalt/dom/dom_string_map.cc
+++ b/cobalt/dom/dom_string_map.cc
@@ -100,9 +100,8 @@
 
     // If property name contains a "-" (U+002D) character followed by
     // a lowercase ASCII letter, abort these steps.
-    if (preceded_by_hyphen &&
-        base::ToUpperASCII(property_name_character) !=
-            property_name_character) {
+    if (preceded_by_hyphen && base::ToUpperASCII(property_name_character) !=
+                                  property_name_character) {
       return base::nullopt;
     }
 
diff --git a/cobalt/dom/dom_token_list.cc b/cobalt/dom/dom_token_list.cc
index 8e7a1e4..f7f9023 100644
--- a/cobalt/dom/dom_token_list.cc
+++ b/cobalt/dom/dom_token_list.cc
@@ -18,7 +18,6 @@
 
 #include "base/strings/string_split.h"
 #include "cobalt/dom/global_stats.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -27,7 +26,6 @@
     : element_(element),
       attr_name_(attr_name),
       element_node_generation_(Node::kInvalidNodeGeneration) {
-  TRACK_MEMORY_SCOPE("DOM");
   DCHECK(element);
   // The current implementation relies on nodes calling UpdateNodeGeneration()
   // each time the class is changed. This results in DOMTokenList only working
@@ -93,7 +91,6 @@
 // Algorithm for Add:
 //   https://www.w3.org/TR/dom/#dom-domtokenlist-add
 void DOMTokenList::Add(const std::vector<std::string>& tokens) {
-  TRACK_MEMORY_SCOPE("DOM");
   // Custom, not in any spec.
   MaybeRefresh();
 
@@ -236,7 +233,6 @@
 // Algorithm for RunUpdateSteps:
 //   https://www.w3.org/TR/dom/#concept-dtl-update
 void DOMTokenList::RunUpdateSteps() const {
-  TRACK_MEMORY_SCOPE("DOM");
   // 1. If there is no associated attribute (when the object is a
   // DOMSettableTokenList), terminate these steps.
   // 2. Set an attribute for the associated element using associated attribute's
@@ -257,7 +253,6 @@
 }
 
 void DOMTokenList::MaybeRefresh() const {
-  TRACK_MEMORY_SCOPE("DOM");
   if (element_node_generation_ != element_->node_generation()) {
     element_node_generation_ = element_->node_generation();
     std::string attribute = element_->GetAttribute(attr_name_).value_or("");
diff --git a/cobalt/dom/element.cc b/cobalt/dom/element.cc
index c2119dc..04e1127 100644
--- a/cobalt/dom/element.cc
+++ b/cobalt/dom/element.cc
@@ -40,7 +40,6 @@
 #include "cobalt/dom/text.h"
 #include "cobalt/math/rect_f.h"
 #include "cobalt/web/dom_exception.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -60,7 +59,6 @@
       animations_(new web_animations::AnimationSet()) {}
 
 base::Optional<std::string> Element::text_content() const {
-  TRACK_MEMORY_SCOPE("DOM");
   std::string content;
 
   const Node* child = first_child();
@@ -76,7 +74,6 @@
 
 void Element::set_text_content(
     const base::Optional<std::string>& text_content) {
-  TRACK_MEMORY_SCOPE("DOM");
   // https://www.w3.org/TR/dom/#dom-node-textcontent
   // 1. Let node be null.
   scoped_refptr<Node> new_node;
@@ -109,7 +106,6 @@
 
 bool Element::Matches(const std::string& selectors,
                       script::ExceptionState* exception_state) {
-  TRACK_MEMORY_SCOPE("DOM");
   // Referenced from:
   // https://dom.spec.whatwg.org/#dom-element-matches
 
@@ -138,7 +134,6 @@
 }
 
 scoped_refptr<NamedNodeMap> Element::attributes() {
-  TRACK_MEMORY_SCOPE("DOM");
   scoped_refptr<NamedNodeMap> named_node_map = named_node_map_.get();
   if (!named_node_map) {
     // Create a new instance and store a weak reference.
@@ -149,7 +144,6 @@
 }
 
 const scoped_refptr<DOMTokenList>& Element::class_list() {
-  TRACK_MEMORY_SCOPE("DOM");
   if (!class_list_) {
     // Create a new instance and store a reference to it. Because of the
     // negative performance impact of having to constantly recreate DomTokenList
@@ -163,7 +157,6 @@
 //   https://www.w3.org/TR/2014/WD-dom-20140710/#dom-element-getattribute
 base::Optional<std::string> Element::GetAttribute(
     const std::string& name) const {
-  TRACK_MEMORY_SCOPE("DOM");
   Document* document = node_document();
 
   // 1. If the context object is in the HTML namespace and its node document is
@@ -196,7 +189,6 @@
 // Algorithm for SetAttribute:
 //   https://www.w3.org/TR/2014/WD-dom-20140710/#dom-element-setattribute
 void Element::SetAttribute(const std::string& name, const std::string& value) {
-  TRACK_MEMORY_SCOPE("DOM");
   TRACE_EVENT2("cobalt::dom", "Element::SetAttribute", "name", name, "value",
                value);
   Document* document = node_document();
@@ -276,7 +268,6 @@
 // Algorithm for RemoveAttribute:
 //   https://www.w3.org/TR/2014/WD-dom-20140710/#dom-element-removeattribute
 void Element::RemoveAttribute(const std::string& name) {
-  TRACK_MEMORY_SCOPE("DOM");
   TRACE_EVENT1("cobalt::dom", "Element::RemoveAttribute", "name", name);
   Document* document = node_document();
 
@@ -357,7 +348,6 @@
 // Algorithm for HasAttribute:
 //   https://www.w3.org/TR/2014/WD-dom-20140710/#dom-element-hasattribute
 bool Element::HasAttribute(const std::string& name) const {
-  TRACK_MEMORY_SCOPE("DOM");
   Document* document = node_document();
 
   // 1. If the context object is in the HTML namespace and its node document is
@@ -421,7 +411,6 @@
 // Algorithm for getBoundingClientRect:
 //   https://www.w3.org/TR/2013/WD-cssom-view-20131217/#dom-element-getboundingclientrect
 scoped_refptr<DOMRect> Element::GetBoundingClientRect() {
-  TRACK_MEMORY_SCOPE("DOM");
   // 1. Let list be the result of invoking getClientRects() on the same element
   // this method was invoked on.
   scoped_refptr<DOMRectList> list = GetClientRects();
@@ -488,7 +477,6 @@
 // Algorithm for inner_html:
 //   https://www.w3.org/TR/DOM-Parsing/#widl-Element-innerHTML
 std::string Element::inner_html() const {
-  TRACK_MEMORY_SCOPE("DOM");
   std::ostringstream oss;
   Serializer serializer(&oss);
   serializer.SerializeDescendantsOnly(this);
@@ -498,7 +486,6 @@
 // Algorithm for set_inner_html:
 //   https://www.w3.org/TR/DOM-Parsing/#widl-Element-innerHTML
 void Element::set_inner_html(const std::string& inner_html) {
-  TRACK_MEMORY_SCOPE("DOM");
   // 1. Let fragment be the result of invoking the fragment parsing algorithm
   // with the new value as markup, and the context object as the context
   // element.
@@ -522,7 +509,6 @@
 // Algorithm for outer_html:
 //   https://www.w3.org/TR/DOM-Parsing/#widl-Element-innerHTML
 std::string Element::outer_html(script::ExceptionState* exception_state) const {
-  TRACK_MEMORY_SCOPE("DOM");
   std::ostringstream oss;
   Serializer serializer(&oss);
   serializer.Serialize(this);
@@ -533,8 +519,6 @@
 //   https://www.w3.org/TR/DOM-Parsing/#widl-Element-outerHTML
 void Element::set_outer_html(const std::string& outer_html,
                              script::ExceptionState* exception_state) {
-  TRACK_MEMORY_SCOPE("DOM");
-
   // 1. Let parent be the context object's parent.
   scoped_refptr<Node> parent = parent_node();
 
@@ -607,7 +591,6 @@
 void Element::Accept(ConstNodeVisitor* visitor) const { visitor->Visit(this); }
 
 scoped_refptr<Node> Element::Duplicate() const {
-  TRACK_MEMORY_SCOPE("DOM");
   Element* new_element = new Element(node_document(), local_name_);
   new_element->CopyAttributes(*this);
   return new_element;
@@ -742,7 +725,6 @@
 }
 
 HTMLElementContext* Element::html_element_context() {
-  TRACK_MEMORY_SCOPE("DOM");
   Document* document = node_document();
   return document ? document->html_element_context() : NULL;
 }
diff --git a/cobalt/dom/font_cache.cc b/cobalt/dom/font_cache.cc
index 25c953d..dc3c2ab 100644
--- a/cobalt/dom/font_cache.cc
+++ b/cobalt/dom/font_cache.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/dom/font_cache.h"
+
 #include <memory>
 #include <vector>
 
-#include "cobalt/dom/font_cache.h"
 #include "cobalt/dom/global_stats.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/font_face_updater.h b/cobalt/dom/font_face_updater.h
index 775c8f3..fe7dcd4 100644
--- a/cobalt/dom/font_face_updater.h
+++ b/cobalt/dom/font_face_updater.h
@@ -30,7 +30,7 @@
 class CSSStyleSheet;
 class StyleSheetList;
 
-}  // cssom
+}  // namespace cssom
 
 namespace dom {
 
diff --git a/cobalt/dom/history.idl b/cobalt/dom/history.idl
index da86104..09ca958 100644
--- a/cobalt/dom/history.idl
+++ b/cobalt/dom/history.idl
@@ -24,4 +24,3 @@
 interface History {
   readonly attribute long length;
 };
-
diff --git a/cobalt/dom/html_anchor_element.cc b/cobalt/dom/html_anchor_element.cc
index 0c15a83..e7527d3 100644
--- a/cobalt/dom/html_anchor_element.cc
+++ b/cobalt/dom/html_anchor_element.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/dom/html_anchor_element.h"
+
 #include "cobalt/dom/document.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/html_element.cc b/cobalt/dom/html_element.cc
index 01ea1eb..ef21c62 100644
--- a/cobalt/dom/html_element.cc
+++ b/cobalt/dom/html_element.cc
@@ -63,6 +63,7 @@
 #include "cobalt/dom/text.h"
 #include "cobalt/loader/image/animated_image_tracker.h"
 #include "cobalt/loader/resource_cache.h"
+#include "cobalt/math/clamp.h"
 #include "cobalt/web/csp_delegate.h"
 #include "third_party/icu/source/common/unicode/uchar.h"
 #include "third_party/icu/source/common/unicode/utf8.h"
@@ -584,6 +585,10 @@
   node_document()->window()->CancelScroll(ui_nav_item_);
   float left, top;
   ui_nav_item_->GetContentOffset(&left, &top);
+
+  float throwaway, min = x, max = x;
+  ui_nav_item_->GetBounds(&throwaway, &min, &throwaway, &max);
+  x = math::Clamp(x, min, max);
   ui_nav_item_->SetContentOffset(x, top);
 }
 
@@ -638,6 +643,10 @@
   node_document()->window()->CancelScroll(ui_nav_item_);
   float left, top;
   ui_nav_item_->GetContentOffset(&left, &top);
+
+  float throwaway, min = y, max = y;
+  ui_nav_item_->GetBounds(&min, &throwaway, &max, &throwaway);
+  y = math::Clamp(y, min, max);
   ui_nav_item_->SetContentOffset(left, y);
 }
 
@@ -1481,13 +1490,22 @@
   if (!ui_nav_item_->IsContainer()) {
     return;
   }
+
+  DirState dir = GetUsedDirState();
+  if (dir == DirState::kDirNotDefined) {
+    Document* document = node_document();
+    if (document && document->html()) {
+      dir = document->html()->GetUsedDirState();
+    }
+  }
+
   float scrollable_width = scroll_width() - client_width();
   float scroll_top_lower_bound = 0.0f;
   float scroll_left_lower_bound =
-      GetUsedDirState() == DirState::kDirRightToLeft ? -scrollable_width : 0.0f;
+      dir == DirState::kDirRightToLeft ? -scrollable_width : 0.0f;
   float scroll_top_upper_bound = scroll_height() - client_height();
   float scroll_left_upper_bound =
-      GetUsedDirState() == DirState::kDirRightToLeft ? 0.0f : scrollable_width;
+      dir == DirState::kDirRightToLeft ? 0.0f : scrollable_width;
   ui_nav_item_->SetBounds(scroll_top_lower_bound, scroll_left_lower_bound,
                           scroll_top_upper_bound, scroll_left_upper_bound);
 }
diff --git a/cobalt/dom/html_element_factory.cc b/cobalt/dom/html_element_factory.cc
index 12cc291..bf30531 100644
--- a/cobalt/dom/html_element_factory.cc
+++ b/cobalt/dom/html_element_factory.cc
@@ -36,7 +36,6 @@
 #include "cobalt/dom/html_unknown_element.h"
 #include "cobalt/dom/html_video_element.h"
 #include "cobalt/dom/lottie_player.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -171,7 +170,6 @@
 
 scoped_refptr<HTMLElement> HTMLElementFactory::CreateHTMLElement(
     Document* document, base::Token tag_name) {
-  TRACK_MEMORY_SCOPE("DOM");
   TagNameToCreateHTMLElementTCallbackMap::const_iterator iter =
       tag_name_to_create_html_element_t_callback_map_.find(tag_name);
   if (iter != tag_name_to_create_html_element_t_callback_map_.end()) {
diff --git a/cobalt/dom/html_link_element.cc b/cobalt/dom/html_link_element.cc
index efd1019..011000b 100644
--- a/cobalt/dom/html_link_element.cc
+++ b/cobalt/dom/html_link_element.cc
@@ -20,8 +20,10 @@
 #include <vector>
 
 #include "base/bind.h"
+#include "base/metrics/histogram_macros.h"
 #include "base/strings/string_tokenizer.h"
 #include "base/threading/thread_task_runner_handle.h"
+#include "base/time/time.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/cssom/css_parser.h"
 #include "cobalt/cssom/css_style_sheet.h"
@@ -29,13 +31,20 @@
 #include "cobalt/dom/html_element_context.h"
 #include "cobalt/dom/window.h"
 #include "cobalt/web/csp_delegate.h"
-#include "nb/memory_scope.h"
 #include "url/gurl.h"
 
 namespace cobalt {
 namespace dom {
 namespace {
 
+// Constants for parse time histogram. Do not modify these. If you need to
+// change these, create a new histogram and new constants.
+constexpr size_t kNumParseTimeHistogramBuckets = 100;
+constexpr base::TimeDelta kParseTimeHistogramMinTime =
+    base::TimeDelta::FromMicroseconds(1);
+constexpr base::TimeDelta kParseTimeHistogramMaxTime =
+    base::TimeDelta::FromMilliseconds(10);
+
 bool IsValidRelChar(char const& c) {
   return (isalnum(c) || c == '_' || c == '\\' || c == '-');
 }
@@ -158,7 +167,6 @@
 // Algorithm for Obtain:
 //   https://www.w3.org/TR/html50/document-metadata.html#concept-link-obtain
 void HTMLLinkElement::Obtain() {
-  TRACK_MEMORY_SCOPE("DOM");
   TRACE_EVENT0("cobalt::dom", "HTMLLinkElement::Obtain()");
   // Custom, not in any spec.
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
@@ -232,7 +240,6 @@
                                         std::unique_ptr<std::string> content) {
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
   DCHECK(content);
-  TRACK_MEMORY_SCOPE("DOM");
   TRACE_EVENT0("cobalt::dom", "HTMLLinkElement::OnContentProduced()");
 
   // Get resource's final destination url from loader.
@@ -310,9 +317,24 @@
 
 void HTMLLinkElement::OnStylesheetLoaded(Document* document,
                                          const std::string& content) {
+  auto before_parse_micros = SbTimeGetMonotonicNow();
   scoped_refptr<cssom::CSSStyleSheet> css_style_sheet =
       document->html_element_context()->css_parser()->ParseStyleSheet(
           content, base::SourceLocation(href(), 1, 1));
+  auto after_parse_micros = SbTimeGetMonotonicNow();
+  auto css_kb = content.length() / 1000;
+  // Only measure non-trivial CSS sizes and ignore non-HTTP schemes (e.g.,
+  // file://), which are primarily used for debug purposes.
+  if (css_kb > 0 && absolute_url_.SchemeIsHTTPOrHTTPS()) {
+    // Get parse time normalized by byte size, see:
+    // go/cobalt-js-css-parsing-metrics.
+    auto micros_per_kb = (after_parse_micros - before_parse_micros) / css_kb;
+    UMA_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(
+        "Cobalt.DOM.CSS.Link.ParseTimeMicrosPerKB",
+        base::TimeDelta::FromMicroseconds(micros_per_kb),
+        kParseTimeHistogramMinTime, kParseTimeHistogramMaxTime,
+        kNumParseTimeHistogramBuckets);
+  }
   css_style_sheet->SetLocationUrl(absolute_url_);
   // If not loading from network-fetched resources or fetched resource is same
   // origin as the document, set origin-clean flag to true.
diff --git a/cobalt/dom/html_link_element_test.cc b/cobalt/dom/html_link_element_test.cc
index 0ca5bfa..6f11f01 100644
--- a/cobalt/dom/html_link_element_test.cc
+++ b/cobalt/dom/html_link_element_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/dom/html_link_element.h"
+
 #include "base/message_loop/message_loop.h"
 #include "cobalt/cssom/testing/mock_css_parser.h"  // nogncheck
 #include "cobalt/dom/document.h"
diff --git a/cobalt/dom/html_script_element.cc b/cobalt/dom/html_script_element.cc
index fa4153e..73e60b6 100644
--- a/cobalt/dom/html_script_element.cc
+++ b/cobalt/dom/html_script_element.cc
@@ -35,7 +35,6 @@
 #include "cobalt/script/global_environment.h"
 #include "cobalt/script/script_runner.h"
 #include "cobalt/web/csp_delegate.h"
-#include "nb/memory_scope.h"
 #include "url/gurl.h"
 
 namespace cobalt {
@@ -163,7 +162,6 @@
 // Algorithm for Prepare:
 //   https://www.w3.org/TR/2018/SPSD-html5-20180327/scripting-1.html#prepare-a-script
 void HTMLScriptElement::Prepare() {
-  TRACK_MEMORY_SCOPE("DOM");
   // Custom, not in any spec.
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
   DCHECK(base::MessageLoop::current());
@@ -639,7 +637,6 @@
 void HTMLScriptElement::Execute(const std::string& content,
                                 const base::SourceLocation& script_location,
                                 bool is_external) {
-  TRACK_MEMORY_SCOPE("DOM");
   // If should_execute_ is set to false for whatever reason, then we
   // immediately exit.
   // When inserted using the document.write() method, script elements execute
diff --git a/cobalt/dom/html_style_element.cc b/cobalt/dom/html_style_element.cc
index d5d0be0..323b5d7 100644
--- a/cobalt/dom/html_style_element.cc
+++ b/cobalt/dom/html_style_element.cc
@@ -16,6 +16,8 @@
 
 #include <string>
 
+#include "base/metrics/histogram_macros.h"
+#include "base/time/time.h"
 #include "cobalt/cssom/css_parser.h"
 #include "cobalt/dom/document.h"
 #include "cobalt/dom/html_element_context.h"
@@ -24,6 +26,14 @@
 namespace cobalt {
 namespace dom {
 
+// Constants for parse time histogram. Do not modify these. If you need to
+// change these, create a new histogram and new constants.
+constexpr size_t kNumParseTimeHistogramBuckets = 100;
+constexpr base::TimeDelta kParseTimeHistogramMinTime =
+    base::TimeDelta::FromMicroseconds(1);
+constexpr base::TimeDelta kParseTimeHistogramMaxTime =
+    base::TimeDelta::FromMilliseconds(10);
+
 // static
 const char HTMLStyleElement::kTagName[] = "style";
 
@@ -81,9 +91,24 @@
   const std::string& text = content.value_or(base::EmptyString());
   if (bypass_csp || csp_delegate->AllowInline(web::CspDelegate::kStyle,
                                               inline_style_location_, text)) {
+    auto before_parse_micros = SbTimeGetMonotonicNow();
     scoped_refptr<cssom::CSSStyleSheet> css_style_sheet =
         document->html_element_context()->css_parser()->ParseStyleSheet(
             text, inline_style_location_);
+    auto after_parse_micros = SbTimeGetMonotonicNow();
+    auto css_kb = text.length() / 1000;
+    // Only measure non-trivial css sizes and inlined HTML style elements.
+    if (css_kb > 0 &&
+        inline_style_location_.file_path == "[object HTMLStyleElement]") {
+      // Get parse time normalized by byte size, see:
+      // go/cobalt-js-css-parsing-metrics.
+      auto micros_per_kb = (after_parse_micros - before_parse_micros) / css_kb;
+      UMA_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(
+          "Cobalt.DOM.CSS.Style.ParseTimeMicrosPerKB",
+          base::TimeDelta::FromMicroseconds(micros_per_kb),
+          kParseTimeHistogramMinTime, kParseTimeHistogramMaxTime,
+          kNumParseTimeHistogramBuckets);
+    }
     css_style_sheet->SetLocationUrl(GURL(inline_style_location_.file_path));
     css_style_sheet->SetOriginClean(true);
     style_sheet_ = css_style_sheet;
diff --git a/cobalt/dom/html_video_element.cc b/cobalt/dom/html_video_element.cc
index a973f3e..75b3f9f 100644
--- a/cobalt/dom/html_video_element.cc
+++ b/cobalt/dom/html_video_element.cc
@@ -18,6 +18,7 @@
 #include "base/strings/string_number_conversions.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/dom/dom_settings.h"
+#include "cobalt/dom/media_settings.h"
 #include "cobalt/dom/performance.h"
 #include "cobalt/dom/window.h"
 #include "cobalt/math/size_f.h"
@@ -30,6 +31,15 @@
 
 const char HTMLVideoElement::kTagName[] = "video";
 
+const MediaSettings& GetMediaSettings(web::EnvironmentSettings* settings) {
+  DCHECK(settings);
+  DCHECK(settings->context());
+  DCHECK(settings->context()->web_settings());
+
+  const auto& web_settings = settings->context()->web_settings();
+  return web_settings->media_settings();
+}
+
 HTMLVideoElement::HTMLVideoElement(Document* document)
     : HTMLMediaElement(document, base::Token(kTagName)) {}
 
@@ -98,9 +108,15 @@
   }
 }
 
-scoped_refptr<DecodeTargetProvider>
-HTMLVideoElement::GetDecodeTargetProvider() {
+scoped_refptr<DecodeTargetProvider> HTMLVideoElement::GetDecodeTargetProvider(
+    bool* paint_to_black) {
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
+  DCHECK(paint_to_black);
+
+  *paint_to_black = GetMediaSettings(environment_settings())
+                        .IsPaintingVideoBackgroundToBlack()
+                        .value_or(false);
+
   return player() ? player()->GetDecodeTargetProvider() : NULL;
 }
 
diff --git a/cobalt/dom/html_video_element.h b/cobalt/dom/html_video_element.h
index b98b6f6..914a69e 100644
--- a/cobalt/dom/html_video_element.h
+++ b/cobalt/dom/html_video_element.h
@@ -52,7 +52,10 @@
   // From HTMLElement
   scoped_refptr<HTMLVideoElement> AsHTMLVideoElement() override { return this; }
 
-  scoped_refptr<DecodeTargetProvider> GetDecodeTargetProvider();
+  // When the return value is nullptr, and |paint_to_black| is set to true, the
+  // caller is expected to paint the area covered by the video to black.
+  scoped_refptr<DecodeTargetProvider> GetDecodeTargetProvider(
+      bool* paint_to_black);
 
   WebMediaPlayer::SetBoundsCB GetSetBoundsCB();
 
diff --git a/cobalt/dom/intersection_observer.cc b/cobalt/dom/intersection_observer.cc
index a500813..f109197 100644
--- a/cobalt/dom/intersection_observer.cc
+++ b/cobalt/dom/intersection_observer.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/dom/intersection_observer.h"
+
 #include <algorithm>
 #include <string>
 
-#include "cobalt/dom/intersection_observer.h"
-
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/base/source_location.h"
diff --git a/cobalt/dom/intersection_observer.h b/cobalt/dom/intersection_observer.h
index 1e2373b..8a07670 100644
--- a/cobalt/dom/intersection_observer.h
+++ b/cobalt/dom/intersection_observer.h
@@ -15,6 +15,7 @@
 #ifndef COBALT_DOM_INTERSECTION_OBSERVER_H_
 #define COBALT_DOM_INTERSECTION_OBSERVER_H_
 
+#include <memory>
 #include <string>
 #include <vector>
 
diff --git a/cobalt/dom/intersection_observer_test.cc b/cobalt/dom/intersection_observer_test.cc
index fc1d683..bea614c 100644
--- a/cobalt/dom/intersection_observer_test.cc
+++ b/cobalt/dom/intersection_observer_test.cc
@@ -27,8 +27,8 @@
 using cobalt::cssom::PercentageValue;
 using cobalt::cssom::PropertyListValue;
 using cobalt::dom::testing::MockLayoutBoxes;
-using ::testing::NiceMock;
 using ::testing::_;
+using ::testing::NiceMock;
 using ::testing::Return;
 
 namespace cobalt {
diff --git a/cobalt/dom/keyframes_map_updater.h b/cobalt/dom/keyframes_map_updater.h
index 2eb7b1f..f66ad79 100644
--- a/cobalt/dom/keyframes_map_updater.h
+++ b/cobalt/dom/keyframes_map_updater.h
@@ -32,7 +32,7 @@
 class CSSStyleSheet;
 class StyleSheetList;
 
-}  // cssom
+}  // namespace cssom
 
 namespace dom {
 
diff --git a/cobalt/dom/local_storage_database.cc b/cobalt/dom/local_storage_database.cc
index 595e869..6564d1f 100644
--- a/cobalt/dom/local_storage_database.cc
+++ b/cobalt/dom/local_storage_database.cc
@@ -12,15 +12,15 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/dom/local_storage_database.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/dom/storage_area.h"
 #include "cobalt/storage/storage_manager.h"
 #include "cobalt/storage/store/memory_store.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -36,7 +36,6 @@
     const LocalStorageDatabase::ReadCompletionCallback& callback,
     const storage::MemoryStore& memory_store) {
   LOG(INFO) << "LocalStorageReadValues";
-  TRACK_MEMORY_SCOPE("Storage");
 
   std::unique_ptr<storage::MemoryStore::LocalStorageMap> values(
       new storage::MemoryStore::LocalStorageMap);
@@ -47,19 +46,16 @@
 void LocalStorageWrite(const loader::Origin& origin, const std::string& key,
                        const std::string& value,
                        storage::MemoryStore* memory_store) {
-  TRACK_MEMORY_SCOPE("Storage");
   memory_store->WriteToLocalStorage(origin, key, value);
 }
 
 void LocalStorageDelete(const loader::Origin& origin, const std::string& key,
                         storage::MemoryStore* memory_store) {
-  TRACK_MEMORY_SCOPE("Storage");
   memory_store->DeleteFromLocalStorage(origin, key);
 }
 
 void LocalStorageClear(const loader::Origin& origin,
                        storage::MemoryStore* memory_store) {
-  TRACK_MEMORY_SCOPE("Storage");
   memory_store->ClearLocalStorage(origin);
 }
 }  // namespace
@@ -78,7 +74,6 @@
 
 void LocalStorageDatabase::ReadAll(const loader::Origin& origin,
                                    const ReadCompletionCallback& callback) {
-  TRACK_MEMORY_SCOPE("Storage");
   Init();
   storage_->WithReadOnlyMemoryStore(
       base::Bind(&LocalStorageReadValues, origin, callback));
@@ -87,26 +82,22 @@
 void LocalStorageDatabase::Write(const loader::Origin& origin,
                                  const std::string& key,
                                  const std::string& value) {
-  TRACK_MEMORY_SCOPE("Storage");
   Init();
   storage_->WithMemoryStore(base::Bind(&LocalStorageWrite, origin, key, value));
 }
 
 void LocalStorageDatabase::Delete(const loader::Origin& origin,
                                   const std::string& key) {
-  TRACK_MEMORY_SCOPE("Storage");
   Init();
   storage_->WithMemoryStore(base::Bind(&LocalStorageDelete, origin, key));
 }
 
 void LocalStorageDatabase::Clear(const loader::Origin& origin) {
-  TRACK_MEMORY_SCOPE("Storage");
   Init();
   storage_->WithMemoryStore(base::Bind(&LocalStorageClear, origin));
 }
 
 void LocalStorageDatabase::Flush(const base::Closure& callback) {
-  TRACK_MEMORY_SCOPE("Storage");
   storage_->FlushNow(callback);
 }
 
diff --git a/cobalt/dom/local_storage_database_test.cc b/cobalt/dom/local_storage_database_test.cc
index 1ec75da..ba3f78c 100644
--- a/cobalt/dom/local_storage_database_test.cc
+++ b/cobalt/dom/local_storage_database_test.cc
@@ -25,7 +25,6 @@
 #include "cobalt/base/cobalt_paths.h"
 #include "cobalt/storage/savegame_fake.h"
 #include "cobalt/storage/storage_manager.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/location_test.cc b/cobalt/dom/location_test.cc
index 9e4caf2..4e8f599 100644
--- a/cobalt/dom/location_test.cc
+++ b/cobalt/dom/location_test.cc
@@ -19,9 +19,9 @@
 #include "testing/gtest/include/gtest/gtest.h"
 #include "url/gurl.h"
 
+using ::testing::_;
 using ::testing::Return;
 using ::testing::StrictMock;
-using ::testing::_;
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/lottie_player.h b/cobalt/dom/lottie_player.h
index c28fb0b..26afb6f 100644
--- a/cobalt/dom/lottie_player.h
+++ b/cobalt/dom/lottie_player.h
@@ -15,6 +15,7 @@
 #ifndef COBALT_DOM_LOTTIE_PLAYER_H_
 #define COBALT_DOM_LOTTIE_PLAYER_H_
 
+#include <memory>
 #include <string>
 
 #include "base/message_loop/message_loop.h"
diff --git a/cobalt/dom/media_settings.cc b/cobalt/dom/media_settings.cc
index 2915df3..ed39dbe 100644
--- a/cobalt/dom/media_settings.cc
+++ b/cobalt/dom/media_settings.cc
@@ -77,6 +77,12 @@
       LOG(INFO) << name << ": set to " << value;
       return true;
     }
+  } else if (name == "MediaElement.PaintingVideoBackgroundToBlack") {
+    if (value == 0 || value == 1) {
+      is_painting_video_background_to_black_ = value != 0;
+      LOG(INFO) << name << ": set to " << value;
+      return true;
+    }
   } else {
     LOG(WARNING) << "Ignore unknown setting with name \"" << name << "\"";
     return false;
diff --git a/cobalt/dom/media_settings.h b/cobalt/dom/media_settings.h
index eace022..9f1a6f4 100644
--- a/cobalt/dom/media_settings.h
+++ b/cobalt/dom/media_settings.h
@@ -41,6 +41,7 @@
 
   virtual base::Optional<int>
   GetMediaElementTimeupdateEventIntervalInMilliseconds() const = 0;
+  virtual base::Optional<bool> IsPaintingVideoBackgroundToBlack() const = 0;
 
  protected:
   MediaSettings() = default;
@@ -89,6 +90,9 @@
       const override {
     return media_element_timeupdate_event_interval_in_milliseconds_;
   }
+  base::Optional<bool> IsPaintingVideoBackgroundToBlack() const override {
+    return is_painting_video_background_to_black_;
+  }
 
   // Returns true when the setting associated with `name` is set to `value`.
   // Returns false when `name` is not associated with any settings, or if
@@ -106,6 +110,8 @@
   base::Optional<int> max_source_buffer_append_size_in_bytes_;
 
   base::Optional<int> media_element_timeupdate_event_interval_in_milliseconds_;
+
+  base::Optional<bool> is_painting_video_background_to_black_;
 };
 
 }  // namespace dom
diff --git a/cobalt/dom/media_settings_test.cc b/cobalt/dom/media_settings_test.cc
index 8850f72..e4addfe 100644
--- a/cobalt/dom/media_settings_test.cc
+++ b/cobalt/dom/media_settings_test.cc
@@ -31,6 +31,7 @@
   EXPECT_FALSE(impl.GetMaxSizeForImmediateJob());
   EXPECT_FALSE(impl.GetMaxSourceBufferAppendSizeInBytes());
   EXPECT_FALSE(impl.GetMediaElementTimeupdateEventIntervalInMilliseconds());
+  EXPECT_FALSE(impl.IsPaintingVideoBackgroundToBlack());
 }
 
 TEST(MediaSettingsImplTest, SunnyDay) {
@@ -46,6 +47,7 @@
   ASSERT_TRUE(impl.Set("MediaSource.MaxSourceBufferAppendSizeInBytes", 100000));
   ASSERT_TRUE(
       impl.Set("MediaElement.TimeupdateEventIntervalInMilliseconds", 100001));
+  ASSERT_TRUE(impl.Set("MediaElement.PaintingVideoBackgroundToBlack", 1));
 
   EXPECT_EQ(impl.GetSourceBufferEvictExtraInBytes().value(), 100);
   EXPECT_EQ(impl.GetMinimumProcessorCountToOffloadAlgorithm().value(), 101);
@@ -56,6 +58,7 @@
   EXPECT_EQ(impl.GetMaxSourceBufferAppendSizeInBytes().value(), 100000);
   EXPECT_EQ(impl.GetMediaElementTimeupdateEventIntervalInMilliseconds().value(),
             100001);
+  EXPECT_TRUE(impl.IsPaintingVideoBackgroundToBlack().value());
 }
 
 TEST(MediaSettingsImplTest, RainyDay) {
@@ -71,6 +74,7 @@
   ASSERT_FALSE(impl.Set("MediaSource.MaxSourceBufferAppendSizeInBytes", 0));
   ASSERT_FALSE(
       impl.Set("MediaElement.TimeupdateEventIntervalInMilliseconds", 0));
+  ASSERT_FALSE(impl.Set("MediaElement.PaintingVideoBackgroundToBlack", 2));
 
   EXPECT_FALSE(impl.GetSourceBufferEvictExtraInBytes());
   EXPECT_FALSE(impl.GetMinimumProcessorCountToOffloadAlgorithm());
@@ -80,6 +84,7 @@
   EXPECT_FALSE(impl.GetMaxSizeForImmediateJob());
   EXPECT_FALSE(impl.GetMaxSourceBufferAppendSizeInBytes());
   EXPECT_FALSE(impl.GetMediaElementTimeupdateEventIntervalInMilliseconds());
+  EXPECT_FALSE(impl.IsPaintingVideoBackgroundToBlack());
 }
 
 TEST(MediaSettingsImplTest, ZeroValuesWork) {
@@ -95,6 +100,7 @@
   // O is an invalid value for "MediaSource.MaxSourceBufferAppendSizeInBytes".
   // O is an invalid value for
   // "MediaElement.TimeupdateEventIntervalInMilliseconds".
+  ASSERT_TRUE(impl.Set("MediaElement.PaintingVideoBackgroundToBlack", 0));
 
   EXPECT_EQ(impl.GetSourceBufferEvictExtraInBytes().value(), 0);
   EXPECT_EQ(impl.GetMinimumProcessorCountToOffloadAlgorithm().value(), 0);
@@ -102,6 +108,7 @@
   EXPECT_FALSE(impl.IsAvoidCopyingArrayBufferEnabled().value());
   EXPECT_FALSE(impl.IsCallingEndedWhenClosedEnabled().value());
   EXPECT_EQ(impl.GetMaxSizeForImmediateJob().value(), 0);
+  EXPECT_FALSE(impl.IsPaintingVideoBackgroundToBlack().value());
 }
 
 TEST(MediaSettingsImplTest, Updatable) {
@@ -117,6 +124,7 @@
   ASSERT_TRUE(impl.Set("MediaSource.MaxSourceBufferAppendSizeInBytes", 1));
   ASSERT_TRUE(
       impl.Set("MediaElement.TimeupdateEventIntervalInMilliseconds", 1));
+  ASSERT_TRUE(impl.Set("MediaElement.PaintingVideoBackgroundToBlack", 0));
 
   ASSERT_TRUE(impl.Set("MediaSource.SourceBufferEvictExtraInBytes", 1));
   ASSERT_TRUE(
@@ -128,6 +136,7 @@
   ASSERT_TRUE(impl.Set("MediaSource.MaxSourceBufferAppendSizeInBytes", 2));
   ASSERT_TRUE(
       impl.Set("MediaElement.TimeupdateEventIntervalInMilliseconds", 2));
+  ASSERT_TRUE(impl.Set("MediaElement.PaintingVideoBackgroundToBlack", 1));
 
   EXPECT_EQ(impl.GetSourceBufferEvictExtraInBytes().value(), 1);
   EXPECT_EQ(impl.GetMinimumProcessorCountToOffloadAlgorithm().value(), 1);
@@ -138,6 +147,7 @@
   EXPECT_EQ(impl.GetMaxSourceBufferAppendSizeInBytes().value(), 2);
   EXPECT_EQ(impl.GetMediaElementTimeupdateEventIntervalInMilliseconds().value(),
             2);
+  EXPECT_TRUE(impl.IsPaintingVideoBackgroundToBlack().value());
 }
 
 TEST(MediaSettingsImplTest, InvalidSettingNames) {
diff --git a/cobalt/dom/media_source.cc b/cobalt/dom/media_source.cc
index 31ffc95..526f262 100644
--- a/cobalt/dom/media_source.cc
+++ b/cobalt/dom/media_source.cc
@@ -232,7 +232,7 @@
     script::EnvironmentSettings* settings, const std::string& type,
     script::ExceptionState* exception_state) {
   TRACE_EVENT1("cobalt::dom", "MediaSource::AddSourceBuffer()", "type", type);
-  DLOG(INFO) << "add SourceBuffer with type " << type;
+  LOG(INFO) << "add SourceBuffer with type " << type;
 
   if (type.empty()) {
     web::DOMException::Raise(web::DOMException::kInvalidAccessErr,
diff --git a/cobalt/dom/mime_type_array.idl b/cobalt/dom/mime_type_array.idl
index 65e3403..48ac443 100644
--- a/cobalt/dom/mime_type_array.idl
+++ b/cobalt/dom/mime_type_array.idl
@@ -20,4 +20,3 @@
 interface MimeTypeArray {
   readonly attribute long length;
 };
-
diff --git a/cobalt/dom/mutation_reporter.cc b/cobalt/dom/mutation_reporter.cc
index eba3de5..9af9794 100644
--- a/cobalt/dom/mutation_reporter.cc
+++ b/cobalt/dom/mutation_reporter.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/dom/mutation_reporter.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/containers/hash_tables.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/dom/mutation_observer.h"
diff --git a/cobalt/dom/named_node_map.cc b/cobalt/dom/named_node_map.cc
index 8848a4f..5cdbaf6 100644
--- a/cobalt/dom/named_node_map.cc
+++ b/cobalt/dom/named_node_map.cc
@@ -21,7 +21,6 @@
 #include "cobalt/dom/attr.h"
 #include "cobalt/dom/element.h"
 #include "cobalt/dom/global_stats.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -182,7 +181,6 @@
 
 scoped_refptr<Attr> NamedNodeMap::GetOrCreateAttr(
     const std::string& name) const {
-  TRACK_MEMORY_SCOPE("DOM");
   NameToAttrMap::iterator iter = proxy_attributes_.find(name);
   if (iter != proxy_attributes_.end() && iter->second) {
     return iter->second.get();
diff --git a/cobalt/dom/navigator.cc b/cobalt/dom/navigator.cc
index bb2fca9..7ad053c 100644
--- a/cobalt/dom/navigator.cc
+++ b/cobalt/dom/navigator.cc
@@ -21,6 +21,7 @@
 #include "base/trace_event/trace_event.h"
 #include "cobalt/dom/captions/system_caption_settings.h"
 #include "cobalt/dom/dom_settings.h"
+#include "cobalt/dom/embedded_licenses.h"  // Generated file.
 #include "cobalt/dom/eme/media_key_system_access.h"
 #include "cobalt/media_capture/media_devices.h"
 #include "cobalt/media_session/media_session_client.h"
@@ -36,7 +37,7 @@
 namespace dom {
 namespace {
 
-const char kLicensesRelativePath[] = "/licenses/licenses_cobalt.txt";
+const char kEmbeddedLicenses[] = "licenses_cobalt.txt";
 
 #if !defined(COBALT_BUILD_TYPE_GOLD)
 
@@ -153,49 +154,12 @@
           new media_capture::MediaDevices(settings, script_value_factory())),
       system_caption_settings_(captions) {}
 
-base::Optional<std::string> GetFilenameForLicenses() {
-  const size_t kBufferSize = kSbFileMaxPath + 1;
-  std::vector<char> buffer(kBufferSize, 0);
-  bool got_path = SbSystemGetPath(kSbSystemPathContentDirectory, buffer.data(),
-                                  static_cast<int>(kBufferSize));
-  if (!got_path) {
-    SB_DLOG(ERROR) << "Cannot get content path for licenses files.";
-    return base::Optional<std::string>();
-  }
-
-  return std::string(buffer.data()).append(kLicensesRelativePath);
-}
-
 const std::string Navigator::licenses() const {
-  base::Optional<std::string> filename = GetFilenameForLicenses();
-  if (!filename) {
-    return std::string();
-  }
-
-  SbFile file = SbFileOpen(filename->c_str(), kSbFileOpenOnly | kSbFileRead,
-                           nullptr, nullptr);
-  if (file == kSbFileInvalid) {
-    SB_DLOG(WARNING) << "Cannot open licenses file: " << *filename;
-    return std::string();
-  }
-
-  SbFileInfo info;
-  bool success = SbFileGetInfo(file, &info);
-  if (!success) {
-    SB_DLOG(WARNING) << "Cannot get information for licenses file.";
-    SbFileClose(file);
-    return std::string();
-  }
-  // SbFileReadAll expects an int for the size argument. Assume that the file
-  // is smaller than 2^32.
-  int file_size = static_cast<int>(info.size);
-
-  std::unique_ptr<char[]> buffer(new char[file_size]);
-  SbFileReadAll(file, buffer.get(), file_size);
-  const std::string file_contents = std::string(buffer.get(), file_size);
-  SbFileClose(file);
-
-  return file_contents;
+  GeneratedResourceMap resource_map;
+  DOMEmbeddedResources::GenerateMap(resource_map);
+  FileContents file_contents = resource_map[kEmbeddedLicenses];
+  return std::string(reinterpret_cast<const char*>(file_contents.data),
+                     file_contents.size);
 }
 
 bool Navigator::java_enabled() const { return false; }
diff --git a/cobalt/dom/node.cc b/cobalt/dom/node.cc
index 26c78eb..ca68573 100644
--- a/cobalt/dom/node.cc
+++ b/cobalt/dom/node.cc
@@ -163,7 +163,6 @@
 // Algorithm for CloneNode:
 //   https://www.w3.org/TR/2015/WD-dom-20150618/#dom-node-clonenode
 scoped_refptr<Node> Node::CloneNode(bool deep) const {
-  TRACK_MEMORY_SCOPE("DOM");
   TRACE_EVENT0("cobalt::dom", "Node::CloneNode()");
   scoped_refptr<Node> new_node = Duplicate();
   DCHECK(new_node);
diff --git a/cobalt/dom/node_dispatch_event_test.cc b/cobalt/dom/node_dispatch_event_test.cc
index 9ecb4e0..102f95e 100644
--- a/cobalt/dom/node_dispatch_event_test.cc
+++ b/cobalt/dom/node_dispatch_event_test.cc
@@ -14,16 +14,16 @@
 
 #include <memory>
 
-#include "cobalt/dom/node.h"
-
 #include "cobalt/dom/document.h"
 #include "cobalt/dom/element.h"
 #include "cobalt/dom/global_stats.h"
 #include "cobalt/dom/html_element_context.h"
+#include "cobalt/dom/node.h"
 #include "cobalt/script/testing/fake_script_value.h"
 #include "cobalt/web/testing/mock_event_listener.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::AllOf;
 using ::testing::Eq;
 using ::testing::IgnoreResult;
@@ -31,7 +31,6 @@
 using ::testing::InvokeWithoutArgs;
 using ::testing::Pointee;
 using ::testing::Property;
-using ::testing::_;
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/node_list_live.h b/cobalt/dom/node_list_live.h
index e8d6a2f..833804e 100644
--- a/cobalt/dom/node_list_live.h
+++ b/cobalt/dom/node_list_live.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_DOM_NODE_LIST_LIVE_H_
 #define COBALT_DOM_NODE_LIST_LIVE_H_
 
-#include "cobalt/dom/node_list.h"
-
 #include "base/memory/ref_counted.h"
+#include "cobalt/dom/node_list.h"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/performance_entry.cc b/cobalt/dom/performance_entry.cc
index be0e56b..17a537d 100644
--- a/cobalt/dom/performance_entry.cc
+++ b/cobalt/dom/performance_entry.cc
@@ -12,7 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "performance_entry.h"
+#include "cobalt/dom/performance_entry.h"
 
 #include "base/atomic_sequence_num.h"
 #include "base/strings/string_util.h"
@@ -31,17 +31,13 @@
                                    DOMHighResTimeStamp start_time,
                                    DOMHighResTimeStamp finish_time)
     : duration_(finish_time - start_time),
-    name_(name),
-    start_time_(start_time),
-    index_(index_seq.GetNext()) {}
+      name_(name),
+      start_time_(start_time),
+      index_(index_seq.GetNext()) {}
 
-DOMHighResTimeStamp PerformanceEntry::start_time() const {
-  return start_time_;
-}
+DOMHighResTimeStamp PerformanceEntry::start_time() const { return start_time_; }
 
-DOMHighResTimeStamp PerformanceEntry::duration() const {
-  return duration_;
-}
+DOMHighResTimeStamp PerformanceEntry::duration() const { return duration_; }
 
 PerformanceEntry::EntryType PerformanceEntry::ToEntryTypeEnum(
     const std::string& entry_type) {
@@ -49,7 +45,7 @@
 
   for (size_t i = 0; i < arraysize(PerformanceEntry::kEntryTypeString); ++i) {
     if (base::LowerCaseEqualsASCII(entry_type,
-        PerformanceEntry::kEntryTypeString[i])) {
+                                   PerformanceEntry::kEntryTypeString[i])) {
       return static_cast<PerformanceEntry::EntryType>(i);
     }
   }
@@ -60,8 +56,7 @@
 bool PerformanceEntry::StartTimeCompareLessThan(
     const scoped_refptr<PerformanceEntry>& a,
     const scoped_refptr<PerformanceEntry>& b) {
-  if (a->start_time() == b->start_time())
-    return a->index_ < b->index_;
+  if (a->start_time() == b->start_time()) return a->index_ < b->index_;
   return a->start_time() < b->start_time();
 }
 
diff --git a/cobalt/dom/performance_entry_list_impl.cc b/cobalt/dom/performance_entry_list_impl.cc
index 28e0459..158db70 100644
--- a/cobalt/dom/performance_entry_list_impl.cc
+++ b/cobalt/dom/performance_entry_list_impl.cc
@@ -24,8 +24,7 @@
 namespace {
 
 PerformanceEntryList FilterBufferByNameAndType(
-    PerformanceEntryList performance_entry_buffer,
-    const std::string& name,
+    PerformanceEntryList performance_entry_buffer, const std::string& name,
     const base::StringPiece& entry_type) {
   // Algorithm for filtering buffers.
   //   https://www.w3.org/TR/2019/WD-performance-timeline-2-20191024/#filter-buffer-by-name-and-type
@@ -45,8 +44,8 @@
     // match type in a case-sensitive manner, go to next entryObject.
     const PerformanceEntry::EntryType type =
         PerformanceEntry::ToEntryTypeEnum(entry_type.as_string());
-    bool is_entry_type_not_valid = type != PerformanceEntry::kInvalid &&
-        type != entry->EntryTypeEnum();
+    bool is_entry_type_not_valid =
+        type != PerformanceEntry::kInvalid && type != entry->EntryTypeEnum();
     if (is_entry_type_not_valid) {
       continue;
     }
@@ -63,14 +62,14 @@
   return buffer;
 }
 
-}
+}  // namespace
 
 // static
 PerformanceEntryList PerformanceEntryListImpl::GetEntries(
     PerformanceEntryList performance_entry_buffer) {
   std::string empty_name_type;
-  return FilterBufferByNameAndType(
-      performance_entry_buffer, empty_name_type, empty_name_type);
+  return FilterBufferByNameAndType(performance_entry_buffer, empty_name_type,
+                                   empty_name_type);
 }
 
 // static
@@ -78,19 +77,18 @@
     PerformanceEntryList performance_entry_buffer,
     const std::string& entry_type) {
   std::string empty_name;
-  return FilterBufferByNameAndType(
-      performance_entry_buffer, empty_name, entry_type);
+  return FilterBufferByNameAndType(performance_entry_buffer, empty_name,
+                                   entry_type);
 }
 
 // static
 PerformanceEntryList PerformanceEntryListImpl::GetEntriesByName(
-    PerformanceEntryList performance_entry_buffer,
-    const std::string& name,
+    PerformanceEntryList performance_entry_buffer, const std::string& name,
     const base::StringPiece& type) {
   if (!type.data()) {
     std::string empty_type;
-    return FilterBufferByNameAndType(
-        performance_entry_buffer, name, empty_type);
+    return FilterBufferByNameAndType(performance_entry_buffer, name,
+                                     empty_type);
   }
   return FilterBufferByNameAndType(performance_entry_buffer, name, type);
 }
diff --git a/cobalt/dom/performance_entry_list_impl.h b/cobalt/dom/performance_entry_list_impl.h
index 54f2616..98c382f 100644
--- a/cobalt/dom/performance_entry_list_impl.h
+++ b/cobalt/dom/performance_entry_list_impl.h
@@ -35,8 +35,7 @@
       PerformanceEntryList performance_entry_buffer,
       const std::string& entry_type);
   static PerformanceEntryList GetEntriesByName(
-      PerformanceEntryList performance_entry_buffer,
-      const std::string& name,
+      PerformanceEntryList performance_entry_buffer, const std::string& name,
       const base::StringPiece& type);
 };
 
diff --git a/cobalt/dom/performance_high_resolution_time.h b/cobalt/dom/performance_high_resolution_time.h
index 4388b2e..2786a5a 100644
--- a/cobalt/dom/performance_high_resolution_time.h
+++ b/cobalt/dom/performance_high_resolution_time.h
@@ -24,7 +24,7 @@
 //   https://w3c.github.io/hr-time/#dom-domhighrestimestamp
 typedef double DOMHighResTimeStamp;
 
-// Time converstion helper functions.
+// Time conversion helper functions.
 inline DOMHighResTimeStamp ConvertSecondsToDOMHighResTimeStamp(double seconds) {
   return static_cast<DOMHighResTimeStamp>(seconds * 1000.0);
 }
@@ -42,27 +42,27 @@
 // Clamp customized minimum clock resolution in milliseconds.
 //   https://w3c.github.io/hr-time/#clock-resolution
 inline DOMHighResTimeStamp ClampTimeStampMinimumResolution(
-    base::TimeTicks ticks,
-  int64_t min_resolution_in_microseconds) {
+    base::TimeTicks ticks, int64_t min_resolution_in_microseconds) {
   int64_t microseconds = ticks.since_origin().InMicroseconds();
-  return base::TimeDelta::FromMicroseconds(microseconds -
-      (microseconds % min_resolution_in_microseconds)).InMillisecondsF();
+  return base::TimeDelta::FromMicroseconds(
+             microseconds - (microseconds % min_resolution_in_microseconds))
+      .InMillisecondsF();
 }
 
 // Clamp customized minimum clock resolution in milliseconds.
 //   https://w3c.github.io/hr-time/#clock-resolution
-inline DOMHighResTimeStamp ClampTimeStampMinimumResolution(base::TimeDelta delta,
-    int64_t min_resolution_in_microseconds) {
+inline DOMHighResTimeStamp ClampTimeStampMinimumResolution(
+    base::TimeDelta delta, int64_t min_resolution_in_microseconds) {
   int64_t microseconds = delta.InMicroseconds();
-  return base::TimeDelta::FromMicroseconds(microseconds -
-      (microseconds % min_resolution_in_microseconds)).InMillisecondsF();
+  return base::TimeDelta::FromMicroseconds(
+             microseconds - (microseconds % min_resolution_in_microseconds))
+      .InMillisecondsF();
 }
 
-inline DOMHighResTimeStamp
-    ClampTimeStampMinimumResolution(DOMHighResTimeStamp time_delta,
-                                    int64_t min_resolution_in_microseconds) {
+inline DOMHighResTimeStamp ClampTimeStampMinimumResolution(
+    DOMHighResTimeStamp time_delta, int64_t min_resolution_in_microseconds) {
   return time_delta -
-      (static_cast<int64_t>(time_delta) % min_resolution_in_microseconds);
+         (static_cast<int64_t>(time_delta) % min_resolution_in_microseconds);
 }
 
 }  // namespace dom
diff --git a/cobalt/dom/performance_lifecycle_timing.cc b/cobalt/dom/performance_lifecycle_timing.cc
index e06763f..5387e16 100644
--- a/cobalt/dom/performance_lifecycle_timing.cc
+++ b/cobalt/dom/performance_lifecycle_timing.cc
@@ -14,6 +14,7 @@
 
 
 #include "cobalt/dom/performance_lifecycle_timing.h"
+
 #include "cobalt/dom/performance.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/performance_lifecycle_timing.h b/cobalt/dom/performance_lifecycle_timing.h
index 01e3c79..e9ab9e3 100644
--- a/cobalt/dom/performance_lifecycle_timing.h
+++ b/cobalt/dom/performance_lifecycle_timing.h
@@ -53,8 +53,8 @@
 
   void SetApplicationState(base::ApplicationState state,
                            SbTimeMonotonic timestamp);
-  void SetApplicationStartOrPreloadTimestamp(
-      bool is_preload, SbTimeMonotonic timestamp);
+  void SetApplicationStartOrPreloadTimestamp(bool is_preload,
+                                             SbTimeMonotonic timestamp);
   void SetDeepLinkTimestamp(SbTimeMonotonic timestamp);
 
   DEFINE_WRAPPABLE_TYPE(PerformanceLifecycleTiming);
@@ -64,22 +64,20 @@
   DOMHighResTimeStamp ReportDOMHighResTimeStamp(
       SbTimeMonotonic timestamp) const;
   base::ApplicationState GetCurrentState() const;
- struct LifecycleTimingInfo {
-  SbTimeMonotonic app_preload = 0;
-  SbTimeMonotonic app_start = 0;
-  SbTimeMonotonic app_blur = 0;
-  SbTimeMonotonic app_conceal = 0;
-  SbTimeMonotonic app_focus = 0;
-  SbTimeMonotonic app_reveal = 0;
-  SbTimeMonotonic app_freeze = 0;
-  SbTimeMonotonic app_unfreeze = 0;
-  SbTimeMonotonic app_deeplink = 0;
+  struct LifecycleTimingInfo {
+    SbTimeMonotonic app_preload = 0;
+    SbTimeMonotonic app_start = 0;
+    SbTimeMonotonic app_blur = 0;
+    SbTimeMonotonic app_conceal = 0;
+    SbTimeMonotonic app_focus = 0;
+    SbTimeMonotonic app_reveal = 0;
+    SbTimeMonotonic app_freeze = 0;
+    SbTimeMonotonic app_unfreeze = 0;
+    SbTimeMonotonic app_deeplink = 0;
 
-  base::ApplicationState current_state =
-      base::kApplicationStateStopped;
-  base::ApplicationState last_state =
-      base::kApplicationStateStopped;
- };
+    base::ApplicationState current_state = base::kApplicationStateStopped;
+    base::ApplicationState last_state = base::kApplicationStateStopped;
+  };
 
   LifecycleTimingInfo lifecycle_timing_info_;
 
@@ -90,4 +88,4 @@
 }  // namespace dom
 }  // namespace cobalt
 
-#endif  // COBALT_DOM_PERFORMANCE_LIFECYCLE_TIMING_H_
\ No newline at end of file
+#endif  // COBALT_DOM_PERFORMANCE_LIFECYCLE_TIMING_H_
diff --git a/cobalt/dom/performance_navigation_timing.cc b/cobalt/dom/performance_navigation_timing.cc
index ca6c3eb..7c51e25 100644
--- a/cobalt/dom/performance_navigation_timing.cc
+++ b/cobalt/dom/performance_navigation_timing.cc
@@ -13,9 +13,9 @@
 // limitations under the License.
 
 #include "cobalt/dom/performance_navigation_timing.h"
-#include "cobalt/dom/performance.h"
 
 #include "cobalt/dom/document.h"
+#include "cobalt/dom/performance.h"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/performance_navigation_timing.h b/cobalt/dom/performance_navigation_timing.h
index 49b1a4b..485f24e 100644
--- a/cobalt/dom/performance_navigation_timing.h
+++ b/cobalt/dom/performance_navigation_timing.h
@@ -22,7 +22,6 @@
 #include "cobalt/dom/performance_entry.h"
 #include "cobalt/dom/performance_high_resolution_time.h"
 #include "cobalt/dom/performance_resource_timing.h"
-
 #include "cobalt/script/wrappable.h"
 #include "net/base/load_timing_info.h"
 
diff --git a/cobalt/dom/performance_observer.h b/cobalt/dom/performance_observer.h
index 4bd88d9..a458046 100644
--- a/cobalt/dom/performance_observer.h
+++ b/cobalt/dom/performance_observer.h
@@ -15,6 +15,7 @@
 #ifndef COBALT_DOM_PERFORMANCE_OBSERVER_H_
 #define COBALT_DOM_PERFORMANCE_OBSERVER_H_
 
+#include <memory>
 #include <string>
 
 #include "base/memory/weak_ptr.h"
@@ -22,8 +23,8 @@
 #include "cobalt/dom/performance_observer_init.h"
 #include "cobalt/script/callback_function.h"
 #include "cobalt/script/environment_settings.h"
-#include "cobalt/script/sequence.h"
 #include "cobalt/script/script_value.h"
+#include "cobalt/script/sequence.h"
 #include "cobalt/script/wrappable.h"
 
 namespace cobalt {
@@ -39,9 +40,12 @@
   // https://www.w3.org/TR/2019/WD-performance-timeline-2-20191024/#dom-performanceobservercallback
   typedef script::CallbackFunction<void(
       const scoped_refptr<PerformanceObserverEntryList>& entries,
-      const scoped_refptr<PerformanceObserver>& observer)> PerformanceObserverCallback;
-  typedef script::ScriptValue<PerformanceObserverCallback> PerformanceObserverCallbackArg;
-  typedef PerformanceObserverCallbackArg::Reference PerformanceObserverCallbackReference;
+      const scoped_refptr<PerformanceObserver>& observer)>
+      PerformanceObserverCallback;
+  typedef script::ScriptValue<PerformanceObserverCallback>
+      PerformanceObserverCallbackArg;
+  typedef PerformanceObserverCallbackArg::Reference
+      PerformanceObserverCallbackReference;
 
   typedef base::Callback<void(
       const scoped_refptr<PerformanceObserverEntryList>& entries,
@@ -69,17 +73,18 @@
 
   void EnqueuePerformanceEntry(const scoped_refptr<PerformanceEntry>& entry);
 
-  // Internal helper class to allow creation of a PerformanceObserver with either a
-  // native or script callback. Must be public so it can be inherited from in
-  // the .cc file.
+  // Internal helper class to allow creation of a PerformanceObserver with
+  // either a native or script callback. Must be public so it can be inherited
+  // from in the .cc file.
   class CallbackInternal {
    public:
-    virtual bool RunCallback(const scoped_refptr<PerformanceObserverEntryList>& entries,
-                             const scoped_refptr<PerformanceObserver>& observer) = 0;
+    virtual bool RunCallback(
+        const scoped_refptr<PerformanceObserverEntryList>& entries,
+        const scoped_refptr<PerformanceObserver>& observer) = 0;
     virtual ~CallbackInternal() {}
   };
 
-  void EmptyObserverBuffer() { observer_buffer_.clear();}
+  void EmptyObserverBuffer() { observer_buffer_.clear(); }
   PerformanceEntryList GetObserverBuffer() { return observer_buffer_; }
   std::unique_ptr<CallbackInternal>& GetPerformanceObserverCallback() {
     return callback_;
diff --git a/cobalt/dom/performance_observer_callback_options.idl b/cobalt/dom/performance_observer_callback_options.idl
index 031062b..a5c9252 100644
--- a/cobalt/dom/performance_observer_callback_options.idl
+++ b/cobalt/dom/performance_observer_callback_options.idl
@@ -14,4 +14,4 @@
 
 dictionary PerformanceObserverCallbackOptions {
   unsigned long long droppedEntriesCount;
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom/performance_observer_entry_list.cc b/cobalt/dom/performance_observer_entry_list.cc
index c5828bf..f49d32b 100644
--- a/cobalt/dom/performance_observer_entry_list.cc
+++ b/cobalt/dom/performance_observer_entry_list.cc
@@ -31,14 +31,14 @@
 
 PerformanceEntryList PerformanceObserverEntryList::GetEntriesByType(
     const std::string& entry_type) {
-  return PerformanceEntryListImpl::GetEntriesByType(
-      observer_buffer_, entry_type);
+  return PerformanceEntryListImpl::GetEntriesByType(observer_buffer_,
+                                                    entry_type);
 }
 
 PerformanceEntryList PerformanceObserverEntryList::GetEntriesByName(
     const std::string& name, const base::StringPiece& type) {
-  return PerformanceEntryListImpl::GetEntriesByName(
-      observer_buffer_, name, type);
+  return PerformanceEntryListImpl::GetEntriesByName(observer_buffer_, name,
+                                                    type);
 }
 
 }  // namespace dom
diff --git a/cobalt/dom/performance_resource_timing.cc b/cobalt/dom/performance_resource_timing.cc
index 09e72a3..c32f3dd 100644
--- a/cobalt/dom/performance_resource_timing.cc
+++ b/cobalt/dom/performance_resource_timing.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/dom/performance_resource_timing.h"
+
 #include "cobalt/dom/performance.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/performance_resource_timing.h b/cobalt/dom/performance_resource_timing.h
index a7fa31d..4b01b92 100644
--- a/cobalt/dom/performance_resource_timing.h
+++ b/cobalt/dom/performance_resource_timing.h
@@ -19,7 +19,6 @@
 
 #include "cobalt/dom/performance_entry.h"
 #include "cobalt/dom/performance_high_resolution_time.h"
-
 #include "cobalt/script/wrappable.h"
 #include "net/base/load_timing_info.h"
 
diff --git a/cobalt/dom/performance_test.cc b/cobalt/dom/performance_test.cc
index f0a28ed..a333247 100644
--- a/cobalt/dom/performance_test.cc
+++ b/cobalt/dom/performance_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/dom/performance.h"
+
 #include "cobalt/dom/performance_high_resolution_time.h"
 #include "cobalt/dom/testing/stub_environment_settings.h"
 #include "testing/gtest/include/gtest/gtest.h"
diff --git a/cobalt/dom/plugin_array.idl b/cobalt/dom/plugin_array.idl
index 43f418f..33eb35c 100644
--- a/cobalt/dom/plugin_array.idl
+++ b/cobalt/dom/plugin_array.idl
@@ -17,4 +17,3 @@
 interface PluginArray {
   readonly attribute long length;
 };
-
diff --git a/cobalt/dom/pseudo_element.cc b/cobalt/dom/pseudo_element.cc
index c787e16..135be85 100644
--- a/cobalt/dom/pseudo_element.cc
+++ b/cobalt/dom/pseudo_element.cc
@@ -12,9 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/dom/pseudo_element.h"
+
 #include "base/logging.h"
 #include "cobalt/dom/dom_animatable.h"
-#include "cobalt/dom/pseudo_element.h"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/pseudo_element.h b/cobalt/dom/pseudo_element.h
index e832639..b318665 100644
--- a/cobalt/dom/pseudo_element.h
+++ b/cobalt/dom/pseudo_element.h
@@ -16,6 +16,7 @@
 #define COBALT_DOM_PSEUDO_ELEMENT_H_
 
 #include <memory>
+#include <utility>
 
 #include "base/memory/ref_counted.h"
 #include "base/optional.h"
@@ -25,6 +26,7 @@
 #include "cobalt/cssom/css_transition_set.h"
 #include "cobalt/dom/css_animations_adapter.h"
 #include "cobalt/dom/css_transitions_adapter.h"
+#include "cobalt/dom/layout_boxes.h"
 
 namespace cobalt {
 namespace dom {
diff --git a/cobalt/dom/rule_matching.cc b/cobalt/dom/rule_matching.cc
index db703f4..c908472 100644
--- a/cobalt/dom/rule_matching.cc
+++ b/cobalt/dom/rule_matching.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/bind.h"
diff --git a/cobalt/dom/serializer.cc b/cobalt/dom/serializer.cc
index 2388382..723279f 100644
--- a/cobalt/dom/serializer.cc
+++ b/cobalt/dom/serializer.cc
@@ -16,6 +16,7 @@
 
 #include <map>
 #include <string>
+#include <utility>
 
 #include "base/strings/stringprintf.h"
 #include "cobalt/dom/attr.h"
diff --git a/cobalt/dom/storage_area.cc b/cobalt/dom/storage_area.cc
index 50be9ee..d436ebd 100644
--- a/cobalt/dom/storage_area.cc
+++ b/cobalt/dom/storage_area.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/dom/storage_area.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "base/strings/stringprintf.h"
 #include "cobalt/dom/local_storage_database.h"
diff --git a/cobalt/dom/storage_area_test.cc b/cobalt/dom/storage_area_test.cc
index ad87a48..69b8f91 100644
--- a/cobalt/dom/storage_area_test.cc
+++ b/cobalt/dom/storage_area_test.cc
@@ -17,8 +17,8 @@
 #include <set>
 #include <vector>
 
-#include "cobalt/dom/storage.h"
 #include "cobalt/dom/global_stats.h"
+#include "cobalt/dom/storage.h"
 #include "cobalt/storage/store/memory_store.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
@@ -33,9 +33,9 @@
 class MockStorage : public Storage {
  public:
   MockStorage() : Storage(NULL, kSessionStorage, NULL) {
-      ON_CALL(*this, origin()).WillByDefault(
-          Return(GURL("https://www.example.com")));
-      EXPECT_CALL(*this, origin()).Times(1);
+    ON_CALL(*this, origin())
+        .WillByDefault(Return(GURL("https://www.example.com")));
+    EXPECT_CALL(*this, origin()).Times(1);
   }
   MOCK_METHOD3(DispatchEvent, bool(const base::Optional<std::string>&,
                                    const base::Optional<std::string>&,
diff --git a/cobalt/dom/testing/fake_exception_state.h b/cobalt/dom/testing/fake_exception_state.h
index 990e7fd..2f13e26 100644
--- a/cobalt/dom/testing/fake_exception_state.h
+++ b/cobalt/dom/testing/fake_exception_state.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_DOM_TESTING_FAKE_EXCEPTION_STATE_H_
 #define COBALT_DOM_TESTING_FAKE_EXCEPTION_STATE_H_
 
-#include "cobalt/script/exception_state.h"
-
 #include "base/memory/ref_counted.h"
+#include "cobalt/script/exception_state.h"
 #include "cobalt/web/dom_exception.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/testing/stub_css_parser.cc b/cobalt/dom/testing/stub_css_parser.cc
index 0bc1c33..65f5a14 100644
--- a/cobalt/dom/testing/stub_css_parser.cc
+++ b/cobalt/dom/testing/stub_css_parser.cc
@@ -51,8 +51,7 @@
 void StubCSSParser::ParsePropertyIntoDeclarationData(
     const std::string& property_name, const std::string& property_value,
     const base::SourceLocation& property_location,
-    cssom::CSSDeclarationData* declaration_data) {
-}
+    cssom::CSSDeclarationData* declaration_data) {}
 
 scoped_refptr<cssom::MediaList> StubCSSParser::ParseMediaList(
     const std::string& media_list, const base::SourceLocation& input_location) {
diff --git a/cobalt/dom/text.h b/cobalt/dom/text.h
index 471f395..53ff065 100644
--- a/cobalt/dom/text.h
+++ b/cobalt/dom/text.h
@@ -21,7 +21,6 @@
 #include "cobalt/dom/character_data.h"
 #include "cobalt/dom/document.h"
 #include "cobalt/script/environment_settings.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace dom {
@@ -47,7 +46,6 @@
   void Accept(ConstNodeVisitor* visitor) const override;
 
   scoped_refptr<Node> Duplicate() const override {
-    TRACK_MEMORY_SCOPE("DOM");
     return new Text(node_document(), data());
   }
 
diff --git a/cobalt/dom/url_media_source.cc b/cobalt/dom/url_media_source.cc
index 83e9c86..15fbd8a 100644
--- a/cobalt/dom/url_media_source.cc
+++ b/cobalt/dom/url_media_source.cc
@@ -12,8 +12,6 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "cobalt/web/url.h"
-
 #include "base/guid.h"
 #include "base/logging.h"
 #include "cobalt/base/polymorphic_downcast.h"
@@ -21,6 +19,7 @@
 #include "cobalt/dom/media_source.h"
 #include "cobalt/web/context.h"
 #include "cobalt/web/environment_settings.h"
+#include "cobalt/web/url.h"
 #include "url/gurl.h"
 
 namespace cobalt {
diff --git a/cobalt/dom/video_track.h b/cobalt/dom/video_track.h
index 00235da..7bbf636 100644
--- a/cobalt/dom/video_track.h
+++ b/cobalt/dom/video_track.h
@@ -60,12 +60,9 @@
   //
   static bool IsValidKind(const char* kind) {
     // https://www.w3.org/TR/html51/semantics-embedded-content.html#dom-videotrack-videotrackkind
-    return strcmp(kind, "alternative") == 0 ||
-           strcmp(kind, "captions") == 0 ||
-           strcmp(kind, "main") == 0 ||
-           strcmp(kind, "sign") == 0 ||
-           strcmp(kind, "subtitles") == 0 ||
-           strcmp(kind, "commentary") == 0 ||
+    return strcmp(kind, "alternative") == 0 || strcmp(kind, "captions") == 0 ||
+           strcmp(kind, "main") == 0 || strcmp(kind, "sign") == 0 ||
+           strcmp(kind, "subtitles") == 0 || strcmp(kind, "commentary") == 0 ||
            strlen(kind) == 0;
   }
 
diff --git a/cobalt/dom/wheel_event.idl b/cobalt/dom/wheel_event.idl
index 215c008..00829a1 100644
--- a/cobalt/dom/wheel_event.idl
+++ b/cobalt/dom/wheel_event.idl
@@ -43,4 +43,4 @@
                    optional double deltaY = 0,
                    optional double deltaZ = 0,
                    optional unsigned long deltaMode = 0);
-};
\ No newline at end of file
+};
diff --git a/cobalt/dom_parser/libxml_html_parser_wrapper.h b/cobalt/dom_parser/libxml_html_parser_wrapper.h
index b6ee389..1dd7ee9 100644
--- a/cobalt/dom_parser/libxml_html_parser_wrapper.h
+++ b/cobalt/dom_parser/libxml_html_parser_wrapper.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_DOM_PARSER_LIBXML_HTML_PARSER_WRAPPER_H_
 #define COBALT_DOM_PARSER_LIBXML_HTML_PARSER_WRAPPER_H_
 
-#include "cobalt/dom_parser/libxml_parser_wrapper.h"
-
 #include <libxml/HTMLparser.h>
+
 #include <string>
 
 #include "base/callback.h"
@@ -25,6 +24,7 @@
 #include "cobalt/base/source_location.h"
 #include "cobalt/dom/document.h"
 #include "cobalt/dom/node.h"
+#include "cobalt/dom_parser/libxml_parser_wrapper.h"
 #include "cobalt/loader/decoder.h"
 
 namespace cobalt {
diff --git a/cobalt/dom_parser/libxml_xml_parser_wrapper.h b/cobalt/dom_parser/libxml_xml_parser_wrapper.h
index fabb663..1cb91d4 100644
--- a/cobalt/dom_parser/libxml_xml_parser_wrapper.h
+++ b/cobalt/dom_parser/libxml_xml_parser_wrapper.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_DOM_PARSER_LIBXML_XML_PARSER_WRAPPER_H_
 #define COBALT_DOM_PARSER_LIBXML_XML_PARSER_WRAPPER_H_
 
-#include "cobalt/dom_parser/libxml_parser_wrapper.h"
-
 #include <libxml/parser.h>
+
 #include <string>
 
 #include "base/callback.h"
@@ -25,6 +24,7 @@
 #include "cobalt/base/source_location.h"
 #include "cobalt/dom/node.h"
 #include "cobalt/dom/xml_document.h"
+#include "cobalt/dom_parser/libxml_parser_wrapper.h"
 #include "cobalt/loader/decoder.h"
 
 namespace cobalt {
diff --git a/cobalt/encoding/text_decoder.cc b/cobalt/encoding/text_decoder.cc
index 8f1a48c..0f05b59 100644
--- a/cobalt/encoding/text_decoder.cc
+++ b/cobalt/encoding/text_decoder.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/encoding/text_decoder.h"
+
 #include <algorithm>
 #include <cctype>
 
-#include "cobalt/encoding/text_decoder.h"
-
 #include "third_party/icu/source/common/unicode/uchriter.h"
 #include "third_party/icu/source/common/unicode/ucnv.h"
 #include "third_party/icu/source/common/unicode/unistr.h"
diff --git a/cobalt/encoding/text_decoder_test.cc b/cobalt/encoding/text_decoder_test.cc
index ca1c3b0..7fca0cb 100644
--- a/cobalt/encoding/text_decoder_test.cc
+++ b/cobalt/encoding/text_decoder_test.cc
@@ -27,7 +27,6 @@
 #include "cobalt/script/testing/mock_exception_state.h"
 #include "cobalt/script/typed_arrays.h"
 #include "cobalt/web/testing/stub_web_context.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using ::testing::_;
diff --git a/cobalt/encoding/text_encoder_test.cc b/cobalt/encoding/text_encoder_test.cc
index 4b59a7d..fb84843 100644
--- a/cobalt/encoding/text_encoder_test.cc
+++ b/cobalt/encoding/text_encoder_test.cc
@@ -23,7 +23,6 @@
 #include "cobalt/script/array_buffer_view.h"
 #include "cobalt/script/environment_settings.h"
 #include "cobalt/script/typed_arrays.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 
diff --git a/cobalt/h5vcc/BUILD.gn b/cobalt/h5vcc/BUILD.gn
index f081ce4..1e42192 100644
--- a/cobalt/h5vcc/BUILD.gn
+++ b/cobalt/h5vcc/BUILD.gn
@@ -38,8 +38,6 @@
     "h5vcc.h",
     "h5vcc_accessibility.cc",
     "h5vcc_accessibility.h",
-    "h5vcc_account_info.cc",
-    "h5vcc_account_info.h",
     "h5vcc_audio_config.cc",
     "h5vcc_audio_config.h",
     "h5vcc_audio_config_array.cc",
diff --git a/cobalt/h5vcc/dial/dial_http_response.cc b/cobalt/h5vcc/dial/dial_http_response.cc
index 3fcd329..6e1696a 100644
--- a/cobalt/h5vcc/dial/dial_http_response.cc
+++ b/cobalt/h5vcc/dial/dial_http_response.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/h5vcc/dial/dial_http_response.h"
+
 #include <memory>
 #include <utility>
 
-#include "cobalt/h5vcc/dial/dial_http_response.h"
-
 #include "base/strings/stringprintf.h"
 #include "net/server/http_server_response_info.h"
 
diff --git a/cobalt/h5vcc/h5vcc.cc b/cobalt/h5vcc/h5vcc.cc
index 8d957b8..885b912 100644
--- a/cobalt/h5vcc/h5vcc.cc
+++ b/cobalt/h5vcc/h5vcc.cc
@@ -27,7 +27,6 @@
 
 H5vcc::H5vcc(const Settings& settings) {
   accessibility_ = new H5vccAccessibility(settings.event_dispatcher);
-  account_info_ = new H5vccAccountInfo();
   audio_config_array_ = new H5vccAudioConfigArray();
   c_val_ = new dom::CValView();
   crash_log_ = new H5vccCrashLog();
@@ -71,7 +70,6 @@
 
 void H5vcc::TraceMembers(script::Tracer* tracer) {
   tracer->Trace(accessibility_);
-  tracer->Trace(account_info_);
   tracer->Trace(audio_config_array_);
   tracer->Trace(c_val_);
   tracer->Trace(crash_log_);
diff --git a/cobalt/h5vcc/h5vcc.h b/cobalt/h5vcc/h5vcc.h
index 0d60a7c..c74551f 100644
--- a/cobalt/h5vcc/h5vcc.h
+++ b/cobalt/h5vcc/h5vcc.h
@@ -22,7 +22,6 @@
 #include "cobalt/dom/c_val_view.h"
 #include "cobalt/dom/mutation_observer_task_manager.h"
 #include "cobalt/h5vcc/h5vcc_accessibility.h"
-#include "cobalt/h5vcc/h5vcc_account_info.h"
 #include "cobalt/h5vcc/h5vcc_audio_config_array.h"
 #include "cobalt/h5vcc/h5vcc_crash_log.h"
 #include "cobalt/h5vcc/h5vcc_metrics.h"
@@ -73,9 +72,6 @@
   const scoped_refptr<H5vccAccessibility>& accessibility() const {
     return accessibility_;
   }
-  const scoped_refptr<H5vccAccountInfo>& account_info() const {
-    return account_info_;
-  }
   const scoped_refptr<H5vccAudioConfigArray>& audio_config() {
     return audio_config_array_;
   }
@@ -98,7 +94,6 @@
 
  private:
   scoped_refptr<H5vccAccessibility> accessibility_;
-  scoped_refptr<H5vccAccountInfo> account_info_;
   scoped_refptr<H5vccAudioConfigArray> audio_config_array_;
   scoped_refptr<dom::CValView> c_val_;
   scoped_refptr<H5vccCrashLog> crash_log_;
diff --git a/cobalt/h5vcc/h5vcc.idl b/cobalt/h5vcc/h5vcc.idl
index 188e66b..e65bfa4 100644
--- a/cobalt/h5vcc/h5vcc.idl
+++ b/cobalt/h5vcc/h5vcc.idl
@@ -32,7 +32,6 @@
 
 interface H5vcc {
   readonly attribute H5vccAccessibility accessibility;
-  readonly attribute H5vccAccountInfo accountInfo;
   readonly attribute H5vccAudioConfigArray audioConfig;
   readonly attribute H5vccCrashLog crashLog;
   readonly attribute CValView cVal;
diff --git a/cobalt/h5vcc/h5vcc_accessibility.h b/cobalt/h5vcc/h5vcc_accessibility.h
index bb74c88..34c2eab 100644
--- a/cobalt/h5vcc/h5vcc_accessibility.h
+++ b/cobalt/h5vcc/h5vcc_accessibility.h
@@ -42,8 +42,7 @@
   void OnApplicationEvent(const base::Event* event);
 
   bool text_to_speech() const;
-  void AddTextToSpeechListener(
-      const H5vccAccessibilityCallbackHolder& holder);
+  void AddTextToSpeechListener(const H5vccAccessibilityCallbackHolder& holder);
 
   bool built_in_screen_reader() const;
   void set_built_in_screen_reader(bool value);
@@ -62,8 +61,7 @@
   base::EventDispatcher* event_dispatcher_;
   std::unique_ptr<H5vccAccessibilityCallbackReference>
       high_contrast_text_listener_;
-  std::unique_ptr<H5vccAccessibilityCallbackReference>
-      text_to_speech_listener_;
+  std::unique_ptr<H5vccAccessibilityCallbackReference> text_to_speech_listener_;
 
   DISALLOW_COPY_AND_ASSIGN(H5vccAccessibility);
 };
diff --git a/cobalt/h5vcc/h5vcc_account_info.cc b/cobalt/h5vcc/h5vcc_account_info.cc
deleted file mode 100644
index c6b6303..0000000
--- a/cobalt/h5vcc/h5vcc_account_info.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright 2015 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "cobalt/h5vcc/h5vcc_account_info.h"
-
-#include <memory>
-#include <string>
-
-#include "starboard/user.h"
-
-namespace cobalt {
-namespace h5vcc {
-
-namespace {
-const int kMaxValueLength = 64 * 1024;
-
-std::string GetCurrentUserProperty(SbUserPropertyId property_id) {
-  SbUser user = SbUserGetCurrent();
-
-  if (!SbUserIsValid(user)) {
-    return "";
-  }
-
-  int size = SbUserGetPropertySize(user, property_id);
-  if (!size || size > kMaxValueLength) {
-    return "";
-  }
-
-  std::unique_ptr<char[]> value(new char[size]);
-  if (!SbUserGetProperty(user, property_id, value.get(), size)) {
-    return "";
-  }
-
-  std::string result = value.get();
-  return result;
-}
-
-}  // namespace
-
-H5vccAccountInfo::H5vccAccountInfo() {}
-
-std::string H5vccAccountInfo::avatar_url() const {
-  return GetCurrentUserProperty(kSbUserPropertyAvatarUrl);
-}
-
-std::string H5vccAccountInfo::username() const {
-  return GetCurrentUserProperty(kSbUserPropertyUserName);
-}
-
-std::string H5vccAccountInfo::user_id() const {
-  return GetCurrentUserProperty(kSbUserPropertyUserId);
-}
-
-}  // namespace h5vcc
-}  // namespace cobalt
diff --git a/cobalt/h5vcc/h5vcc_account_info.h b/cobalt/h5vcc/h5vcc_account_info.h
deleted file mode 100644
index 6634217..0000000
--- a/cobalt/h5vcc/h5vcc_account_info.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2015 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_H5VCC_H5VCC_ACCOUNT_INFO_H_
-#define COBALT_H5VCC_H5VCC_ACCOUNT_INFO_H_
-
-#include <string>
-
-#include "cobalt/script/wrappable.h"
-
-namespace cobalt {
-namespace h5vcc {
-
-class H5vccAccountInfo : public script::Wrappable {
- public:
-  H5vccAccountInfo();
-  std::string avatar_url() const;
-  std::string username() const;
-  std::string user_id() const;
-
-  DEFINE_WRAPPABLE_TYPE(H5vccAccountInfo);
-
- private:
-  DISALLOW_COPY_AND_ASSIGN(H5vccAccountInfo);
-};
-
-}  // namespace h5vcc
-}  // namespace cobalt
-
-#endif  // COBALT_H5VCC_H5VCC_ACCOUNT_INFO_H_
diff --git a/cobalt/h5vcc/h5vcc_account_manager_internal.cc b/cobalt/h5vcc/h5vcc_account_manager_internal.cc
index d3897c1..ad81d01 100644
--- a/cobalt/h5vcc/h5vcc_account_manager_internal.cc
+++ b/cobalt/h5vcc/h5vcc_account_manager_internal.cc
@@ -20,7 +20,6 @@
 #include "base/memory/weak_ptr.h"
 #include "cobalt/browser/switches.h"
 #include "cobalt/web/environment_settings_helper.h"
-#include "starboard/user.h"
 
 namespace cobalt {
 namespace h5vcc {
@@ -104,25 +103,22 @@
     return;
   }
 
-  SbUser current_user = SbUserGetCurrent();
-  DCHECK(SbUserIsValid(current_user));
-
   std::unique_ptr<account::AccessToken> access_token(nullptr);
 
   switch (operation) {
     case kPairing:
-      access_token = user_authorizer->AuthorizeUser(current_user);
+      access_token = user_authorizer->AuthorizeUser();
       DLOG_IF(INFO, !access_token) << "User authorization request failed.";
       break;
     case kUnpairing:
-      if (user_authorizer->DeauthorizeUser(current_user)) {
+      if (user_authorizer->DeauthorizeUser()) {
         break;
       }
       // The user canceled the flow, or there was some error. Fall into the next
       // case to get an access token if available and return that.
       DLOG(INFO) << "User deauthorization request failed. Try to get token.";
     case kGetToken:
-      access_token = user_authorizer->RefreshAuthorization(current_user);
+      access_token = user_authorizer->RefreshAuthorization();
       DLOG_IF(INFO, !access_token) << "Authorization refresh request failed.";
       break;
   }
diff --git a/cobalt/h5vcc/h5vcc_crash_log.cc b/cobalt/h5vcc/h5vcc_crash_log.cc
index baccbac..b3e76e7 100644
--- a/cobalt/h5vcc/h5vcc_crash_log.cc
+++ b/cobalt/h5vcc/h5vcc_crash_log.cc
@@ -15,7 +15,9 @@
 #include "cobalt/h5vcc/h5vcc_crash_log.h"
 
 #include <map>
+#include <memory>
 #include <string>
+#include <vector>
 
 #include "base/atomicops.h"
 #include "base/memory/singleton.h"
@@ -171,9 +173,21 @@
   return false;
 }
 
-std::string H5vccCrashLog::GetWatchdogViolations() {
+std::string H5vccCrashLog::GetWatchdogViolations(
+    const script::Sequence<std::string>& clients) {
   watchdog::Watchdog* watchdog = watchdog::Watchdog::GetInstance();
-  if (watchdog) return watchdog->GetWatchdogViolations();
+  if (watchdog) {
+    // If not clients name is given, return all clients' data.
+    if (clients.size() == 0) {
+      return watchdog->GetWatchdogViolations();
+    }
+    std::vector<std::string> client_names;
+    for (script::Sequence<std::string>::size_type i = 0; i < clients.size();
+         ++i) {
+      client_names.push_back(clients.at(i).c_str());
+    }
+    return watchdog->GetWatchdogViolations(client_names);
+  }
   return "";
 }
 
diff --git a/cobalt/h5vcc/h5vcc_crash_log.h b/cobalt/h5vcc/h5vcc_crash_log.h
index bb20a48..ea06c88 100644
--- a/cobalt/h5vcc/h5vcc_crash_log.h
+++ b/cobalt/h5vcc/h5vcc_crash_log.h
@@ -78,7 +78,8 @@
 
   bool Ping(const std::string& name, const std::string& ping_info);
 
-  std::string GetWatchdogViolations();
+  std::string GetWatchdogViolations(
+      const script::Sequence<std::string>& clients = {});
 
   bool GetPersistentSettingWatchdogEnable();
 
diff --git a/cobalt/h5vcc/h5vcc_crash_log.idl b/cobalt/h5vcc/h5vcc_crash_log.idl
index e93caac..8d4a3ba 100644
--- a/cobalt/h5vcc/h5vcc_crash_log.idl
+++ b/cobalt/h5vcc/h5vcc_crash_log.idl
@@ -84,7 +84,7 @@
   //     ]
   //   }
   // }
-  DOMString getWatchdogViolations();
+  DOMString getWatchdogViolations(optional sequence<DOMString> clients);
 
   // Gets a persistent Watchdog setting that determines whether or not Watchdog
   // is enabled. When disabled, Watchdog behaves like a stub except that
diff --git a/cobalt/h5vcc/h5vcc_metric_type.idl b/cobalt/h5vcc/h5vcc_metric_type.idl
index 1a9ffc1..79bf952 100644
--- a/cobalt/h5vcc/h5vcc_metric_type.idl
+++ b/cobalt/h5vcc/h5vcc_metric_type.idl
@@ -13,11 +13,14 @@
 // limitations under the License.
 
 // The various metric types we support to be published through the H5vccMetrics
-// API.
+// API. The proto will be serialized and then base64 encoded.
 enum H5vccMetricType {
   // //third_party/metrics_proto/chrome_user_metrics_extension.proto
   // ChromeUserMetricsExtension proto.
   "UMA",
   // //third_party/metrics_proto/ukm/report.proto Report proto.
-  "UKM"
+  "UKM",
+  // Cobalt's trimmed down version of the UMA proto
+  // //third_party/metrics_proto/cobalt_uma_event.proto
+  "COBALT_UMA",
 };
diff --git a/cobalt/h5vcc/h5vcc_metrics.idl b/cobalt/h5vcc/h5vcc_metrics.idl
index 29aa11f..1d7292c 100644
--- a/cobalt/h5vcc/h5vcc_metrics.idl
+++ b/cobalt/h5vcc/h5vcc_metrics.idl
@@ -25,8 +25,8 @@
   // Example usage in JS:
   //
   //   window.h5vcc.metrics.onMetricEvent((metricType, payload) => {
-  //     if (metricType == 'UMA') {
-  //       // log UMA payload here...
+  //     if (metricType == 'COBALT_UMA') {
+  //       // log Cobalt UMA payload here...
   //     }
   //   });
   void onMetricEvent(H5vccMetricEventHandler eventHandler);
@@ -44,7 +44,12 @@
   // should never get called afterward.
   void disable();
 
-  // Returns the current enabled state of metrics reporting.
+  // Returns the current enabled state of metrics reporting. Note, the enable()
+  // and disable() APIs are asynchronous under the hood. This means if you call
+  // isEnabled() immediately after enable/disable, you may get unexpected
+  // results.
+  // TODO(b/290064552): Update this when H5vccMetrics APIs support async
+  // behavior.
   boolean isEnabled();
 
   // Sets the frequency in which Cobalt metrics will be snapshotted and sent to
@@ -56,7 +61,8 @@
 };
 
 // Callback invoked when a new metric payload is ready to be published. The
-// payload is a serialized protobuf and the metric type should give the consumer
-// a hint on how to deserialize it. See h5vcc_metric_type.idl for more info.
+// payload is a base64 encoded serialized protobuf and the metric type should
+// give the consumer a hint on how to deserialize it. See h5vcc_metric_type.idl
+// for more info.
 callback H5vccMetricEventHandler =
     void(H5vccMetricType metricType, DOMString metricPayload);
diff --git a/cobalt/h5vcc/h5vcc_screen.idl b/cobalt/h5vcc/h5vcc_screen.idl
index a075606..4aacdaa 100644
--- a/cobalt/h5vcc/h5vcc_screen.idl
+++ b/cobalt/h5vcc/h5vcc_screen.idl
@@ -19,4 +19,3 @@
   // screen diagonal is.
   [CallWith=EnvironmentSettings] static float GetDiagonal();
 };
-
diff --git a/cobalt/h5vcc/h5vcc_settings.cc b/cobalt/h5vcc/h5vcc_settings.cc
index 4babfd9..e6c7b26 100644
--- a/cobalt/h5vcc/h5vcc_settings.cc
+++ b/cobalt/h5vcc/h5vcc_settings.cc
@@ -106,10 +106,16 @@
   }
 
   if (name.compare(kQUIC) == 0) {
-    if (!network_module_) {
+    if (!persistent_settings_) {
       return false;
     } else {
-      network_module_->SetEnableQuic(value != 0);
+      persistent_settings_->SetPersistentSetting(
+          network::kQuicEnabledPersistentSettingsKey,
+          std::make_unique<base::Value>(value != 0));
+      // Tell NetworkModule (if exists) to re-query persistent settings.
+      if (network_module_) {
+        network_module_->SetEnableQuicFromPersistentSettings();
+      }
       return true;
     }
   }
diff --git a/cobalt/h5vcc/h5vcc_storage.cc b/cobalt/h5vcc/h5vcc_storage.cc
index 2c1f332..f059e8e 100644
--- a/cobalt/h5vcc/h5vcc_storage.cc
+++ b/cobalt/h5vcc/h5vcc_storage.cc
@@ -31,7 +31,6 @@
 #include "net/disk_cache/cobalt/resource_type.h"
 #include "net/http/http_cache.h"
 #include "net/http/http_transaction_factory.h"
-#include "starboard/common/file.h"
 #include "starboard/common/string.h"
 
 namespace cobalt {
@@ -69,6 +68,11 @@
   return response;
 }
 
+void ClearDirectory(const base::FilePath& file_path) {
+  base::DeleteFile(file_path, /*recursive=*/true);
+  base::CreateDirectory(file_path);
+}
+
 void DeleteCacheResourceTypeDirectory(disk_cache::ResourceType type) {
   auto metadata = disk_cache::kTypeMetadata[type];
   std::vector<char> cache_dir(kSbFileMaxPath + 1, 0);
@@ -77,7 +81,7 @@
   base::FilePath cache_type_dir =
       base::FilePath(cache_dir.data())
           .Append(FILE_PATH_LITERAL(metadata.directory));
-  starboard::SbFileDeleteRecursive(cache_type_dir.value().data(), true);
+  ClearDirectory(cache_type_dir);
 }
 
 void ClearCacheHelper(disk_cache::Backend* backend) {
@@ -150,21 +154,17 @@
   SbSystemGetPath(kSbSystemPathCacheDirectory, cache_dir.data(),
                   kSbFileMaxPath);
 
-  // Delete the contents of cache_dir.
-  starboard::SbFileDeleteRecursive(cache_dir.data(), true);
+  ClearDirectory(base::FilePath(cache_dir.data()));
 
   // Try to Create the test_file.
-  std::string test_file_path =
-      std::string(cache_dir.data()) + kSbFileSepString + kTestFileName;
-  SbFileError test_file_error;
-  starboard::ScopedFile test_file(test_file_path.c_str(),
-                                  kSbFileOpenAlways | kSbFileWrite, NULL,
-                                  &test_file_error);
+  base::FilePath test_file_path =
+      base::FilePath(cache_dir.data()).Append(kTestFileName);
+  base::File test_file(test_file_path,
+                       base::File::FLAG_OPEN_ALWAYS | base::File::FLAG_WRITE);
 
-  if (test_file_error != kSbFileOk) {
-    return WriteTestResponse(
-        starboard::FormatString("SbFileError: %d while opening ScopedFile: %s",
-                                test_file_error, test_file_path.c_str()));
+  if (!test_file.IsValid()) {
+    return WriteTestResponse(starboard::FormatString(
+        "Error while opening ScopedFile: %s", test_file_path.value().c_str()));
   }
 
   // Repeatedly write test_string to test_size bytes of write_buffer.
@@ -180,11 +180,11 @@
   uint32 total_bytes_written = 0;
 
   do {
-    auto bytes_written =
-        test_file.Write(write_buf.data() + total_bytes_written,
-                        std::min(kBufferSize, test_size - total_bytes_written));
+    auto bytes_written = test_file.WriteAtCurrentPosNoBestEffort(
+        write_buf.data() + total_bytes_written,
+        std::min(kBufferSize, test_size - total_bytes_written));
     if (bytes_written <= 0) {
-      SbFileDelete(test_file_path.c_str());
+      base::DeleteFile(test_file_path, /*recursive=*/false);
       return WriteTestResponse("SbWrite -1 return value error");
     }
     total_bytes_written += bytes_written;
@@ -201,17 +201,13 @@
   SbSystemGetPath(kSbSystemPathCacheDirectory, cache_dir.data(),
                   kSbFileMaxPath);
 
-  std::string test_file_path =
-      std::string(cache_dir.data()) + kSbFileSepString + kTestFileName;
-  SbFileError test_file_error;
-  starboard::ScopedFile test_file(test_file_path.c_str(),
-                                  kSbFileOpenOnly | kSbFileRead, NULL,
-                                  &test_file_error);
-
-  if (test_file_error != kSbFileOk) {
-    return VerifyTestResponse(
-        starboard::FormatString("SbFileError: %d while opening ScopedFile: %s",
-                                test_file_error, test_file_path.c_str()));
+  base::FilePath test_file_path =
+      base::FilePath(cache_dir.data()).Append(kTestFileName);
+  base::File test_file(test_file_path,
+                       base::File::FLAG_OPEN | base::File::FLAG_READ);
+  if (!test_file.IsValid()) {
+    return VerifyTestResponse(starboard::FormatString(
+        "Error while opening ScopedFile: %s", test_file_path.value().c_str()));
   }
 
   // Incremental Reads of test_data, copies SbReadAll, using a maximum
@@ -220,10 +216,10 @@
 
   do {
     auto read_buffer = std::make_unique<char[]>(kBufferSize);
-    auto bytes_read = test_file.Read(
+    auto bytes_read = test_file.ReadAtCurrentPosNoBestEffort(
         read_buffer.get(), std::min(kBufferSize, test_size - total_bytes_read));
     if (bytes_read <= 0) {
-      SbFileDelete(test_file_path.c_str());
+      base::DeleteFile(test_file_path, /*recursive=*/false);
       return VerifyTestResponse("SbRead -1 return value error");
     }
 
@@ -240,12 +236,12 @@
   } while (total_bytes_read < test_size);
 
   if (total_bytes_read != test_size) {
-    SbFileDelete(test_file_path.c_str());
+    base::DeleteFile(test_file_path, /*recursive=*/false);
     return VerifyTestResponse(
         "File test data size does not match kTestDataSize");
   }
 
-  SbFileDelete(test_file_path.c_str());
+  base::DeleteFile(test_file_path, /*recursive=*/false);
   return VerifyTestResponse("", true, total_bytes_read);
 }
 
@@ -421,10 +417,10 @@
   std::vector<char> storage_dir(kSbFileMaxPath, 0);
   SbSystemGetPath(kSbSystemPathCacheDirectory, storage_dir.data(),
                   kSbFileMaxPath);
-  std::string service_worker_file_path =
-      std::string(storage_dir.data()) + kSbFileSepString +
-      worker::ServiceWorkerConsts::kSettingsJson;
-  SbFileDelete(service_worker_file_path.c_str());
+  base::FilePath service_worker_file_path =
+      base::FilePath(storage_dir.data())
+          .Append(worker::ServiceWorkerConsts::kSettingsJson);
+  base::DeleteFile(service_worker_file_path, /*recursive=*/false);
 }
 
 bool H5vccStorage::ValidatedCacheBackend() {
diff --git a/cobalt/input/input_device_manager_fuzzer.h b/cobalt/input/input_device_manager_fuzzer.h
index 421d5cd..5bc37c9 100644
--- a/cobalt/input/input_device_manager_fuzzer.h
+++ b/cobalt/input/input_device_manager_fuzzer.h
@@ -24,7 +24,7 @@
 namespace cobalt {
 namespace input {
 
-// This input fuzzer will continously generate random input events.  It is a
+// This input fuzzer will continuously generate random input events.  It is a
 // debug tool that can be used in place of a platform-specific
 // InputDeviceManager that generates input events from an external controller
 // device.
diff --git a/cobalt/input/key_event_handler.h b/cobalt/input/key_event_handler.h
index c873762..5c9960d 100644
--- a/cobalt/input/key_event_handler.h
+++ b/cobalt/input/key_event_handler.h
@@ -35,7 +35,7 @@
  public:
   // Called to handle a key event. The base class implementation just calls
   // DispatchKeyboardEvent. Overridden versions of this function may modify the
-  // incoming event and/or generate new events. Overriden versions should call
+  // incoming event and/or generate new events. Overridden versions should call
   // DispatchKeyboardEvent for each event filtered/produced.
   virtual void HandleKeyboardEvent(base::Token type,
                                    const dom::KeyboardEventInit& event);
diff --git a/cobalt/layout/anonymous_block_box.cc b/cobalt/layout/anonymous_block_box.cc
index b99fb09..b326ff7 100644
--- a/cobalt/layout/anonymous_block_box.cc
+++ b/cobalt/layout/anonymous_block_box.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/layout/anonymous_block_box.h"
 
+#include <memory>
+
 #include "cobalt/cssom/keyword_value.h"
 #include "cobalt/layout/inline_formatting_context.h"
 #include "cobalt/layout/used_style.h"
diff --git a/cobalt/layout/block_container_box.cc b/cobalt/layout/block_container_box.cc
index 0c04ea1..9d9257a 100644
--- a/cobalt/layout/block_container_box.cc
+++ b/cobalt/layout/block_container_box.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/layout/block_container_box.h"
 
+#include <memory>
+
 #include "cobalt/layout/formatting_context.h"
 #include "cobalt/layout/used_style.h"
 
@@ -36,9 +36,8 @@
 // Updates used values of "width" and "margin" properties based on
 // https://www.w3.org/TR/CSS21/visudet.html#Computing_widths_and_margins.
 void BlockContainerBox::UpdateContentWidthAndMargins(
-    BaseDirection containing_block_direction,
-    LayoutUnit containing_block_width, bool shrink_to_fit_width_forced,
-    bool width_depends_on_containing_block,
+    BaseDirection containing_block_direction, LayoutUnit containing_block_width,
+    bool shrink_to_fit_width_forced, bool width_depends_on_containing_block,
     const base::Optional<LayoutUnit>& maybe_left,
     const base::Optional<LayoutUnit>& maybe_right,
     const base::Optional<LayoutUnit>& maybe_margin_left,
@@ -47,9 +46,9 @@
     const base::Optional<LayoutUnit>& maybe_height) {
   if (IsAbsolutelyPositioned()) {
     UpdateWidthAssumingAbsolutelyPositionedBox(
-        containing_block_direction, containing_block_width,
-        maybe_left, maybe_right, maybe_width,
-        maybe_margin_left, maybe_margin_right, maybe_height);
+        containing_block_direction, containing_block_width, maybe_left,
+        maybe_right, maybe_width, maybe_margin_left, maybe_margin_right,
+        maybe_height);
   } else {
     base::Optional<LayoutUnit> maybe_nulled_width = maybe_width;
     Level forced_level = GetLevel();
@@ -346,8 +345,7 @@
 //     + "padding-right" + "border-right-width" + "margin-right" + "right"
 //     = width of containing block
 void BlockContainerBox::UpdateWidthAssumingAbsolutelyPositionedBox(
-    BaseDirection containing_block_direction,
-    LayoutUnit containing_block_width,
+    BaseDirection containing_block_direction, LayoutUnit containing_block_width,
     const base::Optional<LayoutUnit>& maybe_left,
     const base::Optional<LayoutUnit>& maybe_right,
     const base::Optional<LayoutUnit>& maybe_width,
@@ -626,8 +624,7 @@
 //     + "padding-right" + "border-right-width" + "margin-right"
 //     = width of containing block
 void BlockContainerBox::UpdateWidthAssumingBlockLevelInFlowBox(
-    BaseDirection containing_block_direction,
-    LayoutUnit containing_block_width,
+    BaseDirection containing_block_direction, LayoutUnit containing_block_width,
     const base::Optional<LayoutUnit>& maybe_width,
     const base::Optional<LayoutUnit>& possibly_overconstrained_margin_left,
     const base::Optional<LayoutUnit>& possibly_overconstrained_margin_right) {
diff --git a/cobalt/layout/block_formatting_block_container_box.cc b/cobalt/layout/block_formatting_block_container_box.cc
index cf45f33..f6a4185 100644
--- a/cobalt/layout/block_formatting_block_container_box.cc
+++ b/cobalt/layout/block_formatting_block_container_box.cc
@@ -50,7 +50,7 @@
         PushBackDirectChild(child_box);
         break;
       }
-    // Fall through if child is out-of-flow.
+      // Fall through if child is out-of-flow.
 
     case kInlineLevel:
       // An inline formatting context required,
diff --git a/cobalt/layout/block_level_replaced_box.cc b/cobalt/layout/block_level_replaced_box.cc
index 359313b..def5961 100644
--- a/cobalt/layout/block_level_replaced_box.cc
+++ b/cobalt/layout/block_level_replaced_box.cc
@@ -43,16 +43,16 @@
 Box::Level BlockLevelReplacedBox::GetLevel() const { return kBlockLevel; }
 
 void BlockLevelReplacedBox::UpdateHorizontalMargins(
-    BaseDirection containing_block_direction,
-    LayoutUnit containing_block_width, LayoutUnit border_box_width,
+    BaseDirection containing_block_direction, LayoutUnit containing_block_width,
+    LayoutUnit border_box_width,
     const base::Optional<LayoutUnit>& maybe_margin_left,
     const base::Optional<LayoutUnit>& maybe_margin_right) {
-  // Calculate the horizonal margins for block-level, replaced elements in
+  // Calculate the horizontal margins for block-level, replaced elements in
   // normal flow.
   //   https://www.w3.org/TR/CSS21/visudet.html#block-replaced-width
   UpdateHorizontalMarginsAssumingBlockLevelInFlowBox(
-      containing_block_direction, containing_block_width,
-      border_box_width, maybe_margin_left, maybe_margin_right);
+      containing_block_direction, containing_block_width, border_box_width,
+      maybe_margin_left, maybe_margin_right);
 }
 
 #ifdef COBALT_BOX_DUMP_ENABLED
diff --git a/cobalt/layout/box_generator.cc b/cobalt/layout/box_generator.cc
index 6eee421..b279f0c 100644
--- a/cobalt/layout/box_generator.cc
+++ b/cobalt/layout/box_generator.cc
@@ -339,22 +339,31 @@
   // If the optional is disengaged, then we don't know if punch out is enabled
   // or not.
   base::Optional<ReplacedBox::ReplacedBoxMode> replaced_box_mode;
-  if (video_element->GetDecodeTargetProvider()) {
+  bool paint_to_black = false;
+  auto decode_target_provider =
+      video_element->GetDecodeTargetProvider(&paint_to_black);
+  if (decode_target_provider) {
     DecodeTargetProvider::OutputMode output_mode =
-        video_element->GetDecodeTargetProvider()->GetOutputMode();
-    if (output_mode != DecodeTargetProvider::kOutputModeInvalid) {
+        decode_target_provider->GetOutputMode();
+    if (output_mode == DecodeTargetProvider::kOutputModeInvalid) {
+      if (paint_to_black) {
+        replaced_box_mode = ReplacedBox::ReplacedBoxMode::kPaintToBlack;
+      }
+    } else {
       replaced_box_mode =
           (output_mode == DecodeTargetProvider::kOutputModePunchOut)
               ? ReplacedBox::ReplacedBoxMode::kPunchOutVideo
-              : ReplacedBox::ReplacedBoxMode::kVideo;
+              : ReplacedBox::ReplacedBoxMode::kDecodeToTextureVideo;
     }
+  } else {
+    // ReplacedBox won't paint anything when |decode_target_provider| is
+    // nullptr, as |replace_image_cb_| is also null in this case.
   }
 
   ReplacedBoxGenerator replaced_box_generator(
       video_element->css_computed_style_declaration(),
-      video_element->GetDecodeTargetProvider()
-          ? base::Bind(GetVideoFrame, video_element->GetDecodeTargetProvider(),
-                       resource_provider)
+      decode_target_provider
+          ? base::Bind(GetVideoFrame, decode_target_provider, resource_provider)
           : ReplacedBox::ReplaceImageCB(),
       video_element->GetSetBoundsCB(), *paragraph_, text_position,
       base::nullopt, base::nullopt, base::nullopt, context_, replaced_box_mode,
diff --git a/cobalt/layout/box_intersection_observer_module.cc b/cobalt/layout/box_intersection_observer_module.cc
index 124d36c..ed0c7be 100644
--- a/cobalt/layout/box_intersection_observer_module.cc
+++ b/cobalt/layout/box_intersection_observer_module.cc
@@ -14,6 +14,8 @@
 
 #include "cobalt/layout/box_intersection_observer_module.h"
 
+#include <utility>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/layout/box.h"
 
diff --git a/cobalt/layout/container_box.cc b/cobalt/layout/container_box.cc
index 9bef557..3af5c12 100644
--- a/cobalt/layout/container_box.cc
+++ b/cobalt/layout/container_box.cc
@@ -15,6 +15,7 @@
 #include "cobalt/layout/container_box.h"
 
 #include <algorithm>
+#include <utility>
 
 #include "cobalt/cssom/computed_style_utils.h"
 #include "cobalt/cssom/keyword_value.h"
diff --git a/cobalt/layout/flex_formatting_context.cc b/cobalt/layout/flex_formatting_context.cc
index af19fc0..87656c1 100644
--- a/cobalt/layout/flex_formatting_context.cc
+++ b/cobalt/layout/flex_formatting_context.cc
@@ -15,6 +15,7 @@
 #include "cobalt/layout/flex_formatting_context.h"
 
 #include <algorithm>
+#include <utility>
 
 #include "base/logging.h"
 #include "cobalt/cssom/keyword_value.h"
diff --git a/cobalt/layout/flex_item.cc b/cobalt/layout/flex_item.cc
index 231594b..1740ab3 100644
--- a/cobalt/layout/flex_item.cc
+++ b/cobalt/layout/flex_item.cc
@@ -15,6 +15,7 @@
 #include "cobalt/layout/flex_item.h"
 
 #include <algorithm>
+#include <memory>
 
 #include "base/logging.h"
 #include "base/memory/ptr_util.h"
diff --git a/cobalt/layout/flex_item.h b/cobalt/layout/flex_item.h
index becc390..25daf27 100644
--- a/cobalt/layout/flex_item.h
+++ b/cobalt/layout/flex_item.h
@@ -15,6 +15,7 @@
 #ifndef COBALT_LAYOUT_FLEX_ITEM_H_
 #define COBALT_LAYOUT_FLEX_ITEM_H_
 
+#include <memory>
 #include <vector>
 
 #include "base/logging.h"
diff --git a/cobalt/layout/flex_line.cc b/cobalt/layout/flex_line.cc
index a55819f..f289c6b 100644
--- a/cobalt/layout/flex_line.cc
+++ b/cobalt/layout/flex_line.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <list>
+#include <utility>
 #include <vector>
 
 #include "cobalt/cssom/css_computed_style_data.h"
diff --git a/cobalt/layout/inline_container_box.cc b/cobalt/layout/inline_container_box.cc
index 0a60a22..b36bdc1 100644
--- a/cobalt/layout/inline_container_box.cc
+++ b/cobalt/layout/inline_container_box.cc
@@ -58,7 +58,7 @@
         // container box.
         return false;
       }
-    // Fall through if out-of-flow.
+      // Fall through if out-of-flow.
 
     case kInlineLevel:
       // If the inline container box already contains a line break, then no
diff --git a/cobalt/layout/inline_level_replaced_box.cc b/cobalt/layout/inline_level_replaced_box.cc
index 3b71f0c..594ec57 100644
--- a/cobalt/layout/inline_level_replaced_box.cc
+++ b/cobalt/layout/inline_level_replaced_box.cc
@@ -67,11 +67,10 @@
 }
 
 void InlineLevelReplacedBox::UpdateHorizontalMargins(
-    BaseDirection containing_block_direction,
-    LayoutUnit containing_block_width, LayoutUnit border_box_width,
+    BaseDirection containing_block_direction, LayoutUnit containing_block_width,
+    LayoutUnit border_box_width,
     const base::Optional<LayoutUnit>& maybe_margin_left,
     const base::Optional<LayoutUnit>& maybe_margin_right) {
-
   // A computed value of "auto" for "margin-left" or "margin-right" becomes
   // a used value of "0".
   //   https://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width
diff --git a/cobalt/layout/insets_layout_unit.h b/cobalt/layout/insets_layout_unit.h
index 5b4264d..7b6c379 100644
--- a/cobalt/layout/insets_layout_unit.h
+++ b/cobalt/layout/insets_layout_unit.h
@@ -1,3 +1,4 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
@@ -27,8 +28,7 @@
 
 inline InsetsLayoutUnit operator+(const InsetsLayoutUnit& lhs,
                                   const InsetsLayoutUnit& rhs) {
-  return InsetsLayoutUnit(lhs.left() + rhs.left(),
-                          lhs.top() + rhs.top(),
+  return InsetsLayoutUnit(lhs.left() + rhs.left(), lhs.top() + rhs.top(),
                           lhs.right() + rhs.right(),
                           lhs.bottom() + rhs.bottom());
 }
diff --git a/cobalt/layout/intersection_observer_target.cc b/cobalt/layout/intersection_observer_target.cc
index e114025..9b8c009 100644
--- a/cobalt/layout/intersection_observer_target.cc
+++ b/cobalt/layout/intersection_observer_target.cc
@@ -257,8 +257,9 @@
   // If targetArea is non-zero, let intersectionRatio be intersectionArea
   // divided by targetArea. Otherwise, let intersectionRatio be 1 if
   // isIntersecting is true, or 0 if isIntersecting is false.
-  float intersection_ratio = target_area > 0 ? intersection_area / target_area
-                                             : is_intersecting ? 1.0f : 0.0f;
+  float intersection_ratio = target_area > 0   ? intersection_area / target_area
+                             : is_intersecting ? 1.0f
+                                               : 0.0f;
 
   // Let thresholdIndex be the index of the first entry in observer.thresholds
   // whose value is greater than intersectionRatio, or the length of
diff --git a/cobalt/layout/layout_unit.h b/cobalt/layout/layout_unit.h
index 7b057ca..64df9ac 100644
--- a/cobalt/layout/layout_unit.h
+++ b/cobalt/layout/layout_unit.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_LAYOUT_LAYOUT_UNIT_H_
 #define COBALT_LAYOUT_LAYOUT_UNIT_H_
 
-#include <cmath>
-
 #include <algorithm>
+#include <cmath>
 #include <iostream>
 #include <utility>
 
diff --git a/cobalt/layout/letterboxed_image_test.cc b/cobalt/layout/letterboxed_image_test.cc
index c895853..21ce79d 100644
--- a/cobalt/layout/letterboxed_image_test.cc
+++ b/cobalt/layout/letterboxed_image_test.cc
@@ -16,7 +16,6 @@
 
 #include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/math/size.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/layout/paragraph.cc b/cobalt/layout/paragraph.cc
index 5118161..86f87a0 100644
--- a/cobalt/layout/paragraph.cc
+++ b/cobalt/layout/paragraph.cc
@@ -16,7 +16,6 @@
 
 #include "base/i18n/char_iterator.h"
 #include "cobalt/base/unicode/character_values.h"
-
 #include "third_party/icu/source/common/unicode/char16ptr.h"
 #include "third_party/icu/source/common/unicode/ubidi.h"
 
diff --git a/cobalt/layout/paragraph.h b/cobalt/layout/paragraph.h
index d64233c..025f5dc 100644
--- a/cobalt/layout/paragraph.h
+++ b/cobalt/layout/paragraph.h
@@ -24,7 +24,6 @@
 #include "cobalt/layout/layout_unit.h"
 #include "cobalt/layout/line_wrapping.h"
 #include "cobalt/render_tree/font.h"
-
 #include "third_party/icu/source/common/unicode/brkiter.h"
 #include "third_party/icu/source/common/unicode/locid.h"
 #include "third_party/icu/source/common/unicode/unistr.h"
diff --git a/cobalt/layout/rect_layout_unit.cc b/cobalt/layout/rect_layout_unit.cc
index 37af714..9b1e83e 100644
--- a/cobalt/layout/rect_layout_unit.cc
+++ b/cobalt/layout/rect_layout_unit.cc
@@ -1,3 +1,4 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
@@ -20,8 +21,8 @@
 namespace layout {
 
 typedef class math::RectBase<RectLayoutUnit, PointLayoutUnit, SizeLayoutUnit,
-                             InsetsLayoutUnit, Vector2dLayoutUnit,
-                             LayoutUnit> RectBaseT;
+                             InsetsLayoutUnit, Vector2dLayoutUnit, LayoutUnit>
+    RectBaseT;
 
 bool RectLayoutUnit::IsExpressibleAsRect() const {
   return math::IsExpressibleAsInt(x().toFloat()) &&
diff --git a/cobalt/layout/render_tree_animations.h b/cobalt/layout/render_tree_animations.h
index 04585b3..397c0c4 100644
--- a/cobalt/layout/render_tree_animations.h
+++ b/cobalt/layout/render_tree_animations.h
@@ -52,7 +52,8 @@
  public:
   typedef base::Callback<void(
       const scoped_refptr<const cssom::CSSComputedStyleData>&,
-      typename T::Builder*)> Function;
+      typename T::Builder*)>
+      Function;
 };
 
 // Helper function that applies an animation set to a base style to produce
diff --git a/cobalt/layout/replaced_box.cc b/cobalt/layout/replaced_box.cc
index 21eba9a..a31407e 100644
--- a/cobalt/layout/replaced_box.cc
+++ b/cobalt/layout/replaced_box.cc
@@ -316,9 +316,14 @@
     return;
   }
 
-  if (replaced_box_mode_ == base::nullopt) {
-    // If we don't have a data stream associated with this video [yet], then
-    // we don't yet know if it is punched out or not, and so render black.
+  if (!replaced_box_mode_.has_value()) {
+    // Don't render anything, so any background color or image will be visible.
+    return;
+  }
+
+  if (replaced_box_mode_ == ReplacedBoxMode::kPaintToBlack) {
+    // Explicitly render black if we don't have a data stream associated with
+    // this video [yet], this is the same as the previous behavior.
     border_node_builder->AddChild(new RectNode(
         math::RectF(content_box_size()),
         std::unique_ptr<render_tree::Brush>(new render_tree::SolidColorBrush(
@@ -327,7 +332,7 @@
     return;
   }
 
-  if (*replaced_box_mode_ == ReplacedBox::ReplacedBoxMode::kLottie) {
+  if (*replaced_box_mode_ == ReplacedBoxMode::kLottie) {
     AnimateNode::Builder animate_node_builder;
     scoped_refptr<LottieNode> lottie_node =
         new LottieNode(nullptr, math::RectF());
@@ -347,7 +352,7 @@
   // Map-to-mesh is only supported with decode-to-texture videos.
   const bool supports_mtm =
       replaced_box_mode_ &&
-      *replaced_box_mode_ == ReplacedBox::ReplacedBoxMode::kVideo;
+      *replaced_box_mode_ == ReplacedBoxMode::kDecodeToTextureVideo;
 
   if (supports_mtm && mtm_filter_function &&
       mtm_filter_function->mesh_spec().mesh_type() !=
@@ -759,7 +764,7 @@
   scoped_refptr<CompositionNode> composition_node =
       new CompositionNode(composition_node_builder);
 
-  if (*replaced_box_mode_ == ReplacedBox::ReplacedBoxMode::kPunchOutVideo) {
+  if (*replaced_box_mode_ == ReplacedBoxMode::kPunchOutVideo) {
     LetterboxDimensions letterbox_dims =
         GetLetterboxDimensions(content_size_, content_box_size());
     AddLetterboxedPunchThroughVideoNodeToRenderTree(
diff --git a/cobalt/layout/replaced_box.h b/cobalt/layout/replaced_box.h
index f4384e5..3837b7c 100644
--- a/cobalt/layout/replaced_box.h
+++ b/cobalt/layout/replaced_box.h
@@ -43,7 +43,12 @@
   typedef base::Callback<scoped_refptr<render_tree::Image>()> ReplaceImageCB;
   typedef render_tree::PunchThroughVideoNode::SetBoundsCB SetBoundsCB;
 
-  enum class ReplacedBoxMode { kVideo, kPunchOutVideo, kLottie };
+  enum class ReplacedBoxMode {
+    kPaintToBlack,  // Paint a black rectangle
+    kDecodeToTextureVideo,
+    kPunchOutVideo,
+    kLottie
+  };
 
   ReplacedBox(const scoped_refptr<cssom::CSSComputedStyleDeclaration>&
                   css_computed_style_declaration,
diff --git a/cobalt/layout/used_style.h b/cobalt/layout/used_style.h
index 0dbd9d3..c41805f 100644
--- a/cobalt/layout/used_style.h
+++ b/cobalt/layout/used_style.h
@@ -381,8 +381,7 @@
     const SizeLayoutUnit& containing_block_size);
 base::Optional<LayoutUnit> GetUsedFlexBasisIfNotContent(
     const scoped_refptr<const cssom::CSSComputedStyleData>& computed_style,
-    bool main_direction_is_horizontal,
-    LayoutUnit main_space,
+    bool main_direction_is_horizontal, LayoutUnit main_space,
     bool* flex_basis_depends_on_available_space);
 base::Optional<LayoutUnit> GetUsedWidthIfNotAuto(
     const scoped_refptr<const cssom::CSSComputedStyleData>& computed_style,
diff --git a/cobalt/layout/used_style_test.cc b/cobalt/layout/used_style_test.cc
index e381683..267f417 100644
--- a/cobalt/layout/used_style_test.cc
+++ b/cobalt/layout/used_style_test.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/layout/used_style.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/cssom/calc_value.h"
 #include "cobalt/cssom/keyword_value.h"
 #include "cobalt/cssom/length_value.h"
diff --git a/cobalt/layout_tests/layout_tests.cc b/cobalt/layout_tests/layout_tests.cc
index 6679e3f..dd21a35 100644
--- a/cobalt/layout_tests/layout_tests.cc
+++ b/cobalt/layout_tests/layout_tests.cc
@@ -361,13 +361,11 @@
     LottiePlayerLayoutTests, Layout,
     ::testing::ValuesIn(EnumerateLayoutTests("lottie-player")), GetTestName());
 
-// Disable on Windows until network stack is implemented.
-#if !defined(COBALT_WIN)
-// Content Security Policy test cases.
-INSTANTIATE_TEST_CASE_P(ContentSecurityPolicyTests, Layout,
+// Content Security Policy test cases
+// TODO(b/145689263): Move to blackbox tests to be hermetic
+INSTANTIATE_TEST_CASE_P(DISABLED_ContentSecurityPolicyTests, Layout,
                         ::testing::ValuesIn(EnumerateLayoutTests("csp")),
                         GetTestName());
-#endif  // !defined(COBALT_WIN)
 
 // Pixel-perfect tests.
 INSTANTIATE_TEST_CASE_P(
diff --git a/cobalt/layout_tests/test_utils.cc b/cobalt/layout_tests/test_utils.cc
index ffbe76b..a5f9937 100644
--- a/cobalt/layout_tests/test_utils.cc
+++ b/cobalt/layout_tests/test_utils.cc
@@ -21,7 +21,7 @@
 #include "cobalt/base/cobalt_paths.h"
 #include "url/gurl.h"
 
-    namespace cobalt {
+namespace cobalt {
 namespace layout_tests {
 
 namespace {
diff --git a/cobalt/layout_tests/testdata/bidi/inline-container-boxes-should-continue-active-paragraph.html b/cobalt/layout_tests/testdata/bidi/inline-container-boxes-should-continue-active-paragraph.html
index 169f063..98d0c8a 100644
--- a/cobalt/layout_tests/testdata/bidi/inline-container-boxes-should-continue-active-paragraph.html
+++ b/cobalt/layout_tests/testdata/bidi/inline-container-boxes-should-continue-active-paragraph.html
@@ -26,4 +26,4 @@
     <div>a<span>b<span>12دل</span>تد3<span>4</span>cd</span></div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/mirror-characters-should-be-reversed-in-rtl.html b/cobalt/layout_tests/testdata/bidi/mirror-characters-should-be-reversed-in-rtl.html
index 95c2445..73242c6 100644
--- a/cobalt/layout_tests/testdata/bidi/mirror-characters-should-be-reversed-in-rtl.html
+++ b/cobalt/layout_tests/testdata/bidi/mirror-characters-should-be-reversed-in-rtl.html
@@ -25,4 +25,4 @@
     <span>ط(ل[ت{د}ل]ت)د</span>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/nested-block-boxes-should-close-active-paragraph.html b/cobalt/layout_tests/testdata/bidi/nested-block-boxes-should-close-active-paragraph.html
index 93e8b4c..a752259 100644
--- a/cobalt/layout_tests/testdata/bidi/nested-block-boxes-should-close-active-paragraph.html
+++ b/cobalt/layout_tests/testdata/bidi/nested-block-boxes-should-close-active-paragraph.html
@@ -26,4 +26,4 @@
     <div>د<div>دد</div>1دددد</div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-1.html b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-1.html
index bf301c8..5eca78e 100644
--- a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-1.html
+++ b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-1.html
@@ -29,4 +29,4 @@
     <div>د1b2</div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-2.html b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-2.html
index 3602e0f..94869e0 100644
--- a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-2.html
+++ b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-2.html
@@ -30,4 +30,4 @@
     <div>د1a2د</div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-3.html b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-3.html
index c9eba5d..175ce8c 100644
--- a/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-3.html
+++ b/cobalt/layout_tests/testdata/bidi/numbers-should-have-weak-directionality-3.html
@@ -29,4 +29,4 @@
     <div>د1aد2د3دb4د</div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/paragraph-should-maintain-directional-stack-with-nested-inline-container-blocks.html b/cobalt/layout_tests/testdata/bidi/paragraph-should-maintain-directional-stack-with-nested-inline-container-blocks.html
index 4aed6ac..6438070 100644
--- a/cobalt/layout_tests/testdata/bidi/paragraph-should-maintain-directional-stack-with-nested-inline-container-blocks.html
+++ b/cobalt/layout_tests/testdata/bidi/paragraph-should-maintain-directional-stack-with-nested-inline-container-blocks.html
@@ -34,4 +34,4 @@
     <div>a<span dir="rtl">b<span dir="rtl">12دل</span>تد3<span dir="ltr">4</span>.cd</span>.,</div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/bidi/whitespace-should-be-handled-properly-with-bidirectional-text.html b/cobalt/layout_tests/testdata/bidi/whitespace-should-be-handled-properly-with-bidirectional-text.html
index 6767606..6958021 100644
--- a/cobalt/layout_tests/testdata/bidi/whitespace-should-be-handled-properly-with-bidirectional-text.html
+++ b/cobalt/layout_tests/testdata/bidi/whitespace-should-be-handled-properly-with-bidirectional-text.html
@@ -31,4 +31,4 @@
     <div dir="rtl"><span> 1234 ط1لتدل </span></div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/cluster-fuzz/fuzz-222.html b/cobalt/layout_tests/testdata/cluster-fuzz/fuzz-222.html
index 9f6ed1a..81db0b2 100644
--- a/cobalt/layout_tests/testdata/cluster-fuzz/fuzz-222.html
+++ b/cobalt/layout_tests/testdata/cluster-fuzz/fuzz-222.html
@@ -14,4 +14,4 @@
 <!--  -->
  class="blockImageCaption"><small></small></div>
 >
-<!-- 
\ No newline at end of file
+<!--
diff --git a/cobalt/layout_tests/testdata/cluster-fuzz/layout_tests.txt b/cobalt/layout_tests/testdata/cluster-fuzz/layout_tests.txt
index 12a4567..e9a6f05 100644
--- a/cobalt/layout_tests/testdata/cluster-fuzz/layout_tests.txt
+++ b/cobalt/layout_tests/testdata/cluster-fuzz/layout_tests.txt
@@ -1 +1 @@
-fuzz-222
\ No newline at end of file
+fuzz-222
diff --git a/cobalt/layout_tests/testdata/cobalt/screenshot-with-animation.html b/cobalt/layout_tests/testdata/cobalt/screenshot-with-animation.html
index 6298fe3..031c87b 100644
--- a/cobalt/layout_tests/testdata/cobalt/screenshot-with-animation.html
+++ b/cobalt/layout_tests/testdata/cobalt/screenshot-with-animation.html
@@ -74,7 +74,7 @@
         }
         image.src = image_url;
       }).catch( () => {
-        console.log('window.screenshot() error occured.');
+        console.log('window.screenshot() error occurred.');
         if (window.testRunner) {
           window.testRunner.notifyDone();
         }
diff --git a/cobalt/layout_tests/testdata/cobalt/screenshot.html b/cobalt/layout_tests/testdata/cobalt/screenshot.html
index cc86f83..12a30cb 100644
--- a/cobalt/layout_tests/testdata/cobalt/screenshot.html
+++ b/cobalt/layout_tests/testdata/cobalt/screenshot.html
@@ -62,7 +62,7 @@
       }
       image.src = image_url;
     }).catch( () => {
-      console.log('window.screenshot() error occured.');
+      console.log('window.screenshot() error occurred.');
       if (window.testRunner) {
         window.testRunner.notifyDone();
       }
diff --git a/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-are-positioned-relative-to-parent-element-flow.html b/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-are-positioned-relative-to-parent-element-flow.html
index b20d1b1..d5e8546 100644
--- a/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-are-positioned-relative-to-parent-element-flow.html
+++ b/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-are-positioned-relative-to-parent-element-flow.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | Absolutely positioned elements should have their static position set
- | to where they would have appeared if they were layed out within their
+ | to where they would have appeared if they were laid out within their
  | parent element's flow.  This test ensures that an absolutely positioned
  | element has static position set according to its parent element's flow, not
  | its containing block.
diff --git a/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-container-block-is-absolute-positioned-ancestor.html b/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-container-block-is-absolute-positioned-ancestor.html
index 1928dd3..6728cc3 100644
--- a/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-container-block-is-absolute-positioned-ancestor.html
+++ b/cobalt/layout_tests/testdata/css-2-1/10-1-absolute-positioned-elements-container-block-is-absolute-positioned-ancestor.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | Absolutely positioned elements should have their static position set
- | to where they would have appeared if they were layed out within their
+ | to where they would have appeared if they were laid out within their
  | containing block.  For absolutely positioned elements, their containing block
  | is specified to be their first ancestor that has a position of 'absolute',
  | 'relative' or 'fixed'.  This test ensures that we locate the containing block
diff --git a/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position-rtl.html b/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position-rtl.html
index cf67983..6ca5cac 100644
--- a/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position-rtl.html
+++ b/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position-rtl.html
@@ -79,4 +79,3 @@
 </div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position.html b/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position.html
index 973e224..02f9925 100644
--- a/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position.html
+++ b/cobalt/layout_tests/testdata/css-2-1/10-3-7-blockification-should-not-affect-static-position.html
@@ -79,4 +79,3 @@
 </div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/18-4-outline-overflow-hidden.html b/cobalt/layout_tests/testdata/css-2-1/18-4-outline-overflow-hidden.html
index 1c2a197..6a50f01 100644
--- a/cobalt/layout_tests/testdata/css-2-1/18-4-outline-overflow-hidden.html
+++ b/cobalt/layout_tests/testdata/css-2-1/18-4-outline-overflow-hidden.html
@@ -30,4 +30,3 @@
   <div class="outline border"></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/18-4-outline.html b/cobalt/layout_tests/testdata/css-2-1/18-4-outline.html
index 961a1c1..e09ac2a 100644
--- a/cobalt/layout_tests/testdata/css-2-1/18-4-outline.html
+++ b/cobalt/layout_tests/testdata/css-2-1/18-4-outline.html
@@ -29,4 +29,3 @@
   <div class="outline border"></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/8-3-negative_margins-should-be-allowed-to-produce_negative-box-widths.html b/cobalt/layout_tests/testdata/css-2-1/8-3-negative_margins-should-be-allowed-to-produce_negative-box-widths.html
index 945e191..64c918a 100644
--- a/cobalt/layout_tests/testdata/css-2-1/8-3-negative_margins-should-be-allowed-to-produce_negative-box-widths.html
+++ b/cobalt/layout_tests/testdata/css-2-1/8-3-negative_margins-should-be-allowed-to-produce_negative-box-widths.html
@@ -26,4 +26,4 @@
     <div><span>Yes<span><span class="negative-margin"> a </span></span>No</span></div>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css-2-1/9-4-2-splitting-of-boxes-can-affect-containing-box-of-children.html b/cobalt/layout_tests/testdata/css-2-1/9-4-2-splitting-of-boxes-can-affect-containing-box-of-children.html
index ff44e91..93855d8 100644
--- a/cobalt/layout_tests/testdata/css-2-1/9-4-2-splitting-of-boxes-can-affect-containing-box-of-children.html
+++ b/cobalt/layout_tests/testdata/css-2-1/9-4-2-splitting-of-boxes-can-affect-containing-box-of-children.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | When a box is split in inline formatting context, the newly generated box
- | inherits the stacking context and the contaning block from the older sibling.
+ | inherits the stacking context and the containing block from the older sibling.
  -->
 <html>
 <body style="margin:0px; font-family: Roboto; font-size: 20px;">
diff --git a/cobalt/layout_tests/testdata/css-2-1/9-4-3-relative-positioned-elements-are-offset-from-normal-flow-via-right-and-bottom.html b/cobalt/layout_tests/testdata/css-2-1/9-4-3-relative-positioned-elements-are-offset-from-normal-flow-via-right-and-bottom.html
index 60a7f80..72fa737 100644
--- a/cobalt/layout_tests/testdata/css-2-1/9-4-3-relative-positioned-elements-are-offset-from-normal-flow-via-right-and-bottom.html
+++ b/cobalt/layout_tests/testdata/css-2-1/9-4-3-relative-positioned-elements-are-offset-from-normal-flow-via-right-and-bottom.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | This is a simple relative positioning test which checks that the element
- | is offset from its standard in-flow position by specifing right and bottom,
+ | is offset from its standard in-flow position by specifying right and bottom,
  | and does not affect the layout of surrounding elements in the flow.
  |   https://www.w3.org/TR/CSS21/visuren.html#relative-positioning
  -->
diff --git a/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-in-separate-subtrees.html b/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-in-separate-subtrees.html
index 5fabe2f..6b5421d 100644
--- a/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-in-separate-subtrees.html
+++ b/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-in-separate-subtrees.html
@@ -69,4 +69,3 @@
 </div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-with-transforms.html b/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-with-transforms.html
index 9743f20..3488dbf 100644
--- a/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-with-transforms.html
+++ b/cobalt/layout_tests/testdata/css-2-1/9-9-1-stacking-contexts-and-containing-blocks-with-transforms.html
@@ -70,4 +70,3 @@
 </div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-absolute-elements-do-not-break-inline-boxes.html b/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-absolute-elements-do-not-break-inline-boxes.html
index 5fdb3b9..f6bf6ce 100644
--- a/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-absolute-elements-do-not-break-inline-boxes.html
+++ b/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-absolute-elements-do-not-break-inline-boxes.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | Absolutely positioned elements should not participate in layout though their
- | static position will be set as if they were layed out.  This test checks
+ | static position will be set as if they were laid out.  This test checks
  | that an absolute element that ordinarily would have caused a line break
  | within an inline box does not affect layout, and also that the absolute
  | element *does* appear to follow a line break.
diff --git a/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-inline-absolute-elements-do-not-break-inline-boxes-but-appear-at-inline-position.html b/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-inline-absolute-elements-do-not-break-inline-boxes-but-appear-at-inline-position.html
index 8dd18e8..55aca7f 100644
--- a/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-inline-absolute-elements-do-not-break-inline-boxes-but-appear-at-inline-position.html
+++ b/cobalt/layout_tests/testdata/css-2-1/DISABLED-10-3-7-inline-absolute-elements-do-not-break-inline-boxes-but-appear-at-inline-position.html
@@ -3,7 +3,7 @@
  | Absolutely positioned elements should not participate in layout and therefore
  | if however their static position should be such that it was as if they did.
  | This test ensures that when the element has a display of 'inline', its
- | static is where it would have been had it been layed out, even though the
+ | static is where it would have been had it been laid out, even though the
  | layout of its siblings is not affected.
  -->
 <html>
diff --git a/cobalt/layout_tests/testdata/css-text-3/6-2-gracefully-handle-unbreakable-overflow-word-with-overflow-wrap-break-word.html b/cobalt/layout_tests/testdata/css-text-3/6-2-gracefully-handle-unbreakable-overflow-word-with-overflow-wrap-break-word.html
index 1a55dbb..c9e527b 100644
--- a/cobalt/layout_tests/testdata/css-text-3/6-2-gracefully-handle-unbreakable-overflow-word-with-overflow-wrap-break-word.html
+++ b/cobalt/layout_tests/testdata/css-text-3/6-2-gracefully-handle-unbreakable-overflow-word-with-overflow-wrap-break-word.html
@@ -22,4 +22,4 @@
 <body>
   <div class="containing-block">a</div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css-text-3/7-1-text-align-values-left-center-right-should-not-base-alignment-on-line-box-direction.html b/cobalt/layout_tests/testdata/css-text-3/7-1-text-align-values-left-center-right-should-not-base-alignment-on-line-box-direction.html
index 80ac02b..6f5d360 100644
--- a/cobalt/layout_tests/testdata/css-text-3/7-1-text-align-values-left-center-right-should-not-base-alignment-on-line-box-direction.html
+++ b/cobalt/layout_tests/testdata/css-text-3/7-1-text-align-values-left-center-right-should-not-base-alignment-on-line-box-direction.html
@@ -51,4 +51,4 @@
     <span>abcdefghijklm nopqrstuvwxyz</span>
   </div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css-transforms/15-1-scale-transform-function.html b/cobalt/layout_tests/testdata/css-transforms/15-1-scale-transform-function.html
index f25535c..0a700b9 100644
--- a/cobalt/layout_tests/testdata/css-transforms/15-1-scale-transform-function.html
+++ b/cobalt/layout_tests/testdata/css-transforms/15-1-scale-transform-function.html
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
  | One should be able to specify transform functions via scale functions.
- | A two time scaled green square is partically overlap with a red square.
+ | A two time scaled green square is partially overlap with a red square.
  -->
 <html>
 <head>
diff --git a/cobalt/layout_tests/testdata/css3-animations/layout_tests.txt b/cobalt/layout_tests/testdata/css3-animations/layout_tests.txt
index 7ea7b0f..a3bda5b 100644
--- a/cobalt/layout_tests/testdata/css3-animations/layout_tests.txt
+++ b/cobalt/layout_tests/testdata/css3-animations/layout_tests.txt
@@ -6,4 +6,3 @@
 3-simple-animation
 canceled_animation_should_not_get_animationend_event
 removed_animation_from_other_animationend_event_handler_should_still_get_animationend_event
-
diff --git a/cobalt/layout_tests/testdata/css3-background/14-2-1-background-with-color-image-repeat-position.html b/cobalt/layout_tests/testdata/css3-background/14-2-1-background-with-color-image-repeat-position.html
index 71aeffa..59611ed 100644
--- a/cobalt/layout_tests/testdata/css3-background/14-2-1-background-with-color-image-repeat-position.html
+++ b/cobalt/layout_tests/testdata/css3-background/14-2-1-background-with-color-image-repeat-position.html
@@ -36,4 +36,3 @@
   <div id='image'></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-background/3-11-2-body-background-can-be-set-to-transparent-later.html b/cobalt/layout_tests/testdata/css3-background/3-11-2-body-background-can-be-set-to-transparent-later.html
index 6e33a15..1d732e1 100644
--- a/cobalt/layout_tests/testdata/css3-background/3-11-2-body-background-can-be-set-to-transparent-later.html
+++ b/cobalt/layout_tests/testdata/css3-background/3-11-2-body-background-can-be-set-to-transparent-later.html
@@ -21,7 +21,7 @@
       if (window.testRunner) {
         window.testRunner.DoNonMeasuredLayout();
       }
-      
+
       document.body.style.backgroundColor = 'transparent';
 
       if (window.testRunner) {
diff --git a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-2-values-with-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-2-values-with-rounded-corners.html
index 1fc226b..f29c0c4 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-2-values-with-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-2-values-with-rounded-corners.html
@@ -18,4 +18,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-3-values-with-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-3-values-with-rounded-corners.html
index eb6b3e8..e4484dd 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-3-values-with-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-3-values-with-rounded-corners.html
@@ -18,4 +18,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners-and-different-border-widths.html b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners-and-different-border-widths.html
index 9de0f5d..331495a 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners-and-different-border-widths.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners-and-different-border-widths.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners.html
index 071f22c..66d58c6 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-1-border-color-4-values-with-different-rounded-corners.html
@@ -20,4 +20,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-2-values-with-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-2-values-with-rounded-corners.html
index c092ca5..fd95b72 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-2-values-with-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-2-values-with-rounded-corners.html
@@ -18,4 +18,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-3-values-with-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-3-values-with-rounded-corners.html
index 7693fff..bf0769a 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-3-values-with-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-3-values-with-rounded-corners.html
@@ -18,4 +18,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-4-values-with-different-rounded-corners.html b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-4-values-with-different-rounded-corners.html
index 4a33512..cc5a249 100644
--- a/cobalt/layout_tests/testdata/css3-background/4-3-border-width-4-values-with-different-rounded-corners.html
+++ b/cobalt/layout_tests/testdata/css3-background/4-3-border-width-4-values-with-different-rounded-corners.html
@@ -20,4 +20,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-inset-shadow.html
index a46b00a..5c87759 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-inset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-outset-shadow.html
index 1cc1359..530d7ac 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border-and-outset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border.html
index 63e2826..5e980d8 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color-and-border.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color.html
index 9dc4581..5772e67 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-background-color.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-border-only.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-border-only.html
index 0b16b13..ef97127 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-border-only.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-2-values-with-border-only.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-border-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-border-and-outset-shadow.html
index 3e5517a..19002fc 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-border-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-border-and-outset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-inset-shadow.html
index d453c0f..4e53fe2 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-inset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-outset-shadow.html
index dac58e5..f98e710 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color-and-outset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color.html
index 47866c0..53d005d 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-background-color.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-border-only.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-border-only.html
index 56de16a..950494b 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-border-only.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-3-values-with-border-only.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-inset-shadow.html
index 4ec00df..2dab336 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-inset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-outset-shadow.html
index 256fe37..e2acc4a 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border-and-outset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border.html
index c419580..4526cbf 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-border.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-inset-shadow.html
index c443b15..96e435c 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-inset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-outset-shadow.html
index c9bfeb8..f100868 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color-and-outset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color.html
index 035a589..bd1e169 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-background-color.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-border-only.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-border-only.html
index 5cf86bb..363052c 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-border-only.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-4-values-with-border-only.html
@@ -19,4 +19,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-inset-shadow.html
index b969b0a..bf515c7 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-inset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-outset-shadow.html
index 3ec1d92..90101f0 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border-and-outset-shadow.html
@@ -22,4 +22,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border.html
index 390ecf9..ef733e5 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-border.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-inset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-inset-shadow.html
index 30a32f8..d19f246 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-inset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-inset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-outset-shadow.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-outset-shadow.html
index 9f4781d..e4c8c8d 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-outset-shadow.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color-and-outset-shadow.html
@@ -21,4 +21,4 @@
 <body>
   <div></div>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color.html
index 6a23bd8..7e74ac8 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-background-color.html
@@ -20,4 +20,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-border-only.html b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-border-only.html
index 5cfffb1..fceff79 100644
--- a/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-border-only.html
+++ b/cobalt/layout_tests/testdata/css3-background/5-0-border-radius-with-zero-value-and-border-only.html
@@ -20,4 +20,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-baseline.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-baseline.html
index ec8d3a2..44a1a2a 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-baseline.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-baseline.html
@@ -77,7 +77,7 @@
   <span style="align-self: center;">center</span>
   <span class="vsized" style="align-self: stretch;">stretch</span>
 </div>
-hg- 
+hg-
 </div><div>
 -hg
 <div class="vsized inlineflex row container">
@@ -105,7 +105,7 @@
   <span style="font-size: 2em; align-self: baseline;">hg</span>
   <span class="vsized" style="align-self: stretch;">stretch</span>
 </div>
-hg- 
+hg-
 </div><div>
 -hg
 <div class="vsized inlineflex row container">
@@ -134,7 +134,7 @@
   <span style="font-size: 2em; align-self: baseline;">hg</span>
   <span style="align-self: baseline;">hg</span>
 </div>
-hg- 
+hg-
 </div><div>
 -hg
 <div class="vsized inlineflex row container">
@@ -178,4 +178,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-container-sizing-edge-cases.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-container-sizing-edge-cases.html
index 7031bc3..edb56c2 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-container-sizing-edge-cases.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-container-sizing-edge-cases.html
@@ -116,4 +116,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-order-and-multiline.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-order-and-multiline.html
index 927dfa9..249bfb6 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-order-and-multiline.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-order-and-multiline.html
@@ -77,4 +77,3 @@
 </div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-positioning-tests.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-positioning-tests.html
index 263384e..200d687 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-positioning-tests.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-positioning-tests.html
@@ -140,4 +140,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-shrinking-and-justify-content.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-shrinking-and-justify-content.html
index 128a8f0..c7c663b 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-shrinking-and-justify-content.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-shrinking-and-justify-content.html
@@ -268,4 +268,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/combined-with-baselines-percentages.html b/cobalt/layout_tests/testdata/css3-flexbox/combined-with-baselines-percentages.html
index dc516bd..b0af187 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/combined-with-baselines-percentages.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/combined-with-baselines-percentages.html
@@ -203,4 +203,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/content-based-minimum-size.html b/cobalt/layout_tests/testdata/css3-flexbox/content-based-minimum-size.html
index c9dd6b7..76af0d1 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/content-based-minimum-size.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/content-based-minimum-size.html
@@ -67,4 +67,3 @@
 
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-001.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-001.html
index 815c29f..7458ab2 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-001.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-001.html
@@ -41,7 +41,6 @@
             <div id="flexItem1"></div>
             <div></div>
         </div>
-    
+
 
 </body></html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-002.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-002.html
index 707d15f..49f729e 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-002.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-002.html
@@ -58,6 +58,6 @@
             <div id="flexItem2"></div>
         </div>
         <div id="ref1"></div><div id="ref2"></div>
-    
+
 
 </body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-003.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-003.html
index 0051e30..a5f5ff3 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-003.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-003.html
@@ -59,6 +59,6 @@
             <div id="flexItem2"></div>
         </div>
         <div id="ref1"></div><div id="ref2"></div>
-    
+
 
 </body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-004.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-004.html
index 6ab472d..072ec9a 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-004.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flex-004.html
@@ -59,6 +59,6 @@
             <div id="flexItem2"></div>
         </div>
         <div id="ref1"></div><div id="ref2"></div>
-    
+
 
 </body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-0-unitless.html
index 13cd33d..ce0e38d 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-0-unitless.html
@@ -36,4 +36,3 @@
 	<span style="background: #808080;">four</span>
 </div>
 </body></html>
-
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-shrink.html
index 6fd71f1..e368250 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-unitless-basis.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-unitless-basis.html
index ff27572..5656b52 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-unitless-basis.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N-unitless-basis.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N.html
index 4282bbb..79e81bd 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent-shrink.html
index 653d7fb..62dc9cf 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent.html
index cd52187..49da4c3 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-auto-shrink.html
index 82f3196..330777e 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-0-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0-unitless.html
index b5a184e..b1b4593 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0.html
index f384e46..c51c7d3 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-1-unitless-basis.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-1-unitless-basis.html
index cfb60db..db30d11 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-1-unitless-basis.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-1-unitless-basis.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-shrink.html
index fee0867..b453da5 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-unitless-basis.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-unitless-basis.html
index ef1642c..0c26781 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-unitless-basis.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N-unitless-basis.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N.html
index 53b2092..f685f88 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent-shrink.html
index 85de799..e478c80 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent.html
index cbbbfdf..d73333c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto-shrink.html
index 6b5af92..a348f46 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto.html
index 8394293..15144de 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1.html
index 23133be..2eb285c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-1.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0-unitless.html
index ad11723..8d77f05 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0.html
index 5591371..0a8121c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N-shrink.html
index c1f9664..1fc2920 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N.html
index 87a779a..045aa1f 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent-shrink.html
index bdb31b9..a64bd60 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent.html
index c5ef228..27a2c79 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto-shrink.html
index 50b8362..a9e0576 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto.html
index 1cad65a..26fe531 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N.html
index 8ff465f..01475de 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-0-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0-unitless.html
index 1d91ca7..a642524 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0.html
index 1b872f3..b5386de 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N-shrink.html
index 6db4e48..2fb4b99 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N.html
index 143a3f8..d708f48 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent-shrink.html
index 16accb5..b245459 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent.html
index 49f167c..0f8df48 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto-shrink.html
index 3ac1b32..1c1a6ec 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto.html
index a47aa92..8d2c033 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0.html
index 5f81201..e60a8c2 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0-unitless.html
index d0ca3ad..53b92ba 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0.html
index 36b42cf..d58687b 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N-shrink.html
index 19f6aaf..6415cfc 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N.html
index a4d66ef..e9141db 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent-shrink.html
index 7767e48..a3d0d2c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent.html
index d418b74..9718760 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto-shrink.html
index c450b73..35deb24 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto.html
index 2042924..a8b3899 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1.html
index 4beb0d0..48dbcac 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-1.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0-unitless.html
index 50222c1..7588068 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0.html
index 305b009..fb1075b 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N-shrink.html
index d84e167..a090364 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N.html
index 0ab4625..c76b716 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent-shrink.html
index 81a4616..ea0d563 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent.html
index 70a627a..198708e 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto-shrink.html
index ab9b624..4b1e082 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto.html
index 4db4360..1a80f2c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N.html
index 963ac54..ea0e2f3 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-1-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0-unitless.html
index 3615e92..d686ce5 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0.html
index 2fc964e..57d5c56 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N-shrink.html
index 49535e8..cc802b3 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N.html
index f92c08f..cb592c5 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent-shrink.html
index 078e7de..5eb150e 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent.html
index 742276d..44f5790 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto-shrink.html
index 367c74f..d03276c 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto.html
index e828eb1..059b6e6 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0.html
index c7055f9..eb833e1 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0-unitless.html
index 47692f2..bb13fc4 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0.html
index 908d527..cf117eb 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N-shrink.html
index a465efc..9ca70ae 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N.html
index 4ff4338..fe9f859 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent-shrink.html
index 2f4aac2..a15899d 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent.html
index f265c9f..ff463a0 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto-shrink.html
index b1104db..2e7702e 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto.html
index cbdeebd..9de8462 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1.html
index b7b0dd5..2e2ea35 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-1.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0-unitless.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0-unitless.html
index caa8853..fef5697 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0-unitless.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0-unitless.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0.html
index 13aa940..8bc9302 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-0.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N-shrink.html
index 2b1ea71..ca0db7b 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N.html
index ef9ee60..42b6bbe 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent-shrink.html
index 18cc941..3f057f5 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent.html
index f34d420..17b6b03 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-Npercent.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto-shrink.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto-shrink.html
index e9c477c..8114550 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto-shrink.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto-shrink.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto.html
index 5632c6e..8cd37b9 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N-auto.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N.html
index af36e0b..63375ac 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-N-N.html
@@ -39,4 +39,4 @@
 	<span style="background: #ADD8E6;">three</span>
 	<span style="background: #808080;">four</span>
 </div>
-</body></html>
\ No newline at end of file
+</body></html>
diff --git a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-natural-mixed-basis-auto.html b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-natural-mixed-basis-auto.html
index eaee537..cb96fb0 100644
--- a/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-natural-mixed-basis-auto.html
+++ b/cobalt/layout_tests/testdata/css3-flexbox/csswg_flexbox_flex-natural-mixed-basis-auto.html
@@ -40,4 +40,3 @@
 	<span style="background: #808080;">&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;&#x2588;</span>
 </div>
 </body></html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-gradient-in-middle.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-gradient-in-middle.html
index 4972e3d..37f57d9 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-gradient-in-middle.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-gradient-in-middle.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-multistop-one-dimensional-gradient.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-multistop-one-dimensional-gradient.html
index 03019b7..7e58f18 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-multistop-one-dimensional-gradient.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-multistop-one-dimensional-gradient.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-bottom-linear-gradient.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-bottom-linear-gradient.html
index 36cdbcb..ae0e528 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-bottom-linear-gradient.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-bottom-linear-gradient.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-left-linear-gradient.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-left-linear-gradient.html
index b161dbd..6d64d0e 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-left-linear-gradient.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-left-linear-gradient.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-right-linear-gradient.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-right-linear-gradient.html
index e56d490..2f8b718 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-right-linear-gradient.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-right-linear-gradient.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-top-linear-gradient.html b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-top-linear-gradient.html
index 683c1da..ad7df89 100644
--- a/cobalt/layout_tests/testdata/css3-images/4-1-2-to-top-linear-gradient.html
+++ b/cobalt/layout_tests/testdata/css3-images/4-1-2-to-top-linear-gradient.html
@@ -13,4 +13,3 @@
   <div></div>
 </body>
 </html>
-
diff --git a/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-inheritable-property-from-ancestor-should-occur.html b/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-inheritable-property-from-ancestor-should-occur.html
index 7e7f0fc..dd34ba5 100644
--- a/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-inheritable-property-from-ancestor-should-occur.html
+++ b/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-inheritable-property-from-ancestor-should-occur.html
@@ -64,4 +64,4 @@
   </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-not-inheritable-property-from-ancestor-should-not-occur.html b/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-not-inheritable-property-from-ancestor-should-not-occur.html
index cfb1831..f0a1b60 100644
--- a/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-not-inheritable-property-from-ancestor-should-not-occur.html
+++ b/cobalt/layout_tests/testdata/css3-transitions/2-transition-for-not-inheritable-property-from-ancestor-should-not-occur.html
@@ -70,4 +70,4 @@
   </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/css3-ui/layout_tests.txt b/cobalt/layout_tests/testdata/css3-ui/layout_tests.txt
index fbfac8f..c493b14 100644
--- a/cobalt/layout_tests/testdata/css3-ui/layout_tests.txt
+++ b/cobalt/layout_tests/testdata/css3-ui/layout_tests.txt
@@ -20,4 +20,4 @@
 5-2-shaped-text-should-accurately-calculate-width-before-ellipsis
 5-2-text-overflow-clip-should-not-display-ellipsis-on-overflow
 5-2-text-overflow-ellipsis-should-display-ellipsis-on-overflow-when-overflow-is-hidden
-5-2-text-overflow-ellipsis-should-not-be-inherited
\ No newline at end of file
+5-2-text-overflow-ellipsis-should-not-be-inherited
diff --git a/cobalt/layout_tests/testdata/intersection-observer/observers-should-update-when-elements-move-without-threshold.html b/cobalt/layout_tests/testdata/intersection-observer/observers-should-update-when-elements-move-without-threshold.html
index 7d982cf..2460518 100644
--- a/cobalt/layout_tests/testdata/intersection-observer/observers-should-update-when-elements-move-without-threshold.html
+++ b/cobalt/layout_tests/testdata/intersection-observer/observers-should-update-when-elements-move-without-threshold.html
@@ -66,7 +66,7 @@
         window.testRunner.DoNonMeasuredLayout();
       }
 
-      // Without waiting for requestAnimationFrame, only the movement is observed. 
+      // Without waiting for requestAnimationFrame, only the movement is observed.
       requestAnimationFrame(() => {
         window.setTimeout(() => {
           // Move the target element so that it is clearly no longer
diff --git a/cobalt/layout_tests/testdata/intersection-observer/previous-threshold-index-and-is-intersecting-fields-should-be-updated.html b/cobalt/layout_tests/testdata/intersection-observer/previous-threshold-index-and-is-intersecting-fields-should-be-updated.html
index f0604d5..3b9b9ab 100644
--- a/cobalt/layout_tests/testdata/intersection-observer/previous-threshold-index-and-is-intersecting-fields-should-be-updated.html
+++ b/cobalt/layout_tests/testdata/intersection-observer/previous-threshold-index-and-is-intersecting-fields-should-be-updated.html
@@ -87,4 +87,4 @@
   </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/cobalt/layout_tests/testdata/text-shaping/layout_tests.txt b/cobalt/layout_tests/testdata/text-shaping/layout_tests.txt
index 4b984e3..c35a025 100644
--- a/cobalt/layout_tests/testdata/text-shaping/layout_tests.txt
+++ b/cobalt/layout_tests/testdata/text-shaping/layout_tests.txt
@@ -1 +1 @@
-combining-character-sequences-should-be-handled-properly
\ No newline at end of file
+combining-character-sequences-should-be-handled-properly
diff --git a/cobalt/layout_tests/testdata/web-platform-tests/intersection-observer/web_platform_tests.txt b/cobalt/layout_tests/testdata/web-platform-tests/intersection-observer/web_platform_tests.txt
index e543994..14f170a 100644
--- a/cobalt/layout_tests/testdata/web-platform-tests/intersection-observer/web_platform_tests.txt
+++ b/cobalt/layout_tests/testdata/web-platform-tests/intersection-observer/web_platform_tests.txt
@@ -73,4 +73,4 @@
 v2/cross-origin-occlusion.sub.html,DISABLE
 v2/iframe-target.html,DISABLE
 v2/scaled-target.html,DISABLE
-v2/text-shadow.html,DISABLE
\ No newline at end of file
+v2/text-shadow.html,DISABLE
diff --git a/cobalt/loader/BUILD.gn b/cobalt/loader/BUILD.gn
index 2db902d..1aa47b7 100644
--- a/cobalt/loader/BUILD.gn
+++ b/cobalt/loader/BUILD.gn
@@ -115,7 +115,6 @@
     "//cobalt/render_tree",
     "//cobalt/renderer/test/png_utils",
     "//cobalt/web",
-    "//nb",
     "//net",
     "//third_party/libjpeg-turbo:libjpeg",
     "//third_party/libpng",
diff --git a/cobalt/loader/blob_fetcher_test.cc b/cobalt/loader/blob_fetcher_test.cc
index b5eef82..a88b0ee 100644
--- a/cobalt/loader/blob_fetcher_test.cc
+++ b/cobalt/loader/blob_fetcher_test.cc
@@ -27,10 +27,10 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::AtLeast;
 using ::testing::InSequence;
 using ::testing::StrictMock;
-using ::testing::_;
 
 namespace cobalt {
 namespace loader {
diff --git a/cobalt/loader/cors_preflight_cache.cc b/cobalt/loader/cors_preflight_cache.cc
index c56da2f..c16d313 100644
--- a/cobalt/loader/cors_preflight_cache.cc
+++ b/cobalt/loader/cors_preflight_cache.cc
@@ -14,11 +14,13 @@
  * limitations under the License.
  */
 
+#include "cobalt/loader/cors_preflight_cache.h"
+
 #include <algorithm>
+#include <utility>
 
 #include "base/message_loop/message_loop.h"
 #include "base/strings/string_util.h"
-#include "cobalt/loader/cors_preflight_cache.h"
 
 namespace {
 bool MethodNameToRequestType(const std::string& method,
diff --git a/cobalt/loader/file_fetcher_test.cc b/cobalt/loader/file_fetcher_test.cc
index 5dcbafa..8c1bb25 100644
--- a/cobalt/loader/file_fetcher_test.cc
+++ b/cobalt/loader/file_fetcher_test.cc
@@ -26,10 +26,10 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
+using ::testing::_;
 using ::testing::AtLeast;
 using ::testing::InSequence;
 using ::testing::StrictMock;
-using ::testing::_;
 
 namespace cobalt {
 namespace loader {
diff --git a/cobalt/loader/font/typeface_decoder.cc b/cobalt/loader/font/typeface_decoder.cc
index 0b8db13..04bf353 100644
--- a/cobalt/loader/font/typeface_decoder.cc
+++ b/cobalt/loader/font/typeface_decoder.cc
@@ -12,10 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/loader/font/typeface_decoder.h"
+
 #include <memory>
+#include <utility>
 
 #include "base/memory/ptr_util.h"
-#include "cobalt/loader/font/typeface_decoder.h"
 
 namespace cobalt {
 namespace loader {
diff --git a/cobalt/loader/font/typeface_decoder_test.cc b/cobalt/loader/font/typeface_decoder_test.cc
index 0c7c781..4b7aea2 100644
--- a/cobalt/loader/font/typeface_decoder_test.cc
+++ b/cobalt/loader/font/typeface_decoder_test.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/loader/font/typeface_decoder.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "base/files/file_path.h"
 #include "base/files/file_util.h"
diff --git a/cobalt/loader/image/animated_image_tracker.cc b/cobalt/loader/image/animated_image_tracker.cc
index 98dadca..c7a3e73 100644
--- a/cobalt/loader/image/animated_image_tracker.cc
+++ b/cobalt/loader/image/animated_image_tracker.cc
@@ -15,7 +15,9 @@
 #include "cobalt/loader/image/animated_image_tracker.h"
 
 #include <algorithm>
+#include <utility>
 
+#include "base/strings/stringprintf.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/polymorphic_downcast.h"
 
@@ -24,8 +26,22 @@
 namespace image {
 
 AnimatedImageTracker::AnimatedImageTracker(
+    const char* name,
     base::ThreadPriority animated_image_decode_thread_priority)
-    : animated_image_decode_thread_("AnimatedImage") {
+    : animated_image_decode_thread_("AnimatedImage"),
+      name_(name),
+      count_animated_images_active(
+          base::StringPrintf("Count.%s.AnimatedImage.Active", name), 0,
+          "Total number of active animated image decoders."),
+      count_animated_frames_decoded(
+          base::StringPrintf("Count.%s.AnimatedImage.DecodedFrames", name), 0,
+          "Total number of decoded animated image frames."),
+      count_animated_frames_decoding_underrun(
+          base::StringPrintf("Count.%s.AnimatedImage.DecodingUnderruns", name),
+          0, "Number of underruns from decoding animated images"),
+      count_animated_frames_decoding_overrun(
+          base::StringPrintf("Count.%s.AnimatedImage.DecodingOverruns", name),
+          0, "Number of overruns from decoding animated images") {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedImageTracker::RecordImage()");
   base::Thread::Options options(base::MessageLoop::TYPE_DEFAULT,
                                 0 /* default stack size */);
@@ -123,6 +139,17 @@
   playing_urls_.clear();
 }
 
+void AnimatedImageTracker::OnRenderTreeRasterized() {
+  count_animated_images_active = playing_urls_.size();
+  for (const auto& playing_url : playing_urls_) {
+    auto image = image_map_[playing_url.first].get();
+    auto stats = image->GetFrameDeltaStats();
+    count_animated_frames_decoded += stats.frames_decoded;
+    count_animated_frames_decoding_underrun += stats.frames_underrun;
+    count_animated_frames_decoding_overrun += stats.frames_overrun;
+  }
+}
+
 }  // namespace image
 }  // namespace loader
 }  // namespace cobalt
diff --git a/cobalt/loader/image/animated_image_tracker.h b/cobalt/loader/image/animated_image_tracker.h
index f6f38e4..6df920b 100644
--- a/cobalt/loader/image/animated_image_tracker.h
+++ b/cobalt/loader/image/animated_image_tracker.h
@@ -20,6 +20,7 @@
 
 #include "base/containers/small_map.h"
 #include "base/threading/thread.h"
+#include "cobalt/base/c_val.h"
 #include "cobalt/base/unused.h"
 #include "cobalt/loader/image/image.h"
 #include "url/gurl.h"
@@ -33,7 +34,8 @@
 // playing status is updated hence decoding is turned on / off for it.
 class AnimatedImageTracker {
  public:
-  explicit AnimatedImageTracker(
+  AnimatedImageTracker(
+      const char* name,
       base::ThreadPriority animated_image_decode_thread_priority);
   ~AnimatedImageTracker();
 
@@ -54,6 +56,9 @@
   // animations.
   void Reset();
 
+  // Called from WebModule to compute image animation related stats.
+  void OnRenderTreeRasterized();
+
  private:
   void OnDisplayStart(loader::image::AnimatedImage* image);
   void OnDisplayEnd(loader::image::AnimatedImage* image);
@@ -72,6 +77,15 @@
   URLToIntMap current_url_counts_;
   URLSet playing_urls_;
 
+  // The name of the WebModule this AnimatedImage tracker belongs to, for CVals.
+  const std::string name_;
+
+  // Animated image counters
+  base::CVal<int, base::CValPublic> count_animated_images_active;
+  base::CVal<int, base::CValPublic> count_animated_frames_decoded;
+  base::CVal<int, base::CValPublic> count_animated_frames_decoding_underrun;
+  base::CVal<int, base::CValPublic> count_animated_frames_decoding_overrun;
+
   // Used to ensure that all AnimatedImageTracker methods are called on the
   // same thread (*not* |animated_image_decode_thread_|), the thread that we
   // were constructed on.
diff --git a/cobalt/loader/image/animated_webp_image.cc b/cobalt/loader/image/animated_webp_image.cc
index ed0b959..312098d 100644
--- a/cobalt/loader/image/animated_webp_image.cc
+++ b/cobalt/loader/image/animated_webp_image.cc
@@ -26,7 +26,6 @@
 #include "cobalt/render_tree/image_node.h"
 #include "cobalt/render_tree/node.h"
 #include "cobalt/render_tree/rect_node.h"
-#include "nb/memory_scope.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
@@ -101,7 +100,6 @@
 
 void AnimatedWebPImage::AppendChunk(const uint8* data, size_t size) {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedWebPImage::AppendChunk()");
-  TRACK_MEMORY_SCOPE("Rendering");
   base::AutoLock lock(lock_);
 
   data_buffer_.insert(data_buffer_.end(), data, data + size);
@@ -148,6 +146,8 @@
     return;
   }
   is_playing_ = true;
+  current_stats.frames_underrun = 0;
+  current_stats.frames_overrun = 0;
 
   if (received_first_frame_) {
     StartDecoding();
@@ -171,7 +171,8 @@
 void AnimatedWebPImage::StartDecoding() {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedWebPImage::StartDecoding()");
   lock_.AssertAcquired();
-  current_frame_time_ = base::TimeTicks::Now();
+  decoding_start_time_ = current_frame_time_ = base::TimeTicks::Now();
+  current_stats.frames_decoded = 0;
   if (task_runner_->BelongsToCurrentThread()) {
     DecodeFrames();
   } else {
@@ -192,7 +193,6 @@
 
 void AnimatedWebPImage::DecodeFrames() {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedWebPImage::DecodeFrames()");
-  TRACK_MEMORY_SCOPE("Rendering");
   lock_.AssertAcquired();
   DCHECK(is_playing_ && received_first_frame_);
   DCHECK(task_runner_->BelongsToCurrentThread());
@@ -242,7 +242,6 @@
 
 bool AnimatedWebPImage::DecodeOneFrame(int frame_index) {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedWebPImage::DecodeOneFrame()");
-  TRACK_MEMORY_SCOPE("Rendering");
   lock_.AssertAcquired();
 
   WebPIterator webp_iterator;
@@ -269,6 +268,7 @@
       LOG(ERROR) << "Failed to decode WebP image frame.";
       return false;
     }
+    current_stats.frames_decoded++;
   }
 
   // Alpha blend the current frame on top of the buffer.
@@ -329,7 +329,6 @@
 
 bool AnimatedWebPImage::AdvanceFrame() {
   TRACE_EVENT0("cobalt::loader::image", "AnimatedWebPImage::AdvanceFrame()");
-  TRACK_MEMORY_SCOPE("Rendering");
   DCHECK(task_runner_->BelongsToCurrentThread());
   lock_.AssertAcquired();
 
@@ -354,6 +353,7 @@
   // Always wait for a consumer to consume the previous frame before moving
   // forward with decoding the next frame.
   if (!frame_provider_->FrameConsumed()) {
+    current_stats.frames_overrun++;
     return false;
   }
 
@@ -386,6 +386,7 @@
   if (next_frame_time_ < current_time) {
     // Don't let the animation fall back for more than a frame.
     next_frame_time_ = current_time;
+    current_stats.frames_underrun++;
   }
 
   return true;
@@ -431,6 +432,25 @@
   return target_canvas;
 }
 
+AnimatedImage::AnimatedImageDecodingStats
+AnimatedWebPImage::GetFrameDeltaStats() {
+  AnimatedImageDecodingStats result;
+  if (current_stats.frames_decoded >= last_stats.frames_decoded) {
+    result.frames_decoded =
+        current_stats.frames_decoded - last_stats.frames_decoded;
+    result.frames_underrun =
+        current_stats.frames_underrun - last_stats.frames_underrun;
+    result.frames_overrun =
+        current_stats.frames_overrun - last_stats.frames_overrun;
+  } else {
+    // There was a reset somewhere
+    // Simply return total, this discards any overflow data we might have had.
+    result = current_stats;
+  }
+  last_stats = current_stats;
+  return result;
+}
+
 }  // namespace image
 }  // namespace loader
 }  // namespace cobalt
diff --git a/cobalt/loader/image/animated_webp_image.h b/cobalt/loader/image/animated_webp_image.h
index 135bf6a..4d1be04 100644
--- a/cobalt/loader/image/animated_webp_image.h
+++ b/cobalt/loader/image/animated_webp_image.h
@@ -66,6 +66,8 @@
   // Returns the render image of the frame for debugging
   scoped_refptr<render_tree::Image> GetFrameForDebugging(int target_frame);
 
+  AnimatedImageDecodingStats GetFrameDeltaStats() override;
+
  private:
   ~AnimatedWebPImage() override;
 
@@ -119,12 +121,17 @@
   base::CancelableClosure decode_closure_;
   base::TimeTicks current_frame_time_;
   base::Optional<base::TimeTicks> next_frame_time_;
+
   // The original encoded data.
   std::vector<uint8> data_buffer_;
   scoped_refptr<render_tree::Image> current_canvas_;
   scoped_refptr<FrameProvider> frame_provider_;
   base::Lock lock_;
 
+  base::TimeTicks decoding_start_time_;
+  AnimatedImageDecodingStats current_stats;
+  AnimatedImageDecodingStats last_stats;
+
   // Makes sure that the thread that sets the task_runner is always consistent.
   // This is the thread sending Play()/Stop() calls, and is not necessarily
   // the same thread that the task_runner itself is running on.
diff --git a/cobalt/loader/image/image.h b/cobalt/loader/image/image.h
index af99363..bac9849 100644
--- a/cobalt/loader/image/image.h
+++ b/cobalt/loader/image/image.h
@@ -145,6 +145,16 @@
     image_node_builder->destination_rect = destination_rect;
     image_node_builder->local_transform = local_transform;
   }
+
+  // Frame counters for decoding.
+  struct AnimatedImageDecodingStats {
+    unsigned int frames_decoded = 0;
+    unsigned int frames_underrun = 0;
+    unsigned int frames_overrun = 0;
+  };
+
+  // Returns decoded frame stats since the last call, as a delta.
+  virtual AnimatedImageDecodingStats GetFrameDeltaStats() = 0;
 };
 
 }  // namespace image
diff --git a/cobalt/loader/image/image_data_decoder.cc b/cobalt/loader/image/image_data_decoder.cc
index 0a19fdf..b9243ae 100644
--- a/cobalt/loader/image/image_data_decoder.cc
+++ b/cobalt/loader/image/image_data_decoder.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <memory>
+#include <utility>
 
 #include "base/trace_event/trace_event.h"
 
diff --git a/cobalt/loader/image/image_decoder_unit_test.cc b/cobalt/loader/image/image_decoder_unit_test.cc
index a6dfc5d..0fe45c5 100644
--- a/cobalt/loader/image/image_decoder_unit_test.cc
+++ b/cobalt/loader/image/image_decoder_unit_test.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "cobalt/loader/image/image_decoder.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/loader/image/image_encoder.cc b/cobalt/loader/image/image_encoder.cc
index 6cd3787..6b5505e 100644
--- a/cobalt/loader/image/image_encoder.cc
+++ b/cobalt/loader/image/image_encoder.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/loader/image/image_encoder.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/renderer/test/jpeg_utils/jpeg_encode.h"
 #include "cobalt/renderer/test/png_utils/png_encode.h"
diff --git a/cobalt/loader/image/jpeg_image_decoder.cc b/cobalt/loader/image/jpeg_image_decoder.cc
index 5516e4a..9355188 100644
--- a/cobalt/loader/image/jpeg_image_decoder.cc
+++ b/cobalt/loader/image/jpeg_image_decoder.cc
@@ -20,7 +20,6 @@
 #include "base/logging.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/console_log.h"
-#include "nb/memory_scope.h"
 #include "third_party/libjpeg-turbo/jpegint.h"
 
 namespace cobalt {
@@ -133,7 +132,6 @@
       allow_image_decoding_to_multi_plane_(
           allow_image_decoding_to_multi_plane) {
   TRACE_EVENT0("cobalt::loader::image", "JPEGImageDecoder::JPEGImageDecoder()");
-  TRACK_MEMORY_SCOPE("Rendering");
   memset(&info_, 0, sizeof(info_));
   memset(&source_manager_, 0, sizeof(source_manager_));
 
@@ -161,7 +159,6 @@
 
 size_t JPEGImageDecoder::DecodeChunkInternal(const uint8* data,
                                              size_t input_byte) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "JPEGImageDecoder::DecodeChunkInternal()");
   // |client_data| is available for use by application.
@@ -278,7 +275,6 @@
 }
 
 bool JPEGImageDecoder::ReadHeader() {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "JPEGImageDecoder::ReadHeader()");
   if (jpeg_read_header(&info_, true) == JPEG_SUSPENDED) {
     // Since |jpeg_read_header| doesn't have enough data, go back to the state
@@ -332,7 +328,6 @@
 }
 
 bool JPEGImageDecoder::StartDecompress() {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "JPEGImageDecoder::StartDecompress()");
   // jpeg_has_multiple_scans() returns TRUE if the incoming image file has more
   // than one scan.
@@ -357,7 +352,6 @@
 // TODO: support displaying the low resolution image while decoding the
 // progressive JPEG.
 bool JPEGImageDecoder::DecodeProgressiveJPEG() {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "JPEGImageDecoder::DecodeProgressiveJPEG()");
   int status;
@@ -437,7 +431,6 @@
 
 bool JPEGImageDecoder::ReadYUVLines() {
   DCHECK(output_format_ == kOutputFormatYUV);
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "JPEGImageDecoder::ReadYUVLines()");
 
   while (info_.output_scanline < info_.output_height) {
@@ -475,7 +468,6 @@
   DCHECK(output_format_ == kOutputFormatRGBA ||
          output_format_ == kOutputFormatBGRA);
 
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "JPEGImageDecoder::ReadRgbaOrGbraLines()");
 
diff --git a/cobalt/loader/image/lottie_animation.cc b/cobalt/loader/image/lottie_animation.cc
index a759e67..373ebad 100644
--- a/cobalt/loader/image/lottie_animation.cc
+++ b/cobalt/loader/image/lottie_animation.cc
@@ -15,7 +15,6 @@
 #include "cobalt/loader/image/lottie_animation.h"
 
 #include "base/trace_event/trace_event.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace loader {
diff --git a/cobalt/loader/image/lottie_animation_decoder.cc b/cobalt/loader/image/lottie_animation_decoder.cc
index a5f9340..d7957e5 100644
--- a/cobalt/loader/image/lottie_animation_decoder.cc
+++ b/cobalt/loader/image/lottie_animation_decoder.cc
@@ -15,7 +15,6 @@
 #include "cobalt/loader/image/lottie_animation_decoder.h"
 
 #include "base/trace_event/trace_event.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace loader {
@@ -27,14 +26,12 @@
     : ImageDataDecoder(resource_provider, debugger_hooks) {
   TRACE_EVENT0("cobalt::loader::image",
                "LottieAnimationDecoder::LottieAnimationDecoder()");
-  TRACK_MEMORY_SCOPE("Rendering");
 }
 
 size_t LottieAnimationDecoder::DecodeChunkInternal(const uint8* data,
                                                    size_t input_byte) {
   TRACE_EVENT0("cobalt::loader::image",
                "LottieAnimationDecoder::DecodeChunkInternal()");
-  TRACK_MEMORY_SCOPE("Rendering");
   if (state() == kWaitingForHeader) {
     // TODO: Remove hard coded values.
     lottie_animation_ = new LottieAnimation(resource_provider());
diff --git a/cobalt/loader/image/png_image_decoder.cc b/cobalt/loader/image/png_image_decoder.cc
index fa27801..95e2405 100644
--- a/cobalt/loader/image/png_image_decoder.cc
+++ b/cobalt/loader/image/png_image_decoder.cc
@@ -14,10 +14,11 @@
 
 #include "cobalt/loader/image/png_image_decoder.h"
 
+#include <utility>
+
 #include "base/logging.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/console_log.h"
-#include "nb/memory_scope.h"
 
 namespace cobalt {
 namespace loader {
@@ -74,7 +75,6 @@
       info_(NULL),
       has_alpha_(false),
       interlace_buffer_(0) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "PNGImageDecoder::PNGImageDecoder()");
 
   png_ = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, DecodingFailed,
@@ -85,10 +85,9 @@
 }
 
 size_t PNGImageDecoder::DecodeChunkInternal(const uint8* data, size_t size) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "PNGImageDecoder::DecodeChunkInternal()");
-  // int setjmp(jmp_buf env) saves the current environment (ths program state),
+  // int setjmp(jmp_buf env) saves the current environment (the program state),
   // at some point of program execution, into a platform-specific data
   // structure (jmp_buf) that can be used at some later point of program
   // execution by longjmp to restore the program state to that saved by setjmp
@@ -144,7 +143,6 @@
 // Called when we have obtained the header information (including the size).
 // static
 void PNGImageDecoder::HeaderAvailable(png_structp png, png_infop info) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "PNGImageDecoder::~PNGImageDecoder()");
   PNGImageDecoder* decoder =
       static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png));
@@ -163,7 +161,6 @@
 // Called when decoding is done.
 // static
 void PNGImageDecoder::DecodeDone(png_structp png, png_infop info) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "PNGImageDecoder::DecodeDone()");
 
   PNGImageDecoder* decoder =
@@ -172,7 +169,6 @@
 }
 
 void PNGImageDecoder::HeaderAvailableCallback() {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "PNGImageDecoder::HeaderAvailableCallback()");
   DCHECK_EQ(state(), kWaitingForHeader);
@@ -295,7 +291,6 @@
 // from the previous pass.
 void PNGImageDecoder::RowAvailableCallback(png_bytep row_buffer,
                                            png_uint_32 row_index) {
-  TRACK_MEMORY_SCOPE("Rendering");
   DCHECK_EQ(state(), kReadLines);
 
   // Nothing to do if the row is unchanged, or the row is outside
diff --git a/cobalt/loader/image/stub_image_decoder.h b/cobalt/loader/image/stub_image_decoder.h
index cc13068..97976af 100644
--- a/cobalt/loader/image/stub_image_decoder.h
+++ b/cobalt/loader/image/stub_image_decoder.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "cobalt/loader/image/image.h"
@@ -37,9 +38,7 @@
   // From ImageDataDecoder
   std::string GetTypeString() const override { return "StubImageDecoder"; }
 
-  static bool IsValidSignature(const uint8* header) {
-    return true;
-  }
+  static bool IsValidSignature(const uint8* header) { return true; }
 
  private:
   // From ImageDataDecoder
diff --git a/cobalt/loader/image/webp_image_decoder.cc b/cobalt/loader/image/webp_image_decoder.cc
index 6e0d378..250f17e 100644
--- a/cobalt/loader/image/webp_image_decoder.cc
+++ b/cobalt/loader/image/webp_image_decoder.cc
@@ -14,10 +14,11 @@
 
 #include "cobalt/loader/image/webp_image_decoder.h"
 
+#include <utility>
+
 #include "base/logging.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/loader/image/animated_webp_image.h"
-#include "nb/memory_scope.h"
 #include "starboard/configuration.h"
 #include "starboard/memory.h"
 
@@ -30,7 +31,6 @@
     const base::DebuggerHooks& debugger_hooks)
     : ImageDataDecoder(resource_provider, debugger_hooks),
       internal_decoder_(NULL) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "WEBPImageDecoder::WEBPImageDecoder()");
   // Initialize the configuration as empty.
   WebPInitDecoderConfig(&config_);
@@ -50,7 +50,6 @@
 
 size_t WEBPImageDecoder::DecodeChunkInternal(const uint8* data,
                                              size_t input_byte) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "WEBPImageDecoder::DecodeChunkInternal()");
   if (state() == kWaitingForHeader) {
@@ -151,7 +150,6 @@
 }
 
 bool WEBPImageDecoder::ReadHeader(const uint8* data, size_t size) {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image", "WEBPImageDecoder::ReadHeader()");
   // Retrieve features from the bitstream. The *features structure is filled
   // with information gathered from the bitstream.
@@ -172,7 +170,6 @@
 }
 
 bool WEBPImageDecoder::CreateInternalDecoder() {
-  TRACK_MEMORY_SCOPE("Rendering");
   TRACE_EVENT0("cobalt::loader::image",
                "WEBPImageDecoder::CreateInternalDecoder()");
   bool has_alpha = !!config_.input.has_alpha;
diff --git a/cobalt/loader/mesh/mesh_decoder.cc b/cobalt/loader/mesh/mesh_decoder.cc
index 25bb314..494f597 100644
--- a/cobalt/loader/mesh/mesh_decoder.cc
+++ b/cobalt/loader/mesh/mesh_decoder.cc
@@ -12,12 +12,14 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/loader/mesh/mesh_decoder.h"
+
 #include <algorithm>
 #include <memory>
+#include <utility>
 
 #include "base/bits.h"
 #include "base/memory/ptr_util.h"
-#include "cobalt/loader/mesh/mesh_decoder.h"
 #include "cobalt/loader/mesh/projection_codec/projection_decoder.h"
 #include "cobalt/render_tree/resource_provider.h"
 
@@ -253,7 +255,7 @@
     mesh_available_callback_.Run(mesh_projection);
     load_complete_callback_.Run(base::nullopt);
   } else {
-    // Error must have occured in MeshDecoderSink::Decode.
+    // Error must have occurred in MeshDecoderSink::Decode.
     load_complete_callback_.Run(
         std::string("MeshDecoder passed an invalid mesh projection box."));
   }
diff --git a/cobalt/loader/mesh/mesh_decoder_test.cc b/cobalt/loader/mesh/mesh_decoder_test.cc
index 30088be..fe2d546 100644
--- a/cobalt/loader/mesh/mesh_decoder_test.cc
+++ b/cobalt/loader/mesh/mesh_decoder_test.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/loader/mesh/mesh_decoder.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "base/files/file_path.h"
 #include "base/files/file_util.h"
diff --git a/cobalt/loader/mesh/mesh_projection.h b/cobalt/loader/mesh/mesh_projection.h
index a8da002..ec70d32 100644
--- a/cobalt/loader/mesh/mesh_projection.h
+++ b/cobalt/loader/mesh/mesh_projection.h
@@ -18,6 +18,7 @@
 #define COBALT_LOADER_MESH_MESH_PROJECTION_H_
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/basictypes.h"
diff --git a/cobalt/loader/mock_loader_factory.h b/cobalt/loader/mock_loader_factory.h
index 67e5694..1003705 100644
--- a/cobalt/loader/mock_loader_factory.h
+++ b/cobalt/loader/mock_loader_factory.h
@@ -17,14 +17,13 @@
 
 #include <memory>
 
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
 #include "cobalt/csp/content_security_policy.h"
 #include "cobalt/loader/font/typeface_decoder.h"
 #include "cobalt/loader/image/image_decoder.h"
 #include "cobalt/loader/loader.h"
 #include "cobalt/loader/loader_factory.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
 #include "url/gurl.h"
 
 namespace cobalt {
diff --git a/cobalt/loader/net_fetcher.cc b/cobalt/loader/net_fetcher.cc
index 872194a..5ce5e29 100644
--- a/cobalt/loader/net_fetcher.cc
+++ b/cobalt/loader/net_fetcher.cc
@@ -102,6 +102,7 @@
       security_callback_(security_callback),
       ALLOW_THIS_IN_INITIALIZER_LIST(start_callback_(
           base::Bind(&NetFetcher::Start, base::Unretained(this)))),
+      cors_policy_(network_module->network_delegate()->cors_policy()),
       request_cross_origin_(false),
       origin_(origin),
       request_script_(options.resource_type == disk_cache::kUncompiledScript),
@@ -225,7 +226,8 @@
   if (request_cross_origin_ &&
       (!source->GetResponseHeaders() ||
        !CORSPreflight::CORSCheck(*source->GetResponseHeaders(),
-                                 origin_.SerializedOrigin(), false))) {
+                                 origin_.SerializedOrigin(), false,
+                                 cors_policy_))) {
     std::string msg(base::StringPrintf(
         "Cross origin request to %s was rejected by Same-Origin-Policy",
         source->GetURL().spec().c_str()));
diff --git a/cobalt/loader/net_fetcher.h b/cobalt/loader/net_fetcher.h
index 984bdcb..8e4cf8f 100644
--- a/cobalt/loader/net_fetcher.h
+++ b/cobalt/loader/net_fetcher.h
@@ -113,6 +113,7 @@
   // after being constructed, but before Start() runs.
   base::CancelableClosure start_callback_;
 
+  network::CORSPolicy cors_policy_;
   // True if request mode is CORS and request URL's origin is different from
   // request's origin.
   bool request_cross_origin_;
diff --git a/cobalt/loader/resource_cache.cc b/cobalt/loader/resource_cache.cc
index 493c62a..d5f1d6b 100644
--- a/cobalt/loader/resource_cache.cc
+++ b/cobalt/loader/resource_cache.cc
@@ -25,8 +25,7 @@
 
 CachedResourceBase::OnLoadedCallbackHandler::OnLoadedCallbackHandler(
     const scoped_refptr<CachedResourceBase>& cached_resource,
-    const base::Closure& success_callback,
-    const base::Closure& error_callback)
+    const base::Closure& success_callback, const base::Closure& error_callback)
     : cached_resource_(cached_resource),
       success_callback_(success_callback),
       error_callback_(error_callback) {
@@ -47,7 +46,7 @@
 }
 
 net::LoadTimingInfo
-    CachedResourceBase::OnLoadedCallbackHandler::GetLoadTimingInfo() {
+CachedResourceBase::OnLoadedCallbackHandler::GetLoadTimingInfo() {
   return cached_resource_->GetLoadTimingInfo();
 }
 
diff --git a/cobalt/loader/resource_cache.h b/cobalt/loader/resource_cache.h
index 7677f88..3d3816c 100644
--- a/cobalt/loader/resource_cache.h
+++ b/cobalt/loader/resource_cache.h
@@ -17,7 +17,9 @@
 
 #include <list>
 #include <map>
+#include <memory>
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/bind.h"
@@ -94,9 +96,7 @@
   // Whether not the resource located at |url_| is finished loading.
   bool IsLoadingComplete();
 
-  net::LoadTimingInfo GetLoadTimingInfo() {
-    return load_timing_info_;
-  }
+  net::LoadTimingInfo GetLoadTimingInfo() { return load_timing_info_; }
 
   bool get_resource_timing_created_flag() {
     return is_resource_timing_created_flag_;
diff --git a/cobalt/loader/sync_loader.cc b/cobalt/loader/sync_loader.cc
index d64c379..5371936 100644
--- a/cobalt/loader/sync_loader.cc
+++ b/cobalt/loader/sync_loader.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/loader/sync_loader.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "base/compiler_specific.h"
 #include "base/synchronization/waitable_event.h"
diff --git a/cobalt/loader/text_decoder_test.cc b/cobalt/loader/text_decoder_test.cc
index f4dcdb4..e1c5f6d 100644
--- a/cobalt/loader/text_decoder_test.cc
+++ b/cobalt/loader/text_decoder_test.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/loader/text_decoder.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
diff --git a/cobalt/loader/url_fetcher_string_writer.cc b/cobalt/loader/url_fetcher_string_writer.cc
index 2bfbcc8..f372e2e 100644
--- a/cobalt/loader/url_fetcher_string_writer.cc
+++ b/cobalt/loader/url_fetcher_string_writer.cc
@@ -1,3 +1,4 @@
+// Copyright 2019 The Cobalt Authors. All Rights Reserved.
 // Copyright 2019 Google Inc. All Rights Reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +18,7 @@
 #include "base/logging.h"
 #include "net/base/net_errors.h"
 
-    namespace cobalt {
+namespace cobalt {
 namespace loader {
 
 // URLFetcherStringWriter::URLFetcherStringWriter(OnWriteCallback
diff --git a/cobalt/loader/url_fetcher_string_writer.h b/cobalt/loader/url_fetcher_string_writer.h
index 72d87e8..55fc3fc 100644
--- a/cobalt/loader/url_fetcher_string_writer.h
+++ b/cobalt/loader/url_fetcher_string_writer.h
@@ -1,3 +1,4 @@
+// Copyright 2019 The Cobalt Authors. All Rights Reserved.
 // Copyright 2019 Google Inc. All Rights Reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/cobalt/math/box_unittest.cc b/cobalt/math/box_unittest.cc
index ba9a322..02f654a 100644
--- a/cobalt/math/box_unittest.cc
+++ b/cobalt/math/box_unittest.cc
@@ -2,9 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "cobalt/math/box_f.h"
-
 #include "base/basictypes.h"
+#include "cobalt/math/box_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/math/cubic_bezier_unittest.cc b/cobalt/math/cubic_bezier_unittest.cc
index b1de805..904b725 100644
--- a/cobalt/math/cubic_bezier_unittest.cc
+++ b/cobalt/math/cubic_bezier_unittest.cc
@@ -2,10 +2,10 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include <memory>
-
 #include "cobalt/math/cubic_bezier.h"
 
+#include <memory>
+
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/math/matrix3_f.cc b/cobalt/math/matrix3_f.cc
index 2d39b63..f965dbc 100644
--- a/cobalt/math/matrix3_f.cc
+++ b/cobalt/math/matrix3_f.cc
@@ -7,6 +7,7 @@
 #include <algorithm>
 #include <cmath>
 #include <limits>
+#include <utility>
 
 namespace cobalt {
 namespace math {
diff --git a/cobalt/math/matrix3_unittest.cc b/cobalt/math/matrix3_unittest.cc
index d78d59b..e3caae6 100644
--- a/cobalt/math/matrix3_unittest.cc
+++ b/cobalt/math/matrix3_unittest.cc
@@ -2,12 +2,11 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "cobalt/math/matrix3_f.h"
-
 #include <cmath>
 #include <limits>
 
 #include "base/basictypes.h"
+#include "cobalt/math/matrix3_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
@@ -171,8 +170,7 @@
 TEST(Matrix3fTest, MatrixMultiplyIdentityByArbitrary) {
   // The identity matrix times an arbitrary matrix should return that same
   // arbitrary matrix.
-  Matrix3F matrix_a =
-      Matrix3F::FromValues(1, 2, 3, 4, 5, 6, 7, 8, 9);
+  Matrix3F matrix_a = Matrix3F::FromValues(1, 2, 3, 4, 5, 6, 7, 8, 9);
   EXPECT_TRUE(matrix_a.IsNear(Matrix3F::Identity() * matrix_a, 0.00001f));
   EXPECT_TRUE(matrix_a.IsNear(matrix_a * Matrix3F::Identity(), 0.00001f));
 }
@@ -180,10 +178,8 @@
 TEST(Matrix3fTest, MatrixMultiplyArbitraryByArbitrary) {
   // Check that multiplying two arbitrary matrices together gives the expected
   // results.
-  Matrix3F matrix_a =
-      Matrix3F::FromValues(1, 2, 3, 4, 5, 6, 7, 8, 9);
-  Matrix3F matrix_b =
-      Matrix3F::FromValues(10, 11, 12, 13, 14, 15, 16, 17, 18);
+  Matrix3F matrix_a = Matrix3F::FromValues(1, 2, 3, 4, 5, 6, 7, 8, 9);
+  Matrix3F matrix_b = Matrix3F::FromValues(10, 11, 12, 13, 14, 15, 16, 17, 18);
 
   Matrix3F result = matrix_a * matrix_b;
   Matrix3F expected_result =
diff --git a/cobalt/math/matrix_interpolation_unittest.cc b/cobalt/math/matrix_interpolation_unittest.cc
index 4505e13..4672fcb 100644
--- a/cobalt/math/matrix_interpolation_unittest.cc
+++ b/cobalt/math/matrix_interpolation_unittest.cc
@@ -12,9 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/math/matrix_interpolation.h"
+
 #include <cmath>
 
-#include "cobalt/math/matrix_interpolation.h"
 #include "cobalt/math/transform_2d.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
diff --git a/cobalt/math/point3_unittest.cc b/cobalt/math/point3_unittest.cc
index 3599e03..16a484b 100644
--- a/cobalt/math/point3_unittest.cc
+++ b/cobalt/math/point3_unittest.cc
@@ -2,9 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "cobalt/math/point3_f.h"
-
 #include "base/basictypes.h"
+#include "cobalt/math/point3_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/math/point_unittest.cc b/cobalt/math/point_unittest.cc
index 94a1211..081c6c1 100644
--- a/cobalt/math/point_unittest.cc
+++ b/cobalt/math/point_unittest.cc
@@ -3,11 +3,11 @@
 // found in the LICENSE file.
 
 #include "cobalt/math/point.h"
-#include "cobalt/math/point_f.h"
 
 #include "base/basictypes.h"
 #include "cobalt/math/point_base.h"
 #include "cobalt/math/point_conversions.h"
+#include "cobalt/math/point_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/math/quad_f.h b/cobalt/math/quad_f.h
index e0869e3..9a7954f 100644
--- a/cobalt/math/quad_f.h
+++ b/cobalt/math/quad_f.h
@@ -81,9 +81,9 @@
     return RectF(rl, rt, rr - rl, rb - rt);
   }
 
-  // Add a vector to the quad, offseting each point in the quad by the vector.
+  // Add a vector to the quad, offsetting each point in the quad by the vector.
   void operator+=(const Vector2dF& rhs);
-  // Subtract a vector from the quad, offseting each point in the quad by the
+  // Subtract a vector from the quad, offsetting each point in the quad by the
   // inverse of the vector.
   void operator-=(const Vector2dF& rhs);
 
@@ -112,9 +112,9 @@
   return !(lhs == rhs);
 }
 
-// Add a vector to a quad, offseting each point in the quad by the vector.
+// Add a vector to a quad, offsetting each point in the quad by the vector.
 QuadF operator+(const QuadF& lhs, const Vector2dF& rhs);
-// Subtract a vector from a quad, offseting each point in the quad by the
+// Subtract a vector from a quad, offsetting each point in the quad by the
 // inverse of the vector.
 QuadF operator-(const QuadF& lhs, const Vector2dF& rhs);
 
diff --git a/cobalt/math/quad_unittest.cc b/cobalt/math/quad_unittest.cc
index c1ff1bd..2becc66 100644
--- a/cobalt/math/quad_unittest.cc
+++ b/cobalt/math/quad_unittest.cc
@@ -2,9 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "cobalt/math/quad_f.h"
-
 #include "base/basictypes.h"
+#include "cobalt/math/quad_f.h"
 #include "cobalt/math/rect_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
diff --git a/cobalt/math/rect_base_impl.h b/cobalt/math/rect_base_impl.h
index 4f328dd..dd8d082 100644
--- a/cobalt/math/rect_base_impl.h
+++ b/cobalt/math/rect_base_impl.h
@@ -58,22 +58,22 @@
 
 template <typename Class, typename PointClass, typename SizeClass,
           typename InsetsClass, typename VectorClass, typename Type>
-void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>::
-operator+=(const VectorClass& offset) {
+void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass,
+              Type>::operator+=(const VectorClass& offset) {
   origin_ += offset;
 }
 
 template <typename Class, typename PointClass, typename SizeClass,
           typename InsetsClass, typename VectorClass, typename Type>
-void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>::
-operator-=(const VectorClass& offset) {
+void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass,
+              Type>::operator-=(const VectorClass& offset) {
   origin_ -= offset;
 }
 
 template <typename Class, typename PointClass, typename SizeClass,
           typename InsetsClass, typename VectorClass, typename Type>
-bool RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>::
-operator<(const Class& other) const {
+bool RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass,
+              Type>::operator<(const Class& other) const {
   if (origin_ == other.origin_) {
     if (width() == other.width()) {
       return height() < other.height();
@@ -253,8 +253,8 @@
   c.Union(rect);
 
   const Type kEpsilon = std::numeric_limits<Type>::is_integer
-                                   ? Type(1)
-                                   : std::numeric_limits<Type>::epsilon();
+                            ? Type(1)
+                            : std::numeric_limits<Type>::epsilon();
 
   Type x =
       std::max<Type>(Type(0), c.width() - width() - rect.width() + kEpsilon);
diff --git a/cobalt/math/rect_unittest.cc b/cobalt/math/rect_unittest.cc
index c1548d9..44fd0fa 100644
--- a/cobalt/math/rect_unittest.cc
+++ b/cobalt/math/rect_unittest.cc
@@ -461,16 +461,16 @@
     float w2;
     float h2;
   } tests[] = {
-        {3, 3, 3, 3, 1.5f, 4.5f, 4.5f, 4.5f, 4.5f},
-        {3, 3, 3, 3, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f},
-        {3, 3, 3, 3, std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN()},
-        {3, 3, 3, 3, std::numeric_limits<float>::max(),
-         std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
-         std::numeric_limits<float>::max(), std::numeric_limits<float>::max()}};
+      {3, 3, 3, 3, 1.5f, 4.5f, 4.5f, 4.5f, 4.5f},
+      {3, 3, 3, 3, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f},
+      {3, 3, 3, 3, std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN()},
+      {3, 3, 3, 3, std::numeric_limits<float>::max(),
+       std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
+       std::numeric_limits<float>::max(), std::numeric_limits<float>::max()}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
     Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
@@ -495,20 +495,20 @@
     int w2;
     int h2;
   } tests[] = {
-        {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
-        {-1.5f, -1.5f, 3.0f, 3.0f, -1, -1, 2, 2},
-        {-1.5f, -1.5f, 3.5f, 3.5f, -1, -1, 3, 3},
-        {std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
-         2.0f, 2.0f, std::numeric_limits<int>::max(),
-         std::numeric_limits<int>::max(), 0, 0},
-        {0.0f, 0.0f, std::numeric_limits<float>::max(),
-         std::numeric_limits<float>::max(), 0, 0,
-         std::numeric_limits<int>::max(), std::numeric_limits<int>::max()},
-        {20000.5f, 20000.5f, 0.5f, 0.5f, 20001, 20001, 0, 0},
-        {std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(), 0, 0, 0, 0}};
+      {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
+      {-1.5f, -1.5f, 3.0f, 3.0f, -1, -1, 2, 2},
+      {-1.5f, -1.5f, 3.5f, 3.5f, -1, -1, 3, 3},
+      {std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
+       2.0f, 2.0f, std::numeric_limits<int>::max(),
+       std::numeric_limits<int>::max(), 0, 0},
+      {0.0f, 0.0f, std::numeric_limits<float>::max(),
+       std::numeric_limits<float>::max(), 0, 0, std::numeric_limits<int>::max(),
+       std::numeric_limits<int>::max()},
+      {20000.5f, 20000.5f, 0.5f, 0.5f, 20001, 20001, 0, 0},
+      {std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(), 0, 0, 0, 0}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
     RectF r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
@@ -533,21 +533,21 @@
     int w2;
     int h2;
   } tests[] = {
-        {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
-        {5.5f, 5.5f, 0.0f, 0.0f, 5, 5, 0, 0},
-        {-1.5f, -1.5f, 3.0f, 3.0f, -2, -2, 4, 4},
-        {-1.5f, -1.5f, 3.5f, 3.5f, -2, -2, 4, 4},
-        {std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
-         2.0f, 2.0f, std::numeric_limits<int>::max(),
-         std::numeric_limits<int>::max(), 0, 0},
-        {0.0f, 0.0f, std::numeric_limits<float>::max(),
-         std::numeric_limits<float>::max(), 0, 0,
-         std::numeric_limits<int>::max(), std::numeric_limits<int>::max()},
-        {20000.5f, 20000.5f, 0.5f, 0.5f, 20000, 20000, 1, 1},
-        {std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(),
-         std::numeric_limits<float>::quiet_NaN(), 0, 0, 0, 0}};
+      {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
+      {5.5f, 5.5f, 0.0f, 0.0f, 5, 5, 0, 0},
+      {-1.5f, -1.5f, 3.0f, 3.0f, -2, -2, 4, 4},
+      {-1.5f, -1.5f, 3.5f, 3.5f, -2, -2, 4, 4},
+      {std::numeric_limits<float>::max(), std::numeric_limits<float>::max(),
+       2.0f, 2.0f, std::numeric_limits<int>::max(),
+       std::numeric_limits<int>::max(), 0, 0},
+      {0.0f, 0.0f, std::numeric_limits<float>::max(),
+       std::numeric_limits<float>::max(), 0, 0, std::numeric_limits<int>::max(),
+       std::numeric_limits<int>::max()},
+      {20000.5f, 20000.5f, 0.5f, 0.5f, 20000, 20000, 1, 1},
+      {std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(),
+       std::numeric_limits<float>::quiet_NaN(), 0, 0, 0, 0}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
     RectF r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
@@ -583,11 +583,11 @@
     int w2;
     int h2;
   } tests[] = {
-        {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
-        {-1.5f, -1.5f, 3.0f, 3.0f, -2, -2, 3, 3},
-        {-1.5f, -1.5f, 3.5f, 3.5f, -2, -2, 3, 3},
-        {20000.5f, 20000.5f, 0.5f, 0.5f, 20000, 20000, 0, 0},
-    };
+      {0.0f, 0.0f, 0.0f, 0.0f, 0, 0, 0, 0},
+      {-1.5f, -1.5f, 3.0f, 3.0f, -2, -2, 3, 3},
+      {-1.5f, -1.5f, 3.5f, 3.5f, -2, -2, 3, 3},
+      {20000.5f, 20000.5f, 0.5f, 0.5f, 20000, 20000, 0, 0},
+  };
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
     RectF r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
@@ -607,25 +607,39 @@
     float input_scale;
     Rect expected_rect;
   } tests[] = {{
-                Rect(), 5.f, Rect(),
+                   Rect(),
+                   5.f,
+                   Rect(),
                },
                {
-                Rect(1, 1, 1, 1), 5.f, Rect(5, 5, 5, 5),
+                   Rect(1, 1, 1, 1),
+                   5.f,
+                   Rect(5, 5, 5, 5),
                },
                {
-                Rect(-1, -1, 0, 0), 5.f, Rect(-5, -5, 0, 0),
+                   Rect(-1, -1, 0, 0),
+                   5.f,
+                   Rect(-5, -5, 0, 0),
                },
                {
-                Rect(1, -1, 0, 1), 5.f, Rect(5, -5, 0, 5),
+                   Rect(1, -1, 0, 1),
+                   5.f,
+                   Rect(5, -5, 0, 5),
                },
                {
-                Rect(-1, 1, 1, 0), 5.f, Rect(-5, 5, 5, 0),
+                   Rect(-1, 1, 1, 0),
+                   5.f,
+                   Rect(-5, 5, 5, 0),
                },
                {
-                Rect(1, 2, 3, 4), 1.5f, Rect(2, 3, 4, 6),
+                   Rect(1, 2, 3, 4),
+                   1.5f,
+                   Rect(2, 3, 4, 6),
                },
                {
-                Rect(-1, -2, 0, 0), 1.5f, Rect(-1, -3, 0, 0),
+                   Rect(-1, -2, 0, 0),
+                   1.5f,
+                   Rect(-1, -3, 0, 0),
                }};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
@@ -641,25 +655,39 @@
     float input_scale;
     Rect expected_rect;
   } tests[] = {{
-                Rect(), 5.f, Rect(),
+                   Rect(),
+                   5.f,
+                   Rect(),
                },
                {
-                Rect(1, 1, 1, 1), 5.f, Rect(5, 5, 5, 5),
+                   Rect(1, 1, 1, 1),
+                   5.f,
+                   Rect(5, 5, 5, 5),
                },
                {
-                Rect(-1, -1, 0, 0), 5.f, Rect(-5, -5, 0, 0),
+                   Rect(-1, -1, 0, 0),
+                   5.f,
+                   Rect(-5, -5, 0, 0),
                },
                {
-                Rect(1, -1, 0, 1), 5.f, Rect(5, -5, 0, 5),
+                   Rect(1, -1, 0, 1),
+                   5.f,
+                   Rect(5, -5, 0, 5),
                },
                {
-                Rect(-1, 1, 1, 0), 5.f, Rect(-5, 5, 5, 0),
+                   Rect(-1, 1, 1, 0),
+                   5.f,
+                   Rect(-5, 5, 5, 0),
                },
                {
-                Rect(1, 2, 3, 4), 1.5f, Rect(1, 3, 5, 6),
+                   Rect(1, 2, 3, 4),
+                   1.5f,
+                   Rect(1, 3, 5, 6),
                },
                {
-                Rect(-1, -2, 0, 0), 1.5f, Rect(-2, -3, 0, 0),
+                   Rect(-1, -2, 0, 0),
+                   1.5f,
+                   Rect(-2, -3, 0, 0),
                }};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
@@ -686,22 +714,23 @@
     Point a;
     Point b;
     Rect expected;
-  } int_tests[] = {// If point B dominates A, then A should be the origin.
-                   {Point(4, 6), Point(4, 6), Rect(4, 6, 0, 0)},
-                   {Point(4, 6), Point(8, 6), Rect(4, 6, 4, 0)},
-                   {Point(4, 6), Point(4, 9), Rect(4, 6, 0, 3)},
-                   {Point(4, 6), Point(8, 9), Rect(4, 6, 4, 3)},
-                   // If point A dominates B, then B should be the origin.
-                   {Point(4, 6), Point(4, 6), Rect(4, 6, 0, 0)},
-                   {Point(8, 6), Point(4, 6), Rect(4, 6, 4, 0)},
-                   {Point(4, 9), Point(4, 6), Rect(4, 6, 0, 3)},
-                   {Point(8, 9), Point(4, 6), Rect(4, 6, 4, 3)},
-                   // If neither point dominates, then the origin is a
-                   // combination of the two.
-                   {Point(4, 6), Point(6, 4), Rect(4, 4, 2, 2)},
-                   {Point(-4, -6), Point(-6, -4), Rect(-6, -6, 2, 2)},
-                   {Point(-4, 6), Point(6, -4), Rect(-4, -4, 10, 10)},
-    };
+  } int_tests[] = {
+      // If point B dominates A, then A should be the origin.
+      {Point(4, 6), Point(4, 6), Rect(4, 6, 0, 0)},
+      {Point(4, 6), Point(8, 6), Rect(4, 6, 4, 0)},
+      {Point(4, 6), Point(4, 9), Rect(4, 6, 0, 3)},
+      {Point(4, 6), Point(8, 9), Rect(4, 6, 4, 3)},
+      // If point A dominates B, then B should be the origin.
+      {Point(4, 6), Point(4, 6), Rect(4, 6, 0, 0)},
+      {Point(8, 6), Point(4, 6), Rect(4, 6, 4, 0)},
+      {Point(4, 9), Point(4, 6), Rect(4, 6, 0, 3)},
+      {Point(8, 9), Point(4, 6), Rect(4, 6, 4, 3)},
+      // If neither point dominates, then the origin is a
+      // combination of the two.
+      {Point(4, 6), Point(6, 4), Rect(4, 4, 2, 2)},
+      {Point(-4, -6), Point(-6, -4), Rect(-6, -6, 2, 2)},
+      {Point(-4, 6), Point(6, -4), Rect(-4, -4, 10, 10)},
+  };
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(int_tests); ++i) {
     Rect actual = BoundingRect(int_tests[i].a, int_tests[i].b);
@@ -713,23 +742,23 @@
     PointF b;
     RectF expected;
   } float_tests[] = {
-        // If point B dominates A, then A should be the origin.
-        {PointF(4.2f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 0)},
-        {PointF(4.2f, 6.8f), PointF(8.5f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 0)},
-        {PointF(4.2f, 6.8f), PointF(4.2f, 9.3f), RectF(4.2f, 6.8f, 0, 2.5f)},
-        {PointF(4.2f, 6.8f), PointF(8.5f, 9.3f), RectF(4.2f, 6.8f, 4.3f, 2.5f)},
-        // If point A dominates B, then B should be the origin.
-        {PointF(4.2f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 0)},
-        {PointF(8.5f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 0)},
-        {PointF(4.2f, 9.3f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 2.5f)},
-        {PointF(8.5f, 9.3f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 2.5f)},
-        // If neither point dominates, then the origin is a combination of the
-        // two.
-        {PointF(4.2f, 6.8f), PointF(6.8f, 4.2f), RectF(4.2f, 4.2f, 2.6f, 2.6f)},
-        {PointF(-4.2f, -6.8f), PointF(-6.8f, -4.2f),
-         RectF(-6.8f, -6.8f, 2.6f, 2.6f)},
-        {PointF(-4.2f, 6.8f), PointF(6.8f, -4.2f),
-         RectF(-4.2f, -4.2f, 11.0f, 11.0f)}};
+      // If point B dominates A, then A should be the origin.
+      {PointF(4.2f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 0)},
+      {PointF(4.2f, 6.8f), PointF(8.5f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 0)},
+      {PointF(4.2f, 6.8f), PointF(4.2f, 9.3f), RectF(4.2f, 6.8f, 0, 2.5f)},
+      {PointF(4.2f, 6.8f), PointF(8.5f, 9.3f), RectF(4.2f, 6.8f, 4.3f, 2.5f)},
+      // If point A dominates B, then B should be the origin.
+      {PointF(4.2f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 0)},
+      {PointF(8.5f, 6.8f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 0)},
+      {PointF(4.2f, 9.3f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 0, 2.5f)},
+      {PointF(8.5f, 9.3f), PointF(4.2f, 6.8f), RectF(4.2f, 6.8f, 4.3f, 2.5f)},
+      // If neither point dominates, then the origin is a combination of the
+      // two.
+      {PointF(4.2f, 6.8f), PointF(6.8f, 4.2f), RectF(4.2f, 4.2f, 2.6f, 2.6f)},
+      {PointF(-4.2f, -6.8f), PointF(-6.8f, -4.2f),
+       RectF(-6.8f, -6.8f, 2.6f, 2.6f)},
+      {PointF(-4.2f, 6.8f), PointF(6.8f, -4.2f),
+       RectF(-4.2f, -4.2f, 11.0f, 11.0f)}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(float_tests); ++i) {
     RectF actual = BoundingRect(float_tests[i].a, float_tests[i].b);
diff --git a/cobalt/math/size_unittest.cc b/cobalt/math/size_unittest.cc
index 7ef23f8..f410ce4 100644
--- a/cobalt/math/size_unittest.cc
+++ b/cobalt/math/size_unittest.cc
@@ -3,10 +3,10 @@
 // found in the LICENSE file.
 
 #include "cobalt/math/size.h"
-#include "cobalt/math/size_f.h"
 
 #include "cobalt/math/size_base.h"
 #include "cobalt/math/size_conversions.h"
+#include "cobalt/math/size_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/math/transform_2d_test.cc b/cobalt/math/transform_2d_test.cc
index 301aebe..8afc5ea 100644
--- a/cobalt/math/transform_2d_test.cc
+++ b/cobalt/math/transform_2d_test.cc
@@ -12,41 +12,34 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/math/transform_2d.h"
+
 #include <cmath>
 
-#include "cobalt/math/transform_2d.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 using cobalt::math::Matrix3F;
 
 TEST(Transform2DTest, Translation) {
-  Matrix3F expected_value = Matrix3F::FromValues(
-      1.0f, 0,    3.0f,
-      0,    1.0f, 4.0f,
-      0,    0,    1.0f);
+  Matrix3F expected_value =
+      Matrix3F::FromValues(1.0f, 0, 3.0f, 0, 1.0f, 4.0f, 0, 0, 1.0f);
 
-  EXPECT_TRUE(expected_value.IsNear(
-      cobalt::math::TranslateMatrix(3, 4), 0.00001f));
+  EXPECT_TRUE(
+      expected_value.IsNear(cobalt::math::TranslateMatrix(3, 4), 0.00001f));
 }
 
 TEST(Transform2DTest, AnisotropicScale) {
-  Matrix3F expected_value = Matrix3F::FromValues(
-      3.0f, 0,    0,
-      0,    4.0f, 0,
-      0,    0,    1.0f);
+  Matrix3F expected_value =
+      Matrix3F::FromValues(3.0f, 0, 0, 0, 4.0f, 0, 0, 0, 1.0f);
 
-  EXPECT_TRUE(expected_value.IsNear(
-      cobalt::math::ScaleMatrix(3, 4), 0.00001f));
+  EXPECT_TRUE(expected_value.IsNear(cobalt::math::ScaleMatrix(3, 4), 0.00001f));
 }
 
 TEST(Transform2DTest, IsotropicScale) {
-  Matrix3F expected_value = Matrix3F::FromValues(
-      3.0f, 0,    0,
-      0,    3.0f, 0,
-      0,    0,    1.0f);
+  Matrix3F expected_value =
+      Matrix3F::FromValues(3.0f, 0, 0, 0, 3.0f, 0, 0, 0, 1.0f);
 
-  EXPECT_TRUE(expected_value.IsNear(
-      cobalt::math::ScaleMatrix(3), 0.00001f));
+  EXPECT_TRUE(expected_value.IsNear(cobalt::math::ScaleMatrix(3), 0.00001f));
 }
 
 TEST(Transform2DTest, Rotation) {
@@ -54,10 +47,8 @@
 
   // Note that we account for the fact that up is represented by negative y.
   Matrix3F expected_value = Matrix3F::FromValues(
-      cos(kTheta),  sin(kTheta), 0,
-      -sin(kTheta), cos(kTheta), 0,
-      0,            0,           1.0f);
+      cos(kTheta), sin(kTheta), 0, -sin(kTheta), cos(kTheta), 0, 0, 0, 1.0f);
 
-  EXPECT_TRUE(expected_value.IsNear(
-      cobalt::math::RotateMatrix(kTheta), 0.00001f));
+  EXPECT_TRUE(
+      expected_value.IsNear(cobalt::math::RotateMatrix(kTheta), 0.00001f));
 }
diff --git a/cobalt/math/vector2d_unittest.cc b/cobalt/math/vector2d_unittest.cc
index e42e19c..fe8e748 100644
--- a/cobalt/math/vector2d_unittest.cc
+++ b/cobalt/math/vector2d_unittest.cc
@@ -3,12 +3,12 @@
 // found in the LICENSE file.
 
 #include "cobalt/math/vector2d.h"
-#include "cobalt/math/vector2d_f.h"
 
 #include <cmath>
 #include <limits>
 
 #include "base/basictypes.h"
+#include "cobalt/math/vector2d_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
@@ -90,15 +90,12 @@
 }
 
 TEST(Vector2dTest, Scale) {
-  float double_values[][4] = {{4.5f, 1.2f, 3.3f, 5.6f},
-                              {4.5f, -1.2f, 3.3f, 5.6f},
-                              {4.5f, 1.2f, 3.3f, -5.6f},
-                              {4.5f, 1.2f, -3.3f, -5.6f},
-                              {-4.5f, 1.2f, 3.3f, 5.6f},
-                              {-4.5f, 1.2f, 0, 5.6f},
-                              {-4.5f, 1.2f, 3.3f, 0},
-                              {4.5f, 0, 3.3f, 5.6f},
-                              {0, 1.2f, 3.3f, 5.6f}};
+  float double_values[][4] = {
+      {4.5f, 1.2f, 3.3f, 5.6f},  {4.5f, -1.2f, 3.3f, 5.6f},
+      {4.5f, 1.2f, 3.3f, -5.6f}, {4.5f, 1.2f, -3.3f, -5.6f},
+      {-4.5f, 1.2f, 3.3f, 5.6f}, {-4.5f, 1.2f, 0, 5.6f},
+      {-4.5f, 1.2f, 3.3f, 0},    {4.5f, 0, 3.3f, 5.6f},
+      {0, 1.2f, 3.3f, 5.6f}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(double_values); ++i) {
     Vector2dF v(double_values[i][0], double_values[i][1]);
@@ -113,15 +110,10 @@
     EXPECT_EQ(double_values[i][1] * double_values[i][3], v2.y());
   }
 
-  float single_values[][3] = {{4.5f, 1.2f, 3.3f},
-                              {4.5f, -1.2f, 3.3f},
-                              {4.5f, 1.2f, 3.3f},
-                              {4.5f, 1.2f, -3.3f},
-                              {-4.5f, 1.2f, 3.3f},
-                              {-4.5f, 1.2f, 0},
-                              {-4.5f, 1.2f, 3.3f},
-                              {4.5f, 0, 3.3f},
-                              {0, 1.2f, 3.3f}};
+  float single_values[][3] = {
+      {4.5f, 1.2f, 3.3f},  {4.5f, -1.2f, 3.3f}, {4.5f, 1.2f, 3.3f},
+      {4.5f, 1.2f, -3.3f}, {-4.5f, 1.2f, 3.3f}, {-4.5f, 1.2f, 0},
+      {-4.5f, 1.2f, 3.3f}, {4.5f, 0, 3.3f},     {0, 1.2f, 3.3f}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(single_values); ++i) {
     Vector2dF v(single_values[i][0], single_values[i][1]);
diff --git a/cobalt/math/vector3d_unittest.cc b/cobalt/math/vector3d_unittest.cc
index 33bd039..e25b605 100644
--- a/cobalt/math/vector3d_unittest.cc
+++ b/cobalt/math/vector3d_unittest.cc
@@ -2,12 +2,11 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "cobalt/math/vector3d_f.h"
-
 #include <cmath>
 #include <limits>
 
 #include "base/basictypes.h"
+#include "cobalt/math/vector3d_f.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
@@ -29,9 +28,9 @@
     Vector3dF expected;
     Vector3dF actual;
   } float_tests[] = {
-        {Vector3dF(3.1F, 5.1F, 2.7f), f1 + Vector3dF()},
-        {Vector3dF(3.1f + 4.3f, 5.1f - 1.3f, 2.7f + 8.1f), f1 + f2},
-        {Vector3dF(3.1f - 4.3f, 5.1f + 1.3f, 2.7f - 8.1f), f1 - f2}};
+      {Vector3dF(3.1F, 5.1F, 2.7f), f1 + Vector3dF()},
+      {Vector3dF(3.1f + 4.3f, 5.1f - 1.3f, 2.7f + 8.1f), f1 + f2},
+      {Vector3dF(3.1f - 4.3f, 5.1f + 1.3f, 2.7f - 8.1f), f1 - f2}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(float_tests); ++i)
     EXPECT_EQ(float_tests[i].expected.ToString(),
@@ -43,12 +42,12 @@
     Vector3dF expected;
     Vector3dF actual;
   } float_tests[] = {
-        {Vector3dF(-0.0f, -0.0f, -0.0f), -Vector3dF(0, 0, 0)},
-        {Vector3dF(-0.3f, -0.3f, -0.3f), -Vector3dF(0.3f, 0.3f, 0.3f)},
-        {Vector3dF(0.3f, 0.3f, 0.3f), -Vector3dF(-0.3f, -0.3f, -0.3f)},
-        {Vector3dF(-0.3f, 0.3f, -0.3f), -Vector3dF(0.3f, -0.3f, 0.3f)},
-        {Vector3dF(0.3f, -0.3f, -0.3f), -Vector3dF(-0.3f, 0.3f, 0.3f)},
-        {Vector3dF(-0.3f, -0.3f, 0.3f), -Vector3dF(0.3f, 0.3f, -0.3f)}};
+      {Vector3dF(-0.0f, -0.0f, -0.0f), -Vector3dF(0, 0, 0)},
+      {Vector3dF(-0.3f, -0.3f, -0.3f), -Vector3dF(0.3f, 0.3f, 0.3f)},
+      {Vector3dF(0.3f, 0.3f, 0.3f), -Vector3dF(-0.3f, -0.3f, -0.3f)},
+      {Vector3dF(-0.3f, 0.3f, -0.3f), -Vector3dF(0.3f, -0.3f, 0.3f)},
+      {Vector3dF(0.3f, -0.3f, -0.3f), -Vector3dF(-0.3f, 0.3f, 0.3f)},
+      {Vector3dF(-0.3f, -0.3f, 0.3f), -Vector3dF(0.3f, 0.3f, -0.3f)}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(float_tests); ++i)
     EXPECT_EQ(float_tests[i].expected.ToString(),
@@ -93,20 +92,14 @@
     EXPECT_EQ(triple_values[i][2] * triple_values[i][5], v2.z());
   }
 
-  float single_values[][4] = {{4.5f, 1.2f, 1.8f, 3.3f},
-                              {4.5f, -1.2f, 1.8f, 3.3f},
-                              {4.5f, 1.2f, -1.8f, 3.3f},
-                              {4.5f, -1.2f, -1.8f, 3.3f},
-                              {-4.5f, 1.2f, 3.3f},
-                              {-4.5f, 1.2f, 0},
-                              {-4.5f, 1.2f, 1.8f, 3.3f},
-                              {-4.5f, 1.2f, 1.8f, 0},
-                              {4.5f, 0, 1.8f, 3.3f},
-                              {0, 1.2f, 1.8f, 3.3f},
-                              {4.5f, 0, 1.8f, 3.3f},
-                              {0, 1.2f, 1.8f, 3.3f},
-                              {4.5f, 1.2f, 0, 3.3f},
-                              {4.5f, 1.2f, 0, 3.3f}};
+  float single_values[][4] = {
+      {4.5f, 1.2f, 1.8f, 3.3f},  {4.5f, -1.2f, 1.8f, 3.3f},
+      {4.5f, 1.2f, -1.8f, 3.3f}, {4.5f, -1.2f, -1.8f, 3.3f},
+      {-4.5f, 1.2f, 3.3f},       {-4.5f, 1.2f, 0},
+      {-4.5f, 1.2f, 1.8f, 3.3f}, {-4.5f, 1.2f, 1.8f, 0},
+      {4.5f, 0, 1.8f, 3.3f},     {0, 1.2f, 1.8f, 3.3f},
+      {4.5f, 0, 1.8f, 3.3f},     {0, 1.2f, 1.8f, 3.3f},
+      {4.5f, 1.2f, 0, 3.3f},     {4.5f, 1.2f, 0, 3.3f}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(single_values); ++i) {
     Vector3dF v(single_values[i][0], single_values[i][1], single_values[i][2]);
@@ -166,13 +159,13 @@
     Vector3dF input1;
     Vector3dF input2;
   } tests[] = {
-        {0, Vector3dF(1, 0, 0), Vector3dF(0, 1, 1)},
-        {0, Vector3dF(0, 1, 0), Vector3dF(1, 0, 1)},
-        {0, Vector3dF(0, 0, 1), Vector3dF(1, 1, 0)},
-        {3, Vector3dF(1, 1, 1), Vector3dF(1, 1, 1)},
-        {1.2f, Vector3dF(1.2f, -1.2f, 1.2f), Vector3dF(1, 1, 1)},
-        {1.2f, Vector3dF(1, 1, 1), Vector3dF(1.2f, -1.2f, 1.2f)},
-        {38.72f, Vector3dF(1.1f, 2.2f, 3.3f), Vector3dF(4.4f, 5.5f, 6.6f)}};
+      {0, Vector3dF(1, 0, 0), Vector3dF(0, 1, 1)},
+      {0, Vector3dF(0, 1, 0), Vector3dF(1, 0, 1)},
+      {0, Vector3dF(0, 0, 1), Vector3dF(1, 1, 0)},
+      {3, Vector3dF(1, 1, 1), Vector3dF(1, 1, 1)},
+      {1.2f, Vector3dF(1.2f, -1.2f, 1.2f), Vector3dF(1, 1, 1)},
+      {1.2f, Vector3dF(1, 1, 1), Vector3dF(1.2f, -1.2f, 1.2f)},
+      {38.72f, Vector3dF(1.1f, 2.2f, 3.3f), Vector3dF(4.4f, 5.5f, 6.6f)}};
 
   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
     float actual = DotProduct(tests[i].input1, tests[i].input2);
diff --git a/cobalt/media/BUILD.gn b/cobalt/media/BUILD.gn
index 813baa2..8f640ff 100644
--- a/cobalt/media/BUILD.gn
+++ b/cobalt/media/BUILD.gn
@@ -51,6 +51,8 @@
     "base/sbplayer_pipeline.h",
     "base/sbplayer_set_bounds_helper.cc",
     "base/sbplayer_set_bounds_helper.h",
+    "bidirectional_fit_reuse_allocator.cc",
+    "bidirectional_fit_reuse_allocator.h",
     "decoder_buffer_allocator.cc",
     "decoder_buffer_allocator.h",
     "decoder_buffer_memory_info.h",
@@ -80,6 +82,7 @@
     "progressive/progressive_parser.h",
     "progressive/rbsp_stream.cc",
     "progressive/rbsp_stream.h",
+    "starboard_memory_allocator.h",
     "url_fetcher_data_source.cc",
     "url_fetcher_data_source.h",
   ]
@@ -116,6 +119,7 @@
   sources = [
     "base/cval_stats_test.cc",
     "base/decoder_buffer_cache_test.cc",
+    "bidirectional_fit_reuse_allocator_test.cc",
     "file_data_source_test.cc",
     "progressive/demuxer_extension_wrapper_test.cc",
     "progressive/mock_data_source_reader.h",
@@ -131,6 +135,7 @@
     "//base/test:test_support",
     "//cobalt/base",
     "//cobalt/test:run_all_unittests",
+    "//nb",
     "//testing/gmock",
     "//testing/gtest",
     "//third_party/chromium/media:media",
diff --git a/cobalt/media/base/audio_bus.cc b/cobalt/media/base/audio_bus.cc
index 4aaf9c7..e656769 100644
--- a/cobalt/media/base/audio_bus.cc
+++ b/cobalt/media/base/audio_bus.cc
@@ -33,7 +33,7 @@
                           AudioBus::SampleType dest_type, uint8* dest_ptr) {
   if (src_type == dest_type) {
     memcpy(dest_ptr, src_ptr,
-                 src_type == AudioBus::kInt16 ? sizeof(int16) : sizeof(float));
+           src_type == AudioBus::kInt16 ? sizeof(int16) : sizeof(float));
   } else if (src_type == AudioBus::kFloat32) {
     float sample_in_float = *reinterpret_cast<const float*>(src_ptr);
     int32 sample_in_int32 =
@@ -189,11 +189,11 @@
   }
   if (storage_type_ == kInterleaved) {
     memset(GetSamplePtr(0, start_frame), 0,
-                GetSampleSizeInBytes() * (end_frame - start_frame) * channels_);
+           GetSampleSizeInBytes() * (end_frame - start_frame) * channels_);
   } else {
     for (size_t channel = 0; channel < channels_; ++channel) {
       memset(GetSamplePtr(channel, start_frame), 0,
-                  GetSampleSizeInBytes() * (end_frame - start_frame));
+             GetSampleSizeInBytes() * (end_frame - start_frame));
     }
   }
 }
@@ -210,11 +210,11 @@
     size_t frames = std::min(frames_, source.frames_);
     if (storage_type_ == kInterleaved) {
       memcpy(GetSamplePtr(0, 0), source.GetSamplePtr(0, 0),
-                   GetSampleSizeInBytes() * frames * channels_);
+             GetSampleSizeInBytes() * frames * channels_);
     } else {
       for (size_t channel = 0; channel < channels_; ++channel) {
         memcpy(GetSamplePtr(channel, 0), source.GetSamplePtr(channel, 0),
-                     GetSampleSizeInBytes() * frames);
+               GetSampleSizeInBytes() * frames);
       }
     }
     return;
diff --git a/cobalt/media/base/interleaved_sinc_resampler.cc b/cobalt/media/base/interleaved_sinc_resampler.cc
index 5756cb8..ae83cb1 100644
--- a/cobalt/media/base/interleaved_sinc_resampler.cc
+++ b/cobalt/media/base/interleaved_sinc_resampler.cc
@@ -49,6 +49,7 @@
 
 #include <algorithm>
 #include <cmath>
+#include <utility>
 
 #include "base/logging.h"
 #include "starboard/memory.h"
@@ -149,7 +150,7 @@
             r1_ + kBufferSize * channel_count_);
 
   memset(kernel_storage_.get(), 0,
-              sizeof(*kernel_storage_.get()) * kKernelStorageSize);
+         sizeof(*kernel_storage_.get()) * kKernelStorageSize);
   memset(input_buffer_.get(), 0, frame_size_in_bytes_ * kBufferSize);
 
   InitializeKernel();
diff --git a/cobalt/media/base/sbplayer_bridge.cc b/cobalt/media/base/sbplayer_bridge.cc
index fad7fda..92dc4da 100644
--- a/cobalt/media/base/sbplayer_bridge.cc
+++ b/cobalt/media/base/sbplayer_bridge.cc
@@ -707,7 +707,11 @@
     // a method of querying that texture.
     decode_target_provider_->SetGetCurrentSbDecodeTargetFunction(base::Bind(
         &SbPlayerBridge::GetCurrentSbDecodeTarget, base::Unretained(this)));
+    SB_LOG(INFO) << "Playing in decode-to-texture mode.";
+  } else {
+    SB_LOG(INFO) << "Playing in punch-out mode.";
   }
+
   decode_target_provider_->SetOutputMode(
       ToVideoFrameProviderOutputMode(output_mode_));
 
@@ -773,7 +777,11 @@
     // a method of querying that texture.
     decode_target_provider_->SetGetCurrentSbDecodeTargetFunction(base::Bind(
         &SbPlayerBridge::GetCurrentSbDecodeTarget, base::Unretained(this)));
+    SB_LOG(INFO) << "Playing in decode-to-texture mode.";
+  } else {
+    SB_LOG(INFO) << "Playing in punch-out mode.";
   }
+
   decode_target_provider_->SetOutputMode(
       ToVideoFrameProviderOutputMode(output_mode_));
   set_bounds_helper_->SetPlayerBridge(this);
diff --git a/cobalt/media/base/sbplayer_pipeline.cc b/cobalt/media/base/sbplayer_pipeline.cc
index 9459ebb..ee6a1dc 100644
--- a/cobalt/media/base/sbplayer_pipeline.cc
+++ b/cobalt/media/base/sbplayer_pipeline.cc
@@ -81,6 +81,24 @@
 }
 #endif  // SB_API_VERSION >= 15
 
+// The function adjusts audio write duration proportionally to the playback
+// rate, when the playback rate is greater than 1.0.
+//
+// Having the right write duration is important:
+// 1. Too small of it causes audio underflow.
+// 2. Too large of it causes excessive audio switch latency.
+// When playback rate is 2x, an 0.5 seconds of write duration effectively only
+// lasts for 0.25 seconds and causes audio underflow, and the function will
+// adjust it to 1 second in this case.
+SbTime AdjustWriteDurationForPlaybackRate(SbTime write_duration,
+                                          float playback_rate) {
+  if (playback_rate <= 1.0) {
+    return write_duration;
+  }
+
+  return static_cast<SbTime>(write_duration * playback_rate);
+}
+
 }  // namespace
 
 SbPlayerPipeline::SbPlayerPipeline(
@@ -1060,13 +1078,16 @@
     // account that our estimate of playback time might be behind by
     // |kMediaTimeCheckInterval|.
     if (timestamp_of_last_written_audio_ - seek_time_.ToSbTime() >
-        audio_write_duration_for_preroll_) {
+        AdjustWriteDurationForPlaybackRate(audio_write_duration_for_preroll_,
+                                           playback_rate_)) {
       // The estimated time ahead of playback may be negative if no audio has
       // been written.
       SbTime time_ahead_of_playback =
           timestamp_of_last_written_audio_ - last_media_time_;
+      auto adjusted_write_duration = AdjustWriteDurationForPlaybackRate(
+          audio_write_duration_, playback_rate_);
       if (time_ahead_of_playback >
-          (audio_write_duration_ + kMediaTimeCheckInterval)) {
+          (adjusted_write_duration + kMediaTimeCheckInterval)) {
         task_runner_->PostDelayedTask(
             FROM_HERE,
             base::Bind(&SbPlayerPipeline::DelayedNeedData, this, max_buffers),
diff --git a/nb/bidirectional_fit_reuse_allocator.cc b/cobalt/media/bidirectional_fit_reuse_allocator.cc
similarity index 80%
rename from nb/bidirectional_fit_reuse_allocator.cc
rename to cobalt/media/bidirectional_fit_reuse_allocator.cc
index bf95517..73b33d4 100644
--- a/nb/bidirectional_fit_reuse_allocator.cc
+++ b/cobalt/media/bidirectional_fit_reuse_allocator.cc
@@ -12,7 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "nb/bidirectional_fit_reuse_allocator.h"
+#include "cobalt/media/bidirectional_fit_reuse_allocator.h"
 
 #include <algorithm>
 
@@ -20,22 +20,19 @@
 #include "starboard/common/log.h"
 #include "starboard/types.h"
 
-namespace nb {
+namespace cobalt {
+namespace media {
 
 BidirectionalFitReuseAllocator::BidirectionalFitReuseAllocator(
-    Allocator* fallback_allocator,
-    std::size_t initial_capacity,
+    Allocator* fallback_allocator, std::size_t initial_capacity,
     std::size_t small_allocation_threshold,
-    std::size_t allocation_increment /*= 0*/,
-    std::size_t max_capacity /* =0 */
+    std::size_t allocation_increment /*= 0*/, std::size_t max_capacity /* =0 */
     )
-    : ReuseAllocatorBase(fallback_allocator,
-                         initial_capacity,
-                         allocation_increment,
-                         max_capacity),
+    : ReuseAllocatorBase(fallback_allocator, initial_capacity,
+                         allocation_increment, max_capacity),
       small_allocation_threshold_(small_allocation_threshold) {}
 
-ReuseAllocatorBase::FreeBlockSet::iterator
+nb::ReuseAllocatorBase::FreeBlockSet::iterator
 BidirectionalFitReuseAllocator::FindFreeBlock(std::size_t size,
                                               std::size_t alignment,
                                               FreeBlockSet::iterator begin,
@@ -66,4 +63,5 @@
   return end;
 }
 
-}  // namespace nb
+}  // namespace media
+}  // namespace cobalt
diff --git a/nb/bidirectional_fit_reuse_allocator.h b/cobalt/media/bidirectional_fit_reuse_allocator.h
similarity index 81%
rename from nb/bidirectional_fit_reuse_allocator.h
rename to cobalt/media/bidirectional_fit_reuse_allocator.h
index aa03dde..ecfe5fa 100644
--- a/nb/bidirectional_fit_reuse_allocator.h
+++ b/cobalt/media/bidirectional_fit_reuse_allocator.h
@@ -14,13 +14,14 @@
  * limitations under the License.
  */
 
-#ifndef NB_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
-#define NB_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
+#ifndef COBALT_MEDIA_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
+#define COBALT_MEDIA_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
 
 #include "nb/reuse_allocator_base.h"
 #include "starboard/configuration.h"
 
-namespace nb {
+namespace cobalt {
+namespace media {
 
 // This class uses first-fit allocation strategy to allocate memory block whose
 // size is greater than the |small_allocation_threshold|.  It uses last-fit
@@ -31,7 +32,7 @@
 // Note that when using this class a significant |initial_capacity| should be
 // set as otherwise new allocations will almost always allocate from the front
 // of the fallback allocator.
-class BidirectionalFitReuseAllocator : public ReuseAllocatorBase {
+class BidirectionalFitReuseAllocator : public nb::ReuseAllocatorBase {
  public:
   BidirectionalFitReuseAllocator(Allocator* fallback_allocator,
                                  std::size_t initial_capacity,
@@ -39,8 +40,7 @@
                                  std::size_t allocation_increment = 0,
                                  std::size_t max_capacity = 0);
 
-  FreeBlockSet::iterator FindFreeBlock(std::size_t size,
-                                       std::size_t alignment,
+  FreeBlockSet::iterator FindFreeBlock(std::size_t size, std::size_t alignment,
                                        FreeBlockSet::iterator begin,
                                        FreeBlockSet::iterator end,
                                        bool* allocate_from_front) override;
@@ -49,6 +49,7 @@
   std::size_t small_allocation_threshold_;
 };
 
-}  // namespace nb
+}  // namespace media
+}  // namespace cobalt
 
-#endif  // NB_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
+#endif  // COBALT_MEDIA_BIDIRECTIONAL_FIT_REUSE_ALLOCATOR_H_
diff --git a/nb/bidirectional_fit_reuse_allocator_test.cc b/cobalt/media/bidirectional_fit_reuse_allocator_test.cc
similarity index 91%
rename from nb/bidirectional_fit_reuse_allocator_test.cc
rename to cobalt/media/bidirectional_fit_reuse_allocator_test.cc
index 21d841a..8d68b7b 100644
--- a/nb/bidirectional_fit_reuse_allocator_test.cc
+++ b/cobalt/media/bidirectional_fit_reuse_allocator_test.cc
@@ -14,18 +14,23 @@
  * limitations under the License.
  */
 
-#include "nb/bidirectional_fit_reuse_allocator.h"
+#include "cobalt/media/bidirectional_fit_reuse_allocator.h"
+
+#include <memory>
 
 #include "nb/fixed_no_free_allocator.h"
 #include "nb/pointer_arithmetic.h"
-#include "nb/scoped_ptr.h"
-#include "nb/starboard_aligned_memory_deleter.h"
 #include "starboard/configuration.h"
+#include "starboard/memory.h"
 #include "starboard/types.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace {
 
+struct AlignedMemoryDeleter {
+  void operator()(uint8_t* p) { SbMemoryDeallocateAligned(p); }
+};
+
 class BidirectionalFitReuseAllocatorTest : public ::testing::Test {
  public:
   static const int kBufferSize = 1 * 1024 * 1024;
@@ -39,18 +44,18 @@
     buffer_.reset(static_cast<uint8_t*>(
         SbMemoryAllocateAligned(nb::Allocator::kMinAlignment, kBufferSize)));
 
-    nb::scoped_ptr<nb::FixedNoFreeAllocator> fallback_allocator(
+    std::unique_ptr<nb::FixedNoFreeAllocator> fallback_allocator(
         new nb::FixedNoFreeAllocator(buffer_.get(), kBufferSize));
-    allocator_.reset(new nb::BidirectionalFitReuseAllocator(
+    allocator_.reset(new cobalt::media::BidirectionalFitReuseAllocator(
         fallback_allocator.get(), initial_capacity, small_allocation_threshold,
         allocation_increment));
 
     fallback_allocator_.swap(fallback_allocator);
   }
 
-  std::unique_ptr<uint8_t, nb::AlignedMemoryDeleter> buffer_;
-  nb::scoped_ptr<nb::FixedNoFreeAllocator> fallback_allocator_;
-  nb::scoped_ptr<nb::BidirectionalFitReuseAllocator> allocator_;
+  std::unique_ptr<uint8_t, AlignedMemoryDeleter> buffer_;
+  std::unique_ptr<nb::FixedNoFreeAllocator> fallback_allocator_;
+  std::unique_ptr<cobalt::media::BidirectionalFitReuseAllocator> allocator_;
 };
 
 }  // namespace
diff --git a/cobalt/media/decoder_buffer_allocator.cc b/cobalt/media/decoder_buffer_allocator.cc
index db38a23..1c95d2f 100644
--- a/cobalt/media/decoder_buffer_allocator.cc
+++ b/cobalt/media/decoder_buffer_allocator.cc
@@ -19,7 +19,6 @@
 
 #include "cobalt/math/size.h"
 #include "nb/allocator.h"
-#include "nb/memory_scope.h"
 #include "starboard/configuration.h"
 #include "starboard/media.h"
 #include "starboard/memory.h"
@@ -59,8 +58,6 @@
     return;
   }
 
-  TRACK_MEMORY_SCOPE("Media");
-
   ScopedLock scoped_lock(mutex_);
   EnsureReuseAllocatorIsCreated();
   Allocator::Set(this);
@@ -73,8 +70,6 @@
     return;
   }
 
-  TRACK_MEMORY_SCOPE("Media");
-
   ScopedLock scoped_lock(mutex_);
 
   if (reuse_allocator_) {
@@ -88,8 +83,6 @@
     return;
   }
 
-  TRACK_MEMORY_SCOPE("Media");
-
   ScopedLock scoped_lock(mutex_);
 
   if (reuse_allocator_ && reuse_allocator_->GetAllocated() == 0) {
@@ -104,15 +97,11 @@
     return;
   }
 
-  TRACK_MEMORY_SCOPE("Media");
-
   ScopedLock scoped_lock(mutex_);
   EnsureReuseAllocatorIsCreated();
 }
 
 void* DecoderBufferAllocator::Allocate(size_t size, size_t alignment) {
-  TRACK_MEMORY_SCOPE("Media");
-
   if (!using_memory_pool_) {
     sbmemory_bytes_used_.fetch_add(size);
     auto p = SbMemoryAllocateAligned(alignment, size);
@@ -133,8 +122,6 @@
 }
 
 void DecoderBufferAllocator::Free(void* p, size_t size) {
-  TRACK_MEMORY_SCOPE("Media");
-
   if (p == nullptr) {
     DCHECK_EQ(size, 0);
     return;
@@ -237,7 +224,7 @@
     return;
   }
 
-  reuse_allocator_.reset(new nb::BidirectionalFitReuseAllocator(
+  reuse_allocator_.reset(new BidirectionalFitReuseAllocator(
       &fallback_allocator_, initial_capacity_, kSmallAllocationThreshold,
       allocation_unit_, 0));
   DLOG(INFO) << "Allocated " << initial_capacity_
diff --git a/cobalt/media/decoder_buffer_allocator.h b/cobalt/media/decoder_buffer_allocator.h
index b324064..68ba5de 100644
--- a/cobalt/media/decoder_buffer_allocator.h
+++ b/cobalt/media/decoder_buffer_allocator.h
@@ -18,9 +18,9 @@
 #include <memory>
 
 #include "base/compiler_specific.h"
+#include "cobalt/media/bidirectional_fit_reuse_allocator.h"
 #include "cobalt/media/decoder_buffer_memory_info.h"
-#include "nb/bidirectional_fit_reuse_allocator.h"
-#include "nb/starboard_memory_allocator.h"
+#include "cobalt/media/starboard_memory_allocator.h"
 #include "starboard/common/atomic.h"
 #include "starboard/common/mutex.h"
 #include "starboard/media.h"
@@ -68,8 +68,8 @@
   const int allocation_unit_;
 
   starboard::Mutex mutex_;
-  nb::StarboardMemoryAllocator fallback_allocator_;
-  std::unique_ptr<nb::BidirectionalFitReuseAllocator> reuse_allocator_;
+  StarboardMemoryAllocator fallback_allocator_;
+  std::unique_ptr<BidirectionalFitReuseAllocator> reuse_allocator_;
 
   int max_buffer_capacity_ = 0;
 
diff --git a/cobalt/media/file_data_source_test.cc b/cobalt/media/file_data_source_test.cc
index 4fe7fe7..34989f8 100644
--- a/cobalt/media/file_data_source_test.cc
+++ b/cobalt/media/file_data_source_test.cc
@@ -31,6 +31,9 @@
 }
 
 TEST(FileDataSourceTest, SunnyDay) {
+  // TODO(b/292134341): Test fails on all platforms.
+  GTEST_SKIP();
+
   base::test::ScopedTaskEnvironment scoped_task_environment_;
   FileDataSource data_source(
       GURL("file:///cobalt/media/testing/data/"
diff --git a/cobalt/media/media_module.cc b/cobalt/media/media_module.cc
index a952d2b..06e7e26 100644
--- a/cobalt/media/media_module.cc
+++ b/cobalt/media/media_module.cc
@@ -25,7 +25,6 @@
 #include "base/strings/string_split.h"
 #include "base/synchronization/waitable_event.h"
 #include "cobalt/media/base/format_support_query_metrics.h"
-#include "nb/memory_scope.h"
 #include "starboard/common/string.h"
 #include "starboard/media.h"
 #include "starboard/window.h"
@@ -218,7 +217,6 @@
 
 std::unique_ptr<WebMediaPlayer> MediaModule::CreateWebMediaPlayer(
     WebMediaPlayerClient* client) {
-  TRACK_MEMORY_SCOPE("Media");
   SbWindow window = kSbWindowInvalid;
   if (system_window_) {
     window = system_window_->GetSbWindow();
diff --git a/cobalt/media/progressive/mp4_parser.cc b/cobalt/media/progressive/mp4_parser.cc
index 123a0b1..70ceafd 100644
--- a/cobalt/media/progressive/mp4_parser.cc
+++ b/cobalt/media/progressive/mp4_parser.cc
@@ -15,6 +15,7 @@
 #include "cobalt/media/progressive/mp4_parser.h"
 
 #include <inttypes.h>
+
 #include <limits>
 #include <vector>
 
diff --git a/cobalt/media/progressive/rbsp_stream_unittest.cc b/cobalt/media/progressive/rbsp_stream_unittest.cc
index 0bcf519..89d1df5 100644
--- a/cobalt/media/progressive/rbsp_stream_unittest.cc
+++ b/cobalt/media/progressive/rbsp_stream_unittest.cc
@@ -16,6 +16,7 @@
 
 #include <list>
 #include <memory>
+#include <utility>
 
 #include "base/logging.h"
 #include "base/strings/stringprintf.h"
@@ -36,9 +37,9 @@
     bool is_negative = (num < 0);
     uint32 unum = 0;
     if (is_negative) {
-      unum = (uint32)(num * -1);
+      unum = static_cast<uint32>(num * -1);
     } else {
-      unum = (uint32)num;
+      unum = static_cast<uint32>(num);
     }
     // multiply unsigned value by 2
     unum = unum << 1;
diff --git a/cobalt/media/sandbox/BUILD.gn b/cobalt/media/sandbox/BUILD.gn
index 00f87a2..19be835 100644
--- a/cobalt/media/sandbox/BUILD.gn
+++ b/cobalt/media/sandbox/BUILD.gn
@@ -58,7 +58,7 @@
     "//url",
   ]
 
-  if (!sb_is_evergreen) {
+  if (!sb_is_modular) {
     deps += cobalt_platform_dependencies
   }
 }
diff --git a/cobalt/media/sandbox/media_sandbox.cc b/cobalt/media/sandbox/media_sandbox.cc
index bb2b09a..92673ed 100644
--- a/cobalt/media/sandbox/media_sandbox.cc
+++ b/cobalt/media/sandbox/media_sandbox.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/media/sandbox/media_sandbox.h"
 
+#include <memory>
+
 #include "base/command_line.h"
 #include "base/logging.h"
 #include "base/message_loop/message_loop.h"
diff --git a/cobalt/media/sandbox/media_source_demuxer.cc b/cobalt/media/sandbox/media_source_demuxer.cc
index f2c4013..7e5edfb 100644
--- a/cobalt/media/sandbox/media_source_demuxer.cc
+++ b/cobalt/media/sandbox/media_source_demuxer.cc
@@ -38,9 +38,9 @@
 
 using base::Bind;
 using ::media::BindToCurrentLoop;
+using ::media::ChunkDemuxer;
 using ::media::DecoderBuffer;
 using ::media::DemuxerStream;
-using ::media::ChunkDemuxer;
 
 typedef base::Callback<void(::media::DecoderBuffer*)> AppendBufferCB;
 
@@ -109,16 +109,12 @@
   const ::media::VideoDecoderConfig& config() const { return config_; }
 
  private:
-  void SetTotalBytes(int64 total_bytes) override {
-  }
-  void AddBufferedByteRange(int64 start, int64 end) override {
-  }
+  void SetTotalBytes(int64 total_bytes) override {}
+  void AddBufferedByteRange(int64 start, int64 end) override {}
   void AddBufferedTimeRange(base::TimeDelta start,
-                            base::TimeDelta end) override {
-  }
+                            base::TimeDelta end) override {}
 
-  void SetDuration(base::TimeDelta duration) override {
-  }
+  void SetDuration(base::TimeDelta duration) override {}
   void OnDemuxerError(::media::PipelineStatus error) override {
     valid_ = false;
   }
diff --git a/cobalt/media/sandbox/web_media_player_sandbox.cc b/cobalt/media/sandbox/web_media_player_sandbox.cc
index 1c9f4c6..cfa4a28 100644
--- a/cobalt/media/sandbox/web_media_player_sandbox.cc
+++ b/cobalt/media/sandbox/web_media_player_sandbox.cc
@@ -415,6 +415,8 @@
       break;
     }
 
-    default: { break; }
+    default: {
+      break;
+    }
   }
 }
diff --git a/nb/starboard_memory_allocator.h b/cobalt/media/starboard_memory_allocator.h
similarity index 84%
rename from nb/starboard_memory_allocator.h
rename to cobalt/media/starboard_memory_allocator.h
index 44d9ed3..bda99a2 100644
--- a/nb/starboard_memory_allocator.h
+++ b/cobalt/media/starboard_memory_allocator.h
@@ -12,8 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#ifndef NB_STARBOARD_MEMORY_ALLOCATOR_H_
-#define NB_STARBOARD_MEMORY_ALLOCATOR_H_
+#ifndef COBALT_MEDIA_STARBOARD_MEMORY_ALLOCATOR_H_
+#define COBALT_MEDIA_STARBOARD_MEMORY_ALLOCATOR_H_
 
 #include <algorithm>
 
@@ -21,12 +21,13 @@
 #include "starboard/configuration.h"
 #include "starboard/memory.h"
 
-namespace nb {
+namespace cobalt {
+namespace media {
 
 // StarboardMemoryAllocator is an allocator that allocates and frees memory
 // using SbMemoryAllocateAligned() and SbMemoryDeallocate() in
 // starboard/memory.h.
-class StarboardMemoryAllocator : public Allocator {
+class StarboardMemoryAllocator : public nb::Allocator {
  public:
   void* Allocate(std::size_t size) override { return Allocate(size, 1); }
 
@@ -50,6 +51,7 @@
   void PrintAllocations() const override {}
 };
 
-}  // namespace nb
+}  // namespace media
+}  // namespace cobalt
 
-#endif  // NB_STARBOARD_MEMORY_ALLOCATOR_H_
+#endif  // COBALT_MEDIA_STARBOARD_MEMORY_ALLOCATOR_H_
diff --git a/cobalt/media_capture/media_recorder.idl b/cobalt/media_capture/media_recorder.idl
index e850ff7..7a8972b 100644
--- a/cobalt/media_capture/media_recorder.idl
+++ b/cobalt/media_capture/media_recorder.idl
@@ -32,4 +32,3 @@
 
   static boolean isTypeSupported(DOMString type);
 };
-
diff --git a/cobalt/media_capture/media_recorder_options.idl b/cobalt/media_capture/media_recorder_options.idl
index 913e5b8..8391bbe 100644
--- a/cobalt/media_capture/media_recorder_options.idl
+++ b/cobalt/media_capture/media_recorder_options.idl
@@ -16,4 +16,3 @@
 dictionary MediaRecorderOptions {
   DOMString mimeType;
 };
-
diff --git a/cobalt/media_capture/media_recorder_test.cc b/cobalt/media_capture/media_recorder_test.cc
index 92760e1..9c7fa1a 100644
--- a/cobalt/media_capture/media_recorder_test.cc
+++ b/cobalt/media_capture/media_recorder_test.cc
@@ -29,10 +29,10 @@
 #include "cobalt/web/testing/mock_event_listener.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
-using cobalt::web::EventListener;
-using cobalt::web::testing::MockEventListener;
 using cobalt::script::testing::FakeScriptValue;
 using cobalt::script::testing::MockExceptionState;
+using cobalt::web::EventListener;
+using cobalt::web::testing::MockEventListener;
 using ::testing::_;
 using ::testing::Eq;
 using ::testing::Pointee;
diff --git a/cobalt/media_capture/navigator.idl b/cobalt/media_capture/navigator.idl
index 036bea7..8fd7b84 100644
--- a/cobalt/media_capture/navigator.idl
+++ b/cobalt/media_capture/navigator.idl
@@ -14,4 +14,4 @@
 
 partial interface Navigator {
   readonly attribute MediaDevices mediaDevices;
-};
\ No newline at end of file
+};
diff --git a/cobalt/media_capture/recording_state.idl b/cobalt/media_capture/recording_state.idl
index 96db55a..9878e97 100644
--- a/cobalt/media_capture/recording_state.idl
+++ b/cobalt/media_capture/recording_state.idl
@@ -20,4 +20,3 @@
   "recording",
   "paused"
 };
-
diff --git a/cobalt/media_integration_tests/endurance/endurance_test.py b/cobalt/media_integration_tests/endurance/endurance_test.py
index a5492b98d..4d84ec7 100644
--- a/cobalt/media_integration_tests/endurance/endurance_test.py
+++ b/cobalt/media_integration_tests/endurance/endurance_test.py
@@ -98,15 +98,15 @@
       self.last_media_time_update_time = current_running_time
 
     # Update written audio timestamp.
-    if (self.last_written_audio_timestamp !=
-        pipeline_state.last_written_audio_timestamp):
+    if (self.last_written_audio_timestamp
+        != pipeline_state.last_written_audio_timestamp):
       self.last_written_audio_timestamp = (
           pipeline_state.last_written_audio_timestamp)
       self.last_written_audio_update_time = current_running_time
 
     # Update written video timestamp.
-    if (self.last_written_video_timestamp !=
-        pipeline_state.last_written_video_timestamp):
+    if (self.last_written_video_timestamp
+        != pipeline_state.last_written_video_timestamp):
       self.last_written_video_timestamp = (
           pipeline_state.last_written_video_timestamp)
       self.last_written_video_update_time = current_running_time
@@ -192,8 +192,8 @@
         if not app.player_state_handler.IsPlayerPlaying():
           # TODO: identify network problem
           self.assertTrue(
-              current_running_time - self.last_state_check_time <
-              PLAYER_INITIALIZATION_WAITING_TIMEOUT,
+              current_running_time - self.last_state_check_time
+              < PLAYER_INITIALIZATION_WAITING_TIMEOUT,
               self.GenerateErrorString(
                   'Timed out waiting for player initialization (waited: '
                   f'{current_running_time - self.last_state_check_time}).'))
@@ -201,8 +201,8 @@
         self.last_state_check_time = current_running_time
         # Skip to next playback if it has been played for long time.
         if (self.playback_start_time != -1 and
-            current_running_time - self.playback_start_time >
-            SINGLE_PLAYBACK_WATCH_TIME_MAXIMUM):
+            current_running_time - self.playback_start_time
+            > SINGLE_PLAYBACK_WATCH_TIME_MAXIMUM):
           app.PlayNext()
           # Set start time to -1 here to avoid send same command in next loop.
           self.playback_start_time = -1
@@ -239,16 +239,16 @@
           if (self.audio_eos_written_time > 0 and
               self.video_eos_written_time > 0 and self.playback_end_time > 0):
             self.assertTrue(
-                current_running_time - self.playback_end_time <
-                PLAYBACK_END_WAITING_TIMEOUT,
+                current_running_time - self.playback_end_time
+                < PLAYBACK_END_WAITING_TIMEOUT,
                 self.GenerateErrorString(
                     'Timed out waiting for playback to end (waited: '
                     f'{current_running_time - self.playback_end_time}).'))
 
         # Send random actions.
         if (self.needs_random_action and
-            current_running_time - self.last_action_time >
-            self.random_action_interval):
+            current_running_time - self.last_action_time
+            > self.random_action_interval):
           self.SendRandomAction(app)
           self.last_action_time = current_running_time
 
diff --git a/cobalt/media_stream/audio_parameters_test.cc b/cobalt/media_stream/audio_parameters_test.cc
index fd6b7c9..e6e0baf 100644
--- a/cobalt/media_stream/audio_parameters_test.cc
+++ b/cobalt/media_stream/audio_parameters_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/media_stream/audio_parameters.h"
+
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
diff --git a/cobalt/media_stream/media_stream_audio_deliverer.h b/cobalt/media_stream/media_stream_audio_deliverer.h
index b942bdd..ad6e9f1 100644
--- a/cobalt/media_stream/media_stream_audio_deliverer.h
+++ b/cobalt/media_stream/media_stream_audio_deliverer.h
@@ -26,7 +26,6 @@
 #include "base/threading/thread_checker.h"
 #include "base/time/time.h"
 #include "base/trace_event/trace_event.h"
-
 #include "cobalt/media/base/audio_bus.h"
 #include "cobalt/media_stream/audio_parameters.h"
 
@@ -118,7 +117,7 @@
     consumers_.clear();
   }
 
-// Deliver data to all consumers. This method may be called on any thread.
+  // Deliver data to all consumers. This method may be called on any thread.
 
   void OnData(const media::AudioBus& audio_bus,
               base::TimeTicks reference_time) {
diff --git a/cobalt/media_stream/media_stream_audio_sink.h b/cobalt/media_stream/media_stream_audio_sink.h
index 034dbec..af6c263 100644
--- a/cobalt/media_stream/media_stream_audio_sink.h
+++ b/cobalt/media_stream/media_stream_audio_sink.h
@@ -16,9 +16,7 @@
 #define COBALT_MEDIA_STREAM_MEDIA_STREAM_AUDIO_SINK_H_
 
 #include "cobalt/media/base/audio_bus.h"
-
 #include "cobalt/media_stream/audio_parameters.h"
-
 #include "cobalt/media_stream/media_stream_source.h"
 #include "cobalt/media_stream/media_stream_track.h"
 
@@ -38,8 +36,7 @@
                       base::TimeTicks reference_time) = 0;
   virtual void OnSetFormat(const media_stream::AudioParameters& params) = 0;
   virtual void OnReadyStateChanged(
-      media_stream::MediaStreamTrack::ReadyState new_state) {
-  }
+      media_stream::MediaStreamTrack::ReadyState new_state) {}
 
  private:
   MediaStreamAudioSink(const MediaStreamAudioSink&) = delete;
diff --git a/cobalt/media_stream/testing/mock_media_stream_audio_sink.h b/cobalt/media_stream/testing/mock_media_stream_audio_sink.h
index 7fa06b6..aa31283 100644
--- a/cobalt/media_stream/testing/mock_media_stream_audio_sink.h
+++ b/cobalt/media_stream/testing/mock_media_stream_audio_sink.h
@@ -16,7 +16,6 @@
 #define COBALT_MEDIA_STREAM_TESTING_MOCK_MEDIA_STREAM_AUDIO_SINK_H_
 
 #include "cobalt/media_stream/media_stream_audio_sink.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 
 namespace cobalt {
diff --git a/cobalt/media_stream/testing/mock_media_stream_audio_source.h b/cobalt/media_stream/testing/mock_media_stream_audio_source.h
index 26f1d79..8c0192b 100644
--- a/cobalt/media_stream/testing/mock_media_stream_audio_source.h
+++ b/cobalt/media_stream/testing/mock_media_stream_audio_source.h
@@ -16,7 +16,6 @@
 #define COBALT_MEDIA_STREAM_TESTING_MOCK_MEDIA_STREAM_AUDIO_SOURCE_H_
 
 #include "cobalt/media_stream/media_stream_audio_source.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 
 namespace cobalt {
diff --git a/cobalt/network/BUILD.gn b/cobalt/network/BUILD.gn
index adf0975..1a4fd75 100644
--- a/cobalt/network/BUILD.gn
+++ b/cobalt/network/BUILD.gn
@@ -80,7 +80,7 @@
     defines = [ "ENABLE_NETWORK_LOGGING" ]
   }
 
-  if (!sb_is_evergreen) {
+  if (!sb_is_modular) {
     deps += cobalt_platform_dependencies
   }
 }
diff --git a/cobalt/network/cookie_jar_impl.cc b/cobalt/network/cookie_jar_impl.cc
index f9a2d43..075c1a0 100644
--- a/cobalt/network/cookie_jar_impl.cc
+++ b/cobalt/network/cookie_jar_impl.cc
@@ -14,6 +14,8 @@
 
 #include "cobalt/network/cookie_jar_impl.h"
 
+#include <utility>
+
 #include "base/bind.h"
 #include "base/synchronization/waitable_event.h"
 
diff --git a/cobalt/network/net_log_constants.cc b/cobalt/network/net_log_constants.cc
index a012c4b..1b74e16 100644
--- a/cobalt/network/net_log_constants.cc
+++ b/cobalt/network/net_log_constants.cc
@@ -12,15 +12,16 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/network/net_log_constants.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/basictypes.h"
 #include "base/strings/string_number_conversions.h"
 #include "base/strings/stringprintf.h"
 #include "cobalt/version.h"
-#include "cobalt_build_id.h"  // NOLINT(build/include)
+#include "cobalt_build_id.h"  // NOLINT(build/include_subdir)
 #include "net/base/address_family.h"
 #include "net/base/load_states.h"
 #include "net/log/net_log.h"
@@ -31,7 +32,7 @@
 namespace {
 // Same log format as in M25.
 const int kLogFormatVersion = 1;
-}
+}  // namespace
 
 std::unique_ptr<base::DictionaryValue> NetLogConstants::GetConstants() {
   // This function is based on the implementation of
diff --git a/cobalt/network/net_poster.h b/cobalt/network/net_poster.h
index 6e55f24..cc615fd 100644
--- a/cobalt/network/net_poster.h
+++ b/cobalt/network/net_poster.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <vector>
 
 #include "cobalt/network_bridge/net_poster.h"
 #include "net/url_request/url_fetcher.h"
diff --git a/cobalt/network/network_module.cc b/cobalt/network/network_module.cc
index 15e3dbd..8154b7c 100644
--- a/cobalt/network/network_module.cc
+++ b/cobalt/network/network_module.cc
@@ -98,11 +98,16 @@
                             custom_proxy_rules));
 }
 
-void NetworkModule::SetEnableQuic(bool enable_quic) {
-  task_runner()->PostTask(
-      FROM_HERE,
-      base::Bind(&URLRequestContext::SetEnableQuic,
-                 base::Unretained(url_request_context_.get()), enable_quic));
+void NetworkModule::SetEnableQuicFromPersistentSettings() {
+  // Called on initialization and when the persistent setting is changed.
+  if (options_.persistent_settings != nullptr) {
+    bool enable_quic = options_.persistent_settings->GetPersistentSettingAsBool(
+        kQuicEnabledPersistentSettingsKey, false);
+    task_runner()->PostTask(
+        FROM_HERE,
+        base::Bind(&URLRequestContext::SetEnableQuic,
+                   base::Unretained(url_request_context_.get()), enable_quic));
+  }
 }
 
 void NetworkModule::SetEnableClientHintHeadersFlagsFromPersistentSettings() {
@@ -114,6 +119,11 @@
   }
 }
 
+void NetworkModule::EnsureStorageManagerStarted() {
+  DCHECK(storage_manager_);
+  storage_manager_->EnsureStarted();
+}
+
 void NetworkModule::Initialize(const std::string& user_agent_string,
                                base::EventDispatcher* event_dispatcher) {
   storage_manager_.reset(
@@ -188,6 +198,8 @@
   DCHECK(url_request_context_);
   url_request_context_getter_ = new network::URLRequestContextGetter(
       url_request_context_.get(), thread_.get());
+
+  SetEnableQuicFromPersistentSettings();
 }
 
 void NetworkModule::OnCreate(base::WaitableEvent* creation_event) {
diff --git a/cobalt/network/network_module.h b/cobalt/network/network_module.h
index 69f226d..b6c8bd2 100644
--- a/cobalt/network/network_module.h
+++ b/cobalt/network/network_module.h
@@ -59,6 +59,8 @@
   kCallTypeXHR = (1u << 5),
 };
 
+const char kQuicEnabledPersistentSettingsKey[] = "QUICEnabled";
+
 // Holds bit mask flag, read into |enable_client_hint_headers_flags_|.
 const char kClientHintHeadersEnabledPersistentSettingsKey[] =
     "clientHintHeadersEnabled";
@@ -98,6 +100,9 @@
                 const Options& options = Options());
   ~NetworkModule();
 
+  // Ensures that the storage manager is created.
+  void EnsureStorageManagerStarted();
+
   URLRequestContext* url_request_context() const {
     return url_request_context_.get();
   }
@@ -125,7 +130,7 @@
 #endif
   void SetProxy(const std::string& custom_proxy_rules);
 
-  void SetEnableQuic(bool enable_quic);
+  void SetEnableQuicFromPersistentSettings();
 
   // Checks persistent settings to determine if Client Hint Headers are enabled.
   void SetEnableClientHintHeadersFlagsFromPersistentSettings();
diff --git a/cobalt/network/starboard/network_system.cc b/cobalt/network/starboard/network_system.cc
index a4ac78a..cdd32a1 100644
--- a/cobalt/network/starboard/network_system.cc
+++ b/cobalt/network/starboard/network_system.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/network/network_system.h"
 
+#include <memory>
+
 namespace cobalt {
 namespace network {
 
diff --git a/cobalt/network_bridge/net_poster.h b/cobalt/network_bridge/net_poster.h
index c09a9c7..cbccc5e 100644
--- a/cobalt/network_bridge/net_poster.h
+++ b/cobalt/network_bridge/net_poster.h
@@ -41,7 +41,8 @@
 };
 
 typedef base::Callback<void(const GURL& url, const std::string& content_type,
-                            const std::string& data)> PostSender;
+                            const std::string& data)>
+    PostSender;
 
 }  // namespace network_bridge
 }  // namespace cobalt
diff --git a/cobalt/overlay_info/qr_code_overlay.cc b/cobalt/overlay_info/qr_code_overlay.cc
index 2e7e1ff..c3a4901 100644
--- a/cobalt/overlay_info/qr_code_overlay.cc
+++ b/cobalt/overlay_info/qr_code_overlay.cc
@@ -16,6 +16,7 @@
 
 #include <algorithm>
 #include <string>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "base/logging.h"
diff --git a/cobalt/persistent_storage/persistent_settings.cc b/cobalt/persistent_storage/persistent_settings.cc
index ce64f97..52bc864 100644
--- a/cobalt/persistent_storage/persistent_settings.cc
+++ b/cobalt/persistent_storage/persistent_settings.cc
@@ -19,7 +19,6 @@
 
 #include "base/bind.h"
 #include "components/prefs/json_pref_store.h"
-#include "components/prefs/json_read_only_pref_store.h"
 #include "starboard/common/file.h"
 #include "starboard/common/log.h"
 #include "starboard/configuration_constants.h"
@@ -51,37 +50,23 @@
       std::string(storage_dir.data()) + kSbFileSepString + file_name;
   LOG(INFO) << "Persistent settings file path: " << persistent_settings_file_;
 
-  // Initialize pref_store_ with a JSONReadOnlyPrefStore, Used for
-  // synchronous PersistentSettings::Get calls made before the asynchronous
-  // InitializeWriteablePrefStore initializes pref_store_ with a writable
-  // instance.
-  {
-    base::AutoLock auto_lock(pref_store_lock_);
-    pref_store_ = base::MakeRefCounted<JsonReadOnlyPrefStore>(
-        base::FilePath(persistent_settings_file_));
-    pref_store_->ReadPrefs();
-  }
-
   message_loop()->task_runner()->PostTask(
-      FROM_HERE, base::Bind(&PersistentSettings::InitializeWriteablePrefStore,
+      FROM_HERE, base::Bind(&PersistentSettings::InitializePrefStore,
                             base::Unretained(this)));
+  pref_store_initialized_.Wait();
+  destruction_observer_added_.Wait();
 }
 
 PersistentSettings::~PersistentSettings() {
   DCHECK(message_loop());
   DCHECK(thread_.IsRunning());
 
-  // Ensure that the destruction observer got added and the pref store was
-  // initialized before stopping the thread. Stop the thread. This will cause
-  // the destruction observer to be notified.
-  writeable_pref_store_initialized_.Wait();
-  destruction_observer_added_.Wait();
   // Wait for all previously posted tasks to finish.
   thread_.message_loop()->task_runner()->WaitForFence();
   thread_.Stop();
 }
 
-void PersistentSettings::InitializeWriteablePrefStore() {
+void PersistentSettings::InitializePrefStore() {
   DCHECK_EQ(base::MessageLoop::current(), message_loop());
   // Register as a destruction observer to shut down the thread once all
   // pending tasks have been executed and the message loop is about to be
@@ -94,9 +79,7 @@
     pref_store_ = base::MakeRefCounted<JsonPrefStore>(
         base::FilePath(persistent_settings_file_));
     pref_store_->ReadPrefs();
-    // PersistentSettings Set and Remove Helper methods will now be able to
-    // access the pref_store_ initialized from the dedicated thread_.
-    writeable_pref_store_initialized_.Signal();
+    pref_store_initialized_.Signal();
   }
   validated_initial_settings_ = GetPersistentSettingAsBool(kValidated, false);
   if (!validated_initial_settings_) {
@@ -116,10 +99,9 @@
   DCHECK_EQ(base::MessageLoop::current(), message_loop());
   if (!validated_initial_settings_) {
     base::AutoLock auto_lock(pref_store_lock_);
-    writeable_pref_store()->SetValue(
-        kValidated, std::make_unique<base::Value>(true),
-        WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
-    writeable_pref_store()->CommitPendingWrite();
+    pref_store_->SetValue(kValidated, std::make_unique<base::Value>(true),
+                          WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
+    CommitPendingWrite(false);
     validated_initial_settings_ = true;
   }
 }
@@ -190,7 +172,7 @@
 
 void PersistentSettings::SetPersistentSetting(
     const std::string& key, std::unique_ptr<base::Value> value,
-    base::OnceClosure closure) {
+    base::OnceClosure closure, bool blocking) {
   if (key == kValidated) {
     LOG(ERROR) << "Cannot set protected persistent setting: " << key;
     return;
@@ -198,21 +180,20 @@
   message_loop()->task_runner()->PostTask(
       FROM_HERE, base::BindOnce(&PersistentSettings::SetPersistentSettingHelper,
                                 base::Unretained(this), key, std::move(value),
-                                std::move(closure)));
+                                std::move(closure), blocking));
 }
 
 void PersistentSettings::SetPersistentSettingHelper(
     const std::string& key, std::unique_ptr<base::Value> value,
-    base::OnceClosure closure) {
+    base::OnceClosure closure, bool blocking) {
   DCHECK_EQ(base::MessageLoop::current(), message_loop());
   if (validated_initial_settings_) {
     base::AutoLock auto_lock(pref_store_lock_);
-    writeable_pref_store()->SetValue(
-        kValidated, std::make_unique<base::Value>(false),
-        WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
-    writeable_pref_store()->SetValue(
-        key, std::move(value), WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
-    writeable_pref_store()->CommitPendingWrite();
+    pref_store_->SetValue(kValidated, std::make_unique<base::Value>(false),
+                          WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
+    pref_store_->SetValue(key, std::move(value),
+                          WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
+    CommitPendingWrite(blocking);
   } else {
     LOG(ERROR) << "Cannot set persistent setting while unvalidated: " << key;
   }
@@ -220,24 +201,24 @@
 }
 
 void PersistentSettings::RemovePersistentSetting(const std::string& key,
-                                                 base::OnceClosure closure) {
+                                                 base::OnceClosure closure,
+                                                 bool blocking) {
   message_loop()->task_runner()->PostTask(
       FROM_HERE,
       base::BindOnce(&PersistentSettings::RemovePersistentSettingHelper,
-                     base::Unretained(this), key, std::move(closure)));
+                     base::Unretained(this), key, std::move(closure),
+                     blocking));
 }
 
 void PersistentSettings::RemovePersistentSettingHelper(
-    const std::string& key, base::OnceClosure closure) {
+    const std::string& key, base::OnceClosure closure, bool blocking) {
   DCHECK_EQ(base::MessageLoop::current(), message_loop());
   if (validated_initial_settings_) {
     base::AutoLock auto_lock(pref_store_lock_);
-    writeable_pref_store()->SetValue(
-        kValidated, std::make_unique<base::Value>(false),
-        WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
-    writeable_pref_store()->RemoveValue(
-        key, WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
-    writeable_pref_store()->CommitPendingWrite();
+    pref_store_->SetValue(kValidated, std::make_unique<base::Value>(false),
+                          WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
+    pref_store_->RemoveValue(key, WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
+    CommitPendingWrite(blocking);
   } else {
     LOG(ERROR) << "Cannot remove persistent setting while unvalidated: " << key;
   }
@@ -257,12 +238,24 @@
   if (validated_initial_settings_) {
     starboard::SbFileDeleteRecursive(persistent_settings_file_.c_str(), true);
     base::AutoLock auto_lock(pref_store_lock_);
-    writeable_pref_store()->ReadPrefs();
+    pref_store_->ReadPrefs();
   } else {
     LOG(ERROR) << "Cannot delete persistent setting while unvalidated.";
   }
   std::move(closure).Run();
 }
 
+void PersistentSettings::CommitPendingWrite(bool blocking) {
+  if (blocking) {
+    base::WaitableEvent written;
+    pref_store_->CommitPendingWrite(
+        base::OnceClosure(),
+        base::BindOnce(&base::WaitableEvent::Signal, Unretained(&written)));
+    written.Wait();
+  } else {
+    pref_store_->CommitPendingWrite();
+  }
+}
+
 }  // namespace persistent_storage
 }  // namespace cobalt
diff --git a/cobalt/persistent_storage/persistent_settings.h b/cobalt/persistent_storage/persistent_settings.h
index 0cf789f..6c2c157 100644
--- a/cobalt/persistent_storage/persistent_settings.h
+++ b/cobalt/persistent_storage/persistent_settings.h
@@ -71,35 +71,34 @@
 
   void SetPersistentSetting(
       const std::string& key, std::unique_ptr<base::Value> value,
-      base::OnceClosure closure = std::move(base::DoNothing()));
+      base::OnceClosure closure = std::move(base::DoNothing()),
+      bool blocking = false);
 
   void RemovePersistentSetting(
       const std::string& key,
-      base::OnceClosure closure = std::move(base::DoNothing()));
+      base::OnceClosure closure = std::move(base::DoNothing()),
+      bool blocking = false);
 
   void DeletePersistentSettings(
       base::OnceClosure closure = std::move(base::DoNothing()));
 
  private:
   // Called by the constructor to initialize pref_store_ from
-  // the dedicated thread_ as a writeable JSONPrefStore.
-  void InitializeWriteablePrefStore();
+  // the dedicated thread_ as a JSONPrefStore.
+  void InitializePrefStore();
 
   void ValidatePersistentSettingsHelper();
 
   void SetPersistentSettingHelper(const std::string& key,
                                   std::unique_ptr<base::Value> value,
-                                  base::OnceClosure closure);
+                                  base::OnceClosure closure, bool blocking);
 
   void RemovePersistentSettingHelper(const std::string& key,
-                                     base::OnceClosure closure);
+                                     base::OnceClosure closure, bool blocking);
 
   void DeletePersistentSettingsHelper(base::OnceClosure closure);
 
-  scoped_refptr<PersistentPrefStore> writeable_pref_store() {
-    writeable_pref_store_initialized_.Wait();
-    return pref_store_;
-  }
+  void CommitPendingWrite(bool blocking);
 
   // Persistent settings file path.
   std::string persistent_settings_file_;
@@ -117,7 +116,7 @@
 
   // This event is used to signal when Initialize has been called and
   // pref_store_ mutations can now occur.
-  base::WaitableEvent writeable_pref_store_initialized_ = {
+  base::WaitableEvent pref_store_initialized_ = {
       base::WaitableEvent::ResetPolicy::MANUAL,
       base::WaitableEvent::InitialState::NOT_SIGNALED};
 
diff --git a/cobalt/persistent_storage/persistent_settings_test.cc b/cobalt/persistent_storage/persistent_settings_test.cc
index 3f88397..91b2bce 100644
--- a/cobalt/persistent_storage/persistent_settings_test.cc
+++ b/cobalt/persistent_storage/persistent_settings_test.cc
@@ -12,6 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/persistent_storage/persistent_settings.h"
+
 #include <utility>
 #include <vector>
 
@@ -20,9 +22,7 @@
 #include "base/callback_forward.h"
 #include "base/synchronization/waitable_event.h"
 #include "base/test/scoped_task_environment.h"
-#include "base/threading/platform_thread.h"
 #include "base/values.h"
-#include "cobalt/persistent_storage/persistent_settings.h"
 #include "starboard/common/file.h"
 #include "starboard/common/log.h"
 #include "starboard/configuration_constants.h"
@@ -81,13 +81,13 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsInt("key", true));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(4.2), std::move(closure));
+      "key", std::make_unique<base::Value>(4.2), std::move(closure), true);
   test_done_.Wait();
 }
 
@@ -99,32 +99,32 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(true), std::move(closure));
+      "key", std::make_unique<base::Value>(true), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_FALSE(
+        EXPECT_FALSE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_FALSE(
+        EXPECT_FALSE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(false), std::move(closure));
+      "key", std::make_unique<base::Value>(false), std::move(closure), true);
 
   test_done_.Wait();
 }
@@ -143,13 +143,13 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ(8, persistent_settings->GetPersistentSettingAsInt("key", 8));
+        EXPECT_EQ(8, persistent_settings->GetPersistentSettingAsInt("key", 8));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(4.2), std::move(closure));
+      "key", std::make_unique<base::Value>(4.2), std::move(closure), true);
   test_done_.Wait();
 }
 
@@ -161,36 +161,36 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ(-1, persistent_settings->GetPersistentSettingAsInt("key", 8));
+        EXPECT_EQ(-1, persistent_settings->GetPersistentSettingAsInt("key", 8));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(-1), std::move(closure));
+      "key", std::make_unique<base::Value>(-1), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ(0, persistent_settings->GetPersistentSettingAsInt("key", 8));
+        EXPECT_EQ(0, persistent_settings->GetPersistentSettingAsInt("key", 8));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(0), std::move(closure));
+      "key", std::make_unique<base::Value>(0), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ(42, persistent_settings->GetPersistentSettingAsInt("key", 8));
+        EXPECT_EQ(42, persistent_settings->GetPersistentSettingAsInt("key", 8));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(42), std::move(closure));
+      "key", std::make_unique<base::Value>(42), std::move(closure), true);
   test_done_.Wait();
 }
 
@@ -214,13 +214,13 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ("hello", persistent_settings->GetPersistentSettingAsString(
+        EXPECT_EQ("hello", persistent_settings->GetPersistentSettingAsString(
                                "key", "hello"));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(4.2), std::move(closure));
+      "key", std::make_unique<base::Value>(4.2), std::move(closure), true);
   test_done_.Wait();
 }
 
@@ -232,21 +232,21 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ("", persistent_settings->GetPersistentSettingAsString(
+        EXPECT_EQ("", persistent_settings->GetPersistentSettingAsString(
                           "key", "hello"));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(""), std::move(closure));
+      "key", std::make_unique<base::Value>(""), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ(
+        EXPECT_EQ(
             "hello there",
             persistent_settings->GetPersistentSettingAsString("key", "hello"));
         test_done->Signal();
@@ -254,46 +254,47 @@
       persistent_settings.get(), &test_done_);
 
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>("hello there"), std::move(closure));
+      "key", std::make_unique<base::Value>("hello there"), std::move(closure),
+      true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ("42", persistent_settings->GetPersistentSettingAsString(
+        EXPECT_EQ("42", persistent_settings->GetPersistentSettingAsString(
                             "key", "hello"));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>("42"), std::move(closure));
+      "key", std::make_unique<base::Value>("42"), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ("\n", persistent_settings->GetPersistentSettingAsString(
+        EXPECT_EQ("\n", persistent_settings->GetPersistentSettingAsString(
                             "key", "hello"));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>("\n"), std::move(closure));
+      "key", std::make_unique<base::Value>("\n"), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_EQ("\\n", persistent_settings->GetPersistentSettingAsString(
+        EXPECT_EQ("\\n", persistent_settings->GetPersistentSettingAsString(
                              "key", "hello"));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>("\\n"), std::move(closure));
+      "key", std::make_unique<base::Value>("\\n"), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 }
@@ -307,10 +308,10 @@
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
         auto test_list = persistent_settings->GetPersistentSettingAsList("key");
-        ASSERT_FALSE(test_list.empty());
-        ASSERT_EQ(1, test_list.size());
-        ASSERT_TRUE(test_list[0].is_string());
-        ASSERT_EQ("hello", test_list[0].GetString());
+        EXPECT_FALSE(test_list.empty());
+        EXPECT_EQ(1, test_list.size());
+        EXPECT_TRUE(test_list[0].is_string());
+        EXPECT_EQ("hello", test_list[0].GetString());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
@@ -318,7 +319,7 @@
   std::vector<base::Value> list;
   list.emplace_back("hello");
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(list), std::move(closure));
+      "key", std::make_unique<base::Value>(list), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
@@ -326,19 +327,19 @@
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
         auto test_list = persistent_settings->GetPersistentSettingAsList("key");
-        ASSERT_FALSE(test_list.empty());
-        ASSERT_EQ(2, test_list.size());
-        ASSERT_TRUE(test_list[0].is_string());
-        ASSERT_EQ("hello", test_list[0].GetString());
-        ASSERT_TRUE(test_list[1].is_string());
-        ASSERT_EQ("there", test_list[1].GetString());
+        EXPECT_FALSE(test_list.empty());
+        EXPECT_EQ(2, test_list.size());
+        EXPECT_TRUE(test_list[0].is_string());
+        EXPECT_EQ("hello", test_list[0].GetString());
+        EXPECT_TRUE(test_list[1].is_string());
+        EXPECT_EQ("there", test_list[1].GetString());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   list.emplace_back("there");
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(list), std::move(closure));
+      "key", std::make_unique<base::Value>(list), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
@@ -346,21 +347,21 @@
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
         auto test_list = persistent_settings->GetPersistentSettingAsList("key");
-        ASSERT_FALSE(test_list.empty());
-        ASSERT_EQ(3, test_list.size());
-        ASSERT_TRUE(test_list[0].is_string());
-        ASSERT_EQ("hello", test_list[0].GetString());
-        ASSERT_TRUE(test_list[1].is_string());
-        ASSERT_EQ("there", test_list[1].GetString());
-        ASSERT_TRUE(test_list[2].is_int());
-        ASSERT_EQ(42, test_list[2].GetInt());
+        EXPECT_FALSE(test_list.empty());
+        EXPECT_EQ(3, test_list.size());
+        EXPECT_TRUE(test_list[0].is_string());
+        EXPECT_EQ("hello", test_list[0].GetString());
+        EXPECT_TRUE(test_list[1].is_string());
+        EXPECT_EQ("there", test_list[1].GetString());
+        EXPECT_TRUE(test_list[2].is_int());
+        EXPECT_EQ(42, test_list[2].GetInt());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   list.emplace_back(42);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(list), std::move(closure));
+      "key", std::make_unique<base::Value>(list), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 }
@@ -375,10 +376,10 @@
          base::WaitableEvent* test_done) {
         auto test_dict =
             persistent_settings->GetPersistentSettingAsDictionary("key");
-        ASSERT_FALSE(test_dict.empty());
-        ASSERT_EQ(1, test_dict.size());
-        ASSERT_TRUE(test_dict["key_string"]->is_string());
-        ASSERT_EQ("hello", test_dict["key_string"]->GetString());
+        EXPECT_FALSE(test_dict.empty());
+        EXPECT_EQ(1, test_dict.size());
+        EXPECT_TRUE(test_dict["key_string"]->is_string());
+        EXPECT_EQ("hello", test_dict["key_string"]->GetString());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
@@ -386,7 +387,7 @@
   base::flat_map<std::string, std::unique_ptr<base::Value>> dict;
   dict.try_emplace("key_string", std::make_unique<base::Value>("hello"));
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(dict), std::move(closure));
+      "key", std::make_unique<base::Value>(dict), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
@@ -395,19 +396,19 @@
          base::WaitableEvent* test_done) {
         auto test_dict =
             persistent_settings->GetPersistentSettingAsDictionary("key");
-        ASSERT_FALSE(test_dict.empty());
-        ASSERT_EQ(2, test_dict.size());
-        ASSERT_TRUE(test_dict["key_string"]->is_string());
-        ASSERT_EQ("hello", test_dict["key_string"]->GetString());
-        ASSERT_TRUE(test_dict["key_int"]->is_int());
-        ASSERT_EQ(42, test_dict["key_int"]->GetInt());
+        EXPECT_FALSE(test_dict.empty());
+        EXPECT_EQ(2, test_dict.size());
+        EXPECT_TRUE(test_dict["key_string"]->is_string());
+        EXPECT_EQ("hello", test_dict["key_string"]->GetString());
+        EXPECT_TRUE(test_dict["key_int"]->is_int());
+        EXPECT_EQ(42, test_dict["key_int"]->GetInt());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
 
   dict.try_emplace("key_int", std::make_unique<base::Value>(42));
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(dict), std::move(closure));
+      "key", std::make_unique<base::Value>(dict), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 }
@@ -425,10 +426,10 @@
          base::WaitableEvent* test_done) {
         auto test_dict = persistent_settings->GetPersistentSettingAsDictionary(
             "http://127.0.0.1:45019/");
-        ASSERT_FALSE(test_dict.empty());
-        ASSERT_EQ(1, test_dict.size());
-        ASSERT_TRUE(test_dict["http://127.0.0.1:45019/"]->is_string());
-        ASSERT_EQ("Dictionary URL Key Works!",
+        EXPECT_FALSE(test_dict.empty());
+        EXPECT_EQ(1, test_dict.size());
+        EXPECT_TRUE(test_dict["http://127.0.0.1:45019/"]->is_string());
+        EXPECT_EQ("Dictionary URL Key Works!",
                   test_dict["http://127.0.0.1:45019/"]->GetString());
         test_done->Signal();
       },
@@ -441,7 +442,7 @@
                    std::make_unique<base::Value>("Dictionary URL Key Works!"));
   persistent_settings->SetPersistentSetting("http://127.0.0.1:45019/",
                                             std::make_unique<base::Value>(dict),
-                                            std::move(closure));
+                                            std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
@@ -450,12 +451,12 @@
          base::WaitableEvent* test_done) {
         auto test_dict = persistent_settings->GetPersistentSettingAsDictionary(
             "http://127.0.0.1:45019/");
-        ASSERT_TRUE(test_dict.empty());
+        EXPECT_TRUE(test_dict.empty());
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->RemovePersistentSetting("http://127.0.0.1:45019/",
-                                               std::move(closure));
+                                               std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 }
@@ -471,29 +472,29 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(true), std::move(closure));
+      "key", std::make_unique<base::Value>(true), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_FALSE(
+        EXPECT_FALSE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
-  persistent_settings->RemovePersistentSetting("key", std::move(closure));
+  persistent_settings->RemovePersistentSetting("key", std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 }
@@ -509,24 +510,24 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(true), std::move(closure));
+      "key", std::make_unique<base::Value>(true), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_FALSE(
+        EXPECT_FALSE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
@@ -547,22 +548,18 @@
   base::OnceClosure closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(true), std::move(closure));
+      "key", std::make_unique<base::Value>(true), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
-  // Sleep for one second to allow for the previous persistent_setting's
-  // JsonPrefStore instance time to write to disk before creating a new
-  // persistent_settings and JsonPrefStore instance.
-  base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
   persistent_settings =
       std::make_unique<PersistentSettings>(kPersistentSettingsJson);
   ASSERT_TRUE(persistent_settings->GetPersistentSettingAsBool("key", true));
@@ -571,15 +568,15 @@
   closure = base::BindOnce(
       [](PersistentSettings* persistent_settings,
          base::WaitableEvent* test_done) {
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", true));
-        ASSERT_TRUE(
+        EXPECT_TRUE(
             persistent_settings->GetPersistentSettingAsBool("key", false));
         test_done->Signal();
       },
       persistent_settings.get(), &test_done_);
   persistent_settings->SetPersistentSetting(
-      "key", std::make_unique<base::Value>(false), std::move(closure));
+      "key", std::make_unique<base::Value>(false), std::move(closure), true);
   test_done_.Wait();
   test_done_.Reset();
 
diff --git a/cobalt/render_tree/animations/animate_node.cc b/cobalt/render_tree/animations/animate_node.cc
index de2ae68..cad3bbc 100644
--- a/cobalt/render_tree/animations/animate_node.cc
+++ b/cobalt/render_tree/animations/animate_node.cc
@@ -15,6 +15,7 @@
 #include "cobalt/render_tree/animations/animate_node.h"
 
 #include <algorithm>
+#include <utility>
 
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/enable_if.h"
@@ -375,8 +376,7 @@
   return *(iterator_++);
 }
 
-void AnimateNode::BoundsVisitor::ApplyTransform(Node* node) {
-}
+void AnimateNode::BoundsVisitor::ApplyTransform(Node* node) {}
 
 void AnimateNode::BoundsVisitor::ApplyTransform(CompositionNode* node) {
   transform_ = transform_ * math::TranslateMatrix(node->data().offset().x(),
diff --git a/cobalt/render_tree/animations/animate_node_test.cc b/cobalt/render_tree/animations/animate_node_test.cc
index 79207f0..2d7f73d 100644
--- a/cobalt/render_tree/animations/animate_node_test.cc
+++ b/cobalt/render_tree/animations/animate_node_test.cc
@@ -12,15 +12,17 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/render_tree/animations/animate_node.h"
+
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/bind.h"
 #include "base/compiler_specific.h"
 #include "cobalt/math/rect_f.h"
 #include "cobalt/math/size_f.h"
 #include "cobalt/math/transform_2d.h"
-#include "cobalt/render_tree/animations/animate_node.h"
 #include "cobalt/render_tree/brush.h"
 #include "cobalt/render_tree/color_rgba.h"
 #include "cobalt/render_tree/composition_node.h"
@@ -32,15 +34,14 @@
 #include "cobalt/render_tree/node_visitor.h"
 #include "cobalt/render_tree/rect_node.h"
 #include "cobalt/render_tree/text_node.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 namespace cobalt {
 namespace render_tree {
 namespace animations {
 
-using ::cobalt::math::SizeF;
 using ::cobalt::math::RectF;
+using ::cobalt::math::SizeF;
 
 // Helper function to create an animation set for a render tree that consists
 // of only one animation targeting only one node in the render tree.
diff --git a/cobalt/render_tree/border.h b/cobalt/render_tree/border.h
index e24fec9..4e2dbc2 100644
--- a/cobalt/render_tree/border.h
+++ b/cobalt/render_tree/border.h
@@ -37,9 +37,7 @@
   bool operator==(const BorderSide& rhs) const {
     return style == rhs.style && color == rhs.color && width == rhs.width;
   }
-  bool operator!=(const BorderSide& rhs) const {
-    return !(*this == rhs);
-  }
+  bool operator!=(const BorderSide& rhs) const { return !(*this == rhs); }
 
   float width;
   BorderStyle style;
diff --git a/cobalt/render_tree/child_iterator.h b/cobalt/render_tree/child_iterator.h
index f0dc58f..7844ee2 100644
--- a/cobalt/render_tree/child_iterator.h
+++ b/cobalt/render_tree/child_iterator.h
@@ -162,8 +162,7 @@
   explicit ChildIterator(
       FilterNode* filter,
       ChildIteratorDirection direction = kChildIteratorDirectionForwards)
-      : filter_node_(filter), source_(filter->data().source.get()) {
-  }
+      : filter_node_(filter), source_(filter->data().source.get()) {}
 
   Node* GetCurrent() const { return source_; }
   void Next() { source_ = NULL; }
@@ -196,8 +195,7 @@
       MatrixTransform3DNode* matrix_transform_3d,
       ChildIteratorDirection direction = kChildIteratorDirectionForwards)
       : matrix_transform_3d_node_(matrix_transform_3d),
-        source_(matrix_transform_3d->data().source.get()) {
-  }
+        source_(matrix_transform_3d->data().source.get()) {}
 
   Node* GetCurrent() const { return source_; }
   void Next() { source_ = NULL; }
@@ -230,8 +228,7 @@
       MatrixTransformNode* matrix_transform,
       ChildIteratorDirection direction = kChildIteratorDirectionForwards)
       : matrix_transform_node_(matrix_transform),
-        source_(matrix_transform->data().source.get()) {
-  }
+        source_(matrix_transform->data().source.get()) {}
 
   Node* GetCurrent() const { return source_; }
   void Next() { source_ = NULL; }
diff --git a/cobalt/render_tree/clear_rect_node.h b/cobalt/render_tree/clear_rect_node.h
index 2b7ac36..9d93eb3 100644
--- a/cobalt/render_tree/clear_rect_node.h
+++ b/cobalt/render_tree/clear_rect_node.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDER_TREE_CLEAR_RECT_NODE_H_
 #define COBALT_RENDER_TREE_CLEAR_RECT_NODE_H_
 
+#include <utility>
+
 #include "base/compiler_specific.h"
 #include "cobalt/base/type_id.h"
 #include "cobalt/math/rect_f.h"
@@ -47,7 +49,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Us>
-  ClearRectNode(Us&&... args) : data_(std::forward<Us>(args)...) {}
+  ClearRectNode(Us&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Us>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override { return data_.rect; }
diff --git a/cobalt/render_tree/composition_node.h b/cobalt/render_tree/composition_node.h
index 4d71a8c..b02e5a5 100644
--- a/cobalt/render_tree/composition_node.h
+++ b/cobalt/render_tree/composition_node.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDER_TREE_COMPOSITION_NODE_H_
 
 #include <algorithm>
+#include <utility>
 #include <vector>
 
 #include "base/compiler_specific.h"
diff --git a/cobalt/render_tree/filter_node.cc b/cobalt/render_tree/filter_node.cc
index 6ec57a3..14d284e 100644
--- a/cobalt/render_tree/filter_node.cc
+++ b/cobalt/render_tree/filter_node.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/render_tree/filter_node.h"
+
 #include "cobalt/render_tree/node_visitor.h"
 
 namespace cobalt {
diff --git a/cobalt/render_tree/filter_node.h b/cobalt/render_tree/filter_node.h
index b2914c7..72c6525 100644
--- a/cobalt/render_tree/filter_node.h
+++ b/cobalt/render_tree/filter_node.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDER_TREE_FILTER_NODE_H_
 #define COBALT_RENDER_TREE_FILTER_NODE_H_
 
+#include <utility>
+
 #include "base/compiler_specific.h"
 #include "base/logging.h"
 #include "base/optional.h"
@@ -85,7 +87,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  FilterNode(Args&&... args) : data_(std::forward<Args>(args)...) {
+  FilterNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {
     if (DCHECK_IS_ON()) {
       AssertValid();
     }
diff --git a/cobalt/render_tree/image_node.h b/cobalt/render_tree/image_node.h
index 169bbd3..59af989 100644
--- a/cobalt/render_tree/image_node.h
+++ b/cobalt/render_tree/image_node.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDER_TREE_IMAGE_NODE_H_
 #define COBALT_RENDER_TREE_IMAGE_NODE_H_
 
+#include <utility>
+
 #include "base/compiler_specific.h"
 #include "cobalt/base/type_id.h"
 #include "cobalt/math/matrix3_f.h"
@@ -53,7 +55,7 @@
              local_transform == other.local_transform;
     }
 
-    // A source of pixels. May be smaller or larger than layed out image.
+    // A source of pixels. May be smaller or larger than laid out image.
     // The class does not own the image, it merely refers it from a resource
     // pool.
     scoped_refptr<Image> source;
@@ -72,7 +74,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  ImageNode(Args&&... args) : data_(std::forward<Args>(args)...) {}
+  ImageNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override;
diff --git a/cobalt/render_tree/lottie_node.h b/cobalt/render_tree/lottie_node.h
index c7dc889..840558b 100644
--- a/cobalt/render_tree/lottie_node.h
+++ b/cobalt/render_tree/lottie_node.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDER_TREE_LOTTIE_NODE_H_
 #define COBALT_RENDER_TREE_LOTTIE_NODE_H_
 
+#include <utility>
+
 #include "base/compiler_specific.h"
 #include "cobalt/base/type_id.h"
 #include "cobalt/math/rect_f.h"
@@ -51,7 +53,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  LottieNode(Args&&... args) : data_(std::forward<Args>(args)...) {}
+  LottieNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override;
diff --git a/cobalt/render_tree/matrix_transform_3d_node.h b/cobalt/render_tree/matrix_transform_3d_node.h
index 607b5ea..0ba97b1 100644
--- a/cobalt/render_tree/matrix_transform_3d_node.h
+++ b/cobalt/render_tree/matrix_transform_3d_node.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDER_TREE_MATRIX_TRANSFORM_3D_NODE_H_
 
 #include <algorithm>
+#include <utility>
 #include <vector>
 
 #include "base/compiler_specific.h"
@@ -52,7 +53,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  MatrixTransform3DNode(Args&&... args) : data_(std::forward<Args>(args)...) {}
+  MatrixTransform3DNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override;
diff --git a/cobalt/render_tree/matrix_transform_node.h b/cobalt/render_tree/matrix_transform_node.h
index 68dcff3..a2672ec 100644
--- a/cobalt/render_tree/matrix_transform_node.h
+++ b/cobalt/render_tree/matrix_transform_node.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDER_TREE_MATRIX_TRANSFORM_NODE_H_
 
 #include <algorithm>
+#include <utility>
 #include <vector>
 
 #include "base/compiler_specific.h"
@@ -49,7 +50,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  MatrixTransformNode(Args&&... args) : data_(std::forward<Args>(args)...) {}
+  MatrixTransformNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override;
diff --git a/cobalt/render_tree/mock_resource_provider.h b/cobalt/render_tree/mock_resource_provider.h
index 3825a9a..0c8791a 100644
--- a/cobalt/render_tree/mock_resource_provider.h
+++ b/cobalt/render_tree/mock_resource_provider.h
@@ -28,7 +28,6 @@
 #include "cobalt/render_tree/node.h"
 #include "cobalt/render_tree/resource_provider.h"
 #include "cobalt/render_tree/typeface.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
diff --git a/cobalt/render_tree/node.cc b/cobalt/render_tree/node.cc
index 92a20a9..1463d87 100644
--- a/cobalt/render_tree/node.cc
+++ b/cobalt/render_tree/node.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/render_tree/node.h"
+
 #include "starboard/atomic.h"
 
 namespace cobalt {
diff --git a/cobalt/render_tree/node_visitor_test.cc b/cobalt/render_tree/node_visitor_test.cc
index 184970c..9b445ca 100644
--- a/cobalt/render_tree/node_visitor_test.cc
+++ b/cobalt/render_tree/node_visitor_test.cc
@@ -37,11 +37,10 @@
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
-using cobalt::render_tree::animations::AnimateNode;
 using cobalt::render_tree::Brush;
 using cobalt::render_tree::BrushVisitor;
-using cobalt::render_tree::ColorRGBA;
 using cobalt::render_tree::ClearRectNode;
+using cobalt::render_tree::ColorRGBA;
 using cobalt::render_tree::CompositionNode;
 using cobalt::render_tree::FilterNode;
 using cobalt::render_tree::Font;
@@ -58,6 +57,7 @@
 using cobalt::render_tree::RectNode;
 using cobalt::render_tree::RectShadowNode;
 using cobalt::render_tree::TextNode;
+using cobalt::render_tree::animations::AnimateNode;
 
 class MockNodeVisitor : public NodeVisitor {
  public:
diff --git a/cobalt/render_tree/rect_node.cc b/cobalt/render_tree/rect_node.cc
index 1dbb094..d2b3c59 100644
--- a/cobalt/render_tree/rect_node.cc
+++ b/cobalt/render_tree/rect_node.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/render_tree/rect_node.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/render_tree/brush_visitor.h"
 #include "cobalt/render_tree/node_visitor.h"
 
diff --git a/cobalt/render_tree/rect_node.h b/cobalt/render_tree/rect_node.h
index c72072d..e3ca454 100644
--- a/cobalt/render_tree/rect_node.h
+++ b/cobalt/render_tree/rect_node.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDER_TREE_RECT_NODE_H_
 
 #include <memory>
+#include <utility>
 
 #include "base/compiler_specific.h"
 #include "base/logging.h"
@@ -73,7 +74,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  RectNode(Args&&... args) : data_(std::forward<Args>(args)...) {
+  RectNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {
     if (DCHECK_IS_ON()) {
       AssertValid();
     }
diff --git a/cobalt/render_tree/rect_shadow_node.h b/cobalt/render_tree/rect_shadow_node.h
index 3a4342a..21ff32b 100644
--- a/cobalt/render_tree/rect_shadow_node.h
+++ b/cobalt/render_tree/rect_shadow_node.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDER_TREE_RECT_SHADOW_NODE_H_
 #define COBALT_RENDER_TREE_RECT_SHADOW_NODE_H_
 
+#include <utility>
+
 #include "base/compiler_specific.h"
 #include "base/logging.h"
 #include "base/optional.h"
@@ -69,7 +71,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  RectShadowNode(Args&&... args) : data_(std::forward<Args>(args)...) {
+  RectShadowNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {
     if (DCHECK_IS_ON()) {
       AssertValid();
     }
diff --git a/cobalt/render_tree/resource_provider_stub.h b/cobalt/render_tree/resource_provider_stub.h
index 43ad4e8..9ea6c58 100644
--- a/cobalt/render_tree/resource_provider_stub.h
+++ b/cobalt/render_tree/resource_provider_stub.h
@@ -17,6 +17,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/memory/aligned_memory.h"
@@ -257,13 +258,9 @@
 
   void Finish() override {}
 
-  bool PixelFormatSupported(PixelFormat pixel_format) override {
-    return true;
-  }
+  bool PixelFormatSupported(PixelFormat pixel_format) override { return true; }
 
-  bool AlphaFormatSupported(AlphaFormat alpha_format) override {
-    return true;
-  }
+  bool AlphaFormatSupported(AlphaFormat alpha_format) override { return true; }
 
   std::unique_ptr<ImageData> AllocateImageData(
       const math::Size& size, PixelFormat pixel_format,
diff --git a/cobalt/render_tree/testing/mock_image.h b/cobalt/render_tree/testing/mock_image.h
index 696578b..759d37d 100644
--- a/cobalt/render_tree/testing/mock_image.h
+++ b/cobalt/render_tree/testing/mock_image.h
@@ -16,7 +16,6 @@
 #define COBALT_RENDER_TREE_TESTING_MOCK_IMAGE_H_
 
 #include "cobalt/render_tree/image.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 
 namespace cobalt {
diff --git a/cobalt/render_tree/text_node.h b/cobalt/render_tree/text_node.h
index dc6b1f8..1337b8f 100644
--- a/cobalt/render_tree/text_node.h
+++ b/cobalt/render_tree/text_node.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDER_TREE_TEXT_NODE_H_
 
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/compiler_specific.h"
@@ -67,7 +68,8 @@
 
   // Forwarding constructor to the set of Builder constructors.
   template <typename... Args>
-  TextNode(Args&&... args) : data_(std::forward<Args>(args)...) {}
+  TextNode(Args&&... args)  // NOLINT(runtime/explicit)
+      : data_(std::forward<Args>(args)...) {}
 
   void Accept(NodeVisitor* visitor) override;
   math::RectF GetBounds() const override;
diff --git a/cobalt/renderer/BUILD.gn b/cobalt/renderer/BUILD.gn
index 2b4ac9d..65e58da 100644
--- a/cobalt/renderer/BUILD.gn
+++ b/cobalt/renderer/BUILD.gn
@@ -65,7 +65,6 @@
     "//cobalt/renderer/rasterizer/skia:software_rasterizer",
     "//cobalt/system_window",
     "//cobalt/watchdog",
-    "//nb",
     "//starboard:starboard_headers_only",
   ]
 
diff --git a/cobalt/renderer/animations_test.cc b/cobalt/renderer/animations_test.cc
index 891158f..4389e07 100644
--- a/cobalt/renderer/animations_test.cc
+++ b/cobalt/renderer/animations_test.cc
@@ -27,13 +27,12 @@
 #include "cobalt/renderer/pipeline.h"
 #include "cobalt/renderer/renderer_module.h"
 #include "cobalt/renderer/submission.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
-using cobalt::render_tree::animations::AnimateNode;
 using cobalt::render_tree::Image;
 using cobalt::render_tree::ImageNode;
 using cobalt::render_tree::ResourceProvider;
+using cobalt::render_tree::animations::AnimateNode;
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/backend/egl/display.cc b/cobalt/renderer/backend/egl/display.cc
index e9398cc..2b1e042 100644
--- a/cobalt/renderer/backend/egl/display.cc
+++ b/cobalt/renderer/backend/egl/display.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/backend/egl/display.h"
 
 #include "cobalt/configuration/configuration.h"
 #include "cobalt/renderer/backend/egl/render_target.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/backend/egl/framebuffer.cc b/cobalt/renderer/backend/egl/framebuffer.cc
index 6348e81..ce4b619 100644
--- a/cobalt/renderer/backend/egl/framebuffer.cc
+++ b/cobalt/renderer/backend/egl/framebuffer.cc
@@ -12,8 +12,6 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/backend/egl/framebuffer.h"
 
 #include "base/logging.h"
@@ -21,6 +19,7 @@
 #include "cobalt/renderer/backend/egl/texture.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/backend/egl/framebuffer_render_target.h b/cobalt/renderer/backend/egl/framebuffer_render_target.h
index 700738c..f2fc22c 100644
--- a/cobalt/renderer/backend/egl/framebuffer_render_target.h
+++ b/cobalt/renderer/backend/egl/framebuffer_render_target.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDERER_BACKEND_EGL_FRAMEBUFFER_RENDER_TARGET_H_
 
 #include <memory>
+
 #include "cobalt/math/size.h"
 #include "cobalt/renderer/backend/egl/framebuffer.h"
 #include "cobalt/renderer/backend/egl/render_target.h"
@@ -49,9 +50,7 @@
   }
 
   // Get the color texture attachment of the framebuffer.
-  TextureEGL* GetColorTexture() const {
-    return framebuffer_.GetColorTexture();
-  }
+  TextureEGL* GetColorTexture() const { return framebuffer_.GetColorTexture(); }
 
   bool CreationError() override { return framebuffer_.CreationError(); }
 
diff --git a/cobalt/renderer/backend/egl/graphics_system.cc b/cobalt/renderer/backend/egl/graphics_system.cc
index f4ed70a..cc35c7a 100644
--- a/cobalt/renderer/backend/egl/graphics_system.cc
+++ b/cobalt/renderer/backend/egl/graphics_system.cc
@@ -200,7 +200,6 @@
 }
 
 GraphicsSystemEGL::~GraphicsSystemEGL() {
-  LOG(INFO) << "GraphicsSystemEGL::~GraphicsSystemEGL()";
   if (window_surface_ != EGL_NO_SURFACE) {
     EGL_CALL_SIMPLE(eglDestroySurface(display_, window_surface_));
   }
@@ -208,7 +207,6 @@
   EGL_CALL_SIMPLE(eglTerminate(display_));
   EGLint result = EGL_CALL_SIMPLE(eglGetError());
   if (result != EGL_SUCCESS) LOG(INFO) << "eglTerminate returned " << result;
-  LOG(INFO) << "GraphicsSystemEGL::~GraphicsSystemEGL() done";
 }
 
 std::unique_ptr<Display> GraphicsSystemEGL::CreateDisplay(
diff --git a/cobalt/renderer/backend/egl/pbuffer_render_target.cc b/cobalt/renderer/backend/egl/pbuffer_render_target.cc
index 43c2499..bb8ddc8 100644
--- a/cobalt/renderer/backend/egl/pbuffer_render_target.cc
+++ b/cobalt/renderer/backend/egl/pbuffer_render_target.cc
@@ -12,12 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/backend/egl/pbuffer_render_target.h"
 
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/backend/egl/pbuffer_render_target.h b/cobalt/renderer/backend/egl/pbuffer_render_target.h
index 2e73068..f5b2334 100644
--- a/cobalt/renderer/backend/egl/pbuffer_render_target.h
+++ b/cobalt/renderer/backend/egl/pbuffer_render_target.h
@@ -27,8 +27,8 @@
 // (Pixel Buffer Object) which can be used as an offscreen rendering target.
 class PBufferRenderTargetEGL : public RenderTargetEGL {
  public:
-  PBufferRenderTargetEGL(
-      EGLDisplay display, EGLConfig config, const math::Size& dimensions);
+  PBufferRenderTargetEGL(EGLDisplay display, EGLConfig config,
+                         const math::Size& dimensions);
 
   const math::Size& GetSize() const override;
 
diff --git a/cobalt/renderer/backend/egl/texture.h b/cobalt/renderer/backend/egl/texture.h
index 7fe1ad2..87ff058 100644
--- a/cobalt/renderer/backend/egl/texture.h
+++ b/cobalt/renderer/backend/egl/texture.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDERER_BACKEND_EGL_TEXTURE_H_
 
 #include <memory>
+
 #include "base/callback.h"
 #include "cobalt/renderer/backend/egl/render_target.h"
 #include "cobalt/renderer/backend/egl/texture_data.h"
diff --git a/cobalt/renderer/backend/egl/texture_data.cc b/cobalt/renderer/backend/egl/texture_data.cc
index 3804155..d6c8f63 100644
--- a/cobalt/renderer/backend/egl/texture_data.cc
+++ b/cobalt/renderer/backend/egl/texture_data.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/backend/egl/texture_data.h"
+
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/backend/egl/texture_data.h b/cobalt/renderer/backend/egl/texture_data.h
index 9f50a70..0b7bcbf 100644
--- a/cobalt/renderer/backend/egl/texture_data.h
+++ b/cobalt/renderer/backend/egl/texture_data.h
@@ -16,6 +16,8 @@
 #define COBALT_RENDERER_BACKEND_EGL_TEXTURE_DATA_H_
 
 #include <memory>
+#include <utility>
+
 #include "base/memory/ref_counted.h"
 #include "cobalt/math/size.h"
 #include "cobalt/renderer/egl_and_gles.h"
diff --git a/cobalt/renderer/backend/egl/texture_data_cpu.cc b/cobalt/renderer/backend/egl/texture_data_cpu.cc
index 4dfbdf6..7bf9189 100644
--- a/cobalt/renderer/backend/egl/texture_data_cpu.cc
+++ b/cobalt/renderer/backend/egl/texture_data_cpu.cc
@@ -15,6 +15,7 @@
 #include "cobalt/renderer/backend/egl/texture_data_cpu.h"
 
 #include <memory>
+
 #include "base/memory/aligned_memory.h"
 #include "cobalt/renderer/backend/egl/graphics_context.h"
 #include "cobalt/renderer/backend/egl/utils.h"
diff --git a/cobalt/renderer/backend/egl/texture_data_cpu.h b/cobalt/renderer/backend/egl/texture_data_cpu.h
index d5bef9b..d7d35bf 100644
--- a/cobalt/renderer/backend/egl/texture_data_cpu.h
+++ b/cobalt/renderer/backend/egl/texture_data_cpu.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_RENDERER_BACKEND_EGL_TEXTURE_DATA_CPU_H_
 #define COBALT_RENDERER_BACKEND_EGL_TEXTURE_DATA_CPU_H_
 
+#include <memory>
+
 #include "base/memory/aligned_memory.h"
 #include "cobalt/renderer/backend/egl/texture_data.h"
 #include "cobalt/renderer/backend/egl/utils.h"
diff --git a/cobalt/renderer/backend/egl/utils.cc b/cobalt/renderer/backend/egl/utils.cc
index fe50838..3f23ec3 100644
--- a/cobalt/renderer/backend/egl/utils.cc
+++ b/cobalt/renderer/backend/egl/utils.cc
@@ -12,11 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/backend/egl/utils.h"
 
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
@@ -26,7 +25,9 @@
                               EGLContext share_context) {
   // Create an OpenGL ES 3.0 context.
   EGLint context_attrib_list[] = {
-      EGL_CONTEXT_CLIENT_VERSION, 3, EGL_NONE,
+      EGL_CONTEXT_CLIENT_VERSION,
+      3,
+      EGL_NONE,
   };
   EGLContext context = EGL_CALL_SIMPLE(
       eglCreateContext(display, config, share_context, context_attrib_list));
@@ -38,7 +39,9 @@
     // as EGL_CONTEXT_CLIENT_VERSION.  Thus, this fallback code exists to
     // facilitate those platforms.
     EGLint context_attrib_list_gles2[] = {
-        EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE,
+        EGL_CONTEXT_CLIENT_VERSION,
+        2,
+        EGL_NONE,
     };
     context = EGL_CALL_SIMPLE(eglCreateContext(display, config, share_context,
                                                context_attrib_list_gles2));
diff --git a/cobalt/renderer/backend/graphics_system_test.cc b/cobalt/renderer/backend/graphics_system_test.cc
index 06514a4..eedee79 100644
--- a/cobalt/renderer/backend/graphics_system_test.cc
+++ b/cobalt/renderer/backend/graphics_system_test.cc
@@ -12,13 +12,14 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/backend/graphics_system.h"
+
 #include <algorithm>
 #include <memory>
 
 #include "base/optional.h"
 #include "cobalt/renderer/backend/default_graphics_system.h"
 #include "cobalt/renderer/backend/graphics_context.h"
-#include "cobalt/renderer/backend/graphics_system.h"
 #include "starboard/log.h"
 #include "starboard/time.h"
 #include "testing/gtest/include/gtest/gtest.h"
@@ -91,8 +92,8 @@
     graphics_context.reset();
     graphics_system.reset();
   }
-  SbTimeMonotonic time_per_initialization = kSbTimeMillisecond +
-      (SbTimeGetMonotonicNow() - start) / kReferenceCount;
+  SbTimeMonotonic time_per_initialization =
+      kSbTimeMillisecond + (SbTimeGetMonotonicNow() - start) / kReferenceCount;
   SB_LOG(INFO) << "Measured duration "
                << time_per_initialization / kSbTimeMillisecond
                << "ms per initialization.";
diff --git a/cobalt/renderer/backend/starboard/default_graphics_system.cc b/cobalt/renderer/backend/starboard/default_graphics_system.cc
index 8ce9d35..51edeb9 100644
--- a/cobalt/renderer/backend/starboard/default_graphics_system.cc
+++ b/cobalt/renderer/backend/starboard/default_graphics_system.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/backend/default_graphics_system.h"
+
 #include <memory>
 #include <string>
 
-#include "cobalt/renderer/backend/default_graphics_system.h"
-
 #include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/configuration/configuration.h"
 #include "cobalt/renderer/backend/egl/graphics_system.h"
diff --git a/cobalt/renderer/backend/starboard/default_graphics_system_egl.cc b/cobalt/renderer/backend/starboard/default_graphics_system_egl.cc
index 7a9d502..ef01417 100644
--- a/cobalt/renderer/backend/starboard/default_graphics_system_egl.cc
+++ b/cobalt/renderer/backend/starboard/default_graphics_system_egl.cc
@@ -15,7 +15,6 @@
 #include <memory>
 
 #include "cobalt/renderer/backend/default_graphics_system.h"
-
 #include "cobalt/renderer/backend/egl/graphics_system.h"
 #include "cobalt/system_window/system_window.h"
 
diff --git a/cobalt/renderer/backend/texture_stub.h b/cobalt/renderer/backend/texture_stub.h
index 8633664..991a469 100644
--- a/cobalt/renderer/backend/texture_stub.h
+++ b/cobalt/renderer/backend/texture_stub.h
@@ -29,8 +29,8 @@
 // Maintains a scoped array of texture data.
 class TextureDataStub : public TextureData {
  public:
-  explicit TextureDataStub(const SurfaceInfo& surface_info) :
-      pixel_data_(new PixelDataStub(surface_info)) {}
+  explicit TextureDataStub(const SurfaceInfo& surface_info)
+      : pixel_data_(new PixelDataStub(surface_info)) {}
 
   const SurfaceInfo& GetSurfaceInfo() const override {
     return pixel_data_->surface_info();
@@ -95,9 +95,7 @@
     return pixel_data_->surface_info();
   }
 
-  const scoped_refptr<PixelDataStub>& pixel_data() const {
-    return pixel_data_;
-  }
+  const scoped_refptr<PixelDataStub>& pixel_data() const { return pixel_data_; }
 
   Origin GetOrigin() const override { return kBottomLeft; }
 
diff --git a/cobalt/renderer/fps_overlay.cc b/cobalt/renderer/fps_overlay.cc
index 26696c4..361cdbf 100644
--- a/cobalt/renderer/fps_overlay.cc
+++ b/cobalt/renderer/fps_overlay.cc
@@ -16,6 +16,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "base/strings/stringprintf.h"
diff --git a/cobalt/renderer/get_default_rasterizer_for_platform.cc b/cobalt/renderer/get_default_rasterizer_for_platform.cc
index 52c0cb0..863a1da 100644
--- a/cobalt/renderer/get_default_rasterizer_for_platform.cc
+++ b/cobalt/renderer/get_default_rasterizer_for_platform.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/get_default_rasterizer_for_platform.h"
 
+#include <memory>
+
 #include "cobalt/configuration/configuration.h"
 #include "cobalt/renderer/backend/graphics_context.h"
 #include "cobalt/renderer/rasterizer/egl/hardware_rasterizer.h"
diff --git a/cobalt/renderer/pipeline.cc b/cobalt/renderer/pipeline.cc
index 1b27cbf..9e83edf 100644
--- a/cobalt/renderer/pipeline.cc
+++ b/cobalt/renderer/pipeline.cc
@@ -29,7 +29,6 @@
 #include "cobalt/render_tree/composition_node.h"
 #include "cobalt/render_tree/dump_render_tree_to_string.h"
 #include "cobalt/watchdog/watchdog.h"
-#include "nb/memory_scope.h"
 #include "starboard/extension/graphics.h"
 #include "starboard/system.h"
 
@@ -272,7 +271,6 @@
     const scoped_refptr<render_tree::Node>& render_tree_root,
     const base::Optional<math::Rect>& clip_rect,
     const RasterizationCompleteCallback& complete) {
-  TRACK_MEMORY_SCOPE("Renderer");
   TRACE_EVENT0("cobalt::renderer", "Pipeline::RasterizeToRGBAPixels()");
 
   if (base::MessageLoop::current() != rasterizer_thread_.message_loop()) {
@@ -311,7 +309,6 @@
 }
 
 void Pipeline::TimeFence(base::TimeDelta time_fence) {
-  TRACK_MEMORY_SCOPE("Renderer");
   TRACE_EVENT0("cobalt::renderer", "Pipeline::TimeFence()");
 
   if (base::MessageLoop::current() != rasterizer_thread_.message_loop()) {
@@ -397,7 +394,6 @@
 }
 
 void Pipeline::RasterizeCurrentTree() {
-  TRACK_MEMORY_SCOPE("Renderer");
   DCHECK_CALLED_ON_VALID_THREAD(rasterizer_thread_checker_);
   TRACE_EVENT0("cobalt::renderer", "Pipeline::RasterizeCurrentTree()");
 
@@ -803,7 +799,6 @@
 }
 
 void Pipeline::ResetSubmissionQueue() {
-  TRACK_MEMORY_SCOPE("Renderer");
   TRACE_EVENT0("cobalt::renderer", "Pipeline::ResetSubmissionQueue()");
   submission_queue_ = base::nullopt;
   submission_queue_.emplace(
@@ -816,7 +811,6 @@
 
 void Pipeline::QueueSubmission(const Submission& submission,
                                base::TimeTicks receipt_time) {
-  TRACK_MEMORY_SCOPE("Renderer");
   TRACE_EVENT0("cobalt::renderer", "Pipeline::QueueSubmission()");
   // Upon each submission, check if the timeline has changed.  If it has,
   // reset our submission queue (possibly with a new configuration specified
diff --git a/cobalt/renderer/pipeline_test.cc b/cobalt/renderer/pipeline_test.cc
index a5fc24e..08e83db 100644
--- a/cobalt/renderer/pipeline_test.cc
+++ b/cobalt/renderer/pipeline_test.cc
@@ -12,6 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/pipeline.h"
+
 #include <cmath>
 #include <memory>
 
@@ -19,16 +21,15 @@
 #include "base/threading/platform_thread.h"
 #include "cobalt/render_tree/composition_node.h"
 #include "cobalt/render_tree/resource_provider_stub.h"
-#include "cobalt/renderer/pipeline.h"
 #include "cobalt/renderer/rasterizer/rasterizer.h"
 #include "cobalt/renderer/submission.h"
 #include "testing/gmock/include/gmock/gmock.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
-using ::testing::Between;
-using ::testing::_;
 using cobalt::renderer::Pipeline;
 using cobalt::renderer::rasterizer::Rasterizer;
+using ::testing::_;
+using ::testing::Between;
 
 namespace {
 // We explicitly state here how long our mock rasterizer will take to complete
@@ -39,7 +40,7 @@
 
 class MockResourceProvider : public cobalt::render_tree::ResourceProviderStub {
  public:
-  MockResourceProvider() : fonts_loaded_(false){};
+  MockResourceProvider() : fonts_loaded_(false) {}
   ~MockResourceProvider() override {}
   void LoadAdditionalFonts() override { fonts_loaded_ = true; }
   bool fonts_loaded_;
diff --git a/cobalt/renderer/rasterizer/benchmark.cc b/cobalt/renderer/rasterizer/benchmark.cc
index b2f271a..5173e1a 100644
--- a/cobalt/renderer/rasterizer/benchmark.cc
+++ b/cobalt/renderer/rasterizer/benchmark.cc
@@ -12,6 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/trace_event/benchmark.h"
+
 #include <memory>
 
 #include "cobalt/base/polymorphic_downcast.h"
@@ -24,23 +26,22 @@
 #include "cobalt/renderer/renderer_module.h"
 #include "cobalt/renderer/test/scenes/all_scenes_combined_scene.h"
 #include "cobalt/system_window/system_window.h"
-#include "cobalt/trace_event/benchmark.h"
 
 using cobalt::math::Size;
 using cobalt::math::SizeF;
 using cobalt::render_tree::AlphaFormat;
-using cobalt::render_tree::animations::AnimateNode;
 using cobalt::render_tree::ImageData;
 using cobalt::render_tree::Node;
 using cobalt::render_tree::PixelFormat;
 using cobalt::render_tree::ResourceProvider;
+using cobalt::render_tree::animations::AnimateNode;
+using cobalt::renderer::RendererModule;
 using cobalt::renderer::backend::Display;
 using cobalt::renderer::backend::GraphicsContext;
 using cobalt::renderer::backend::GraphicsSystem;
 using cobalt::renderer::backend::RenderTarget;
 using cobalt::renderer::backend::SurfaceInfo;
 using cobalt::renderer::rasterizer::Rasterizer;
-using cobalt::renderer::RendererModule;
 using cobalt::renderer::test::scenes::AddBlankBackgroundToScene;
 using cobalt::renderer::test::scenes::CreateAllScenesCombinedScene;
 using cobalt::system_window::SystemWindow;
diff --git a/cobalt/renderer/rasterizer/common/offscreen_render_coordinate_mapping.cc b/cobalt/renderer/rasterizer/common/offscreen_render_coordinate_mapping.cc
index f98f8ee..126f27a 100644
--- a/cobalt/renderer/rasterizer/common/offscreen_render_coordinate_mapping.cc
+++ b/cobalt/renderer/rasterizer/common/offscreen_render_coordinate_mapping.cc
@@ -24,10 +24,10 @@
 using math::Matrix3F;
 using math::Rect;
 using math::RectF;
+using math::ScaleMatrix;
+using math::TranslateMatrix;
 using math::Vector2dF;
 using math::Vector3dF;
-using math::TranslateMatrix;
-using math::ScaleMatrix;
 
 namespace {
 float GetFractionalComponent(float value) { return value - std::floor(value); }
diff --git a/cobalt/renderer/rasterizer/common/utils.cc b/cobalt/renderer/rasterizer/common/utils.cc
index d7049a2..757c14a 100644
--- a/cobalt/renderer/rasterizer/common/utils.cc
+++ b/cobalt/renderer/rasterizer/common/utils.cc
@@ -52,13 +52,9 @@
   return false;
 }
 
-bool IsOpaque(float opacity) {
-  return opacity >= 254.5f / 255.0f;
-}
+bool IsOpaque(float opacity) { return opacity >= 254.5f / 255.0f; }
 
-bool IsTransparent(float opacity) {
-  return opacity <= 0.5f / 255.0f;
-}
+bool IsTransparent(float opacity) { return opacity <= 0.5f / 255.0f; }
 
 }  // namespace utils
 }  // namespace common
diff --git a/cobalt/renderer/rasterizer/egl/draw_callback.cc b/cobalt/renderer/rasterizer/egl/draw_callback.cc
index c145dcc..0d3a263 100644
--- a/cobalt/renderer/rasterizer/egl/draw_callback.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_callback.cc
@@ -12,13 +12,13 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
+#include "cobalt/renderer/rasterizer/egl/draw_callback.h"
 
 #include "base/basictypes.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
-#include "cobalt/renderer/rasterizer/egl/draw_callback.h"
 #include "egl/generated_shader_impl.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/draw_clear.cc b/cobalt/renderer/rasterizer/egl/draw_clear.cc
index a80e53c..ad356d1 100644
--- a/cobalt/renderer/rasterizer/egl/draw_clear.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_clear.cc
@@ -12,12 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_clear.h"
 
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/rasterizer/egl/draw_rect_border.cc b/cobalt/renderer/rasterizer/egl/draw_rect_border.cc
index f7f3b20..833c729 100644
--- a/cobalt/renderer/rasterizer/egl/draw_rect_border.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_rect_border.cc
@@ -12,8 +12,6 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_rect_border.h"
 
 #include "base/logging.h"
@@ -23,6 +21,7 @@
 #include "cobalt/renderer/egl_and_gles.h"
 #include "cobalt/renderer/rasterizer/common/utils.h"
 #include "egl/generated_shader_impl.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/draw_rect_color_texture.cc b/cobalt/renderer/rasterizer/egl/draw_rect_color_texture.cc
index b76320e..af1f139 100644
--- a/cobalt/renderer/rasterizer/egl/draw_rect_color_texture.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_rect_color_texture.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_rect_color_texture.h"
 
 #include "base/basictypes.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/draw_rect_texture.cc b/cobalt/renderer/rasterizer/egl/draw_rect_texture.cc
index e16b9cc..93feafd 100644
--- a/cobalt/renderer/rasterizer/egl/draw_rect_texture.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_rect_texture.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_rect_texture.h"
 
 #include "base/basictypes.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/draw_rrect_color.cc b/cobalt/renderer/rasterizer/egl/draw_rrect_color.cc
index aa4f2de..fe8804c 100644
--- a/cobalt/renderer/rasterizer/egl/draw_rrect_color.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_rrect_color.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_rrect_color.h"
 
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
 #include "egl/generated_shader_impl.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/draw_rrect_color_texture.cc b/cobalt/renderer/rasterizer/egl/draw_rrect_color_texture.cc
index 4fae2f8..95fdbe5 100644
--- a/cobalt/renderer/rasterizer/egl/draw_rrect_color_texture.cc
+++ b/cobalt/renderer/rasterizer/egl/draw_rrect_color_texture.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/draw_rrect_color_texture.h"
 
 #include "base/basictypes.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 #include "starboard/memory.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/egl/shader_base.cc b/cobalt/renderer/rasterizer/egl/shader_base.cc
index 3a7e451..1acab87 100644
--- a/cobalt/renderer/rasterizer/egl/shader_base.cc
+++ b/cobalt/renderer/rasterizer/egl/shader_base.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/shader_base.h"
 
 #include "base/logging.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/rasterizer/egl/shader_program.cc b/cobalt/renderer/rasterizer/egl/shader_program.cc
index 7f00d47..2df92c5 100644
--- a/cobalt/renderer/rasterizer/egl/shader_program.cc
+++ b/cobalt/renderer/rasterizer/egl/shader_program.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/shader_program.h"
 
 #include "base/logging.h"
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/rasterizer/egl/shader_program_manager.cc b/cobalt/renderer/rasterizer/egl/shader_program_manager.cc
index dd92e02..f782824 100644
--- a/cobalt/renderer/rasterizer/egl/shader_program_manager.cc
+++ b/cobalt/renderer/rasterizer/egl/shader_program_manager.cc
@@ -12,13 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/egl/shader_program_manager.h"
 
 #include "cobalt/renderer/backend/egl/utils.h"
 #include "cobalt/renderer/egl_and_gles.h"
 #include "egl/generated_shader_impl.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/rasterizer/egl/software_rasterizer.cc b/cobalt/renderer/rasterizer/egl/software_rasterizer.cc
index 92316a8..d8156c5 100644
--- a/cobalt/renderer/rasterizer/egl/software_rasterizer.cc
+++ b/cobalt/renderer/rasterizer/egl/software_rasterizer.cc
@@ -61,7 +61,9 @@
       gl_format = GL_BGRA_EXT;
       break;
     }
-    default: { NOTREACHED() << "Unsupported GL color format."; }
+    default: {
+      NOTREACHED() << "Unsupported GL color format.";
+    }
   }
   std::unique_ptr<cobalt::renderer::backend::TextureDataEGL> bitmap_pixels =
       context_->system_egl()->AllocateTextureData(
diff --git a/cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.cc b/cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.cc
index 93454b7..0ddaa3c 100644
--- a/cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.cc
+++ b/cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.cc
@@ -49,7 +49,8 @@
       return kUnpremul_SkAlphaType;
     case render_tree::kAlphaFormatOpaque:
       return kOpaque_SkAlphaType;
-    default: DLOG(FATAL) << "Unknown render tree alpha format!";
+    default:
+      DLOG(FATAL) << "Unknown render tree alpha format!";
   }
   return kUnpremul_SkAlphaType;
 }
diff --git a/cobalt/renderer/rasterizer/skia/conversions.h b/cobalt/renderer/rasterizer/skia/conversions.h
index d90e602..e7bee4c 100644
--- a/cobalt/renderer/rasterizer/skia/conversions.h
+++ b/cobalt/renderer/rasterizer/skia/conversions.h
@@ -16,6 +16,7 @@
 #define COBALT_RENDERER_RASTERIZER_SKIA_CONVERSIONS_H_
 
 #include <vector>
+
 #include "third_party/skia/include/core/SkColor.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/skia/font.h b/cobalt/renderer/rasterizer/skia/font.h
index aa01e85..e39ff97 100644
--- a/cobalt/renderer/rasterizer/skia/font.h
+++ b/cobalt/renderer/rasterizer/skia/font.h
@@ -22,7 +22,6 @@
 #include "base/threading/thread_checker.h"
 #include "cobalt/render_tree/font.h"
 #include "cobalt/renderer/rasterizer/skia/typeface.h"
-
 #include "third_party/skia/include/core/SkFont.h"
 #include "third_party/skia/include/core/SkFontMetrics.h"
 #include "third_party/skia/include/core/SkRefCnt.h"
diff --git a/cobalt/renderer/rasterizer/skia/gl_format_conversions.cc b/cobalt/renderer/rasterizer/skia/gl_format_conversions.cc
index 2e71cf2..3e67fe3 100644
--- a/cobalt/renderer/rasterizer/skia/gl_format_conversions.cc
+++ b/cobalt/renderer/rasterizer/skia/gl_format_conversions.cc
@@ -12,11 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/rasterizer/skia/gl_format_conversions.h"
 
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 
 namespace cobalt {
 namespace renderer {
@@ -39,7 +38,9 @@
       return GL_ALPHA;
     case render_tree::kPixelFormatUV8:
       return GL_LUMINANCE_ALPHA;
-    default: { NOTREACHED() << "Unknown format."; }
+    default: {
+      NOTREACHED() << "Unknown format.";
+    }
   }
   return GL_RGBA;
 }
@@ -64,7 +65,9 @@
     case GL_RG_EXT:
 #endif
       return GrColorType::kRGBA_8888;
-    default: { NOTREACHED() << "Unsupported GL format."; }
+    default: {
+      NOTREACHED() << "Unsupported GL format.";
+    }
   }
   return GrColorType::kRGBA_8888;
 }
@@ -91,7 +94,9 @@
     case GL_RG_EXT:
 #endif
       return GL_RGBA8_OES;
-    default: { NOTREACHED() << "Unsupported GL format."; }
+    default: {
+      NOTREACHED() << "Unsupported GL format.";
+    }
   }
   return GL_RGBA8_OES;
 }
diff --git a/cobalt/renderer/rasterizer/skia/glyph_buffer.h b/cobalt/renderer/rasterizer/skia/glyph_buffer.h
index d9d09e5..d96da01 100644
--- a/cobalt/renderer/rasterizer/skia/glyph_buffer.h
+++ b/cobalt/renderer/rasterizer/skia/glyph_buffer.h
@@ -16,7 +16,6 @@
 #define COBALT_RENDERER_RASTERIZER_SKIA_GLYPH_BUFFER_H_
 
 #include "cobalt/render_tree/glyph_buffer.h"
-
 #include "third_party/skia/include/core/SkTextBlob.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/skia/hardware_rasterizer.cc b/cobalt/renderer/rasterizer/skia/hardware_rasterizer.cc
index 23d3982..02a2b3c 100644
--- a/cobalt/renderer/rasterizer/skia/hardware_rasterizer.cc
+++ b/cobalt/renderer/rasterizer/skia/hardware_rasterizer.cc
@@ -364,7 +364,9 @@
         case AlternateRgbaFormat_UYVY: {
           result.type = egl::TexturedMeshRenderer::Image::YUV_UYVY_422_BT709;
         } break;
-        default: { NOTREACHED(); }
+        default: {
+          NOTREACHED();
+        }
       }
     }
 
diff --git a/cobalt/renderer/rasterizer/skia/harfbuzz_font.cc b/cobalt/renderer/rasterizer/skia/harfbuzz_font.cc
index 777d637..fa6954b 100644
--- a/cobalt/renderer/rasterizer/skia/harfbuzz_font.cc
+++ b/cobalt/renderer/rasterizer/skia/harfbuzz_font.cc
@@ -24,7 +24,6 @@
 
 #include "base/lazy_instance.h"
 #include "cobalt/render_tree/glyph.h"
-
 #include "third_party/skia/include/core/SkPaint.h"
 #include "third_party/skia/include/core/SkTypeface.h"
 
diff --git a/cobalt/renderer/rasterizer/skia/harfbuzz_font.h b/cobalt/renderer/rasterizer/skia/harfbuzz_font.h
index 1219111..770dbbf 100644
--- a/cobalt/renderer/rasterizer/skia/harfbuzz_font.h
+++ b/cobalt/renderer/rasterizer/skia/harfbuzz_font.h
@@ -18,7 +18,6 @@
 #include <map>
 
 #include "cobalt/renderer/rasterizer/skia/font.h"
-
 #include "third_party/harfbuzz-ng/src/hb.h"
 #include "third_party/skia/include/core/SkTypeface.h"
 
diff --git a/cobalt/renderer/rasterizer/skia/render_tree_node_visitor.cc b/cobalt/renderer/rasterizer/skia/render_tree_node_visitor.cc
index 29dc68d..41404b2 100644
--- a/cobalt/renderer/rasterizer/skia/render_tree_node_visitor.cc
+++ b/cobalt/renderer/rasterizer/skia/render_tree_node_visitor.cc
@@ -1637,7 +1637,9 @@
                        shadow_bounds.right(), shadow_bounds.bottom());
 
   SkRect* draw_rects[] = {
-      &left_shadow_rect, &top_shadow_rect, &right_shadow_rect,
+      &left_shadow_rect,
+      &top_shadow_rect,
+      &right_shadow_rect,
       &bottom_shadow_rect,
   };
 
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/gpu/gl/GrGLMakeNativeInterface_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/gpu/gl/GrGLMakeNativeInterface_cobalt.cc
index 216bba9..c2ebc0b 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/gpu/gl/GrGLMakeNativeInterface_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/gpu/gl/GrGLMakeNativeInterface_cobalt.cc
@@ -12,9 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "starboard/configuration.h"
-
 #include "cobalt/renderer/egl_and_gles.h"
+#include "starboard/configuration.h"
 #include "third_party/skia/include/gpu/gl/GrGLAssembleInterface.h"
 #include "third_party/skia/include/gpu/gl/GrGLInterface.h"
 
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontConfigParser_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontConfigParser_cobalt.cc
index e37e258..bf1aa3c 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontConfigParser_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontConfigParser_cobalt.cc
@@ -17,6 +17,7 @@
 #include <ft2build.h>
 #include FT_TYPES_H
 #include <libxml/parser.h>
+
 #include <limits>
 #include <memory>
 #include <stack>
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt_factory.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt_factory.cc
index 6b89985..308a41e 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt_factory.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt_factory.cc
@@ -12,12 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt.h"
-
 #include "base/base_paths_starboard.h"
 #include "base/files/file_path.h"
 #include "base/files/file_util.h"
 #include "base/path_service.h"
+#include "cobalt/renderer/rasterizer/skia/skia/src/ports/SkFontMgr_cobalt.h"
 
 sk_sp<SkFontMgr> SkFontMgr::Factory() {
   base::FilePath cobalt_font_directory;
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkOSFile_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkOSFile_cobalt.cc
index ac1ec60..228947f 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkOSFile_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkOSFile_cobalt.cc
@@ -11,8 +11,8 @@
 #include "SkTFitsIn.h"
 #include "SkTemplates.h"
 #include "SkTypes.h"
-
 #include "base/files/file_path.h"
+#include "base/files/file_starboard.h"
 #include "base/files/file_util.h"
 #include "base/optional.h"
 #include "base/path_service.h"
@@ -86,7 +86,10 @@
 size_t sk_fwrite(const void* buffer, size_t byteCount, SkFile* sk_file) {
   SkASSERT(sk_file);
   SbFile file = ToSbFile(sk_file);
-  return SbFileWrite(file, reinterpret_cast<const char*>(buffer), byteCount);
+  int result =
+      SbFileWrite(file, reinterpret_cast<const char*>(buffer), byteCount);
+  base::RecordFileWriteStat(result);
+  return result;
 }
 
 void sk_fflush(SkFile* sk_file) {
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.cc
index 52ca499..2f37f27 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.cc
@@ -19,6 +19,7 @@
 #include <algorithm>
 #include <limits>
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/logging.h"
@@ -314,7 +315,7 @@
   return true;
 }
 
-bool SkFileMemoryChunkStream::move(long offset) {
+bool SkFileMemoryChunkStream::move(long offset) {  // NOLINT(runtime/int)
   // Rewind back to the start of the stream if the offset would move it to a
   // negative position.
   if (offset < 0 && std::abs(offset) > stream_position_) {
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.h b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.h
index 8561982..f7ecc6e 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.h
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkStream_cobalt.h
@@ -17,6 +17,9 @@
 
 #include <memory>
 #include <string>
+#include <unordered_map>
+#include <utility>
+#include <vector>
 
 #include "SkMutex.h"
 #include "SkStream.h"
@@ -178,7 +181,7 @@
   // Required by SkStreamSeekable
   size_t getPosition() const override;
   bool seek(size_t position) override;
-  bool move(long offset) override;
+  bool move(long offset) override;  // NOLINT(runtime/int)
   SkFileMemoryChunkStream* onFork() const override;
 
   // Required by SkStreamAsset
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTLS_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTLS_cobalt.cc
index ecffa76..07cdf37 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTLS_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTLS_cobalt.cc
@@ -13,7 +13,6 @@
 // limitations under the License.
 
 #include "SkTLS.h"
-
 #include "base/lazy_instance.h"
 #include "base/threading/thread_local_storage.h"
 
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTime_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTime_cobalt.cc
index 09291ea..d2739e6 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTime_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTime_cobalt.cc
@@ -15,9 +15,7 @@
 #include "SkString.h"
 #include "SkTime.h"
 #include "SkTypes.h"
-
 #include "base/time/time.h"
-
 #include "starboard/time.h"
 
 // Taken from SkTime.cpp.
diff --git a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.cc b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.cc
index eb6f55e..c26dd35 100644
--- a/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.cc
+++ b/cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.h"
+
 #include <memory>
 #include <utility>
 
-#include "cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.h"
-
 #include "SkFontDescriptor.h"
 #include "SkFontStyle.h"
 #include "SkTypefaceCache.h"
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/filter_fuzz_stub.cc b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/filter_fuzz_stub.cc
deleted file mode 100644
index e6a36df..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/filter_fuzz_stub.cc
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/files/file_util.h"
-#include "base/logging.h"
-#include "base/path_service.h"
-#include "cobalt/base/wrap_main.h"
-#include "third_party/skia/include/core/SkBitmapDevice.h"
-#include "third_party/skia/include/core/SkCanvas.h"
-#include "third_party/skia/include/core/SkFlattenableSerialization.h"
-#include "third_party/skia/include/core/SkImageFilter.h"
-
-namespace {
-
-static const int BitmapSize = 24;
-
-bool ReadTestCase(const char* filename, std::string* ipc_filter_message) {
-  base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename);
-
-  if (!base::ReadFileToString(filepath, ipc_filter_message)) {
-    LOG(ERROR) << filename << ": couldn't read file.";
-    return false;
-  }
-
-  return true;
-}
-
-void RunTestCase(const std::string& ipc_filter_message, const SkBitmap& bitmap,
-                 SkCanvas* canvas) {
-  // This call shouldn't crash or cause ASAN to flag any memory issues
-  // If nothing bad happens within this call, everything is fine
-  SkFlattenable* flattenable = SkValidatingDeserializeFlattenable(
-        ipc_filter_message.c_str(), ipc_filter_message.size(),
-        SkImageFilter::GetFlattenableType());
-
-  // Adding some info, but the test passed if we got here without any trouble
-  if (flattenable != NULL) {
-    LOG(INFO) << "Valid stream detected.";
-    // Let's see if using the filters can cause any trouble...
-    SkPaint paint;
-    paint.setImageFilter(static_cast<SkImageFilter*>(flattenable))->unref();
-    canvas->save();
-    canvas->clipRect(SkRect::MakeXYWH(
-        0, 0, SkIntToScalar(BitmapSize), SkIntToScalar(BitmapSize)));
-
-    // This call shouldn't crash or cause ASAN to flag any memory issues
-    // If nothing bad happens within this call, everything is fine
-    canvas->drawBitmap(bitmap, 0, 0, &paint);
-
-    LOG(INFO) << "Filter DAG rendered successfully";
-    canvas->restore();
-  } else {
-    LOG(INFO) << "Invalid stream detected.";
-  }
-}
-
-bool ReadAndRunTestCase(const char* filename, const SkBitmap& bitmap,
-                        SkCanvas* canvas) {
-  std::string ipc_filter_message;
-
-  LOG(INFO) << "Test case: " << filename;
-
-  // ReadTestCase will print a useful error message if it fails.
-  if (!ReadTestCase(filename, &ipc_filter_message))
-    return false;
-
-  RunTestCase(ipc_filter_message, bitmap, canvas);
-
-  return true;
-}
-
-int FilterFuzzStubMain(int argc, char** argv) {
-  int ret = 0;
-
-  SkBitmap bitmap;
-  bitmap.allocPixels(SkImageInfo::MakeN32Premul(BitmapSize, BitmapSize));
-  SkBitmapDevice device(bitmap);
-  SkCanvas canvas(&device);
-  canvas.clear(0x00000000);
-
-  for (int i = 1; i < argc; i++)
-    if (!ReadAndRunTestCase(argv[i], bitmap, &canvas))
-      ret = 2;
-
-  // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish
-  // successful runs from crashes.
-  printf("#EOF\n");
-
-  return ret;
-}
-
-}  // namespace
-
-COBALT_WRAP_SIMPLE_MAIN(FilterFuzzStubMain);
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-448423.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-448423.fil
deleted file mode 100644
index 8d84304..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-448423.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-465455.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-465455.fil
deleted file mode 100644
index 8d84304..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/oom-repro-465455.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/readme.txt b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/readme.txt
deleted file mode 100644
index 5f8d41e..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/readme.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-The files in this directory are inputs to filter_fuzz_stub.  They represent
-serialized Skia filters that have been found to cause bugs/security issues
-in the past.  Each test input file has the format, "repro-XXX.fil" where
-XXX is a bug ID associated with the test case, and can be looked up by
-navigating to https://bugs.chromium.org/p/chromium/issues/detail?id=XXX .
-
-Note that some tests are pre-pended with "oom-" (such as "oom-repro-448423.fil"
-and "oom-repro-465455.fil").  These tests are known to crash (in a controlled
-manner) from lack of memory while trying to make huge allocations.
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445807.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445807.fil
deleted file mode 100644
index 387f5bf..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445807.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445808.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445808.fil
deleted file mode 100644
index 8457228..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445808.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445809.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445809.fil
deleted file mode 100644
index 9b8c6bd..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445809.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445810.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445810.fil
deleted file mode 100644
index 1d0dfe2..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445810.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445831.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445831.fil
deleted file mode 100644
index 628332b..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-445831.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486944.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486944.fil
deleted file mode 100644
index ccd7a1c..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486944.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486945.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486945.fil
deleted file mode 100644
index 3bd9e40..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486945.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486946.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486946.fil
deleted file mode 100644
index 4c911ae..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486946.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486947.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486947.fil
deleted file mode 100644
index 8272db9..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486947.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486977.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486977.fil
deleted file mode 100644
index a4af750..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-486977.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491660.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491660.fil
deleted file mode 100644
index ec8f2f0..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491660.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491975.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491975.fil
deleted file mode 100644
index 4bb9e83..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-491975.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-492263.fil b/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-492263.fil
deleted file mode 100644
index 294838e..0000000
--- a/cobalt/renderer/rasterizer/skia/skia/test/filter_fuzz_stub/testdata/repro-492263.fil
+++ /dev/null
Binary files differ
diff --git a/cobalt/renderer/rasterizer/skia/skottie_animation.cc b/cobalt/renderer/rasterizer/skia/skottie_animation.cc
index 224b4a9..2d954ee 100644
--- a/cobalt/renderer/rasterizer/skia/skottie_animation.cc
+++ b/cobalt/renderer/rasterizer/skia/skottie_animation.cc
@@ -132,7 +132,7 @@
 }
 
 void SkottieAnimation::UpdateRenderCache(SkCanvas* render_target,
-    const math::SizeF& size) {
+                                         const math::SizeF& size) {
   DCHECK(render_target);
   if (cached_animation_time_ == last_updated_animation_time_) {
     // The render cache is already up-to-date.
diff --git a/cobalt/renderer/rasterizer/skia/software_image.cc b/cobalt/renderer/rasterizer/skia/software_image.cc
index b5ce247..9b26df6 100644
--- a/cobalt/renderer/rasterizer/skia/software_image.cc
+++ b/cobalt/renderer/rasterizer/skia/software_image.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/rasterizer/skia/software_image.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/memory/aligned_memory.h"
 #include "cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.h"
 
diff --git a/cobalt/renderer/rasterizer/skia/software_mesh.h b/cobalt/renderer/rasterizer/skia/software_mesh.h
index 4b85b2f..2c81730 100644
--- a/cobalt/renderer/rasterizer/skia/software_mesh.h
+++ b/cobalt/renderer/rasterizer/skia/software_mesh.h
@@ -18,6 +18,7 @@
 #define COBALT_RENDERER_RASTERIZER_SKIA_SOFTWARE_MESH_H_
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "cobalt/render_tree/mesh.h"
diff --git a/cobalt/renderer/rasterizer/skia/software_rasterizer.cc b/cobalt/renderer/rasterizer/skia/software_rasterizer.cc
index 087d7cb..98218da 100644
--- a/cobalt/renderer/rasterizer/skia/software_rasterizer.cc
+++ b/cobalt/renderer/rasterizer/skia/software_rasterizer.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/rasterizer/skia/software_rasterizer.h"
 
+#include <memory>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.h"
 #include "cobalt/renderer/rasterizer/skia/render_tree_node_visitor.h"
diff --git a/cobalt/renderer/rasterizer/skia/software_resource_provider.cc b/cobalt/renderer/rasterizer/skia/software_resource_provider.cc
index 25f9813..f43ec11 100644
--- a/cobalt/renderer/rasterizer/skia/software_resource_provider.cc
+++ b/cobalt/renderer/rasterizer/skia/software_resource_provider.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/rasterizer/skia/software_resource_provider.h"
 
+#include <memory>
+#include <utility>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/renderer/rasterizer/skia/cobalt_skia_type_conversions.h"
diff --git a/cobalt/renderer/rasterizer/skia/text_shaper.h b/cobalt/renderer/rasterizer/skia/text_shaper.h
index 6856d61..2897e4f 100644
--- a/cobalt/renderer/rasterizer/skia/text_shaper.h
+++ b/cobalt/renderer/rasterizer/skia/text_shaper.h
@@ -28,7 +28,6 @@
 #include "cobalt/renderer/rasterizer/skia/font.h"
 #include "cobalt/renderer/rasterizer/skia/glyph_buffer.h"
 #include "cobalt/renderer/rasterizer/skia/harfbuzz_font.h"
-
 #include "third_party/harfbuzz-ng/src/hb-icu.h"
 #include "third_party/harfbuzz-ng/src/hb.h"
 #include "third_party/icu/source/common/unicode/uscript.h"
diff --git a/cobalt/renderer/rasterizer/skia/typeface.cc b/cobalt/renderer/rasterizer/skia/typeface.cc
index 0a70a6c..0e544b7 100644
--- a/cobalt/renderer/rasterizer/skia/typeface.cc
+++ b/cobalt/renderer/rasterizer/skia/typeface.cc
@@ -15,7 +15,6 @@
 #include "cobalt/renderer/rasterizer/skia/typeface.h"
 
 #include "cobalt/renderer/rasterizer/skia/font.h"
-
 #include "third_party/skia/include/core/SkPaint.h"
 
 namespace cobalt {
diff --git a/cobalt/renderer/rasterizer/skia/typeface.h b/cobalt/renderer/rasterizer/skia/typeface.h
index 26aad50..b7f66e9 100644
--- a/cobalt/renderer/rasterizer/skia/typeface.h
+++ b/cobalt/renderer/rasterizer/skia/typeface.h
@@ -22,7 +22,6 @@
 #include "cobalt/render_tree/font.h"
 #include "cobalt/render_tree/typeface.h"
 #include "cobalt/renderer/rasterizer/skia/skia/src/ports/SkTypeface_cobalt.h"
-
 #include "third_party/skia/include/core/SkPaint.h"
 #include "third_party/skia/include/core/SkRefCnt.h"
 
diff --git a/cobalt/renderer/rasterizer/stress_test.cc b/cobalt/renderer/rasterizer/stress_test.cc
index d5ab9da..e4f9cbc 100644
--- a/cobalt/renderer/rasterizer/stress_test.cc
+++ b/cobalt/renderer/rasterizer/stress_test.cc
@@ -140,7 +140,7 @@
 }
 
 namespace {
-// Creates a composition of |cascade_amount| render trees layed out in a
+// Creates a composition of |cascade_amount| render trees laid out in a
 // cascade on top of each other.
 scoped_refptr<Node> CreateCascadedRenderTrees(Node* node, int cascade_amount,
                                               float offset_amount) {
diff --git a/cobalt/renderer/rasterizer/testdata/hunter_gone_too_deep.json b/cobalt/renderer/rasterizer/testdata/hunter_gone_too_deep.json
index 7ec94d5..752a571 100644
--- a/cobalt/renderer/rasterizer/testdata/hunter_gone_too_deep.json
+++ b/cobalt/renderer/rasterizer/testdata/hunter_gone_too_deep.json
@@ -1 +1 @@
-{"assets":[],"ddd":0,"fr":60,"h":768,"ip":0,"layers":[{"ao":0,"bm":0,"ddd":0,"ind":11,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":0},"p":{"a":0,"ix":2,"k":[512,491,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Null 6","op":480,"sr":1,"st":0,"ty":3},{"ao":0,"bm":0,"ddd":0,"ind":12,"ip":85,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.723],"y":[0.323]},"o":{"x":[0.222],"y":[-0.066]},"s":[558],"t":85},{"i":{"x":[0.751],"y":[0.586]},"o":{"x":[0.33],"y":[0.165]},"s":[517.048],"t":128},{"i":{"x":[0.532],"y":[0.691]},"o":{"x":[0.216],"y":[0.684]},"s":[317.348],"t":171},{"i":{"x":[0.606],"y":[0.66]},"o":{"x":[0.353],"y":[0.322]},"s":[176.07],"t":229},{"i":{"x":[0.52],"y":[0.366]},"o":{"x":[0.286],"y":[0.307]},"s":[103.522],"t":270},{"i":{"x":[0.87],"y":[0.968]},"o":{"x":[0.363],"y":[0.471]},"s":[-84.301],"t":402},{"s":[-188.5],"t":474}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.675],"y":[0.829]},"o":{"x":[0.206],"y":[0.013]},"s":[-14],"t":85},{"i":{"x":[0.474],"y":[0.581]},"o":{"x":[0.346],"y":[0.6]},"s":[82],"t":128},{"i":{"x":[0.748],"y":[0.537]},"o":{"x":[0.59],"y":[0.621]},"s":[111.156],"t":171},{"i":{"x":[0.719],"y":[1.207]},"o":{"x":[0.325],"y":[1.507]},"s":[140.939],"t":229},{"i":{"x":[0.658],"y":[-2.304]},"o":{"x":[0.268],"y":[-0.246]},"s":[149.301],"t":270},{"i":{"x":[0.824],"y":[0.972]},"o":{"x":[0.472],"y":[0.216]},"s":[170.943],"t":402},{"s":[419.5],"t":474}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.554],"y":[1.061]},"o":{"x":[0.167],"y":[0.167]},"s":[-75],"t":85},{"i":{"x":[0.431],"y":[0.998]},"o":{"x":[0.543],"y":[0.161]},"s":[-2],"t":171},{"i":{"x":[0.484],"y":[0.75]},"o":{"x":[0.448],"y":[-0.001]},"s":[-21],"t":220},{"i":{"x":[0.649],"y":[0.019]},"o":{"x":[0.357],"y":[-0.261]},"s":[7],"t":270},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.449],"y":[0.406]},"s":[-41.814],"t":402},{"s":[-75],"t":431}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish 2","op":480,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[9.799,-0.668],[5.305,-4.476],[-6.346,-0.784],[-7.617,-0.431],[3.274,1.837]],"o":[[-9.799,0.668],[-5.305,4.476],[8.226,1.016],[23.752,1.343],[-8.565,-4.806]],"v":[[827.651,-889.492],[799.055,-882.726],[812.274,-869.016],[834.748,-873.343],[855.476,-882.087]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-10.607,1.745]],"o":[[7.65,6.434],[0,0]],"v":[[654.1,-885.684],[682.857,-878.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-1.151,-1.189],[-0.266,-8.19],[4.624,-6.46]],"o":[[5.7,5.887],[0.287,8.845],[-3.352,4.683]],"v":[[751.734,-916.389],[758.963,-895.845],[751.876,-872.29]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.43,-8.147],[-0.041,-3.616],[1.549,-4.99],[3.123,-4.858]],"o":[[5.598,6.09],[0.625,3.561],[0.059,5.225],[-1.549,4.99],[0,0]],"v":[[765.155,-926.346],[775.992,-904.394],[776.837,-893.592],[775.107,-878.079],[767.127,-863.392]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.168,0.712],[2.927,-3.333],[-3.049,-4.257],[-1.942,2.968]],"o":[[-5.661,-3.45],[-2.927,3.333],[2.065,2.884],[3.179,-4.86]],"v":[[719.162,-908.297],[704.881,-905.576],[705.58,-889.884],[720.407,-890.887]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.719,2.297],[-4.098,-0.144],[-0.938,-8.857],[0.179,-0.175],[0.343,0.012],[2.106,1.262]],"o":[[-0.084,-2.406],[0.93,-2.972],[7.353,0.258],[0.026,0.249],[-0.245,0.24],[-2.6,-0.091],[0,0]],"v":[[911.595,-858.003],[912.87,-865.075],[925.098,-877.106],[926.688,-856.893],[926.401,-856.213],[925.428,-855.981],[910.496,-857.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.437,2.995],[-3.621,1.097],[-0.208,-3.066],[2.323,-7.496],[4.276,-0.366]],"o":[[-0.184,-1.607],[1.674,-3.489],[2.831,-0.858],[0.394,5.805],[-4.014,-1.518],[0,0]],"v":[[940.958,-854.479],[946.503,-868.088],[952.169,-876.392],[957.483,-868.859],[953.838,-851.79],[941.193,-853.546]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stripes","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-10.08,-8.253],[-2.161,1.189],[-18.243,10.28],[-0.744,10.463],[33.849,-8.167]],"o":[[10.08,8.253],[1.188,0.973],[15.458,-8.506],[7.85,-4.424],[-34.624,-3.694],[0,0]],"v":[[824.518,-847.929],[854.758,-823.171],[865.644,-822.867],[923,-835.748],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[0.711,0.627],[3.128,3.395]],"o":[[-0.879,0.355],[-3.464,-3.051],[0,0]],"v":[[861.249,-839.244],[858.723,-840.178],[848.826,-849.855]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.648,3.494]],"o":[[-2.511,-3.593],[0,0]],"v":[[874.064,-842.548],[866.326,-853.179]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.056,3.987]],"o":[[-4.994,-1.88],[0,0]],"v":[[896.994,-845.87],[885.961,-855.024]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":13,"ip":60,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.831]},"o":{"x":[0.167],"y":[0.167]},"s":[600],"t":60},{"i":{"x":[0.833],"y":[0.847]},"o":{"x":[0.167],"y":[0.164]},"s":[384],"t":120},{"i":{"x":[0.834],"y":[0.897]},"o":{"x":[0.167],"y":[0.195]},"s":[213],"t":166},{"i":{"x":[0.743],"y":[0.725]},"o":{"x":[0.287],"y":[0.507]},"s":[131],"t":194},{"i":{"x":[0.723],"y":[0.577]},"o":{"x":[0.167],"y":[0.124]},"s":[43],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.543],"y":[0.373]},"s":[-120],"t":390},{"s":[-239],"t":426}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.84],"y":[1.468]},"o":{"x":[0.167],"y":[0.167]},"s":[91.5],"t":60},{"i":{"x":[0.543],"y":[0.956]},"o":{"x":[0.406],"y":[0.264]},"s":[68.5],"t":120},{"i":{"x":[0.545],"y":[0.672]},"o":{"x":[0.416],"y":[-0.058]},"s":[147.5],"t":166},{"i":{"x":[0.566],"y":[0.281]},"o":{"x":[0.231],"y":[-2.412]},"s":[114.5],"t":194},{"i":{"x":[0.841],"y":[-0.356]},"o":{"x":[0.376],"y":[0.238]},"s":[121.5],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.437],"y":[0.132]},"s":[144.978],"t":390},{"s":[361.5],"t":426}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[9],"t":100},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-14],"t":120},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-34],"t":135},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-15],"t":160},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[23],"t":175},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[4],"t":205},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-19],"t":225},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11],"t":270},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-14],"t":375},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-52],"t":395},{"s":[-68],"t":426}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish 3","op":540,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[7.628,-0.52],[4.13,-3.484],[-4.941,-0.61],[-5.93,-0.335],[2.549,1.43]],"o":[[-7.628,0.52],[-4.13,3.484],[6.404,0.791],[18.491,1.046],[-6.668,-3.741]],"v":[[840.79,-895.973],[818.529,-890.705],[828.819,-880.032],[846.315,-883.401],[862.451,-890.208]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.703,-2.695]],"o":[[5.964,2.798],[0,0]],"v":[[730.536,-889.298],[749.203,-880.805]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.854,-4.863],[-0.024,-2.158],[0.925,-2.979],[1.864,-2.9]],"o":[[3.342,3.635],[0.373,2.126],[0.035,3.119],[-0.925,2.979],[0,0]],"v":[[796.83,-913.571],[803.299,-900.466],[803.803,-894.018],[802.77,-884.758],[798.007,-875.991]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.377,0.839],[3.45,-3.928],[-3.594,-5.018],[-2.289,3.499]],"o":[[-6.673,-4.067],[-3.45,3.928],[2.435,3.399],[3.747,-5.729]],"v":[[775.785,-909.909],[758.95,-906.703],[759.775,-888.204],[777.253,-889.387]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-6.017,-4.926],[-1.29,0.71],[-10.89,6.137],[-0.444,6.246],[20.206,-4.875]],"o":[[6.017,4.926],[0.709,0.581],[9.227,-5.077],[4.686,-2.641],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.76],[850.318,-851.981],[856.816,-851.799],[891.054,-859.489],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":60,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":14,"ip":110,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.658],"y":[0.223]},"o":{"x":[0.255],"y":[0.072]},"s":[551.022],"t":110},{"i":{"x":[0.525],"y":[0.902]},"o":{"x":[0.433],"y":[0.234]},"s":[507.146],"t":159},{"i":{"x":[0.689],"y":[0.099]},"o":{"x":[0.357],"y":[0.154]},"s":[315.313],"t":210},{"i":{"x":[0.793],"y":[0.396]},"o":{"x":[0.445],"y":[1.113]},"s":[117.343],"t":320},{"i":{"x":[0.765],"y":[0.825]},"o":{"x":[0.378],"y":[0.57]},"s":[-103.549],"t":426},{"s":[-261],"t":465}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.838],"y":[0.733]},"o":{"x":[0.353],"y":[-0.056]},"s":[53.082],"t":110},{"i":{"x":[0.523],"y":[0.849]},"o":{"x":[0.258],"y":[0.398]},"s":[92.636],"t":159},{"i":{"x":[0.617],"y":[1.101]},"o":{"x":[0.236],"y":[0.17]},"s":[136.519],"t":210},{"i":{"x":[0.854],"y":[0.104]},"o":{"x":[0.431],"y":[-0.086]},"s":[178.068],"t":320},{"i":{"x":[0.826],"y":[0.659]},"o":{"x":[0.721],"y":[0.484]},"s":[231],"t":426},{"s":[408.5],"t":465}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.667],"y":[0.801]},"o":{"x":[0.436],"y":[-0.031]},"s":[-47.266],"t":110},{"i":{"x":[0.626],"y":[1.734]},"o":{"x":[0.456],"y":[0.405]},"s":[-16.016],"t":180},{"i":{"x":[0.721],"y":[0.411]},"o":{"x":[0.417],"y":[-3.306]},"s":[-6.996],"t":210},{"i":{"x":[0.609],"y":[0.219]},"o":{"x":[0.171],"y":[-0.097]},"s":[1.932],"t":330},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.577],"y":[0.294]},"s":[-24.672],"t":426},{"s":[-67],"t":465}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish","op":479,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-5.885,-2.501],[-2.649,0.801],[-7.066,2.137],[1.003,0.797],[9.799,-0.668],[9.34,-3.038]],"o":[[5.648,2.998],[7.539,3.203],[7.066,-2.137],[0.437,-0.132],[-7.691,-6.108],[-9.799,0.668],[0,0]],"v":[[799.829,-882.761],[816.774,-873.766],[834.248,-871.843],[855.446,-878.255],[855.476,-882.087],[827.651,-889.492],[799.055,-882.726]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-13.462,8.788]],"o":[[14.395,7.157],[0,0]],"v":[[656.185,-861.497],[702.192,-864.19]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.282,-1.047],[-1.805,-7.993],[1.328,-5.604],[4.964,-2.92]],"o":[[1.647,0.164],[6.347,5.182],[1.269,5.618],[-1.328,5.604],[0,0]],"v":[[741.128,-910.099],[745.514,-907.933],[757.279,-886.867],[757.692,-869.744],[748.111,-855.928]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.37,-7.925],[11.09,-8.096]],"o":[[6.27,5.395],[1.036,3.464],[0,0]],"v":[[761.742,-914.83],[775.064,-894.291],[769.785,-854.654]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.227,0.716],[2.617,-3.793],[-7.25,-4.54],[-3.304,1.802]],"o":[[-3.98,-2.322],[-2.617,3.793],[3.123,1.956],[8.943,-4.877]],"v":[[716.127,-890.785],[703.94,-887.704],[706.562,-871.596],[717.557,-872.741]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-8.817,3.007],[-0.061,-0.952],[0.247,-5.866],[0.152,-0.17],[0.243,-0.026],[6.947,-0.738]],"o":[[2.096,-9.313],[4.291,-1.463],[0.377,5.859],[-0.01,0.228],[-0.163,0.182],[-6.947,0.738],[0,0]],"v":[[874.796,-856.081],[890.647,-879.099],[895.268,-875.519],[895.463,-857.914],[895.283,-857.268],[894.611,-857.023],[873.77,-854.81]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.669,-0.239],[1.711,-2.601],[-0.084,-2.406],[-2.453,-0.086],[-2.6,-0.091],[-0.245,0.24],[-0.05,0.245],[0.377,6.21]],"o":[[-2.932,1.048],[-1.711,2.601],[0,0],[2.6,0.091],[0.343,0.012],[0.179,-0.175],[1.236,-6.097],[-0.105,-1.728]],"v":[[923.637,-879.497],[916.598,-873.606],[911.595,-858.003],[918.566,-857.192],[925.428,-855.981],[926.401,-856.213],[926.688,-856.893],[927.984,-875.458]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.441,-0.193],[1.674,-3.489],[-0.184,-1.607],[-4.014,-1.518],[1.642,6.797]],"o":[[-3.544,1.554],[-1.437,2.995],[0,0],[2.323,-7.496],[-0.424,-1.756]],"v":[[953.669,-876.892],[946.503,-868.088],[940.958,-854.479],[953.838,-851.79],[957.983,-873.609]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-22.326,10.403],[-0.605,-4.596],[4.479,-12.172],[1.033,0.032],[26.641,0.837]],"o":[[15.167,-19.407],[23.239,-10.828],[1.694,12.859],[-0.388,1.055],[-26.641,-0.837],[0,0]],"v":[[782.341,-932.416],[837.948,-980.359],[871.464,-969.245],[867.203,-930.949],[862.382,-927.682],[782.458,-930.192]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.343,0],[3,-44],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-51,0],[-3,44],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[766,-932],[656,-860],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-1.831,-0.397],[-2.637,1.451],[-21.399,-2.398],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[2.942,0.637],[18.865,-10.381],[-7.015,-7.798],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[861.425,-816.555],[866.231,-813.748],[874.711,-816.184],[937.084,-828.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[0.868,0.765],[3.818,4.143]],"o":[[-1.073,0.433],[-4.228,-3.724],[0,0]],"v":[[869.347,-836.172],[866.264,-837.311],[854.185,-849.122]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.231,4.264]],"o":[[-3.064,-4.385],[0,0]],"v":[[884.987,-840.204],[875.543,-853.179]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.056,3.987]],"o":[[-3.056,-3.987],[0,0]],"v":[[901.378,-844.564],[892.211,-856.524]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-1.831,-0.397],[-2.637,1.451],[-21.399,-2.398],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[2.942,0.637],[18.865,-10.381],[-7.015,-7.798],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[861.425,-816.555],[866.231,-813.748],[874.711,-816.184],[937.084,-828.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.035,-2.859],[-0.602,3.172],[2.616,3.135],[0.654,0.302],[0.681,-0.01],[5.304,-1.284],[4.501,-1.089]],"o":[[7.086,10.14],[9.984,2.372],[0.717,-3.776],[-0.461,-0.553],[-0.619,-0.286],[-5.457,0.077],[-4.501,1.089],[0,0]],"v":[[767.821,-830.314],[797.453,-809.184],[813.703,-814.648],[801.487,-834.299],[799.888,-835.724],[797.882,-836.015],[781.763,-833.363],[768.261,-830.095]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[0,35],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[0,-35],[-17,-12]],"v":[[1038.625,-941.188],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1043,-832.75],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":-1,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":15,"ip":137,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.83],"y":[0.874]},"o":{"x":[0.186],"y":[0.266]},"s":[558.5],"t":138},{"i":{"x":[0.832],"y":[0.65]},"o":{"x":[0.258],"y":[0.346]},"s":[421.438],"t":189},{"i":{"x":[0.584],"y":[0.701]},"o":{"x":[0.48],"y":[0.432]},"s":[267.562],"t":293},{"i":{"x":[0.556],"y":[0.587]},"o":{"x":[0.217],"y":[0.322]},"s":[174.972],"t":320},{"i":{"x":[0.816],"y":[0.6]},"o":{"x":[0.486],"y":[0.218]},"s":[70.592],"t":383},{"i":{"x":[0.822],"y":[1.009]},"o":{"x":[0.382],"y":[0.67]},"s":[-118.136],"t":438},{"s":[-190.5],"t":455}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.678],"y":[0.52]},"o":{"x":[0.012],"y":[-0.026]},"s":[114],"t":138},{"i":{"x":[0.881],"y":[1.274]},"o":{"x":[0.283],"y":[0.697]},"s":[97.773],"t":189},{"i":{"x":[0.552],"y":[0.324]},"o":{"x":[0.493],"y":[0.224]},"s":[77.739],"t":293},{"i":{"x":[0.553],"y":[0.763]},"o":{"x":[0.253],"y":[0.485]},"s":[104.163],"t":320},{"i":{"x":[0.845],"y":[0.394]},"o":{"x":[0.479],"y":[0.231]},"s":[152.723],"t":383},{"i":{"x":[0.965],"y":[0.829]},"o":{"x":[0.524],"y":[0.157]},"s":[199.341],"t":438},{"s":[387],"t":455}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.312],"y":[0.708]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":138},{"i":{"x":[0.75],"y":[4.983]},"o":{"x":[0.333],"y":[3.814]},"s":[7],"t":165},{"i":{"x":[0.626],"y":[0.814]},"o":{"x":[0.444],"y":[0.146]},"s":[7],"t":269},{"i":{"x":[0.64],"y":[-0.475]},"o":{"x":[0.336],"y":[-0.66]},"s":[-28.491],"t":345},{"i":{"x":[0.696],"y":[-1.301]},"o":{"x":[0.447],"y":[-1.322]},"s":[-24],"t":383},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.514],"y":[0.226]},"s":[-33],"t":438},{"s":[-81],"t":455}]},"s":{"a":0,"ix":6,"k":[24,24,100]}},"nm":"skinny fish 5","op":490,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":10,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":16,"ip":164,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.636],"y":[0.533]},"o":{"x":[0.437],"y":[-0.028]},"s":[554.5],"t":165},{"i":{"x":[0.702],"y":[0.775]},"o":{"x":[0.218],"y":[0.489]},"s":[489.5],"t":197},{"i":{"x":[0.547],"y":[0.172]},"o":{"x":[0.391],"y":[0.22]},"s":[398.687],"t":275},{"i":{"x":[0.675],"y":[0.686]},"o":{"x":[0.467],"y":[0.377]},"s":[261.522],"t":363},{"i":{"x":[0.91],"y":[0.733]},"o":{"x":[0.602],"y":[0.517]},"s":[14.121],"t":433},{"s":[-105],"t":463}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.528],"y":[0.883]},"o":{"x":[0.019],"y":[0.109]},"s":[93.5],"t":165},{"i":{"x":[0.825],"y":[0.718]},"o":{"x":[0.337],"y":[-0.424]},"s":[131.618],"t":197},{"i":{"x":[0.593],"y":[1.128]},"o":{"x":[0.227],"y":[0.593]},"s":[113.534],"t":274},{"i":{"x":[0.755],"y":[0.2]},"o":{"x":[0.35],"y":[0.014]},"s":[100.612],"t":363},{"i":{"x":[0.965],"y":[0.734]},"o":{"x":[0.435],"y":[0.203]},"s":[179.675],"t":433},{"s":[416.5],"t":463}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.36],"y":[0.75]},"o":{"x":[0.167],"y":[0.167]},"s":[-68.187],"t":165},{"i":{"x":[0.764],"y":[1.019]},"o":{"x":[0.312],"y":[1.086]},"s":[3.142],"t":210},{"i":{"x":[0.834],"y":[0.72]},"o":{"x":[0.167],"y":[0.014]},"s":[14.676],"t":275},{"i":{"x":[0.836],"y":[0.737]},"o":{"x":[0.468],"y":[0.286]},"s":[-0.577],"t":363},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.402],"y":[0.319]},"s":[-20.685],"t":405},{"s":[-64.207],"t":450}]},"s":{"a":0,"ix":6,"k":[19,19,100]}},"nm":"skinny fish 6","op":546,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":66,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":17,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.604],"y":[0.387]},"o":{"x":[0.353],"y":[0.242]},"s":[543.5],"t":195},{"i":{"x":[0.607],"y":[0.388]},"o":{"x":[0.318],"y":[0.132]},"s":[520.321],"t":237},{"i":{"x":[0.689],"y":[0.738]},"o":{"x":[0.306],"y":[0.265]},"s":[401.118],"t":295},{"i":{"x":[0.777],"y":[0.799]},"o":{"x":[0.475],"y":[0.515]},"s":[260.778],"t":333},{"i":{"x":[0.806],"y":[0.95]},"o":{"x":[0.564],"y":[0.688]},"s":[39.853],"t":410},{"s":[-95.5],"t":474}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.831],"y":[0.761]},"o":{"x":[0.533],"y":[0.308]},"s":[127.5],"t":195},{"i":{"x":[0.64],"y":[-0.541]},"o":{"x":[0.396],"y":[-1.016]},"s":[141.81],"t":237},{"i":{"x":[0.526],"y":[0.505]},"o":{"x":[0.344],"y":[0.335]},"s":[130.868],"t":295},{"i":{"x":[0.712],"y":[-0.181]},"o":{"x":[0.407],"y":[-0.87]},"s":[99.351],"t":333},{"i":{"x":[0.983],"y":[0.512]},"o":{"x":[0.345],"y":[0.153]},"s":[130.629],"t":410},{"s":[371],"t":474}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.625],"y":[0.799]},"o":{"x":[0.311],"y":[0.365]},"s":[-38.306],"t":195},{"i":{"x":[0.705],"y":[1.614]},"o":{"x":[0.291],"y":[1.098]},"s":[6.433],"t":263},{"i":{"x":[0.667],"y":[0.679]},"o":{"x":[0.642],"y":[0.119]},"s":[15.02],"t":355},{"i":{"x":[0.705],"y":[0.534]},"o":{"x":[0.364],"y":[0.833]},"s":[-21.72],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.819],"y":[0.357]},"s":[-45.597],"t":444},{"s":[-87.188],"t":470}]},"s":{"a":0,"ix":6,"k":[15,15,100]}},"nm":"skinny fish 4","op":480,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":19,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[11.81,62.175,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":15,"ti":[-1.038,5.415,0],"to":[0.165,-3.508,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1348.369,78.178,0],"t":30,"ti":[-0.229,-0.023,0],"to":[1.038,-5.415,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1343.133,66.738,0],"t":125,"ti":[0.644,-1.93,0],"to":[0.229,0.023,0]},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[-1346.994,78.317,0],"t":141,"ti":[0,0,0],"to":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[-1346.994,78.317,0],"t":203,"ti":[0.395,-3.485,0],"to":[0.644,-1.93,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1343.133,66.738,0],"t":218,"ti":[0.841,-6.841,0],"to":[-0.395,3.485,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":240,"ti":[-1.038,5.415,0],"to":[-0.841,6.841,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1348.178,107.783,0],"t":300,"ti":[-0.197,4.911,0],"to":[1.038,-5.415,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1343.133,66.738,0],"t":313,"ti":[1.038,-5.415,0],"to":[0.197,-4.911,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1346.994,78.317,0],"t":435,"ti":[0.395,-3.485,0],"to":[-1.038,5.415,0]},{"s":[-1349.362,99.226,0],"t":457}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":15},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[-11.5],"t":30},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[0.5],"t":125},{"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]},"s":[-3.5],"t":141},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.45],"y":[0]},"s":[-3.5],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[0.5],"t":218},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":240},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-21.5],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[0.5],"t":313},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-3.5],"t":435},{"s":[-18.5],"t":457}]},"s":{"a":0,"ix":6,"k":[175,175,100]}},"nm":"Lamp beam","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-2.852,1.23],[0.094,3.25],[1.598,3.375],[1.692,0.98]],"o":[[3.478,-1.5],[-0.094,-3.25],[-1.598,-3.375],[-1.379,-0.799]],"v":[[-52.057,89.048],[-47.168,71.423],[-50.364,48.298],[-54.783,43.048]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-1.719,1.23],[0.057,3.25],[0.963,3.375],[1.02,0.98]],"o":[[2.097,-1.5],[-0.057,-3.25],[-0.963,-3.375],[-0.831,-0.799]],"v":[[-54.794,89.048],[-51.848,71.423],[-53.774,48.298],[-56.438,43.048]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.652,0.521],[-3.517,6.411],[8.412,7.942],[5.302,3.328]],"o":[[5.616,-0.801],[3.469,-6.323],[-3.633,-3.43],[-1.933,-1.213]],"v":[[-19.704,87.813],[-4.834,76.764],[-8.043,44.51],[-15.172,39.353]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-1.719,1.23],[0.057,3.25],[0.963,3.375],[1.02,0.98]],"o":[[2.097,-1.5],[-0.057,-3.25],[-0.963,-3.375],[-0.831,-0.799]],"v":[[-54.794,89.048],[-51.848,71.423],[-53.774,48.298],[-56.438,43.048]]}],"t":435},{"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.901960790157,0.623529434204,0.117647059262,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"beam circle line 1","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[2.818,-1.36],[-0.094,-3.25],[-2.538,-4.75],[-1.504,0]],"o":[[-4.744,2.29],[0.094,3.25],[1.737,3.251],[1.504,0]],"v":[[-57.173,42.968],[-62.774,61.777],[-59.39,85.152],[-52.997,89.277]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[1.699,-1.36],[-0.057,-3.25],[-1.53,-4.75],[-0.907,0]],"o":[[-2.86,2.29],[0.057,3.25],[1.047,3.251],[0.907,0]],"v":[[-57.878,42.968],[-61.254,61.777],[-59.214,85.152],[-55.361,89.277]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[4.593,0.723],[0.582,-3.467],[-7.849,-5.712],[-2.338,0]],"o":[[-20.18,-3.177],[-0.861,5.126],[5.895,4.29],[2.338,0]],"v":[[-16.426,38.82],[-43.007,58.795],[-35.373,83.427],[-21.39,88.368]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[1.699,-1.36],[-0.057,-3.25],[-1.53,-4.75],[-0.907,0]],"o":[[-2.86,2.29],[0.057,3.25],[1.047,3.251],[0.907,0]],"v":[[-57.878,42.968],[-61.254,61.777],[-59.214,85.152],[-55.361,89.277]]}],"t":435},{"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[1,1,1,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"inside highlight line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.929,0.487],[0,-5.772],[-3.196,0.25],[-0.47,5.375],[0.282,2.625]],"o":[[-4.513,-0.75],[0,8.125],[2.469,-0.193],[0.47,-5.375],[-0.282,-2.625]],"v":[[-51.869,48.527],[-57.039,66.402],[-50.458,86.152],[-47.92,75.652],[-49.142,55.402]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[1.766,0.487],[0,-5.772],[-1.927,0.25],[-0.283,5.375],[0.17,2.625]],"o":[[-2.72,-0.75],[0,8.125],[1.488,-0.193],[0.283,-5.375],[-0.17,-2.625]],"v":[[-54.681,48.527],[-57.798,66.402],[-53.831,86.152],[-52.301,75.652],[-53.038,55.402]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.629,-3.254],[-0.201,-6.223],[-9.29,-5.279],[-1.677,5.668],[7.085,6.151]],"o":[[-8.596,2.632],[0.353,10.895],[11.117,6.316],[2.638,-8.916],[-2.38,-2.067]],"v":[[-25.748,43.549],[-39.56,63.619],[-28.2,84.922],[-4.209,71.134],[-8.686,46.296]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.766,0.487],[0,-5.772],[-1.927,0.25],[-0.283,5.375],[0.17,2.625]],"o":[[-2.72,-0.75],[0,8.125],[1.488,-0.193],[0.283,-5.375],[-0.17,-2.625]],"v":[[-54.681,48.527],[-57.798,66.402],[-53.831,86.152],[-52.301,75.652],[-53.038,55.402]]}],"t":435},{"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bulb","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.384,-4],[0.376,-6],[-2.256,-3.5],[-2.256,1],[0.376,10.75],[1.489,3.366]],"o":[[-3.027,3.578],[-0.376,6],[2.256,3.5],[2.256,-1],[-0.263,-7.509],[-1.88,-4.25]],"v":[[-59.296,44.652],[-62.68,62.652],[-59.39,85.402],[-52.151,89.152],[-47.638,67.152],[-50.646,48.152]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[2.04,-4],[0.227,-6],[-1.36,-3.5],[-1.36,1],[0.227,10.75],[0.898,3.366]],"o":[[-1.825,3.578],[-0.227,6],[1.36,3.5],[1.36,-1],[-0.158,-7.509],[-1.133,-4.25]],"v":[[-59.158,44.652],[-61.198,62.652],[-59.214,85.402],[-54.851,89.152],[-52.131,67.152],[-53.944,48.152]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.26,-4.315],[0.184,-6.492],[-7.437,-6.586],[-3.507,1.079],[0.584,11.596],[4.986,4.245]],"o":[[-4.705,3.859],[-0.272,9.576],[3.888,3.443],[3.507,-1.079],[-0.408,-8.099],[-4.236,-3.606]],"v":[[-32.11,41.832],[-42.34,59.633],[-35.488,83.216],[-18.222,87.758],[-1.658,62.397],[-10.039,42.854]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.04,-4],[0.227,-6],[-1.36,-3.5],[-1.36,1],[0.227,10.75],[0.898,3.366]],"o":[[-1.825,3.578],[-0.227,6],[1.36,3.5],[1.36,-1],[-0.158,-7.509],[-1.133,-4.25]],"v":[[-59.158,44.652],[-61.198,62.652],[-59.214,85.402],[-54.851,89.152],[-52.131,67.152],[-53.944,48.152]]}],"t":435},{"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.96862745285,0.443137258291,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"inside cone","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.952,5.519],[32.652,-49.597],[4.82,-51.058],[-38.298,-54.1],[-26.103,12.489],[-37.47,18.992],[-28.409,13.772],[-7.944,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[29.77,16.866]],"o":[[-7.742,-3.575],[-24.883,37.795],[-3.507,37.145],[16.719,23.618],[31.129,-14.893],[36.074,-18.284],[11.12,-5.39],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-40.969,-23.21]],"v":[[-270.04,-114.08],[-339.378,-83.257],[-380.924,43.3],[-352.332,182.436],[-287.86,217.19],[-182.026,166.112],[-64.608,106.562],[-35.327,91.875],[-10.431,70.718],[-13.093,48.577],[-56.434,18.289],[-118.844,-20.929]]}],"t":15},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.091,2.577],[14.242,-41.561],[1.412,-26.122],[-14.791,-25.908],[-6.795,2.442],[-62.476,17.687],[-28.591,7.926],[-7.509,3.754],[-0.387,9.621],[2.422,3.633],[21.153,6.237],[33.536,9.841]],"o":[[-7.814,-1.667],[-8.416,20.001],[-1.303,36.585],[11.132,22.391],[11.888,-4.272],[31.437,-8.9],[10.431,-2.944],[3.314,-1.657],[0.33,-8.202],[-5.098,-7.647],[-22.227,-6.371],[-60.086,-17.632]],"v":[[-353.897,-50.24],[-389.266,-18.891],[-404.513,59.623],[-388.834,158.539],[-351.74,176.907],[-171.538,125.789],[-70.051,97.162],[-44.838,88.498],[-35.526,68.727],[-38.726,48.707],[-73.046,33.791],[-177.387,2.236]]}],"t":22},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[12.137,1.599],[8.12,-38.889],[0.279,-17.83],[-6.975,-16.533],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.154,4.303],[12.5,3]],"o":[[-7.838,-1.032],[-2.941,14.084],[-0.57,36.399],[9.274,21.983],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-22.891,-4.656],[-12.5,-3]],"v":[[-381.781,-29.012],[-405.854,2.511],[-412.357,65.051],[-400.971,150.594],[-372.98,163.512],[-157.491,113.168],[-71.86,94.036],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.679,36.759],[-193.301,15.24]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.2,2.065],[9.992,-45.581],[-0.127,-32.035],[-1.989,-4.834],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.172,4.214],[12.5,3]],"o":[[-7.748,-1.569],[-3.081,14.054],[0.083,20.896],[4.771,11.597],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-23.454,-4.668],[-12.5,-3]],"v":[[-341.879,-17.315],[-372.904,16.394],[-376.678,84.672],[-368.055,136.802],[-350.602,157.052],[-155.405,112.011],[-70.138,93.527],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-191.387,15.686]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[8.967,0.213],[2.94,-15.953],[1.385,-12.467],[-1.247,-7.871],[0,0],[0,0],[-29.023,3.791],[-8.771,2.67],[-0.38,9.435],[2.376,3.564],[21.408,2.772],[19.06,2.948]],"o":[[-16.195,-3.341],[-2.902,15.748],[-2.409,21.682],[2.873,18.129],[0,0],[0,0],[10.49,-1.37],[3.476,-1.058],[0.324,-8.044],[-5,-7.5],[-20.829,-2.697],[-12.704,-1.965]],"v":[[-454.854,1.408],[-474.586,19.286],[-479.174,60.372],[-475.091,132.115],[-465.612,152.362],[-260.157,121.111],[-78.337,93.057],[-51.698,88.692],[-47.029,68.491],[-50.133,48.876],[-78.876,39.005],[-254.805,22.258]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[17.069,1.595],[0.421,-11.97],[0.346,-10.565],[-0.235,-7.756],[0,0],[0,0],[-33.812,3.951],[-7.364,3.682],[-0.38,9.435],[0.621,2.534],[21.532,1.417],[18.841,0.186]],"o":[[-4.687,6.037],[-0.301,8.562],[-0.513,15.682],[0.493,16.23],[0,0],[0,0],[9.12,-1.066],[3.25,-1.625],[0.324,-8.044],[-2.145,-8.755],[-20.723,-1.364],[-12.854,-0.127]],"v":[[-523.868,2.923],[-528.886,40.486],[-529.665,72.796],[-528.578,114.073],[-523.436,144.13],[-264.147,114.137],[-74.205,91.03],[-54.61,88.053],[-51.548,67.794],[-54.487,48.598],[-80.31,39.514],[-260.583,24.957]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.367,0.783],[8.341,-39.765],[-1.243,-18.908],[-6.75,-17.569],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.296,3.532],[12.5,3]],"o":[[-7.871,-0.737],[-2.954,14.081],[0.978,14.88],[9.171,23.869],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-24.339,-4.037],[-12.5,-3]],"v":[[-377.25,-24.328],[-405.061,8.182],[-410.777,80.401],[-398.229,149.08],[-372.818,164.545],[-211.959,126.243],[-69.728,93.248],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-235.34,5.574]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[15.05,10.157],[29.468,-27.773],[5.531,-34.275],[-37.378,-53.991],[0,0],[-37.471,18.992],[-28.41,13.772],[-7.943,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[30.992,19.487]],"o":[[-21.912,-14.788],[-32.569,30.696],[-3.493,21.646],[36.269,52.388],[0,0],[36.074,-18.284],[11.12,-5.391],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-39.862,-25.063]],"v":[[-260.375,-111.383],[-333.415,-95.852],[-387.241,20.902],[-363.65,179.185],[-288.332,218.776],[-182.854,167.102],[-66.321,107.507],[-28.438,88.398],[-10.24,68.674],[-14.491,47.433],[-56.544,18.382],[-163.317,-48.837]]}],"t":240},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.775,9.663],[59.203,-33.692],[16.607,-128.208],[-29.75,-19.69],[-50.491,37.725],[-29.609,20.711],[-24.828,19.502],[-7.195,5.269],[-0.41,10.178],[3.257,3.276],[17.473,13.381],[28.504,21.354]],"o":[[-25.488,-19.279],[-27.86,15.855],[-16.694,128.88],[63.612,42.1],[34.028,-25.424],[37.072,-25.931],[12.423,-9.758],[3.162,-2.316],[0.349,-8.677],[-6.636,-6.675],[-18.487,-14.157],[-38.802,-29.069]],"v":[[-235.681,-127.601],[-362.257,-151.685],[-493.509,53.749],[-411.075,267.823],[-262.456,258.354],[-173.112,196.968],[-62.42,118.434],[-26.421,92.326],[-2.535,69.552],[-5.883,47.592],[-51.247,14.198],[-118.974,-37.626]]}],"t":300},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[51.934,14.554],[15.764,-23.072],[0.441,-31.885],[-22.667,-27.668],[-18.423,5.452],[-50.925,15.469],[-27.942,8.49],[-7.333,3.976],[-0.385,9.573],[2.539,3.51],[20.538,5.64],[34.191,9.804]],"o":[[-16.201,-4.54],[-17.989,26.329],[-0.494,35.765],[12.176,14.862],[50.487,-14.94],[30.686,-9.321],[10.614,-3.545],[3.234,-1.753],[0.328,-8.162],[-5.303,-7.347],[-21.451,-5.917],[-48.149,-13.807]],"v":[[-320.322,-37.849],[-368.529,-22.884],[-399.516,67.621],[-371.21,171.125],[-313.587,172.509],[-167.701,127.894],[-68.797,98.154],[-43.997,88.293],[-36.202,68.341],[-39.576,48.535],[-73.342,32.974],[-176.528,5.782]]}],"t":306},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[16.106,2.829],[8.204,-31.825],[1.143,-26.169],[-7.019,-8.653],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.236,3.877],[12.5,3]],"o":[[-7.786,-1.368],[-4.352,16.885],[-1.312,30.035],[10.691,13.181],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-22.127,-4.04],[-12.5,-3]],"v":[[-339.6,-17.406],[-369.958,6.451],[-378.109,70.781],[-362.13,149.1],[-325.233,152.957],[-157.198,112.704],[-70.249,93.535],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-189.636,15.669]]}],"t":313},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.967,0.213],[2.738,-15.015],[1.385,-12.467],[-1.247,-7.871],[0,0],[0,0],[-28.651,5.982],[-8.771,2.67],[-0.38,9.435],[1.081,4.285],[20.741,2.408],[19.06,2.948]],"o":[[-16.195,-3.341],[-2.873,15.753],[-2.409,21.682],[2.873,18.129],[0,0],[0,0],[10.202,-2.13],[3.476,-1.058],[0.324,-8.044],[-1.786,-7.076],[-20.863,-2.422],[-12.704,-1.965]],"v":[[-455.328,1.259],[-474.592,19.091],[-479.174,60.372],[-475.091,132.115],[-465.009,152.111],[-260.309,121.853],[-70.375,92.25],[-55.624,89.199],[-51.764,69.322],[-54.156,47.733],[-79.076,40.305],[-254.804,22.258]]}],"t":435},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[11.491,4.701],[28.039,-44.264],[4.291,-45.107],[-32.585,-46.971],[-22.078,10.563],[-31.692,16.063],[-28.447,12.571],[-8.071,3.771],[-0.405,10.063],[2.334,3.912],[21.088,10.567],[28.118,14.72]],"o":[[-9.045,-3.539],[-21.488,34.396],[-3.337,34.761],[14.584,22.771],[26.328,-12.597],[30.512,-15.465],[10.978,-4.888],[3.501,-1.646],[0.345,-8.58],[-4.837,-7.934],[-20.328,-10.125],[-36.61,-19.934]],"v":[[-298.612,-96.295],[-360.229,-67.474],[-396.075,45.933],[-371.262,174.676],[-315.178,207.155],[-194.098,159.287],[-65.498,104.355],[-38.457,91.463],[-16.805,70.503],[-19.425,48.447],[-59.925,21.684],[-146.392,-22.308]]}],"t":446},{"s":[{"c":true,"i":[[11.952,5.519],[32.652,-49.597],[4.82,-51.058],[-38.298,-54.1],[-26.103,12.489],[-37.47,18.992],[-28.409,13.772],[-7.944,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[29.77,16.866]],"o":[[-7.742,-3.575],[-24.883,37.795],[-3.507,37.145],[16.719,23.618],[31.129,-14.893],[36.074,-18.284],[11.12,-5.39],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-40.969,-23.21]],"v":[[-270.04,-114.08],[-339.378,-83.257],[-380.924,43.3],[-352.332,182.436],[-287.86,217.19],[-182.026,166.112],[-64.608,106.562],[-35.327,91.875],[-10.431,70.718],[-13.093,48.577],[-56.434,18.289],[-118.844,-20.929]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"e":{"a":0,"ix":6,"k":[-39.242,69.189]},"g":{"k":{"a":0,"ix":9,"k":[0,1,0.969,0.443,0.5,1,0.969,0.443,1,1,0.969,0.443,0,0,0.5,0.5,1,1]},"p":3},"hd":false,"mn":"ADBE Vector Graphic - G-Fill","nm":"Gradient Fill 1","o":{"a":0,"ix":10,"k":100},"r":1,"s":{"a":0,"ix":5,"k":[-305.779,55.712]},"t":1,"ty":"gf"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":10},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"light beam","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":1,"ddd":0,"ind":20,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":45},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Royal Blue Solid 1","op":480,"sc":"#2e5fd8","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"ind":21,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1192.089,97.616,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1233.618,84.445,0],"t":0,"ti":[0.563,0.194,0],"to":[1.126,0.388,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1226.864,86.77,0],"t":125,"ti":[0.675,0.233,0],"to":[-0.563,-0.194,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.48,"y":0},"s":[-1236.995,83.282,0],"t":141,"ti":[-0.113,-0.039,0],"to":[-0.675,-0.233,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1230.917,85.375,0],"t":218,"ti":[-0.45,-0.155,0],"to":[0.113,0.039,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.333,"y":0},"s":[-1236.32,83.514,0],"t":240,"ti":[0.113,0.039,0],"to":[0.45,0.155,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1228.215,86.305,0],"t":300,"ti":[0.563,0.194,0],"to":[-0.113,-0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.48,"y":0},"s":[-1236.995,83.282,0],"t":345,"ti":[-0.563,-0.194,0],"to":[-0.563,-0.194,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1231.592,85.142,0],"t":435,"ti":[0.338,0.116,0],"to":[0.563,0.194,0]},{"s":[-1233.618,84.445,0],"t":479}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-33],"t":0},{"i":{"x":[0.4],"y":[0.92]},"o":{"x":[0.508],"y":[0]},"s":[-20],"t":125},{"i":{"x":[0.822],"y":[-3.493]},"o":{"x":[0.181],"y":[-5.313]},"s":[-69],"t":141},{"i":{"x":[0.886],"y":[0.887]},"o":{"x":[0.463],"y":[0.062]},"s":[-68.132],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.141],"y":[0.378]},"s":[-28.5],"t":218},{"i":{"x":[0.737],"y":[1.211]},"o":{"x":[0.333],"y":[0]},"s":[-7],"t":240},{"i":{"x":[0.541],"y":[0.397]},"o":{"x":[0.627],"y":[0.147]},"s":[-15],"t":300},{"i":{"x":[0.565],"y":[1.438]},"o":{"x":[0.216],"y":[1.02]},"s":[-8.607],"t":314},{"i":{"x":[0.587],"y":[0.684]},"o":{"x":[0.49],"y":[0.077]},"s":[-4.683],"t":345},{"i":{"x":[0.755],"y":[1.203]},"o":{"x":[0.335],"y":[1.066]},"s":[-65],"t":419},{"i":{"x":[0.56],"y":[0.527]},"o":{"x":[0.985],"y":[0.137]},"s":[-68.132],"t":435},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.237],"y":[0.684]},"s":[-42.541],"t":457},{"s":[-33],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front arm","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[0.131,3.718],[1.046,3.495]],"o":[[3.537,3.766],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-0.131,-3.718],[0,0]],"v":[[-1236.741,90.401],[-1228.246,101.042],[-1225.579,103.683],[-1223.135,102.551],[-1219.979,92.497],[-1225.527,83.709]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.634,-3.921],[-1.436,-0.168],[-0.845,0.698],[0.161,3.718],[1.28,3.495]],"o":[[1.572,4.454],[0.806,1.2],[1.089,0.127],[2.87,-2.369],[-0.161,-3.718],[0,0]],"v":[[-1249.157,90.401],[-1242.815,103.031],[-1239.552,105.672],[-1236.56,104.54],[-1232.699,94.486],[-1235.435,83.709]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.634,-3.921],[-1.436,-0.168],[-0.845,0.698],[0.161,3.718],[1.28,3.495]],"o":[[1.572,4.454],[0.806,1.2],[1.089,0.127],[2.87,-2.369],[-0.161,-3.718],[0,0]],"v":[[-1249.157,90.401],[-1242.815,103.031],[-1239.552,105.672],[-1236.56,104.54],[-1232.699,94.486],[-1235.435,83.709]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.567,-3.921],[-1.4,-0.168],[-0.824,0.698],[0.157,3.718],[1.248,3.495]],"o":[[1.845,4.359],[0.786,1.2],[1.061,0.127],[2.797,-2.369],[-0.157,-3.718],[0,0]],"v":[[-1247.205,90.123],[-1240.563,102.477],[-1237.383,105.118],[-1234.468,103.986],[-1230.705,93.932],[-1233.832,83.432]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.88,-4.586],[-1.331,-0.376],[-0.907,0.638],[-0.425,4.032],[0.668,3.942]],"o":[[2.515,4.75],[0.575,1.404],[1.009,0.285],[3.079,-2.166],[0.425,-4.032],[0,0]],"v":[[-1247.032,88.898],[-1240.366,102.273],[-1237.693,105.564],[-1234.692,104.749],[-1229.486,94.431],[-1233.032,83.545]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.99,-4.317],[-1.267,-0.291],[-0.819,0.662],[-0.199,3.905],[3.207,4.227]],"o":[[5.902,5.386],[0.609,1.321],[0.96,0.221],[2.781,-2.248],[0.199,-3.905],[0,0]],"v":[[-1249.606,91.113],[-1241.081,105.137],[-1238.41,108.164],[-1235.635,107.221],[-1232.378,95.253],[-1236.735,85.217]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[1.974,3.38],[3.146,2.774]],"o":[[6.082,3.088],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-1.876,-3.213],[0,0]],"v":[[-1236.741,90.401],[-1224.211,100.493],[-1221.544,103.134],[-1219.1,102.002],[-1218.525,92.267],[-1225.527,83.709]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[1.493,4.077],[3.577,2.701]],"o":[[6.148,2.392],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-1.279,-3.494],[0,0]],"v":[[-1234.024,92.261],[-1222.744,103.635],[-1220.078,106.276],[-1217.633,105.144],[-1217.632,92.977],[-1224.214,84.467]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.99,-4.317],[-1.267,-0.291],[-0.819,0.662],[-0.199,3.905],[3.207,4.227]],"o":[[5.902,5.386],[0.609,1.321],[0.96,0.221],[2.781,-2.248],[0.199,-3.905],[0,0]],"v":[[-1249.606,91.113],[-1241.081,105.137],[-1238.41,108.164],[-1235.635,107.221],[-1232.378,95.253],[-1236.735,85.217]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.88,-4.586],[-1.331,-0.376],[-0.907,0.638],[-0.425,4.032],[0.668,3.942]],"o":[[2.515,4.75],[0.575,1.404],[1.009,0.285],[3.079,-2.166],[0.425,-4.032],[0,0]],"v":[[-1247.032,88.898],[-1240.366,102.273],[-1237.693,105.564],[-1234.692,104.749],[-1229.486,94.431],[-1233.032,83.545]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[0.131,3.718],[1.046,3.495]],"o":[[3.537,3.766],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-0.131,-3.718],[0,0]],"v":[[-1236.741,90.401],[-1228.246,101.042],[-1225.579,103.683],[-1223.135,102.551],[-1219.979,92.497],[-1225.527,83.709]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.239,-6.04],[-0.896,-0.015],[-0.539,0.502],[2.384,5.314],[3.274,1.799]],"o":[[6.652,3.744],[0.122,0.594],[1.119,0.019],[3.791,-3.531],[-1.592,-3.549],[0,0]],"v":[[-1258.577,106.077],[-1248.922,116.945],[-1245.797,120.407],[-1242.813,118.866],[-1241.597,104.753],[-1246.413,98.334]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.516,-6.04],[-0.528,-0.31],[-0.66,0.502],[-0.481,5.81],[-0.007,3.016]],"o":[[1.516,6.04],[0.149,0.594],[0.715,0.42],[4.639,-3.531],[0.249,-3.006],[0,0]],"v":[[-1277.611,103.125],[-1273.062,121.246],[-1272.191,122.806],[-1269.911,122.286],[-1263.518,106.574],[-1263.134,97.537]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[0.121,7.484],[1.903,3.199]],"o":[[2.057,5.878],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[-0.049,-3.015],[0,0]],"v":[[-1280.806,99.93],[-1270.736,119.225],[-1270,120.853],[-1267.684,120.525],[-1261.883,104.335],[-1264.76,95.785]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.432,-6.676],[-0.467,-0.396],[-0.736,0.381],[1.838,8.814],[1.614,3.354]],"o":[[3.526,4.425],[0.129,0.599],[0.632,0.537],[5.176,-2.683],[-0.616,-2.952],[0,0]],"v":[[-1278.825,100.509],[-1270.234,118.549],[-1269.643,120.235],[-1267.307,120.113],[-1260.826,104.838],[-1264.283,95.467]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-4.708,-4.5],[-0.884,0.145],[-0.44,0.59],[4.127,5.595],[3.274,1.799]],"o":[[8.962,3.994],[0.438,0.419],[1.105,-0.182],[3.097,-4.153],[-2.309,-3.13],[0,0]],"v":[[-1258.577,106.077],[-1241.868,117.161],[-1238.174,120.007],[-1235.514,117.957],[-1238.778,103.168],[-1246.413,98.334]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.668,-3.725],[-0.974,0.033],[-0.558,0.575],[4.606,4.175],[3.274,1.799]],"o":[[8.51,2.348],[1.675,2.338],[1.217,-0.041],[3.923,-4.046],[-2.882,-2.612],[0,0]],"v":[[-1255.555,106.315],[-1240.878,114.408],[-1235.055,122.204],[-1230.081,120.248],[-1235.825,102.837],[-1243.308,97.502]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.432,-6.676],[-0.467,-0.396],[-0.736,0.381],[1.838,8.814],[1.614,3.354]],"o":[[3.526,4.425],[0.129,0.599],[0.632,0.537],[5.176,-2.683],[-0.616,-2.952],[0,0]],"v":[[-1278.825,100.509],[-1270.234,118.549],[-1269.643,120.235],[-1267.307,120.113],[-1260.826,104.838],[-1264.283,95.467]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-1.239,-6.04],[-0.896,-0.015],[-0.539,0.502],[2.384,5.314],[3.274,1.799]],"o":[[6.652,3.744],[0.122,0.594],[1.119,0.019],[3.791,-3.531],[-1.592,-3.549],[0,0]],"v":[[-1258.577,106.077],[-1248.922,116.945],[-1245.797,120.407],[-1242.813,118.866],[-1241.597,104.753],[-1246.413,98.334]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.525,-3.635],[-1.415,-1.206],[-1.696,0.761],[-0.501,2.147],[0.245,5.4]],"o":[[0.411,3.92],[0.719,1.714],[1.415,1.206],[2.011,-0.902],[1.227,-5.265],[0,0]],"v":[[-1308.868,112.916],[-1305.943,124.33],[-1302.933,128.964],[-1297.752,130.004],[-1294.408,124.581],[-1292.925,108.482]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.959,-3.42],[-1.553,-1.023],[-1.59,0.964],[-0.233,2.192],[2.298,6.454]],"o":[[0.889,3.84],[0.924,1.613],[1.553,1.023],[1.885,-1.143],[0.572,-5.376],[0,0]],"v":[[-1308.616,110.992],[-1301.8,121.697],[-1298.244,125.926],[-1292.974,126.322],[-1290.322,120.529],[-1293.339,104.634]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.573,-3.614],[-1.431,-1.187],[-1.686,0.784],[-0.472,2.153],[1.578,6.666]],"o":[[0.464,3.914],[0.742,1.704],[1.431,1.187],[1.999,-0.929],[1.157,-5.281],[0,0]],"v":[[-1310.303,110.01],[-1304.699,121.397],[-1301.627,125.99],[-1296.432,126.96],[-1293.162,121.492],[-1294.421,105.362]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.361,-4.005],[-1.681,-1.09],[-1.495,1.368],[0.011,2.734],[9.514,4.918]],"o":[[8.113,1.614],[1.113,1.889],[1.681,1.09],[1.773,-1.622],[-0.028,-6.704],[0,0]],"v":[[-1277.957,121.391],[-1260.037,130.391],[-1255.976,135.216],[-1250.617,135.115],[-1248.595,127.663],[-1264.395,111.761]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.573,-3.614],[-1.431,-1.187],[-1.686,0.784],[-0.472,2.153],[1.578,6.666]],"o":[[0.464,3.914],[0.742,1.704],[1.431,1.187],[1.999,-0.929],[1.157,-5.281],[0,0]],"v":[[-1310.303,110.01],[-1304.699,121.397],[-1301.627,125.99],[-1296.432,126.96],[-1293.162,121.492],[-1294.421,105.362]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front arm stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[-0.677,-9.061],[8.335,3.257],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.21,7.307],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[0.686,9.17],[-1.905,-0.744],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.43,-6.452],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.513,-10.687],[1.734,-6.34],[9.189,5.001],[2.362,-6.398],[-9.482,-3.942],[-20.194,1.752],[-17.192,4.746],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.345,0.563],[-2.056,7.516],[-1.88,-1.023],[-4.473,12.116],[8.505,3.536],[14.376,-1.362],[17.267,-4.783],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1313.519,113.365],[-1328.186,116.559],[-1352.862,120.495],[-1361.96,127.966],[-1350.994,159.825],[-1313.619,162.147],[-1261.454,153.413],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[5.698,-5.261],[8.446,6.173],[3.188,-6.029],[-8.877,-5.162],[-20.248,-0.936],[-17.782,1.373],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.399,0.248],[-5.725,5.286],[-1.728,-1.263],[-6.037,11.417],[7.963,4.631],[14.43,0.552],[17.938,-1.385],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1328.755,103.135],[-1354.955,105.075],[-1364.962,111.276],[-1358.307,144.306],[-1321.568,151.553],[-1262.426,149.958],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.866,-16.525],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.263,0.834],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1314.728,111.674],[-1329.525,115.258],[-1357.186,119.039],[-1365.961,126.887],[-1360.432,161.506],[-1326.879,168.755],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.023,-12.552],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.32,0.661],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1318.178,110.259],[-1332.698,114.068],[-1357.186,119.039],[-1367.746,126.848],[-1362.217,161.467],[-1330.108,169.399],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[2.557,-6.055],[8.446,6.173],[3.188,-6.029],[-8.877,-5.162],[-20.248,-0.936],[-17.782,1.373],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.399,0.248],[-3.032,7.178],[-1.728,-1.263],[-6.037,11.417],[7.963,4.631],[14.43,0.552],[17.938,-1.385],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1329.975,104.438],[-1354.955,105.075],[-1364.962,111.276],[-1358.307,144.306],[-1321.568,151.553],[-1262.426,149.958],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[0.751,-10.313],[7.479,4.495],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.354,6.999],[-21.959,8.8],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[-0.479,6.576],[-1.753,-1.054],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.557,-6.18],[24.843,-9.956],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[16.826,-10.701],[41.414,-24.649],[2.648,-9.509],[9.077,1.898],[2.415,-10.618],[-5.027,-5.802],[-13.782,10.909],[-16.527,7.989],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.182,1.299],[-2.378,8.538],[-2.178,-0.455],[-4.075,17.917],[7.287,8.411],[17.339,-13.724],[10.773,-5.208],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1284.446,123.726],[-1300.718,131.043],[-1333.813,143.852],[-1344.012,156.809],[-1331.292,191.125],[-1285.737,186.126],[-1236.832,156.314],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[4.418,-8.261],[8.446,6.173],[3.188,-6.029],[-8.297,-6.051],[-17.379,4.214],[-17.723,1.991],[-26.606,7.275],[-14.634,9.513],[2.179,14.332]],"o":[[-42.576,22.128],[-2.399,0.248],[-2.557,4.782],[-1.728,-1.263],[-6.037,11.417],[13.065,9.529],[23.245,-5.637],[19.709,-2.214],[27.971,-7.649],[8.245,-5.36],[-5.403,-35.53]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1329.975,104.438],[-1354.955,105.075],[-1366.884,111.335],[-1362.406,149.207],[-1321.796,152.82],[-1262.426,149.958],[-1209.395,139.602],[-1154.705,116.767],[-1141.428,85.024]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[20.59,-10.701],[44.023,-12.552],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.32,0.661],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1318.178,110.259],[-1332.698,114.068],[-1357.186,119.039],[-1367.746,126.848],[-1362.217,161.467],[-1330.108,169.399],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":435},{"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[-4.865,-5.689],[8.335,3.257],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.21,7.307],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[5.976,6.989],[-1.905,-0.744],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.43,-6.452],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front arm","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1261.786,114.847]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1261.786,114.847]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front arm","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":22,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[11.81,62.175,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":15,"ti":[-1.038,5.415,0],"to":[0.165,-3.508,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1348.369,78.178,0],"t":30,"ti":[-0.229,-0.023,0],"to":[1.038,-5.415,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1343.133,66.738,0],"t":125,"ti":[0.644,-1.93,0],"to":[0.229,0.023,0]},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[-1346.994,78.317,0],"t":141,"ti":[0,0,0],"to":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[-1346.994,78.317,0],"t":203,"ti":[0.395,-3.485,0],"to":[0.644,-1.93,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1343.133,66.738,0],"t":218,"ti":[0.841,-6.841,0],"to":[-0.395,3.485,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":240,"ti":[-1.038,5.415,0],"to":[-0.841,6.841,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1348.178,107.783,0],"t":300,"ti":[-0.197,4.911,0],"to":[1.038,-5.415,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1343.133,66.738,0],"t":313,"ti":[1.038,-5.415,0],"to":[0.197,-4.911,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1346.994,78.317,0],"t":435,"ti":[0.395,-3.485,0],"to":[-1.038,5.415,0]},{"s":[-1349.362,99.226,0],"t":457}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":15},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[-11.5],"t":30},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[0.5],"t":125},{"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]},"s":[-3.5],"t":141},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.45],"y":[0]},"s":[-3.5],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[0.5],"t":218},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":240},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-21.5],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[0.5],"t":313},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-3.5],"t":435},{"s":[-18.5],"t":457}]},"s":{"a":0,"ix":6,"k":[175,175,100]}},"nm":"Lamp","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.406,-0.552],[-1.548,3.655],[0.47,9.125],[7.145,0.875]],"o":[[3.855,0.625],[2.774,-6.551],[-0.437,-8.484],[-3.95,-0.484]],"v":[[-57.077,96.22],[-47.732,90.153],[-43.972,66.027],[-55.347,36.527]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-2.053,-0.552],[-0.933,3.655],[0.283,9.125],[4.307,0.875]],"o":[[2.323,0.625],[1.672,-6.551],[-0.263,-8.484],[-2.381,-0.484]],"v":[[-57.82,96.22],[-52.188,90.153],[-49.921,66.027],[-56.778,36.527]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-5.293,-0.596],[-3.348,3.307],[0.08,12.581],[27.27,-0.154]],"o":[[5.99,0.674],[7.12,-7.033],[-0.059,-9.21],[-6.164,0.035]],"v":[[-20.496,94.594],[-4.641,87.681],[6.239,61.243],[-24.753,31.309]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-2.053,-0.552],[-0.933,3.655],[0.283,9.125],[4.307,0.875]],"o":[[2.323,0.625],[1.672,-6.551],[-0.263,-8.484],[-2.381,-0.484]],"v":[[-57.82,96.22],[-52.188,90.153],[-49.921,66.027],[-56.778,36.527]]}],"t":435},{"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[4.05,-0.181]],"o":[[0,0],[-5.182,0.231]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[-5.242,49.842]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[-10.005,49.978]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,-0.544]],"o":[[0,0],[-5.137,0.719]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[3.725,-0.619]],"o":[[0,0],[-5.117,0.85]],"v":[[45.461,47.915],[24.165,50.216]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.937,49.909],[-10.005,49.978]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[3.959,-0.261]],"o":[[0,0],[-5.176,0.341]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[3.761,-0.5],[0.752,-9],[-1.88,-7],[-3.736,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-3.761,0.5],[-0.752,9],[1.02,3.796],[3.957,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-57.039,36.652],[-66.065,57.152],[-64.936,82.652],[-58.955,95.592],[-40.502,94.999],[-29.002,89.874],[-21.627,69.374],[-24.127,46.499]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.252,-1.585],[-5,0],[-1.895,3.055],[0,7.5],[1.646,5.585]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.385,1.679],[5,0],[2.792,-4.5],[0,-7.5],[-1.621,-5.5]],"v":[[-36.5,36],[-57.798,36.652],[-63.238,57.152],[-62.558,82.652],[-58.952,95.592],[-40.502,94.999],[-28.991,89.697],[-23.676,69.197],[-25.478,46.322]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.836,-0.002],[4.809,-1.207],[2.9,-9.453],[-4.388,-6.962],[-5.806,-1.71],[-5.844,0],[-4.827,1.754],[-1.374,7.972],[5.345,8.238]],"o":[[-10.536,0.001],[-12.583,3.158],[-3.267,10.649],[4.535,7.195],[6.15,1.811],[5.844,0],[9.056,-3.291],[1.288,-7.471],[-2.985,-4.601]],"v":[[-13.477,30.42],[-25.82,31.128],[-47.221,51.953],[-46.1,81.5],[-30.934,93.524],[-14.553,95.915],[-2.815,93.923],[12.772,70.972],[8.168,41.274]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.252,-1.585],[-5,0],[-1.895,3.055],[0,7.5],[1.646,5.585]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.385,1.679],[5,0],[2.792,-4.5],[0,-7.5],[-1.621,-5.5]],"v":[[-36.5,36],[-57.798,36.652],[-63.238,57.152],[-62.558,82.652],[-58.952,95.592],[-40.502,94.999],[-28.991,89.697],[-23.676,69.197],[-25.478,46.322]]}],"t":435},{"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.846,-2.617],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[-0.328,-4.014],[-0.404,-2.833],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.012,2.706],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[0.335,4.094],[0.404,2.833],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-3.895,33.546],[8.078,40.249],[35.139,42.953],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.107,-0.101],[-4.051,-1.688],[-0.161,-2.484],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[2.311,0.075],[1.864,0.777],[0.209,3.22],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[32.215,48.62],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.098,-0.253],[-3.643,-2.095],[-0.199,-3.761],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.853,0.315],[1.743,1.003],[0.17,3.222],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.593,48.283],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.073,0.47],[-3.069,-2.871],[-0.275,-2.552],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.073,-0.47],[1.061,0.993],[0.346,3.208],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-27.143,39.914],[-7,44.996],[25.716,46.127],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.63,91.502]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-3.523,-1.475],[-3.863,0.266],[-3.073,0.47],[-0.546,-2.631],[-0.142,-2.81],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.254,-1.025]],"o":[[3.523,1.475],[3.863,-0.266],[3.073,-0.47],[0.854,4.115],[0.163,3.223],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.254,1.025]],"v":[[-28.256,39.521],[-7.249,45.591],[27.348,46.741],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.164,91.325]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.108,-0.069],[-3.381,-1.903],[-0.24,-2.923],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.782,0.083],[3.662,2.061],[0.264,3.216],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.073,47.41],[34.103,55.566],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-5.273,-1.591],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[0.04,-4.027],[0.054,-2.932],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.273,1.591],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[-0.04,4.032],[-0.053,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-4.211,34.08],[8.078,40.249],[35.139,42.953],[45.464,46.988],[47.341,53.319],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-5.24,-2.778],[-3.891,-1.518],[-3.349,-0.154],[-3.771,-2.148],[0.105,-4.026],[0.058,-3.165],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.333,2.827],[5.518,-0.075],[3.559,0.164],[1.799,1.025],[-0.097,3.726],[-0.052,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[1.607,34.283],[12.559,40.523],[33.784,41.83],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[17.006,81.433],[9.016,85.379],[0.584,91.638]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.105,-0.15],[-3.175,-1.433],[-0.361,-3.15],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.659,0.177],[3.83,1.729],[0.367,3.206],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.049,47.668],[34.066,55.946],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.523,-1.475],[-3.863,0.266],[-3.073,0.47],[-0.546,-2.631],[-0.142,-2.81],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.254,-1.025]],"o":[[3.523,1.475],[3.863,-0.266],[3.073,-0.47],[0.854,4.115],[0.163,3.223],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.254,1.025]],"v":[[-28.256,39.521],[-7.249,45.591],[27.348,46.741],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.164,91.325]]}],"t":435},{"s":[{"c":false,"i":[[-4.604,-3.023],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[-0.766,-3.954],[0.048,-2.697],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[4.693,3.081],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[0.662,3.417],[-0.051,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-3.983,33.503],[8.078,40.249],[35.139,42.953],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.84705889225,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"outlines","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.475,-0.414],[0.846,-2.625],[0.188,-2.75],[-0.658,-2.688],[-2.256,-2.25],[-1.504,2.75],[2.773,0.625],[0.682,6.06],[-0.423,3.562],[-5.923,-1.812]],"o":[[-3.337,0.938],[-0.846,2.625],[-0.188,2.75],[0.658,2.688],[2.138,2.132],[1.504,-2.75],[-2.773,-0.625],[-0.752,-6.688],[0.423,-3.562],[-1.363,-3.5]],"v":[[-56.804,37.965],[-63.291,46.902],[-65.83,60.715],[-64.09,83.34],[-60.424,91.027],[-50.599,90.527],[-55.629,88.84],[-61.74,75.34],[-62.398,52.152],[-52.198,41.965]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[0.889,-0.414],[0.51,-2.625],[0.113,-2.75],[-0.397,-2.688],[-1.36,-2.25],[-0.907,2.75],[1.672,0.625],[0.411,6.06],[-0.255,3.562],[-3.57,-1.812]],"o":[[-2.012,0.938],[-0.51,2.625],[-0.113,2.75],[0.397,2.688],[1.289,2.132],[0.907,-2.75],[-1.672,-0.625],[-0.453,-6.688],[0.255,-3.562],[-0.822,-3.5]],"v":[[-57.656,37.965],[-61.566,46.902],[-63.096,60.715],[-62.048,83.34],[-59.838,91.027],[-53.916,90.527],[-56.948,88.84],[-60.631,75.34],[-61.028,52.152],[-54.879,41.965]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.292,-0.447],[2.565,-3.649],[0.42,-2.953],[-1.023,-2.899],[-3.507,-2.427],[-2.643,2.931],[3.748,2.084],[1.059,6.537],[-10.413,9.29],[-1.412,2.937]],"o":[[-5.187,1.011],[-2.86,4.067],[-1.802,12.664],[1.023,2.899],[3.322,2.3],[2.995,-3.322],[-3.744,-2.082],[-1.169,-7.214],[2.962,-2.643],[-2.119,-3.775]],"v":[[-28.174,32.59],[-41.752,41.616],[-48.276,57.245],[-46.15,81.57],[-37.619,90.297],[-18.486,93.612],[-31.376,86.065],[-43.077,73.259],[-32.983,42.489],[-13.779,35.642]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.889,-0.414],[0.51,-2.625],[0.113,-2.75],[-0.397,-2.688],[-1.36,-2.25],[-0.907,2.75],[1.672,0.625],[0.411,6.06],[-0.255,3.562],[-3.57,-1.812]],"o":[[-2.012,0.938],[-0.51,2.625],[-0.113,2.75],[0.397,2.688],[1.289,2.132],[0.907,-2.75],[-1.672,-0.625],[-0.453,-6.688],[0.255,-3.562],[-0.822,-3.5]],"v":[[-57.656,37.965],[-61.566,46.902],[-63.096,60.715],[-62.048,83.34],[-59.838,91.027],[-53.916,90.527],[-56.948,88.84],[-60.631,75.34],[-61.028,52.152],[-54.879,41.965]]}],"t":435},{"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.427450984716,1,0.811764717102,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"front highlight","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.094,-1.409],[0.859,0.04],[6.029,-6.524],[10.144,-5.113],[-1.496,0.289],[-1.775,1.334],[-2.841,6.865],[0.045,2.036]],"o":[[-2.816,1.282],[-0.859,-0.04],[-2.14,2.316],[-1.439,0.725],[3.775,-0.729],[3.26,-2.45],[2.559,-6.185],[-0.06,-2.664]],"v":[[2.934,59.706],[-1.98,61.787],[-8.687,82.136],[-23.157,94.439],[-12.99,94.374],[-3.413,91.073],[5.981,78.08],[8.616,56.62]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.682,-3.394],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.895,1.978],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-33.18,73.844],[-43.749,77.558],[-45.368,84.098],[-50.831,94.452],[-43.384,95.192],[-33.879,94.052],[-24.486,81.059],[-21.881,67.576]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.441,-4.554],[0.859,0.04],[0.861,-2.665],[2.81,-7.701],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.569,3.87]],"o":[[-4.91,2.649],[-0.859,-0.04],[-0.969,3],[-0.552,1.513],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.388,-2.636]],"v":[[-36.928,63.227],[-49.537,66.775],[-50.424,82.509],[-53.591,94.067],[-46.144,94.807],[-33.19,93.32],[-26.288,82.208],[-24.336,56.405]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.199,-2.666],[2.895,-0.803],[2.381,-3.744],[11.287,-6.94],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.688,2.341],[-0.829,0.23],[-1.692,2.661],[-1.372,0.844],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[4.073,64.829],[-2.971,68.741],[-7.826,80.19],[-22.308,94.47],[-14.861,95.21],[-7.541,93.628],[4.037,81.077],[8.957,61.886]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.181,-1.208],[1.272,-0.88],[2.381,-3.744],[13.48,-3.698],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-0.746,0.763],[-0.707,0.489],[-1.692,2.661],[-1.554,0.426],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[10.442,60.317],[6.43,63.752],[3.238,76.829],[-17.485,94.506],[-10.039,95.246],[-2.718,93.664],[10.502,78.425],[13.285,57.244]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.792,-4.426],[0.926,0.043],[0.263,-3.006],[2.773,-6.311],[-1.635,-0.147],[-3.898,2.138],[-1.624,8.182],[0.049,2.194]],"o":[[-5.785,2.912],[-0.926,-0.043],[-0.411,4.699],[-0.698,1.589],[1.635,0.147],[1.104,-0.605],[1.404,-7.075],[-0.064,-2.871]],"v":[[-38.929,60.022],[-49.611,63.653],[-50.132,78.311],[-53.393,94.168],[-50.177,95.438],[-32.426,92.828],[-24.913,77.462],[-24.612,52.603]]}],"t":435},{"s":[{"c":true,"i":[[3.094,-1.409],[0.859,0.04],[6.029,-6.524],[10.144,-5.113],[-1.496,0.289],[-1.775,1.334],[-2.841,6.865],[0.045,2.036]],"o":[[-2.816,1.282],[-0.859,-0.04],[-2.14,2.316],[-1.439,0.725],[3.775,-0.729],[3.26,-2.45],[2.559,-6.185],[-0.06,-2.664]],"v":[[2.934,59.706],[-1.98,61.787],[-8.687,82.136],[-23.157,94.439],[-12.99,94.374],[-3.413,91.073],[5.981,78.08],[8.616,56.62]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.852,0.058],[2.356,-2.356],[3.842,0.067],[-0.055,-1.574],[0.482,-3.395],[4.928,-5.647],[-3.777,-0.147],[-5.427,0.458],[-0.145,3.111],[0.239,4.634]],"o":[[-2.852,-0.058],[-3.813,3.813],[-3.369,-0.059],[0.075,2.138],[-0.482,3.395],[3.553,-1.255],[3.777,0.147],[5.427,-0.458],[0.218,-4.677],[-0.148,-2.874]],"v":[[32.12,42.47],[22.358,48.175],[11.006,53.551],[9.257,57.052],[9.076,62.499],[2.655,83.919],[16.451,81.281],[43.575,78.771],[47.228,62.227],[47.121,49.643]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[5.22,-2.696],[1.983,0.04],[0.447,-3.147],[-3.855,1.51],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.776,1.434],[-1.983,-0.04],[-0.447,3.147],[11.214,-4.393],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[31,50.043],[7.618,50.526],[-5.263,57.114],[-20.796,62.034],[-21.337,68.921],[-27.016,89.905],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[33.541,54.505]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[4.912,-0.17],[2.598,-0.547],[0.447,-3.147],[2.934,-3.18],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-3.121,0.108],[-1.94,0.409],[-0.447,3.147],[12.306,-4.815],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.679,50.171],[7.618,50.526],[-12.052,50.648],[-23.441,51.543],[-23.577,68.604],[-29.785,90.885],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.267,54.273]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.916,0.629],[2.994,-1.991],[4.583,-2.398],[1.512,0.04],[0.341,-3.147],[4.318,-6.469],[-2.671,-0.137],[-3.837,0.424],[-0.102,2.885],[-0.135,4.297]],"o":[[-4.38,-1.437],[-2.79,1.856],[-2.33,1.219],[-0.022,0.706],[-0.341,3.147],[7.867,-4.292],[2.671,0.137],[3.837,-0.424],[0.154,-4.335],[0.239,-7.603]],"v":[[39.352,43.894],[26.343,48.971],[17.821,54.236],[9.048,58.02],[8.174,68.274],[2.521,85.531],[19.974,81.253],[45.375,78.032],[47.959,62.695],[47.825,53.84]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.916,0.629],[3.007,-2.581],[4.671,-2.699],[1.763,-0.801],[0.341,-3.147],[6.499,-8.079],[-2.671,-0.137],[-3.837,0.424],[-0.102,2.885],[-0.135,4.297]],"o":[[-4.38,-1.437],[-2.543,2.182],[-1.754,1.014],[-0.022,0.706],[-0.341,3.147],[7.867,-4.292],[2.671,0.137],[3.837,-0.424],[0.154,-4.335],[0.239,-7.603]],"v":[[34.76,41.83],[24.559,46.149],[18.068,50.721],[12.742,52.638],[13.224,63.612],[6.207,86.978],[19.974,81.253],[45.375,78.032],[47.959,62.695],[47.825,53.84]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.849,0.058],[4.465,0.468],[4.736,-0.186],[2.137,0.043],[-1.173,-5.898],[7.484,-11.108],[-4.003,0.771],[-5.422,0.457],[-0.145,3.108],[0.239,4.629]],"o":[[-2.849,-0.058],[-4.005,-0.42],[-3.364,0.132],[-2.137,-0.043],[1.19,5.983],[13.127,-6.091],[3.708,-0.714],[5.422,-0.457],[0.218,-4.672],[-0.148,-2.871]],"v":[[32.196,50.086],[5.453,50],[-7.071,50.002],[-15.464,50.641],[-24.998,51.095],[-30.622,91.854],[-5.289,81.908],[31.161,78.114],[34.014,64.019],[33.826,54.476]]}],"t":435},{"s":[{"c":true,"i":[[2.852,0.058],[2.356,-2.356],[3.842,0.067],[-0.055,-1.574],[0.482,-3.395],[4.928,-5.647],[-3.777,-0.147],[-5.427,0.458],[-0.145,3.111],[0.239,4.634]],"o":[[-2.852,-0.058],[-3.813,3.813],[-3.369,-0.059],[0.075,2.138],[-0.482,3.395],[3.553,-1.255],[3.777,0.147],[5.427,-0.458],[0.218,-4.677],[-0.148,-2.874]],"v":[[32.12,42.47],[22.358,48.175],[11.006,53.551],[9.257,57.052],[9.076,62.499],[2.655,83.919],[16.451,81.281],[43.575,78.771],[47.228,62.227],[47.121,49.643]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.001,-0.486],[3.789,-0.337],[0.911,-4.371],[-3.057,-2.224],[-5.076,4.217],[-0.359,5.683],[-0.665,4.555]],"o":[[-4.001,0.486],[-2.131,0.19],[-1.132,5.428],[4.63,3.368],[4.189,-3.481],[0.295,-4.672],[0.416,-2.847]],"v":[[23.414,80.937],[13.376,81.559],[12.137,96.684],[12.749,118.214],[26.826,118.513],[30.148,95.759],[31.955,81.245]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.35,-1.398],[-5.173,1.609],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.35,1.398],[5.173,-1.609],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.599,114.838],[16.988,115.55],[21.872,93.512],[20.252,80.706]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-2.26,-2.678],[-4.806,1.547],[0.656,4.681],[0.19,4.523]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.317,3.93],[4.815,-1.55],[-0.609,-4.346],[-0.112,-2.665]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[4.5,114.712],[19.443,116.296],[22.624,92.541],[20.252,80.706]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.71,-0.451],[2.43,-1.025],[0.553,-5.172],[-5.604,-4.913],[-2.85,3.045],[1.864,4.329],[-0.558,4.245]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.547,5.111],[4.06,3.559],[3.118,-3.332],[-1.712,-3.979],[0.349,-2.641]],"v":[[12.421,80.455],[5.893,81.196],[4.62,95.402],[8.554,117.312],[22.81,116.165],[23.266,94.085],[20.252,80.706]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.408,-3.881],[-1.689,-3.214],[-5.173,1.609],[-0.145,4.725],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.538,5.112],[2.787,5.305],[5.173,-1.609],[0.15,-4.898],[0.386,-2.64]],"v":[[19.944,81.092],[13.416,81.832],[11.963,96.019],[11.319,116.687],[25.901,119.557],[29.395,94.149],[31.107,80.773]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.408,-3.881],[-1.689,-3.214],[-5.173,1.609],[-0.145,4.725],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.538,5.112],[2.787,5.305],[5.173,-1.609],[0.15,-4.898],[0.386,-2.64]],"v":[[19.944,81.092],[13.416,81.832],[11.963,96.019],[11.319,116.687],[25.901,119.557],[31.204,91.787],[32.494,80.315]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.997,-0.486],[1.782,-0.859],[0.094,-4.46],[-3.086,-2.177],[-4.548,2.518],[2.112,4.636],[-0.665,4.551]],"o":[[-3.997,0.486],[-0.701,0.355],[-0.191,9.032],[3.169,2.236],[4.76,-2.636],[-1.939,-4.256],[0.415,-2.845]],"v":[[15.459,79.584],[5.204,80.933],[6.932,96.771],[6.301,115.55],[20.356,118.581],[25.068,94.917],[23.322,81.117]]}],"t":435},{"s":[{"c":true,"i":[[4.001,-0.486],[3.789,-0.337],[0.911,-4.371],[-3.057,-2.224],[-5.076,4.217],[-0.359,5.683],[-0.665,4.555]],"o":[[-4.001,0.486],[-2.131,0.19],[-1.132,5.428],[4.63,3.368],[4.189,-3.481],[0.295,-4.672],[0.416,-2.847]],"v":[[23.414,80.937],[13.376,81.559],[12.137,96.684],[12.749,118.214],[26.826,118.513],[30.148,95.759],[31.955,81.245]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"shadows","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.977,0.735],[-2.682,0.36],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[0.629,-0.195],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.473,87],[8.113,82.258],[12.221,81.766],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[1.397,2.289],[2.763,-0.011]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-1.397,-2.289],[-2.952,0.012]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.15,49.821],[22.552,45.378]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.393,4.591],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.463,-5.4],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[32.967,50.41],[22.914,44.729]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.188,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.287,-8.382],[-4.909,4.798],[0.802,4.686],[-1.405,0.319],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.188,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-0.645,4.201],[4.155,-4.061],[-0.862,-5.035],[1.405,-0.319],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-33.581,38.232],[-38.447,65.402],[-34.731,92.483],[-5.764,82.123],[4.94,81.03],[3.266,112.098],[20.917,114.741],[22.198,91.191],[20.264,79.26],[29.526,77.981],[34.886,70.44],[33.026,51.377],[25.338,45.615]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.113,-3.75],[-2.217,1.046],[-9.057,3.305],[-3.353,0.132],[-2.301,-8.441],[-4.69,8.763],[2.368,6.629],[-0.905,0.331],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.113,3.75],[9.961,-4.698],[4.473,-0.554],[1.25,3.25],[1.624,5.958],[3.534,-6.604],[-1.452,-4.064],[2.578,-1.08],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.577,45.758],[-33.581,38.232],[-46.627,65.402],[-33.144,92.306],[-5.764,82.123],[4.94,81.03],[4.791,112.226],[23.357,114.452],[22.216,91.623],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[26.97,46.229]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[22.914,44.729]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.97,0.761],[-3.617,0.143],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[2.107,-0.54],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.473,87],[12.352,81.275],[12.258,80.33],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.854,-0.27],[4.863,2.906],[0.27,-4.045],[9.012,-9.367],[-2.554,1.696],[-2.988,1.348],[0.623,-6.118],[-1.299,9.644],[-0.346,4.642],[-0.209,-0.023],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.785,0.029]],"o":[[-5.126,-1.182],[9.711,6.763],[-0.27,4.045],[3.065,-2.016],[2.568,-1.705],[-0.082,3.979],[-0.86,8.448],[0.793,-5.889],[0.403,-5.412],[2.685,-1.372],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.785,-0.029]],"v":[[15.576,40.882],[2.552,34.988],[13.27,60.321],[4.304,89.132],[10.511,84.638],[12.742,83.078],[10.375,113.204],[28.879,114.534],[30.966,91.315],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[33.357,41.308]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[22.914,44.729]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.113,-3.75],[-2.217,1.046],[-9.057,3.305],[-3.353,0.132],[2.966,-6.559],[-4.586,10.307],[2.368,6.629],[-1.353,0.05],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.113,3.75],[9.961,-4.698],[4.473,-0.554],[1.25,3.25],[-2.544,5.627],[3.045,-6.843],[-1.452,-4.064],[2.259,-0.083],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.577,45.758],[-33.581,38.232],[-46.627,65.402],[-33.144,92.306],[-5.764,82.123],[4.94,81.03],[5.062,110.692],[23.357,114.452],[24.564,93.437],[23.461,78.421],[29.526,77.981],[34.886,70.44],[32.884,49.735],[26.97,46.229]]}],"t":435},{"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.97,0.761],[-3.617,0.143],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[2.107,-0.54],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.307,87.516],[7.048,82.37],[12.396,81.782],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.489,2.594],[-1.162,8.006],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[6.67,-4.959],[1.214,-8.36],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-2.125,89.307],[7.623,66.015],[6.859,47.587]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[3.761,-0.5],[0.752,-9],[-1.88,-7],[-4.137,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-3.761,0.5],[-0.752,9],[1.02,3.796],[4.137,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-57.129,36.539],[-66.155,57.039],[-65.026,82.539],[-59.386,95.539],[-40.592,94.885],[-29.092,89.76],[-21.967,68.885],[-24.842,47.885]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.493,-0.5],[-5,0],[-1.441,3.5],[-0.776,7.422],[1.101,4.203]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.493,0.5],[5,0],[1.441,-3.5],[0.811,-7.75],[-1.441,-5.5]],"v":[[-36.84,35.886],[-57.888,36.539],[-63.327,57.039],[-62.648,82.539],[-59.248,95.539],[-40.592,94.885],[-29.081,89.583],[-23.946,68.708],[-26.018,47.708]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.13,3.019],[-1.162,8.006],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[4.74,-4.572],[1.214,-8.36],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-3.457,90.809],[8.335,65.959],[6.859,47.587]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[13.588,1.014],[6.246,-2.861],[3.331,-9.856],[-3.573,-7.308],[-7.338,-3.28],[-5.844,0],[-4.244,0.947],[0.792,8.47],[1.649,4.533]],"o":[[-9.693,-0.723],[-5.261,2.41],[-3.152,9.325],[2.487,5.086],[5.81,2.597],[5.844,0],[6.027,-1.345],[-0.787,-8.411],[-2.157,-5.933]],"v":[[-11.892,30.311],[-32.048,32.76],[-47.748,53.8],[-46.109,80.825],[-32.188,93.1],[-13.946,95.056],[-0.633,92.434],[12.703,66.53],[11.34,47.862]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.493,-0.5],[-5,0],[-1.441,3.5],[-0.776,7.422],[1.101,4.203]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.493,0.5],[5,0],[1.441,-3.5],[0.811,-7.75],[-1.441,-5.5]],"v":[[-36.84,35.886],[-57.888,36.539],[-63.327,57.039],[-62.648,82.539],[-59.248,95.539],[-40.592,94.885],[-29.081,89.583],[-23.946,68.708],[-26.018,47.708]]}],"t":435},{"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.611,2.422],[-0.609,8.067],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[7.832,-5.252],[0.651,-8.622],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-4.444,91.146],[8.427,66.261],[6.859,47.587]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.09,0.114]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"fill","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":23,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1186.375,89.045,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1160.358,116.389,0]},"r":{"a":0,"ix":10,"k":75},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front arm strap","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[12.857,2.5],[2.764,25.439],[-26.459,-0.537],[-6.407,-2.007],[-3.831,-6.997],[18.082,-18.824]],"o":[[-12.857,-2.5],[-2.821,-25.97],[6.713,0.136],[7.502,2.35],[5.398,9.859],[0,0]],"v":[[-1216.656,124.95],[-1259.419,93.797],[-1216.64,44.711],[-1193.813,47.808],[-1171.316,69.561],[-1181.867,126.018]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.278431385756,0.745098054409,0.666666686535,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front strap","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":24,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1295.661,56.187,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1295.661,56.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0],"y":[0.926]},"o":{"x":[0.226],"y":[-0.013]},"s":[-24],"t":0},{"i":{"x":[0.687],"y":[0.869]},"o":{"x":[0.585],"y":[-0.198]},"s":[-36.742],"t":33},{"i":{"x":[0.955],"y":[0.565]},"o":{"x":[0.587],"y":[-0.088]},"s":[-31.84],"t":91},{"i":{"x":[0.226],"y":[1.052]},"o":{"x":[0.02],"y":[0.024]},"s":[-40.546],"t":128},{"i":{"x":[0.658],"y":[1.501]},"o":{"x":[0.597],"y":[-0.816]},"s":[-69.071],"t":143},{"i":{"x":[0.625],"y":[0.881]},"o":{"x":[0.299],"y":[0.036]},"s":[-74.765],"t":204},{"i":{"x":[0.574],"y":[1.769]},"o":{"x":[0.267],"y":[0.827]},"s":[-43.204],"t":232},{"i":{"x":[0.597],"y":[0.901]},"o":{"x":[0.266],"y":[-0.089]},"s":[-35.123],"t":302},{"i":{"x":[0.615],"y":[1.3]},"o":{"x":[0.407],"y":[-0.131]},"s":[-18.224],"t":329},{"i":{"x":[0.935],"y":[0.735]},"o":{"x":[0.482],"y":[0.199]},"s":[-50.369],"t":396},{"i":{"x":[0.654],"y":[0.876]},"o":{"x":[0.044],"y":[0.536]},"s":[-38.603],"t":409},{"i":{"x":[0.833],"y":[0.951]},"o":{"x":[0.353],"y":[0.48]},"s":[-26.41],"t":449},{"s":[-24],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Head","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[5.89,6.29],[6.173,10.555],[-31.869,41.718],[-36.964,8.089],[-22.543,-6.035],[-28.001,-21.569],[-7.57,-23.772],[10.449,-25.082],[11.602,-15.659],[38.213,-10.108]],"o":[[-20.212,-6.536],[-8.358,-8.925],[-25.392,-43.416],[31.869,-41.718],[26.695,-5.842],[17.838,4.776],[14.275,10.996],[8.245,25.89],[-7.441,17.862],[-7.5,10.122],[0,0]],"v":[[-1364.594,64.448],[-1407.25,36.836],[-1426.34,14.633],[-1419.443,-140.192],[-1320.859,-204.684],[-1242.125,-201.011],[-1170.206,-163.671],[-1131.645,-104.785],[-1134.655,-19.767],[-1159.368,23.794],[-1225.449,64.952]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Helmet","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[6.215,-6.562],[-1.842,-2.745],[-0.868,5.473],[-2.758,7.671]],"o":[[-6.749,7.126],[3.458,5.153],[0.312,-1.97],[2.018,-5.614]],"v":[[-1419.524,-106.473],[-1428.594,-78.459],[-1417.324,-79.167],[-1409.596,-101.248]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[11.173,3.061],[26.271,-9.478],[20.055,-21.006],[-6.194,1.313],[-7.789,8.079],[-12.587,6.129],[-20.168,0.294]],"o":[[-25.199,-6.905],[-27.942,10.081],[-19.713,20.647],[6.859,-1.454],[8.751,-9.077],[27.19,-13.24],[13.305,-0.194]],"v":[[-1256.206,-188.055],[-1332.986,-183.559],[-1396.688,-139.562],[-1400.137,-113.137],[-1375.442,-136.589],[-1337.667,-164.576],[-1258.15,-175.655]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Helmet highlights","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.672,-1.633],[-1.303,-6.385]],"o":[[1.509,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[2.48,6.026],[0,0]],"v":[[-1365.8,-105.074],[-1358.227,-128.939],[-1356.959,-130.329],[-1355.442,-129.783],[-1352.661,-125.338],[-1346.97,-106.666]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.3,7.69],[-0.631,0.16],[-0.437,-0.347],[-0.425,-1.714],[-1.48,-6.346]],"o":[[1.281,-8.27],[0.257,-0.598],[0.54,-0.137],[1.383,1.098],[1.902,7.674],[0,0]],"v":[[-1364.701,-104.599],[-1356.78,-128.316],[-1355.551,-129.74],[-1354.02,-129.236],[-1351.116,-124.871],[-1348.879,-99.233]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.377,-1.725],[-1.303,-6.385]],"o":[[1.51,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[1.688,7.724],[0,0]],"v":[[-1371.9,-108.131],[-1363.324,-131.619],[-1362.056,-133.009],[-1360.539,-132.463],[-1357.758,-128.018],[-1356.233,-102.328]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1363.96,-108.131],[-1357.667,-131.619],[-1356.737,-133.009],[-1356.344,-132.991],[-1355.119,-128.038],[-1354.97,-102.837]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1363.96,-108.131],[-1357.667,-131.619],[-1356.737,-133.009],[-1356.344,-132.991],[-1355.119,-128.038],[-1354.97,-102.837]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.079,7.781],[-0.626,0.178],[-0.446,-0.334],[-0.474,-1.701],[-1.66,-6.301]],"o":[[1.044,-8.303],[0.24,-0.605],[0.536,-0.153],[1.413,1.058],[2.12,7.617],[0,0]],"v":[[-1364.337,-102.569],[-1357.096,-126.502],[-1355.908,-127.961],[-1354.363,-127.501],[-1351.336,-123.22],[-1348.368,-97.656]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.066,7.786],[-0.626,0.179],[-0.447,-0.333],[-0.476,-1.7],[-1.671,-6.298]],"o":[[1.03,-8.304],[0.239,-0.606],[0.536,-0.154],[1.415,1.056],[2.133,7.613],[0,0]],"v":[[-1365.605,-104.545],[-1358.404,-128.49],[-1357.218,-129.951],[-1355.673,-129.494],[-1352.638,-125.218],[-1349.628,-99.659]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1358.841,-107.556],[-1352.549,-131.044],[-1351.618,-132.434],[-1351.226,-132.416],[-1350.001,-127.463],[-1349.852,-102.262]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1358.841,-107.556],[-1352.549,-131.044],[-1351.618,-132.434],[-1351.226,-132.416],[-1350.001,-127.463],[-1349.852,-102.262]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.3,7.69],[-0.631,0.16],[-0.437,-0.347],[-0.425,-1.714],[-0.446,-7.909]],"o":[[1.281,-8.27],[0.257,-0.598],[0.54,-0.137],[1.383,1.098],[1.902,7.674],[0,0]],"v":[[-1364.701,-104.599],[-1356.78,-128.316],[-1355.551,-129.74],[-1353.308,-131.969],[-1351.116,-124.871],[-1347.846,-99.839]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.672,-1.633],[-1.303,-6.385]],"o":[[1.509,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[2.48,6.026],[0,0]],"v":[[-1365.8,-105.074],[-1358.227,-128.939],[-1356.959,-130.329],[-1355.442,-129.783],[-1352.661,-125.338],[-1346.97,-106.666]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.07,5.251],[-0.108,-0.675],[3.571,-8.522]],"o":[[4.995,-7.253],[0.557,0.396],[1.463,9.123],[0,0]],"v":[[-1225.614,-100.355],[-1206.01,-123.816],[-1205.181,-122.003],[-1209.769,-90.298]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.937,5.362],[-0.194,-1.684],[2.484,-8.594]],"o":[[4.792,-7.389],[1.199,-0.927],[1.022,8.858],[0,0]],"v":[[-1242.087,-106.267],[-1220.747,-130.683],[-1218.565,-123.91],[-1222.645,-97.95]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.083,5.167],[-0.148,-1.689],[2.722,-8.522]],"o":[[4.995,-7.253],[1.225,-0.893],[0.776,8.883],[0,0]],"v":[[-1249.287,-106.397],[-1227.278,-130.212],[-1225.284,-123.382],[-1230.083,-97.545]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1251.409,-107.732],[-1228.961,-134.023],[-1230.232,-124.448],[-1235.725,-98.879]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1251.409,-107.732],[-1228.961,-134.023],[-1230.232,-124.448],[-1235.725,-98.879]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.781,5.557],[-0.242,-1.678],[2.238,-8.662]],"o":[[4.58,-7.523],[1.172,-0.961],[1.274,8.825],[0,0]],"v":[[-1241.821,-107.734],[-1221.186,-132.749],[-1218.811,-126.042],[-1222.149,-99.976]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-6.772,5.568],[-0.245,-1.678],[2.224,-8.665]],"o":[[4.567,-7.53],[1.171,-0.963],[1.289,8.823],[0,0]],"v":[[-1243.098,-109.916],[-1222.505,-134.965],[-1220.119,-128.262],[-1223.412,-102.19]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1244.767,-102.713],[-1221.914,-132.847],[-1223.177,-122.872],[-1230.606,-98.305]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1244.767,-102.713],[-1221.914,-132.847],[-1223.177,-122.872],[-1230.606,-98.305]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.093,5.849],[-0.194,-1.684],[2.484,-8.594]],"o":[[4.792,-7.389],[1.094,-1.05],[1.022,8.858],[0,0]],"v":[[-1238.151,-104.132],[-1217.559,-129.035],[-1215.376,-122.263],[-1219.456,-96.302]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-7.07,5.251],[-0.108,-0.675],[3.571,-8.522]],"o":[[4.995,-7.253],[0.557,0.396],[1.463,9.123],[0,0]],"v":[[-1225.614,-100.355],[-1206.01,-123.816],[-1205.181,-122.003],[-1209.769,-90.298]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Ear lines","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-5.612,13.435],[-2.809,-1.873],[-3.178,-8.896],[0.936,-15.607],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-4.603,5.992],[-3.746,-1.249],[2.185,-33.086],[0.48,-4.519],[0.708,-2.374],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[5.695,-13.633],[2.809,1.873],[3.337,9.34],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[7.745,-10.082],[3.746,1.249],[-2.185,33.086],[-0.558,5.25],[-0.736,2.466],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1333.89,-107.066],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-26.057,60.924],[-7.142,12.688],[-2.86,-1.794],[-1.508,-9.326],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-7.645,7.817],[-5.72,3.409],[0.747,-33.12],[0.24,-4.528],[0.474,-2.388],[2.524,-11.936],[37.936,-5.736],[33.586,15.752]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[1.508,9.326],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[6.582,-6.73],[2.724,-1.624],[-0.747,33.12],[-0.279,5.26],[-0.492,2.481],[-2.524,11.936],[-37.936,5.736],[-27.879,-13.075]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1338.391,-137.439],[-1335.827,-104.344],[-1311.092,-102.931],[-1255.894,-100.403],[-1252.969,-99.548],[-1227.771,-129.242],[-1207.068,-149.273],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1374.57,46.578]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-27.737,60.178],[-7.491,12.485],[-2.809,-1.873],[-1.249,-9.364],[0.936,-15.607],[-13.183,0.312],[-8.437,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[36.619,19.677]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[1.249,9.364],[0,0],[13.183,-0.312],[8.437,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.467],[-2.854,11.861],[-38.08,4.682],[-27.125,-14.576]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1344.69,-140.229],[-1343.044,-107.075],[-1318.357,-104.977],[-1263.251,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1385.958,42.714]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.137,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.08,4.682],[-27.506,-13.843]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.848,-140.879],[-1330.687,-106.336],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1369.772,46.612]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.137,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.08,4.682],[-27.506,-13.843]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.848,-140.879],[-1330.687,-106.336],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1369.772,46.612]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.308,61.643],[-6.777,12.887],[-2.91,-1.712],[-1.773,-9.279],[0.057,-15.635],[-13.145,1.053],[-8.565,-2.019],[-0.807,-0.267],[-7.419,8.032],[-5.621,3.571],[-0.198,-33.128],[0.111,-4.533],[0.406,-2.4],[2.183,-12.003],[37.757,-6.816],[34.022,14.787]],"o":[[0,0],[6.777,-12.887],[2.91,1.712],[1.773,9.279],[0,0],[13.145,-1.053],[8.565,2.019],[0.807,0.267],[6.387,-6.915],[2.677,-1.701],[0.198,33.128],[-0.129,5.266],[-0.422,2.494],[-2.183,12.003],[-37.757,6.816],[-28.241,-12.275]],"v":[[-1366.314,-92.012],[-1354.853,-138.302],[-1343.871,-154.239],[-1338.975,-136.146],[-1335.468,-103.138],[-1310.702,-102.431],[-1255.455,-101.479],[-1252.506,-100.707],[-1228.165,-131.108],[-1208.043,-151.722],[-1193.246,-116.768],[-1191.545,-69.656],[-1191.247,-55.917],[-1195.109,19.331],[-1226.875,52.384],[-1369.889,48.828]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-24.205,61.684],[-6.755,12.898],[-2.913,-1.707],[-1.789,-9.276],[0.031,-15.635],[-13.143,1.075],[-8.568,-2.004],[-0.808,-0.266],[-7.406,8.045],[-5.615,3.58],[-0.254,-33.127],[0.104,-4.533],[0.401,-2.401],[2.163,-12.007],[37.745,-6.88],[35.931,18.029]],"o":[[0,0],[6.755,-12.898],[2.913,1.707],[1.789,9.276],[0,0],[13.143,-1.075],[8.568,2.004],[0.808,0.266],[6.375,-6.926],[2.674,-1.705],[0.254,33.127],[-0.12,5.266],[-0.417,2.495],[-2.163,12.007],[-37.745,6.88],[-27.522,-13.81]],"v":[[-1367.564,-93.985],[-1356.181,-140.294],[-1345.226,-156.25],[-1337.467,-137.057],[-1332.635,-104.335],[-1311.97,-104.497],[-1256.721,-103.638],[-1253.771,-102.871],[-1229.481,-133.313],[-1209.394,-153.96],[-1194.538,-119.031],[-1192.758,-71.922],[-1192.437,-58.184],[-1196.172,17.071],[-1227.883,50.177],[-1370.903,46.861]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.479,-38.3],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.136,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.278,33.104],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.081,4.682],[-27.506,-13.843]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.73,-140.304],[-1325.568,-105.762],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.22,-128.392],[-1207.97,-147.841],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1364.653,47.186]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.479,-38.3],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.136,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.278,33.104],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.081,4.682],[-27.506,-13.843]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.73,-140.304],[-1325.568,-105.762],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.22,-128.392],[-1207.97,-147.841],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1364.653,47.186]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-26.057,60.924],[-5.899,13.117],[-2.86,-1.794],[-2.173,-9.194],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-5.615,9.383],[-5.72,3.409],[0.747,-33.12],[0.24,-4.528],[0.474,-2.388],[2.524,-11.936],[37.936,-5.736],[33.586,15.752]],"o":[[0,0],[5.972,-13.279],[2.86,1.794],[2.173,9.194],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[5.335,-8.916],[2.724,-1.624],[-0.747,33.12],[-0.279,5.26],[-0.492,2.481],[-2.524,11.936],[-37.936,5.736],[-27.879,-13.075]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1334.667,-136.525],[-1328.926,-102.838],[-1311.092,-102.931],[-1251.081,-99.616],[-1248.155,-98.76],[-1225.929,-128.47],[-1207.068,-149.273],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1374.57,46.578]]}],"t":420},{"s":[{"c":true,"i":[[-25.907,60.866],[-7.139,16.883],[-2.809,-1.873],[-2.959,-8.971],[-2.355,-14.174],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-4.426,6.124],[-3.746,-1.249],[2.185,-33.086],[0.48,-4.519],[0.708,-2.374],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[5.671,-13.411],[2.809,1.873],[2.746,8.326],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[7.256,-10.039],[3.746,1.249],[-2.185,33.086],[-0.558,5.25],[-0.736,2.466],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1361.132,-143.843],[-1348.56,-158.569],[-1339.508,-138.28],[-1331.577,-106.874],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Head stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.702,-6.793],[-0.692,-0.545],[-1.433,0.197],[-2.218,3.534],[-1.528,5.368]],"o":[[1.788,7.527],[0.422,0.774],[1.136,0.896],[4.133,-0.57],[2.967,-4.728],[0,0]],"v":[[-1271.674,-103.325],[-1267.398,-80.658],[-1265.79,-78.583],[-1261.669,-77.664],[-1252.295,-85.328],[-1245.506,-100.574]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.314,-6.704],[-0.599,-0.529],[-1.205,0.231],[-1.775,3.585],[-5.223,1.186]],"o":[[-7.028,6.578],[0.378,0.763],[0.984,0.869],[3.474,-0.666],[2.374,-4.795],[0,0]],"v":[[-1285.143,-102.406],[-1292.063,-81.996],[-1290.648,-79.96],[-1287.142,-79.137],[-1279.439,-87.018],[-1262.971,-100.269]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.127,-6.793],[-0.584,-0.545],[-1.21,0.197],[-1.873,3.534],[-5.254,1.041]],"o":[[-7.208,6.38],[0.356,0.774],[0.96,0.896],[3.492,-0.57],[2.506,-4.728],[0,0]],"v":[[-1292.433,-103.733],[-1299.917,-83.523],[-1298.559,-81.448],[-1295.077,-80.528],[-1287.158,-88.193],[-1270.329,-100.982]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1294.295,-104.212],[-1308.058,-85.107],[-1306.82,-83.032],[-1303.646,-82.112],[-1296.427,-89.777],[-1274.143,-101.462]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1294.295,-104.212],[-1308.058,-85.107],[-1306.82,-83.032],[-1303.646,-82.112],[-1296.427,-89.777],[-1274.143,-101.462]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.504,-6.606],[-0.614,-0.512],[-1.198,0.265],[-1.672,3.634],[-5.187,1.335]],"o":[[-6.837,6.775],[0.399,0.752],[1.008,0.84],[3.454,-0.765],[2.236,-4.861],[0,0]],"v":[[-1284.749,-102.647],[-1291.084,-82.048],[-1289.611,-80.053],[-1286.083,-79.33],[-1278.608,-87.428],[-1262.525,-101.143]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.515,-6.6],[-0.615,-0.511],[-1.197,0.267],[-1.666,3.637],[-5.184,1.344]],"o":[[-6.826,6.787],[0.4,0.752],[1.01,0.839],[3.453,-0.771],[2.228,-4.865],[0,0]],"v":[[-1286.017,-104.756],[-1292.317,-84.147],[-1290.841,-82.154],[-1287.312,-81.438],[-1279.851,-89.548],[-1263.79,-103.29]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1289.176,-103.638],[-1302.939,-84.532],[-1301.701,-82.457],[-1298.527,-81.537],[-1291.308,-89.202],[-1269.024,-100.887]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1289.176,-103.638],[-1302.939,-84.532],[-1301.701,-82.457],[-1298.527,-81.537],[-1291.308,-89.202],[-1269.024,-100.887]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.314,-6.704],[-0.599,-0.529],[-1.205,0.231],[-1.775,3.585],[-5.223,1.186]],"o":[[-7.028,6.578],[0.378,0.763],[0.984,0.869],[3.474,-0.666],[2.374,-4.795],[0,0]],"v":[[-1285.143,-102.406],[-1292.063,-81.996],[-1290.648,-79.96],[-1287.142,-79.137],[-1279.439,-87.018],[-1262.971,-100.269]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-3.702,-6.793],[-0.692,-0.545],[-1.433,0.197],[-2.218,3.534],[-1.528,5.368]],"o":[[1.788,7.527],[0.422,0.774],[1.136,0.896],[4.133,-0.57],[2.967,-4.728],[0,0]],"v":[[-1271.674,-103.325],[-1267.398,-80.658],[-1265.79,-78.583],[-1261.669,-77.664],[-1252.295,-85.328],[-1245.506,-100.574]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.418,-6.418],[-1.79,-1.189],[-1.503,0.676],[-1.644,3.403],[-1.947,4.029],[0.573,0.931]],"o":[[0.418,6.418],[0.14,2.144],[1.373,0.912],[3.446,-1.551],[1.947,-4.029],[0.476,-0.984],[0,0]],"v":[[-1303.011,-103.964],[-1301.758,-84.71],[-1299.518,-78.921],[-1294.784,-78.857],[-1287.793,-87.472],[-1281.952,-99.559],[-1281.58,-102.672]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.743,-6.385],[-1.288,-1.428],[-1.366,0.451],[-1.947,3.117],[-5.434,5.833],[0.51,0.917]],"o":[[-4.323,6.408],[-0.248,2.133],[0.988,1.096],[3.133,-1.034],[2.306,-3.691],[0.724,-0.778],[0,0]],"v":[[-1311.622,-102.311],[-1319.015,-86.57],[-1318.134,-80.545],[-1314.204,-79.801],[-1306.92,-87.287],[-1296.586,-99.391],[-1292.01,-102.523]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.919,-6.362],[-1.248,-1.464],[-1.378,0.413],[-2.033,3.062],[-5.594,5.68],[0.485,0.931]],"o":[[-4.5,6.285],[-0.307,2.125],[0.957,1.123],[3.16,-0.947],[2.407,-3.626],[0.746,-0.757],[0,0]],"v":[[-1318.904,-104.372],[-1326.731,-88.842],[-1326.018,-82.795],[-1322.11,-81.942],[-1314.622,-89.224],[-1303.956,-101.036],[-1299.295,-104.04]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.872,1.123],[2.881,-0.947],[2.194,-3.626],[0.867,-0.533],[0,0]],"v":[[-1314.175,-104.612],[-1324.43,-90.263],[-1323.78,-84.215],[-1320.217,-83.363],[-1313.39,-90.645],[-1300.374,-101.813],[-1294.723,-104.011]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.872,1.123],[2.881,-0.947],[2.194,-3.626],[0.867,-0.533],[0,0]],"v":[[-1314.175,-104.612],[-1324.43,-90.263],[-1323.78,-84.215],[-1320.217,-83.363],[-1313.39,-90.645],[-1300.374,-101.813],[-1294.723,-104.011]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.56,-6.403],[-1.328,-1.391],[-1.352,0.49],[-1.857,3.172],[-5.266,5.985],[0.536,0.902]],"o":[[-4.139,6.528],[-0.187,2.139],[1.019,1.067],[3.102,-1.123],[2.199,-3.755],[0.702,-0.798],[0,0]],"v":[[-1311.214,-101.796],[-1318.155,-85.851],[-1317.102,-79.853],[-1313.153,-79.222],[-1306.086,-86.913],[-1296.102,-99.306],[-1291.617,-102.568]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.55,-6.404],[-1.33,-1.389],[-1.351,0.492],[-1.852,3.175],[-5.256,5.994],[0.538,0.901]],"o":[[-4.128,6.535],[-0.184,2.139],[1.02,1.065],[3.1,-1.128],[2.193,-3.759],[0.701,-0.799],[0,0]],"v":[[-1312.481,-103.861],[-1319.395,-87.905],[-1318.332,-81.908],[-1314.382,-81.284],[-1307.328,-88.987],[-1297.364,-101.397],[-1292.885,-104.666]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.873,1.123],[2.881,-0.947],[2.195,-3.626],[0.867,-0.533],[0,0]],"v":[[-1309.056,-104.037],[-1319.312,-89.688],[-1318.661,-83.641],[-1315.099,-82.788],[-1308.272,-90.07],[-1295.255,-101.239],[-1289.604,-103.436]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.873,1.123],[2.881,-0.947],[2.195,-3.626],[0.867,-0.533],[0,0]],"v":[[-1309.056,-104.037],[-1319.312,-89.688],[-1318.661,-83.641],[-1315.099,-82.788],[-1308.272,-90.07],[-1295.255,-101.239],[-1289.604,-103.436]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.743,-6.385],[-1.288,-1.428],[-1.366,0.451],[-1.947,3.117],[-5.434,5.833],[0.51,0.917]],"o":[[-4.323,6.408],[-0.248,2.133],[0.988,1.096],[3.133,-1.034],[2.305,-3.691],[0.725,-0.778],[0,0]],"v":[[-1309.293,-102.288],[-1316.687,-86.547],[-1315.805,-80.522],[-1311.876,-79.778],[-1304.592,-87.264],[-1294.258,-99.368],[-1289.682,-102.5]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-0.418,-6.418],[-1.79,-1.189],[-1.503,0.676],[-1.644,3.403],[-1.947,4.029],[0.573,0.931]],"o":[[0.418,6.418],[0.14,2.144],[1.373,0.912],[3.446,-1.551],[1.947,-4.029],[0.476,-0.984],[0,0]],"v":[[-1303.011,-103.964],[-1301.758,-84.71],[-1299.518,-78.921],[-1294.784,-78.857],[-1287.793,-87.472],[-1281.952,-99.559],[-1281.58,-102.672]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.712,-6.854],[-0.489,-0.806],[-0.898,-0.188],[-2.445,1.689],[-2.394,7.522]],"o":[[-3.059,6.174],[-0.097,0.938],[0.476,0.784],[2.908,0.608],[6.495,-4.486],[0,0]],"v":[[-1330.445,-105.569],[-1336.162,-85.818],[-1335.829,-83.061],[-1333.548,-81.666],[-1325.256,-84.177],[-1311.419,-102.87]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.411,-6.868],[-0.435,-0.794],[-0.764,-0.167],[-2.017,1.745],[-9.281,4.937]],"o":[[-8.148,5.793],[-0.056,0.94],[0.423,0.773],[2.473,0.539],[5.36,-4.637],[0,0]],"v":[[-1334.831,-103.273],[-1344.292,-84.803],[-1343.934,-82.056],[-1341.969,-80.714],[-1335.037,-83.419],[-1318.056,-102.313]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.602,-6.854],[-0.413,-0.806],[-0.759,-0.188],[-2.065,1.688],[-9.415,4.677]],"o":[[-8.306,5.564],[-0.082,0.938],[0.402,0.784],[2.457,0.608],[5.487,-4.486],[0,0]],"v":[[-1342.078,-105.977],[-1352.047,-87.777],[-1351.766,-85.021],[-1349.839,-83.625],[-1342.835,-86.137],[-1325.336,-104.552]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1330.117,-105.737],[-1342.47,-91.262],[-1343.222,-86.807],[-1341.465,-85.411],[-1335.08,-87.922],[-1314.854,-104.312]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1330.117,-105.737],[-1342.47,-91.262],[-1343.222,-86.807],[-1341.465,-85.411],[-1335.08,-87.922],[-1314.854,-104.312]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.215,-6.877],[-0.458,-0.782],[-0.768,-0.145],[-1.967,1.802],[-9.136,5.2]],"o":[[-7.979,6.023],[-0.029,0.941],[0.445,0.76],[2.487,0.468],[5.226,-4.788],[0,0]],"v":[[-1334.441,-102.095],[-1343.371,-83.364],[-1342.935,-80.628],[-1340.933,-79.342],[-1334.081,-82.244],[-1317.646,-101.614]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.204,-6.877],[-0.459,-0.781],[-0.768,-0.143],[-1.964,1.805],[-9.128,5.215]],"o":[[-7.969,6.036],[-0.028,0.941],[0.447,0.76],[2.488,0.464],[5.218,-4.797],[0,0]],"v":[[-1332.516,-104.224],[-1341.414,-85.478],[-1340.974,-82.742],[-1338.969,-81.461],[-1332.122,-84.373],[-1315.72,-103.771]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1324.999,-105.162],[-1337.352,-90.687],[-1338.104,-86.232],[-1336.347,-84.836],[-1329.961,-87.347],[-1309.736,-103.737]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1324.999,-105.162],[-1337.352,-90.687],[-1338.104,-86.232],[-1336.347,-84.836],[-1329.961,-87.347],[-1309.736,-103.737]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.412,-6.868],[-0.435,-0.794],[-0.764,-0.167],[-2.017,1.745],[-9.281,4.937]],"o":[[-8.148,5.793],[-0.056,0.94],[0.423,0.773],[2.473,0.539],[5.36,-4.637],[0,0]],"v":[[-1329.972,-102.882],[-1339.433,-84.413],[-1339.076,-81.666],[-1337.111,-80.324],[-1330.179,-83.028],[-1313.198,-101.922]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[0.712,-6.854],[-0.489,-0.806],[-0.898,-0.188],[-2.445,1.689],[-2.394,7.522]],"o":[[-3.059,6.174],[-0.097,0.938],[0.476,0.784],[2.908,0.608],[6.495,-4.486],[0,0]],"v":[[-1330.445,-105.569],[-1336.162,-85.818],[-1335.829,-83.061],[-1333.548,-81.666],[-1325.256,-84.177],[-1311.419,-102.87]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Head stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1395.712,19.525],[-1413.534,24.893]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.786,-2.247]],"o":[[-5.982,1.656],[0,0]],"v":[[-1388.584,24.31],[-1402.629,29.529]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1399.349,20.065],[-1413.534,24.893]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[4.289,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1385.704,20.439],[-1394.509,24.893]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[4.289,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1385.704,20.439],[-1394.509,24.893]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.719,-2.411]],"o":[[-5.932,1.826],[0,0]],"v":[[-1384.533,26.968],[-1398.423,32.586]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[5.715,-2.421]],"o":[[-5.929,1.836],[0,0]],"v":[[-1385.583,25.026],[-1399.465,30.667]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[4.29,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1380.585,21.014],[-1389.39,25.468]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[4.29,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1380.585,21.014],[-1389.39,25.468]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.786,-2.247]],"o":[[-5.982,1.656],[0,0]],"v":[[-1388.584,24.31],[-1402.629,29.529]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1395.712,19.525],[-1413.534,24.893]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[4.212,1.4]],"o":[[-4.212,-1.4],[0,0]],"v":[[-1398.483,3.866],[-1411.12,-0.335]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,1.293]],"o":[[-3.891,-1.293],[0,0]],"v":[[-1391.212,5.777],[-1401.905,2.09]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[3.854,1.4]],"o":[[-3.854,-1.4],[0,0]],"v":[[-1401.462,1.467],[-1412.049,-2.516]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1386.509,3.184],[-1392.738,-0.335]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1386.509,3.184],[-1392.738,-0.335]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.926,1.181]],"o":[[-3.926,-1.181],[0,0]],"v":[[-1387.689,8.519],[-1398.483,5.138]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.928,1.175]],"o":[[-3.928,-1.175],[0,0]],"v":[[-1388.77,6.582],[-1399.57,3.219]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1381.39,3.759],[-1387.619,0.24]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1381.39,3.759],[-1387.619,0.24]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,1.293]],"o":[[-3.891,-1.293],[0,0]],"v":[[-1391.212,5.777],[-1401.905,2.09]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[4.212,1.4]],"o":[[-4.212,-1.4],[0,0]],"v":[[-1398.483,3.866],[-1411.12,-0.335]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.475,-3.726]],"o":[[13.978,0.278],[0,0]],"v":[[-1228.81,33.984],[-1187.414,40.022]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.369,-3.44]],"o":[[10.656,-0.017],[0,0]],"v":[[-1242.375,30.226],[-1183.72,39.391]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1253.361,30.034],[-1194.982,40.823]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1259.581,29.459],[-1202.912,40.765]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1259.581,29.459],[-1202.912,40.765]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.463,-3.143]],"o":[[10.651,-0.321],[0,0]],"v":[[-1238.215,28.711],[-1179.322,36.199]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-10.468,-3.125]],"o":[[10.651,-0.339],[0,0]],"v":[[-1239.263,26.523],[-1180.357,33.912]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-10.27,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1254.463,30.033],[-1197.793,41.34]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-10.27,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1254.463,30.033],[-1197.793,41.34]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.369,-3.44]],"o":[[10.656,-0.017],[0,0]],"v":[[-1242.375,30.226],[-1183.72,39.391]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-13.475,-3.726]],"o":[[13.978,0.278],[0,0]],"v":[[-1228.81,33.984],[-1187.414,40.022]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.841,4.238]],"o":[[13.095,-6.169],[0,0]],"v":[[-1226.817,23.281],[-1186.343,7.644]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.211,1.379]],"o":[[9.805,-6.443],[0,0]],"v":[[-1241.154,19.485],[-1184.571,4.848]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1251.842,19.331],[-1194.875,6.27]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1258.063,18.755],[-1202.804,6.212]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1258.063,18.755],[-1202.804,6.212]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.166,1.755]],"o":[[9.617,-6.72],[0,0]],"v":[[-1237.301,17.939],[-1181.158,1.695]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-13.164,1.777]],"o":[[9.606,-6.736],[0,0]],"v":[[-1238.366,15.75],[-1182.251,-0.589]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1252.944,19.33],[-1197.686,6.787]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1252.944,19.33],[-1197.686,6.787]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.211,1.379]],"o":[[9.805,-6.443],[0,0]],"v":[[-1241.154,19.485],[-1184.571,4.848]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-13.841,4.238]],"o":[[13.095,-6.169],[0,0]],"v":[[-1226.817,23.281],[-1186.343,7.644]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Whiskers","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.191,-6.555]],"o":[[-0.191,6.555],[0,0]],"v":[[-1317.113,14.782],[-1317.64,34.805]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.308,-7.153]],"o":[[-2.949,5.557],[0,0]],"v":[[-1355.016,8.906],[-1358.548,29.292]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.109,-7.159]],"o":[[-3.102,5.473],[0,0]],"v":[[-1365.367,5.599],[-1369.463,25.879]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1367.168,2.167],[-1373.923,27.665]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1367.168,2.167],[-1373.923,27.665]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.512,-7.141]],"o":[[-2.789,5.639],[0,0]],"v":[[-1351.418,10.614],[-1354.367,31.092]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.524,-7.141]],"o":[[-2.779,5.644],[0,0]],"v":[[-1352.496,8.616],[-1355.411,29.099]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1362.05,2.742],[-1368.805,28.24]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1362.05,2.742],[-1368.805,28.24]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.308,-7.153]],"o":[[-2.949,5.557],[0,0]],"v":[[-1355.016,8.906],[-1358.548,29.292]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[0.191,-6.555]],"o":[[-0.191,6.555],[0,0]],"v":[[-1317.113,14.782],[-1317.64,34.805]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.697,3.601],[-0.052,0.286],[-0.587,0.063],[-4.056,-1.044],[-0.413,-0.714],[0.686,-0.936],[3.421,-1.344]],"o":[[-3.617,-1.661],[-0.124,-0.263],[0.105,-0.581],[4.164,-0.448],[0.799,0.206],[0.581,1.005],[-2.173,2.964],[0,0]],"v":[[-1316.287,14.381],[-1323.567,5.244],[-1323.767,4.41],[-1322.354,3.568],[-1309.89,4.471],[-1307.809,5.683],[-1308.529,8.885],[-1317.149,15.523]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.567,3.558],[-0.037,0.287],[-0.506,0.077],[-3.703,-1.528],[-0.377,-0.704],[2.238,-1.428],[2.699,-2.496]],"o":[[-3.174,-1.573],[-0.114,-0.26],[0.075,-0.583],[3.589,-0.548],[0.667,0.275],[0.53,0.99],[-3.686,2.353],[0,0]],"v":[[-1354.313,8.485],[-1360.726,-0.049],[-1360.435,-1.465],[-1358.471,-2.644],[-1346.413,-0.474],[-1344.58,0.687],[-1347.28,3.064],[-1355.027,9.648]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.468,3.601],[-0.045,0.286],[-0.508,0.063],[-3.659,-1.63],[-0.357,-0.714],[2.276,-1.366],[2.767,-2.421]],"o":[[-3.129,-1.661],[-0.107,-0.263],[0.091,-0.581],[3.602,-0.448],[0.659,0.294],[0.502,1.005],[-3.75,2.25],[0,0]],"v":[[-1364.652,5.198],[-1370.826,-3.511],[-1370.496,-4.919],[-1368.5,-6.043],[-1356.507,-3.539],[-1354.707,-2.328],[-1357.472,-0.027],[-1365.398,6.34]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1366.855,2.054],[-1370.781,-6.946],[-1370.907,-7.78],[-1368.811,-8.296],[-1359.443,-6.074],[-1358.123,-4.862],[-1359.024,-2.079],[-1367.402,3.196]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1366.855,2.054],[-1370.781,-6.946],[-1370.907,-7.78],[-1368.811,-8.296],[-1359.443,-6.074],[-1358.123,-4.862],[-1359.024,-2.079],[-1367.402,3.196]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.668,3.512],[-0.029,0.288],[-0.503,0.092],[-3.745,-1.422],[-0.397,-0.693],[2.196,-1.492],[2.627,-2.572]],"o":[[-3.218,-1.482],[-0.122,-0.256],[0.058,-0.585],[3.571,-0.65],[0.675,0.256],[0.558,0.975],[-3.618,2.457],[0,0]],"v":[[-1350.727,10.173],[-1357.381,1.825],[-1357.13,0.401],[-1355.201,-0.833],[-1343.086,0.992],[-1341.221,2.1],[-1343.852,4.553],[-1351.407,11.355]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[1.674,3.509],[-0.028,0.288],[-0.503,0.092],[-3.747,-1.416],[-0.398,-0.693],[2.193,-1.495],[2.622,-2.577]],"o":[[-3.22,-1.477],[-0.122,-0.256],[0.057,-0.585],[3.57,-0.656],[0.675,0.255],[0.56,0.974],[-3.614,2.463],[0,0]],"v":[[-1351.806,8.174],[-1358.473,-0.163],[-1358.225,-1.588],[-1356.298,-2.825],[-1344.18,-1.02],[-1342.313,0.085],[-1344.94,2.543],[-1352.484,9.358]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1361.736,2.628],[-1365.663,-6.371],[-1365.789,-7.205],[-1363.692,-7.721],[-1354.325,-5.499],[-1353.004,-4.287],[-1353.906,-1.504],[-1362.283,3.771]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1361.736,2.628],[-1365.663,-6.371],[-1365.789,-7.205],[-1363.692,-7.721],[-1354.325,-5.499],[-1353.004,-4.287],[-1353.906,-1.504],[-1362.283,3.771]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.567,3.558],[-0.037,0.287],[-0.506,0.077],[-3.703,-1.528],[-0.377,-0.704],[2.238,-1.428],[2.699,-2.496]],"o":[[-3.174,-1.573],[-0.114,-0.26],[0.075,-0.583],[3.589,-0.548],[0.667,0.275],[0.53,0.99],[-3.686,2.353],[0,0]],"v":[[-1354.313,8.485],[-1360.726,-0.049],[-1360.435,-1.465],[-1358.471,-2.644],[-1346.413,-0.474],[-1344.58,0.687],[-1347.28,3.064],[-1355.027,9.648]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[1.697,3.601],[-0.052,0.286],[-0.587,0.063],[-4.056,-1.044],[-0.413,-0.714],[0.686,-0.936],[3.421,-1.344]],"o":[[-3.617,-1.661],[-0.124,-0.263],[0.105,-0.581],[4.164,-0.448],[0.799,0.206],[0.581,1.005],[-2.173,2.964],[0,0]],"v":[[-1316.287,14.381],[-1323.567,5.244],[-1323.767,4.41],[-1322.354,3.568],[-1309.89,4.471],[-1307.809,5.683],[-1308.529,8.885],[-1317.149,15.523]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.101960793138,0.254901975393,0.780392229557,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Nose","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.52,-0.118],[0.609,-1.647],[-0.496,-1.37],[-2.43,0.033],[-2.43,-0.083],[-0.858,0.089],[1.893,0.501]],"o":[[-3.014,0.064],[-0.505,1.367],[0.473,1.306],[2.353,-0.032],[2.633,0.09],[2.086,-0.216],[-1.926,-0.51]],"v":[[-1317,36.911],[-1326.038,38.789],[-1325.242,40.285],[-1318.575,39.775],[-1313.078,39.871],[-1308.515,40.702],[-1307.831,38.231]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.737,0.616],[1.764,-1.793],[-1.079,-0.948],[-2.466,0.193],[-2.088,-0.376],[-0.768,0.34],[0.799,1.007]],"o":[[-2.587,-0.336],[-1.006,1.023],[0.818,0.719],[2.814,-0.221],[2.484,0.447],[2.156,-0.954],[-1.227,-1.545]],"v":[[-1359.165,31.313],[-1366.208,32.681],[-1365.974,37.123],[-1361.092,38.178],[-1355.147,37.095],[-1350.499,38.629],[-1348.246,34.885]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.986,0.239],[1.551,-1.42],[-1.358,-0.466],[-3.367,-0.122],[-2.041,-0.578],[-0.768,0.34],[1.159,0.557]],"o":[[-2.6,-0.208],[-2.691,2.464],[4.01,1.375],[3.027,0.11],[2.912,0.824],[2.156,-0.954],[-2.782,-1.337]],"v":[[-1368.759,26.382],[-1374.669,27.423],[-1375.678,33.183],[-1369.224,33.185],[-1363.958,33.72],[-1359.011,33.926],[-1359.808,28.531]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.039,0.77],[1.032,0.071],[-0.047,-1.434],[-1.055,-1.23],[-1.43,-0.252],[-1.997,1.785],[0.431,1.926]],"o":[[-1.781,-0.451],[-1.302,-0.089],[0.045,1.367],[0.775,0.903],[1.485,0.262],[0.725,-0.517],[-0.343,-1.533]],"v":[[-1373.259,27.627],[-1376.026,27.517],[-1378.557,30.194],[-1377.647,33.392],[-1374.514,34.871],[-1369.844,33.457],[-1369.411,30.609]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.23,0.959],[1.596,0.156],[1.011,-0.856],[-0.734,0.044],[-1.4,-0.385],[-0.536,-0.217],[-0.543,1.897]],"o":[[-1.449,-1.13],[-1.299,-0.127],[-1.044,0.884],[1.685,-0.045],[1.339,0.368],[2.356,0.953],[0.543,-1.897]],"v":[[-1367.968,29.078],[-1374.19,27.193],[-1378.757,28.139],[-1377.968,30.481],[-1374.306,30.668],[-1370.042,33.245],[-1366.329,32.12]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.753,0.481],[1.29,-0.176],[-0.502,-0.744],[-2.096,-0.292],[-2.12,0.065],[-1.091,0.797],[1.334,0.529]],"o":[[-2.595,-0.263],[-1.422,0.194],[0.708,1.171],[1.83,0.255],[1.448,-0.044],[1.021,-0.746],[-1.835,-0.727]],"v":[[-1354.926,33.129],[-1359.094,33.02],[-1359.932,35.681],[-1355.191,37.159],[-1351.54,37.43],[-1347.355,36.921],[-1348.166,34.005]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.754,0.473],[0.726,-1.569],[-1.409,-0.277],[-1.982,-0.742],[-2.106,-0.25],[-2.402,-0.196],[1.695,0.581]],"o":[[-2.596,-0.258],[-0.603,1.302],[1.636,0.321],[1.984,0.743],[1.576,0.187],[1.933,0.158],[-1.867,-0.64]],"v":[[-1355.966,31.137],[-1361.863,31.407],[-1360.169,33.115],[-1356.963,33.948],[-1353.673,34.64],[-1349.198,35.567],[-1347.975,33.739]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.244,1.028],[1.466,-0.08],[1.112,-0.907],[-1.595,-1.381],[-1.748,0.395],[-0.575,-0.054],[-0.487,1.912]],"o":[[-1.671,-0.765],[-1.303,0.071],[-1.86,1.516],[1.219,1.055],[1.355,-0.306],[1.667,0.157],[0.487,-1.912]],"v":[[-1363.559,29.133],[-1369.36,27.851],[-1373.816,29.097],[-1373.399,33.896],[-1369.324,33.562],[-1365.078,33.31],[-1360.964,33.037]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.244,1.028],[1.466,-0.08],[1.112,-0.907],[-1.595,-1.381],[-1.748,0.395],[-0.575,-0.054],[-0.487,1.912]],"o":[[-1.671,-0.765],[-1.303,0.071],[-1.86,1.516],[1.219,1.055],[1.355,-0.306],[1.667,0.157],[0.487,-1.912]],"v":[[-1363.559,29.133],[-1369.36,27.851],[-1373.816,29.097],[-1373.399,33.896],[-1369.324,33.562],[-1365.078,33.31],[-1360.964,33.037]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.086,0.358],[0.773,-1.546],[-1.422,-0.201],[-1.996,-0.264],[-2.119,-0.103],[-0.818,-0.189],[1.292,0.579]],"o":[[-2.571,-0.442],[-0.642,1.284],[1.688,0.238],[2.1,0.278],[1.811,0.088],[2.247,0.519],[-1.801,-0.807]],"v":[[-1359.165,31.313],[-1367.47,32.847],[-1365.479,35.675],[-1361.38,34.959],[-1356.591,35.325],[-1353.547,36.067],[-1352.678,33.273]]}],"t":420},{"s":[{"c":true,"i":[[5.52,-0.118],[0.609,-1.647],[-0.496,-1.37],[-2.43,0.033],[-2.43,-0.083],[-0.858,0.089],[1.893,0.501]],"o":[[-3.014,0.064],[-0.505,1.367],[0.473,1.306],[2.353,-0.032],[2.633,0.09],[2.086,-0.216],[-1.926,-0.51]],"v":[[-1317,36.911],[-1326.038,38.789],[-1325.242,40.285],[-1318.575,39.775],[-1313.078,39.871],[-1308.515,40.702],[-1307.831,38.231]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.101960793138,0.254901975393,0.780392229557,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Mouth","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.251,3.984],[-0.876,4.083],[-6.114,8.507],[-7.356,1.577],[-5.068,-3.687],[-2.913,-5.549],[0.386,-12.057],[4.059,-2.456],[3.007,0.111],[15.477,2.937]],"o":[[-4.148,-0.479],[-1.251,-3.984],[2.198,-10.243],[4.391,-6.11],[6.128,-1.314],[5.068,3.687],[5.607,10.682],[-0.152,4.742],[-2.574,1.558],[-15.742,-0.579],[0,0]],"v":[[-1342.869,54.095],[-1351.574,46.065],[-1351.489,33.68],[-1338.442,5.333],[-1321.075,-8.251],[-1303.352,-3.894],[-1291.624,10.587],[-1283.615,45.471],[-1288.861,58.052],[-1297.639,59.479],[-1344.556,54.195]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.898,2.893],[-0.535,9.729],[-4.386,8.632],[-5.518,1.731],[-3.934,-3.579],[-2.356,-5.486],[-0.043,-12.061],[3.001,-2.54],[2.277,0.048],[11.783,2.611]],"o":[[-3.15,-0.392],[-3.818,-3.812],[0.756,-13.749],[3.15,-6.199],[4.597,-1.442],[3.934,3.579],[4.535,10.56],[0.017,4.743],[-1.903,1.611],[-11.918,-0.249],[0,0]],"v":[[-1366.278,49.812],[-1374.585,45.228],[-1379.114,28.737],[-1369.802,-0.549],[-1353.556,-13.665],[-1338.009,-8.984],[-1328.741,5.246],[-1321.718,39.949],[-1325.335,52.634],[-1331.932,54.245],[-1367.551,49.947]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[2.816,2.972],[-0.805,9.71],[-4.624,8.507],[-5.564,1.577],[-3.833,-3.687],[-2.203,-5.549],[0.292,-12.057],[3.07,-2.456],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-3.711,-3.916],[1.137,-13.723],[3.321,-6.11],[4.635,-1.314],[3.833,3.687],[4.24,10.682],[-0.115,4.742],[-1.947,1.558],[-11.906,-0.579],[0,0]],"v":[[-1377.759,46.176],[-1385.935,41.364],[-1390.005,24.753],[-1379.885,-4.263],[-1363.281,-16.923],[-1347.87,-11.812],[-1339,2.669],[-1332.943,37.553],[-1336.91,50.133],[-1343.55,51.56],[-1379.036,46.277]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1363.579,49.488],[-1376.265,40.778],[-1383.859,22.449],[-1376.428,-6.12],[-1359.642,-17.509],[-1349.243,-13.262],[-1339.778,0.106],[-1334.949,36.967],[-1342.977,50.556],[-1349.487,52.41],[-1364.856,49.588]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1363.579,49.488],[-1376.265,40.778],[-1383.859,22.449],[-1376.428,-6.12],[-1359.642,-17.509],[-1349.243,-13.262],[-1339.778,0.106],[-1334.949,36.967],[-1342.977,50.556],[-1349.487,52.41],[-1364.856,49.588]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.979,2.809],[-0.257,9.74],[-4.138,8.754],[-5.466,1.888],[-4.034,-3.465],[-2.511,-5.416],[-0.388,-12.055],[2.927,-2.625],[2.277,-0.017],[11.853,2.273]],"o":[[-3.159,-0.302],[-3.926,-3.701],[0.364,-13.765],[2.972,-6.287],[4.553,-1.572],[4.034,3.465],[4.834,10.426],[0.152,4.741],[-1.857,1.665],[-11.92,0.091],[0,0]],"v":[[-1361.509,51.824],[-1369.942,47.479],[-1374.94,31.123],[-1366.468,1.585],[-1350.602,-11.99],[-1334.928,-7.754],[-1325.258,6.205],[-1317.248,40.693],[-1320.501,53.477],[-1327.05,55.275],[-1362.777,51.996]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[2.984,2.804],[-0.241,9.74],[-4.124,8.761],[-5.463,1.897],[-4.04,-3.458],[-2.521,-5.412],[-0.408,-12.054],[2.923,-2.63],[2.277,-0.021],[11.856,2.254]],"o":[[-3.16,-0.297],[-3.932,-3.695],[0.341,-13.765],[2.961,-6.292],[4.551,-1.58],[4.04,3.458],[4.852,10.418],[0.16,4.741],[-1.854,1.668],[-11.92,0.111],[0,0]],"v":[[-1362.517,49.843],[-1370.958,45.512],[-1375.983,29.165],[-1367.561,-0.388],[-1351.718,-13.989],[-1336.037,-9.78],[-1326.343,4.164],[-1318.275,38.638],[-1321.508,51.427],[-1328.053,53.236],[-1363.786,50.017]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1358.461,50.063],[-1371.146,41.353],[-1378.74,23.024],[-1371.31,-5.545],[-1354.524,-16.934],[-1344.125,-12.687],[-1334.659,0.68],[-1329.83,37.542],[-1337.858,51.13],[-1344.369,52.985],[-1359.737,50.163]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1358.461,50.063],[-1371.146,41.353],[-1378.74,23.024],[-1371.31,-5.545],[-1354.524,-16.934],[-1344.125,-12.687],[-1334.659,0.68],[-1329.83,37.542],[-1337.858,51.13],[-1344.369,52.985],[-1359.737,50.163]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.898,2.893],[-0.535,9.729],[-4.386,8.632],[-5.518,1.731],[-3.934,-3.579],[-2.356,-5.486],[-0.043,-12.061],[3.001,-2.54],[2.277,0.048],[11.783,2.611]],"o":[[-3.15,-0.392],[-3.818,-3.812],[0.756,-13.749],[3.15,-6.199],[4.597,-1.442],[3.934,3.579],[4.535,10.56],[0.017,4.743],[-1.903,1.611],[-11.918,-0.249],[0,0]],"v":[[-1366.278,49.812],[-1374.585,45.228],[-1379.114,28.737],[-1369.802,-0.549],[-1353.556,-13.665],[-1338.009,-8.984],[-1328.741,5.246],[-1321.718,39.949],[-1325.335,52.634],[-1331.932,54.245],[-1367.551,49.947]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[1.251,3.984],[-0.876,4.083],[-6.114,8.507],[-7.356,1.577],[-5.068,-3.687],[-2.913,-5.549],[0.386,-12.057],[4.059,-2.456],[3.007,0.111],[15.477,2.937]],"o":[[-4.148,-0.479],[-1.251,-3.984],[2.198,-10.243],[4.391,-6.11],[6.128,-1.314],[5.068,3.687],[5.607,10.682],[-0.152,4.742],[-2.574,1.558],[-15.742,-0.579],[0,0]],"v":[[-1342.869,54.095],[-1351.574,46.065],[-1351.489,33.68],[-1338.442,5.333],[-1321.075,-8.251],[-1303.352,-3.894],[-1291.624,10.587],[-1283.615,45.471],[-1288.861,58.052],[-1297.639,59.479],[-1344.556,54.195]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.933333337307,0.933333337307,0.933333337307,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Snout","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1328.447,25.019]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1328.447,25.019]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Snout","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.767},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1265.202,-2.882],[-1267.487,-11.66],[-1261.509,-18.481],[-1258.191,-18.852],[-1254.268,-15.64],[-1251.975,-7.214],[-1257.364,-0.783],[-1265.218,-4.347]]}],"t":9},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.233},"s":[{"c":false,"i":[[0,0],[-0.53,3.076],[-2.448,1.184],[-0.935,-0.222],[-0.844,-1.425],[0.26,-2.956],[2.426,-0.733],[0.325,2.953]],"o":[[-1.853,-2.272],[0.53,-3.076],[0.879,-0.425],[1.436,0.341],[1.448,2.445],[-0.26,2.956],[-2.425,0.733],[0,0]],"v":[[-1315.748,2.079],[-1317.904,-6.645],[-1313.046,-13.595],[-1310.259,-14.038],[-1306.869,-10.913],[-1304.714,-2.54],[-1309.087,4.006],[-1315.801,0.616]]}],"t":19},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.53,3.076],[-2.448,1.184],[-0.935,-0.222],[-0.844,-1.425],[0.26,-2.956],[2.426,-0.733],[0.325,2.953]],"o":[[-1.853,-2.272],[0.53,-3.076],[0.879,-0.425],[1.436,0.341],[1.448,2.445],[-0.26,2.956],[-2.425,0.733],[0,0]],"v":[[-1323.984,0.356],[-1326.141,-8.368],[-1321.282,-15.318],[-1318.496,-15.762],[-1315.105,-12.637],[-1312.951,-4.264],[-1317.324,2.283],[-1324.037,-1.108]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.519,3.077],[-2.421,1.188],[-0.925,-0.221],[-0.837,-1.423],[0.252,-2.956],[2.399,-0.736],[0.327,2.953]],"o":[[-1.837,-2.27],[0.519,-3.077],[0.869,-0.426],[1.421,0.339],[1.437,2.443],[-0.252,2.956],[-2.399,0.736],[0,0]],"v":[[-1328.084,-12.224],[-1330.233,-20.945],[-1325.437,-27.902],[-1322.68,-28.35],[-1319.32,-25.23],[-1317.173,-16.86],[-1321.489,-10.307],[-1328.138,-13.688]]}],"t":77},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.561,3.07],[-2.436,1.155],[-0.922,-0.234],[-0.817,-1.435],[0.292,-2.952],[2.408,-0.703],[0.286,2.957]],"o":[[-1.806,-2.294],[0.561,-3.07],[0.874,-0.414],[1.416,0.359],[1.403,2.462],[-0.292,2.952],[-2.408,0.703],[0,0]],"v":[[-1339.133,-9.096],[-1341.162,-17.845],[-1336.273,-24.735],[-1333.51,-25.145],[-1330.193,-21.98],[-1328.161,-13.582],[-1332.566,-7.089],[-1339.167,-10.56]]}],"t":113},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1329.609,18.859],[-1331.515,10.081],[-1326.529,3.26],[-1323.761,2.889],[-1320.488,6.101],[-1318.574,14.527],[-1323.07,20.958],[-1329.623,17.394]]}],"t":120},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1329.609,18.859],[-1331.515,10.081],[-1326.529,3.26],[-1323.761,2.889],[-1320.488,6.101],[-1318.574,14.527],[-1323.07,20.958],[-1329.623,17.394]]}],"t":128},{"i":{"x":0,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1337.565,8.259],[-1339.471,-0.518],[-1334.485,-7.339],[-1331.717,-7.71],[-1328.444,-4.498],[-1326.531,3.928],[-1331.026,10.359],[-1337.579,6.795]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":160},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.273},"s":[{"c":false,"i":[[0,0],[-0.604,0.376],[-2.453,0.138],[-0.919,-0.03],[-0.797,-0.178],[0.334,-0.362],[2.418,-0.082],[0.245,0.364]],"o":[[-1.773,-0.285],[0.604,-0.376],[0.88,-0.049],[1.411,0.047],[1.368,0.305],[-0.334,0.362],[-2.418,0.082],[0,0]],"v":[[-1338.469,-17.7],[-1340.375,-18.779],[-1335.388,-19.617],[-1332.62,-19.663],[-1329.348,-19.268],[-1327.434,-18.232],[-1331.93,-17.442],[-1338.483,-17.88]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":171},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":187},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1336.846,11.722],[-1338.752,2.945],[-1333.766,-3.876],[-1330.997,-4.247],[-1327.725,-1.035],[-1325.811,7.391],[-1330.307,13.822],[-1336.86,10.258]]}],"t":193},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1336.846,11.722],[-1338.752,2.945],[-1333.766,-3.876],[-1330.997,-4.247],[-1327.725,-1.035],[-1325.811,7.391],[-1330.307,13.822],[-1336.86,10.258]]}],"t":203},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1320.019,-18.701],[-1322.38,-27.366],[-1317.758,-34.438],[-1315.013,-34.953],[-1311.578,-31.917],[-1309.226,-23.603],[-1313.38,-16.947],[-1320.109,-20.163]]}],"t":214},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1297.984,-21.208],[-1300.345,-29.873],[-1295.723,-36.945],[-1292.978,-37.46],[-1289.542,-34.424],[-1287.191,-26.11],[-1291.344,-19.454],[-1298.074,-22.67]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1302.516,-23.194],[-1304.878,-31.859],[-1300.255,-38.931],[-1297.51,-39.446],[-1294.075,-36.41],[-1291.724,-28.096],[-1295.877,-21.44],[-1302.606,-24.656]]}],"t":296},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1344.909,-22.774],[-1346.815,-31.551],[-1341.829,-38.373],[-1339.061,-38.744],[-1335.788,-35.532],[-1333.874,-27.106],[-1338.37,-20.675],[-1344.923,-24.239]]}],"t":312},{"i":{"x":0.25,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1344.909,-22.774],[-1346.815,-31.551],[-1341.829,-38.373],[-1339.061,-38.744],[-1335.788,-35.532],[-1333.874,-27.106],[-1338.37,-20.675],[-1344.923,-24.239]]}],"t":366},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.431,3.091],[-2.386,1.257],[-0.931,-0.194],[-0.877,-1.399],[0.167,-2.962],[2.377,-0.805],[0.411,2.942]],"o":[[-1.901,-2.216],[0.431,-3.091],[0.856,-0.451],[1.43,0.299],[1.506,2.401],[-0.167,2.962],[-2.376,0.805],[0,0]],"v":[[-1334.779,4.666],[-1337.176,-3.99],[-1332.581,-11.081],[-1329.838,-11.607],[-1326.39,-8.584],[-1324.005,-0.279],[-1328.132,6.394],[-1334.875,3.205]]}],"t":371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1333.045,3.371],[-1334.952,-5.407],[-1329.965,-12.228],[-1327.197,-12.599],[-1323.924,-9.387],[-1322.011,-0.961],[-1326.506,5.47],[-1333.059,1.906]]}],"t":384},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1333.651,8.8],[-1335.557,0.023],[-1330.571,-6.799],[-1327.803,-7.169],[-1324.53,-3.958],[-1322.616,4.469],[-1327.112,10.9],[-1333.665,7.336]]}],"t":403},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.55,0.581],[-2.422,0.431],[-0.919,0.048],[-0.818,-0.169],[0.283,-0.535],[2.396,-0.35],[0.293,0.481]],"o":[[-1.804,-0.222],[0.55,-0.581],[0.869,-0.154],[1.411,-0.073],[1.403,0.29],[-0.283,0.535],[-2.396,0.35],[0,0]],"v":[[-1317.214,-13.937],[-1319.258,-15.248],[-1314.41,-16.898],[-1311.661,-17.231],[-1308.35,-17.003],[-1306.305,-15.753],[-1310.672,-14.217],[-1317.253,-14.185]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1317.286,-1.55],[-1319.192,-10.327],[-1314.205,-17.149],[-1311.437,-17.52],[-1308.165,-14.308],[-1306.251,-5.881],[-1310.747,0.549],[-1317.3,-3.015]]}],"t":405},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1317.286,-1.55],[-1319.192,-10.327],[-1314.205,-17.149],[-1311.437,-17.52],[-1308.165,-14.308],[-1306.251,-5.881],[-1310.747,0.549],[-1317.3,-3.015]]}],"t":410},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.519,3.077],[-2.421,1.188],[-0.926,-0.221],[-0.837,-1.423],[0.252,-2.956],[2.399,-0.736],[0.327,2.953]],"o":[[-1.837,-2.27],[0.519,-3.077],[0.869,-0.426],[1.421,0.339],[1.437,2.443],[-0.252,2.956],[-2.399,0.736],[0,0]],"v":[[-1303.67,7.409],[-1305.819,-1.313],[-1301.024,-8.27],[-1298.267,-8.717],[-1294.907,-5.597],[-1292.76,2.773],[-1297.076,9.326],[-1303.725,5.945]]}],"t":420},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1276.29,1.547],[-1278.575,-7.231],[-1272.598,-14.052],[-1269.28,-14.423],[-1265.357,-11.211],[-1263.063,-2.785],[-1268.452,3.646],[-1276.307,0.082]]}],"t":461},{"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1295.904,-3.752],[-1298.189,-12.529],[-1292.211,-19.351],[-1288.893,-19.722],[-1284.97,-16.51],[-1282.677,-8.083],[-1288.065,-1.653],[-1295.92,-5.217]]}],"t":475}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Front pupil","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.881,0.157],[5.323,-5.016],[-0.849,-14.064],[-2.164,-2.424],[-2.847,-1.093],[-8.994,4.376],[-2.066,7.956],[1.855,5.121],[4.646,3.454]],"o":[[-3.447,-0.069],[-7.037,6.63],[0.256,4.236],[2.164,2.424],[9.256,3.553],[6.565,-3.194],[1.382,-5.322],[-3.489,-9.633],[-4.858,-3.612]],"v":[[-1277.036,-47.926],[-1295.86,-41.682],[-1306.029,-14.062],[-1300.775,1.838],[-1292.963,6.858],[-1264.371,5.568],[-1249.609,-11.302],[-1249.935,-27.778],[-1260.336,-42.78]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[7.001,-0.037],[4.997,-4.394],[-1.145,-14.038],[-1.988,-2.37],[-2.558,-1.022],[-7.863,4.596],[-1.614,8.004],[1.56,5.037],[4.22,3.338]],"o":[[-3.062,0.016],[-6.843,6.017],[0.345,4.228],[1.988,2.37],[8.316,3.324],[5.74,-3.355],[1.079,-5.354],[-2.545,-8.216],[-4.413,-3.49]],"v":[[-1298.132,-45.679],[-1313.908,-39.137],[-1326.075,-10.357],[-1321.127,4.22],[-1312.708,10.076],[-1281.708,7.575],[-1269.304,-8.977],[-1270.787,-25.418],[-1281.422,-41.001]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7,0.157],[4.728,-5.016],[-0.754,-14.064],[-1.922,-2.424],[-2.529,-1.093],[-7.988,4.376],[-1.835,7.956],[1.255,5.121],[4.126,3.454]],"o":[[-3.061,-0.069],[-6.25,6.63],[0.227,4.236],[1.921,2.424],[8.22,3.553],[5.831,-3.194],[1.227,-5.322],[-2.361,-9.633],[-4.315,-3.612]],"v":[[-1306.224,-47.53],[-1322.942,-41.286],[-1335.903,-12.855],[-1331.361,1.854],[-1323.107,7.941],[-1292.05,6.302],[-1279.192,-9.9],[-1280.219,-26.376],[-1291.393,-42.384]]}],"t":128},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":157},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.006],[4.628,-0.168],[-0.624,-0.51],[-1.589,-0.088],[-2.091,-0.04],[-6.607,0.159],[-1.518,0.289],[1.038,0.186],[3.413,0.125]],"o":[[-2.308,-0.003],[-5.754,0.209],[0.188,0.154],[1.589,0.088],[6.799,0.129],[4.823,-0.116],[1.015,-0.193],[-1.953,-0.349],[-3.569,-0.131]],"v":[[-1315.11,-19.937],[-1329.324,-19.713],[-1340.163,-18.709],[-1336.303,-18.132],[-1330.565,-17.95],[-1307.142,-17.985],[-1296.507,-18.572],[-1297.356,-19.17],[-1304.673,-19.764]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":168},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[6.997,-0.237],[4.438,-5.274],[-1.545,-13.999],[-2.055,-2.312],[-2.586,-0.949],[-7.729,4.819],[-1.384,8.047],[1.541,5.043],[4.314,3.216]],"o":[[-3.06,0.104],[-5.867,6.971],[0.465,4.217],[2.055,2.312],[8.407,3.085],[5.642,-3.517],[0.926,-5.382],[-2.9,-9.485],[-4.511,-3.363]],"v":[[-1295.357,-45.757],[-1311.697,-38.583],[-1323.039,-9.468],[-1317.676,4.962],[-1309.093,10.576],[-1278.178,7.192],[-1266.251,-9.707],[-1268.203,-26.1],[-1280.26,-41.454]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[6.997,-0.248],[4.43,-5.281],[-1.568,-13.997],[-2.059,-2.309],[-2.588,-0.945],[-7.721,4.831],[-1.371,8.049],[1.55,5.04],[4.319,3.209]],"o":[[-3.06,0.109],[-5.855,6.981],[0.472,4.216],[2.059,2.309],[8.412,3.071],[5.636,-3.527],[0.917,-5.384],[-2.915,-9.48],[-4.517,-3.356]],"v":[[-1296.53,-47.849],[-1312.858,-40.647],[-1324.15,-11.513],[-1318.764,2.908],[-1310.171,8.507],[-1279.262,5.071],[-1267.363,-11.848],[-1269.342,-28.237],[-1281.425,-43.571]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1309.992,-47.44],[-1324.206,-41.268],[-1335.044,-13.576],[-1331.185,2.324],[-1325.446,7.344],[-1302.024,6.392],[-1291.389,-9.81],[-1292.238,-26.286],[-1299.555,-42.654]]}],"t":312},{"i":{"x":0.833,"y":0.667},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1309.992,-47.44],[-1324.206,-41.268],[-1335.044,-13.576],[-1331.185,2.324],[-1325.446,7.344],[-1302.024,6.392],[-1291.389,-9.81],[-1292.238,-26.286],[-1299.555,-42.654]]}],"t":400},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":true,"i":[[6.965,-0.228],[4.584,-0.191],[-1.138,-0.076],[-1.979,0.046],[-2.548,0.075],[-7.834,0.293],[-1.609,0.117],[1.391,-0.005],[4.203,-0.111]],"o":[[-3.046,0.1],[-6.053,0.252],[0.343,0.023],[1.979,-0.046],[8.283,-0.244],[5.718,-0.214],[1.076,-0.078],[-2.616,0.009],[-4.396,0.116]],"v":[[-1297.623,-16.528],[-1314.106,-15.936],[-1326.234,-15.308],[-1321.305,-15.352],[-1312.94,-15.578],[-1282.103,-16.606],[-1269.744,-17.143],[-1271.219,-17.227],[-1282.748,-16.977]]}],"t":404},{"i":{"x":0.6,"y":1},"o":{"x":0.5,"y":1},"s":[{"c":true,"i":[[6.891,-0.025],[4.59,-5.112],[-1.111,-14.039],[-1.962,-2.373],[-2.528,-1.027],[-7.783,4.582],[-1.607,8.001],[1.374,5.087],[4.169,3.345]],"o":[[-3.014,0.011],[-6.044,6.734],[0.335,4.229],[1.962,2.373],[8.219,3.338],[5.681,-3.345],[1.075,-5.351],[-2.585,-9.569],[-4.359,-3.498]],"v":[[-1298.177,-45.945],[-1314.566,-39.273],[-1326.649,-10.563],[-1321.77,4.098],[-1313.522,9.901],[-1283.007,7.5],[-1270.716,-9.03],[-1272.159,-25.474],[-1283.498,-41.208]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[7.001,-0.037],[4.587,-5.145],[-1.145,-14.038],[-1.988,-2.37],[-2.558,-1.022],[-7.863,4.596],[-1.614,8.004],[1.397,5.085],[4.22,3.338]],"o":[[-3.062,0.016],[-6.064,6.801],[0.345,4.228],[1.988,2.37],[8.316,3.324],[5.74,-3.355],[1.079,-5.354],[-2.628,-9.564],[-4.413,-3.49]],"v":[[-1297.37,-45.843],[-1313.908,-39.137],[-1326.075,-10.357],[-1321.127,4.22],[-1312.708,10.076],[-1281.708,7.575],[-1269.304,-8.977],[-1270.787,-25.418],[-1282.401,-41.11]]}],"t":420},{"s":[{"c":true,"i":[[7.881,0.157],[5.323,-5.016],[-0.849,-14.064],[-2.164,-2.424],[-2.847,-1.093],[-8.994,4.376],[-2.066,7.956],[1.855,5.121],[4.646,3.454]],"o":[[-3.447,-0.069],[-7.037,6.63],[0.256,4.236],[2.164,2.424],[9.256,3.553],[6.565,-3.194],[1.382,-5.322],[-3.489,-9.633],[-4.858,-3.612]],"v":[[-1277.036,-47.926],[-1295.86,-41.682],[-1306.029,-14.062],[-1300.775,1.838],[-1292.963,6.858],[-1264.371,5.568],[-1249.609,-11.302],[-1249.935,-27.778],[-1260.336,-42.78]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-1298.635,-16.776]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1298.635,-16.776]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[145,145]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"Front eye","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.767},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[0.858,1.588]],"o":[[-3.434,-0.634],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1342.852,-8.695],[-1348.82,-16.258],[-1342.95,-24.17],[-1339.493,-24.508],[-1334.526,-19.079],[-1333.972,-12.253],[-1338.356,-7.255],[-1343.104,-8.804]]}],"t":9},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.233},"s":[{"c":false,"i":[[0,0],[0.042,3.491],[-2.622,1.253],[-0.933,-0.226],[-0.746,-2.404],[0.398,-2.257],[1.767,-0.737],[0.734,1.569]],"o":[[-2.79,-0.561],[-0.042,-3.491],[0.881,-0.421],[2.039,0.493],[0.673,2.17],[-0.398,2.257],[-1.377,0.574],[0,0]],"v":[[-1381.126,-3.297],[-1386.145,-10.732],[-1381.612,-18.764],[-1378.828,-19.175],[-1374.673,-13.852],[-1374.046,-7.04],[-1377.457,-1.952],[-1381.332,-3.401]]}],"t":19},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.042,3.491],[-2.622,1.253],[-0.933,-0.226],[-0.746,-2.404],[0.398,-2.257],[1.767,-0.737],[0.734,1.569]],"o":[[-2.79,-0.561],[-0.042,-3.491],[0.881,-0.421],[2.039,0.493],[0.673,2.17],[-0.398,2.257],[-1.377,0.574],[0,0]],"v":[[-1383.363,-6.829],[-1388.382,-14.264],[-1383.849,-22.296],[-1381.065,-22.706],[-1376.91,-17.383],[-1376.283,-10.571],[-1379.694,-5.484],[-1383.569,-6.932]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.047,3.491],[-2.585,1.257],[-0.921,-0.224],[-0.74,-2.403],[0.389,-2.257],[1.742,-0.74],[0.728,1.568]],"o":[[-2.754,-0.557],[-0.047,-3.491],[0.869,-0.422],[2.012,0.49],[0.668,2.169],[-0.389,2.257],[-1.358,0.576],[0,0]],"v":[[-1383.718,-18.309],[-1388.683,-25.737],[-1384.225,-33.776],[-1381.479,-34.191],[-1377.37,-28.874],[-1376.739,-22.063],[-1380.095,-16.97],[-1383.921,-18.413]]}],"t":77},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0,3.491],[-2.601,1.222],[-0.917,-0.237],[-0.707,-2.412],[0.419,-2.251],[1.752,-0.716],[0.706,1.578]],"o":[[-2.746,-0.595],[0,-3.491],[0.874,-0.41],[2.005,0.518],[0.638,2.178],[-0.419,2.251],[-1.365,0.558],[0,0]],"v":[[-1390.361,-16.711],[-1395.224,-24.205],[-1390.657,-32.181],[-1387.906,-32.558],[-1383.871,-27.186],[-1383.332,-20.368],[-1386.757,-15.322],[-1390.563,-16.817]]}],"t":113},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1391.939,4.219],[-1396.697,-3.344],[-1392.017,-11.256],[-1389.261,-11.594],[-1385.301,-6.165],[-1384.859,0.661],[-1388.355,5.659],[-1392.14,4.11]]}],"t":120},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1391.939,4.219],[-1396.697,-3.344],[-1392.017,-11.256],[-1389.261,-11.594],[-1385.301,-6.165],[-1384.859,0.661],[-1388.355,5.659],[-1392.14,4.11]]}],"t":128},{"i":{"x":0,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1381.497,-5.244],[-1386.254,-12.807],[-1381.575,-20.719],[-1378.819,-21.057],[-1374.859,-15.628],[-1374.417,-8.802],[-1377.912,-3.804],[-1381.697,-5.353]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":160},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.273},"s":[{"c":false,"i":[[0,0],[-0.074,0.199],[-1.903,-0.278],[-0.656,-0.136],[-0.459,-0.232],[0.35,-0.072],[1.279,0.193],[0.476,0.185]],"o":[[-1.969,-0.401],[0.074,-0.199],[0.639,0.093],[1.436,0.298],[0.415,0.21],[-0.35,0.072],[-0.997,-0.151],[0,0]],"v":[[-1379.207,-26.935],[-1382.558,-28.013],[-1379.095,-27.858],[-1377.103,-27.512],[-1374.304,-26.665],[-1374.06,-26.204],[-1376.636,-26.374],[-1379.351,-26.968]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":171},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":187},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.922,1.185],[-0.671,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1383.109,0.293],[-1386.6,-7.269],[-1383.166,-15.182],[-1381.144,-15.52],[-1378.238,-10.091],[-1377.914,-3.265],[-1380.479,1.733],[-1383.256,0.185]]}],"t":193},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.147,3.489],[-2.548,1.33],[-0.927,-0.198],[-0.808,-2.38],[0.324,-2.267],[1.72,-0.789],[0.772,1.547]],"o":[[-2.769,-0.479],[-0.147,-3.489],[0.856,-0.447],[2.026,0.433],[0.73,2.149],[-0.324,2.267],[-1.341,0.615],[0,0]],"v":[[-1382.23,0.698],[-1387.406,-6.585],[-1383.178,-14.748],[-1380.446,-15.241],[-1376.187,-10.043],[-1375.361,-3.253],[-1378.571,1.934],[-1382.436,0.6]]}],"t":203},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1369.085,-26.199],[-1374.141,-33.502],[-1369.971,-41.647],[-1367.288,-42.129],[-1363.125,-36.915],[-1362.335,-30.122],[-1365.499,-24.949],[-1369.287,-26.298]]}],"t":214},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1359.342,-22.665],[-1364.397,-29.968],[-1360.227,-38.113],[-1357.544,-38.595],[-1353.381,-33.381],[-1352.592,-26.588],[-1355.755,-21.415],[-1359.543,-22.763]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1361.147,-27.071],[-1366.203,-34.374],[-1362.032,-42.519],[-1359.35,-43.001],[-1355.187,-37.787],[-1354.397,-30.994],[-1357.561,-25.821],[-1361.349,-27.169]]}],"t":296},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.525,-28.795],[-1377.016,-36.358],[-1373.582,-44.27],[-1371.56,-44.608],[-1368.654,-39.179],[-1368.33,-32.353],[-1370.895,-27.355],[-1373.672,-28.904]]}],"t":312},{"i":{"x":0.25,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.525,-28.795],[-1377.016,-36.358],[-1373.582,-44.27],[-1371.56,-44.608],[-1368.654,-39.179],[-1368.33,-32.353],[-1370.895,-27.355],[-1373.672,-28.904]]}],"t":366},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.147,3.489],[-2.548,1.33],[-0.927,-0.198],[-0.808,-2.38],[0.324,-2.267],[1.72,-0.789],[0.772,1.547]],"o":[[-2.769,-0.479],[-0.147,-3.489],[0.856,-0.447],[2.026,0.433],[0.73,2.149],[-0.324,2.267],[-1.341,0.615],[0,0]],"v":[[-1374.434,-4.377],[-1379.609,-11.66],[-1375.382,-19.823],[-1372.649,-20.315],[-1368.39,-15.118],[-1367.565,-8.327],[-1370.774,-3.141],[-1374.64,-4.474]]}],"t":371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1376.408,-5.237],[-1379.899,-12.8],[-1376.465,-20.712],[-1374.443,-21.05],[-1371.537,-15.621],[-1371.213,-8.795],[-1373.778,-3.797],[-1376.555,-5.346]]}],"t":384},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1377.477,-0.705],[-1380.968,-8.268],[-1377.535,-16.18],[-1375.512,-16.518],[-1372.607,-11.089],[-1372.282,-4.263],[-1374.847,0.735],[-1377.625,-0.814]]}],"t":403},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.135,0.312],[-1.869,-0.461],[-0.633,-0.222],[-0.402,-0.371],[0.381,-0.109],[1.255,0.32],[0.433,0.296]],"o":[[-1.9,-0.655],[0.135,-0.312],[0.628,0.155],[1.384,0.486],[0.363,0.335],[-0.381,0.109],[-0.978,-0.249],[0,0]],"v":[[-1372.669,-22.399],[-1375.785,-24.135],[-1372.279,-23.847],[-1370.338,-23.278],[-1367.72,-21.913],[-1367.606,-21.186],[-1370.199,-21.485],[-1372.807,-22.453]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.517,-8.855],[-1377.321,-14.471],[-1373.887,-22.383],[-1371.865,-22.721],[-1368.959,-17.292],[-1368.635,-10.466],[-1371.012,-8.369],[-1372.843,-8.57]]}],"t":405},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.83,-6.908],[-1377.321,-14.471],[-1373.887,-22.383],[-1371.865,-22.721],[-1368.959,-17.292],[-1368.635,-10.466],[-1371.2,-5.468],[-1373.977,-7.017]]}],"t":410},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.047,3.491],[-2.585,1.257],[-0.921,-0.224],[-0.74,-2.403],[0.389,-2.257],[1.742,-0.74],[0,0]],"o":[[-2.152,-1.252],[-0.047,-3.491],[0.869,-0.422],[2.012,0.49],[0.668,2.169],[-0.389,2.257],[-1.358,0.576],[0,0]],"v":[[-1367.706,-2.994],[-1372.2,-11.18],[-1367.742,-19.219],[-1364.996,-19.634],[-1360.887,-14.317],[-1360.256,-7.506],[-1363.612,-2.413],[-1367.91,-3.098]]}],"t":420},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[1.008,0.696]],"o":[[-2.01,-1.357],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1345.63,-8.706],[-1350.333,-16.858],[-1344.463,-24.77],[-1341.007,-25.108],[-1336.04,-19.679],[-1335.485,-12.853],[-1339.87,-7.855],[-1345.882,-8.815]]}],"t":461},{"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[1.008,0.696]],"o":[[-2.01,-1.357],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1356.267,-6.6],[-1360.998,-15.173],[-1355.129,-23.086],[-1351.672,-23.424],[-1346.705,-17.995],[-1346.15,-11.169],[-1350.535,-6.171],[-1356.519,-6.709]]}],"t":475}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"Back pupil","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.836,2.426],[6.311,-2.495],[3.518,-5.242],[1.616,-6.512],[-0.654,-3.285],[-1.52,-2.202],[-6.479,-1.448],[-5.388,3.355],[-2.497,5.611],[0.894,7.369]],"o":[[-5.48,-3.466],[-6.092,2.409],[-3.799,5.661],[-0.807,3.255],[0.513,2.577],[3.614,5.238],[6.479,1.448],[5.007,-3.118],[2.9,-6.516],[-0.522,-4.306]],"v":[[-1344.228,-47.153],[-1365.365,-48.626],[-1378.915,-38.905],[-1384.241,-25.266],[-1383.285,-14.435],[-1380.09,-7.214],[-1364.044,1.094],[-1344.736,-2.607],[-1334.377,-13.355],[-1333.264,-32.062]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.573,2.356],[4.098,-2.539],[1.659,-5.751],[1.063,-6.261],[0.257,-3.303],[-1.054,-2.174],[-4.273,-1.33],[-3.427,3.452],[-1.476,5.654],[0.788,7.35]],"o":[[-3.676,-3.365],[-2.408,1.492],[-1.714,5.94],[-0.552,3.251],[-0.24,3.084],[2.506,5.17],[4.273,1.33],[3.184,-3.207],[1.714,-6.566],[-0.461,-4.295]],"v":[[-1362.236,-45.393],[-1376.084,-46.482],[-1380.722,-35.214],[-1383.849,-21.239],[-1385.236,-10.81],[-1384.554,-4.819],[-1373.842,3.195],[-1361.332,-0.855],[-1354.864,-11.786],[-1354.655,-30.506]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.932,2.426],[3.178,-2.495],[1.771,-5.242],[1.215,-6.45],[1.145,-4.822],[-1.315,-1.925],[-4.115,0.266],[-2.713,3.355],[-1.258,5.611],[0.45,7.369]],"o":[[-2.76,-3.466],[-3.068,2.409],[-1.913,5.661],[-0.993,5.271],[-0.598,2.52],[3.583,5.246],[3.562,-0.23],[2.521,-3.118],[1.46,-6.516],[-0.263,-4.306]],"v":[[-1369.166,-48.879],[-1379.81,-50.352],[-1386.633,-40.631],[-1389.315,-26.993],[-1390.771,-16.522],[-1389.461,-6.351],[-1379.145,-0.632],[-1369.422,-4.334],[-1364.206,-15.081],[-1363.645,-33.788]]}],"t":128},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.793,-5.669],[0.775,-6.512],[-0.313,-3.285],[-0.318,-2.332],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.168,8.344],[-0.387,3.255],[0.246,2.577],[0.746,5.466],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1363.648,-46.499],[-1372.775,-49.661],[-1378.006,-38.174],[-1379.998,-23.979],[-1381.038,-13.915],[-1382.943,-8.701],[-1372.858,-0.632],[-1366.517,-4.871],[-1361.939,-15.316],[-1359.949,-33.639]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[1.15,-5.607],[0.775,-6.512],[-0.313,-3.285],[-0.119,-2.317],[-4.478,0.548],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.472,7.183],[-0.387,3.255],[0.246,2.577],[0.316,6.146],[3.402,-0.417],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1378.034,-39.369],[-1379.692,-25.121],[-1381.079,-16.342],[-1381.963,-9.447],[-1372.858,-0.632],[-1363.6,-4.334],[-1359.659,-13.99],[-1358.952,-33.157]]}],"t":157},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.17,0.678],[3.208,0.706],[2.246,0.209],[0.812,-0.232],[-0.273,-0.287],[-0.669,-0.321],[-3.036,-0.789],[-2.536,-0.409],[-1.214,0.071],[0.497,0.615]],"o":[[-2.037,-0.636],[-4.163,-0.916],[-2.432,-0.194],[-0.406,0.116],[0.214,0.225],[1.591,0.781],[3.006,0.793],[2.357,0.38],[1.409,-0.083],[-0.29,-0.36]],"v":[[-1364.787,-25.127],[-1372.491,-27.134],[-1377.035,-27.528],[-1379.609,-27.272],[-1380.159,-26.737],[-1378.809,-25.911],[-1373.032,-23.999],[-1364.022,-21.998],[-1359.135,-21.458],[-1359.941,-22.897]]}],"t":163},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.925,-5.649],[0.775,-6.512],[0.605,-3.244],[-0.729,-2.202],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.003,6.128],[-0.387,3.255],[-0.681,3.649],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1377.666,-38.857],[-1379.801,-25.638],[-1381.024,-14.82],[-1381.635,-7.373],[-1372.858,-0.632],[-1363.6,-4.334],[-1358.633,-15.081],[-1358.88,-34.902]]}],"t":168},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[1.629,-7.57],[0.775,-6.512],[0.452,-3.269],[0.514,-2.242],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.124,5.226],[-0.387,3.255],[-0.461,3.333],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1377.364,-39.12],[-1380.083,-25.454],[-1381.216,-15.319],[-1382.222,-8.168],[-1372.858,-0.632],[-1363.6,-4.334],[-1358.633,-15.081],[-1359.689,-32.905]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.639,2.281],[3.977,-2.723],[2,-5.363],[0.688,-6.561],[0.254,-2.745],[-1.115,-2.143],[-4.309,-1.208],[-3.327,3.548],[-1.314,5.694],[0.998,7.325]],"o":[[-3.77,-3.259],[-3.84,2.629],[-2.16,5.792],[-0.344,3.28],[-0.335,3.623],[2.653,5.096],[4.309,1.208],[3.091,-3.297],[1.526,-6.613],[-0.583,-4.28]],"v":[[-1360.184,-43.457],[-1374.057,-44.151],[-1379.34,-33.034],[-1382.085,-18.351],[-1383.373,-9.771],[-1381.336,-2.264],[-1370.4,5.442],[-1358.01,1.037],[-1351.856,-10.075],[-1352.181,-28.793]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.643,2.277],[3.973,-2.73],[1.349,-5.563],[0.677,-6.563],[0.449,-3.282],[-1.119,-2.141],[-4.311,-1.201],[-3.321,3.553],[-1.304,5.696],[1.01,7.323]],"o":[[-3.776,-3.252],[-3.835,2.635],[-1.477,6.091],[-0.338,3.28],[-0.408,2.98],[2.661,5.092],[4.311,1.201],[3.086,-3.302],[1.515,-6.615],[-0.59,-4.279]],"v":[[-1361.353,-45.44],[-1375.227,-46.111],[-1380.155,-35.585],[-1382.421,-21.253],[-1383.622,-11.132],[-1382.435,-4.211],[-1371.486,3.476],[-1359.104,-0.95],[-1352.969,-12.072],[-1353.326,-30.789]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.924,-5.649],[0.775,-6.512],[0.039,-3.3],[-0.729,-2.202],[-3.107,-1.448],[-2.583,3.355],[-1.198,5.611],[-0.154,7.391]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.062,6.496],[-0.387,3.255],[-0.045,3.824],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.39,-6.516],[0.11,-5.266]],"v":[[-1359.698,-47.825],[-1367.657,-49.086],[-1373.832,-39.24],[-1376.535,-25.403],[-1377.995,-15.001],[-1377.824,-8.126],[-1367.74,-0.057],[-1358.482,-3.759],[-1353.515,-14.507],[-1354.57,-32.33]]}],"t":312},{"i":{"x":0.833,"y":0.667},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.924,-5.649],[0.775,-6.512],[0.039,-3.3],[-0.729,-2.202],[-3.107,-1.448],[-2.583,3.355],[-1.198,5.611],[-0.154,7.391]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.062,6.496],[-0.387,3.255],[-0.045,3.824],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.39,-6.516],[0.11,-5.266]],"v":[[-1359.698,-47.825],[-1367.657,-49.086],[-1373.832,-39.24],[-1376.535,-25.403],[-1377.995,-15.001],[-1377.824,-8.126],[-1367.74,-0.057],[-1358.482,-3.759],[-1353.515,-14.507],[-1354.57,-32.33]]}],"t":400},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.333},"s":[{"c":true,"i":[[2.443,0.793],[3.91,1.017],[2.112,0.459],[0.892,0.062],[-0.466,-0.238],[-0.987,-0.358],[-4.066,-1.24],[-3.3,-0.867],[-1.458,-0.255],[0.691,0.43]],"o":[[-3.469,-1.126],[-2.393,-0.623],[-2.281,-0.496],[-0.446,-0.031],[0.365,0.187],[2.346,0.851],[4.066,1.24],[3.066,0.805],[1.693,0.297],[-0.404,-0.251]],"v":[[-1362.337,-20.608],[-1371.733,-23.365],[-1373.515,-23.726],[-1376.329,-24.011],[-1375.914,-23.548],[-1373.794,-22.702],[-1373.81,-22.493],[-1361.836,-19.088],[-1355.568,-17.577],[-1355.235,-18.055]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.513,1.773],[2.825,-0.513],[0.676,-2.891],[0.355,-2.866],[-0.111,-2.19],[-0.537,-1.65],[-4.15,-1.302],[-3.346,1.873],[-1.458,3.497],[0.745,4.827]],"o":[[-3.537,-2.49],[-1.389,1.872],[-0.657,2.812],[-0.254,2.051],[0.071,2.277],[1.261,3.778],[4.15,1.302],[3.109,-1.74],[1.693,-4.061],[-0.435,-2.821]],"v":[[-1362.17,-36.453],[-1372.886,-38.918],[-1375.518,-30.41],[-1376.874,-21.854],[-1377.343,-15.671],[-1376.758,-10.717],[-1373.583,-6.305],[-1361.4,-7.622],[-1355.066,-14.008],[-1354.863,-26.039]]}],"t":406},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":1},"s":[{"c":true,"i":[[2.553,2.336],[2.203,-1.391],[1.24,-5.878],[0.704,-5.457],[0.093,-3.31],[-0.279,-2.392],[-4.198,-1.338],[-3.373,3.446],[-1.458,5.651],[0.775,7.351]],"o":[[-3.576,-3.272],[-0.813,3.304],[-1.276,6.049],[-0.422,3.269],[-0.098,3.476],[0.638,5.458],[4.198,1.338],[3.134,-3.201],[1.693,-6.563],[-0.453,-4.296]],"v":[[-1362.074,-45.548],[-1371.572,-47.779],[-1374.78,-33.802],[-1377.187,-20.616],[-1378.164,-11.149],[-1378.459,-3.837],[-1373.452,2.987],[-1361.15,-1.041],[-1354.777,-11.96],[-1354.65,-30.623]]}],"t":407},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.572,2.354],[2.371,-1.506],[1.304,-5.593],[1.36,-6.64],[0.408,-3.842],[-0.013,-2.407],[-4.268,-1.331],[-3.423,3.451],[-1.475,5.654],[0.788,7.35]],"o":[[-3.669,-3.359],[-0.992,0.867],[-1.138,4.889],[-0.658,3.23],[-0.364,3.428],[0.03,5.597],[4.268,1.331],[3.181,-3.207],[1.713,-6.566],[-0.46,-4.295]],"v":[[-1362.225,-45.403],[-1373.148,-47.26],[-1375.906,-35.918],[-1378.459,-22.122],[-1379.733,-11.334],[-1379.98,-4.36],[-1373.817,3.182],[-1361.32,-0.867],[-1354.858,-11.798],[-1354.655,-30.514]]}],"t":415},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.573,2.356],[4.051,-2.612],[1.309,-5.573],[1.406,-6.724],[0.648,-3.851],[-1.054,-2.174],[-4.273,-1.33],[-3.427,3.452],[-1.476,5.654],[0.788,7.35]],"o":[[-3.676,-3.365],[-2.628,1.694],[-1.129,4.807],[-0.675,3.228],[-0.431,2.563],[2.506,5.17],[4.273,1.33],[3.184,-3.207],[1.714,-6.566],[-0.461,-4.295]],"v":[[-1362.236,-45.393],[-1376.084,-46.482],[-1380.847,-36.517],[-1383.848,-22.044],[-1385.258,-11.434],[-1384.554,-4.819],[-1373.842,3.195],[-1361.332,-0.855],[-1354.864,-11.786],[-1354.655,-30.506]]}],"t":420},{"s":[{"c":true,"i":[[3.836,2.426],[6.311,-2.495],[3.518,-5.242],[1.616,-6.512],[-0.654,-3.285],[-1.52,-2.202],[-6.479,-1.448],[-5.388,3.355],[-2.497,5.611],[0.894,7.369]],"o":[[-5.48,-3.466],[-6.092,2.409],[-3.799,5.661],[-0.807,3.255],[0.513,2.577],[3.614,5.238],[6.479,1.448],[5.007,-3.118],[2.9,-6.516],[-0.522,-4.306]],"v":[[-1344.228,-47.153],[-1365.365,-48.626],[-1378.915,-38.905],[-1384.241,-25.266],[-1383.285,-14.435],[-1380.09,-7.214],[-1364.044,1.094],[-1344.736,-2.607],[-1334.377,-13.355],[-1333.264,-32.062]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-1371.872,-21.895]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1371.872,-21.895]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[145,145]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"Back eye ","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.504,2.82],[1.357,-5.179],[5.023,-22.061],[12.439,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-8.057,9.03],[-1.601,11.361],[0.016,46.36]],"o":[[-3.6,3.963],[-5.734,21.887],[-5.023,22.061],[-12.439,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[7.638,-8.561],[6.469,-45.906],[-0.001,-3.771]],"v":[[-1189.616,-140.561],[-1196.176,-126.077],[-1210.157,-59.666],[-1232.685,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1240.566,55.083],[-1208.001,40.731],[-1196.651,8.792],[-1186.956,-129.835]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.986,2.766],[0.89,-5.206],[3.215,-22.159],[8.952,-19.155],[21.82,-5.984],[8.3,-0.511],[21.083,2.234],[-18.891,-3.183],[-33.08,4.316],[-5.887,9.196],[-0.905,11.39],[1.298,46.342]],"o":[[-2.632,4.038],[-3.761,22],[-3.215,22.159],[-8.952,19.155],[-8.02,2.199],[-21.161,1.302],[0,0],[36.844,6.207],[12,-1.566],[5.582,-8.719],[3.655,-46.025],[-0.106,-3.769]],"v":[[-1196.612,-141.705],[-1201.208,-127.088],[-1210.016,-60.407],[-1225.223,10.528],[-1276.118,44.368],[-1300.771,47.87],[-1364.286,46.468],[-1339.808,55.996],[-1228.894,53.767],[-1203.554,40.766],[-1197.829,7.739],[-1194.288,-131.039]]}],"t":26},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-33.187,3.397],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.37,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[12.039,-1.232],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1202.846,-140.561],[-1207.845,-126.077],[-1218.5,-59.666],[-1235.669,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1350.856,53.741],[-1240.538,53.94],[-1214.373,42.313],[-1208.208,8.792],[-1200.819,-129.835]]}],"t":128},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.37,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1202.846,-140.561],[-1207.845,-126.077],[-1218.5,-59.666],[-1235.669,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1239.642,53.98],[-1214.301,41.661],[-1208.208,8.792],[-1200.819,-129.835]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.064,2.708],[0.741,-5.229],[2.581,-22.241],[8.402,-19.403],[21.64,-6.605],[8.282,-0.747],[21.139,1.632],[-19.066,-1.872],[-36.451,8.209],[-5.623,9.361],[-0.579,11.411],[2.62,46.286]],"o":[[-2.516,4.111],[-3.131,22.098],[-2.581,22.241],[-8.402,19.403],[-7.953,2.427],[-21.115,1.905],[0,0],[37.782,3.709],[11.806,-2.659],[5.331,-8.875],[2.341,-46.111],[-0.213,-3.765]],"v":[[-1197.375,-144.455],[-1201.552,-129.713],[-1208.455,-62.808],[-1221.631,8.532],[-1271.54,43.81],[-1296.084,48.014],[-1359.612,48.424],[-1335.031,57.202],[-1222.662,50.692],[-1199.077,38.574],[-1194.328,4.962],[-1194.748,-133.86]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.068,2.705],[0.732,-5.231],[2.544,-22.246],[8.369,-19.417],[21.629,-6.641],[8.281,-0.761],[21.141,1.597],[-19.072,-1.81],[-36.89,5.106],[-5.607,9.37],[-0.56,11.412],[2.698,46.281]],"o":[[-2.509,4.116],[-3.095,22.103],[-2.544,22.246],[-8.369,19.417],[-7.949,2.441],[-21.112,1.941],[0,0],[38.917,3.693],[11.987,-1.659],[5.316,-8.884],[2.263,-46.115],[-0.219,-3.765]],"v":[[-1198.713,-146.711],[-1202.865,-131.962],[-1209.656,-65.046],[-1222.713,6.316],[-1272.562,41.678],[-1297.099,45.923],[-1360.627,46.44],[-1336.701,55.354],[-1225.149,49.833],[-1200.054,36.476],[-1195.416,2.701],[-1196.068,-136.121]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.978,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.369,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1197.728,-139.986],[-1202.727,-125.502],[-1213.382,-59.091],[-1230.55,11.395],[-1282.364,43.81],[-1307.105,46.627],[-1370.556,43.463],[-1347.132,54.708],[-1235.448,55.658],[-1209.728,42.608],[-1203.089,9.366],[-1195.7,-129.26]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.978,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.369,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1197.728,-139.986],[-1202.727,-125.502],[-1213.382,-59.091],[-1230.55,11.395],[-1282.364,43.81],[-1307.105,46.627],[-1370.556,43.463],[-1347.132,54.708],[-1235.448,55.658],[-1209.728,42.608],[-1203.089,9.366],[-1195.7,-129.26]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.986,2.766],[0.89,-5.206],[3.215,-22.159],[8.952,-19.155],[21.82,-5.984],[8.3,-0.511],[21.083,2.234],[-18.891,-3.183],[-33.08,4.316],[-5.887,9.196],[-0.905,11.39],[1.298,46.342]],"o":[[-2.632,4.038],[-3.761,22],[-3.215,22.159],[-8.952,19.155],[-8.02,2.199],[-21.161,1.302],[0,0],[36.844,6.207],[12,-1.566],[5.582,-8.719],[3.655,-46.025],[-0.106,-3.769]],"v":[[-1196.612,-141.705],[-1201.208,-127.088],[-1210.016,-60.407],[-1225.223,10.528],[-1276.118,44.368],[-1300.771,47.87],[-1364.286,46.468],[-1339.808,55.996],[-1228.894,53.767],[-1203.24,40.525],[-1197.829,7.739],[-1194.288,-131.039]]}],"t":420},{"s":[{"c":true,"i":[[2.504,2.82],[1.357,-5.179],[5.023,-22.061],[12.439,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-8.057,9.03],[-1.601,11.361],[0.016,46.36]],"o":[[-3.6,3.963],[-5.734,21.887],[-5.023,22.061],[-12.439,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[7.638,-8.561],[6.469,-45.906],[-0.001,-3.771]],"v":[[-1189.616,-140.561],[-1196.176,-126.077],[-1210.157,-59.666],[-1232.685,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1240.566,55.083],[-1208.001,40.731],[-1196.651,8.792],[-1186.956,-129.835]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"Head shadow","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-2.243,-9.177],[0.936,-15.607],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-5.931,4.682],[-3.746,-1.249],[2.185,-33.086],[1.249,-4.37],[-0.624,-2.497],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[2.297,9.397],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[5.931,-4.682],[3.746,1.249],[-2.185,33.086],[-1.249,4.37],[0.624,2.497],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1333.89,-107.066],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.209,61.562],[-7.142,12.688],[-2.86,-1.794],[-1.508,-9.326],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-5.114,5.562],[-2.888,-1.169],[0.747,-33.12],[0.83,-4.395],[-0.545,-2.483],[2.524,-11.936],[37.936,-5.736],[30.711,18.46]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[1.508,9.326],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[6.153,-6.692],[2.888,1.169],[-0.747,33.12],[-0.83,4.395],[0.545,2.483],[-2.524,11.936],[-37.936,5.736],[-31.795,-19.111]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1337.925,-138.789],[-1335.931,-105.136],[-1311.092,-102.931],[-1255.894,-100.403],[-1252.969,-99.548],[-1228.276,-128.297],[-1204.829,-150.127],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1375.234,45.216]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-1.249,-9.364],[0.936,-15.607],[-13.183,0.312],[-8.437,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[30.187,19.304]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[1.249,9.364],[0,0],[13.183,-0.312],[8.437,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-31.253,-19.986]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1344.186,-141.566],[-1343.126,-107.87],[-1318.357,-104.977],[-1263.251,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1386.584,41.334]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-22.932,-19.986]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.713,-142.26],[-1330.742,-107.131],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1374.734,41.334]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-22.932,-19.986]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.713,-142.26],[-1330.742,-107.131],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1374.734,41.334]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-22.443,62.227],[-6.777,12.887],[-2.91,-1.712],[-1.773,-9.279],[0.057,-15.635],[-13.145,1.053],[-8.565,-2.019],[-0.807,-0.267],[-4.953,5.706],[-2.92,-1.086],[-0.198,-33.128],[0.704,-4.416],[-0.615,-2.466],[2.183,-12.003],[37.757,-6.816],[31.225,17.576]],"o":[[0,0],[6.777,-12.887],[2.91,1.712],[1.773,9.279],[0,0],[13.145,-1.053],[8.565,2.019],[0.807,0.267],[5.96,-6.865],[2.92,1.086],[0.198,33.128],[-0.704,4.416],[0.615,2.466],[-2.183,12.003],[-37.757,6.816],[-32.327,-18.197]],"v":[[-1366.314,-92.012],[-1354.853,-138.302],[-1343.871,-154.239],[-1338.548,-137.509],[-1335.594,-103.926],[-1310.702,-102.431],[-1255.455,-101.479],[-1252.506,-100.707],[-1228.643,-130.15],[-1205.829,-152.639],[-1193.246,-116.768],[-1191.545,-69.656],[-1191.247,-55.917],[-1195.109,19.331],[-1226.875,52.384],[-1370.591,47.486]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-22.338,62.265],[-6.755,12.898],[-2.913,-1.707],[-1.789,-9.276],[0.031,-15.635],[-13.143,1.075],[-8.568,-2.004],[-0.808,-0.266],[-4.944,5.714],[-2.922,-1.081],[-0.254,-33.127],[0.697,-4.418],[-0.62,-2.465],[2.163,-12.007],[37.745,-6.88],[31.254,17.523]],"o":[[0,0],[6.755,-12.898],[2.913,1.707],[1.789,9.276],[0,0],[13.143,-1.075],[8.568,2.004],[0.808,0.266],[5.948,-6.875],[2.922,1.081],[0.254,33.127],[-0.697,4.418],[0.62,2.465],[-2.163,12.007],[-37.745,6.88],[-32.358,-18.142]],"v":[[-1367.564,-93.985],[-1356.181,-140.294],[-1345.226,-156.25],[-1337.683,-138.48],[-1332.763,-105.124],[-1311.97,-104.497],[-1256.721,-103.638],[-1253.771,-102.871],[-1229.958,-132.354],[-1207.181,-154.881],[-1194.538,-119.031],[-1192.758,-71.922],[-1192.437,-58.184],[-1196.172,17.071],[-1227.883,50.177],[-1371.607,45.52]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.267,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.854,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.081,4.682],[-22.932,-19.986]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.594,-141.685],[-1325.624,-106.556],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.751,-127.462],[-1205.708,-148.632],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1369.615,41.909]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.267,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.854,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.081,4.682],[-22.932,-19.986]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.594,-141.685],[-1325.624,-106.556],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.751,-127.462],[-1205.708,-148.632],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1369.615,41.909]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.209,61.562],[-7.142,12.688],[-2.86,-1.794],[-2.173,-9.194],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-6.127,9.197],[-3.807,-2.701],[0.747,-33.12],[0.83,-4.395],[-0.545,-2.483],[2.524,-11.936],[37.936,-5.736],[30.711,18.46]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[2.173,9.194],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[5.041,-7.566],[2.541,1.803],[-0.747,33.12],[-0.83,4.395],[0.545,2.483],[-2.524,11.936],[-37.936,5.736],[-31.795,-19.111]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1334.299,-137.905],[-1329.03,-103.629],[-1311.092,-102.931],[-1251.081,-99.616],[-1248.155,-98.76],[-1227.228,-127.616],[-1204.829,-150.127],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1375.234,45.216]]}],"t":420},{"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-2.955,-8.973],[-1.346,-14.959],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-5.931,4.682],[-3.746,-1.249],[2.185,-33.086],[1.249,-4.37],[-0.624,-2.497],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[2.861,8.687],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[5.931,-4.682],[3.746,1.249],[-2.185,33.086],[-1.249,4.37],[0.624,2.497],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1331.415,-106.992],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"Head fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.227,-2.778],[-1.353,-0.367],[-6.471,-0.544],[-9.867,-0.295],[-27.649,6.141],[-0.11,0.604],[0.126,4.4],[23.479,-1.053],[22.589,6.489]],"o":[[-0.46,2.749],[0.276,3.372],[6.944,1.884],[9.96,0.837],[28.31,0.848],[0.53,-0.118],[0.79,-4.331],[-23.364,2.552],[-23.479,1.053],[0,0]],"v":[[-1363.494,52.882],[-1363.618,60.993],[-1360.808,65.864],[-1340.115,69.258],[-1311.792,71.49],[-1227.493,66.408],[-1225.32,64.112],[-1224.321,50.967],[-1294.474,57.901],[-1364.349,51.193]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372618675,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"Helmet collar","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[23.023,-3.817],[33.186,-39.093],[-12.733,-48.658],[-9.231,-8.019],[0,0],[-44.404,6.65],[-17.923,25.701],[-7.441,17.862],[7.154,26.212],[82.928,18.735]],"o":[[-49.619,8.226],[-26.764,31.528],[8.177,31.247],[23.191,20.147],[44.717,4.039],[13.81,-2.068],[11.068,-15.872],[10.449,-25.081],[-4.744,-17.383],[-22.763,-5.143]],"v":[[-1304.764,-207.839],[-1414.922,-146.333],[-1438.469,-15.523],[-1407.347,36.657],[-1363.455,64.003],[-1228.244,63.996],[-1159.167,21.376],[-1131.354,-31.799],[-1131.22,-103.357],[-1246.445,-202.29]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.243137255311,0.65098041296,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"Helmet fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1280.449,-66.313]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1280.449,-66.313]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Head and Helmet","np":15,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":25,"ip":45,"ks":{"a":{"a":0,"ix":1,"k":[-365,-428,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.77],"y":[0.604]},"o":{"x":[0.291],"y":[0.2]},"s":[179],"t":45},{"i":{"x":[0.674],"y":[0.494]},"o":{"x":[0.436],"y":[0.467]},"s":[372],"t":190.139},{"i":{"x":[0.754],"y":[0.922]},"o":{"x":[0.106],"y":[0.184]},"s":[663],"t":326},{"s":[925],"t":462}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.677],"y":[0.967]},"o":{"x":[0.304],"y":[0.004]},"s":[193],"t":45},{"i":{"x":[0.307],"y":[0.87]},"o":{"x":[0.59],"y":[-0.043]},"s":[219],"t":190.139},{"i":{"x":[0.579],"y":[1.231]},"o":{"x":[0.211],"y":[-1.351]},"s":[185],"t":326},{"s":[186],"t":462}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.247],"y":[1.161]},"o":{"x":[0.167],"y":[0.167]},"s":[-9],"t":45},{"i":{"x":[0.712],"y":[0.509]},"o":{"x":[0.488],"y":[0.067]},"s":[2],"t":133},{"i":{"x":[0.459],"y":[1.036]},"o":{"x":[0.207],"y":[0.301]},"s":[-14.225],"t":216},{"i":{"x":[0.384],"y":[0.716]},"o":{"x":[0.499],"y":[0.027]},"s":[-23.61],"t":257},{"i":{"x":[0.713],"y":[0.925]},"o":{"x":[0.305],"y":[0.876]},"s":[-12],"t":298},{"s":[-9],"t":364}]},"s":{"a":0,"ix":6,"k":[-21,21,100]}},"nm":"striped fish 3","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.644,1.367],[-1.367,-2.644],[2.644,-1.367],[1.367,2.644]],"o":[[2.644,-1.367],[1.367,2.644],[-2.644,1.367],[-1.367,-2.644]],"v":[[-278.01,-464.082],[-270.748,-461.771],[-273.06,-454.508],[-280.322,-456.82]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 18","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.213},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"dots 18","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.397,1.24],[-1.24,-2.397],[2.397,-1.24],[1.24,2.397]],"o":[[2.397,-1.24],[1.24,2.397],[-2.397,1.24],[-1.24,-2.397]],"v":[[-271.779,-452.636],[-265.195,-450.54],[-267.29,-443.955],[-273.875,-446.051]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 12","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":212.207},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.016},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":237.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":250.646},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":263.455},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"dots 12","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.637,1.363],[-1.363,-2.637],[2.637,-1.363],[1.363,2.637]],"o":[[2.637,-1.363],[1.363,2.637],[-2.637,1.363],[-1.363,-2.637]],"v":[[-269.885,-474.475],[-262.643,-472.169],[-264.948,-464.927],[-272.19,-467.232]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 17","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.213},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":197.928},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":209.643},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":233.072},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":244.783},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":256.5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":314.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":327.008},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.861},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":374.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":383.602},{"s":[0],"t":392.458984375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"dots 17","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.41,1.246],[-1.246,-2.41],[2.41,-1.246],[1.246,2.41]],"o":[[2.41,-1.246],[1.246,2.41],[-2.41,1.246],[-1.246,-2.41]],"v":[[-258.674,-446.065],[-252.052,-443.958],[-254.16,-437.336],[-260.781,-439.444]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 11","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":233.438},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":247.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":261.992},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":314.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":327.008},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.861},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":374.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":383.602},{"s":[0],"t":392.458984375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"dots 11","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.805,1.451],[-1.451,-2.805],[2.805,-1.451],[1.451,2.805]],"o":[[2.805,-1.451],[1.451,2.805],[-2.805,1.451],[-1.451,-2.805]],"v":[[-262.366,-484.789],[-254.66,-482.337],[-257.113,-474.63],[-264.819,-477.083]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 16","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190.605},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.336},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.062},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":231.791},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":245.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256.5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":267.484},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"dots 16","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.784,1.44],[-1.44,-2.784],[2.784,-1.44],[1.44,2.784]],"o":[[2.784,-1.44],[1.44,2.784],[-2.784,1.44],[-1.44,-2.784]],"v":[[-242.346,-444.75],[-234.699,-442.316],[-237.133,-434.67],[-244.78,-437.103]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 10","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":211.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.895},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":227.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":244.783},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":261.627},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"dots 10","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.607,1.348],[-1.348,-2.607],[2.607,-1.348],[1.348,2.607]],"o":[[2.607,-1.348],[1.348,2.607],[-2.607,1.348],[-1.348,-2.607]],"v":[[-331.273,-454.413],[-324.112,-452.133],[-326.391,-444.972],[-333.552,-447.252]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 15","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.768},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":225.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":255.922},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":272.689},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"dots 15","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.896,1.497],[-1.497,-2.896],[2.896,-1.497],[1.497,2.896]],"o":[[2.896,-1.497],[1.497,2.896],[-2.896,1.497],[-1.497,-2.896]],"v":[[-329.246,-442.538],[-321.292,-440.007],[-323.824,-432.052],[-331.778,-434.584]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 9","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":188.41},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":202.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":223.555},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":233.375},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":271.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"dots 9","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.823,1.46],[-1.46,-2.823],[2.823,-1.46],[1.46,2.823]],"o":[[2.823,-1.46],[1.46,2.823],[-2.823,1.46],[-1.46,-2.823]],"v":[[-322.06,-463.812],[-314.305,-461.344],[-316.773,-453.589],[-324.528,-456.057]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 14","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":217.691},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":227.217},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":236.734},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":246.246},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":255.771},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":265.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"dots 14","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.459,1.271],[-1.271,-2.459],[2.459,-1.271],[1.271,2.459]],"o":[[2.459,-1.271],[1.271,2.459],[-2.459,1.271],[-1.271,-2.459]],"v":[[-317.719,-435.153],[-310.965,-433.003],[-313.114,-426.249],[-319.868,-428.399]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 8","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":211.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"dots 8","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.93,1.515],[-1.515,-2.93],[2.93,-1.515],[1.515,2.93]],"o":[[2.93,-1.515],[1.515,2.93],[-2.93,1.515],[-1.515,-2.93]],"v":[[-312.483,-475.015],[-304.435,-472.453],[-306.996,-464.405],[-315.045,-466.966]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 13","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":207.08},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":235.635},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":249.912},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":264.189},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"dots 13","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.807,1.452],[-1.452,-2.807],[2.807,-1.452],[1.452,2.807]],"o":[[2.807,-1.452],[1.452,2.807],[-2.807,1.452],[-1.452,-2.807]],"v":[[-306.368,-430.793],[-298.656,-428.339],[-301.111,-420.626],[-308.823,-423.081]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 7","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":207.809},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.432},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":229.043},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":242.59},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256.135},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":269.682},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"dots 7","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.748,1.421],[-1.421,-2.748],[2.748,-1.421],[1.421,2.748]],"o":[[2.748,-1.421],[1.421,2.748],[-2.748,1.421],[-1.421,-2.748]],"v":[[-383.108,-444.271],[-375.559,-441.868],[-377.962,-434.319],[-385.511,-436.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190.605},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.426},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":232.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":246.252},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":260.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":274.072},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"dots 5","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.766,1.43],[-1.43,-2.766],[2.766,-1.43],[1.43,2.766]],"o":[[2.766,-1.43],[1.43,2.766],[-2.766,1.43],[-1.43,-2.766]],"v":[[-384.125,-430.303],[-376.527,-427.885],[-378.945,-420.287],[-386.543,-422.705]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 6","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208.912},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.426},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":227.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":253.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":269.682},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"dots 6","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.6,1.345],[-1.345,-2.6],[2.6,-1.345],[1.345,2.6]],"o":[[2.6,-1.345],[1.345,2.6],[-2.6,1.345],[-1.345,-2.6]],"v":[[-373.851,-454.409],[-366.708,-452.136],[-368.982,-444.992],[-376.125,-447.266]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":212.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":238.93},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":247.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"dots 3","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.597,1.343],[-1.343,-2.597],[2.597,-1.343],[1.343,2.597]],"o":[[2.597,-1.343],[1.343,2.597],[-2.597,1.343],[-1.343,-2.597]],"v":[[-370.848,-424.403],[-363.714,-422.133],[-365.985,-414.998],[-373.119,-417.269]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":185.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":195},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":212.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":16,"mn":"ADBE Vector Group","nm":"dots 4","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.944,1.522],[-1.522,-2.944],[2.944,-1.522],[1.522,2.944]],"o":[[2.944,-1.522],[1.522,2.944],[-2.944,1.522],[-1.522,-2.944]],"v":[[-364.496,-466.04],[-356.41,-463.466],[-358.983,-455.38],[-367.07,-457.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.768},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":243.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.932},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":262.543},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":17,"mn":"ADBE Vector Group","nm":"dots","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.68,1.386],[-1.386,-2.68],[2.68,-1.386],[1.386,2.68]],"o":[[2.68,-1.386],[1.386,2.68],[-2.68,1.386],[-1.386,-2.68]],"v":[[-358.249,-418.562],[-350.888,-416.219],[-353.231,-408.858],[-360.591,-411.201]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":210.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":232.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":254.305},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":265.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":18,"mn":"ADBE Vector Group","nm":"dots 2","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.787,4.783],[-3.53,3.322],[-0.752,0.191],[-1.009,-1.757],[-0.469,-5.598],[0.123,-0.319],[0.443,-0.254],[5.377,-2.171]],"o":[[-0.264,-4.84],[0.787,-4.783],[0.565,-0.532],[1.964,-0.499],[2.797,4.872],[0.029,0.341],[-0.184,0.476],[-5.031,2.884],[0,0]],"v":[[-268.562,-391.745],[-268.301,-406.254],[-262.051,-419.097],[-260.105,-420.326],[-255.349,-417.283],[-251.552,-401.011],[-251.62,-399.996],[-252.718,-398.975],[-268.356,-391.382]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-3.975,8.311],[-2.071,0.172],[-1.196,-1.654],[0.251,-6.78],[0.168,-0.307],[0.439,-0.211],[5.253,-2.343],[0.466,0.522]],"o":[[-0.343,-9.206],[0.896,-1.875],[2.034,-0.169],[3.976,5.497],[-0.013,0.35],[-0.234,0.427],[-5.186,2.487],[-0.639,0.285],[0,0]],"v":[[-303.201,-377.675],[-299.375,-404.766],[-295.016,-408.806],[-290.098,-405.644],[-284.296,-386.523],[-284.5,-385.503],[-285.64,-384.628],[-301.299,-377.383],[-303.254,-377.374]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-4.199,9.826],[-1.482,0.717],[-1.691,-1.506],[-0.941,-4.257],[0.521,-4.392],[0.3,-0.433],[0.422,-0.251],[6.634,-0.542]],"o":[[-0.985,-10.584],[0.632,-1.478],[2.058,-0.995],[3.317,2.954],[0.956,4.324],[-0.061,0.517],[-0.275,0.397],[-5.664,3.373],[0,0]],"v":[[-348.784,-363.5],[-343.867,-394.716],[-340.962,-398.475],[-334.688,-396.895],[-328.963,-385.294],[-327.977,-372.124],[-328.422,-370.639],[-329.548,-369.721],[-348.342,-363.739]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.124,7.058],[-4.732,1.899],[-1.513,-0.992],[-0.554,-1.002],[0.458,-8.291],[0.277,-0.457],[0.394,-0.233],[2.439,-0.322],[5.037,-0.665]],"o":[[0.451,-7.357],[1.469,-4.883],[1.679,-0.674],[0.957,0.628],[4.019,7.266],[-0.029,0.534],[-0.237,0.391],[-2.119,1.25],[-5.037,0.665],[0,0]],"v":[[-390.46,-353.652],[-385.747,-375.201],[-377.547,-387.47],[-372.333,-387.239],[-370.162,-384.622],[-366.949,-360.269],[-367.292,-358.72],[-368.311,-357.822],[-375.384,-355.902],[-390.495,-353.906]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":19,"mn":"ADBE Vector Group","nm":"stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[4.818,-7.964],[-0.071,-0.543],[-0.388,-0.372],[-12.193,-0.364]],"o":[[-5.794,7.284],[-0.283,0.468],[0.07,0.533],[8.803,8.444],[0,0]],"v":[[-260.836,-478.945],[-276.775,-456.042],[-277.279,-454.514],[-276.418,-453.19],[-243.427,-439.348]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[6.274,-9.991],[-9.235,-4.045]],"o":[[-8.82,7.836],[7.735,6.466],[0,0]],"v":[[-309.475,-468.673],[-332.269,-441.751],[-306.642,-425.877]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.256,-11.093],[-10.904,-5.377]],"o":[[-9.424,10.119],[10.904,5.377],[0,0]],"v":[[-361.705,-460.818],[-388.252,-428.968],[-355.539,-412.837]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.344,0.488]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.818,-472.842]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-20.97,12.957]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-200.277,-485.07]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.621,1.19]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-187.841,-459.3]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.409,3.438]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-188.459,-464.901]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.823,9.314]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.995,-478.552]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.645,0.499]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.94,-455.493]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.409,3.438]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-188.459,-464.901]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[1.097,-1.636],[0.372,-2.467],[-1.219,-1.825],[-1.689,0.394],[-1.224,1.71],[-0.272,1.637],[1.022,1.762],[1.499,0.806]],"o":[[-1.559,-0.417],[-1.222,1.822],[-0.372,2.467],[1.182,1.769],[1.689,-0.394],[0.842,-1.176],[0.37,-2.226],[-1.022,-1.762],[0,0]],"v":[[-448.595,-443.882],[-452.744,-441.185],[-455.36,-434.713],[-454.154,-427.647],[-449.429,-425.61],[-444.988,-429.06],[-443.138,-433.282],[-444.347,-439.673],[-448.306,-443.422]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":20,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.511,20.332],[20.031,-20.488],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.511,-20.332],[-20.031,20.488],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-222.846,-497.356],[-203.083,-430.203],[-432,-353],[-521.357,-405.581]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-101.298,-32.784],[27.444,-8.236],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[101.298,32.784],[-27.444,8.236],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-201.646,-480.973],[-216.849,-412.644],[-432,-353],[-521.357,-405.581]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.504,-14.378],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.564,13.861],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.69,12.889],[23.14,-16.898],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.743,-12.425],[-23.14,16.898],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-214.224,-494.398],[-205.828,-424.903],[-432,-353],[-515.729,-412.062]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.285,11.221],[12,6],[-35,13],[-107.003,-27.354],[27.664,-7.462],[78,9],[6.18,21.925]],"o":[[0,0],[-12,-6],[35,-13],[103.153,26.37],[-27.664,7.462],[-78,-9],[0,0]],"v":[[-483,-409],[-511.576,-420.114],[-470,-460],[-203.131,-477.545],[-220.247,-409.67],[-432,-353],[-516.727,-396.945]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":384},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.504,-14.378],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.564,13.861],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":21,"mn":"ADBE Vector Group","nm":"body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.511,20.332],[20.031,-20.488],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.511,-20.332],[-20.031,20.488],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-222.846,-497.356],[-203.083,-430.203],[-432,-353],[-521.357,-405.581]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-101.298,-32.784],[27.444,-8.236],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[101.298,32.784],[-27.444,8.236],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-201.646,-480.973],[-216.849,-412.644],[-432,-353],[-521.357,-405.581]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-108.777,-16.115],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.321,15.603],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.41,11.028],[23.14,-16.898],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.934,-10.677],[-23.14,16.898],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-214.224,-494.398],[-205.828,-424.903],[-432,-353],[-515.729,-412.062]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.603,11.715],[12,6],[-35,13],[-106.074,-28.991],[27.664,-7.462],[78,9],[6.18,21.925]],"o":[[0,0],[-12,-6],[35,-13],[102.704,28.07],[-27.664,7.462],[-78,-9],[0,0]],"v":[[-483,-409],[-511.89,-421.262],[-470,-460],[-203.131,-477.545],[-220.247,-409.67],[-432,-353],[-516.727,-396.945]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":384},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-108.777,-16.115],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.321,15.603],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":22,"mn":"ADBE Vector Group","nm":"body","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.82,10.821]],"o":[[17.676,-4.928],[0,0]],"v":[[-172.602,-476.242],[-119.976,-506.493]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.357,-9.638]],"o":[[17.853,4.241],[0,0]],"v":[[-167.895,-438.182],[-112.758,-422.061]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.779,12.238]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-113.382,-509.203]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.693,5.159]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-110.794,-485.904]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.762,11.033]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-111.038,-505.592]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.866,-10.865]],"o":[[18.166,2.59],[0,0]],"v":[[-166.664,-445.697],[-114.7,-424.739]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.953,9.951]],"o":[[18.247,-1.94],[0,0]],"v":[[-168.159,-465.274],[-106.558,-489.544]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-19.153,-7.987]],"o":[[17.727,4.741],[0,0]],"v":[[-170.595,-433.824],[-117.731,-420.503]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.779,12.238]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-113.382,-509.203]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-11.866,-10.865]],"o":[[18.166,2.59],[0,0]],"v":[[-166.664,-445.697],[-114.7,-424.739]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.896,3.885],[-3.972,8.323]],"o":[[7.769,-1.515],[7.245,-4.081],[0,0]],"v":[[-173.106,-489.205],[-152.479,-503.119],[-135.428,-522.797]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.662,-1.989],[-8.356,-3.398]],"o":[[7.532,2.434],[8.049,2.089],[0,0]],"v":[[-162.063,-449.77],[-137.816,-448.22],[-112.569,-444.524]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.308,4.782],[-4.819,9.708]],"o":[[7.857,-0.96],[7.288,-5.525],[0,0]],"v":[[-167.527,-487.308],[-147.414,-500.863],[-130.23,-524.02]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.748,1.62],[-8.512,6.709]],"o":[[7.857,-0.96],[8.952,-1.871],[0,0]],"v":[[-167.527,-487.308],[-145.119,-492.942],[-119.673,-506.509]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-5.666,5.813],[-5.62,9.267]],"o":[[7.857,-0.96],[6.384,-6.549],[0,0]],"v":[[-167.527,-487.308],[-145.867,-499.111],[-126.576,-521.777]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.842,-1.076],[-10.547,-5.09]],"o":[[7.723,1.735],[9.061,1.244],[0,0]],"v":[[-161.916,-457.77],[-138.917,-455.551],[-111.479,-446.943]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.541,5.06],[-8.728,9.689]],"o":[[7.416,-1.818],[7.594,-5.096],[0,0]],"v":[[-166.514,-478.142],[-143.098,-488.388],[-120.318,-507.266]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-12.352,-0.281],[-13.01,-0.883]],"o":[[7.574,0.966],[9.143,0.208],[0,0]],"v":[[-164.439,-445.243],[-138.905,-446.398],[-112.288,-442.269]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.308,4.782],[-4.819,9.708]],"o":[[7.857,-0.96],[7.288,-5.525],[0,0]],"v":[[-167.527,-487.308],[-147.414,-500.863],[-130.23,-524.02]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-7.842,-1.076],[-10.547,-5.09]],"o":[[7.723,1.735],[9.061,1.244],[0,0]],"v":[[-161.916,-457.77],[-138.917,-455.551],[-111.479,-446.943]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.566,17.502]],"o":[[17.386,-10.051],[0,0]],"v":[[-183.242,-498.735],[-148.006,-540.732]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-22.937,-1.122]],"o":[[20.079,-0.381],[0,0]],"v":[[-166.321,-463.015],[-109.18,-466.166]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.098,15.635]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-145.53,-537.216]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-12.206,11.517]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-127.848,-524.986]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.395,15.065]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-139.448,-534.819]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.3,-4.326]],"o":[[19.959,-2.217],[0,0]],"v":[[-167.369,-470.57],[-108.772,-466.966]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.083,14.579]],"o":[[18.808,-7.04],[0,0]],"v":[[-174.937,-489.216],[-132.865,-523.103]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-18.533,-0.856]],"o":[[20.081,0.182],[0,0]],"v":[[-168.324,-458.603],[-107.576,-461.917]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.098,15.635]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-145.53,-537.216]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-16.3,-4.326]],"o":[[19.959,-2.217],[0,0]],"v":[[-167.369,-470.57],[-108.772,-466.966]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[-141.167,-477.879]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[-141.167,-477.879]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.816,15.265],[-5.727,10.201],[-4.344,0.323],[-2.793,-3.343],[-2.528,-8.072],[-8.69,-6.646],[-0.889,-3.362],[5.155,-3.779],[31.868,-3.107],[9,14.412]],"o":[[9.487,-14.286],[7.816,-15.265],[2.132,-3.799],[4.344,-0.323],[3.7,4.429],[3.27,10.44],[2.763,2.113],[1.634,6.18],[-25.823,18.932],[-7.313,-15.337],[0,0]],"v":[[-203.864,-501.795],[-169.553,-539.871],[-144.145,-573.62],[-132.998,-578.96],[-121.235,-574.495],[-105.978,-540.861],[-78.351,-510.697],[-71.835,-502.803],[-80.976,-487.307],[-179.476,-456.496],[-203.971,-501.168]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.811,3.393],[-11.49,-2.199],[-3.352,-2.783],[0.309,-4.345],[3.782,-7.567],[-1.644,-10.815],[1.693,-3.038],[3.809,5.134],[29.392,12.703],[0.901,16.968]],"o":[[15.216,-7.911],[16.811,-3.393],[4.279,0.819],[3.352,2.783],[-0.41,5.756],[-4.891,9.786],[0.523,3.438],[-3.112,5.583],[-19.078,-25.715],[1.023,-16.961],[0,0]],"v":[[-182.887,-475.672],[-127.277,-489.888],[-86.258,-489.963],[-71.844,-483.274],[-66.473,-471.896],[-78.83,-437.092],[-79.871,-396.201],[-80.658,-385.996],[-106.43,-384.271],[-183.466,-424.228],[-183.283,-475.175]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.505,9.149],[-11.225,3.294],[-4.253,-0.943],[-1.711,-4.006],[-0.094,-8.459],[-6.405,-8.869],[0.118,-3.476],[6.367,0.561],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[14.505,-9.149],[4.18,-1.227],[4.253,0.943],[2.266,5.307],[0.121,10.939],[2.036,2.82],[-0.217,6.388],[-31.896,-2.812],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-145.812,-538.037],[-111.849,-555.13],[-102.456,-557.265],[-92.48,-549.598],[-87.567,-512.994],[-69.808,-476.146],[-65.845,-466.709],[-86.005,-460.587],[-176.202,-455.133],[-197.465,-501.431]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.379,13.652],[-9.359,7.02],[-4.314,0.607],[-3.006,-3.153],[-3.053,-7.889],[-9.107,-6.061],[-1.108,-3.297],[5.218,-3.692],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[10.379,-13.652],[3.485,-2.614],[4.314,-0.607],[3.982,4.176],[3.948,10.203],[2.895,1.927],[2.036,6.059],[-26.136,18.496],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-156.212,-537.575],[-136.291,-570.056],[-128.242,-575.348],[-116.211,-571.664],[-98.78,-539.104],[-69.232,-510.818],[-62.213,-503.369],[-79.134,-486.2],[-176.202,-455.133],[-197.465,-501.431]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[14.664,-3.025],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.749,12.493],[-10.041,6.003],[-4.354,0.153],[-2.66,-3.45],[-2.211,-8.165],[-8.424,-6.98],[-0.757,-3.395],[6.07,-2.002],[31.944,2.201],[6.495,15.701]],"o":[[13.476,-6.526],[11.749,-12.493],[3.739,-2.235],[4.354,-0.153],[3.524,4.57],[2.86,10.559],[2.678,2.219],[1.391,6.239],[-30.408,10.03],[-4.678,-16.335],[0,0]],"v":[[-194.77,-495.64],[-153.526,-531.234],[-124.933,-556.296],[-116.375,-560.717],[-104.795,-555.795],[-90.863,-521.591],[-64.435,-490.372],[-58.232,-482.23],[-77.151,-465.805],[-178.201,-446.934],[-194.979,-495.039]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.081,-1.528],[-10.922,-4.192],[-2.808,-3.33],[1.071,-4.223],[5.057,-6.781],[0.29,-10.936],[2.203,-2.691],[5.323,3.539],[29.023,13.523],[0.425,16.986]],"o":[[14.921,-1.252],[17.081,1.528],[4.067,1.561],[2.808,3.33],[-1.419,5.593],[-6.54,8.769],[-0.092,3.477],[-4.049,4.947],[-26.665,-17.727],[1.499,-16.925],[0,0]],"v":[[-184.528,-471.72],[-113.938,-483.19],[-76.57,-476.172],[-67.807,-472.17],[-64.529,-460.023],[-82.832,-427.945],[-91.071,-387.879],[-93.647,-377.973],[-118.248,-382.713],[-186.551,-420.312],[-184.939,-471.234]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[14.664,-3.025],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.816,15.265],[-5.727,10.201],[-4.344,0.323],[-2.793,-3.343],[-2.528,-8.072],[-8.69,-6.646],[-0.889,-3.362],[5.155,-3.779],[31.868,-3.107],[9,14.412]],"o":[[9.487,-14.286],[7.816,-15.265],[2.132,-3.799],[4.344,-0.323],[3.7,4.429],[3.27,10.44],[2.763,2.113],[1.634,6.18],[-25.823,18.932],[-7.313,-15.337],[0,0]],"v":[[-203.864,-501.795],[-169.553,-539.871],[-144.145,-573.62],[-132.998,-578.96],[-121.235,-574.495],[-105.978,-540.861],[-78.351,-510.697],[-71.835,-502.803],[-80.976,-487.307],[-179.476,-456.496],[-203.971,-501.168]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.811,3.393],[-11.49,-2.199],[-3.352,-2.783],[0.309,-4.345],[3.782,-7.567],[-1.644,-10.815],[1.693,-3.038],[3.809,5.134],[29.392,12.703],[0.901,16.968]],"o":[[15.216,-7.911],[16.811,-3.393],[4.279,0.819],[3.352,2.783],[-0.41,5.756],[-4.891,9.786],[0.523,3.438],[-3.112,5.583],[-19.078,-25.715],[1.023,-16.961],[0,0]],"v":[[-182.887,-475.672],[-127.277,-489.888],[-86.258,-489.963],[-71.844,-483.274],[-66.473,-471.896],[-78.83,-437.092],[-79.871,-396.201],[-80.658,-385.996],[-106.43,-384.271],[-183.466,-424.228],[-183.283,-475.175]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.505,9.149],[-11.225,3.294],[-4.253,-0.943],[-1.711,-4.006],[-0.094,-8.459],[-6.405,-8.869],[0.118,-3.476],[6.367,0.561],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[14.505,-9.149],[4.18,-1.227],[4.253,0.943],[2.266,5.307],[0.121,10.939],[2.036,2.82],[-0.217,6.388],[-31.896,-2.812],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-145.812,-538.037],[-111.849,-555.13],[-102.456,-557.265],[-92.48,-549.598],[-87.567,-512.994],[-69.808,-476.146],[-65.845,-466.709],[-86.005,-460.587],[-176.202,-455.133],[-197.465,-501.431]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.379,13.652],[-9.359,7.02],[-4.314,0.607],[-3.006,-3.153],[-3.053,-7.889],[-9.107,-6.061],[-1.108,-3.297],[5.218,-3.692],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[10.379,-13.652],[3.485,-2.614],[4.314,-0.607],[3.982,4.176],[3.948,10.203],[2.895,1.927],[2.036,6.059],[-26.136,18.496],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-156.212,-537.575],[-136.291,-570.056],[-128.242,-575.348],[-116.211,-571.664],[-98.78,-539.104],[-69.232,-510.818],[-62.213,-503.369],[-79.134,-486.2],[-176.202,-455.133],[-197.465,-501.431]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[15.347,-4.168],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.749,12.493],[-10.041,6.003],[-4.354,0.153],[-2.66,-3.45],[-2.211,-8.165],[-8.424,-6.98],[-0.757,-3.395],[6.07,-2.002],[31.944,2.201],[6.495,15.701]],"o":[[13.858,-7.801],[11.749,-12.493],[3.739,-2.235],[4.354,-0.153],[3.524,4.57],[2.86,10.559],[2.678,2.219],[1.391,6.239],[-30.408,10.03],[-4.678,-16.335],[0,0]],"v":[[-194.77,-495.64],[-153.526,-531.234],[-124.933,-556.296],[-116.375,-560.717],[-104.795,-555.795],[-90.863,-521.591],[-64.435,-490.372],[-58.232,-482.23],[-77.151,-465.805],[-178.201,-446.934],[-194.979,-495.039]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.081,-1.528],[-10.922,-4.192],[-2.808,-3.33],[1.071,-4.223],[5.057,-6.781],[0.29,-10.936],[2.203,-2.691],[5.323,3.539],[29.023,13.523],[0.425,16.986]],"o":[[15.735,-2.305],[17.081,1.528],[4.067,1.561],[2.808,3.33],[-1.419,5.593],[-6.54,8.769],[-0.092,3.477],[-4.049,4.947],[-26.665,-17.727],[1.499,-16.925],[0,0]],"v":[[-184.528,-471.72],[-113.938,-483.19],[-76.57,-476.172],[-67.807,-472.17],[-64.529,-460.023],[-82.832,-427.945],[-91.071,-387.879],[-93.647,-377.973],[-118.248,-382.713],[-186.551,-420.312],[-184.939,-471.234]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[15.347,-4.168],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":23,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":26,"ip":83,"ks":{"a":{"a":0,"ix":1,"k":[-365,-428,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.731],"y":[0.806]},"o":{"x":[0.252],"y":[0.129]},"s":[183],"t":84},{"i":{"x":[0.601],"y":[0.479]},"o":{"x":[0.294],"y":[0.23]},"s":[355.01],"t":186},{"i":{"x":[0.843],"y":[0.836]},"o":{"x":[0.198],"y":[0.187]},"s":[532.832],"t":300},{"s":[856],"t":450}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.699],"y":[1.154]},"o":{"x":[0.149],"y":[0.089]},"s":[148],"t":84},{"i":{"x":[0.427],"y":[0.668]},"o":{"x":[0.603],"y":[0.082]},"s":[150.802],"t":186},{"i":{"x":[0.463],"y":[0.923]},"o":{"x":[0.228],"y":[0.663]},"s":[139.072],"t":300},{"s":[136],"t":450}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.836],"y":[0.523]},"o":{"x":[0.247],"y":[0.019]},"s":[-6],"t":84},{"i":{"x":[0.356],"y":[1.056]},"o":{"x":[0.293],"y":[0.668]},"s":[-9.642],"t":186},{"i":{"x":[0.554],"y":[0.972]},"o":{"x":[0.221],"y":[0.033]},"s":[-12.279],"t":244},{"s":[-10],"t":330}]},"s":{"a":0,"ix":6,"k":[-35,35,100]}},"nm":"striped fish","op":502,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.644,1.367],[-1.367,-2.644],[2.644,-1.367],[1.367,2.644]],"o":[[2.644,-1.367],[1.367,2.644],[-2.644,1.367],[-1.367,-2.644]],"v":[[-278.01,-464.082],[-270.748,-461.771],[-273.06,-454.508],[-280.322,-456.82]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 18","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309.701},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":361.297},{"s":[0],"t":371.615234375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"dots 18","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.397,1.24],[-1.24,-2.397],[2.397,-1.24],[1.24,2.397]],"o":[[2.397,-1.24],[1.24,2.397],[-2.397,1.24],[-1.24,-2.397]],"v":[[-271.779,-452.636],[-265.195,-450.54],[-267.29,-443.955],[-273.875,-446.051]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 12","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":334.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":346.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":358.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":370.242},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":382.277},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"dots 12","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.637,1.363],[-1.363,-2.637],[2.637,-1.363],[1.363,2.637]],"o":[[2.637,-1.363],[1.363,2.637],[-2.637,1.363],[-1.363,-2.637]],"v":[[-269.885,-474.475],[-262.643,-472.169],[-264.948,-464.927],[-272.19,-467.232]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 17","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":117.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":126.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":135.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":168.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":177.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309.701},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":320.709},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":331.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":353.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":364.734},{"s":[0],"t":375.744140625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"dots 17","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.41,1.246],[-1.246,-2.41],[2.41,-1.246],[1.246,2.41]],"o":[[2.41,-1.246],[1.246,2.41],[-2.41,1.246],[-1.246,-2.41]],"v":[[-258.674,-446.065],[-252.052,-443.958],[-254.16,-437.336],[-260.781,-439.444]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 11","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":117.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":126.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":135.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":168.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":177.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":354.074},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.488},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":380.902},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"dots 11","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.805,1.451],[-1.451,-2.805],[2.805,-1.451],[1.451,2.805]],"o":[[2.805,-1.451],[1.451,2.805],[-2.805,1.451],[-1.451,-2.805]],"v":[[-262.366,-484.789],[-254.66,-482.337],[-257.113,-474.63],[-264.819,-477.083]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 16","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":313.828},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.729},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.627},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":352.525},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":365.424},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.744},{"s":[0],"t":386.0625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"dots 16","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.784,1.44],[-1.44,-2.784],[2.784,-1.44],[1.44,2.784]],"o":[[2.784,-1.44],[1.44,2.784],[-2.784,1.44],[-1.44,-2.784]],"v":[[-242.346,-444.75],[-234.699,-442.316],[-237.133,-434.67],[-244.78,-437.103]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 10","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":333.777},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":341.348},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":348.914},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":364.734},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":380.561},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"dots 10","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.607,1.348],[-1.348,-2.607],[2.607,-1.348],[1.348,2.607]],"o":[[2.607,-1.348],[1.348,2.607],[-2.607,1.348],[-1.348,-2.607]],"v":[[-331.273,-454.413],[-324.112,-452.133],[-326.391,-444.972],[-333.552,-447.252]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 15","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":336.531},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":346.85},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":375.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390.953},{"s":[0],"t":400}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"dots 15","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.896,1.497],[-1.497,-2.896],[2.896,-1.497],[1.497,2.896]],"o":[[2.896,-1.497],[1.497,2.896],[-2.896,1.497],[-1.497,-2.896]],"v":[[-329.246,-442.538],[-321.292,-440.007],[-323.824,-432.052],[-331.778,-434.584]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 9","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.766},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":344.787},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":354.014},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":361.297},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":371.615},{"s":[0],"t":390.19140625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"dots 9","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.823,1.46],[-1.46,-2.823],[2.823,-1.46],[1.46,2.823]],"o":[[2.823,-1.46],[1.46,2.823],[-2.823,1.46],[-1.46,-2.823]],"v":[[-322.06,-463.812],[-314.305,-461.344],[-316.773,-453.589],[-324.528,-456.057]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 14","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":339.279},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":348.229},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":357.17},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":366.109},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.059},{"s":[0],"t":384}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"dots 14","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.459,1.271],[-1.271,-2.459],[2.459,-1.271],[1.271,2.459]],"o":[[2.459,-1.271],[1.271,2.459],[-2.459,1.271],[-1.271,-2.459]],"v":[[-317.719,-435.153],[-310.965,-433.003],[-313.114,-426.249],[-319.868,-428.399]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 8","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.9},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":333.777},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":361.297},{"s":[0],"t":371.615234375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"dots 8","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.93,1.515],[-1.515,-2.93],[2.93,-1.515],[1.515,2.93]],"o":[[2.93,-1.515],[1.515,2.93],[-2.93,1.515],[-1.515,-2.93]],"v":[[-312.483,-475.015],[-304.435,-472.453],[-306.996,-464.405],[-315.045,-466.966]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 13","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":329.307},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":356.137},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":369.553},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":382.967},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"dots 13","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.807,1.452],[-1.452,-2.807],[2.807,-1.452],[1.452,2.807]],"o":[[2.807,-1.452],[1.452,2.807],[-2.807,1.452],[-1.452,-2.807]],"v":[[-306.368,-430.793],[-298.656,-428.339],[-301.111,-420.626],[-308.823,-423.081]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 7","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":329.992},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.973},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":349.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":362.672},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.4},{"s":[0],"t":388.126953125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"dots 7","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.748,1.421],[-1.421,-2.748],[2.748,-1.421],[1.421,2.748]],"o":[[2.748,-1.421],[1.421,2.748],[-2.748,1.421],[-1.421,-2.748]],"v":[[-383.108,-444.271],[-375.559,-441.868],[-377.962,-434.319],[-385.511,-436.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":313.828},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.9},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.969},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":353.041},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":366.113},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":379.182},{"s":[0],"t":392.25390625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"dots 5","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.766,1.43],[-1.43,-2.766],[2.766,-1.43],[1.43,2.766]],"o":[[2.766,-1.43],[1.43,2.766],[-2.766,1.43],[-1.43,-2.766]],"v":[[-384.125,-430.303],[-376.527,-427.885],[-378.945,-420.287],[-386.543,-422.705]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 6","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":331.029},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.969},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":348.914},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":357.859},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":372.99},{"s":[0],"t":388.126953125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"dots 6","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.6,1.345],[-1.345,-2.6],[2.6,-1.345],[1.345,2.6]],"o":[[2.6,-1.345],[1.345,2.6],[-2.6,1.345],[-1.345,-2.6]],"v":[[-373.851,-454.409],[-366.708,-452.136],[-368.982,-444.992],[-376.125,-447.266]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":334.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":359.232},{"s":[0],"t":367.48828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"dots 3","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.597,1.343],[-1.343,-2.597],[2.597,-1.343],[1.343,2.597]],"o":[[2.597,-1.343],[1.343,2.597],[-2.597,1.343],[-1.343,-2.597]],"v":[[-370.848,-424.403],[-363.714,-422.133],[-365.985,-414.998],[-373.119,-417.269]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":317.957},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":334.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":361.297},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":371.615},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":16,"mn":"ADBE Vector Group","nm":"dots 4","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.944,1.522],[-1.522,-2.944],[2.944,-1.522],[1.522,2.944]],"o":[[2.944,-1.522],[1.522,2.944],[-2.944,1.522],[-1.522,-2.944]],"v":[[-364.496,-466.04],[-356.41,-463.466],[-358.983,-455.38],[-367.07,-457.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":336.531},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":363.361},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.42},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":17,"mn":"ADBE Vector Group","nm":"dots","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.68,1.386],[-1.386,-2.68],[2.68,-1.386],[1.386,2.68]],"o":[[2.68,-1.386],[1.386,2.68],[-2.68,1.386],[-1.386,-2.68]],"v":[[-358.249,-418.562],[-350.888,-416.219],[-353.231,-408.858],[-360.591,-411.201]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.402},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":353.041},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":363.361},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":373.68},{"s":[0],"t":384}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":18,"mn":"ADBE Vector Group","nm":"dots 2","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.787,4.783],[-3.53,3.322],[-0.752,0.191],[-1.009,-1.757],[-0.469,-5.598],[0.123,-0.319],[0.443,-0.254],[5.377,-2.171]],"o":[[-0.264,-4.84],[0.787,-4.783],[0.565,-0.532],[1.964,-0.499],[2.797,4.872],[0.029,0.341],[-0.184,0.476],[-5.031,2.884],[0,0]],"v":[[-268.562,-391.745],[-268.301,-406.254],[-262.051,-419.097],[-260.105,-420.326],[-255.349,-417.283],[-251.552,-401.011],[-251.62,-399.996],[-252.718,-398.975],[-268.356,-391.382]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-3.975,8.311],[-2.071,0.172],[-1.196,-1.654],[0.251,-6.78],[0.168,-0.307],[0.439,-0.211],[5.253,-2.343],[0.466,0.522]],"o":[[-0.343,-9.206],[0.896,-1.875],[2.034,-0.169],[3.976,5.497],[-0.013,0.35],[-0.234,0.427],[-5.186,2.487],[-0.639,0.285],[0,0]],"v":[[-303.201,-377.675],[-299.375,-404.766],[-295.016,-408.806],[-290.098,-405.644],[-284.296,-386.523],[-284.5,-385.503],[-285.64,-384.628],[-301.299,-377.383],[-303.254,-377.374]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-4.199,9.826],[-1.482,0.717],[-1.691,-1.506],[-0.941,-4.257],[0.521,-4.392],[0.3,-0.433],[0.422,-0.251],[6.634,-0.542]],"o":[[-0.985,-10.584],[0.632,-1.478],[2.058,-0.995],[3.317,2.954],[0.956,4.324],[-0.061,0.517],[-0.275,0.397],[-5.664,3.373],[0,0]],"v":[[-348.784,-363.5],[-343.867,-394.716],[-340.962,-398.475],[-334.688,-396.895],[-328.963,-385.294],[-327.977,-372.124],[-328.422,-370.639],[-329.548,-369.721],[-348.342,-363.739]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.124,7.058],[-4.732,1.899],[-1.513,-0.992],[-0.554,-1.002],[0.458,-8.291],[0.277,-0.457],[0.394,-0.233],[2.439,-0.322],[5.037,-0.665]],"o":[[0.451,-7.357],[1.469,-4.883],[1.679,-0.674],[0.957,0.628],[4.019,7.266],[-0.029,0.534],[-0.237,0.391],[-2.119,1.25],[-5.037,0.665],[0,0]],"v":[[-390.46,-353.652],[-385.747,-375.201],[-377.547,-387.47],[-372.333,-387.239],[-370.162,-384.622],[-366.949,-360.269],[-367.292,-358.72],[-368.311,-357.822],[-375.384,-355.902],[-390.495,-353.906]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":19,"mn":"ADBE Vector Group","nm":"stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[4.818,-7.964],[-0.071,-0.543],[-0.388,-0.372],[-12.193,-0.364]],"o":[[-5.794,7.284],[-0.283,0.468],[0.07,0.533],[8.803,8.444],[0,0]],"v":[[-260.836,-478.945],[-276.775,-456.042],[-277.279,-454.514],[-276.418,-453.19],[-243.427,-439.348]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[6.274,-9.991],[-9.235,-4.045]],"o":[[-8.82,7.836],[7.735,6.466],[0,0]],"v":[[-309.475,-468.673],[-332.269,-441.751],[-306.642,-425.877]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.256,-11.093],[-10.904,-5.377]],"o":[[-9.424,10.119],[10.904,5.377],[0,0]],"v":[[-361.705,-460.818],[-388.252,-428.968],[-355.539,-412.837]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.53,4.849]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.718,-466.198]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.258,-2.013]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.933,-465.562]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.249,2.117]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.662,-476.038]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.347,-0.273]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.73,-470.067]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-23.035,8.671]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.194,-477.839]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.385,3.343]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.131,-460.877]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.53,4.849]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.718,-466.198]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.258,-2.013]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.933,-465.562]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.249,2.117]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.662,-476.038]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.347,-0.273]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.73,-470.067]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-23.035,8.671]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.194,-477.839]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.385,3.343]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.131,-460.877]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[1.097,-1.636],[0.372,-2.467],[-1.219,-1.825],[-1.689,0.394],[-1.224,1.71],[-0.272,1.637],[1.022,1.762],[1.499,0.806]],"o":[[-1.559,-0.417],[-1.222,1.822],[-0.372,2.467],[1.182,1.769],[1.689,-0.394],[0.842,-1.176],[0.37,-2.226],[-1.022,-1.762],[0,0]],"v":[[-448.595,-443.882],[-452.744,-441.185],[-455.36,-434.713],[-454.154,-427.647],[-449.429,-425.61],[-444.988,-429.06],[-443.138,-433.282],[-444.347,-439.673],[-448.306,-443.422]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":20,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-211.064,-418.57],[-432,-353],[-515.836,-410.438]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-103.215,-26.128],[27.732,-7.206],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[103.215,26.127],[-31.343,8.144],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-218.019,-413.46],[-432,-353],[-515.836,-410.438]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-211.064,-418.57],[-432,-353],[-515.836,-410.438]]}],"t":449},{"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-103.215,-26.128],[27.732,-7.206],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[103.215,26.127],[-31.343,8.144],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-218.019,-413.46],[-432,-353],[-515.836,-410.438]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":21,"mn":"ADBE Vector Group","nm":"body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-209.668,-418.874],[-432,-353],[-515.836,-410.438]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-103.215,-26.128],[27.743,-7.162],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[103.215,26.127],[-27.743,7.162],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-219.86,-411.085],[-432,-353],[-515.836,-410.438]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-209.668,-418.874],[-432,-353],[-515.836,-410.438]]}],"t":449},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-103.215,-26.128],[27.743,-7.162],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[103.215,26.127],[-27.743,7.162],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-219.86,-411.085],[-432,-353],[-515.836,-410.438]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":22,"mn":"ADBE Vector Group","nm":"body","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.99,-10.632]],"o":[[19.349,-0.768],[0,0]],"v":[[-167.847,-446.693],[-113.237,-439.755]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.429,3.808]],"o":[[18.877,-4.315],[0,0]],"v":[[-168.481,-461.555],[-113.527,-464.785]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.161,-6.546]],"o":[[19.23,-2.273],[0,0]],"v":[[-166.242,-452.975],[-116.603,-447.66]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.252,8.444]],"o":[[18.89,-4.256],[0,0]],"v":[[-168.058,-463.277],[-114.861,-480.077]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.401,-7.305]],"o":[[19.364,0.042],[0,0]],"v":[[-167.854,-441.1],[-123.549,-431.15]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.99,-10.632]],"o":[[19.349,-0.768],[0,0]],"v":[[-167.847,-446.693],[-113.237,-439.755]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.429,3.808]],"o":[[18.877,-4.315],[0,0]],"v":[[-168.481,-461.555],[-113.527,-464.785]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.161,-6.546]],"o":[[19.23,-2.273],[0,0]],"v":[[-166.242,-452.975],[-116.603,-447.66]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.252,8.444]],"o":[[18.89,-4.256],[0,0]],"v":[[-168.058,-463.277],[-114.861,-480.077]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-14.401,-7.305]],"o":[[19.364,0.042],[0,0]],"v":[[-167.854,-441.1],[-123.549,-431.15]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.863,0.907],[-8.017,-2.205]],"o":[[7.749,1.617],[8.26,-0.952],[0,0]],"v":[[-163.284,-458.837],[-140.399,-462.045],[-114.929,-458.839]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.562,2.338],[-9.414,5.006]],"o":[[7.914,0.163],[7.944,-2.456],[0,0]],"v":[[-166.231,-474.331],[-142.231,-476.936],[-119.091,-486.061]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.769,1.516],[-10.394,-2.79]],"o":[[7.851,1.008],[8.161,-1.593],[0,0]],"v":[[-162.639,-465.438],[-139.422,-468.259],[-115.254,-465.481]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-6.528,4.476],[-6.59,4.181]],"o":[[7.913,0.188],[8.713,-5.974],[0,0]],"v":[[-165.768,-476.046],[-144.542,-483.752],[-124.93,-499.087]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.259,-1.345],[-7.729,-1.079]],"o":[[7.674,1.939],[10.388,1.924],[0,0]],"v":[[-162.788,-453.043],[-140.381,-455.846],[-118.919,-452.158]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.863,0.907],[-8.017,-2.205]],"o":[[7.749,1.617],[8.26,-0.952],[0,0]],"v":[[-163.284,-458.837],[-140.399,-462.045],[-114.929,-458.839]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.562,2.338],[-9.414,5.006]],"o":[[7.914,0.163],[7.944,-2.456],[0,0]],"v":[[-166.231,-474.331],[-142.231,-476.936],[-119.091,-486.061]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.769,1.516],[-10.394,-2.79]],"o":[[7.851,1.008],[8.161,-1.593],[0,0]],"v":[[-162.639,-465.438],[-139.422,-468.259],[-115.254,-465.481]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-6.528,4.476],[-6.59,4.181]],"o":[[7.913,0.188],[8.713,-5.974],[0,0]],"v":[[-165.768,-476.046],[-144.542,-483.752],[-124.93,-499.087]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-7.259,-1.345],[-7.729,-1.079]],"o":[[7.674,1.939],[10.388,1.924],[0,0]],"v":[[-162.788,-453.043],[-140.381,-455.846],[-118.919,-452.158]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.077,0.448]],"o":[[20.262,-10.908],[0,0]],"v":[[-168.931,-471.552],[-110.098,-483.893]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-17.23,11.389]],"o":[[22.344,-7.208],[0,0]],"v":[[-174.121,-485.79],[-118.563,-508.747]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-22.777,-1.154]],"o":[[22.987,-4.778],[0,0]],"v":[[-169.259,-477.675],[-117.996,-487.479]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-8.642,11.641]],"o":[[22.367,-7.138],[0,0]],"v":[[-173.623,-487.53],[-137.079,-515.404]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-10.441,-2.265]],"o":[[19.115,-8.372],[0,0]],"v":[[-167.898,-465.983],[-117.618,-472.46]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.077,0.448]],"o":[[20.262,-10.908],[0,0]],"v":[[-168.931,-471.552],[-110.098,-483.893]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-17.23,11.389]],"o":[[22.344,-7.208],[0,0]],"v":[[-174.121,-485.79],[-118.563,-508.747]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-22.777,-1.154]],"o":[[22.987,-4.778],[0,0]],"v":[[-169.259,-477.675],[-117.996,-487.479]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-8.642,11.641]],"o":[[22.367,-7.138],[0,0]],"v":[[-173.623,-487.53],[-137.079,-515.404]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-10.441,-2.265]],"o":[[19.115,-8.372],[0,0]],"v":[[-167.898,-465.983],[-117.618,-472.46]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[-141.167,-477.879]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[-141.167,-477.879]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.276,3.609],[29.749,7.044],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-36.044,-24.654],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-16.175,9.378],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.737,-2.819],[30.537,1.449],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.524,-3.203],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-28.688,14.097],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.595,5.152],[-20.896,-2.154],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.971,2.281],[30.207,4.705],[4.005,16.513]],"o":[[13.503,-10.573],[16.171,-5.709],[6.352,0.655],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.041,-11.86],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-147.448,-510.108],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.722,8.816],[-13.537,16.063],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.677,-2.938],[30.532,1.544],[5.697,16.008]],"o":[[12.332,-11.917],[14.096,-9.768],[4.115,-4.883],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-29.511,15.273],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-155.404,-521.745],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.033,3.687],[-20.916,-1.945],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.549,3.172],[29.428,8.281],[2.003,16.873]],"o":[[14.669,-8.884],[16.656,-4.085],[6.358,0.591],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-28.849,-16.49],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-141.89,-491.688],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-16.703,3.889],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.22,-1.448],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-151.674,-511.728],[-105.303,-528.435],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.276,3.609],[29.749,7.044],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-36.044,-24.654],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-16.175,9.378],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.737,-2.819],[30.537,1.449],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.524,-3.203],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-28.688,14.097],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.595,5.152],[-20.896,-2.154],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.971,2.281],[30.207,4.705],[4.005,16.513]],"o":[[13.503,-10.573],[16.171,-5.709],[6.352,0.655],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.041,-11.86],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-147.448,-510.108],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.722,8.816],[-13.537,16.063],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.677,-2.938],[30.532,1.544],[5.697,16.008]],"o":[[12.332,-11.917],[14.096,-9.768],[4.115,-4.883],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-29.511,15.273],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-155.404,-521.745],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-15.033,3.687],[-20.916,-1.945],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.549,3.172],[29.428,8.281],[2.003,16.873]],"o":[[14.669,-8.884],[16.656,-4.085],[6.358,0.591],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-28.849,-16.49],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-141.89,-491.688],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.411,3.402],[30.55,3.439],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-32.795,-20.619],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-15.98,10.794],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.824,-2.635],[30.661,-2.241],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.292,-3.574],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-32.226,14.584],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.263,7.82],[-18.6,-0.177],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.948,2.341],[30.725,1.049],[4.005,16.513]],"o":[[13.503,-10.573],[15.263,-7.82],[6.386,0.061],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.806,-12.519],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-145.97,-509.502],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.663,11.565],[-10.61,15.277],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.706,-2.881],[30.668,-2.145],[5.697,16.008]],"o":[[12.332,-11.917],[12.663,-11.565],[3.643,-5.245],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-30.512,15.406],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-153.819,-521.55],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.96,6.276],[-18.6,0.01],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.517,3.228],[30.379,4.713],[2.003,16.873]],"o":[[14.669,-8.884],[15.96,-6.276],[6.386,-0.003],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-29.504,-17.259],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-140.48,-490.939],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-16.703,3.889],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.22,-1.448],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-151.674,-511.728],[-105.303,-528.435],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.411,3.402],[30.55,3.439],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-32.795,-20.619],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-15.98,10.794],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.824,-2.635],[30.661,-2.241],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.292,-3.574],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-32.226,14.584],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.263,7.82],[-18.6,-0.177],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.948,2.341],[30.725,1.049],[4.005,16.513]],"o":[[13.503,-10.573],[15.263,-7.82],[6.386,0.061],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.806,-12.519],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-145.97,-509.502],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.663,11.565],[-10.61,15.277],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.706,-2.881],[30.668,-2.145],[5.697,16.008]],"o":[[12.332,-11.917],[12.663,-11.565],[3.643,-5.245],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-30.512,15.406],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-153.819,-521.55],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-15.96,6.276],[-18.6,0.01],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.517,3.228],[30.379,4.713],[2.003,16.873]],"o":[[14.669,-8.884],[15.96,-6.276],[6.386,-0.003],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-29.504,-17.259],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-140.48,-490.939],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":23,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":22,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":27,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1173.598,40.967,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,1.902,0],"t":0,"ti":[0.238,-0.119,0],"to":[0,-1.19,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-5.241,0],"t":59.881,"ti":[-0.119,0.119,0],"to":[-0.238,0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1191.375,2.616,0],"t":119.76,"ti":[-0.238,0.595,0],"to":[0.119,-0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.232,-5.955,0],"t":179.637,"ti":[0.238,-0.238,0],"to":[0.238,-0.595,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-0.955,0],"t":239.518,"ti":[0.119,0.119,0],"to":[-0.238,0.238,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1190.661,-4.527,0],"t":299.396,"ti":[-0.119,0.119,0],"to":[-0.119,-0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1190.661,-1.67,0],"t":359.277,"ti":[-0.119,-0.595,0],"to":[0.119,-0.119,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-5.241,0],"t":419.156,"ti":[0.238,-0.357,0],"to":[0.119,0.595,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,1.902,0],"t":479,"ti":[0.238,0.833,0],"to":[-0.238,0.357,0]},{"s":[-1191.375,-3.098,0],"t":479.037109375}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[14],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[12.5],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[14],"t":479},{"s":[16],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Tank","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.226,"y":0.156},"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[-0.47,-7.794],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[3.905,22.436]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[0.515,10.232],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-2.125,-12.101]],"v":[[-1103.779,-47.018],[-1150.046,-23.44],[-1140.824,-12.755],[-1111.02,-27.655],[-1093.199,-18.138],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1076.369,-24.419]]}],"t":17},{"i":{"x":0.7,"y":1},"o":{"x":1,"y":1},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[-0.47,-7.794],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[3.905,22.436]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[0.515,10.232],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-2.125,-12.101]],"v":[[-1103.779,-47.018],[-1150.046,-23.44],[-1140.824,-12.755],[-1111.02,-27.655],[-1093.199,-18.138],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1076.369,-24.419]]}],"t":62},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[16.159,1.124],[17.409,-0.665],[-0.995,-0.213],[-6.234,1.485],[0.427,-7.487],[6.349,-7.978],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.611,6.958],[1.856,22.561]],"o":[[-20.605,-1.433],[-1.017,0.039],[12.676,2.713],[11.57,-2.756],[-0.59,10.336],[-6.516,8.188],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[9.649,-14.56],[-0.957,-11.631]],"v":[[-1093.373,-51.23],[-1141.746,-32.091],[-1133.475,-20.654],[-1102.772,-32.445],[-1085.944,-21.623],[-1109.41,3.533],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.453,16.179],[-1068.65,-26.77]]}],"t":90},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[14.773,-3.009],[15.491,-4.373],[-0.903,0.092],[-5.633,2.521],[-3.699,-5.792],[3.19,-8.191],[2.303,-13.237],[-3.222,0.337],[-0.635,3.176],[-2.254,7.153],[6.899,16.744]],"o":[[-18.713,3.716],[-0.914,0.266],[11.306,-0.966],[10.226,-4.434],[2.543,7.521],[-3.3,8.342],[-0.387,2.788],[3.222,-0.337],[1.271,-6.352],[9.491,-13.88],[-5.38,-9.122]],"v":[[-1110.694,-46.701],[-1150.381,-22.628],[-1139.864,-12.239],[-1111.677,-29.121],[-1095.789,-20.914],[-1114.487,6.298],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1100.516,14.095],[-1079.818,-31.3]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0.8,"y":0.8},"s":[{"c":true,"i":[[11.893,-11.59],[11.506,-12.071],[-0.713,0.725],[-4.386,4.67],[-12.267,-2.272],[-3.369,-8.635],[-0.592,-8.821],[-3.222,0.337],[-0.635,3.176],[2.641,7.559],[17.369,4.666]],"o":[[-14.784,14.408],[-0.702,0.736],[8.46,-8.605],[7.435,-7.917],[9.048,1.676],[3.379,8.66],[0.19,2.836],[3.222,-0.337],[1.271,-6.352],[-5.157,-14.761],[-14.565,-3.912]],"v":[[-1180.132,-13.732],[-1203.483,12.613],[-1188.302,20.827],[-1169.568,1.139],[-1141.384,-7.459],[-1125.029,12.041],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1106.877,9.767],[-1138.181,-25.116]]}],"t":142},{"i":{"x":0.62,"y":0.62},"o":{"x":0.45,"y":0.45},"s":[{"c":true,"i":[[11.893,-11.59],[11.506,-12.071],[-0.713,0.725],[-4.386,4.67],[-11.16,0.456],[-3.369,-8.635],[-0.592,-8.821],[-3.222,0.337],[-0.635,3.176],[2.641,7.559],[15.075,1.637]],"o":[[-14.784,14.408],[-0.702,0.736],[8.46,-8.605],[7.435,-7.917],[9.194,-0.375],[3.379,8.66],[0.19,2.836],[3.222,-0.337],[1.271,-6.352],[-5.157,-14.761],[-14.993,-1.628]],"v":[[-1190.761,-2.477],[-1212.088,20.714],[-1196.907,28.928],[-1180.197,12.395],[-1149.015,0.35],[-1125.029,12.041],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1106.877,9.767],[-1145.812,-17.307]]}],"t":204},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[14.773,-3.009],[15.491,-4.373],[-0.903,0.092],[-5.633,2.521],[-3.699,-5.792],[3.19,-8.191],[2.303,-13.237],[-3.222,0.337],[-0.635,3.176],[-2.254,7.153],[6.899,16.744]],"o":[[-18.713,3.716],[-0.914,0.266],[11.306,-0.966],[10.226,-4.434],[2.543,7.521],[-3.3,8.342],[-0.387,2.788],[3.222,-0.337],[1.271,-6.352],[4.836,-14.625],[-5.38,-9.122]],"v":[[-1121.575,-39.041],[-1161.814,-17.56],[-1151.297,-7.171],[-1124.484,-21.528],[-1107.222,-15.846],[-1114.487,6.298],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1100.516,14.095],[-1091.251,-26.232]]}],"t":235},{"i":{"x":0.833,"y":0.833},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[0.424,-7.797],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[1.348,22.734]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[-0.658,10.224],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-0.727,-12.264]],"v":[[-1096.637,-50.072],[-1142.905,-26.494],[-1133.683,-15.81],[-1103.879,-30.71],[-1088.032,-23.044],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1070.594,-27.36]]}],"t":274},{"i":{"x":0.833,"y":1},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[0.424,-7.797],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[1.348,22.734]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[-0.658,10.224],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-0.727,-12.264]],"v":[[-1096.637,-50.072],[-1142.905,-26.494],[-1133.683,-15.81],[-1103.879,-30.71],[-1088.032,-23.044],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1070.594,-27.36]]}],"t":305},{"i":{"x":0.731,"y":1},"o":{"x":0.226,"y":0.156},"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":335},{"i":{"x":0.55,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[16.093,-1.845],[11.125,-8.191],[-0.914,0.447],[-6.687,1.433],[-5.573,-5.245],[-0.129,-7.479],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-1.152,8.267],[5.449,11.749]],"o":[[-20.539,2.355],[-0.819,0.603],[14.003,-6.85],[11.055,-2.368],[5.006,4.712],[0.18,10.463],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[1.969,-14.129],[-4.595,-9.908]],"v":[[-1138.584,-33.109],[-1178.883,-14.629],[-1168.792,-1.954],[-1143.238,-13.056],[-1122.45,-9.265],[-1117.496,6.947],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1099.381,16.15],[-1103.426,-14.879]]}],"t":387},{"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":450}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.866666674614,0.866666674614,0.86274510622,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-78.686,-16.815]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tank hose","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.068,0.243],[4.75,-0.388],[2.069,-7.9],[-2.31,-4.314],[2.841,-15.555],[6.064,-5.896],[-2.385,-5.098],[-7.227,0.444],[-3.119,1.172],[-2.111,6.054],[-0.222,9.997],[2.833,11.369],[2.563,1.932]],"o":[[-4.285,-0.503],[-4.594,0.376],[-0.504,1.924],[6.477,12.098],[-1.871,10.244],[-1.5,1.458],[2.385,5.098],[4.954,-0.304],[6.001,-2.256],[3.656,-10.484],[0.231,-10.374],[-0.776,-3.114],[-1.662,-1.253]],"v":[[-1041.765,-2.261],[-1045.242,-2.633],[-1061.311,3.45],[-1055.682,6.471],[-1050.376,49.613],[-1060.842,79.482],[-1065.555,85.631],[-1051.61,88.648],[-1042.27,87.81],[-1030.49,70.791],[-1026.302,41.208],[-1028.238,9.117],[-1034.43,0.412]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-116.188,-0.01]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Tank strap 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.068,0.243],[4.75,-0.388],[2.069,-7.9],[-2.31,-4.314],[2.841,-15.555],[6.064,-5.896],[-2.385,-5.098],[-7.227,0.444],[-3.119,1.172],[-2.111,6.054],[-0.222,9.997],[2.833,11.369],[2.563,1.932]],"o":[[-4.285,-0.503],[-4.594,0.376],[-0.504,1.924],[6.477,12.098],[-1.871,10.244],[-1.5,1.458],[2.385,5.098],[4.954,-0.304],[6.001,-2.256],[3.656,-10.484],[0.231,-10.374],[-0.776,-3.114],[-1.662,-1.253]],"v":[[-1041.765,-2.261],[-1055.155,-2.161],[-1071.224,3.922],[-1065.596,6.943],[-1060.289,50.085],[-1070.756,79.953],[-1075.469,86.103],[-1051.61,88.648],[-1042.27,87.81],[-1030.49,70.791],[-1026.302,41.208],[-1028.238,9.117],[-1034.43,0.412]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Tank strap","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.674,-5.377],[-0.984,-2.083],[-1.516,-0.803],[-4.456,0.202],[-3.039,1.633],[0.48,3.389],[3.946,1.506],[3.27,-1.329]],"o":[[-5.67,-2.103],[-1.026,2.063],[0.728,1.542],[3.933,2.083],[3.454,-0.156],[3.039,-1.633],[-0.587,-4.145],[-3.298,-1.259],[0,0]],"v":[[-1109.03,26.342],[-1127.512,33.158],[-1127.955,39.812],[-1124.309,43.299],[-1111.24,45.231],[-1101.18,43.131],[-1096.235,34.819],[-1105.074,26.68],[-1117.548,26.491]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-78.686,-16.815]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Tank valve","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[18.439,-0.647],[43.24,-5.798],[3.119,-4.413],[0.438,-2.965],[-1.431,-10.009],[-1.016,-1.664],[-1.774,-0.81],[-14.615,-0.979],[-35.21,-2.358],[-20.032,4.919],[-2.24,3.361],[-0.225,3.035],[-0.422,5.692],[9.605,7.903],[5.137,1.114]],"o":[[-43.6,1.531],[-5.356,0.718],[-1.73,2.448],[-1.572,10.629],[0,0],[1.016,1.664],[13.325,6.084],[35.21,2.358],[20.581,1.378],[3.922,-0.963],[1.688,-2.533],[0.422,-5.692],[0.919,-12.405],[-4.059,-3.34],[-18.032,-3.91]],"v":[[-1079.871,6.375],[-1211.109,8.812],[-1225.538,15.081],[-1228.247,23.565],[-1228.082,61.031],[-1226.697,71.34],[-1222.083,74.789],[-1183.443,80.779],[-1077.099,83.568],[-1015.516,81.375],[-1005.177,75.629],[-1002.401,60.065],[-1001.726,49.798],[-1010.32,15.022],[-1024.734,9.009]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Tank stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-0.422,5.692],[9.605,7.903],[5.137,1.114],[18.44,-0.647],[43.24,-5.798],[3.119,-4.413],[0.438,-2.965],[0.061,-0.432],[-36.056,-2.367],[1.375,15.964],[-0.06,0.808]],"o":[[0.919,-12.405],[-4.059,-3.34],[-18.032,-3.91],[-43.6,1.531],[-5.356,0.718],[-1.73,2.448],[-0.064,0.431],[4.14,35.561],[42.24,2.459],[0.093,-0.815],[0.422,-5.692]],"v":[[-1001.547,49.738],[-1010.142,14.963],[-1024.555,8.949],[-1079.693,6.315],[-1210.93,8.753],[-1225.359,15.022],[-1228.068,23.505],[-1228.249,24.801],[-1127.788,73.266],[-1002.751,61.975],[-1002.222,60.005]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.039215687662,0.184313729405,0.674509823322,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Tank fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[42.24,2.459],[5.083,37.712],[-1.808,-13.275],[-0.882,-1.446],[-1.774,-0.81],[-14.615,-0.979],[-35.21,-2.358],[-20.032,4.919],[-2.24,3.361],[-0.255,2.244]],"o":[[-36.056,-2.367],[-1.362,9.576],[0.212,1.56],[1.016,1.664],[13.325,6.084],[35.21,2.358],[20.581,1.378],[3.922,-0.963],[1.238,-1.858],[-4.41,14.363]],"v":[[-1126.914,71.709],[-1227.937,22.501],[-1227.69,61.028],[-1226.518,71.28],[-1221.905,74.73],[-1183.264,80.719],[-1076.92,83.508],[-1015.337,81.315],[-1004.998,75.569],[-1002.256,60.365]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Tank shadow","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1116.402,24.689]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1116.402,24.689]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tank","np":7,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-4.289,-8.926],[-18.405,-1.77],[-34.442,-2.169],[-29.248,16.919],[3.431,4.239],[0,0]],"o":[[4.585,9.542],[43.588,4.192],[34.297,2.16],[7.211,-4.171],[-65.933,-10.005],[0,0]],"v":[[-1232.34,76.162],[-1198.149,90.561],[-1103.431,91.164],[-1000.586,83.998],[-999.104,70.33],[-1205.137,64.677]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Body tank shadow","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":28,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-884.232,101.187,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-884.232,101.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":0},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-36],"t":59.881},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[15],"t":119.76},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-27],"t":179.637},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[14],"t":239.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-26],"t":299.396},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[14],"t":359.277},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24],"t":419.156},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":479},{"s":[-1],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front fin","op":480,"parent":29,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.046,1.808],[0.622,-6.073],[4.047,-7.52],[-6.739,-6.228],[-2.957,-3.476],[-2.947,-2.52],[1.22,6.36],[3.289,2.864]],"o":[[-0.588,-0.205],[-0.872,8.512],[1.562,1.313],[4.524,4.182],[2.679,3.149],[3.963,2.893],[-0.585,-2.74],[-2.079,-1.81]],"v":[[-873.78,106.277],[-880.145,108.532],[-888.012,124.128],[-871.094,132.336],[-861.013,146.994],[-853.736,157.178],[-854.1,135.197],[-862.652,114.038]]}],"t":11.977},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.96,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-1.845,-2.205],[1.796,6.759],[3.595,3.746]],"o":[[-1.095,-0.319],[-0.681,8.498],[1.627,1.231],[4.546,3.696],[3.071,3.354],[3.171,2.472],[-1.059,-3.719],[-2.226,-2.32]],"v":[[-872.735,98.118],[-879.036,100.623],[-886.904,117.446],[-870.264,125.203],[-861.487,137.822],[-853.611,149.084],[-854.009,124.884],[-861.491,106.076]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.078,-4.109],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[5.513,4.461],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-869.833,85.277],[-874.677,90.115],[-879.407,101.286],[-862.238,105.681],[-853.655,112.26],[-835.53,127.19],[-843.868,103.291],[-857.756,90.05]]}],"t":43.912},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.139,2.239],[1.257,-5.634],[3.656,-7.718],[-4.572,-2.679],[-3.282,-3.243],[-0.347,-0.269],[3.277,7.105],[4.043,4.4]],"o":[[-2.12,-0.918],[-1.289,8.129],[1.627,1.231],[3.85,2.24],[6.035,5.965],[0.139,0.25],[-2.209,-5.713],[-4.19,-4.511]],"v":[[-869.168,82.315],[-875.062,84.841],[-879.662,100.158],[-866.132,104.583],[-854.844,112.58],[-838.544,126.374],[-845.011,108.446],[-854.067,93.052]]}],"t":71.855},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.751,-2.506],[0,0],[1.661,6.389],[3.962,4.181]],"o":[[-2.11,-0.958],[-1.179,8.066],[1.627,1.231],[3.809,2.11],[6.09,4.069],[0,0],[-1.575,-6.056],[-4.604,-4.86]],"v":[[-870.392,82.634],[-876.074,85.259],[-880.179,100.693],[-866.812,104.988],[-855.554,112.497],[-837.29,124.714],[-845.116,109.312],[-854.462,93.812]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.155,1.287],[0.968,-5.652],[3.027,-7.985],[-4.846,-1.589],[-4.52,-1.258],[0.909,0.167],[3.411,5.088],[4.388,3.113]],"o":[[-2.2,-0.525],[-0.985,8.208],[1.72,1.097],[4.289,1.341],[7.016,2.06],[-2.741,-0.504],[-2.935,-4.65],[-4.843,-3.512]],"v":[[-873.179,84.575],[-878.85,87.591],[-882.671,103.307],[-868.814,105.908],[-855.249,109.998],[-834.016,116.985],[-845.812,104.178],[-857.382,92.154]]}],"t":81.834},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.735,0.576],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[5.212,3.603],[4.397,2.242]],"o":[[-2.218,-0.27],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-4.185,-2.893],[-4.449,-2.269]],"v":[[-875.808,96.19],[-882.053,98.622],[-888.723,113.856],[-874.724,116.57],[-858.303,117.823],[-833.794,120.565],[-849.373,109.673],[-861.984,101.076]]}],"t":91.816},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.831,1.159],[1.803,-5.371],[4.96,-6.597],[-5.834,-0.058],[-4.895,0.501],[7.618,5.671],[9.798,2.654],[4.953,2.346]],"o":[[-4.573,-1.384],[-2.749,8.096],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-4.779,-3.558],[-5.408,-1.465],[-3.617,-1.713]],"v":[[-873.049,106.128],[-882.642,109.469],[-891.196,123.508],[-871.409,127.549],[-853.145,127.94],[-823.963,125.792],[-845.054,115.421],[-861.569,111.07]]}],"t":105.787},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.581,1.911],[2.028,-5.263],[4.372,-6.996],[-4.74,-4.98],[-3.119,-4.279],[-6.064,3.449],[2.267,8.341],[5.2,6.121]],"o":[[-2.657,-1.109],[-3.093,8.029],[1.627,1.231],[4.009,4.212],[4.74,6.504],[6.112,-3.476],[-2.206,-8.113],[-3.124,-3.677]],"v":[[-871.882,108.396],[-881.358,107.322],[-889.714,122.801],[-872.654,129.349],[-862.237,143.673],[-847.08,163.024],[-847.521,137.073],[-859.775,116.327]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.636,1.743],[2.233,-5.179],[4.746,-6.94],[-4.06,-4.164],[-3.719,-5.084],[-6.36,-3.172],[2.315,9.663],[5.225,7.089]],"o":[[-2.219,-0.864],[-3.406,7.901],[1.577,1.294],[4.093,4.13],[4.053,5.643],[4.963,1.421],[-1.674,-6.989],[-2.909,-3.946]],"v":[[-875.257,100.755],[-882.818,101.478],[-891.087,116.393],[-876.451,122.106],[-865.512,135.665],[-853.232,152.189],[-854.024,128.57],[-862.984,109.062]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.791,1.297],[2.028,-5.263],[4.545,-7.215],[-3.83,-3.268],[-4.513,-5.425],[-6.792,-7.697],[3.048,10.473],[5.704,7.463]],"o":[[-1.947,-0.527],[-3.093,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[4.193,4.752],[-1.753,-6.022],[-3.014,-3.944]],"v":[[-876.958,92.934],[-883.025,95.523],[-890.194,110.562],[-877.003,114.639],[-864.758,126.855],[-853.518,140.394],[-856.193,118.609],[-864.008,100.671]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.872,1.106],[1.854,-5.327],[3.883,-7.581],[-3.936,-3.14],[-4.689,-5.274],[-8.102,-6.823],[6.547,9.84],[5.947,7.271]],"o":[[-2.217,-0.503],[-2.828,8.126],[1.667,1.177],[4.555,3.635],[4.072,4.58],[4.794,4.077],[-3.205,-5.149],[-3.142,-3.842]],"v":[[-874.602,78.917],[-880.488,82.653],[-886.655,97.868],[-872.343,101.654],[-860.509,112.993],[-847.74,123.943],[-850.236,104.703],[-860.808,87.121]]}],"t":163.67},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.094,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-869.357,78.04],[-876.244,79.833],[-882.33,94.797],[-867.022,99.256],[-856.469,110.413],[-842.739,119.291],[-843.672,102.806],[-856.143,84.905]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,1.328],[1.674,-5.433],[3.656,-7.718],[-3.953,-3.022],[-4.074,-3.552],[-4.554,-3.194],[5.753,7.978],[5.007,6.654]],"o":[[-1.055,-0.479],[-2.552,8.134],[3.442,0.999],[5.02,3.839],[4.246,3.702],[2.594,1.819],[-3.036,-5.214],[-2.964,-3.947]],"v":[[-871.38,79.555],[-878.135,81.508],[-883.69,96.848],[-871.502,100.428],[-857.487,113.235],[-845.018,124.326],[-847.67,106.33],[-857.674,88.904]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.356,2.107],[1.409,-5.561],[3.656,-7.718],[-3.21,-3.777],[-2.986,-3.254],[-1.139,-0.798],[2.684,6.787],[4.484,6.047]],"o":[[-1.846,-0.838],[-2.146,8.213],[4.804,0.824],[3.092,3.638],[4.028,4.352],[0.649,0.455],[-1.94,-5.846],[-2.926,-3.949]],"v":[[-872.897,80.692],[-879.553,82.764],[-884.711,98.386],[-872.179,105.061],[-861.177,116.351],[-847.972,129.929],[-850.669,108.974],[-858.823,91.902]]}],"t":193.611},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-2.768,-2.944],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[5.258,0.766],[3.809,2.11],[4.043,4.3],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.402,81.07],[-880.026,83.183],[-885.051,98.899],[-870.761,105.412],[-861.357,113.669],[-845.354,127.282],[-851.669,109.855],[-859.206,92.902]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.125,1.61],[1.064,-5.637],[3.258,-7.386],[-4.697,-1.851],[-3.49,-2.122],[0.609,0.091],[2.822,5.416],[4.858,5.064]],"o":[[-2.191,-0.65],[-1.633,8.319],[4.396,0.682],[4.122,1.573],[5.664,3.275],[-1.838,-0.273],[-2.917,-5.252],[-3.3,-3.435]],"v":[[-875.295,83.091],[-881.129,85.957],[-886.207,101.522],[-871.216,104.934],[-859.221,111.214],[-840.817,120.565],[-850.911,106.273],[-860.85,92.354]]}],"t":199.598},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.033,0.853],[0.807,-5.671],[2.859,-7.054],[-4.973,-1.252],[-4.212,-1.301],[1.219,0.181],[3.983,4.443],[5.406,4.284]],"o":[[-2.271,-0.342],[-1.256,8.4],[3.534,0.599],[4.435,1.036],[7.285,2.25],[-3.675,-0.546],[-4.259,-4.447],[-3.686,-2.921]],"v":[[-877.188,85.111],[-882.231,88.731],[-887.362,104.145],[-872.783,107.112],[-859.133,110.782],[-839.057,117.153],[-851.226,103.875],[-862.493,91.807]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.589,0.477],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[5.237,3.348],[5.439,3.916]],"o":[[-2.324,-0.242],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.872,-3.754],[-3.744,-2.696]],"v":[[-877.724,94.557],[-884.553,97.259],[-890.639,112.223],[-876.64,114.937],[-860.218,116.19],[-835.995,117.78],[-852.16,108.988],[-864.253,99.388]]}],"t":211.574},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.991,0.303],[2.275,-5.189],[4.304,-7.376],[-5.807,-0.558],[-4.92,0.079],[7.104,6.303],[8.323,0.683],[4.734,2.762]],"o":[[-2.488,-0.189],[-3.432,7.831],[1.516,1.366],[5.585,0.436],[9.363,-0.49],[-4.457,-3.955],[-5.584,-0.458],[-3.457,-2.017]],"v":[[-874.642,106.378],[-881.614,109.1],[-888.96,123.487],[-874.575,126.059],[-855.983,125.846],[-826.561,118.69],[-848.241,114.851],[-863.359,110.484]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.763,1.395],[1.37,-4.367],[4.564,-6.521],[-4.344,-3.062],[-3.489,-4.133],[-8.645,3.125],[3.261,7.637],[5.255,5.897]],"o":[[-1.708,-0.5],[-2.575,8.21],[1.627,1.231],[4.335,3.056],[4.779,5.66],[6.613,-2.391],[-2.758,-6.459],[-3.358,-3.62]],"v":[[-876.348,105.687],[-882.063,106.918],[-889.909,122.181],[-875.984,125.97],[-865.284,139.539],[-848.427,155.594],[-849.473,133.102],[-863.723,112.29]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.785,2.52],[1.429,-4.179],[4.74,-6.769],[-3.703,-3.578],[-3.576,-5.248],[-7.245,-3.795],[2.207,9.523],[4.812,7.304]],"o":[[-0.707,-0.286],[-2.9,8.481],[1.497,1.387],[4.026,3.889],[3.759,5.517],[5.037,2.201],[-1.558,-6.395],[-2.769,-4.099]],"v":[[-878.127,102.339],[-884.634,103.25],[-892.936,117.591],[-879.976,122.765],[-869.514,137.286],[-857.5,152.641],[-857.278,130.466],[-865.888,110.863]]}],"t":263.469},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.938,2.339],[0.767,-4.243],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-6.792,-7.697],[3.048,10.473],[5.704,7.463]],"o":[[0,0],[-1.648,9.114],[1.627,1.231],[4.433,3.782],[3.919,4.711],[4.193,4.752],[-1.753,-6.022],[-3.014,-3.944]],"v":[[-877.892,94.388],[-884.779,96.181],[-890.865,111.145],[-877.844,115.066],[-865.131,128.363],[-854.189,140.976],[-856.864,119.191],[-864.571,102.157]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.89,1.422],[0.88,-4.488],[3.67,-7.027],[-4.002,-3.056],[-5.377,-4.495],[-8.395,-6.553],[7.205,9.613],[6.101,7.143]],"o":[[-1.241,-0.243],[-1.662,8.738],[1.691,1.141],[4.632,3.536],[4.377,3.71],[4.942,3.895],[-3.491,-4.959],[-3.224,-3.774]],"v":[[-874.72,80.19],[-880.148,82.854],[-885.918,97.859],[-872.357,100.927],[-858.762,113.066],[-845.776,122.997],[-848.547,104.161],[-859.699,87.801]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.813,1.215],[1.433,-4.601],[4.387,-6.031],[-3.83,-3.268],[-5.66,-4.215],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[-2.3,-0.58],[-2.56,8.215],[1.627,1.231],[4.433,3.782],[4.389,3.268],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-871.468,77.46],[-875.874,80.326],[-882.879,94.739],[-869.194,98.431],[-856.1,110.906],[-842.37,119.784],[-843.303,103.299],[-855.775,86.44]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.875,82.145],[-880.498,84.258],[-886.584,99.222],[-873.217,103.517],[-862.573,111.45],[-844.783,125.302],[-853.026,109.107],[-860.739,93.225]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.221,1.215],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[4.891,3.976],[5.854,3.264]],"o":[[-2.276,-0.529],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.408,-4.396],[-4.898,-2.731]],"v":[[-876.932,93.515],[-883.798,96.931],[-889.884,111.895],[-875.885,114.609],[-859.463,115.862],[-835.063,117.46],[-851.003,107.786],[-863.649,98.515]]}],"t":331.334},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.869,1.025],[1.098,-3.689],[3.656,-7.718],[-5.834,-0.058],[-4.895,0.501],[5.706,7.592],[10.221,1.283],[4.953,2.346]],"o":[[-3.158,-0.836],[-2.439,8.195],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-3.562,-4.739],[-5.559,-0.698],[-3.617,-1.713]],"v":[[-877.455,104.384],[-882.744,108.518],[-890.3,123.392],[-875.617,125.424],[-857.28,125.648],[-830.887,118.242],[-850.471,111.299],[-865.908,108.243]]}],"t":345.305},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.631,1.786],[1.353,-3.356],[4.559,-7.221],[-3.845,-3.164],[-4.306,-6.01],[-6.745,6.245],[2.317,7.974],[4.506,6.487]],"o":[[-2.213,-0.853],[-3.218,7.98],[1.467,1.418],[4.819,3.878],[3.538,4.938],[4.428,-4.099],[-1.959,-6.745],[-2.898,-3.998]],"v":[[-874.583,105.651],[-881.693,106.249],[-889.335,121.604],[-874.677,127.875],[-864.579,140.693],[-847.489,157.693],[-850.51,137.318],[-862.148,114.94]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.731,1.502],[1.64,-5.396],[4.211,-6.688],[-3.627,-3.492],[-4.179,-5.687],[-6.317,-8.091],[2.414,10.637],[5.246,7.792]],"o":[[-2.261,-0.718],[-1.711,5.63],[1.55,1.327],[4.198,4.042],[3.629,4.938],[3.9,4.995],[-1.388,-6.116],[-2.772,-4.118]],"v":[[-877.856,94.473],[-885.269,96.893],[-892.243,111.464],[-879.51,116.139],[-867.94,129.103],[-857.426,143.446],[-858.787,121.54],[-865.763,104.22]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.557,0.17],[1.067,-5.534],[2.924,-7.645],[-4.154,-2.841],[-5.062,-4.913],[-8.554,-6.174],[7.224,9.228],[6.462,6.812]],"o":[[-1.247,-0.213],[-1.401,7.01],[1.748,1.051],[4.808,3.289],[4.395,4.266],[5.06,3.699],[-3.544,-4.859],[-3.415,-3.599]],"v":[[-875.661,80.253],[-882.466,83.35],[-886.926,98.869],[-872.493,101.475],[-859.831,111.947],[-846.303,121.968],[-850.128,102.938],[-862.006,86.833]]}],"t":403.189},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-5.63,-4.255],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[4.433,3.782],[5.039,3.808],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-871.406,77.876],[-878.293,79.669],[-884.378,94.633],[-870.823,98.938],[-858.518,110.249],[-844.788,119.127],[-845.721,102.642],[-858.192,84.742]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.875,82.145],[-880.498,84.258],[-886.584,99.222],[-873.217,103.517],[-862.573,111.45],[-844.783,125.302],[-853.026,109.107],[-860.739,93.225]]}],"t":435.125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.221,1.215],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[4.891,3.976],[5.854,3.264]],"o":[[-2.276,-0.529],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.408,-4.396],[-4.898,-2.731]],"v":[[-876.932,93.515],[-883.798,96.931],[-889.884,111.895],[-875.885,114.609],[-859.463,115.862],[-835.063,117.46],[-851.003,107.786],[-863.649,98.515]]}],"t":451.094},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.869,1.025],[1.098,-3.689],[3.656,-7.718],[-5.834,-0.058],[-4.895,0.501],[5.706,7.592],[10.221,1.283],[4.953,2.346]],"o":[[-3.158,-0.836],[-2.439,8.195],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-3.562,-4.739],[-5.559,-0.698],[-3.617,-1.713]],"v":[[-877.455,104.384],[-882.744,108.518],[-890.3,123.392],[-875.617,125.424],[-857.28,125.648],[-830.887,118.242],[-850.471,111.299],[-865.908,108.243]]}],"t":465.064},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":479},{"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front fin top","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.588,4.27],[8.096,2.958],[9.506,16.175],[3.39,10.887],[20.604,1.913],[0,0],[2.491,-10.218],[4.206,-4.544],[-4.971,-6.937],[-3.915,-6.247],[-10.02,-12.31],[-9.354,-6.56],[-8.688,2.267]],"o":[[6.649,-5.08],[-17.011,-6.216],[-6.047,-10.289],[-5.169,-17.305],[-8.898,-0.826],[3.86,7.571],[-1.122,4.602],[5.724,2.06],[6.911,9.644],[6.569,10.628],[5.342,6.564],[7.446,5.222],[11.066,-2.888]],"v":[[-760.612,203.089],[-780.083,187.245],[-827.524,147.704],[-839.507,113.966],[-864.354,76.951],[-880.377,79.987],[-880.463,109.101],[-888.807,123.975],[-872.132,132.725],[-857.218,154.109],[-836.941,181.64],[-808.165,210.538],[-781.692,212.491]]}],"t":13.971},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.158,1.019],[3.431,9.602],[8.969,19.033],[4.472,10.733],[20.656,1.218],[0,0],[2.145,-10.296],[4.05,-4.683],[-5.203,-6.766],[-3.87,-6.281],[-3.693,-10.053],[-2.456,-11.66],[-6.719,-2.886]],"o":[[10.011,-0.805],[-6.46,-18.081],[-5.389,-11.216],[-6.545,-16.129],[-8.921,-0.526],[4.113,7.436],[-0.966,4.637],[5.79,1.866],[7.232,9.406],[6.786,11.129],[3.578,9.739],[1.399,6.639],[6.364,2.733]],"v":[[-794.524,222.695],[-794.83,188.816],[-823.464,138.836],[-837.033,104.682],[-863.242,71.567],[-880.185,76.361],[-879.656,102.432],[-887.494,117.578],[-870.533,125.762],[-854.416,147.446],[-839.332,175.815],[-832.847,202.257],[-814.975,219.017]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-823.342,226.507],[-805.503,189.548],[-817.853,128.155],[-834.021,94.098],[-865.187,62.275],[-880.847,66.829],[-878.149,95.818],[-885.032,111.421],[-867.597,118.537],[-849.625,139.964],[-838.815,169.257],[-853.438,203.188],[-841.768,217.818]]}],"t":29.939},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.173,-0.307],[-0.292,20.456],[12.833,18.632],[6.944,9.653],[20.56,-2.336],[0,0],[0.351,-10.511],[3.188,-5.308],[-6.284,-5.775],[-5.113,-5.3],[0.694,-11.687],[-6.003,-10.862],[-6.632,-3.389]],"o":[[13.08,0.502],[0.365,-25.597],[-7.783,-11.107],[-9.824,-13.657],[-8.879,1.009],[5.325,6.622],[-0.158,4.734],[6.024,0.847],[8.736,8.029],[10.089,10.333],[-1.22,20.54],[4.157,7.523],[5.697,2.633]],"v":[[-810.961,203.449],[-790.205,171.167],[-810.462,110.241],[-832.201,79.712],[-866.672,51.503],[-880.017,56.34],[-874.153,84.858],[-879.282,101.122],[-861.171,106.281],[-838.635,124.239],[-822.786,152.996],[-844.395,182.368],[-826.083,199.328]]}],"t":43.912},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-811.237,208.504],[-792.806,182.132],[-810.329,115.034],[-830.973,83.819],[-862.138,51.997],[-873.802,53.955],[-871.104,82.944],[-877.988,98.547],[-860.552,105.663],[-837.318,124.725],[-821.068,161.753],[-843.392,196.62],[-822.493,206.242]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.89,2.029],[8.663,12.792],[15.292,14.622],[6.578,9.906],[20.633,-1.567],[0,0],[0.744,-10.491],[3.385,-5.185],[-6.064,-6.006],[-5.439,-5.009],[-13.943,-17.582],[-9.938,1.212],[-3.61,0.603]],"o":[[7.576,-3.952],[-13.25,-15.548],[-10.238,-9.746],[-9.307,-14.015],[-8.911,0.677],[5.074,6.817],[-0.335,4.725],[5.988,1.071],[8.43,8.35],[11.429,10.525],[13.094,16.511],[7.318,-0.893],[4.328,-0.723]],"v":[[-763.524,181.686],[-765.566,155.136],[-809.99,109.982],[-832.845,80.347],[-866.237,50.87],[-877.728,53.669],[-872.934,82.387],[-878.667,98.448],[-861.269,105.413],[-837.955,124.608],[-802.512,151.864],[-796.425,190.349],[-785.619,188.405]]}],"t":67.863},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.296,4.464],[10.982,5.579],[11.967,14.426],[5.084,10.749],[20.55,-2.419],[0,0],[0.309,-10.513],[3.167,-5.32],[-6.307,-5.75],[-5.642,-4.78],[-10.522,-5.134],[-12.44,-2.874],[-2.337,2.185]],"o":[[4.53,-6.136],[-22.823,-11.595],[-8.812,-10.623],[-7.191,-15.204],[-8.875,1.045],[5.352,6.601],[-0.139,4.734],[6.027,0.823],[8.768,7.993],[11.855,10.043],[10.194,4.974],[6.467,1.494],[5.578,-5.214]],"v":[[-743.782,164.877],[-779.488,148.365],[-820.685,110.863],[-835.426,79.917],[-870.01,51.847],[-881.375,55.12],[-875.397,83.614],[-880.46,99.899],[-863.135,107.002],[-839.919,126.656],[-796.797,154.702],[-757.654,167.969],[-744.989,167.114]]}],"t":73.852},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.402,4.036],[10.008,-1.427],[14.217,10.782],[8.582,9.116],[19.203,-3.47],[0,0],[-0.105,-10.517],[2.955,-5.441],[-6.65,-2.551],[-7.612,-2.689],[-15.628,-2.233],[-10.783,2.975],[-0.778,3.07]],"o":[[1.27,-12.753],[-16.413,2.34],[-9.154,-6.858],[-9.652,-11.231],[-8.755,1.667],[5.608,6.385],[0.047,4.736],[6.055,0.585],[10.619,3.227],[16.169,4.826],[18.942,2.707],[5.72,-0.894],[0.458,-4.626]],"v":[[-737.576,104.15],[-767.578,108.572],[-818.753,96.357],[-839.319,73.254],[-874.29,55.142],[-885.74,59.377],[-878.645,87.614],[-883.063,104.086],[-862.93,107.386],[-837.5,115.892],[-791.62,127.641],[-745.342,122.895],[-737.736,116.316]]}],"t":81.834},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-735.289,83.203],[-756.789,96.994],[-817.543,99.158],[-840.008,79.634],[-872.427,64.972],[-884.69,67.884],[-881.993,96.874],[-888.876,112.477],[-866.495,116.125],[-839.661,118.54],[-792.218,123.011],[-736.679,110.139],[-732.314,98.868]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.323,6.378],[13.998,-10.278],[12.624,7.635],[8.954,7.559],[15.965,0.707],[0,0],[2.885,-10.114],[4.378,-4.378],[-7.257,-0.429],[-8.118,-1.296],[-13.493,0.587],[-14.475,12.418],[0.565,3.94]],"o":[[-4.297,-8.778],[-16.284,11.957],[-8.756,-3.845],[-9.068,-7.491],[-8.892,-0.181],[3.564,7.715],[-1.299,4.555],[5.64,2.28],[14.244,0.278],[20.373,0.775],[28.307,-5.346],[5.427,-4.342],[-1.292,-6.391]],"v":[[-741.365,73.39],[-759.704,98.41],[-819.111,106.184],[-839.985,90.07],[-868.201,77.759],[-881.313,79.684],[-882.526,108.773],[-891.44,123.312],[-865.517,127.741],[-836.735,128.054],[-789.843,125.415],[-737.776,106.214],[-734.531,90.214]]}],"t":105.787},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.714,4.903],[8.23,-2.543],[13.194,10.37],[6.527,9.109],[18.646,0.627],[0,0],[2.214,-10.281],[4.081,-4.656],[-6.841,-2.858],[-7.504,-3.117],[-11.443,-1.572],[-19.533,3.64],[-2.86,3.044]],"o":[[1.096,-6.213],[-19.813,6.122],[-8.486,-5.848],[-7.23,-10.695],[-8.903,-0.161],[4.063,7.463],[-0.997,4.63],[5.778,1.904],[12.322,4.153],[13.502,3.922],[17.234,2.368],[4.627,-0.862],[2.735,-4.722]],"v":[[-726.647,118.69],[-749.567,126.069],[-818.914,122.514],[-837.853,98.827],[-866.219,78.385],[-880.665,81.183],[-879.963,110.289],[-887.901,125.383],[-865.229,131.302],[-839.747,140.236],[-805.928,147.784],[-746.601,142],[-734.639,134.498]]}],"t":113.771},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.371,6.262],[10.762,5.642],[11.143,16.013],[4.433,10.719],[20.655,1.241],[0,0],[2.157,-10.293],[4.055,-4.679],[-6.031,-5.63],[-5.441,-5.566],[-6.222,-7.712],[-8.044,-5.614],[-6.163,-0.228]],"o":[[4.559,-5.315],[-16.407,-8.602],[-6.763,-9.483],[-6.049,-14.832],[-8.92,-0.536],[4.104,7.441],[-0.971,4.636],[5.788,1.872],[8.76,7.588],[7.578,9.189],[6.534,7.495],[5.51,3.846],[6.205,-0.418]],"v":[[-765.689,192.95],[-779.892,176.691],[-822.845,141.424],[-838.057,109.174],[-865.876,77.797],[-881.607,81.022],[-880.745,110.124],[-888.6,125.262],[-869.761,132.906],[-850.461,152.667],[-830.778,175.542],[-809.296,195.656],[-790.726,203.496]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.177,0.874],[3.236,9.669],[8.584,19.21],[4.255,10.821],[20.628,1.634],[0,0],[2.353,-10.251],[4.144,-4.601],[-5.396,-6.361],[-3.742,-6.358],[-3.49,-10.126],[-2.221,-11.707],[-6.659,-3.021]],"o":[[10.025,-0.603],[-6.094,-18.208],[-5.162,-11.322],[-6.219,-16.258],[-8.908,-0.706],[3.962,7.518],[-1.059,4.616],[5.751,1.982],[6.445,7.598],[6.56,11.263],[3.38,9.809],[1.264,6.666],[6.308,2.861]],"v":[[-798.85,229.521],[-798.472,195.644],[-826.093,145.096],[-838.971,110.675],[-865.868,75.201],[-881.848,78.453],[-881.54,107.566],[-889.681,122.552],[-872.245,129.96],[-857.212,153.08],[-842.703,181.748],[-836.753,208.315],[-819.222,225.432]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.868,-2.441],[-4.005,21.634],[7.836,22.24],[5.161,10.712],[20.653,1.27],[0,0],[2.172,-10.29],[4.062,-4.673],[-5.185,-6.779],[-3.6,-6.459],[2.714,-11.389],[-5.071,-13.076],[-5.992,-6.637]],"o":[[13.538,3.726],[4.66,-25.172],[-4.356,-12.363],[-7.303,-15.156],[-8.919,-0.549],[4.094,7.447],[-0.978,4.634],[5.785,1.88],[7.208,9.424],[6.617,11.874],[-4.769,20.016],[2.757,7.11],[4.432,4.909]],"v":[[-837.314,235.237],[-817.127,199.507],[-825.49,137.445],[-839.427,102.415],[-868.474,68.647],[-884.395,72.181],[-883.573,101.284],[-891.449,116.41],[-874.51,124.637],[-857.958,147.179],[-849.06,177.108],[-865.843,210.025],[-855.141,225.377]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-828.755,225.788],[-810.916,188.829],[-823.267,127.436],[-839.434,93.379],[-870.6,61.556],[-886.26,66.11],[-883.562,95.099],[-890.446,110.702],[-873.01,117.818],[-855.038,139.246],[-844.228,168.538],[-858.851,202.469],[-847.181,217.099]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.148,-0.75],[-1.279,20.418],[11.919,19.23],[6.47,9.977],[20.649,-1.341],[0,0],[0.858,-10.482],[3.441,-5.148],[-5.998,-6.072],[-4.851,-5.541],[1.258,-11.64],[-5.471,-11.139],[-6.46,-3.706]],"o":[[13.04,1.133],[1.6,-25.55],[-7.238,-11.47],[-9.153,-14.116],[-8.917,0.579],[4.999,6.872],[-0.387,4.721],[5.976,1.137],[8.338,8.441],[9.578,10.808],[-2.211,20.457],[3.789,7.715],[5.563,2.905]],"v":[[-823.9,203.883],[-801.61,172.641],[-818.901,110.807],[-839.142,79.265],[-872.211,49.424],[-885.773,53.611],[-881.293,82.379],[-887.201,98.377],[-869.36,104.404],[-847.718,123.429],[-833.275,152.917],[-856.278,181.212],[-838.805,199.037]]}],"t":163.67},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-815.458,204.75],[-797.027,178.379],[-814.549,111.281],[-835.193,80.066],[-866.359,48.243],[-878.022,50.201],[-875.325,79.19],[-882.208,94.793],[-864.773,101.909],[-841.538,120.972],[-825.289,157.999],[-847.612,192.867],[-826.713,202.488]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.982,1.842],[8.045,13.19],[14.578,15.334],[6.099,10.208],[20.684,-0.582],[0,0],[1.242,-10.443],[3.628,-5.018],[-5.771,-6.288],[-5.195,-5.263],[-13.09,-18.226],[-9.985,0.738],[-3.634,0.431]],"o":[[7.755,-3.587],[-12.494,-16.161],[-9.762,-10.222],[-8.629,-14.442],[-8.932,0.252],[4.744,7.051],[-0.559,4.703],[5.93,1.355],[8.023,8.741],[10.915,11.058],[12.293,17.116],[7.352,-0.543],[4.357,-0.516]],"v":[[-774.528,183.727],[-775.304,157.11],[-817.527,109.892],[-838.945,79.203],[-870.897,48.169],[-882.508,50.418],[-878.015,77.859],[-884.728,96.672],[-868.531,102.887],[-846.157,123.17],[-812.052,152.082],[-807.804,190.814],[-796.918,189.387]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.702,4.133],[10.407,6.59],[10.554,15.49],[4.048,11.181],[20.687,-0.471],[0,0],[1.298,-10.437],[3.654,-4.998],[-5.737,-6.319],[-5.166,-5.29],[-9.991,-6.103],[-12.113,-4.034],[-2.533,1.955]],"o":[[5.088,-5.682],[-21.629,-13.695],[-7.771,-11.406],[-5.726,-15.814],[-8.934,0.203],[4.706,7.076],[-0.585,4.7],[5.923,1.387],[7.976,8.784],[10.855,11.116],[9.68,5.913],[6.298,2.097],[6.045,-4.665]],"v":[[-758.855,174.26],[-792.846,154.456],[-830.324,113.237],[-842.083,81.04],[-873.867,49.835],[-885.49,52.021],[-879.934,79.887],[-884.987,97.7],[-872.221,105.392],[-850.961,127.147],[-810.674,159.133],[-772.956,176.031],[-760.268,176.373]]}],"t":193.611},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.587,4.013],[10.063,-0.965],[13.706,11.424],[8.153,9.501],[19.343,-2.584],[0,0],[0.378,-10.51],[3.202,-5.299],[-6.525,-2.854],[-7.481,-3.037],[-15.509,-2.949],[-10.909,2.476],[-0.918,3.031]],"o":[[1.855,-12.681],[-16.504,1.583],[-8.83,-7.271],[-9.126,-11.663],[-8.822,1.263],[5.308,6.636],[-0.17,4.733],[6.022,0.863],[10.459,3.712],[15.931,5.564],[18.797,3.575],[5.755,-0.63],[0.671,-4.6]],"v":[[-741.291,109.373],[-771.464,112.412],[-822.025,97.857],[-841.506,73.834],[-875.607,54.134],[-887.241,57.837],[-881.451,86.37],[-886.622,102.622],[-866.661,106.844],[-841.649,116.51],[-796.357,130.355],[-749.91,127.742],[-742.01,121.519]]}],"t":201.594},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-738.061,81.376],[-759.561,95.167],[-820.315,97.331],[-842.78,77.807],[-875.199,63.145],[-887.462,66.057],[-884.764,95.047],[-891.648,110.65],[-869.267,114.298],[-842.433,116.713],[-794.99,121.184],[-739.45,108.312],[-735.086,97.041]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.739,6.144],[13.286,-11.184],[13.103,6.781],[9.435,6.949],[15.977,-0.353],[0,0],[2.208,-10.283],[4.078,-4.659],[-7.269,0.053],[-8.186,-0.755],[-13.425,1.48],[-13.62,13.35],[0.825,3.894]],"o":[[-4.869,-8.474],[-15.455,13.01],[-8.991,-3.256],[-9.544,-6.873],[-8.884,0.409],[4.067,7.461],[-0.994,4.631],[5.779,1.901],[14.231,-0.667],[20.38,-0.577],[27.891,-7.211],[5.128,-4.692],[-1.713,-6.291]],"v":[[-743.436,63.989],[-760.076,90.169],[-818.837,101.864],[-840.733,87.17],[-869.704,76.756],[-882.659,79.546],[-881.941,108.652],[-889.871,123.75],[-863.712,126.45],[-834.973,124.855],[-788.358,119.113],[-737.679,96.502],[-735.502,80.322]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.582,4.92],[8.159,-2.763],[13.468,10.012],[6.769,8.93],[18.656,0.125],[0,0],[1.937,-10.337],[3.954,-4.764],[-6.915,-2.673],[-7.585,-2.914],[-11.481,-1.264],[-19.428,4.164],[-2.778,3.12]],"o":[[0.928,-6.24],[-19.641,6.652],[-8.64,-5.618],[-7.515,-10.497],[-8.904,0.078],[4.263,7.352],[-0.872,4.656],[5.827,1.748],[12.429,3.821],[13.603,3.557],[17.291,1.904],[4.602,-0.986],[2.607,-4.793]],"v":[[-726.69,114.847],[-749.404,122.839],[-818.821,121.149],[-838.39,97.98],[-867.296,78.308],[-881.661,81.493],[-880.177,110.57],[-887.706,125.872],[-864.883,131.18],[-839.171,139.425],[-805.161,146.062],[-746.011,138.685],[-734.255,130.864]]}],"t":233.531},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.329,6.298],[10.8,5.57],[11.25,15.938],[4.505,10.689],[20.663,1.103],[0,0],[2.088,-10.308],[4.024,-4.706],[-6.069,-5.589],[-5.478,-5.529],[-6.274,-7.67],[-8.081,-5.56],[-6.164,-0.187]],"o":[[4.523,-5.346],[-16.465,-8.491],[-6.827,-9.438],[-6.148,-14.791],[-8.923,-0.476],[4.154,7.413],[-0.94,4.642],[5.801,1.833],[8.811,7.53],[7.64,9.138],[6.584,7.451],[5.536,3.809],[6.202,-0.46]],"v":[[-764.652,192.121],[-778.964,175.957],[-822.152,140.979],[-837.58,108.832],[-865.609,77.643],[-881.318,80.973],[-880.261,110.068],[-888.014,125.258],[-869.124,132.776],[-849.692,152.407],[-829.856,175.15],[-808.24,195.119],[-789.618,202.834]]}],"t":247.502},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.165,0.968],[3.362,9.626],[8.834,19.096],[4.396,10.764],[20.647,1.364],[0,0],[2.218,-10.281],[4.083,-4.655],[-5.478,-6.29],[-3.825,-6.308],[-3.622,-10.079],[-2.374,-11.677],[-6.698,-2.933]],"o":[[10.016,-0.734],[-6.332,-18.126],[-5.309,-11.254],[-6.431,-16.175],[-8.917,-0.589],[4.06,7.465],[-0.999,4.63],[5.777,1.907],[6.544,7.513],[6.707,11.177],[3.508,9.764],[1.351,6.649],[6.345,2.778]],"v":[[-797.937,227.887],[-798.002,194.007],[-826.282,143.826],[-839.609,109.576],[-866.968,74.457],[-882.904,77.918],[-882.215,107.025],[-890.16,122.115],[-872.628,129.295],[-857.294,152.216],[-842.411,180.691],[-836.114,207.179],[-818.361,224.065]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.725,-2.91],[-5.153,21.389],[6.639,22.627],[4.583,10.972],[20.556,2.37],[0,0],[2.717,-10.16],[4.305,-4.45],[-4.816,-7.046],[-3.25,-6.642],[3.318,-11.228],[-4.366,-13.328],[-5.629,-6.947]],"o":[[13.32,4.443],[5.996,-24.888],[-3.69,-12.578],[-6.484,-15.524],[-8.877,-1.024],[3.691,7.655],[-1.224,4.576],[5.677,2.186],[6.695,9.795],[5.974,12.21],[-5.831,19.733],[2.374,7.247],[4.164,5.139]],"v":[[-846.085,238.919],[-824.021,204.317],[-829.061,141.897],[-841.109,106.174],[-868.313,70.905],[-884.4,73.584],[-885.132,102.689],[-893.804,117.374],[-877.327,126.492],[-862.002,149.885],[-854.714,180.247],[-873.228,212.221],[-863.36,228.123]]}],"t":263.469},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-829.793,226.527],[-811.954,189.568],[-824.305,128.175],[-840.473,94.118],[-871.638,62.295],[-887.298,66.848],[-884.6,95.838],[-891.484,111.441],[-874.048,118.557],[-856.076,139.984],[-845.266,169.277],[-859.89,203.208],[-848.219,217.838]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.162,-0.553],[-0.839,20.441],[12.33,18.969],[6.683,9.835],[20.615,-1.785],[0,0],[0.633,-10.498],[3.329,-5.22],[-6.127,-5.942],[-4.969,-5.435],[1.007,-11.664],[-5.71,-11.019],[-6.539,-3.566]],"o":[[13.062,0.852],[1.05,-25.578],[-7.483,-11.311],[-9.455,-13.916],[-8.903,0.771],[5.146,6.763],[-0.285,4.728],[5.999,1.008],[8.518,8.26],[9.808,10.599],[-1.77,20.5],[3.955,7.632],[5.625,2.785]],"v":[[-821.378,203.101],[-799.765,171.387],[-818.383,109.94],[-839.297,78.84],[-873,49.717],[-886.469,54.195],[-881.371,82.86],[-886.934,98.981],[-868.967,104.623],[-846.921,123.178],[-831.848,152.349],[-854.236,181.132],[-836.384,198.577]]}],"t":283.43},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-816.313,204.508],[-797.882,178.136],[-815.404,111.038],[-836.048,79.823],[-867.214,48],[-878.878,49.958],[-876.18,78.948],[-883.063,94.551],[-865.628,101.667],[-842.393,120.729],[-826.144,157.757],[-848.468,192.624],[-827.568,202.246]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.968,1.873],[8.147,13.127],[14.697,15.22],[6.178,10.16],[20.679,-0.743],[0,0],[1.161,-10.453],[3.589,-5.046],[-5.82,-6.243],[-5.235,-5.222],[-13.231,-18.124],[-9.979,0.815],[-3.631,0.459]],"o":[[7.727,-3.647],[-12.619,-16.064],[-9.841,-10.146],[-8.741,-14.375],[-8.93,0.321],[4.798,7.014],[-0.523,4.708],[5.941,1.309],[8.09,8.679],[11,10.973],[12.426,17.02],[7.347,-0.6],[4.353,-0.55]],"v":[[-773.386,183.437],[-774.369,156.827],[-816.957,109.938],[-838.612,79.415],[-870.803,48.63],[-882.396,50.969],[-878.751,79.855],[-885.12,95.675],[-868.013,103.328],[-845.483,123.437],[-811.154,152.084],[-806.607,190.782],[-795.732,189.27]]}],"t":307.381},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.462,4.336],[10.763,5.991],[11.413,14.869],[4.674,10.934],[20.627,-1.64],[0,0],[0.706,-10.493],[3.366,-5.197],[-6.085,-5.984],[-5.457,-4.99],[-10.32,-5.528],[-12.322,-3.343],[-2.418,2.095]],"o":[[4.759,-5.961],[-22.369,-12.45],[-8.404,-10.948],[-6.611,-15.465],[-8.908,0.708],[5.098,6.799],[-0.318,4.726],[5.992,1.05],[8.459,8.319],[11.466,10.484],[9.999,5.356],[6.406,1.738],[5.771,-5]],"v":[[-751.701,167.622],[-786.757,149.772],[-826.507,110.739],[-840.067,79.258],[-873.565,49.9],[-885.045,52.74],[-880.149,81.44],[-885.824,97.522],[-868.779,105.275],[-846.324,125.793],[-804.293,155.45],[-765.68,170.188],[-752.992,169.811]]}],"t":313.371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.859,3.964],[10.105,-0.279],[12.897,12.33],[7.488,10.033],[19.474,-1.262],[0,0],[1.092,-10.46],[3.555,-5.069],[-6.316,-3.291],[-7.257,-3.538],[-15.272,-3.997],[-11.052,1.728],[-1.122,2.961]],"o":[[2.713,-12.526],[-16.573,0.457],[-8.315,-7.855],[-8.311,-12.257],[-8.887,0.66],[4.844,6.982],[-0.492,4.711],[5.949,1.27],[10.182,4.415],[15.515,6.635],[18.511,4.845],[5.784,-0.237],[0.982,-4.544]],"v":[[-745.505,120.492],[-775.815,121.471],[-825.268,103.511],[-843.071,78.218],[-875.754,56.245],[-887.612,59.149],[-883.776,88.009],[-890.04,103.871],[-870.413,109.442],[-846.116,120.786],[-801.871,137.68],[-755.354,138.231],[-747.048,132.561]]}],"t":321.352},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-736.962,81.114],[-758.462,94.905],[-819.217,97.069],[-841.682,77.544],[-874.101,62.882],[-886.364,65.795],[-883.666,94.784],[-890.549,110.387],[-868.168,114.035],[-841.334,116.451],[-793.892,120.922],[-738.352,108.049],[-733.987,96.779]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.748,6.138],[13.269,-11.205],[13.114,6.76],[9.446,6.934],[15.977,-0.378],[0,0],[2.192,-10.286],[4.071,-4.665],[-7.269,0.064],[-8.187,-0.742],[-13.423,1.501],[-13.599,13.371],[0.831,3.893]],"o":[[-4.883,-8.466],[-15.435,13.034],[-8.996,-3.242],[-9.555,-6.858],[-8.884,0.423],[4.079,7.455],[-0.987,4.632],[5.782,1.892],[14.23,-0.689],[20.379,-0.609],[27.879,-7.255],[5.12,-4.7],[-1.723,-6.288]],"v":[[-744.346,63.286],[-760.944,89.492],[-819.686,101.279],[-841.606,86.62],[-870.592,76.252],[-883.544,79.062],[-882.78,108.167],[-890.686,123.278],[-864.523,125.936],[-835.786,124.296],[-789.181,118.481],[-738.537,95.79],[-736.385,79.606]]}],"t":345.305},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.606,4.918],[8.172,-2.723],[13.42,10.077],[6.726,8.963],[18.655,0.216],[0,0],[1.987,-10.328],[3.977,-4.745],[-6.902,-2.707],[-7.571,-2.951],[-11.475,-1.32],[-19.448,4.07],[-2.793,3.107]],"o":[[0.958,-6.236],[-19.674,6.557],[-8.612,-5.66],[-7.464,-10.533],[-8.904,0.035],[4.227,7.372],[-0.895,4.651],[5.818,1.776],[12.41,3.881],[13.585,3.623],[17.282,1.988],[4.607,-0.964],[2.63,-4.781]],"v":[[-726.403,115.111],[-749.155,122.993],[-818.563,120.967],[-838.019,97.703],[-866.829,77.891],[-881.21,81.006],[-879.867,110.09],[-887.47,125.355],[-864.673,130.774],[-839.001,139.144],[-805.024,145.945],[-745.838,138.855],[-734.045,131.092]]}],"t":353.289},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.297,6.325],[10.828,5.515],[11.331,15.881],[4.56,10.666],[20.668,0.997],[0,0],[2.035,-10.318],[4,-4.726],[-6.097,-5.558],[-5.506,-5.501],[-6.313,-7.638],[-8.11,-5.519],[-6.165,-0.155]],"o":[[4.496,-5.369],[-16.508,-8.407],[-6.875,-9.403],[-6.224,-14.759],[-8.926,-0.431],[4.192,7.392],[-0.917,4.647],[5.81,1.804],[8.849,7.484],[7.686,9.099],[6.622,7.418],[5.555,3.78],[6.199,-0.492]],"v":[[-764.608,191.087],[-779.002,174.997],[-822.369,140.24],[-837.961,108.172],[-866.149,77.127],[-881.841,80.537],[-880.635,109.627],[-888.31,124.856],[-869.382,132.277],[-849.85,151.809],[-829.898,174.449],[-808.18,194.308],[-789.519,201.928]]}],"t":367.262},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.175,0.89],[3.257,9.662],[8.625,19.192],[4.278,10.811],[20.631,1.59],[0,0],[2.331,-10.256],[4.134,-4.61],[-5.409,-6.349],[-3.756,-6.35],[-3.511,-10.118],[-2.246,-11.702],[-6.666,-3.006]],"o":[[10.024,-0.624],[-6.133,-18.195],[-5.186,-11.311],[-6.254,-16.245],[-8.91,-0.687],[3.978,7.509],[-1.05,4.619],[5.756,1.97],[6.461,7.584],[6.584,11.249],[3.401,9.802],[1.279,6.663],[6.314,2.847]],"v":[[-799.067,228.689],[-798.762,194.81],[-826.49,144.322],[-839.442,109.928],[-866.414,74.512],[-882.388,77.798],[-882.017,106.911],[-890.127,121.913],[-872.675,129.284],[-857.592,152.372],[-843.023,181.009],[-837.015,207.563],[-819.448,224.643]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.778,-2.744],[-4.748,21.483],[7.066,22.497],[4.789,10.884],[20.597,1.981],[0,0],[2.525,-10.21],[4.22,-4.53],[-4.949,-6.954],[-3.375,-6.579],[3.104,-11.288],[-4.617,-13.243],[-5.76,-6.84]],"o":[[13.402,4.19],[5.524,-24.997],[-3.928,-12.506],[-6.776,-15.399],[-8.895,-0.855],[3.835,7.583],[-1.137,4.598],[5.717,2.078],[6.88,9.667],[6.204,12.095],[-5.456,19.84],[2.511,7.201],[4.26,5.059]],"v":[[-842.783,237.577],[-821.377,202.564],[-827.597,140.251],[-840.319,104.761],[-868.186,70.013],[-884.219,72.996],[-884.4,102.111],[-892.793,116.957],[-876.146,125.761],[-860.381,148.861],[-852.52,179.079],[-870.426,211.397],[-860.259,227.11]]}],"t":383.229},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.909,-2.287],[-3.63,21.7],[8.22,22.101],[5.346,10.621],[20.672,0.912],[0,0],[1.993,-10.326],[3.98,-4.743],[-5.302,-6.688],[-3.711,-6.396],[2.516,-11.434],[-5.297,-12.987],[-6.106,-6.532]],"o":[[13.601,3.491],[4.224,-25.249],[-4.57,-12.286],[-7.564,-15.027],[-8.927,-0.394],[4.222,7.375],[-0.898,4.651],[5.817,1.78],[7.371,9.298],[6.822,11.757],[-4.422,20.095],[2.88,7.062],[4.516,4.832]],"v":[[-836.408,229.436],[-816.843,193.361],[-826.28,131.453],[-840.821,96.67],[-870.448,63.411],[-886.305,67.219],[-884.98,96.304],[-892.593,111.564],[-875.513,119.496],[-858.574,141.749],[-849.159,171.519],[-865.369,204.721],[-854.403,219.886]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.355],[-0.398,20.455],[12.736,18.699],[6.893,9.689],[20.572,-2.229],[0,0],[0.406,-10.509],[3.216,-5.291],[-6.254,-5.808],[-5.085,-5.327],[0.755,-11.683],[-5.946,-10.893],[-6.614,-3.424]],"o":[[13.077,0.57],[0.498,-25.595],[-7.726,-11.147],[-9.753,-13.708],[-8.884,0.963],[5.291,6.65],[-0.183,4.733],[6.02,0.878],[8.694,8.074],[10.035,10.385],[-1.327,20.533],[4.118,7.544],[5.683,2.663]],"v":[[-819.687,201.346],[-798.764,169.172],[-818.703,108.141],[-840.284,77.5],[-874.607,49.112],[-887.977,53.879],[-882.261,82.427],[-887.475,98.665],[-869.391,103.918],[-846.949,121.993],[-831.25,150.831],[-853.012,180.091],[-834.788,197.146]]}],"t":403.189},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-818.391,204.709],[-799.96,178.337],[-817.482,111.239],[-838.126,80.024],[-869.292,48.201],[-880.956,50.159],[-878.258,79.149],[-885.142,94.752],[-867.706,101.868],[-844.471,120.93],[-828.222,157.958],[-850.546,192.825],[-829.646,202.446]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.968,1.873],[8.147,13.127],[14.697,15.22],[6.178,10.16],[20.679,-0.743],[0,0],[1.161,-10.453],[3.589,-5.046],[-5.82,-6.243],[-5.235,-5.222],[-13.231,-18.124],[-9.979,0.815],[-3.631,0.459]],"o":[[7.727,-3.647],[-12.619,-16.064],[-9.841,-10.146],[-8.741,-14.375],[-8.93,0.321],[4.798,7.014],[-0.523,4.708],[5.941,1.309],[8.09,8.679],[11,10.973],[12.426,17.02],[7.347,-0.6],[4.353,-0.55]],"v":[[-773.386,183.437],[-774.369,156.827],[-816.957,109.938],[-838.612,79.415],[-870.803,48.63],[-882.396,50.969],[-878.751,79.855],[-885.12,95.675],[-868.013,103.328],[-845.483,123.437],[-811.154,152.084],[-806.607,190.782],[-795.732,189.27]]}],"t":427.141},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.462,4.336],[10.763,5.991],[11.413,14.869],[4.674,10.934],[20.627,-1.64],[0,0],[0.706,-10.493],[3.366,-5.197],[-6.085,-5.984],[-5.457,-4.99],[-10.32,-5.528],[-12.322,-3.343],[-2.418,2.095]],"o":[[4.759,-5.961],[-22.369,-12.45],[-8.404,-10.948],[-6.611,-15.465],[-8.908,0.708],[5.098,6.799],[-0.318,4.726],[5.992,1.05],[8.459,8.319],[11.466,10.484],[9.999,5.356],[6.406,1.738],[5.771,-5]],"v":[[-751.701,167.622],[-786.757,149.772],[-826.507,110.739],[-840.067,79.258],[-873.565,49.9],[-885.045,52.74],[-880.149,81.44],[-885.824,97.522],[-868.779,105.275],[-846.324,125.793],[-804.293,155.45],[-765.68,170.188],[-752.992,169.811]]}],"t":433.129},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.859,3.964],[10.105,-0.279],[12.897,12.33],[7.488,10.033],[19.474,-1.262],[0,0],[1.092,-10.46],[3.555,-5.069],[-6.316,-3.291],[-7.257,-3.538],[-15.272,-3.997],[-11.052,1.728],[-1.122,2.961]],"o":[[2.713,-12.526],[-16.573,0.457],[-8.315,-7.855],[-8.311,-12.257],[-8.887,0.66],[4.844,6.982],[-0.492,4.711],[5.949,1.27],[10.182,4.415],[15.515,6.635],[18.511,4.845],[5.784,-0.237],[0.982,-4.544]],"v":[[-745.505,120.492],[-775.815,121.471],[-825.268,103.511],[-843.071,78.218],[-875.754,56.245],[-887.612,59.149],[-883.776,88.009],[-890.04,103.871],[-870.413,109.442],[-846.116,120.786],[-801.871,137.68],[-755.354,138.231],[-747.048,132.561]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-736.962,81.114],[-758.462,94.905],[-819.217,97.069],[-841.682,77.544],[-874.101,62.882],[-886.364,65.795],[-883.666,94.784],[-890.549,110.387],[-868.168,114.035],[-841.334,116.451],[-793.892,120.922],[-738.352,108.049],[-733.987,96.779]]}],"t":449.096},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.748,6.138],[13.269,-11.205],[13.114,6.76],[9.446,6.934],[15.977,-0.378],[0,0],[2.192,-10.286],[4.071,-4.665],[-7.269,0.064],[-8.187,-0.742],[-13.423,1.501],[-13.599,13.371],[0.831,3.893]],"o":[[-4.883,-8.466],[-15.435,13.034],[-8.996,-3.242],[-9.555,-6.858],[-8.884,0.423],[4.079,7.455],[-0.987,4.632],[5.782,1.892],[14.23,-0.689],[20.379,-0.609],[27.879,-7.255],[5.12,-4.7],[-1.723,-6.288]],"v":[[-744.346,63.286],[-760.944,89.492],[-819.686,101.279],[-841.606,86.62],[-870.592,76.252],[-883.544,79.062],[-882.78,108.167],[-890.686,123.278],[-864.523,125.936],[-835.786,124.296],[-789.181,118.481],[-738.537,95.79],[-736.385,79.606]]}],"t":465.064},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.606,4.918],[8.172,-2.723],[13.42,10.077],[6.726,8.963],[18.655,0.216],[0,0],[1.987,-10.328],[3.977,-4.745],[-6.902,-2.707],[-7.571,-2.951],[-11.475,-1.32],[-19.448,4.07],[-2.793,3.107]],"o":[[0.958,-6.236],[-19.674,6.557],[-8.612,-5.66],[-7.464,-10.533],[-8.904,0.035],[4.227,7.372],[-0.895,4.651],[5.818,1.776],[12.41,3.881],[13.585,3.623],[17.282,1.988],[4.607,-0.964],[2.63,-4.781]],"v":[[-726.403,115.111],[-749.155,122.993],[-818.563,120.967],[-838.019,97.703],[-866.829,77.891],[-881.21,81.006],[-879.867,110.09],[-887.47,125.355],[-864.673,130.774],[-839.001,139.144],[-805.024,145.945],[-745.838,138.855],[-734.045,131.092]]}],"t":473.049},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":479},{"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.075,0.089]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front fin bottom","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":29,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1073.875,105.473,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1073.875,105.473,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-8],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[6],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[8],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":479},{"s":[10],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front leg","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-40.292,16.342],[-33.029,8.646],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[35.009,-14.199],[23.972,-6.275],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.04,168.725],[-946.09,138.338],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-42.046,11.075],[-36.938,18.988],[-7.388,4.141],[-2.046,1.369],[4.713,10.778],[1.331,-0.516],[18.938,-4.523],[23.72,0.894],[23.05,5.482]],"o":[[44.458,-11.71],[19.89,-10.225],[3.571,-2.002],[1.283,-0.609],[-3.846,-8.796],[-15.787,6.119],[-14.884,3.555],[-18.821,-0.71],[0,0]],"v":[[-1045.039,171.198],[-943.389,129.475],[-889.562,101.231],[-881.344,96.203],[-882.23,77.848],[-902.574,55.765],[-932.553,65.992],[-979.945,68.652],[-1040.1,58.04]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.409,13.26],[-39.393,12.294],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[39.301,-12.585],[16.596,-5.18],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1036.044,165.594],[-944.981,137.162],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.859,11.761],[-36.077,20.355],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[39.728,-11.163],[24.674,-13.921],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1039.425,170.524],[-935.513,131.047],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.983,15.695],[-52.345,16.392],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[32.234,-12.05],[8.125,-2.544],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1034.133,166.675],[-944.664,135.903],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.988,11.291],[-37.164,18.296],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[40.737,-10.955],[7.639,-3.761],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1051.355,171.85],[-935.771,128.803],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.38,13.349],[-37.52,11.878],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[40.052,-12.921],[8.117,-2.57],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.118,167.508],[-945.771,138.473],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.728,12.219],[-31.928,16.808],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[39.604,-11.597],[25.699,-13.529],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1043.212,172.33],[-939.397,132.858],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-40.292,16.342],[-33.029,8.646],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[35.009,-14.199],[23.972,-6.275],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.04,168.725],[-946.09,138.338],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":479},{"s":[{"c":false,"i":[[-40.173,16.633],[-41.972,11.417],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[34.811,-14.413],[26.053,-7.087],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1031.966,168.567],[-944.088,137.742],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.786,0.328],[1.74,3.307]],"o":[[0,0],[6.786,-0.328],[0,0]],"v":[[-935.283,67.157],[-924.073,84.367],[-922.325,63.419]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":479},{"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.336,-4.193],[-7.048,12.388],[0,0]],"o":[[0,0],[0.336,4.193],[7.048,-12.388],[0,0]],"v":[[-967.396,70.28],[-966.982,92.347],[-954.188,91.31],[-948.178,71.101]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":479},{"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front leg stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-3.865,-14.502],[-5.415,2.069],[-39.37,12.366],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[2.792,10.475],[38.55,-14.727],[8.123,-2.552],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1040.275,107.689],[-1035.983,136.56],[-1021.07,163.518],[-946.203,138.095],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.333,-0.61],[17.812,-3.607],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.648,1.307],[-37.863,16.776],[-7.27,4.344],[-2.649,1.258],[4.593,10.597]],"o":[[-14.717,6.735],[-21.422,4.338],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[42.676,-9.879],[7.785,-3.449],[3.142,-1.877],[1.254,-0.596],[-3.939,-9.087]],"v":[[-902.683,56.005],[-936.626,66.148],[-993.809,67.38],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1037.089,168.24],[-943.484,129.224],[-889.953,100.482],[-881.226,96.275],[-883.255,77.8]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.521,1.768],[-39.72,11.191],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.301,-12.585],[8.195,-2.309],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1036.16,164.725],[-944.746,137.992],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.581,1.568],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.728,-11.163],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1039.51,169.651],[-934.896,130.872],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-0.341,-7.289],[-3.264,-16.174],[-5.481,1.889],[-35.943,9.646],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[0.386,8.254],[1.932,9.574],[38.292,-13.201],[8.223,-2.207],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.333,103.193],[-1040.703,133.856],[-1026.683,163.151],[-944.754,135.651],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.583,1.564],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.531,-11.072],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1041.706,106.106],[-1040.703,133.856],[-1041.259,168.215],[-935.952,128.606],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.535,1.723],[-39.481,14.128],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.401,-12.267],[8.017,-2.869],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1033.157,166.137],[-945.876,138.227],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.564,1.629],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.604,-11.597],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1043.307,171.458],[-939.578,132.661],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-0.02,-7.297],[-3.003,-14.567],[-5.415,2.069],[-39.37,12.366],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[0.022,8.144],[1.972,9.566],[38.55,-14.727],[8.123,-2.552],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1022.487,163.203],[-946.203,138.095],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":479},{"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.433,2.023],[-28.721,6.105],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[38.674,-14.397],[8.328,-1.77],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1020.11,163.685],[-944.189,137.494],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Body fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":30,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1107.804,-2.384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[699.196,282.616,0]},"r":{"a":0,"ix":10,"k":30},"s":{"a":0,"ix":6,"k":[55,55,100]}},"nm":"Body","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-9.643,2.5],[-10.714,-5]],"o":[[9.643,-2.5],[10.714,5]],"v":[[-1255.941,20.307],[-1217.727,21.736]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392156863,0.372549019608,0.847058823529,1]},"hd":false,"lc":1,"lj":1,"ml":4,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.744,6.946],[0.714,1.964]],"o":[[0,0],[-2.797,-7.082],[-0.714,-1.964]],"v":[[-1314.101,113.308],[-1324.413,90.448],[-1330.214,68.56]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392156863,0.372549019608,0.847058823529,1]},"hd":false,"lc":1,"lj":1,"ml":4,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Neck stroke","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.373,3.468],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.389,9.68]],"o":[[-13.173,-4.404],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.337,-8.983]],"v":[[-1246.03,82.507],[-1295.763,79.593],[-1313.439,98.917],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.76,149.779]]}],"t":0},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[9.772,2.502],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[0.352,3.422],[-10.506,-8.72],[-15.274,-6.539],[-28.536,-3.208],[-49.164,18.593]],"o":[[-13.653,-3.496],[-7.855,2.563],[8.522,13.557],[-1.453,-5.936],[3.387,9.315],[19.123,10.673],[20.539,8.793],[42.6,4.79],[38.599,-14.598]],"v":[[-1235.049,76.656],[-1295.763,74.593],[-1315.892,96.215],[-1301.631,111.689],[-1303.079,102.421],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1034.906,144.76]]}],"t":59.881},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.655,-1.864],[-47.436,11.182]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[44.048,2.866],[40.166,-9.468]],"v":[[-1251.563,84.365],[-1291.477,84.593],[-1311.249,101.929],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.489,145.274]]}],"t":120},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-17.008,-2.329],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.006,2.529],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-45.238,15.188]],"o":[[13.761,1.885],[-7.855,2.563],[5.843,7.842],[-0.024,-5.489],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.121,-13.134]],"v":[[-1244.34,80.045],[-1293.62,79.236],[-1315.535,97.286],[-1302.346,110.796],[-1302.007,104.028],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1034.371,145.567]]}],"t":180},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.652,-1.911],[-40.849,8.456]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[47.329,3.157],[40.602,-8.404]],"v":[[-1249.659,83.597],[-1292.548,82.45],[-1311.606,100.858],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1042.009,149.269]]}],"t":239},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[16.869,2.178],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.184,2.529],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-41.33,13.504]],"o":[[-13.776,-1.779],[-7.855,2.563],[6.558,11.235],[-1.096,-5.311],[2.137,7.886],[19.123,10.673],[20.539,8.793],[42.6,4.79],[40.953,-13.381]],"v":[[-1235.955,75.836],[-1294.691,77.807],[-1315.892,96.215],[-1300.381,115.261],[-1301.471,107.243],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1038.714,145.237]]}],"t":299},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.064,2.561],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.611,9.208]],"o":[[-13.461,-3.425],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[40.336,-8.716]],"v":[[-1248.731,83.85],[-1294.334,81.379],[-1313.392,100.144],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.368,148.506]]}],"t":360},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.006,0.743],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-41.864,11.743]],"o":[[13.75,1.964],[-7.855,2.563],[9.593,13.378],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[38.884,-10.908]],"v":[[-1244.114,81.007],[-1293.62,79.236],[-1315.535,97.286],[-1299.845,115.261],[-1300.936,106.35],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1039.498,147.782]]}],"t":420},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.373,3.468],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.389,9.68]],"o":[[-13.173,-4.404],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.337,-8.983]],"v":[[-1246.03,82.507],[-1295.763,79.593],[-1313.439,98.917],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.76,149.779]]}],"t":479},{"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.7,-0.957],[-43.474,7.821]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[46.257,1.543],[40.099,-7.214]],"v":[[-1256.298,85.307],[-1291.477,84.593],[-1311.249,101.929],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.403,150.317]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-11.523,-2.936],[-2.802,-6.168]],"o":[[14.26,4.062],[16.499,6.033],[13.932,3.55],[4.737,10.425]],"v":[[-1207.46,94.306],[-1148.093,115.555],[-1088.67,132.069],[-1039.595,149.676]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-6.184,-2.263],[-3.682,-5.009]],"o":[[14.26,4.062],[16.499,6.033],[13.502,4.941],[6.783,9.226]],"v":[[-1199.004,84.682],[-1146.968,101.722],[-1084.936,125.891],[-1042.976,147.07]]}],"t":60},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9.292,-2.345],[-19.314,-2.623],[-3.682,-5.009]],"o":[[14.26,4.062],[15.848,4],[14.246,1.935],[6.783,9.226]],"v":[[-1207.615,98.59],[-1151.915,115.616],[-1077.756,129.589],[-1042.976,147.07]]}],"t":120},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.292,-2.345],[-20.733,-9.898],[-3.682,-5.009]],"o":[[14.399,2.936],[15.848,4],[12.974,6.194],[6.783,9.226]],"v":[[-1208.438,86.679],[-1150.633,101.736],[-1077.515,127.186],[-1040.833,147.135]]}],"t":180},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.292,-2.345],[-26.039,-5.637],[-3.682,-5.009]],"o":[[14.399,2.936],[15.848,4],[14.052,3.042],[6.783,9.226]],"v":[[-1219.753,95.327],[-1156.239,113.451],[-1070.957,130.739],[-1040.833,147.135]]}],"t":239},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-24.479,-10.515],[-4.427,-4.191]],"o":[[14.399,2.936],[16.56,5.468],[13.966,5.999],[8.316,7.872]],"v":[[-1208.326,80.918],[-1152.769,97.332],[-1072.806,127.56],[-1039.35,145.021]]}],"t":299},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-27.009,-7.888],[-5.836,-3.941]],"o":[[14.399,2.936],[16.56,5.468],[14.59,4.261],[9.49,6.408]],"v":[[-1219.77,92.141],[-1161.783,109.844],[-1076.748,133.875],[-1041.021,148.827]]}],"t":360},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-27.555,-9.896],[-7.911,-7.462]],"o":[[14.399,2.936],[16.56,5.468],[14.735,5.292],[8.33,7.857]],"v":[[-1212.875,84.343],[-1157.957,97.426],[-1082.188,122.914],[-1039.932,146.911]]}],"t":420},{"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-11.523,-2.936],[-2.802,-6.168]],"o":[[14.26,4.062],[16.499,6.033],[13.932,3.55],[4.737,10.425]],"v":[[-1207.46,94.306],[-1148.093,115.555],[-1088.67,132.069],[-1039.595,149.676]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Body stroke","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[19.41,5.144]],"o":[[-5.188,2.946],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-17.238,-11.627],[-57.952,-15.357]],"v":[[-1302.432,82.648],[-1313.672,98.703],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.964,149.872],[-1114.01,126.202]]}],"t":0},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-6.81,-5.862],[-0.184,3.585],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-39.347,13.459],[30.835,13.035]],"o":[[-5.188,2.946],[3.623,5.711],[-2.826,-7.055],[3.03,8.406],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-16.44,-11.668],[-57.818,-24.441]],"v":[[-1302.432,77.648],[-1315.458,97.275],[-1301.453,112.062],[-1303.079,102.437],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1042.571,146.304],[-1108.254,116.857]]}],"t":59.881},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[29.773,4.603]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-10.076,-14.505],[-63.874,-9.875]],"v":[[-1293.503,86.22],[-1310.862,100.691],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1043.499,146.77],[-1108.656,124.948]]}],"t":119.76},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-0.542,3.763],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-36.219,10.095],[24.563,7.936]],"o":[[-5.404,2.527],[3.445,7.676],[-0.738,-4.076],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-59.501,-19.223]],"v":[[-1295.646,80.863],[-1315.458,96.203],[-1301.274,110.634],[-1302.007,103.151],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.977,147.369],[-1113.146,113.217]]}],"t":180},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[29.37,-9.346],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-34.568,7.149],[28.261,3.569]],"o":[[-11.724,3.731],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-7.01,-14.133],[-71.026,-8.969]],"v":[[-1293.503,82.648],[-1311.172,102.275],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.968,148.872],[-1111.548,122.455]]}],"t":239},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[46,-16.206],[3.088,-9.11],[-9.125,-5.056],[-0.006,3.049],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-33.958,10.395],[22.32,8.333]],"o":[[-11.604,4.088],[3.445,7.676],[-2.826,-7.055],[3.208,9.478],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-57.141,-21.332]],"v":[[-1295.646,78.005],[-1315.458,97.632],[-1299.31,115.098],[-1301.471,106.365],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.99,144.865],[-1111.112,112.554]]}],"t":299},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[29.37,-9.346],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[21.736,5.604]],"o":[[-11.724,3.731],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-63.187,-16.29]],"v":[[-1294.218,81.577],[-1313.315,99.418],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.38,148.757],[-1108.965,125.103]]}],"t":360},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-1.989,-1.398],[0.173,2.871],[-2.841,-2.082],[-13.885,-5.039],[-32.131,-4.558],[-37.522,9.906],[19.491,7.317]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.237,5.424],[-9.801,-12.85],[-61.091,-22.934]],"v":[[-1295.646,80.863],[-1315.458,96.203],[-1298.774,115.098],[-1300.936,105.473],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1039.774,147.41],[-1107.828,113.774]]}],"t":420},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[19.41,5.144]],"o":[[-5.188,2.946],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-17.238,-11.627],[-57.952,-15.357]],"v":[[-1302.432,82.648],[-1313.672,98.703],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.964,149.872],[-1114.01,126.202]]}],"t":479},{"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[23.396,4.936]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-63.25,-13.343]],"v":[[-1293.503,86.22],[-1311.172,100.846],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.119,149.376],[-1104.989,131.714]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.933333337307,0.933333337307,0.933333337307,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Stomach fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-6.396,1.771],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.498,-5.953],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1053.062,152.536],[-1031.275,147.86],[-1032.083,110.145]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-5.731,1.105],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.904,-4.222],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1052.663,147.999],[-1033.775,144.094],[-1032.083,110.145]]}],"t":120},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.057,150.342],[-1033.487,145.319],[-1032.083,110.145]]}],"t":180},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.057,150.342],[-1032.66,146.876],[-1032.083,110.145]]}],"t":239},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.088,148.744],[-1033.916,143.741],[-1032.083,110.145]]}],"t":299},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.287,150.531],[-1030.193,144.69],[-1032.083,110.145]]}],"t":420},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-5.731,1.105],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.904,-4.222],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1051.851,152.384],[-1031.472,147.959],[-1032.083,110.145]]}],"t":479},{"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.384,151.403],[-1025.3,148.022],[-1032.083,110.145]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Body fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":31,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1021.732,79.759,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1022.249,79.437,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.786],"y":[0.766]},"o":{"x":[0.449],"y":[0]},"s":[-9.418],"t":0},{"i":{"x":[0.612],"y":[1.279]},"o":{"x":[0.2],"y":[0.598]},"s":[1.248],"t":100},{"i":{"x":[0.873],"y":[0.898]},"o":{"x":[0.499],"y":[0.047]},"s":[4.179],"t":175},{"i":{"x":[0.903],"y":[1.418]},"o":{"x":[0.184],"y":[0.649]},"s":[-23.418],"t":267},{"i":{"x":[0],"y":[0.925]},"o":{"x":[0.289],"y":[0.097]},"s":[-29.778],"t":360},{"i":{"x":[0.55],"y":[1]},"o":{"x":[0.283],"y":[-0.336]},"s":[-4.418],"t":389},{"s":[-9.418],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Tail","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.896,-1.878],[-2.215,0.918],[-0.725,2.253],[2.628,6.086]],"o":[[1.228,2.466],[1.896,1.878],[1.995,-0.827],[1.933,-6.005],[0,0]],"v":[[-931.841,14.251],[-925.794,21.795],[-918.992,23.87],[-913.644,18.061],[-915.278,0.896]]}],"t":100},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.935,-2.382],[-2.299,-0.054],[-1.51,1.695],[-0.056,6.357]],"o":[[0.12,2.639],[0.935,2.382],[2.071,0.048],[4.024,-4.517],[0,0]],"v":[[-922.293,20.266],[-919.915,29.228],[-914.754,33.685],[-907.812,30.664],[-902.587,14.977]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.942,41.899],[-901.384,26.93]]}],"t":175},{"i":{"x":0.35,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.715,39.989],[-901.156,25.02]]}],"t":222},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.974,2.157],[6.033,2.748]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-2.597,-5.749],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-927.673,0.611],[-940.404,-11.018]]}],"t":360},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.944,-2.244],[-2.188,0.002],[-1.207,1.598],[0.405,5.595]],"o":[[0.175,2.508],[0.944,2.244],[1.971,-0.002],[3.217,-4.26],[0,0]],"v":[[-927.521,20.989],[-925.051,29.458],[-920.04,33.578],[-914.021,29.875],[-910.545,15.703]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.715,39.989],[-901.156,25.02]]}],"t":389},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.577,-1.736],[-2.339,-0.147],[-0.445,2.032],[2.811,5.103]],"o":[[0.963,2.221],[1.577,1.736],[1.894,0.119],[1.186,-5.415],[0,0]],"v":[[-930.528,11.668],[-926.153,14.886],[-919.03,20.502],[-914.84,14.971],[-917.712,0.093]]}],"t":440},{"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.991,-0.844],[-0.659,0.841],[-0.111,0.583],[1.858,5.501]],"o":[[1.665,3.989],[1.065,0.225],[0.352,-0.449],[1.048,-5.51],[0,0]],"v":[[-963.088,31.387],[-951.239,43.515],[-948.293,42.82],[-947.694,41.188],[-948.438,23.629]]}],"t":100},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.859,-1.281],[-0.746,0.76],[-0.175,0.566],[1.227,5.656]],"o":[[1.205,4.137],[1.03,0.342],[0.398,-0.405],[1.652,-5.342],[0,0]],"v":[[-960.669,28.82],[-949.82,43.542],[-946.823,43.182],[-946.048,41.632],[-944.829,24.154]]}],"t":125},{"i":{"x":0.35,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.796,-1.494],[-0.789,0.72],[-0.206,0.557],[0.921,5.732]],"o":[[0.981,4.209],[1.013,0.399],[0.421,-0.384],[1.946,-5.26],[0,0]],"v":[[-960.671,32.171],[-950.307,48.155],[-947.286,47.957],[-946.426,46.447],[-944.251,29.008]]}],"t":222},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":360},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.863,-1.131],[-0.711,0.778],[-0.153,0.566],[1.414,5.552]],"o":[[1.338,4.05],[1.031,0.302],[0.38,-0.415],[1.446,-5.343],[0,0]],"v":[[-963.005,29.406],[-951.735,43.801],[-948.784,43.339],[-948.071,41.778],[-947.482,24.444]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.796,-1.494],[-0.789,0.72],[-0.206,0.557],[0.921,5.732]],"o":[[0.981,4.209],[1.013,0.399],[0.421,-0.384],[1.946,-5.26],[0,0]],"v":[[-960.671,32.171],[-950.307,48.155],[-947.286,47.957],[-946.426,46.447],[-944.251,29.008]]}],"t":389},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.865,-1.122],[-0.71,0.779],[-0.152,0.566],[1.425,5.548]],"o":[[1.347,4.047],[1.031,0.3],[0.379,-0.416],[1.434,-5.345],[0,0]],"v":[[-962.389,29.732],[-951.098,44.088],[-948.148,43.62],[-947.439,42.058],[-946.887,24.727]]}],"t":411},{"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tail stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.793,-6.973],[7.825,-4.687],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.475,7.931],[-17.784,9.83],[-5.599,10.507],[1.862,9.139],[6.419,2.07],[6.443,-6.19]],"o":[[-6.665,8.023],[-13.516,8.095],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[15.119,-4.211],[14.681,-8.115],[3.057,-5.737],[-1.298,-6.37],[-8.503,-2.742],[-6.552,6.295]],"v":[[-913.983,-3.94],[-935.884,15.433],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-954.71,64.138],[-905.756,45.069],[-871.05,11.89],[-864.477,-14.787],[-876.762,-29.172],[-900.496,-23.687]]}],"t":100},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.806,-1.498],[12.204,-2.842],[20.226,-9.798],[14.416,-11.45],[-4.091,-2.787],[-3.41,3.588],[-28.793,6.62],[-16.146,1.303],[-10.409,2.045],[-5.265,6.43],[2.183,5.599],[7.902,0.967]],"o":[[-9.833,1.363],[-14.927,4.074],[-24.436,11.837],[0,0],[4.091,2.787],[7.645,-8.045],[16.795,-3.826],[15.433,-1.246],[5.684,-1.117],[3.67,-4.482],[-2.892,-7.417],[-8.036,-0.983]],"v":[[-902.522,13.767],[-932.399,19.878],[-989.261,37.393],[-1035.189,65.133],[-1035.866,71.507],[-991.717,79.369],[-955.175,63.419],[-906.595,56.131],[-868.545,54.335],[-852.86,43.273],[-851.321,23.863],[-870.597,11.312]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[19.97,5.88],[15.44,-0.965],[15.928,-6.282],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.873,12.312],[-16.823,-3.387],[-8.747,-3.952],[-8.563,3.696],[-0.71,6.708],[7.379,5.037]],"o":[[-10.447,-3.076],[-15.725,0.983],[-22.31,8.8],[0,0],[4.091,2.787],[-1.433,-11.582],[19.149,-8.773],[12.837,2.584],[5.924,2.677],[5.969,-2.576],[0.94,-8.885],[-7.504,-5.123]],"v":[[-893.909,28.164],[-931.069,25.376],[-986.464,36.902],[-1035.258,64.111],[-1035.934,70.485],[-991.717,79.369],[-959.467,69.379],[-910.841,64.299],[-885.68,78.513],[-859.232,81.227],[-847.831,67.037],[-859.563,43.484]]}],"t":175},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.466,-0.786],[14.333,-1.944],[21.628,-8.358],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.947,5.982],[-20.307,-0.725],[-11.876,0.847],[-6.749,6.438],[1.662,6.537],[8.668,2.164]],"o":[[-13.282,1.233],[-15.612,2.118],[-22.37,8.644],[0,0],[4.091,2.787],[-1.433,-11.582],[17.61,-3.639],[14.223,0.507],[6.484,-0.462],[4.704,-4.487],[-2.201,-8.659],[-8.816,-2.2]],"v":[[-897.988,22.601],[-931.069,25.376],[-989.384,38.424],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.467,69.379],[-907.367,64.847],[-875.835,66.604],[-849.748,57.981],[-844.101,39.927],[-861.37,22.746]]}],"t":222},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.693,-6.245],[10.36,-4.344],[20.804,-7.776],[11.697,-11.071],[-4.091,-2.787],[-0.95,4.519],[-13.965,3.765],[-17.528,7.256],[-8.346,8.983],[-0.316,7.163],[4.904,2.721],[5.92,-4.334]],"o":[[-7.368,5.294],[-12.852,6.82],[-22.468,8.382],[0,0],[4.091,2.787],[4.004,-6.166],[18.461,-4.977],[15.294,-6.331],[5.875,-6.323],[0.221,-4.992],[-6.496,-3.605],[-7.784,5.699]],"v":[[-914.188,4.9],[-939.217,18.61],[-989.758,39.132],[-1027.718,59.133],[-1028.394,65.506],[-996.339,81.354],[-956.136,65.029],[-907.089,48.103],[-870.699,26.01],[-862.75,6.301],[-873.11,-9.611],[-893.917,-9.866]]}],"t":238},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[-2.866,4.035],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[7.173,-10.101],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-1002.022,83.793],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-0.386,-9.057],[3.26,-4.77],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[-3.582,3.416],[-21.918,9.852],[-12.827,22.947],[2.9,11.547],[7.514,5.525],[6.148,-2.774],[0.622,-8.913]],"o":[[0.444,10.42],[-8.889,13.008],[-22.588,8.059],[0,0],[4.091,2.787],[8.91,-8.497],[14.315,-6.434],[8.185,-14.642],[-1.584,-6.305],[-5.237,-3.851],[-8.144,3.674],[-0.633,9.064]],"v":[[-942.641,-15.553],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-1000.689,85.225],[-952.04,59.68],[-909.381,22.995],[-900.983,-32.54],[-913.221,-56.819],[-931.982,-59.238],[-945.896,-39.243]]}],"t":360},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.048,-4.411],[6.901,-3.405],[14.9,-7.746],[11.697,-11.071],[-4.091,-2.787],[-1.668,4.099],[-25.129,8.085],[-15.041,7.902],[-7.745,9.655],[1.913,7.233],[4.539,2.003],[5.515,-2.229]],"o":[[-5.687,4.81],[-13.072,7.749],[-13.612,7.077],[0,0],[4.091,2.787],[9.079,-6.046],[15.82,-5.158],[10.64,-5.59],[3.647,-5.035],[-1.293,-5.134],[-6.013,-2.653],[-7.738,3.128]],"v":[[-923.079,2.755],[-942.197,14.671],[-987.324,37.071],[-1027.718,59.133],[-1028.394,65.506],[-996.591,82.55],[-955.478,62.396],[-901.682,40.717],[-874.213,19.461],[-870.76,-3.352],[-880.31,-15.315],[-898.077,-14.915]]}],"t":369},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.003,-1.313],[9.328,-2.495],[15.013,-6.646],[11.697,-11.071],[-4.091,-2.787],[-0.392,4.555],[-27.269,6.906],[-16.611,2.03],[-12.031,4.89],[-2.515,5.746],[1.819,4.461],[6.327,0.832]],"o":[[-9.773,1.069],[-15.861,4.243],[-14.833,6.566],[0,0],[4.091,2.787],[9.192,-4.412],[16.824,-4.307],[13.081,-1.599],[5.811,-2.362],[1.806,-4.126],[-2.41,-5.908],[-13.2,-1.737]],"v":[[-910.037,14.959],[-938.616,19.691],[-985.394,35.116],[-1027.718,59.133],[-1028.394,65.506],[-993.859,80.767],[-957.77,64.207],[-908.581,54.161],[-869.054,53.365],[-856.392,39.808],[-856.337,25.824],[-870.284,13.944]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[11.752,-0.504],[14.333,-1.944],[21.628,-8.358],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.947,5.982],[-20.307,-0.725],[-11.7,-2.202],[-7.794,5.123],[0.462,6.729],[8.14,3.683]],"o":[[-13.327,0.571],[-15.612,2.118],[-22.37,8.644],[0,0],[4.091,2.787],[-1.433,-11.582],[17.61,-3.639],[14.223,0.507],[7.28,1.37],[5.432,-3.571],[-0.612,-8.913],[-8.278,-3.746]],"v":[[-897.988,22.601],[-931.069,25.376],[-989.384,38.424],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.467,69.379],[-907.367,64.847],[-880.001,68.66],[-852.791,64.856],[-843.997,48.108],[-857.904,28.108]]}],"t":389},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.671,-2.069],[12.21,-3.227],[20.676,-8.288],[8.839,-6.681],[-4.091,-2.787],[-1.364,4.072],[-28.273,7.858],[-18.044,0.564],[-9.814,2.664],[-4.366,6.888],[2.791,5.196],[7.812,0.004]],"o":[[-10.85,1.771],[-14.137,4.63],[-18.956,7.598],[0,0],[4.091,2.787],[4.538,-2.167],[16.715,-4.524],[14.364,-0.449],[5.914,-1.35],[3.043,-4.801],[-3.697,-6.882],[-7.945,-0.004]],"v":[[-904.067,12.1],[-935.877,18.915],[-990.747,37.447],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.183,66.079],[-905.979,55.951],[-870.091,53.225],[-851.723,41.438],[-853.804,20.286],[-874.924,9.497]]}],"t":411},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.458,-5.877],[9.412,-4.917],[20.607,-7.637],[11.697,-11.071],[-4.091,-2.787],[-3.963,2.965],[-27.384,10.331],[-14.681,10.758],[-5.347,8.541],[1.033,7.826],[5.298,2.126],[5.804,-4.846]],"o":[[-6.665,7.138],[-12.193,7.942],[-22.491,8.319],[0,0],[4.091,2.787],[9.949,-7.444],[15.536,-5.691],[12.148,-7.669],[2.919,-4.663],[-0.72,-5.454],[-7.017,-2.816],[-5.903,4.928]],"v":[[-917.202,-3.893],[-940.235,15.246],[-989.848,39.301],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-955.341,63.99],[-899.576,38.114],[-875.412,14.704],[-869.638,-9.2],[-879.004,-23.238],[-901.65,-20.711]]}],"t":440},{"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.08,0.103]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Tail","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-901.937,29.546]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-936.937,29.546]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tail","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":32,"ip":0,"ks":{"a":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[-884.232,101.187,0],"t":45.906,"ti":[0,0,0],"to":[0,0,0]},{"s":[-884.232,101.187,0],"t":271.453125}]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-923.191,58.706,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-87.378],"t":0},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-62.378],"t":59.881},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-79.378],"t":119.76},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-59.378],"t":179.637},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-81.378],"t":239.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-55.378],"t":299.396},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-79.378],"t":359.277},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-52.378],"t":419.156},{"s":[-87.378],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back fin","op":480,"parent":33,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.96,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-1.845,-2.205],[1.796,6.759],[3.595,3.746]],"o":[[-1.095,-0.319],[-0.681,8.498],[1.627,1.231],[4.546,3.696],[3.071,3.354],[3.171,2.472],[-1.059,-3.719],[-2.226,-2.32]],"v":[[-872.735,98.118],[-879.036,100.623],[-886.904,117.446],[-870.264,125.203],[-861.487,137.822],[-853.611,149.084],[-854.009,124.884],[-861.491,106.076]]}],"t":-19},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.078,-4.109],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[5.513,4.461],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-869.833,85.277],[-874.677,90.115],[-879.407,101.286],[-862.238,105.681],[-853.655,112.26],[-835.53,127.19],[-843.868,103.291],[-857.756,90.05]]}],"t":-8},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.139,2.239],[1.257,-5.634],[3.656,-7.718],[-4.572,-2.679],[-3.282,-3.243],[-0.347,-0.269],[3.277,7.105],[4.043,4.4]],"o":[[-2.12,-0.918],[-1.289,8.129],[1.627,1.231],[3.85,2.24],[6.035,5.965],[0.139,0.25],[-2.209,-5.713],[-4.19,-4.511]],"v":[[-869.168,82.315],[-875.062,84.841],[-879.662,100.158],[-866.132,104.583],[-854.844,112.58],[-838.544,126.374],[-845.011,108.446],[-854.067,93.052]]}],"t":11.977},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.751,-2.506],[0,0],[1.661,6.389],[3.962,4.181]],"o":[[-2.11,-0.958],[-1.179,8.066],[1.627,1.231],[3.809,2.11],[6.09,4.069],[0,0],[-1.575,-6.056],[-4.604,-4.86]],"v":[[-870.392,82.634],[-876.074,85.259],[-880.179,100.693],[-866.812,104.988],[-855.554,112.497],[-837.29,124.714],[-845.116,109.312],[-854.462,93.812]]}],"t":15.969},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.155,1.287],[0.968,-5.652],[3.027,-7.985],[-4.846,-1.589],[-4.52,-1.258],[0.909,0.167],[3.411,5.088],[4.388,3.113]],"o":[[-2.2,-0.525],[-0.985,8.208],[1.72,1.097],[4.289,1.341],[7.016,2.06],[-2.741,-0.504],[-2.935,-4.65],[-4.843,-3.512]],"v":[[-873.179,84.575],[-878.85,87.591],[-882.671,103.307],[-868.814,105.908],[-855.249,109.998],[-834.016,116.985],[-845.812,104.178],[-857.382,92.154]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.735,0.576],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.366,-1.191],[2.38,0.638],[5.212,3.603],[4.397,2.242]],"o":[[-2.218,-0.27],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[10.528,2.336],[-7.177,-1.925],[-4.185,-2.893],[-4.449,-2.269]],"v":[[-875.808,96.19],[-882.053,98.622],[-888.723,113.856],[-874.724,116.57],[-858.303,117.823],[-834.804,122.88],[-849.373,109.673],[-861.984,101.076]]}],"t":31.936},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.831,1.159],[1.803,-5.371],[4.959,-6.597],[-5.834,-0.058],[-4.895,0.501],[7.618,5.671],[9.798,2.654],[4.953,2.346]],"o":[[-4.573,-1.384],[-2.749,8.096],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-4.779,-3.558],[-5.408,-1.465],[-3.617,-1.713]],"v":[[-877.951,106.972],[-887.544,110.313],[-896.099,124.352],[-876.311,128.393],[-858.677,130.115],[-828.723,129.578],[-849.957,116.265],[-866.471,111.914]]}],"t":45.906},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.211,0.989],[2.267,-5.175],[4.658,-6.96],[-5.057,-1.488],[-5.306,-2.473],[1.24,8.152],[6.016,4.738],[4.594,3.671]],"o":[[-1.919,-0.714],[-3.443,7.858],[1.547,1.331],[5.83,1.881],[6.743,1.883],[-0.702,-5.341],[-4.043,-3.888],[-3.525,-2.817]],"v":[[-880.077,112.026],[-888.261,113.975],[-896.3,128.069],[-879.373,133.415],[-863.58,140.137],[-838.574,144.742],[-854.905,129.952],[-868.008,118.833]]}],"t":53.891},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.241,1.129],[2.71,-4.946],[4.65,-7.163],[-4.312,-2.6],[-5.267,-4.859],[-3.944,9.409],[2.895,6.067],[4.152,4.7]],"o":[[0,0],[-4.134,7.546],[1.449,1.437],[5.774,3.481],[4.504,4.155],[2.636,-6.288],[-2.701,-5.661],[-3.286,-3.72]],"v":[[-880.569,113.611],[-887.633,114.472],[-895.655,128.493],[-881.077,134.949],[-867.279,145.602],[-846.52,154.156],[-858.737,138.325],[-868.386,122.173]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.581,1.911],[2.028,-5.263],[4.371,-6.996],[-4.74,-4.98],[-3.119,-4.279],[-6.064,3.449],[2.267,8.341],[5.2,6.121]],"o":[[-2.657,-1.109],[-3.094,8.029],[1.627,1.231],[4.009,4.212],[4.74,6.504],[6.112,-3.476],[-2.206,-8.113],[-3.124,-3.677]],"v":[[-877.585,111.21],[-887.06,110.135],[-895.416,125.614],[-878.357,132.162],[-867.94,146.486],[-852.783,165.837],[-853.223,139.886],[-865.477,119.14]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.636,1.743],[2.233,-5.179],[4.746,-6.94],[-4.06,-4.164],[-3.719,-5.084],[-6.36,-3.172],[2.315,9.663],[5.225,7.089]],"o":[[-2.219,-0.864],[-3.406,7.901],[1.577,1.294],[4.093,4.13],[4.053,5.643],[4.963,1.421],[-1.674,-6.989],[-2.909,-3.946]],"v":[[-877.436,104.101],[-884.997,104.824],[-893.266,119.739],[-878.63,125.452],[-867.691,139.011],[-855.411,155.535],[-856.203,131.916],[-865.163,112.408]]}],"t":83.832},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.753,1.431],[2.175,-5.204],[4.746,-7.084],[-3.737,-3.375],[-4.358,-5.55],[-6.572,-7.885],[2.752,10.554],[5.492,7.621]],"o":[[-1.932,-0.582],[-3.318,7.938],[1.592,1.277],[4.325,3.906],[3.785,4.82],[4.057,4.868],[-1.582,-6.069],[-2.902,-4.027]],"v":[[-877.48,97.907],[-883.617,100.325],[-891.208,115.156],[-878.136,119.602],[-866.241,132.159],[-855.387,146.009],[-857.447,124.158],[-864.753,106.006]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.872,1.106],[1.854,-5.327],[3.883,-7.581],[-3.936,-3.14],[-4.689,-5.274],[-8.102,-6.823],[6.547,9.84],[5.947,7.271]],"o":[[-2.217,-0.503],[-2.828,8.126],[1.667,1.177],[4.555,3.635],[4.072,4.58],[4.794,4.077],[-3.205,-5.149],[-3.142,-3.842]],"v":[[-871.922,86.243],[-877.808,89.978],[-883.975,105.193],[-869.663,108.98],[-857.829,120.318],[-845.06,131.268],[-847.556,112.028],[-858.128,94.446]]}],"t":103.791},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.094,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-867.865,84.454],[-874.752,86.247],[-880.838,101.211],[-866.986,106.765],[-857.051,116.633],[-841.247,125.705],[-842.18,109.22],[-854.651,91.32]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,1.328],[1.674,-5.433],[3.656,-7.718],[-3.953,-3.022],[-4.074,-3.552],[-4.554,-3.193],[5.753,7.978],[5.007,6.654]],"o":[[-1.055,-0.479],[-2.552,8.134],[3.442,0.999],[5.02,3.839],[4.246,3.702],[2.594,1.819],[-3.036,-5.214],[-2.964,-3.947]],"v":[[-869.614,85.537],[-876.369,87.49],[-881.924,102.83],[-869.736,106.41],[-855.721,119.217],[-843.252,130.308],[-845.905,112.313],[-855.909,94.886]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.224,2.416],[1.731,-5.469],[4.1,-7.491],[-2.985,-3.958],[-2.806,-3.411],[-1.09,-0.863],[2.284,6.932],[4.121,6.3]],"o":[[-1.794,-0.944],[-2.621,8.074],[4.748,1.103],[2.875,3.812],[3.767,4.579],[0.621,0.492],[-1.596,-5.949],[-2.69,-4.113]],"v":[[-870.783,87.645],[-877.548,89.326],[-883.609,104.621],[-871.487,112.015],[-861.162,123.927],[-848.771,138.252],[-850.242,117.175],[-857.386,99.657]]}],"t":133.73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.157,2.494],[1.457,-5.569],[3.843,-7.626],[-4.36,-2.557],[-2.695,-3.01],[0,0],[1.505,6.428],[4.166,5.948]],"o":[[-2.086,-1.009],[-2.211,8.188],[5.237,0.894],[3.756,2.203],[3.937,4.398],[0,0],[-1.426,-6.093],[-2.816,-4.02]],"v":[[-871.915,88.622],[-878.588,90.573],[-883.279,106.515],[-869.152,113.374],[-859.952,121.858],[-844.285,135.856],[-850.174,118.281],[-857.295,101.149]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.125,1.61],[1.064,-5.637],[3.258,-7.386],[-4.697,-1.851],[-3.49,-2.122],[0.609,0.091],[2.822,5.416],[4.858,5.064]],"o":[[-2.191,-0.65],[-1.633,8.319],[4.396,0.682],[4.122,1.573],[5.664,3.275],[-1.838,-0.273],[-2.917,-5.252],[-3.3,-3.435]],"v":[[-873.82,89.978],[-879.654,92.845],[-884.732,108.41],[-869.741,111.822],[-858.514,118.322],[-840.459,129.933],[-849.436,113.161],[-859.375,99.242]]}],"t":139.721},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.033,0.853],[0.807,-5.671],[2.859,-7.054],[-4.973,-1.252],[-3.992,-1.87],[1.219,0.181],[3.983,4.443],[5.406,4.284]],"o":[[-2.271,-0.342],[-1.256,8.4],[3.534,0.599],[4.435,1.036],[8.322,3.898],[-3.675,-0.546],[-4.259,-4.447],[-3.686,-2.921]],"v":[[-875.997,91.357],[-881.04,94.977],[-886.171,110.392],[-871.592,113.359],[-858.915,117.602],[-837.692,125.918],[-850.035,110.121],[-861.302,98.053]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.565,0.666],[1.803,-5.41],[3.972,-7.56],[-5.122,-1.387],[-5.485,-0.358],[2.351,0.736],[5.094,3.561],[5.272,4.138]],"o":[[-2.312,-0.337],[-2.739,8.057],[1.575,1.298],[4.722,1.157],[8.045,0.525],[-7.091,-2.22],[-5.712,-3.993],[-3.629,-2.848]],"v":[[-877.732,99.674],[-884.667,102.091],[-891.366,116.791],[-877.491,120.081],[-861.135,122.011],[-836.998,124.6],[-852.786,115.148],[-864.472,105.057]]}],"t":151.693},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.984,0.38],[2.375,-5.144],[4.446,-7.291],[-5.795,-0.67],[-4.92,-0.016],[6.98,6.44],[8.308,0.844],[4.679,2.853]],"o":[[-2.484,-0.237],[-3.584,7.763],[1.489,1.395],[5.576,0.544],[9.371,-0.308],[-4.379,-4.04],[-5.574,-0.567],[-3.417,-2.083]],"v":[[-880.24,110.098],[-887.263,112.684],[-894.887,126.927],[-880.554,129.777],[-861.962,129.924],[-832.407,123.339],[-854.008,119.081],[-869.039,114.422]]}],"t":165.666},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.397,1.116],[2.535,-5.038],[4.397,-7.321],[-4.4,-2.448],[-5.433,-4.672],[-3.613,9.541],[3.105,5.962],[4.314,4.552]],"o":[[-3.146,-0.651],[-3.868,7.686],[1.498,1.385],[5.892,3.277],[4.646,3.995],[2.414,-6.376],[-2.897,-5.563],[-3.414,-3.603]],"v":[[-878.291,115.102],[-887.793,116.723],[-895.009,130.282],[-878.387,136.824],[-864.225,146.989],[-843.18,154.811],[-855.942,139.418],[-866.15,123.612]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.617,1.822],[1.76,-4.225],[5.137,-6.081],[-4.048,-3.443],[-3.1,-4.432],[-8.892,2.329],[2.555,7.901],[4.698,6.349]],"o":[[-1.656,-0.653],[-3.309,7.943],[1.509,1.374],[4.04,3.436],[4.246,6.07],[6.802,-1.781],[-2.161,-6.683],[-3.016,-3.909]],"v":[[-881.012,110.281],[-886.815,110.988],[-896.013,125.478],[-882.488,130.514],[-873.063,144.997],[-857.731,162.515],[-856.734,140.021],[-869.037,118.002]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.785,2.52],[1.429,-4.179],[4.74,-6.769],[-3.703,-3.578],[-3.576,-5.248],[-7.245,-3.795],[2.207,9.523],[4.812,7.304]],"o":[[-0.707,-0.286],[-2.9,8.481],[1.497,1.387],[4.026,3.889],[3.759,5.517],[5.037,2.201],[-1.558,-6.395],[-2.769,-4.099]],"v":[[-879.802,104.761],[-886.308,105.673],[-894.61,120.014],[-881.651,125.188],[-871.188,139.709],[-859.174,155.064],[-858.952,132.889],[-867.563,113.286]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.703,2.946],[1.141,-4.158],[4.327,-7.362],[-3.525,-3.595],[-4.013,-5.805],[-6.081,-8.27],[2.106,10.702],[5.019,7.94]],"o":[[0,0],[-2.451,8.932],[1.511,1.371],[4.08,4.161],[3.485,5.041],[3.754,5.105],[-1.211,-6.154],[-2.652,-4.196]],"v":[[-877.896,98.756],[-884.915,99.93],[-892.306,114.295],[-879.684,119.357],[-868.203,133.73],[-858.425,147.266],[-859.154,125.33],[-865.317,107.678]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.809,1.725],[1.112,-4.436],[4.03,-6.827],[-3.838,-3.259],[-5.137,-4.767],[-8.044,-6.979],[6.697,9.973],[5.722,7.449]],"o":[[-1.227,-0.307],[-2.113,8.64],[1.63,1.227],[4.442,3.772],[4.179,3.932],[4.734,4.146],[-3.229,-5.134],[-3.024,-3.936]],"v":[[-872.802,87.265],[-878.361,89.643],[-884.901,104.329],[-871.517,108.096],[-858.57,120.923],[-846.116,131.515],[-847.907,112.561],[-858.196,95.645]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.705,1.58],[1.782,-4.477],[4.837,-5.676],[-3.568,-3.553],[-5.32,-4.637],[-8.592,-7.067],[9.081,10.294],[5.115,7.879]],"o":[[-2.249,-0.755],[-3.183,7.994],[1.528,1.353],[4.13,4.112],[4.125,3.595],[4.894,4.026],[-4.149,-4.703],[-2.703,-4.163]],"v":[[-869.875,82.415],[-874.489,84.934],[-882.231,101.343],[-868.87,106.075],[-856.773,119.518],[-843.765,129.424],[-843.429,112.916],[-854.57,95.149]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.345,88.37],[-879.969,90.483],[-886.055,105.447],[-874.971,109.629],[-863.443,120.007],[-844.56,136.594],[-852.496,115.332],[-860.209,99.45]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.084,1.698],[2.084,-5.308],[4.363,-7.341],[-5.042,-1.654],[-5.459,-0.645],[2.31,0.858],[4.497,4.416],[5.522,3.798]],"o":[[-2.216,-0.74],[-3.158,7.902],[1.505,1.378],[4.654,1.403],[8.006,0.946],[-6.965,-2.589],[-4.973,-4.883],[-4.62,-3.178]],"v":[[-880.406,100.987],[-888.399,104.503],[-895.859,118.831],[-882.176,122.844],[-865.944,125.63],[-841.743,131.588],[-855.402,116.69],[-868.097,106.548]]}],"t":271.453},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,0.32],[1.438,-3.57],[4.362,-7.341],[-4.826,-1.058],[-4.92,0.04],[4.244,8.496],[7.997,5.014],[5.749,2.659]],"o":[[-3.262,-0.181],[-3.195,7.93],[1.505,1.378],[5.966,1.308],[9.367,-0.415],[-2.633,-5.271],[-4.747,-2.976],[-4.323,-2]],"v":[[-887.35,114.168],[-893.294,119.551],[-902.209,133.652],[-888.013,138.459],[-869.836,140.752],[-838.634,138.719],[-857.779,127.39],[-874.162,117.621]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.538,2.011],[2.889,-4.844],[4.909,-6.988],[-4.214,-2.756],[-5.085,-5.049],[-4.286,9.258],[2.671,6.169],[3.977,4.849]],"o":[[-2.169,-0.961],[-4.408,7.389],[1.395,1.489],[5.642,3.69],[4.349,4.318],[2.864,-6.187],[-2.492,-5.756],[-3.148,-3.838]],"v":[[-884.762,124.356],[-892.198,126.033],[-900.728,139.751],[-887.13,144.959],[-872.978,159.674],[-853.599,170.779],[-864.194,150.929],[-873.246,134.434]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.436,2.227],[1.673,-3.209],[5.239,-6.744],[-3.52,-3.523],[-3.702,-6.399],[-7.32,5.56],[1.531,8.161],[3.855,6.894]],"o":[[-2.12,-1.064],[-3.977,7.63],[1.322,1.554],[4.419,4.328],[3.042,5.258],[4.805,-3.65],[-1.295,-6.903],[-2.496,-4.261]],"v":[[-886.776,118.064],[-893.911,117.969],[-903.008,132.509],[-889.028,140.174],[-880.222,153.912],[-864.864,172.491],[-865.892,151.919],[-875.302,128.516]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.568,1.941],[2.141,-5.218],[4.823,-6.261],[-3.281,-3.819],[-3.624,-6.056],[-5.525,-8.651],[1.4,10.817],[4.487,8.252]],"o":[[-2.183,-0.928],[-2.234,5.444],[1.418,1.467],[3.798,4.42],[3.147,5.258],[3.411,5.34],[-0.805,-6.22],[-2.371,-4.361]],"v":[[-882.26,103.749],[-889.868,105.459],[-898.185,119.307],[-885.95,125.162],[-875.654,139.159],[-866.54,154.43],[-865.829,132.493],[-871.14,114.593]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.486,0.901],[1.787,-5.345],[3.907,-7.193],[-3.743,-3.364],[-4.37,-5.538],[-7.666,-7.248],[5.945,10.1],[5.508,7.604]],"o":[[-1.208,-0.375],[-2.313,6.764],[1.594,1.272],[4.332,3.894],[3.794,4.808],[4.528,4.333],[-2.873,-5.284],[-2.91,-4.018]],"v":[[-878.128,92.455],[-885.282,94.627],[-891.748,109.423],[-877.785,113.909],[-866.614,125.959],[-854.525,137.676],[-855.808,118.307],[-865.459,100.777]]}],"t":343.309},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.235,1.165],[2.738,-4.931],[4.69,-7.136],[-3.34,-3.768],[-4.986,-4.994],[-8.136,-7.588],[8.423,10.838],[4.615,8.182]],"o":[[0,0],[-4.176,7.523],[1.441,1.445],[3.866,4.36],[4.463,4.469],[4.634,4.322],[-3.849,-4.952],[-2.439,-4.323]],"v":[[-873.287,90.33],[-880.355,91.151],[-888.456,105.128],[-875.628,111.27],[-865.01,124.177],[-852.643,134.872],[-851.282,118.417],[-861.152,98.961]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-2.89,-2.824],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[6.63,6.48],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-879.624,91.614],[-886.247,93.727],[-892.333,108.691],[-878.966,112.986],[-869.825,120.733],[-850.148,139.907],[-858.775,118.575],[-866.488,102.693]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.087,1.688],[2.074,-5.312],[4.348,-7.35],[-5.045,-1.644],[-5.287,-1.504],[2.311,0.854],[6.394,7.64],[5.53,3.787]],"o":[[-2.218,-0.736],[-3.142,7.908],[1.507,1.375],[4.657,1.394],[8.818,2.509],[-6.97,-2.575],[-4.473,-5.345],[-4.627,-3.169]],"v":[[-884.609,102.06],[-892.734,105.935],[-900.166,120.278],[-886.475,124.264],[-871.517,127.158],[-843.682,140.946],[-859.335,121.055],[-872.956,108.08]]}],"t":391.213},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.828,1.167],[1.234,-3.646],[3.939,-7.577],[-4.798,-0.715],[-4.91,0.319],[1.331,9.403],[10.166,1.66],[4.863,2.527]],"o":[[-3.125,-0.953],[-2.74,8.099],[1.58,1.291],[6.508,0.969],[9.328,-0.946],[-0.94,-6.643],[-5.529,-0.903],[-3.551,-1.846]],"v":[[-889.385,112.483],[-894.823,116.419],[-902.924,131.003],[-888.82,134.592],[-869.135,136.036],[-842.719,131.381],[-862.674,120.392],[-877.988,116.767]]}],"t":405.184},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.481,-5.673],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-3.877,8.865],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-887.941,117.822],[-894.111,120.487],[-901.964,135.89],[-883.837,142.71],[-871.559,160.47],[-863.841,169.224],[-865.685,147.466],[-877.879,124.509]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.046,1.808],[0.622,-6.073],[4.047,-7.52],[-4.811,-7.814],[-2.957,-3.476],[-2.761,3.948],[1.22,6.36],[3.289,2.864]],"o":[[-0.588,-0.205],[-0.872,8.512],[1.562,1.313],[1.842,2.992],[2.679,3.149],[4.715,-6.74],[-0.585,-2.74],[-2.079,-1.81]],"v":[[-890.089,112.861],[-896.453,115.116],[-904.32,130.711],[-887.402,138.919],[-878.784,153.753],[-868.981,163.895],[-870.409,141.781],[-878.961,120.621]]}],"t":431.133},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.959,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-3.502,4.709],[3.765,9.514],[3.595,3.746]],"o":[[-1.095,-0.319],[-3.661,7.628],[1.627,1.231],[4.546,3.696],[3.071,3.354],[5.316,-7.15],[-2.441,-6.168],[-2.226,-2.32]],"v":[[-887.439,103.592],[-891.69,105.733],[-901.608,122.921],[-884.968,130.677],[-874.839,140.755],[-862.625,153.672],[-865.692,128.452],[-876.195,111.55]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.771,5.288],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[6.22,-5.7],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-874.674,84.871],[-879.518,89.709],[-884.248,100.879],[-869.707,106.45],[-860.198,114.556],[-840.371,126.784],[-848.709,102.885],[-862.597,89.643]]}],"t":463.068},{"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front fin top","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.158,1.019],[3.431,9.602],[8.969,19.033],[4.472,10.733],[20.656,1.218],[0,0],[2.145,-10.296],[4.05,-4.683],[-5.203,-6.766],[-3.87,-6.281],[-3.693,-10.053],[-2.456,-11.66],[-6.719,-2.886]],"o":[[10.011,-0.805],[-6.46,-18.081],[-5.389,-11.216],[-6.545,-16.129],[-8.921,-0.526],[4.113,7.436],[-0.966,4.637],[5.79,1.866],[7.232,9.406],[6.786,11.129],[3.578,9.739],[1.399,6.639],[6.364,2.733]],"v":[[-794.524,222.695],[-794.83,188.816],[-823.464,138.836],[-837.033,104.682],[-863.242,71.567],[-880.185,76.361],[-879.656,102.432],[-887.494,117.578],[-870.533,125.762],[-854.416,147.446],[-839.332,175.815],[-832.847,202.257],[-814.975,219.017]]}],"t":-19},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-823.342,226.507],[-805.503,189.548],[-817.853,128.155],[-834.021,94.098],[-865.187,62.275],[-880.847,66.829],[-878.149,95.818],[-885.032,111.421],[-867.597,118.537],[-849.625,139.964],[-838.815,169.257],[-853.438,203.188],[-841.768,217.818]]}],"t":-15},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.173,-0.307],[-0.292,20.456],[12.833,18.632],[6.944,9.653],[20.56,-2.336],[0,0],[0.351,-10.511],[3.188,-5.308],[-6.284,-5.775],[-5.113,-5.3],[0.694,-11.687],[-6.003,-10.862],[-6.632,-3.389]],"o":[[13.08,0.502],[0.365,-25.597],[-7.783,-11.107],[-9.824,-13.657],[-8.879,1.009],[5.325,6.622],[-0.158,4.734],[6.024,0.847],[8.736,8.029],[10.089,10.333],[-1.22,20.54],[4.157,7.523],[5.697,2.633]],"v":[[-810.961,203.449],[-790.205,171.167],[-810.462,110.241],[-832.201,79.712],[-866.672,51.503],[-880.017,56.34],[-874.153,84.858],[-879.282,101.122],[-861.171,106.281],[-838.635,124.239],[-822.786,152.996],[-844.395,182.368],[-826.083,199.328]]}],"t":-8},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-812.7,208.673],[-794.269,182.301],[-811.792,115.203],[-832.435,83.988],[-863.601,52.165],[-875.265,54.124],[-872.567,83.113],[-879.451,98.716],[-862.015,105.832],[-838.78,124.894],[-822.531,161.922],[-844.855,196.789],[-823.956,206.411]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.89,2.029],[8.663,12.792],[15.292,14.622],[6.578,9.906],[20.633,-1.567],[0,0],[0.744,-10.491],[3.385,-5.185],[-6.064,-6.006],[-5.439,-5.009],[-13.943,-17.582],[-9.938,1.212],[-3.61,0.603]],"o":[[7.576,-3.952],[-13.25,-15.548],[-10.238,-9.746],[-9.307,-14.015],[-8.911,0.677],[5.074,6.817],[-0.335,4.725],[5.988,1.071],[8.43,8.35],[11.429,10.525],[13.094,16.511],[7.318,-0.893],[4.328,-0.723]],"v":[[-763.524,181.686],[-765.566,155.136],[-809.99,109.982],[-832.845,80.347],[-866.237,50.87],[-877.728,53.669],[-872.934,82.387],[-878.667,98.448],[-861.269,105.413],[-837.955,124.608],[-802.512,151.864],[-796.425,190.349],[-785.619,188.405]]}],"t":7.984},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.296,4.464],[10.982,5.579],[11.967,14.426],[5.084,10.749],[20.55,-2.419],[0,0],[0.309,-10.513],[3.167,-5.32],[-6.307,-5.75],[-5.642,-4.78],[-10.522,-5.134],[-12.44,-2.874],[-2.337,2.185]],"o":[[4.53,-6.136],[-22.823,-11.595],[-8.812,-10.623],[-7.191,-15.204],[-8.875,1.045],[5.352,6.601],[-0.139,4.734],[6.027,0.823],[8.768,7.993],[11.855,10.043],[10.194,4.974],[6.467,1.494],[5.578,-5.214]],"v":[[-743.782,164.877],[-779.488,148.365],[-820.685,110.863],[-835.426,79.917],[-870.01,51.847],[-881.375,55.12],[-875.397,83.614],[-880.46,99.899],[-863.135,107.002],[-839.919,126.656],[-796.797,154.702],[-757.654,167.969],[-744.989,167.114]]}],"t":13.971},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.402,4.036],[10.008,-1.427],[14.217,10.782],[8.582,9.116],[19.203,-3.47],[0,0],[-0.105,-10.517],[2.955,-5.441],[-6.65,-2.551],[-7.612,-2.689],[-15.628,-2.233],[-10.783,2.975],[-0.778,3.07]],"o":[[1.27,-12.753],[-16.413,2.34],[-9.154,-6.858],[-9.652,-11.231],[-8.755,1.667],[5.608,6.385],[0.047,4.736],[6.055,0.585],[10.619,3.227],[16.169,4.826],[18.942,2.707],[5.72,-0.894],[0.458,-4.626]],"v":[[-737.576,104.15],[-767.578,108.572],[-818.753,96.357],[-839.319,73.254],[-874.29,55.142],[-885.74,59.377],[-878.645,87.614],[-883.063,104.086],[-862.93,107.386],[-837.5,115.892],[-791.62,127.641],[-745.342,122.895],[-737.736,116.316]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.944,6.464],[13.571,-7.716],[13.942,10.804],[9.775,9.978],[18.347,0.16],[0,0],[2.116,-10.302],[4.036,-4.695],[-6.702,-1.041],[-9.014,-2.789],[-15.84,-2.29],[-10.578,6.241],[-0.138,3.924]],"o":[[-1.103,-9.116],[-16.59,9.433],[-8.154,-5.287],[-9.667,-9.814],[-8.897,0.065],[4.134,7.425],[-0.953,4.64],[5.795,1.849],[12.138,1.405],[19.628,4.321],[25.519,1.46],[5.446,-1.921],[-0.161,-5.662]],"v":[[-735.707,91.387],[-757.985,103.882],[-818.761,102.45],[-840.032,81.631],[-867.701,66.473],[-883.38,72.032],[-882.962,96.358],[-890.756,111.526],[-868.63,116.492],[-841.986,120.49],[-794.891,127.758],[-738.687,118.193],[-733.663,107.201]]}],"t":29.939},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.052,6.512],[14.417,-9.682],[12.293,8.157],[8.629,7.928],[9.682,0.843],[0,0],[3.307,-9.984],[4.558,-4.191],[-7.232,-0.733],[-8.057,-1.635],[-13.506,0.02],[-14.983,11.8],[0.399,3.96]],"o":[[-3.925,-8.95],[-16.771,11.263],[-8.587,-4.208],[-8.746,-7.864],[-5.796,-0.505],[3.237,7.857],[-1.489,4.496],[5.539,2.514],[14.22,0.875],[20.323,1.629],[28.507,-4.155],[5.605,-4.111],[-1.023,-6.439]],"v":[[-744.998,80.924],[-764.37,105.153],[-824.05,110.429],[-844.23,93.454],[-868.543,81.369],[-885.715,84.496],[-887.519,110.357],[-897.034,124.51],[-871.32,130.021],[-842.577,131.541],[-795.615,130.871],[-742.789,113.869],[-738.875,98.019]]}],"t":45.906},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.902,4.872],[8.322,-2.224],[12.785,10.871],[6.171,9.353],[18.608,1.344],[0,0],[2.608,-10.189],[4.257,-4.496],[-6.725,-3.119],[-7.379,-3.404],[-11.374,-2.012],[-19.659,2.886],[-2.976,2.932]],"o":[[1.334,-6.166],[-20.034,5.354],[-8.254,-6.171],[-6.813,-10.965],[-8.89,-0.504],[3.773,7.614],[-1.174,4.589],[5.7,2.125],[12.152,4.625],[13.341,4.439],[17.13,3.03],[4.657,-0.684],[2.915,-4.613]],"v":[[-735.604,127.886],[-758.791,134.377],[-827.949,128.154],[-845.962,103.756],[-873.521,82.237],[-888.804,84.776],[-888.483,113.588],[-896.996,128.365],[-874.568,135.153],[-849.45,145.062],[-815.946,153.906],[-756.441,150.411],[-744.199,143.375]]}],"t":53.891},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.174,3.841],[8.538,1.708],[12.848,13.468],[4.008,10.856],[20.595,2.005],[0,0],[2.537,-10.207],[4.226,-4.526],[-6.357,-5.241],[-6.836,-5.103],[-8.558,-5.687],[-11.847,-3.196],[-5.696,2.228]],"o":[[5.705,-4.338],[-19.613,-3.925],[-7.858,-8.041],[-5.066,-13.724],[-8.894,-0.866],[3.826,7.588],[-1.142,4.597],[5.715,2.085],[10.639,8.102],[8.109,7.547],[9.3,5.596],[6.047,1.631],[6.177,-3.351]],"v":[[-754.735,174.215],[-772.787,165.629],[-829.317,143.001],[-845.077,112.066],[-872.099,83.249],[-887.786,87.351],[-887.958,114.68],[-896.368,129.516],[-876.582,138.468],[-854.086,156.005],[-830.429,174.256],[-794.457,189.376],[-775.142,188.991]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.556,6.098],[10.589,5.962],[10.657,16.34],[4.11,10.847],[20.608,1.86],[0,0],[2.465,-10.224],[4.194,-4.555],[-5.86,-5.808],[-5.272,-5.727],[-5.988,-7.895],[-7.872,-5.853],[-6.153,-0.413]],"o":[[4.716,-5.176],[-16.142,-9.09],[-6.476,-9.682],[-5.602,-15.007],[-8.9,-0.803],[3.879,7.561],[-1.11,4.605],[5.729,2.045],[8.528,7.848],[7.299,9.412],[6.306,7.688],[5.392,4.009],[6.215,-0.232]],"v":[[-776.005,200.032],[-789.714,183.355],[-831.59,146.816],[-845.828,114.124],[-872.694,81.927],[-888.514,84.679],[-888.525,113.794],[-896.831,128.689],[-878.229,136.895],[-859.531,157.226],[-840.542,180.68],[-819.673,201.429],[-801.346,209.823]]}],"t":67.863},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.177,0.874],[3.236,9.669],[8.584,19.21],[4.255,10.821],[20.628,1.634],[0,0],[2.353,-10.251],[4.144,-4.601],[-5.396,-6.361],[-3.742,-6.358],[-3.49,-10.126],[-2.221,-11.707],[-6.659,-3.021]],"o":[[10.025,-0.603],[-6.094,-18.208],[-5.162,-11.322],[-6.219,-16.258],[-8.908,-0.706],[3.962,7.518],[-1.059,4.616],[5.751,1.982],[6.445,7.598],[6.56,11.263],[3.38,9.809],[1.264,6.666],[6.308,2.861]],"v":[[-805.178,231.838],[-804.8,197.96],[-832.421,147.413],[-845.299,112.992],[-872.196,77.517],[-888.176,80.77],[-887.868,109.883],[-896.009,124.868],[-878.573,132.277],[-863.54,155.397],[-849.031,184.064],[-843.081,210.632],[-825.55,227.749]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.868,-2.441],[-4.005,21.634],[7.836,22.24],[5.161,10.712],[20.653,1.27],[0,0],[2.172,-10.29],[4.062,-4.673],[-5.185,-6.779],[-3.599,-6.459],[2.714,-11.389],[-5.071,-13.076],[-5.992,-6.637]],"o":[[13.538,3.726],[4.66,-25.172],[-4.356,-12.363],[-7.303,-15.156],[-8.919,-0.549],[4.094,7.447],[-0.978,4.634],[5.785,1.88],[7.208,9.424],[6.617,11.874],[-4.769,20.016],[2.757,7.11],[4.432,4.909]],"v":[[-839.302,239.051],[-819.115,203.32],[-827.478,141.258],[-841.415,106.229],[-870.462,72.461],[-886.383,75.995],[-885.562,105.098],[-893.437,120.224],[-876.498,128.45],[-859.946,150.993],[-851.048,180.922],[-867.831,213.838],[-857.129,229.191]]}],"t":83.832},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.9,-2.32],[-3.712,21.686],[8.137,22.132],[5.306,10.641],[20.668,0.99],[0,0],[2.032,-10.319],[3.998,-4.728],[-5.277,-6.708],[-3.687,-6.41],[2.559,-11.424],[-5.247,-13.007],[-6.081,-6.555]],"o":[[13.587,3.542],[4.319,-25.233],[-4.523,-12.303],[-7.507,-15.056],[-8.926,-0.428],[4.194,7.391],[-0.915,4.647],[5.81,1.802],[7.335,9.326],[6.777,11.783],[-4.498,20.078],[2.853,7.072],[4.498,4.849]],"v":[[-835.394,233.194],[-815.693,197.194],[-824.896,135.251],[-839.305,100.413],[-868.807,67.042],[-884.678,70.791],[-883.463,99.88],[-891.134,115.112],[-874.084,123.108],[-857.228,145.424],[-847.927,175.23],[-864.262,208.37],[-853.353,223.577]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.121,-1.021],[-1.884,20.371],[11.343,19.575],[6.171,10.164],[20.68,-0.728],[0,0],[1.169,-10.452],[3.592,-5.043],[-5.815,-6.247],[-4.684,-5.682],[1.603,-11.597],[-5.139,-11.297],[-6.348,-3.896]],"o":[[13.001,1.519],[2.357,-25.491],[-6.895,-11.679],[-8.731,-14.381],[-8.93,0.314],[4.793,7.017],[-0.526,4.707],[5.94,1.313],[8.084,8.685],[9.253,11.087],[-2.817,20.383],[3.559,7.824],[5.475,3.069]],"v":[[-824.179,212.678],[-800.972,182.111],[-816.422,119.792],[-835.717,87.662],[-867.887,56.854],[-881.567,60.637],[-877.942,89.525],[-884.322,105.34],[-866.668,111.894],[-845.6,131.553],[-832.038,161.456],[-855.87,189.056],[-838.934,207.391]]}],"t":103.791},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-815.254,211.782],[-796.823,185.411],[-814.345,118.313],[-834.99,87.098],[-866.155,55.275],[-877.819,57.233],[-875.121,86.222],[-882.005,101.825],[-864.569,108.941],[-841.334,128.004],[-825.085,165.031],[-847.409,199.899],[-826.51,209.52]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.982,1.842],[8.045,13.19],[14.578,15.334],[6.099,10.208],[20.684,-0.582],[0,0],[1.242,-10.443],[3.628,-5.018],[-5.771,-6.288],[-5.195,-5.263],[-13.09,-18.226],[-9.985,0.738],[-3.634,0.431]],"o":[[7.755,-3.587],[-12.494,-16.161],[-9.762,-10.222],[-8.629,-14.442],[-8.932,0.252],[4.744,7.051],[-0.559,4.703],[5.93,1.355],[8.023,8.741],[10.915,11.058],[12.293,17.116],[7.352,-0.543],[4.357,-0.516]],"v":[[-772.585,190.019],[-773.361,163.402],[-815.584,116.184],[-837.003,85.495],[-868.954,54.462],[-880.565,56.711],[-876.072,84.151],[-882.785,102.965],[-866.588,109.179],[-844.214,129.463],[-810.109,158.375],[-805.861,197.106],[-794.975,195.679]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.912,3.935],[10.05,7.122],[9.734,16.018],[3.461,11.376],[20.683,0.606],[0,0],[1.839,-10.355],[3.91,-4.801],[-5.401,-6.609],[-4.884,-5.552],[-9.66,-6.615],[-11.887,-4.659],[-2.631,1.82]],"o":[[5.377,-5.41],[-20.887,-14.802],[-7.167,-11.795],[-4.895,-16.091],[-8.932,-0.262],[4.331,7.311],[-0.828,4.663],[5.843,1.693],[7.508,9.187],[10.262,11.666],[9.359,6.408],[6.18,2.422],[6.28,-4.344]],"v":[[-761.76,187.149],[-794.674,165.603],[-829.958,122.491],[-840.025,89.725],[-870.142,56.909],[-881.863,58.487],[-877.765,86.605],[-883.738,104.13],[-871.389,112.476],[-851.29,135.308],[-812.722,169.347],[-775.934,188.184],[-763.281,189.186]]}],"t":133.73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.819,3.972],[10.102,-0.378],[13.018,12.202],[7.587,9.959],[19.46,-1.454],[0,0],[0.989,-10.47],[3.505,-5.104],[-6.348,-3.228],[-7.291,-3.467],[-15.311,-3.847],[-11.034,1.837],[-1.093,2.972]],"o":[[2.589,-12.552],[-16.568,0.62],[-8.392,-7.772],[-8.432,-12.174],[-8.881,0.747],[4.913,6.934],[-0.445,4.715],[5.961,1.211],[10.225,4.314],[15.58,6.482],[18.558,4.663],[5.781,-0.294],[0.937,-4.553]],"v":[[-741.51,123.882],[-771.809,125.16],[-821.436,107.688],[-839.488,82.572],[-872.385,60.921],[-884.214,63.942],[-880.094,92.764],[-886.202,108.686],[-866.52,114.063],[-842.113,125.168],[-797.703,141.625],[-751.183,141.718],[-742.934,135.966]]}],"t":141.715},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.016,6.453],[13.483,-7.868],[14.062,10.647],[9.886,9.868],[18.347,-0.046],[0,0],[2,-10.325],[3.984,-4.74],[-6.713,-0.966],[-9.044,-2.688],[-15.865,-2.113],[-10.507,6.359],[-0.094,3.925]],"o":[[-1.205,-9.103],[-16.483,9.618],[-8.213,-5.195],[-9.777,-9.705],[-8.895,0.165],[4.217,7.378],[-0.901,4.65],[5.816,1.784],[12.153,1.269],[19.675,4.101],[25.534,1.174],[5.424,-1.982],[-0.225,-5.66]],"v":[[-737.037,93.175],[-759.173,105.919],[-819.962,105.168],[-841.464,84.588],[-873.143,68.389],[-885.532,70.71],[-884.227,99.796],[-891.851,115.051],[-869.67,119.768],[-842.983,123.467],[-795.809,130.207],[-739.716,120.012],[-734.816,108.964]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.466,6.302],[13.763,-10.592],[12.794,7.348],[9.122,7.355],[15.977,0.347],[0,0],[2.656,-10.176],[4.278,-4.476],[-7.265,-0.266],[-8.145,-1.112],[-13.477,0.891],[-14.191,12.741],[0.653,3.926]],"o":[[-4.494,-8.679],[-16.01,12.321],[-8.84,-3.646],[-9.234,-7.284],[-8.893,0.02],[3.737,7.632],[-1.196,4.583],[5.69,2.152],[14.247,-0.043],[20.386,0.315],[28.179,-5.983],[5.328,-4.463],[-1.436,-6.36]],"v":[[-746.873,73.364],[-764.642,98.791],[-823.859,107.902],[-845.091,92.264],[-873.578,80.592],[-886.643,82.812],[-887.2,111.922],[-895.783,126.658],[-869.767,130.501],[-840.986,130.165],[-794.164,126.469],[-742.544,106.098],[-739.661,90.029]]}],"t":165.666},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.947,4.863],[8.342,-2.148],[12.685,10.987],[6.085,9.409],[18.595,1.514],[0,0],[2.701,-10.164],[4.298,-4.457],[-6.697,-3.181],[-7.347,-3.471],[-11.355,-2.116],[-19.684,2.706],[-3.002,2.905]],"o":[[1.39,-6.154],[-20.082,5.171],[-8.198,-6.246],[-6.712,-11.027],[-8.885,-0.585],[3.703,7.649],[-1.216,4.578],[5.68,2.177],[12.11,4.736],[13.3,4.56],[17.101,3.186],[4.663,-0.641],[2.957,-4.586]],"v":[[-734.405,130.931],[-757.651,137.209],[-826.749,130.355],[-844.538,105.793],[-871.899,84.023],[-886.462,86.13],[-887.147,115.236],[-895.795,129.935],[-873.43,136.928],[-848.403,147.065],[-814.982,156.216],[-755.447,153.264],[-743.141,146.341]]}],"t":173.65},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.006,4.016],[8.603,1.342],[13.412,12.907],[4.468,10.675],[20.662,1.122],[0,0],[2.098,-10.306],[4.028,-4.702],[-6.575,-4.965],[-7.048,-4.806],[-8.793,-5.316],[-11.973,-2.687],[-5.595,2.47]],"o":[[5.515,-4.578],[-19.763,-3.083],[-8.194,-7.697],[-5.649,-13.495],[-8.923,-0.485],[4.147,7.417],[-0.945,4.641],[5.799,1.839],[10.975,7.64],[8.425,7.193],[9.531,5.193],[6.111,1.371],[6.028,-3.612]],"v":[[-752.4,169.727],[-770.803,161.922],[-828.248,141.73],[-845.316,111.498],[-873.546,83.862],[-889.076,86.846],[-888.047,115.942],[-895.814,131.125],[-875.664,139.222],[-852.439,155.781],[-828.023,173.005],[-791.438,186.573],[-772.157,185.362]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.941,5.724],[10.178,6.639],[9.572,16.999],[3.395,11.092],[20.444,3.197],[0,0],[3.125,-10.042],[4.481,-4.273],[-5.47,-6.177],[-4.888,-6.057],[-5.462,-8.268],[-7.474,-6.353],[-6.113,-0.812]],"o":[[5.043,-4.858],[-15.516,-10.121],[-5.832,-10.083],[-4.613,-15.339],[-8.829,-1.381],[3.379,7.797],[-1.407,4.523],[5.584,2.413],[8,8.386],[6.672,9.867],[5.792,8.082],[5.12,4.351],[6.216,0.173]],"v":[[-781.868,209.196],[-794.463,191.661],[-833.872,152.475],[-845.954,118.926],[-870.667,85.05],[-886.608,84.981],[-888.539,115.819],[-897.796,130.142],[-879.768,139.54],[-862.432,161.045],[-845.009,185.686],[-825.535,207.748],[-807.793,217.317]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.221,0.349],[2.523,9.88],[7.161,19.785],[3.455,11.102],[20.454,3.133],[0,0],[3.093,-10.052],[4.468,-4.287],[-4.917,-6.737],[-3.269,-6.613],[-2.742,-10.353],[-1.361,-11.838],[-6.421,-3.498]],"o":[[10.042,0.129],[-4.75,-18.604],[-4.323,-11.668],[-5.017,-16.668],[-8.833,-1.353],[3.404,7.786],[-1.393,4.527],[5.592,2.396],[5.874,8.048],[5.722,11.712],[2.656,10.029],[0.775,6.74],[6.082,3.313]],"v":[[-813.778,238.82],[-810.932,205.06],[-834.795,152.634],[-845.13,117.366],[-869.369,80.025],[-885.545,82.104],[-887.359,111.162],[-896.571,125.514],[-879.721,134.174],[-866.413,158.328],[-854.033,187.977],[-850.035,214.908],[-833.798,233.257]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.725,-2.91],[-5.153,21.389],[6.639,22.627],[4.583,10.972],[20.556,2.37],[0,0],[2.717,-10.16],[4.305,-4.45],[-4.816,-7.046],[-3.25,-6.642],[3.318,-11.228],[-4.366,-13.328],[-5.629,-6.947]],"o":[[13.32,4.443],[5.996,-24.888],[-3.69,-12.578],[-6.484,-15.524],[-8.877,-1.024],[3.691,7.655],[-1.224,4.576],[5.677,2.186],[6.695,9.795],[5.974,12.21],[-5.831,19.733],[2.374,7.247],[4.164,5.139]],"v":[[-847.091,241.594],[-825.026,206.991],[-830.067,144.572],[-842.115,108.848],[-869.319,73.579],[-885.406,76.258],[-886.138,105.363],[-894.81,120.048],[-878.333,129.166],[-863.007,152.56],[-855.719,182.921],[-874.234,214.895],[-864.366,230.797]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.763,-2.795],[-4.871,21.455],[6.936,22.537],[4.727,10.911],[20.585,2.099],[0,0],[2.583,-10.195],[4.246,-4.506],[-4.909,-6.982],[-3.337,-6.599],[3.169,-11.27],[-4.541,-13.27],[-5.72,-6.873]],"o":[[13.377,4.267],[5.668,-24.965],[-3.856,-12.528],[-6.688,-15.437],[-8.89,-0.907],[3.791,7.605],[-1.164,4.591],[5.705,2.111],[6.824,9.706],[6.135,12.13],[-5.57,19.808],[2.469,7.216],[4.231,5.083]],"v":[[-843.152,235.327],[-821.545,200.437],[-827.407,138.089],[-839.924,102.527],[-867.59,67.619],[-883.64,70.51],[-883.989,99.623],[-892.467,114.42],[-875.872,123.321],[-860.239,146.51],[-852.552,176.773],[-870.644,208.988],[-860.568,224.758]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.089,-1.277],[-2.457,20.31],[10.787,19.887],[5.882,10.334],[20.692,-0.145],[0,0],[1.463,-10.415],[3.733,-4.94],[-5.637,-6.409],[-4.523,-5.812],[1.929,-11.548],[-4.818,-11.437],[-6.235,-4.073]],"o":[[12.953,1.885],[3.075,-25.414],[-6.563,-11.869],[-8.322,-14.621],[-8.936,0.063],[4.594,7.149],[-0.659,4.69],[5.901,1.48],[7.836,8.909],[8.937,11.343],[-3.39,20.295],[3.337,7.921],[5.386,3.222]],"v":[[-829.051,213.527],[-804.992,183.626],[-818.68,120.897],[-837.062,88.236],[-868.35,56.534],[-882.132,59.929],[-879.323,88.908],[-886.146,104.537],[-868.684,111.586],[-848.177,131.831],[-835.464,162.105],[-860.064,189.022],[-843.652,207.827]]}],"t":223.549},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.117,-1.215],[-3.513,18.363],[11.31,18.607],[5.23,10.679],[20.661,1.138],[0,0],[2.105,-10.304],[4.032,-4.699],[-5.229,-6.746],[-4.739,-5.676],[2.641,-11.406],[-10.18,-9.647],[-5.898,-1.998]],"o":[[11.954,1.593],[4.81,-25.144],[-7.391,-12.159],[-7.4,-15.109],[-8.923,-0.491],[4.142,7.42],[-0.948,4.641],[5.797,1.843],[7.269,9.378],[9.958,11.926],[-4.641,20.046],[9.574,9.073],[5.99,2.029]],"v":[[-822.778,214.701],[-802.845,189.446],[-816.438,121.443],[-835.233,89.08],[-864.496,55.5],[-876.254,56.777],[-875.246,85.874],[-883.025,101.051],[-866.033,109.168],[-843.945,129.549],[-829.875,167.458],[-854.188,200.969],[-833.883,211.789]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.067,1.645],[7.392,13.567],[13.813,16.027],[5.594,10.493],[20.688,0.427],[0,0],[1.75,-10.37],[3.868,-4.835],[-5.457,-6.562],[-4.932,-5.51],[-12.186,-18.843],[-10.009,0.25],[-3.651,0.253]],"o":[[7.921,-3.204],[-11.691,-16.751],[-9.252,-10.686],[-7.914,-14.846],[-8.934,-0.185],[4.394,7.274],[-0.788,4.67],[5.857,1.643],[7.587,9.122],[10.362,11.577],[11.444,17.695],[7.37,-0.184],[4.377,-0.303]],"v":[[-777.898,196.047],[-777.375,169.423],[-817.244,120.202],[-837.14,88.504],[-867.539,55.949],[-879.246,57.629],[-877.239,86.674],[-884.492,102.109],[-867.845,110.716],[-846.488,132.067],[-813.834,162.609],[-811.481,201.501],[-800.538,200.607]]}],"t":247.502},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.746,4.093],[10.335,6.702],[10.386,15.603],[3.927,11.224],[20.691,-0.247],[0,0],[1.411,-10.422],[3.708,-4.958],[-5.668,-6.381],[-5.109,-5.346],[-9.924,-6.211],[-12.069,-4.165],[-2.554,1.927]],"o":[[5.15,-5.627],[-21.479,-13.928],[-7.648,-11.49],[-5.555,-15.875],[-8.935,0.107],[4.629,7.127],[-0.635,4.694],[5.908,1.451],[7.88,8.87],[10.734,11.233],[9.615,6.017],[6.275,2.165],[6.095,-4.6]],"v":[[-757.221,183.138],[-790.996,162.967],[-828.026,121.346],[-839.436,89.023],[-870.88,57.476],[-882.526,59.536],[-879.573,88.501],[-886.319,104.164],[-869.835,113.048],[-848.812,135.031],[-808.874,167.451],[-771.341,184.756],[-758.657,185.235]]}],"t":253.49},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.137,3.893],[10.099,0.437],[11.992,13.211],[6.76,10.538],[19.514,0.119],[0,0],[1.83,-10.357],[3.905,-4.805],[-6.067,-3.729],[-6.988,-4.043],[-14.951,-5.068],[-11.146,0.942],[-1.329,2.875]],"o":[[3.593,-12.302],[-16.564,-0.717],[-7.738,-8.423],[-7.423,-12.814],[-8.912,0.029],[4.338,7.307],[-0.824,4.664],[5.844,1.688],[9.844,5.124],[15.007,7.716],[18.122,6.143],[5.786,0.173],[1.301,-4.463]],"v":[[-747.695,136.307],[-777.998,135.139],[-826.056,113.724],[-842.025,87.235],[-873.07,63.004],[-885.104,65.061],[-883.32,94.121],[-890.691,109.5],[-871.507,116.445],[-848.075,129.481],[-805.136,149.463],[-758.774,153.305],[-750.088,148.237]]}],"t":261.475},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.652,6.5],[13.904,-7.097],[13.441,11.421],[9.316,10.408],[18.321,0.986],[0,0],[2.578,-10.196],[4.244,-4.508],[-6.648,-1.342],[-8.879,-3.193],[-15.721,-3.002],[-10.848,5.758],[-0.315,3.914]],"o":[[-0.691,-9.157],[-16.998,8.676],[-7.907,-5.649],[-9.215,-10.239],[-8.891,-0.336],[3.795,7.603],[-1.161,4.592],[5.706,2.108],[12.062,1.951],[19.414,5.201],[25.427,2.608],[5.527,-1.674],[0.094,-5.663]],"v":[[-740.547,104.111],[-763.365,115.59],[-824.015,111.42],[-844.326,89.664],[-875.043,71.708],[-887.543,73.329],[-887.876,102.442],[-896.346,117.244],[-874.466,123.201],[-848.029,128.396],[-801.309,137.779],[-744.732,130.755],[-739.218,120.001]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.754,6.644],[14.841,-9.019],[11.911,8.706],[8.261,8.311],[15.843,2.097],[0,0],[3.756,-9.824],[4.743,-3.98],[-7.192,-1.06],[-7.974,-1.999],[-13.493,-0.592],[-15.503,11.108],[0.219,3.974]],"o":[[-3.515,-9.119],[-17.264,10.491],[-8.387,-4.594],[-8.38,-8.253],[-8.842,-0.955],[2.878,7.996],[-1.691,4.424],[5.42,2.763],[14.166,1.519],[20.228,2.548],[28.666,-2.858],[5.785,-3.852],[-0.73,-6.479]],"v":[[-749.701,96.975],[-770.151,120.3],[-830.009,122.865],[-849.399,104.993],[-873.502,87.857],[-888.432,90.16],[-893.409,119.915],[-903.556,133.622],[-878.118,140.294],[-849.474,143.116],[-802.529,144.575],[-748.987,129.987],[-744.359,114.33]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1,4.853],[8.364,-2.057],[12.565,11.124],[5.983,9.475],[18.578,1.717],[0,0],[2.812,-10.134],[4.346,-4.41],[-6.662,-3.253],[-7.309,-3.551],[-11.331,-2.239],[-19.713,2.491],[-3.034,2.872]],"o":[[1.457,-6.138],[-20.137,4.952],[-8.129,-6.335],[-4.038,-12.389],[-8.878,-0.682],[3.62,7.688],[-1.266,4.564],[5.656,2.239],[12.057,4.867],[13.249,4.705],[17.066,3.372],[4.669,-0.59],[3.006,-4.553]],"v":[[-741.669,140.889],[-764.981,146.914],[-834.001,139.308],[-850.013,112.835],[-875.692,90.477],[-890.277,92.425],[-894.231,123.532],[-903.038,138.136],[-880.751,145.372],[-855.836,155.781],[-822.516,165.295],[-762.952,162.992],[-750.572,156.203]]}],"t":293.41},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.259,3.747],[8.498,1.898],[12.545,13.751],[3.765,10.943],[20.545,2.463],[0,0],[2.764,-10.147],[4.326,-4.43],[-4.426,-7.152],[-6.72,-5.254],[-10.121,-4.789],[-11.773,-3.459],[-5.744,2.101]],"o":[[5.801,-4.21],[-19.521,-4.361],[-7.677,-8.214],[-4.76,-13.833],[-8.873,-1.064],[3.656,7.671],[-1.245,4.57],[5.667,2.212],[4.793,7.746],[7.939,7.726],[11.757,5.563],[6.009,1.766],[6.25,-3.212]],"v":[[-757.947,186.122],[-775.803,177.136],[-836.407,157.946],[-846.881,121.975],[-873.254,92.563],[-888.946,94.531],[-891.964,122.584],[-902.818,139.753],[-880.007,150.537],[-863.613,169.347],[-834.318,186.269],[-797.997,200.394],[-778.678,200.439]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.138,5.512],[9.939,6.991],[8.971,17.324],[3.005,11.204],[20.319,3.911],[0,0],[3.474,-9.927],[4.628,-4.113],[-5.25,-6.364],[-4.673,-6.225],[-5.169,-8.454],[-7.247,-6.61],[-6.081,-1.026]],"o":[[5.21,-4.679],[-15.153,-10.658],[-5.476,-10.28],[-4.073,-15.491],[-8.775,-1.689],[3.104,7.911],[-1.565,4.471],[5.496,2.607],[7.701,8.661],[6.322,10.095],[5.506,8.28],[4.964,4.528],[6.207,0.39]],"v":[[-789.748,220.85],[-801.721,202.885],[-839.735,162.344],[-850.634,128.393],[-873.317,91.937],[-889.334,93.094],[-893.301,121.635],[-904.975,137.647],[-885.149,147.811],[-868.576,169.909],[-852.027,195.144],[-833.337,217.875],[-815.941,228.058]]}],"t":307.381},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.227,0.188],[2.302,9.933],[6.718,19.939],[3.206,11.176],[20.379,3.588],[0,0],[3.317,-9.98],[4.562,-4.186],[-4.766,-6.845],[-3.121,-6.685],[-2.511,-10.411],[-1.097,-11.865],[-6.342,-3.64]],"o":[[10.037,0.353],[-4.335,-18.705],[-4.062,-11.762],[-4.645,-16.776],[-8.801,-1.55],[3.229,7.86],[-1.494,4.495],[5.537,2.52],[5.693,8.177],[5.459,11.836],[2.432,10.086],[0.625,6.756],[6.007,3.448]],"v":[[-823.623,247.89],[-820.025,214.202],[-842.713,161.257],[-852.26,125.767],[-873.429,85.784],[-889.997,87.434],[-894.34,118.624],[-903.87,132.767],[-887.217,141.8],[-874.451,166.245],[-862.734,196.162],[-859.337,223.175],[-843.514,241.882]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.497,-3.521],[-6.656,20.97],[5.019,23.04],[3.794,11.269],[20.336,3.821],[0,0],[3.431,-9.942],[4.61,-4.134],[-4.305,-7.37],[-2.771,-6.856],[4.105,-10.964],[-3.41,-13.604],[-5.123,-7.329]],"o":[[12.972,5.375],[7.745,-24.4],[-2.79,-12.808],[-5.367,-15.945],[-8.782,-1.65],[3.139,7.897],[-1.545,4.477],[5.508,2.583],[5.984,10.245],[5.094,12.602],[-7.214,19.27],[1.854,7.397],[3.789,5.421]],"v":[[-863.282,250.728],[-838.821,217.776],[-839.426,155.156],[-848.912,118.669],[-871.291,79.774],[-888.125,81.836],[-892.578,112.074],[-902.268,126.107],[-886.479,136.37],[-872.85,160.79],[-867.731,191.592],[-888.465,222.173],[-879.749,238.734]]}],"t":323.35},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.729,-2.899],[-5.127,21.396],[6.667,22.618],[4.596,10.967],[20.559,2.345],[0,0],[2.705,-10.163],[4.3,-4.455],[-4.825,-7.04],[-3.258,-6.638],[3.303,-11.232],[-4.383,-13.323],[-5.638,-6.94]],"o":[[13.326,4.426],[5.965,-24.895],[-3.706,-12.573],[-6.503,-15.516],[-8.879,-1.013],[3.7,7.65],[-1.218,4.577],[5.68,2.179],[6.708,9.787],[5.99,12.202],[-5.806,19.74],[2.383,7.244],[4.17,5.133]],"v":[[-851.464,241.363],[-829.442,206.733],[-834.561,144.319],[-846.653,108.611],[-873.902,73.376],[-889.985,76.075],[-890.681,105.182],[-899.335,119.877],[-882.846,128.975],[-867.492,152.349],[-860.165,182.701],[-878.64,214.698],[-868.752,230.588]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.039,-1.597],[-3.171,20.211],[10.08,20.255],[5.515,10.535],[20.684,0.584],[0,0],[1.828,-10.357],[3.904,-4.806],[-5.408,-6.603],[-4.315,-5.968],[2.334,-11.473],[-4.413,-11.599],[-6.088,-4.29]],"o":[[12.879,2.34],[3.968,-25.29],[-6.141,-12.093],[-7.802,-14.905],[-8.933,-0.252],[4.339,7.307],[-0.823,4.664],[5.845,1.687],[7.517,9.179],[8.533,11.651],[-4.102,20.163],[3.056,8.033],[5.269,3.41]],"v":[[-839.874,219.599],[-814.778,190.563],[-826.249,127.391],[-843.471,94.104],[-873.624,61.32],[-887.517,64.228],[-885.729,93.288],[-893.098,108.668],[-875.895,116.327],[-856.114,137.28],[-844.474,167.983],[-870.006,194.018],[-854.266,213.389]]}],"t":343.309},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.047,-1.655],[-4.399,18.171],[10.395,19.133],[4.706,10.92],[20.582,2.138],[0,0],[2.603,-10.19],[4.255,-4.498],[-4.896,-6.991],[-4.459,-5.899],[3.19,-11.264],[-9.701,-10.13],[-5.794,-2.281]],"o":[[11.863,2.17],[6.023,-24.881],[-6.793,-12.503],[-6.659,-15.45],[-8.888,-0.923],[3.777,7.612],[-1.172,4.589],[5.701,2.122],[6.806,9.719],[9.369,12.395],[-5.607,19.798],[9.123,9.526],[5.885,2.317]],"v":[[-835.363,221.847],[-814.229,197.587],[-824.51,129.005],[-841.714,95.77],[-868.504,60.025],[-880.76,58.966],[-881.525,90.628],[-890.03,105.41],[-873.451,114.341],[-852.377,135.768],[-840.162,174.315],[-866.07,206.608],[-846.313,218.4]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.087,1.596],[7.226,13.655],[13.617,16.194],[5.466,10.56],[20.681,0.679],[0,0],[1.876,-10.348],[3.926,-4.787],[-5.377,-6.628],[-4.864,-5.569],[-11.956,-18.989],[-10.011,0.128],[-3.654,0.209]],"o":[[7.959,-3.108],[-11.486,-16.892],[-9.121,-10.798],[-7.733,-14.941],[-8.931,-0.293],[4.305,7.327],[-0.845,4.661],[5.837,1.714],[7.475,9.214],[10.221,11.702],[11.228,17.833],[7.371,-0.094],[4.38,-0.25]],"v":[[-784.821,200.445],[-783.975,173.83],[-823.243,124.127],[-842.751,92.19],[-872.752,59.268],[-884.479,60.805],[-882.825,89.873],[-891.933,106.61],[-873.725,114.028],[-852.628,135.637],[-820.348,166.573],[-818.468,205.491],[-807.515,204.73]]}],"t":367.262},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.791,4.051],[10.26,6.816],[10.212,15.717],[3.802,11.266],[20.692,-0.018],[0,0],[1.527,-10.406],[3.763,-4.917],[-5.597,-6.443],[-5.049,-5.402],[-9.855,-6.32],[-12.022,-4.298],[-2.575,1.899]],"o":[[5.212,-5.569],[-21.324,-14.165],[-7.52,-11.574],[-5.378,-15.936],[-8.936,0.008],[4.55,7.177],[-0.688,4.686],[5.891,1.516],[7.781,8.957],[10.609,11.351],[9.548,6.123],[6.25,2.235],[6.146,-4.532]],"v":[[-763.411,187.239],[-796.96,166.696],[-833.528,124.667],[-844.578,92.219],[-875.671,60.326],[-887.339,62.258],[-884.707,91.253],[-892.368,108.255],[-875.242,115.906],[-854.464,138.121],[-814.887,170.982],[-777.548,188.701],[-764.87,189.321]]}],"t":373.248},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.163,3.885],[10.096,0.505],[11.903,13.292],[6.688,10.584],[19.513,0.251],[0,0],[1.9,-10.344],[3.937,-4.778],[-6.042,-3.77],[-6.961,-4.09],[-14.917,-5.169],[-11.152,0.866],[-1.349,2.865]],"o":[[3.676,-12.278],[-16.559,-0.829],[-7.681,-8.476],[-7.336,-12.864],[-8.912,-0.031],[4.289,7.336],[-0.856,4.659],[5.833,1.727],[9.809,5.191],[14.954,7.817],[18.08,6.265],[5.785,0.212],[1.331,-4.454]],"v":[[-752.743,139.144],[-783.038,137.771],[-830.95,116.032],[-846.739,89.435],[-877.62,64.994],[-889.667,66.97],[-888.08,96.042],[-895.555,111.37],[-876.418,118.445],[-853.075,131.639],[-810.272,151.911],[-763.937,156.067],[-755.217,151.057]]}],"t":381.232},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.685,6.496],[13.868,-7.169],[13.5,11.351],[9.369,10.36],[18.326,0.892],[0,0],[2.525,-10.209],[4.221,-4.53],[-6.655,-1.308],[-7.369,-4.343],[-16.886,0.678],[-10.818,5.814],[-0.294,3.915]],"o":[[-0.738,-9.153],[-16.953,8.763],[-7.937,-5.608],[-9.268,-10.192],[-8.892,-0.29],[3.835,7.584],[-1.137,4.598],[5.717,2.079],[12.072,1.888],[16.591,9.779],[19.784,-0.795],[5.518,-1.702],[0.065,-5.664]],"v":[[-744.376,104.171],[-767.135,115.768],[-827.806,111.912],[-848.229,90.26],[-876.346,70.744],[-891.53,74.148],[-891.713,103.263],[-900.106,118.108],[-878.195,123.952],[-855.764,135.754],[-807.398,149.181],[-748.424,130.837],[-742.966,120.054]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.196,6.443],[14.199,-9.999],[12.471,7.884],[8.802,7.735],[15.948,1.024],[0,0],[3.085,-10.055],[4.464,-4.29],[-7.247,-0.573],[-8.091,-1.456],[-13.502,0.319],[-14.718,12.128],[0.486,3.951]],"o":[[-4.122,-8.861],[-16.518,11.631],[-8.678,-4.018],[-8.917,-7.669],[-8.886,-0.357],[3.41,7.784],[-1.389,4.528],[5.594,2.391],[14.236,0.56],[20.354,1.179],[28.408,-4.784],[5.512,-4.234],[-1.165,-6.415]],"v":[[-753.182,84.09],[-772.013,108.741],[-831.562,115.335],[-852.112,98.811],[-879.846,84.173],[-892.993,85.837],[-895.017,116.667],[-904.216,131.027],[-878.386,135.968],[-849.617,136.852],[-802.681,135.143],[-750.244,116.978],[-746.682,101.045]]}],"t":405.184},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.003,4.852],[8.366,-2.052],[12.559,11.132],[5.977,9.478],[18.577,1.727],[0,0],[2.817,-10.133],[4.349,-4.407],[-6.66,-3.257],[-7.307,-3.555],[-11.461,-1.435],[-20.331,4.854],[-3.036,2.87]],"o":[[1.46,-6.137],[-20.14,4.94],[-8.125,-6.339],[-6.586,-11.103],[-8.878,-0.687],[3.616,7.69],[-1.269,4.563],[5.655,2.242],[12.055,4.874],[13.247,4.712],[24.941,3.122],[4.578,-1.093],[3.009,-4.552]],"v":[[-742.792,137.474],[-766.108,143.486],[-835.124,135.841],[-852.63,111.077],[-878.289,87.227],[-892.875,89.166],[-895.344,120.031],[-904.16,134.63],[-881.877,141.878],[-856.968,152.302],[-823.654,161.835],[-764.088,159.565],[-751.704,152.783]]}],"t":413.168},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.027,8.423],[16.173,-5.024],[14.885,11.866],[2.353,10.858],[20.638,1.499],[0,0],[2.286,-10.266],[4.113,-4.628],[-5.11,-6.836],[-4.487,-5.877],[-6.964,-4.569],[-13.924,-1.688],[-10.922,6.918]],"o":[[13.415,-14.076],[-28.095,8.727],[-9.811,-7.822],[-4.099,-18.914],[-8.913,-0.647],[4.011,7.492],[-1.029,4.623],[5.764,1.944],[7.104,9.503],[7.042,9.224],[18.037,11.835],[12.668,1.536],[11.134,-7.053]],"v":[[-755.993,176.283],[-775.073,165.58],[-842.789,156.298],[-855.609,124.91],[-878.494,86.284],[-894.453,89.641],[-893.955,118.751],[-902.97,135.979],[-885.15,142.203],[-870.651,161.844],[-849.751,184.663],[-807.75,203.113],[-783.064,196.889]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.892,3.84],[7.852,3.556],[8.268,16.842],[2.566,11.11],[20.402,3.451],[0,0],[3.249,-10.003],[4.534,-4.217],[-4.438,-7.29],[-3.436,-6.523],[-9.07,-13.026],[-8.837,-7.242],[-8.834,1.611]],"o":[[7.01,-4.568],[-16.498,-7.472],[-5.259,-10.713],[-3.859,-17.643],[-8.811,-1.49],[3.282,7.838],[-1.463,4.505],[5.554,2.482],[6.17,10.134],[5.755,11.09],[4.836,6.945],[7.034,5.764],[11.251,-2.051]],"v":[[-783.11,217.048],[-801.341,199.79],[-845.689,156.808],[-855.112,122.268],[-877.117,83.497],[-893.323,85.324],[-895.589,114.351],[-906.047,130.571],[-889.049,138.532],[-875.779,160.972],[-857.62,189.944],[-831.087,220.915],[-804.835,224.844]]}],"t":433.129},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.194,0.716],[3.023,9.738],[8.16,19.394],[4.016,10.911],[20.587,2.087],[0,0],[2.577,-10.196],[4.244,-4.509],[-4.913,-6.979],[-3.602,-6.438],[-3.266,-10.2],[-1.963,-11.753],[-6.591,-3.166]],"o":[[10.036,-0.383],[-5.692,-18.337],[-4.911,-11.433],[-5.86,-16.391],[-8.891,-0.901],[3.796,7.603],[-1.161,4.592],[5.706,2.108],[6.83,9.702],[6.311,11.405],[3.164,9.881],[1.118,6.692],[6.243,2.999]],"v":[[-810.709,230.026],[-809.587,196.165],[-836.09,145.023],[-848.208,110.327],[-872.998,76.137],[-889.99,78.746],[-892.145,105.015],[-902.138,123.067],[-879.474,134.096],[-867.377,152.32],[-853.502,181.3],[-848.137,207.992],[-830.987,225.49]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.746,-2.846],[-4.997,21.426],[6.804,22.577],[4.663,10.939],[20.573,2.22],[0,0],[2.643,-10.18],[4.273,-4.481],[-4.868,-7.011],[-3.298,-6.618],[3.235,-11.252],[-4.463,-13.296],[-5.68,-6.906]],"o":[[13.352,4.345],[5.814,-24.931],[-3.782,-12.551],[-6.597,-15.476],[-8.885,-0.959],[3.747,7.627],[-1.19,4.584],[5.693,2.145],[6.767,9.746],[6.063,12.166],[-5.686,19.775],[2.427,7.23],[4.201,5.108]],"v":[[-849.967,235.477],[-828.156,200.715],[-833.652,138.334],[-845.961,102.699],[-873.423,67.63],[-889.489,70.426],[-890.009,99.537],[-898.573,114.284],[-882.03,123.282],[-866.534,146.562],[-859.024,176.87],[-877.304,208.978],[-867.32,224.807]]}],"t":449.096},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.148,-0.746],[-1.272,20.419],[11.925,19.226],[6.473,9.975],[20.648,-1.348],[0,0],[0.855,-10.482],[3.439,-5.149],[-6,-6.07],[-4.853,-5.539],[1.254,-11.64],[-5.475,-11.137],[-6.462,-3.703]],"o":[[13.041,1.128],[1.591,-25.55],[-7.242,-11.467],[-9.158,-14.112],[-8.917,0.582],[5.002,6.87],[-0.385,4.721],[5.976,1.135],[8.341,8.438],[9.582,10.804],[-2.203,20.458],[3.792,7.713],[5.564,2.903]],"v":[[-822.473,207.644],[-800.194,176.394],[-817.508,114.567],[-837.759,83.031],[-870.839,53.203],[-884.4,57.394],[-879.909,86.16],[-885.812,102.16],[-867.969,108.181],[-846.319,127.199],[-831.867,156.682],[-854.859,184.985],[-837.381,202.803]]}],"t":463.068},{"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-812.7,208.673],[-794.269,182.301],[-811.792,115.203],[-832.435,83.988],[-863.601,52.165],[-875.265,54.124],[-872.567,83.113],[-879.451,98.716],[-862.015,105.832],[-838.78,124.894],[-822.531,161.922],[-844.855,196.789],[-823.956,206.411]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.075,0.089]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front fin bottom","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":33,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1042.089,166.545,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1070.661,116.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[18],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[61],"t":59.754},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[63],"t":179.264},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[56],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[55],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[18],"t":479},{"s":[14],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back leg","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.43,-1.058],[7.906,-10.49],[12.734,-10.672],[14.247,-7.798],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-5.963,17.173],[2.357,1.507],[8.29,2.032]],"o":[[-3.265,10.739],[-9.743,12.928],[-9.486,7.95],[-17.304,9.471],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[5.261,-15.152],[-7.068,-4.518],[-8.506,-2.085]],"v":[[-966.566,42.779],[-982.43,74.206],[-1007.796,99.802],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-938.577,100.937],[-927.397,51.506],[-946.166,42.903]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.396,1.189],[11.39,-6.542],[12.781,-8.108],[10.101,-6.863],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-12.228,13.451],[1.35,2.45],[6.309,5.748]],"o":[[-10.021,5.672],[-14.037,8.062],[-10.368,6.577],[-16.317,11.085],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[10.789,-11.868],[-4.047,-7.347],[-6.473,-5.898]],"v":[[-934.252,54.878],[-966.86,73.386],[-1008.008,97.993],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-934.795,118.262],[-904.022,81.271],[-916.393,64.741]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.513,-0.613],[7.118,-8.877],[12.781,-8.108],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-10.2,11.999],[-8.231,16.208],[2.196,1.733],[8.047,2.844]],"o":[[-2.346,12.532],[-10.127,12.629],[-10.368,6.577],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[13.094,-15.404],[7.304,-14.384],[-6.585,-5.197],[-8.257,-2.918]],"v":[[-965.101,41.775],[-978.396,72.344],[-1007.891,99.81],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-937.004,103.315],[-922.794,55.526],[-940.617,45.103]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.309,1.476],[9.65,-6.563],[12.781,-8.108],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.568,13.961],[-13.047,13.947],[1.185,2.534],[5.917,6.151]],"o":[[-11.006,8.562],[-13.385,9.104],[-10.368,6.577],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[14.597,-13.988],[14.539,-15.541],[-3.555,-7.598],[-6.071,-6.311]],"v":[[-935.511,51.875],[-962.904,70.781],[-1007.891,99.81],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-933.909,118.671],[-903.222,82.665],[-915.12,65.83]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.541,-0.343],[6.13,-9.058],[13.157,-9.352],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-13.748,14.77],[-8.655,17.024],[2.089,1.861],[7.863,3.319]],"o":[[-3.187,13.629],[-9.073,13.406],[-10.007,7.113],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.669,-16.833],[9.644,-18.971],[-6.263,-5.58],[-8.068,-3.406]],"v":[[-965.295,40.955],[-977.526,70.708],[-1007.866,101.283],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-937.67,107.89],[-923.48,56.516],[-941.053,45.738]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.116,1.95],[10.762,-6.77],[15.507,-8.124],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.952,13.55],[-14.334,12.62],[0.894,2.651],[5.189,6.776]],"o":[[-11.52,8.362],[-13.702,8.62],[-10.876,5.697],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[18.239,-16.53],[16.621,-14.633],[-2.68,-7.949],[-5.324,-6.953]],"v":[[-931.061,57.799],[-962.382,76.575],[-1007.866,101.283],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-972.928,159.222],[-932.891,123.359],[-901.905,94.244],[-912.366,73.955]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.554,-0.081],[7.449,-9.873],[13.847,-9.537],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-13.546,14.955],[-11.326,20.908],[1.978,1.978],[7.659,3.766]],"o":[[-5.37,14.103],[-9.75,12.922],[-10.112,6.964],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[19.362,-21.375],[10.547,-19.471],[-5.931,-5.931],[-7.859,-3.864]],"v":[[-962.601,45.151],[-977.095,72.533],[-1009.061,102.342],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-972.928,159.222],[-935.373,108.073],[-920.29,64.852],[-938.674,51.32]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.114,1.954],[10.749,-6.905],[16.015,-9.241],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.519,14.013],[-17.771,15.799],[0.891,2.652],[5.183,6.781]],"o":[[-12.044,7.494],[-13.62,8.749],[-10.635,6.136],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[19.725,-19.038],[15.72,-13.976],[-2.672,-7.951],[-5.318,-6.958]],"v":[[-936.262,57.204],[-965.99,75.902],[-1009.061,102.342],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1010.154,192.767],[-977.669,162.878],[-933.809,122.068],[-907.139,93.675],[-917.581,73.376]]}],"t":419.156},{"s":[{"c":true,"i":[[4.43,-1.058],[7.906,-10.49],[12.734,-10.672],[14.247,-7.798],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-5.963,17.173],[2.357,1.507],[8.29,2.032]],"o":[[-3.265,10.739],[-9.743,12.928],[-9.486,7.95],[-17.304,9.471],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[5.261,-15.152],[-7.068,-4.518],[-8.506,-2.085]],"v":[[-966.566,42.779],[-982.43,74.206],[-1007.796,99.802],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-938.577,100.937],[-927.397,51.506],[-946.166,42.903]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back leg","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":34,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1317.804,73.33,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1261.998,119.472,0],"t":0,"ti":[0.128,-0.333,0],"to":[-0.427,1.111,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.557,126.141,0],"t":59.881,"ti":[-0.085,0.222,0],"to":[-0.128,0.333,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1262.766,121.473,0],"t":119.76,"ti":[-0.341,0.889,0],"to":[0.085,-0.222,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.045,124.807,0],"t":179.637,"ti":[-0.231,-0.726,0],"to":[0.341,-0.889,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1260.718,116.138,0],"t":239.518,"ti":[0.564,-0.804,0],"to":[0.231,0.726,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1262.658,129.165,0],"t":299.396,"ti":[0.068,0.154,0],"to":[-0.564,0.804,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.099,120.961,0],"t":359.277,"ti":[-0.35,0.248,0],"to":[-0.068,-0.154,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[-1263.069,128.242,0],"t":419.156,"ti":[0.172,1.214,0],"to":[0.35,-0.248,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1261.998,119.472,0],"t":479,"ti":[0.35,-0.248,0],"to":[-0.172,-1.214,0]},{"s":[-1264.099,120.961,0],"t":479.037109375}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-126],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-120],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-125.5],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-121],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-127],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-119.5],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-125],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-120.5],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-126],"t":479},{"s":[-126],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back arm","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[21.814,-4.558],[12.143,-1.898],[17.84,-4.69],[-0.514,-7.034],[-7.04,-1.792],[-11.588,-1.028],[-19.889,1.3],[-18.276,1.474],[-1.349,8.767],[2.43,3.536],[3.497,2.459],[4.261,0.348]],"o":[[-16.184,3.382],[-13.494,2.11],[-12.611,3.316],[0.8,10.961],[11.716,2.982],[11.909,1.057],[17.176,-1.123],[13.818,-1.114],[0.395,-2.565],[-2.421,-3.523],[-3.497,-2.459],[-8.855,-0.723]],"v":[[-1374.915,63.68],[-1416.275,69.233],[-1459.113,76.912],[-1474,94.406],[-1452.362,110.958],[-1421.002,115.305],[-1383.65,115.109],[-1296.239,107.281],[-1284.742,89.252],[-1291.818,73.781],[-1301.603,65.43],[-1328.18,55.741]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back arm","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1385.801,84.442]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1385.801,84.442]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back arm","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":35,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-419,819,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.696],"y":[0.637]},"o":{"x":[0.326],"y":[0.279]},"s":[144.166],"t":30},{"i":{"x":[0.814],"y":[0.723]},"o":{"x":[0.429],"y":[0.303]},"s":[352.279],"t":344},{"i":{"x":[0.983],"y":[0.868]},"o":{"x":[0.584],"y":[0.324]},"s":[452],"t":433},{"s":[545],"t":464}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.801],"y":[-0.511]},"o":{"x":[0.418],"y":[0.109]},"s":[418],"t":30},{"i":{"x":[0.781],"y":[0.546]},"o":{"x":[0.504],"y":[0.19]},"s":[429],"t":342},{"i":{"x":[0.983],"y":[0.865]},"o":{"x":[0.456],"y":[0.17]},"s":[493.659],"t":433},{"s":[616],"t":464}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.701],"y":[0.014]},"o":{"x":[0.361],"y":[0.129]},"s":[0],"t":30},{"i":{"x":[0.9],"y":[0.679]},"o":{"x":[0.605],"y":[0.068]},"s":[2.414],"t":342},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.362],"y":[0.223]},"s":[23.192],"t":433},{"s":[60],"t":464}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"Angler fish 2","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":155},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":190.912},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.325,25.294],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.665,6.973]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-602.535,812.235],[-579.565,813.423],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-605.064,861.17]]}],"t":236},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-10.821,26.98],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.429,4.419]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-600.336,817.891],[-577.413,816.002],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-596.311,866.725]]}],"t":271},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.31,25.303],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.669,6.962]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-598.873,811.928],[-575.903,813.102],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.373,860.865]]}],"t":303},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-10.473,27.117],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.484,4.169]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-606.141,817.304],[-583.245,815.12],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.488,866.083]]}],"t":333},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.177,25.377],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.705,6.864]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-603.958,806.032],[-580.982,807.085],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-606.202,854.981]]}],"t":360},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-9.947,27.314],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.561,3.791]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-614.819,809.549],[-591.969,806.923],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-609.224,858.229]]}],"t":381},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.31,25.303],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.669,6.962]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-598.873,811.928],[-575.903,813.102],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.373,860.865]]}],"t":402},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":421},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":434},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":443},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":451},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":455},{"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body fiill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[5.817,1.697],[5.621,2.263],[-1.551,5.857],[-1.458,1.732],[-17.965,8.403],[-13.698,2.968],[-13.227,-4.634],[-4.013,-4.383],[4.455,-13.052],[0.782,-0.839],[1.404,-0.449],[18.675,-5.969],[17.926,-1.873]],"o":[[-0.229,-6.055],[-5.817,-1.697],[-5.621,-2.263],[0.58,-2.188],[12.771,-15.174],[12.695,-5.938],[13.698,-2.968],[5.608,1.965],[9.313,10.172],[-0.37,1.085],[-1.005,1.079],[-18.675,5.969],[-17.168,5.487],[0,0]],"v":[[-496.897,718.062],[-508.825,705.95],[-526.531,701.972],[-535.65,688.084],[-532.199,682.301],[-483.369,649.16],[-443.995,634.668],[-402.505,636.099],[-387.475,645.343],[-382.804,684.465],[-384.371,687.498],[-388.25,689.515],[-444.274,707.422],[-496.685,720.302]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-457.885,676.408]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-457.885,676.408]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"top fin","np":1,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.283,1.812],[4.205,-2.799],[-1.505,-4.144],[-3.346,-2.87],[-19.01,-3.887],[-17.836,7.641],[-2.733,7.173]],"o":[[-7.675,3.604],[-4.934,-1.079],[-3.67,2.443],[1.505,4.144],[14.728,12.633],[19.01,3.887],[7.056,-3.023],[0,0]],"v":[[-529.005,955.744],[-553.833,958.533],[-568.524,958.312],[-571.525,970.203],[-563.368,980.422],[-511.86,1006.175],[-454.787,1000.84],[-437.864,986.166]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-505.049,982.233]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-505.049,982.233]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"bottom fin","np":1,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.44,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-7.426,-11.677],[0.62,-14.527],[3.327,-16.385]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[7.802,12.27],[-0.823,19.28],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-214.768,627.475],[-181.273,650.286],[-171.177,692.22],[-177.327,739.385]]}],"t":45},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":77},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[2.51,-14.322],[5.436,-15.81]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[-3.331,19.008],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-219.753,632.489],[-193.737,662.822],[-194.969,715.842],[-208.476,759.305]]}],"t":108},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":127},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":false,"i":[[0,0],[-41.861,-0.423],[-9.041,-10.477],[-2.324,-8.872],[2.405,-14.34],[5.32,-15.85]],"o":[[22.394,-35.37],[13.838,0.14],[12.115,14.039],[3.685,14.066],[-3.191,19.032],[0,0]],"v":[[-356.957,696.004],[-259.26,641.159],[-216.329,660.562],[-201.823,695.973],[-199.219,738.048],[-211.132,784.096]]}],"t":159},{"i":{"x":0.48,"y":0.48},"o":{"x":0.44,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-12.575,-15.463],[-2.37,-16.893]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[12.175,14.972],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-199.461,614.045],[-169.868,643.1],[-153.497,684.314]]}],"t":195},{"i":{"x":0.44,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-7.426,-11.677],[0.62,-14.527],[3.327,-16.385]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[7.802,12.27],[-0.823,19.28],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-214.768,627.475],[-181.273,650.286],[-171.177,692.22],[-177.327,739.385]]}],"t":223},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":255},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[2.51,-14.322],[5.436,-15.81]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[-3.331,19.008],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-219.753,632.489],[-193.737,662.822],[-194.969,715.842],[-208.476,759.305]]}],"t":286},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":305},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":false,"i":[[0,0],[-41.861,-0.423],[-9.041,-10.477],[-2.324,-8.872],[2.405,-14.34],[5.32,-15.85]],"o":[[22.394,-35.37],[13.838,0.14],[12.115,14.039],[3.685,14.066],[-3.191,19.032],[0,0]],"v":[[-356.957,696.004],[-259.26,641.159],[-216.329,660.562],[-201.823,695.973],[-199.219,738.048],[-211.132,784.096]]}],"t":337},{"i":{"x":0.35,"y":1},"o":{"x":0.44,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-12.575,-15.463],[-2.37,-16.893]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[12.175,14.972],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-199.461,614.045],[-169.868,643.1],[-153.497,684.314]]}],"t":382},{"i":{"x":0.44,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[-1.355,-14.477],[1.075,-16.684]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[1.799,19.214],[0,0]],"v":[[-356.957,696.004],[-273.583,616.332],[-237.381,621.44],[-211.364,651.772],[-203.966,709.295],[-205.535,754.781]]}],"t":410},{"i":{"x":0.46,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":438},{"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":463}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"angler line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.44,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[7.625,1.085],[5.118,-2.109],[-7.151,-10.802],[-9.574,0.424],[-0.479,5.565],[5.282,5.285]],"o":[[-5.716,-0.813],[-10.031,4.134],[4.193,6.334],[13.164,-0.583],[0.835,-9.696],[-5.282,-5.285]],"v":[[-175.888,736.998],[-192.969,739.866],[-198.193,773.416],[-172.426,782.076],[-148.835,765.946],[-154.348,745.363]]}],"t":45},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":77},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":true,"i":[[7.419,2.071],[5.35,-1.423],[-5.681,-11.642],[-9.548,-0.829],[-1.201,5.455],[4.547,5.929]],"o":[[-5.561,-1.552],[-10.485,2.79],[3.331,6.827],[13.128,1.14],[2.093,-9.504],[-4.547,-5.929]],"v":[[-206.737,757.127],[-224.046,757.743],[-233.602,790.324],[-209.185,802.272],[-183.692,789.356],[-186.473,768.23]]}],"t":108},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":127},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":true,"i":[[7.434,2.016],[5.339,-1.463],[-5.766,-11.6],[-9.553,-0.759],[-1.161,5.464],[4.591,5.896]],"o":[[-5.572,-1.511],[-10.464,2.867],[3.381,6.803],[13.136,1.043],[2.023,-9.519],[-4.591,-5.896]],"v":[[-209.409,781.905],[-226.713,782.648],[-236.03,815.298],[-211.526,827.066],[-186.128,813.964],[-189.064,792.859]]}],"t":159},{"i":{"x":0.48,"y":0.48},"o":{"x":0.44,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-153.459,681.527],[-166.753,692.63],[-154.317,724.224],[-127.704,718.685],[-115.49,692.848],[-130.644,677.868]]}],"t":195},{"i":{"x":0.44,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.625,1.085],[5.118,-2.109],[-7.151,-10.802],[-9.574,0.424],[-0.479,5.565],[5.282,5.285]],"o":[[-5.716,-0.813],[-10.031,4.134],[4.193,6.334],[13.164,-0.583],[0.835,-9.696],[-5.282,-5.285]],"v":[[-175.888,736.998],[-192.969,739.866],[-198.193,773.416],[-172.426,782.076],[-148.835,765.946],[-154.348,745.363]]}],"t":223},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":255},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":true,"i":[[7.419,2.071],[5.35,-1.423],[-5.681,-11.642],[-9.548,-0.829],[-1.201,5.455],[4.547,5.929]],"o":[[-5.561,-1.552],[-10.485,2.79],[3.331,6.827],[13.128,1.14],[2.093,-9.504],[-4.547,-5.929]],"v":[[-206.737,757.127],[-224.046,757.743],[-233.602,790.324],[-209.185,802.272],[-183.692,789.356],[-186.473,768.23]]}],"t":286},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":305},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":true,"i":[[7.434,2.016],[5.339,-1.463],[-5.766,-11.6],[-9.553,-0.759],[-1.161,5.464],[4.591,5.896]],"o":[[-5.572,-1.511],[-10.464,2.867],[3.381,6.803],[13.136,1.043],[2.023,-9.519],[-4.591,-5.896]],"v":[[-209.409,781.905],[-226.713,782.648],[-236.03,815.298],[-211.526,827.066],[-186.128,813.964],[-189.064,792.859]]}],"t":337},{"i":{"x":0.35,"y":1},"o":{"x":0.44,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-153.459,681.527],[-166.753,692.63],[-154.317,724.224],[-127.704,718.685],[-115.49,692.848],[-130.644,677.868]]}],"t":382},{"i":{"x":0.44,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[7.702,0.041],[4.785,-2.784],[-8.55,-9.732],[-9.428,1.718],[0.28,5.579],[5.95,4.52]],"o":[[-5.773,-0.031],[-9.378,5.456],[5.014,5.707],[12.964,-2.362],[-0.487,-9.72],[-5.95,-4.52]],"v":[[-204.432,752.222],[-220.966,757.38],[-221.593,791.328],[-194.889,796.414],[-173.704,777.234],[-181.957,757.589]]}],"t":410},{"i":{"x":0.46,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":438},{"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":463}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"angler ball","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":155},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":190.912},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[31.239,6.303],[-1.827,12.671],[-18.543,9.072],[-18.556,-2.152]],"o":[[0,0],[-26.419,-5.33],[1.827,-12.671],[18.649,-9.124],[0,0]],"v":[[-603.963,859.224],[-651.268,858.322],[-662.089,825.719],[-642.113,780.482],[-602.535,812.235]]}],"t":236},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.097,-13.46],[-0.093,9.992],[-13.398,8.949],[-18.677,0.344]],"o":[[0,0],[-17.734,11.314],[0.093,-9.992],[13.475,-9],[0,0]],"v":[[-595.479,864.65],[-624.899,892.777],[-646.229,872.53],[-639.89,831.018],[-600.336,817.891]]}],"t":271},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[26.593,-12.344],[-1.664,11.587],[-15.203,-11.186],[-18.557,-2.141]],"o":[[0,0],[-22.353,10.376],[1.664,-11.587],[18.963,13.953],[0,0]],"v":[[-600.273,858.918],[-636.13,867.924],[-657.745,841.094],[-641.556,785.364],[-598.873,811.928]]}],"t":303},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[16.639,-18.313],[2.502,9.557],[-13.429,8.569],[-18.671,0.585]],"o":[[0,0],[-13.986,15.393],[-2.502,-9.557],[14.062,-8.974],[0,0]],"v":[[-600.683,863.997],[-617.424,889.99],[-649.742,866.838],[-648.692,827.553],[-606.141,817.304]]}],"t":333},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[23.331,-3.752],[1.295,11.201],[-16.547,7.531],[-18.568,-2.043]],"o":[[0,0],[-21.003,3.378],[-1.295,-11.2],[17.328,-7.886],[0,0]],"v":[[-605.111,853.029],[-632.248,870.059],[-657.365,848.727],[-660.307,785.817],[-603.958,806.032]]}],"t":360},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[14.107,-17.621],[4.321,7.366],[-9.167,10.277],[-18.656,0.945]],"o":[[0,0],[-11.236,14.035],[-4.321,-7.366],[9.599,-10.762],[0,0]],"v":[[-608.459,856.128],[-621.861,888.122],[-649.5,874.921],[-666.466,827.685],[-614.819,809.549]]}],"t":381},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[26.593,-12.344],[-1.664,11.587],[-15.203,-11.186],[-18.557,-2.141]],"o":[[0,0],[-22.353,10.376],[1.664,-11.587],[18.963,13.953],[0,0]],"v":[[-600.273,858.918],[-636.13,867.924],[-657.745,841.094],[-641.556,785.364],[-598.873,811.928]]}],"t":402},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":421},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":434},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":443},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":451},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":455},{"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-633.617,826.699]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-633.617,826.699]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"rear fin","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":36,"ip":382,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.167]},"s":[226.748],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.141]},"s":[548.586],"t":535},{"s":[796.748],"t":624}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[343.038],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.08]},"s":[324.433],"t":535},{"s":[336.038],"t":624}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-6],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-3],"t":535},{"s":[8],"t":624}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 28","op":625,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":255,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":37,"ip":409,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.851]},"o":{"x":[0.167],"y":[0.167]},"s":[239.686],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.291]},"s":[655.292],"t":548},{"s":[809.686],"t":624}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.066]},"o":{"x":[0.167],"y":[0.167]},"s":[323.142],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.074]},"s":[293.391],"t":548},{"s":[314.142],"t":624}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":548},{"s":[15],"t":624}]},"s":{"a":0,"ix":6,"k":[-29,29,100]}},"nm":"skinny fish 27","op":625,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":382,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":38,"ip":364,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.167]},"s":[230.769],"t":364},{"i":{"x":[0.688],"y":[0.712]},"o":{"x":[0.167],"y":[0.168]},"s":[429.769],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.379],"y":[0.385]},"s":[650.769],"t":528},{"s":[770.769],"t":580}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.55],"y":[1.033]},"o":{"x":[0.167],"y":[0.167]},"s":[353.463],"t":364},{"i":{"x":[0.652],"y":[-0.359]},"o":{"x":[0.405],"y":[1.216]},"s":[335.463],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.506],"y":[-0.021]},"s":[335.963],"t":528},{"s":[307.963],"t":580}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11.513],"t":364},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":528},{"s":[-21.513],"t":580}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 26","op":581,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":266,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":39,"ip":94,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.167]},"s":[223.748],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.176]},"s":[497.259],"t":240.326},{"s":[766.748],"t":413}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[427.038],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.075]},"s":[413.433],"t":240.326},{"s":[431.038],"t":413}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-8],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":240},{"s":[9],"t":413}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 25","op":414,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":-43,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":40,"ip":121,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.795]},"o":{"x":[0.167],"y":[0.167]},"s":[236.686],"t":120.707},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.205]},"s":[456.292],"t":258},{"s":[784.686],"t":413}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.096]},"o":{"x":[0.167],"y":[0.167]},"s":[407.142],"t":120.707},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.215]},"s":[392.391],"t":258},{"s":[403.142],"t":413}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-5],"t":121},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[1],"t":258},{"s":[3],"t":413}]},"s":{"a":0,"ix":6,"k":[-23,23,100]}},"nm":"skinny fish 24","op":414,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":84,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":41,"ip":-98,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.167]},"s":[226.748],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.141]},"s":[548.586],"t":55},{"s":[796.748],"t":144}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[343.038],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.08]},"s":[324.433],"t":55},{"s":[336.038],"t":144}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-6],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-3],"t":55},{"s":[8],"t":144}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 18","op":144,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":-225,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":42,"ip":-71,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.851]},"o":{"x":[0.167],"y":[0.167]},"s":[239.686],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.291]},"s":[655.292],"t":68},{"s":[809.686],"t":144}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.066]},"o":{"x":[0.167],"y":[0.167]},"s":[323.142],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.074]},"s":[293.391],"t":68},{"s":[314.142],"t":144}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":68},{"s":[15],"t":144}]},"s":{"a":0,"ix":6,"k":[-29,29,100]}},"nm":"skinny fish 7","op":144,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-98,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":43,"ip":-116,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.167]},"s":[230.769],"t":-116},{"i":{"x":[0.688],"y":[0.712]},"o":{"x":[0.167],"y":[0.168]},"s":[429.769],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.379],"y":[0.385]},"s":[650.769],"t":48},{"s":[770.769],"t":100}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.55],"y":[1.033]},"o":{"x":[0.167],"y":[0.167]},"s":[353.463],"t":-116},{"i":{"x":[0.652],"y":[-0.359]},"o":{"x":[0.405],"y":[1.216]},"s":[335.463],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.506],"y":[-0.021]},"s":[335.963],"t":48},{"s":[307.963],"t":100}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11.513],"t":-116},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":48},{"s":[-21.513],"t":100}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 8","op":101,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-214,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":44,"ip":-75,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.81],"y":[0.754]},"o":{"x":[0.167],"y":[0.167]},"s":[241.769],"t":-75},{"i":{"x":[0.736],"y":[0.685]},"o":{"x":[0.32],"y":[0.197]},"s":[383.747],"t":42.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.169],"y":[0.259]},"s":[577.032],"t":118},{"s":[752.769],"t":206}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.617],"y":[-0.25]},"o":{"x":[0.167],"y":[0.167]},"s":[186.463],"t":-75},{"i":{"x":[0.564],"y":[0.972]},"o":{"x":[0.443],"y":[0.973]},"s":[160.463],"t":42.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.37],"y":[-0.036]},"s":[135.463],"t":118},{"s":[154.463],"t":206}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":-75},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-7.513],"t":-5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24.513],"t":42},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-1.513],"t":82},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":118},{"s":[9.487],"t":206}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 14","op":205,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-173,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":45,"ip":-105,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.815],"y":[0.777]},"o":{"x":[0.167],"y":[0.167]},"s":[261.686],"t":-105},{"i":{"x":[0.736],"y":[0.751]},"o":{"x":[0.257],"y":[0.162]},"s":[366.573],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.293],"y":[0.185]},"s":[601.417],"t":105},{"s":[787.686],"t":165}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.762],"y":[1.172]},"o":{"x":[0.298],"y":[-0.456]},"s":[174.219],"t":-105},{"i":{"x":[0.635],"y":[-1.279]},"o":{"x":[0.181],"y":[3.579]},"s":[150.9],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.598],"y":[0.085]},"s":[151.896],"t":105},{"s":[175.142],"t":165}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[10],"t":-105},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-23],"t":-26},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[3],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":21},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2],"t":105},{"s":[13],"t":165}]},"s":{"a":0,"ix":6,"k":[-26,26,100]}},"nm":"skinny fish 12","op":161,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-105,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":46,"ip":403,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.81],"y":[0.754]},"o":{"x":[0.167],"y":[0.167]},"s":[241.769],"t":403},{"i":{"x":[0.736],"y":[0.685]},"o":{"x":[0.32],"y":[0.197]},"s":[383.747],"t":520.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.169],"y":[0.259]},"s":[577.032],"t":596},{"s":[752.769],"t":684}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.617],"y":[-0.25]},"o":{"x":[0.167],"y":[0.167]},"s":[186.463],"t":403},{"i":{"x":[0.564],"y":[0.972]},"o":{"x":[0.443],"y":[0.973]},"s":[160.463],"t":520.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.37],"y":[-0.036]},"s":[135.463],"t":596},{"s":[154.463],"t":684}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":403},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-7.513],"t":473},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24.513],"t":520},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-1.513],"t":560},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":596},{"s":[9.487],"t":684}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 30","op":785,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":305,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":47,"ip":373,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.815],"y":[0.777]},"o":{"x":[0.167],"y":[0.167]},"s":[261.686],"t":373},{"i":{"x":[0.736],"y":[0.751]},"o":{"x":[0.257],"y":[0.162]},"s":[366.573],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.293],"y":[0.185]},"s":[601.417],"t":583},{"s":[787.686],"t":643}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.762],"y":[1.172]},"o":{"x":[0.298],"y":[-0.456]},"s":[174.219],"t":373},{"i":{"x":[0.635],"y":[-1.279]},"o":{"x":[0.181],"y":[3.579]},"s":[150.9],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.598],"y":[0.085]},"s":[151.896],"t":583},{"s":[175.142],"t":643}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[10],"t":373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-23],"t":452},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[3],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":499},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2],"t":583},{"s":[13],"t":643}]},"s":{"a":0,"ix":6,"k":[-26,26,100]}},"nm":"skinny fish 29","op":853,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":373,"ty":4},{"ao":0,"bm":0,"ddd":0,"hasMask":true,"ind":48,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"masksProperties":[{"inv":false,"mode":"a","nm":"Mask 1","o":{"a":0,"ix":3,"k":100},"pt":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[88.137,-12.962],[12.805,-45.665],[-38.866,-42.123],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-71.021,10.445],[-17.005,60.643],[55.351,59.99],[95.359,-3.092],[34.698,-67.681],[-67.763,-84.518]],"v":[[370.863,114.962],[244.005,217.498],[269.773,440.293],[508.4,522.256],[727.627,418.208],[731.058,183.362]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.046,-20.379],[10.42,-46.268],[-30.051,-48.804],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-69.808,16.728],[-17.005,75.502],[39.227,63.707],[95.359,-3.092],[34.698,-67.681],[-67.764,-84.518]],"v":[[383.863,122.962],[258.005,233.498],[278.773,455.293],[481.4,523.256],[741.627,414.208],[740.058,184.362]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.046,-20.379],[10.42,-46.268],[-35.044,-45.352],[-83.026,2.692],[-34.698,67.681],[67.942,51.638]],"o":[[-69.808,16.728],[-17.005,75.502],[49.227,63.707],[95.359,-3.092],[34.698,-67.681],[-86.246,-65.55]],"v":[[371.92,120.962],[258.005,233.498],[278.773,455.293],[503.4,529.256],[741.627,414.208],[701.115,163.362]]}],"t":126},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[84.137,-33.962],[14.995,-65.498],[-46.267,-51.524],[-82.802,6.663],[-34.697,67.681],[67.942,51.638]],"o":[[-66.566,26.869],[-17.272,75.441],[48.227,53.707],[102.6,-8.256],[34.698,-67.681],[-86.246,-65.55]],"v":[[356.863,114.962],[252.005,229.498],[278.773,455.293],[529.4,520.256],[741.627,414.208],[717.058,144.362]]}],"t":209},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[84.137,-33.962],[9.995,-61.498],[-51.671,-46.103],[-82.892,5.424],[-34.697,67.681],[74.942,48.638]],"o":[[-66.566,26.869],[-15.042,92.549],[51.227,45.707],[95.6,-6.256],[34.698,-67.681],[-90.869,-58.975]],"v":[[339.863,122.962],[247.005,243.498],[301.773,466.293],[542.4,517.256],[735.627,404.208],[710.058,147.362]]}],"t":307},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[104.137,-40.962],[0.63,-58.048],[-43.773,-49.293],[-82.892,5.424],[-34.697,67.681],[84.65,31.073]],"o":[[-66.802,26.276],[-1.005,92.502],[45.586,51.335],[95.6,-6.256],[34.698,-67.681],[-99.058,-36.362]],"v":[[333.863,133.962],[251.005,274.498],[301.773,466.293],[558.4,522.256],[735.627,411.208],[701.058,133.362]]}],"t":401},{"s":[{"c":true,"i":[[88.137,-12.962],[12.805,-45.665],[-38.866,-42.123],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-71.021,10.445],[-17.005,60.643],[55.351,59.99],[95.359,-3.092],[34.698,-67.681],[-67.763,-84.518]],"v":[[370.863,114.962],[244.005,217.498],[269.773,440.293],[508.4,522.256],[727.627,418.208],[731.058,183.362]]}],"t":479}]},"x":{"a":0,"ix":4,"k":0}}],"nm":"Royal Blue Solid 2","op":480,"sc":"#295bd6","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"hasMask":true,"ind":49,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"masksProperties":[{"inv":false,"mode":"a","nm":"Mask 1","o":{"a":0,"ix":3,"k":100},"pt":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.051,-16.552],[24.831,-57.178],[-41.731,-39.461],[-106.322,-2.671],[-35.963,66.206],[59.082,45.141]],"o":[[-89.051,16.552],[-24.876,57.282],[65.309,61.757],[102.883,2.585],[35.963,-66.207],[-99.87,-76.304]],"v":[[366.083,103.552],[203.585,205.293],[219.691,460.243],[500.411,539.857],[774.655,428.712],[770.918,163.505]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.864,-16.103],[25.058,-55.629],[-32.435,-46.308],[-107.324,0.385],[-36.291,64.412],[59.622,43.917]],"o":[[-89.864,16.103],[-25.104,55.729],[49.797,71.097],[135.123,-0.485],[36.291,-64.412],[-100.782,-74.236]],"v":[[370.69,100.545],[212.076,202.73],[225.346,451.719],[493.877,535.485],[769.393,410.125],[765.378,149.695]]}],"t":47},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[91.89,-16.153],[25.623,-55.802],[-33.166,-46.453],[-109.712,-2.607],[-37.109,64.613],[72.416,64.339]],"o":[[-91.89,16.153],[-25.669,55.903],[50.919,71.319],[106.164,2.523],[37.109,-64.613],[-94.344,-83.821]],"v":[[360.46,101.811],[205.318,206.979],[212.813,458.552],[485.25,551.81],[809.244,445.989],[774.81,168.887]]}],"t":143},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[92.876,-16.153],[25.898,-55.802],[-37.94,-42.92],[-110.889,-2.607],[-37.507,64.613],[73.193,64.339]],"o":[[-92.876,16.153],[-25.945,55.903],[59.508,67.319],[107.303,2.523],[37.507,-64.613],[-95.356,-83.821]],"v":[[387.814,96.295],[215.025,178.915],[213.492,454.681],[510.182,539.777],[798.645,446.957],[790.807,167.661]]}],"t":173},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[88.992,-15.833],[24.815,-54.696],[-44.612,-60.458],[-101.813,-5.663],[-35.939,63.332],[70.132,63.063]],"o":[[-88.992,15.833],[-24.86,54.794],[50.857,68.922],[105.291,5.856],[35.939,-63.332],[-91.368,-82.158]],"v":[[377.077,96.151],[189.86,190.239],[214.481,446.815],[460.575,534.144],[779.335,442.142],[777.868,157.158]]}],"t":269},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.624,-16.429],[18.389,-58.95],[-32.317,-58.667],[-102.537,-5.876],[-44.086,61.037],[70.631,65.438]],"o":[[-89.624,16.429],[-27.674,88.714],[42.298,76.786],[106.04,6.077],[46.251,-64.033],[-92.018,-85.253]],"v":[[383.888,98.571],[196.674,202.286],[215.317,457.202],[467.213,545.923],[766.167,463.722],[776.369,158.225]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.272,-16.153],[25.844,-61.915],[-45.261,-47.159],[-97.558,-5.777],[-41.946,60.011],[67.201,64.339]],"o":[[-85.272,16.153],[-23.474,56.235],[49.252,51.319],[100.891,5.975],[44.005,-62.957],[-87.55,-83.821]],"v":[[371.716,98.295],[210.156,184.915],[224.748,457.681],[484.558,533.777],[778.995,468.957],[768.799,153.661]]}],"t":413},{"s":[{"c":true,"i":[[89.051,-16.552],[24.831,-57.178],[-41.731,-39.461],[-106.322,-2.671],[-35.963,66.206],[59.082,45.141]],"o":[[-89.051,16.552],[-24.876,57.282],[65.309,61.757],[102.883,2.585],[35.963,-66.207],[-99.87,-76.304]],"v":[[366.083,103.552],[203.585,205.293],[219.691,460.243],[500.411,539.857],[774.655,428.712],[770.918,163.505]]}],"t":479}]},"x":{"a":0,"ix":4,"k":0}}],"nm":"Deep Royal Blue Solid 2","op":480,"sc":"#1041b9","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"ind":50,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Deep Royal Blue Solid 1","op":480,"sc":"#062e90","sh":768,"sr":1,"st":0,"sw":1024,"ty":1}],"markers":[],"nm":"Hunter gone too deep","op":480,"v":"5.5.9","w":1024}
\ No newline at end of file
+{"assets":[],"ddd":0,"fr":60,"h":768,"ip":0,"layers":[{"ao":0,"bm":0,"ddd":0,"ind":11,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":0},"p":{"a":0,"ix":2,"k":[512,491,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Null 6","op":480,"sr":1,"st":0,"ty":3},{"ao":0,"bm":0,"ddd":0,"ind":12,"ip":85,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.723],"y":[0.323]},"o":{"x":[0.222],"y":[-0.066]},"s":[558],"t":85},{"i":{"x":[0.751],"y":[0.586]},"o":{"x":[0.33],"y":[0.165]},"s":[517.048],"t":128},{"i":{"x":[0.532],"y":[0.691]},"o":{"x":[0.216],"y":[0.684]},"s":[317.348],"t":171},{"i":{"x":[0.606],"y":[0.66]},"o":{"x":[0.353],"y":[0.322]},"s":[176.07],"t":229},{"i":{"x":[0.52],"y":[0.366]},"o":{"x":[0.286],"y":[0.307]},"s":[103.522],"t":270},{"i":{"x":[0.87],"y":[0.968]},"o":{"x":[0.363],"y":[0.471]},"s":[-84.301],"t":402},{"s":[-188.5],"t":474}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.675],"y":[0.829]},"o":{"x":[0.206],"y":[0.013]},"s":[-14],"t":85},{"i":{"x":[0.474],"y":[0.581]},"o":{"x":[0.346],"y":[0.6]},"s":[82],"t":128},{"i":{"x":[0.748],"y":[0.537]},"o":{"x":[0.59],"y":[0.621]},"s":[111.156],"t":171},{"i":{"x":[0.719],"y":[1.207]},"o":{"x":[0.325],"y":[1.507]},"s":[140.939],"t":229},{"i":{"x":[0.658],"y":[-2.304]},"o":{"x":[0.268],"y":[-0.246]},"s":[149.301],"t":270},{"i":{"x":[0.824],"y":[0.972]},"o":{"x":[0.472],"y":[0.216]},"s":[170.943],"t":402},{"s":[419.5],"t":474}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.554],"y":[1.061]},"o":{"x":[0.167],"y":[0.167]},"s":[-75],"t":85},{"i":{"x":[0.431],"y":[0.998]},"o":{"x":[0.543],"y":[0.161]},"s":[-2],"t":171},{"i":{"x":[0.484],"y":[0.75]},"o":{"x":[0.448],"y":[-0.001]},"s":[-21],"t":220},{"i":{"x":[0.649],"y":[0.019]},"o":{"x":[0.357],"y":[-0.261]},"s":[7],"t":270},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.449],"y":[0.406]},"s":[-41.814],"t":402},{"s":[-75],"t":431}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish 2","op":480,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[9.799,-0.668],[5.305,-4.476],[-6.346,-0.784],[-7.617,-0.431],[3.274,1.837]],"o":[[-9.799,0.668],[-5.305,4.476],[8.226,1.016],[23.752,1.343],[-8.565,-4.806]],"v":[[827.651,-889.492],[799.055,-882.726],[812.274,-869.016],[834.748,-873.343],[855.476,-882.087]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-10.607,1.745]],"o":[[7.65,6.434],[0,0]],"v":[[654.1,-885.684],[682.857,-878.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-1.151,-1.189],[-0.266,-8.19],[4.624,-6.46]],"o":[[5.7,5.887],[0.287,8.845],[-3.352,4.683]],"v":[[751.734,-916.389],[758.963,-895.845],[751.876,-872.29]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.43,-8.147],[-0.041,-3.616],[1.549,-4.99],[3.123,-4.858]],"o":[[5.598,6.09],[0.625,3.561],[0.059,5.225],[-1.549,4.99],[0,0]],"v":[[765.155,-926.346],[775.992,-904.394],[776.837,-893.592],[775.107,-878.079],[767.127,-863.392]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.168,0.712],[2.927,-3.333],[-3.049,-4.257],[-1.942,2.968]],"o":[[-5.661,-3.45],[-2.927,3.333],[2.065,2.884],[3.179,-4.86]],"v":[[719.162,-908.297],[704.881,-905.576],[705.58,-889.884],[720.407,-890.887]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.719,2.297],[-4.098,-0.144],[-0.938,-8.857],[0.179,-0.175],[0.343,0.012],[2.106,1.262]],"o":[[-0.084,-2.406],[0.93,-2.972],[7.353,0.258],[0.026,0.249],[-0.245,0.24],[-2.6,-0.091],[0,0]],"v":[[911.595,-858.003],[912.87,-865.075],[925.098,-877.106],[926.688,-856.893],[926.401,-856.213],[925.428,-855.981],[910.496,-857.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.437,2.995],[-3.621,1.097],[-0.208,-3.066],[2.323,-7.496],[4.276,-0.366]],"o":[[-0.184,-1.607],[1.674,-3.489],[2.831,-0.858],[0.394,5.805],[-4.014,-1.518],[0,0]],"v":[[940.958,-854.479],[946.503,-868.088],[952.169,-876.392],[957.483,-868.859],[953.838,-851.79],[941.193,-853.546]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stripes","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-10.08,-8.253],[-2.161,1.189],[-18.243,10.28],[-0.744,10.463],[33.849,-8.167]],"o":[[10.08,8.253],[1.188,0.973],[15.458,-8.506],[7.85,-4.424],[-34.624,-3.694],[0,0]],"v":[[824.518,-847.929],[854.758,-823.171],[865.644,-822.867],[923,-835.748],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[0.711,0.627],[3.128,3.395]],"o":[[-0.879,0.355],[-3.464,-3.051],[0,0]],"v":[[861.249,-839.244],[858.723,-840.178],[848.826,-849.855]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.648,3.494]],"o":[[-2.511,-3.593],[0,0]],"v":[[874.064,-842.548],[866.326,-853.179]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.056,3.987]],"o":[[-4.994,-1.88],[0,0]],"v":[[896.994,-845.87],[885.961,-855.024]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":13,"ip":60,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.831]},"o":{"x":[0.167],"y":[0.167]},"s":[600],"t":60},{"i":{"x":[0.833],"y":[0.847]},"o":{"x":[0.167],"y":[0.164]},"s":[384],"t":120},{"i":{"x":[0.834],"y":[0.897]},"o":{"x":[0.167],"y":[0.195]},"s":[213],"t":166},{"i":{"x":[0.743],"y":[0.725]},"o":{"x":[0.287],"y":[0.507]},"s":[131],"t":194},{"i":{"x":[0.723],"y":[0.577]},"o":{"x":[0.167],"y":[0.124]},"s":[43],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.543],"y":[0.373]},"s":[-120],"t":390},{"s":[-239],"t":426}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.84],"y":[1.468]},"o":{"x":[0.167],"y":[0.167]},"s":[91.5],"t":60},{"i":{"x":[0.543],"y":[0.956]},"o":{"x":[0.406],"y":[0.264]},"s":[68.5],"t":120},{"i":{"x":[0.545],"y":[0.672]},"o":{"x":[0.416],"y":[-0.058]},"s":[147.5],"t":166},{"i":{"x":[0.566],"y":[0.281]},"o":{"x":[0.231],"y":[-2.412]},"s":[114.5],"t":194},{"i":{"x":[0.841],"y":[-0.356]},"o":{"x":[0.376],"y":[0.238]},"s":[121.5],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.437],"y":[0.132]},"s":[144.978],"t":390},{"s":[361.5],"t":426}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[9],"t":100},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-14],"t":120},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-34],"t":135},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-15],"t":160},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[23],"t":175},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[4],"t":205},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-19],"t":225},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11],"t":270},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":280},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-14],"t":375},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-52],"t":395},{"s":[-68],"t":426}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish 3","op":540,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[7.628,-0.52],[4.13,-3.484],[-4.941,-0.61],[-5.93,-0.335],[2.549,1.43]],"o":[[-7.628,0.52],[-4.13,3.484],[6.404,0.791],[18.491,1.046],[-6.668,-3.741]],"v":[[840.79,-895.973],[818.529,-890.705],[828.819,-880.032],[846.315,-883.401],[862.451,-890.208]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.703,-2.695]],"o":[[5.964,2.798],[0,0]],"v":[[730.536,-889.298],[749.203,-880.805]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.854,-4.863],[-0.024,-2.158],[0.925,-2.979],[1.864,-2.9]],"o":[[3.342,3.635],[0.373,2.126],[0.035,3.119],[-0.925,2.979],[0,0]],"v":[[796.83,-913.571],[803.299,-900.466],[803.803,-894.018],[802.77,-884.758],[798.007,-875.991]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.377,0.839],[3.45,-3.928],[-3.594,-5.018],[-2.289,3.499]],"o":[[-6.673,-4.067],[-3.45,3.928],[2.435,3.399],[3.747,-5.729]],"v":[[775.785,-909.909],[758.95,-906.703],[759.775,-888.204],[777.253,-889.387]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-6.017,-4.926],[-1.29,0.71],[-10.89,6.137],[-0.444,6.246],[20.206,-4.875]],"o":[[6.017,4.926],[0.709,0.581],[9.227,-5.077],[4.686,-2.641],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.76],[850.318,-851.981],[856.816,-851.799],[891.054,-859.489],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":60,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":14,"ip":110,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.658],"y":[0.223]},"o":{"x":[0.255],"y":[0.072]},"s":[551.022],"t":110},{"i":{"x":[0.525],"y":[0.902]},"o":{"x":[0.433],"y":[0.234]},"s":[507.146],"t":159},{"i":{"x":[0.689],"y":[0.099]},"o":{"x":[0.357],"y":[0.154]},"s":[315.313],"t":210},{"i":{"x":[0.793],"y":[0.396]},"o":{"x":[0.445],"y":[1.113]},"s":[117.343],"t":320},{"i":{"x":[0.765],"y":[0.825]},"o":{"x":[0.378],"y":[0.57]},"s":[-103.549],"t":426},{"s":[-261],"t":465}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.838],"y":[0.733]},"o":{"x":[0.353],"y":[-0.056]},"s":[53.082],"t":110},{"i":{"x":[0.523],"y":[0.849]},"o":{"x":[0.258],"y":[0.398]},"s":[92.636],"t":159},{"i":{"x":[0.617],"y":[1.101]},"o":{"x":[0.236],"y":[0.17]},"s":[136.519],"t":210},{"i":{"x":[0.854],"y":[0.104]},"o":{"x":[0.431],"y":[-0.086]},"s":[178.068],"t":320},{"i":{"x":[0.826],"y":[0.659]},"o":{"x":[0.721],"y":[0.484]},"s":[231],"t":426},{"s":[408.5],"t":465}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.667],"y":[0.801]},"o":{"x":[0.436],"y":[-0.031]},"s":[-47.266],"t":110},{"i":{"x":[0.626],"y":[1.734]},"o":{"x":[0.456],"y":[0.405]},"s":[-16.016],"t":180},{"i":{"x":[0.721],"y":[0.411]},"o":{"x":[0.417],"y":[-3.306]},"s":[-6.996],"t":210},{"i":{"x":[0.609],"y":[0.219]},"o":{"x":[0.171],"y":[-0.097]},"s":[1.932],"t":330},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.577],"y":[0.294]},"s":[-24.672],"t":426},{"s":[-67],"t":465}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"skinny fish","op":479,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-5.885,-2.501],[-2.649,0.801],[-7.066,2.137],[1.003,0.797],[9.799,-0.668],[9.34,-3.038]],"o":[[5.648,2.998],[7.539,3.203],[7.066,-2.137],[0.437,-0.132],[-7.691,-6.108],[-9.799,0.668],[0,0]],"v":[[799.829,-882.761],[816.774,-873.766],[834.248,-871.843],[855.446,-878.255],[855.476,-882.087],[827.651,-889.492],[799.055,-882.726]]}},"mn":"ADBE Vector Shape - Group","nm":"side fin","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-13.462,8.788]],"o":[[14.395,7.157],[0,0]],"v":[[656.185,-861.497],[702.192,-864.19]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-1.282,-1.047],[-1.805,-7.993],[1.328,-5.604],[4.964,-2.92]],"o":[[1.647,0.164],[6.347,5.182],[1.269,5.618],[-1.328,5.604],[0,0]],"v":[[741.128,-910.099],[745.514,-907.933],[757.279,-886.867],[757.692,-869.744],[748.111,-855.928]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.37,-7.925],[11.09,-8.096]],"o":[[6.27,5.395],[1.036,3.464],[0,0]],"v":[[761.742,-914.83],[775.064,-894.291],[769.785,-854.654]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.227,0.716],[2.617,-3.793],[-7.25,-4.54],[-3.304,1.802]],"o":[[-3.98,-2.322],[-2.617,3.793],[3.123,1.956],[8.943,-4.877]],"v":[[716.127,-890.785],[703.94,-887.704],[706.562,-871.596],[717.557,-872.741]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-8.817,3.007],[-0.061,-0.952],[0.247,-5.866],[0.152,-0.17],[0.243,-0.026],[6.947,-0.738]],"o":[[2.096,-9.313],[4.291,-1.463],[0.377,5.859],[-0.01,0.228],[-0.163,0.182],[-6.947,0.738],[0,0]],"v":[[874.796,-856.081],[890.647,-879.099],[895.268,-875.519],[895.463,-857.914],[895.283,-857.268],[894.611,-857.023],[873.77,-854.81]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.669,-0.239],[1.711,-2.601],[-0.084,-2.406],[-2.453,-0.086],[-2.6,-0.091],[-0.245,0.24],[-0.05,0.245],[0.377,6.21]],"o":[[-2.932,1.048],[-1.711,2.601],[0,0],[2.6,0.091],[0.343,0.012],[0.179,-0.175],[1.236,-6.097],[-0.105,-1.728]],"v":[[923.637,-879.497],[916.598,-873.606],[911.595,-858.003],[918.566,-857.192],[925.428,-855.981],[926.401,-856.213],[926.688,-856.893],[927.984,-875.458]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.441,-0.193],[1.674,-3.489],[-0.184,-1.607],[-4.014,-1.518],[1.642,6.797]],"o":[[-3.544,1.554],[-1.437,2.995],[0,0],[2.323,-7.496],[-0.424,-1.756]],"v":[[953.669,-876.892],[946.503,-868.088],[940.958,-854.479],[953.838,-851.79],[957.983,-873.609]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-22.326,10.403],[-0.605,-4.596],[4.479,-12.172],[1.033,0.032],[26.641,0.837]],"o":[[15.167,-19.407],[23.239,-10.828],[1.694,12.859],[-0.388,1.055],[-26.641,-0.837],[0,0]],"v":[[782.341,-932.416],[837.948,-980.359],[871.464,-969.245],[867.203,-930.949],[862.382,-927.682],[782.458,-930.192]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"top fin","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.343,0],[3,-44],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-51,0],[-3,44],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[766,-932],[656,-860],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"body","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-1.831,-0.397],[-2.637,1.451],[-21.399,-2.398],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[2.942,0.637],[18.865,-10.381],[-7.015,-7.798],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[861.425,-816.555],[866.231,-813.748],[874.711,-816.184],[937.084,-828.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[0.868,0.765],[3.818,4.143]],"o":[[-1.073,0.433],[-4.228,-3.724],[0,0]],"v":[[869.347,-836.172],[866.264,-837.311],[854.185,-849.122]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.231,4.264]],"o":[[-3.064,-4.385],[0,0]],"v":[[884.987,-840.204],[875.543,-853.179]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[3.056,3.987]],"o":[[-3.056,-3.987],[0,0]],"v":[[901.378,-844.564],[892.211,-856.524]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-1.831,-0.397],[-2.637,1.451],[-21.399,-2.398],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[2.942,0.637],[18.865,-10.381],[-7.015,-7.798],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[861.425,-816.555],[866.231,-813.748],[874.711,-816.184],[937.084,-828.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[880.505,-836.038]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[880.505,-836.038]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bottom fin","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.035,-2.859],[-0.602,3.172],[2.616,3.135],[0.654,0.302],[0.681,-0.01],[5.304,-1.284],[4.501,-1.089]],"o":[[7.086,10.14],[9.984,2.372],[0.717,-3.776],[-0.461,-0.553],[-0.619,-0.286],[-5.457,0.077],[-4.501,1.089],[0,0]],"v":[[767.821,-830.314],[797.453,-809.184],[813.703,-814.648],[801.487,-834.299],[799.888,-835.724],[797.882,-836.015],[781.763,-833.363],[768.261,-830.095]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"bottom fin 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[0,35],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[0,-35],[-17,-12]],"v":[[1038.625,-941.188],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1043,-832.75],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":-1,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":15,"ip":137,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.83],"y":[0.874]},"o":{"x":[0.186],"y":[0.266]},"s":[558.5],"t":138},{"i":{"x":[0.832],"y":[0.65]},"o":{"x":[0.258],"y":[0.346]},"s":[421.438],"t":189},{"i":{"x":[0.584],"y":[0.701]},"o":{"x":[0.48],"y":[0.432]},"s":[267.562],"t":293},{"i":{"x":[0.556],"y":[0.587]},"o":{"x":[0.217],"y":[0.322]},"s":[174.972],"t":320},{"i":{"x":[0.816],"y":[0.6]},"o":{"x":[0.486],"y":[0.218]},"s":[70.592],"t":383},{"i":{"x":[0.822],"y":[1.009]},"o":{"x":[0.382],"y":[0.67]},"s":[-118.136],"t":438},{"s":[-190.5],"t":455}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.678],"y":[0.52]},"o":{"x":[0.012],"y":[-0.026]},"s":[114],"t":138},{"i":{"x":[0.881],"y":[1.274]},"o":{"x":[0.283],"y":[0.697]},"s":[97.773],"t":189},{"i":{"x":[0.552],"y":[0.324]},"o":{"x":[0.493],"y":[0.224]},"s":[77.739],"t":293},{"i":{"x":[0.553],"y":[0.763]},"o":{"x":[0.253],"y":[0.485]},"s":[104.163],"t":320},{"i":{"x":[0.845],"y":[0.394]},"o":{"x":[0.479],"y":[0.231]},"s":[152.723],"t":383},{"i":{"x":[0.965],"y":[0.829]},"o":{"x":[0.524],"y":[0.157]},"s":[199.341],"t":438},{"s":[387],"t":455}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.312],"y":[0.708]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":138},{"i":{"x":[0.75],"y":[4.983]},"o":{"x":[0.333],"y":[3.814]},"s":[7],"t":165},{"i":{"x":[0.626],"y":[0.814]},"o":{"x":[0.444],"y":[0.146]},"s":[7],"t":269},{"i":{"x":[0.64],"y":[-0.475]},"o":{"x":[0.336],"y":[-0.66]},"s":[-28.491],"t":345},{"i":{"x":[0.696],"y":[-1.301]},"o":{"x":[0.447],"y":[-1.322]},"s":[-24],"t":383},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.514],"y":[0.226]},"s":[-33],"t":438},{"s":[-81],"t":455}]},"s":{"a":0,"ix":6,"k":[24,24,100]}},"nm":"skinny fish 5","op":490,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":10,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":16,"ip":164,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.636],"y":[0.533]},"o":{"x":[0.437],"y":[-0.028]},"s":[554.5],"t":165},{"i":{"x":[0.702],"y":[0.775]},"o":{"x":[0.218],"y":[0.489]},"s":[489.5],"t":197},{"i":{"x":[0.547],"y":[0.172]},"o":{"x":[0.391],"y":[0.22]},"s":[398.687],"t":275},{"i":{"x":[0.675],"y":[0.686]},"o":{"x":[0.467],"y":[0.377]},"s":[261.522],"t":363},{"i":{"x":[0.91],"y":[0.733]},"o":{"x":[0.602],"y":[0.517]},"s":[14.121],"t":433},{"s":[-105],"t":463}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.528],"y":[0.883]},"o":{"x":[0.019],"y":[0.109]},"s":[93.5],"t":165},{"i":{"x":[0.825],"y":[0.718]},"o":{"x":[0.337],"y":[-0.424]},"s":[131.618],"t":197},{"i":{"x":[0.593],"y":[1.128]},"o":{"x":[0.227],"y":[0.593]},"s":[113.534],"t":274},{"i":{"x":[0.755],"y":[0.2]},"o":{"x":[0.35],"y":[0.014]},"s":[100.612],"t":363},{"i":{"x":[0.965],"y":[0.734]},"o":{"x":[0.435],"y":[0.203]},"s":[179.675],"t":433},{"s":[416.5],"t":463}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.36],"y":[0.75]},"o":{"x":[0.167],"y":[0.167]},"s":[-68.187],"t":165},{"i":{"x":[0.764],"y":[1.019]},"o":{"x":[0.312],"y":[1.086]},"s":[3.142],"t":210},{"i":{"x":[0.834],"y":[0.72]},"o":{"x":[0.167],"y":[0.014]},"s":[14.676],"t":275},{"i":{"x":[0.836],"y":[0.737]},"o":{"x":[0.468],"y":[0.286]},"s":[-0.577],"t":363},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.402],"y":[0.319]},"s":[-20.685],"t":405},{"s":[-64.207],"t":450}]},"s":{"a":0,"ix":6,"k":[19,19,100]}},"nm":"skinny fish 6","op":546,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":66,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":17,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.604],"y":[0.387]},"o":{"x":[0.353],"y":[0.242]},"s":[543.5],"t":195},{"i":{"x":[0.607],"y":[0.388]},"o":{"x":[0.318],"y":[0.132]},"s":[520.321],"t":237},{"i":{"x":[0.689],"y":[0.738]},"o":{"x":[0.306],"y":[0.265]},"s":[401.118],"t":295},{"i":{"x":[0.777],"y":[0.799]},"o":{"x":[0.475],"y":[0.515]},"s":[260.778],"t":333},{"i":{"x":[0.806],"y":[0.95]},"o":{"x":[0.564],"y":[0.688]},"s":[39.853],"t":410},{"s":[-95.5],"t":474}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.831],"y":[0.761]},"o":{"x":[0.533],"y":[0.308]},"s":[127.5],"t":195},{"i":{"x":[0.64],"y":[-0.541]},"o":{"x":[0.396],"y":[-1.016]},"s":[141.81],"t":237},{"i":{"x":[0.526],"y":[0.505]},"o":{"x":[0.344],"y":[0.335]},"s":[130.868],"t":295},{"i":{"x":[0.712],"y":[-0.181]},"o":{"x":[0.407],"y":[-0.87]},"s":[99.351],"t":333},{"i":{"x":[0.983],"y":[0.512]},"o":{"x":[0.345],"y":[0.153]},"s":[130.629],"t":410},{"s":[371],"t":474}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.625],"y":[0.799]},"o":{"x":[0.311],"y":[0.365]},"s":[-38.306],"t":195},{"i":{"x":[0.705],"y":[1.614]},"o":{"x":[0.291],"y":[1.098]},"s":[6.433],"t":263},{"i":{"x":[0.667],"y":[0.679]},"o":{"x":[0.642],"y":[0.119]},"s":[15.02],"t":355},{"i":{"x":[0.705],"y":[0.534]},"o":{"x":[0.364],"y":[0.833]},"s":[-21.72],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.819],"y":[0.357]},"s":[-45.597],"t":444},{"s":[-87.188],"t":470}]},"s":{"a":0,"ix":6,"k":[15,15,100]}},"nm":"skinny fish 4","op":480,"parent":11,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.10122525692,0.453768372536,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":19,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[11.81,62.175,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":15,"ti":[-1.038,5.415,0],"to":[0.165,-3.508,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1348.369,78.178,0],"t":30,"ti":[-0.229,-0.023,0],"to":[1.038,-5.415,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1343.133,66.738,0],"t":125,"ti":[0.644,-1.93,0],"to":[0.229,0.023,0]},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[-1346.994,78.317,0],"t":141,"ti":[0,0,0],"to":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[-1346.994,78.317,0],"t":203,"ti":[0.395,-3.485,0],"to":[0.644,-1.93,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1343.133,66.738,0],"t":218,"ti":[0.841,-6.841,0],"to":[-0.395,3.485,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":240,"ti":[-1.038,5.415,0],"to":[-0.841,6.841,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1348.178,107.783,0],"t":300,"ti":[-0.197,4.911,0],"to":[1.038,-5.415,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1343.133,66.738,0],"t":313,"ti":[1.038,-5.415,0],"to":[0.197,-4.911,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1346.994,78.317,0],"t":435,"ti":[0.395,-3.485,0],"to":[-1.038,5.415,0]},{"s":[-1349.362,99.226,0],"t":457}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":15},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[-11.5],"t":30},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[0.5],"t":125},{"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]},"s":[-3.5],"t":141},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.45],"y":[0]},"s":[-3.5],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[0.5],"t":218},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":240},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-21.5],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[0.5],"t":313},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-3.5],"t":435},{"s":[-18.5],"t":457}]},"s":{"a":0,"ix":6,"k":[175,175,100]}},"nm":"Lamp beam","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-2.852,1.23],[0.094,3.25],[1.598,3.375],[1.692,0.98]],"o":[[3.478,-1.5],[-0.094,-3.25],[-1.598,-3.375],[-1.379,-0.799]],"v":[[-52.057,89.048],[-47.168,71.423],[-50.364,48.298],[-54.783,43.048]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-1.719,1.23],[0.057,3.25],[0.963,3.375],[1.02,0.98]],"o":[[2.097,-1.5],[-0.057,-3.25],[-0.963,-3.375],[-0.831,-0.799]],"v":[[-54.794,89.048],[-51.848,71.423],[-53.774,48.298],[-56.438,43.048]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.652,0.521],[-3.517,6.411],[8.412,7.942],[5.302,3.328]],"o":[[5.616,-0.801],[3.469,-6.323],[-3.633,-3.43],[-1.933,-1.213]],"v":[[-19.704,87.813],[-4.834,76.764],[-8.043,44.51],[-15.172,39.353]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.792,1.23],[0.125,3.25],[2.125,3.375],[2.25,0.98]],"o":[[4.625,-1.5],[-0.125,-3.25],[-2.125,-3.375],[-1.834,-0.799]],"v":[[-49.375,88.895],[-42.875,71.27],[-47.125,48.145],[-53,42.895]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-1.719,1.23],[0.057,3.25],[0.963,3.375],[1.02,0.98]],"o":[[2.097,-1.5],[-0.057,-3.25],[-0.963,-3.375],[-0.831,-0.799]],"v":[[-54.794,89.048],[-51.848,71.423],[-53.774,48.298],[-56.438,43.048]]}],"t":435},{"s":[{"c":false,"i":[[-3.37,0.521],[-3.246,6.411],[7.763,7.942],[4.893,3.328]],"o":[[5.183,-0.801],[3.201,-6.323],[-3.352,-3.43],[-1.784,-1.213]],"v":[[-28.876,88],[-12.863,76.489],[-15.825,44.236],[-22.403,39.079]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.901960790157,0.623529434204,0.117647059262,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"beam circle line 1","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[2.818,-1.36],[-0.094,-3.25],[-2.538,-4.75],[-1.504,0]],"o":[[-4.744,2.29],[0.094,3.25],[1.737,3.251],[1.504,0]],"v":[[-57.173,42.968],[-62.774,61.777],[-59.39,85.152],[-52.997,89.277]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[1.699,-1.36],[-0.057,-3.25],[-1.53,-4.75],[-0.907,0]],"o":[[-2.86,2.29],[0.057,3.25],[1.047,3.251],[0.907,0]],"v":[[-57.878,42.968],[-61.254,61.777],[-59.214,85.152],[-55.361,89.277]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[4.593,0.723],[0.582,-3.467],[-7.849,-5.712],[-2.338,0]],"o":[[-20.18,-3.177],[-0.861,5.126],[5.895,4.29],[2.338,0]],"v":[[-16.426,38.82],[-43.007,58.795],[-35.373,83.427],[-21.39,88.368]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[3.747,-1.36],[-0.125,-3.25],[-3.375,-4.75],[-2,0]],"o":[[-6.308,2.29],[0.125,3.25],[2.31,3.251],[2,0]],"v":[[-56.178,42.815],[-63.625,61.625],[-59.125,85],[-50.625,89.125]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[1.699,-1.36],[-0.057,-3.25],[-1.53,-4.75],[-0.907,0]],"o":[[-2.86,2.29],[0.057,3.25],[1.047,3.251],[0.907,0]],"v":[[-57.878,42.968],[-61.254,61.777],[-59.214,85.152],[-55.361,89.277]]}],"t":435},{"s":[{"c":false,"i":[[4.239,0.723],[0.538,-3.467],[-7.243,-5.712],[-2.157,0]],"o":[[-18.623,-3.177],[-0.795,5.126],[5.44,4.29],[2.157,0]],"v":[[-23.56,38.546],[-48.09,58.521],[-41.046,83.153],[-28.141,88.094]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[1,1,1,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"inside highlight line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.929,0.487],[0,-5.772],[-3.196,0.25],[-0.47,5.375],[0.282,2.625]],"o":[[-4.513,-0.75],[0,8.125],[2.469,-0.193],[0.47,-5.375],[-0.282,-2.625]],"v":[[-51.869,48.527],[-57.039,66.402],[-50.458,86.152],[-47.92,75.652],[-49.142,55.402]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[1.766,0.487],[0,-5.772],[-1.927,0.25],[-0.283,5.375],[0.17,2.625]],"o":[[-2.72,-0.75],[0,8.125],[1.488,-0.193],[0.283,-5.375],[-0.17,-2.625]],"v":[[-54.681,48.527],[-57.798,66.402],[-53.831,86.152],[-52.301,75.652],[-53.038,55.402]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.629,-3.254],[-0.201,-6.223],[-9.29,-5.279],[-1.677,5.668],[7.085,6.151]],"o":[[-8.596,2.632],[0.353,10.895],[11.117,6.316],[2.638,-8.916],[-2.38,-2.067]],"v":[[-25.748,43.549],[-39.56,63.619],[-28.2,84.922],[-4.209,71.134],[-8.686,46.296]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.895,0.487],[0,-5.772],[-4.25,0.25],[-0.625,5.375],[0.375,2.625]],"o":[[-6,-0.75],[0,8.125],[3.283,-0.193],[0.625,-5.375],[-0.375,-2.625]],"v":[[-49.125,48.375],[-56,66.25],[-47.25,86],[-43.875,75.5],[-45.5,55.25]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.766,0.487],[0,-5.772],[-1.927,0.25],[-0.283,5.375],[0.17,2.625]],"o":[[-2.72,-0.75],[0,8.125],[1.488,-0.193],[0.283,-5.375],[-0.17,-2.625]],"v":[[-54.681,48.527],[-57.798,66.402],[-53.831,86.152],[-52.301,75.652],[-53.038,55.402]]}],"t":435},{"s":[{"c":true,"i":[[8.83,-3.254],[-0.167,-6.223],[-7.719,-5.279],[-1.393,5.668],[5.886,6.151]],"o":[[-7.142,2.632],[0.293,10.895],[9.236,6.316],[2.192,-8.916],[-1.977,-2.067]],"v":[[-29.938,43.275],[-41.414,63.345],[-31.975,84.648],[-12.044,70.86],[-15.763,46.021]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"bulb","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.384,-4],[0.376,-6],[-2.256,-3.5],[-2.256,1],[0.376,10.75],[1.489,3.366]],"o":[[-3.027,3.578],[-0.376,6],[2.256,3.5],[2.256,-1],[-0.263,-7.509],[-1.88,-4.25]],"v":[[-59.296,44.652],[-62.68,62.652],[-59.39,85.402],[-52.151,89.152],[-47.638,67.152],[-50.646,48.152]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[2.04,-4],[0.227,-6],[-1.36,-3.5],[-1.36,1],[0.227,10.75],[0.898,3.366]],"o":[[-1.825,3.578],[-0.227,6],[1.36,3.5],[1.36,-1],[-0.158,-7.509],[-1.133,-4.25]],"v":[[-59.158,44.652],[-61.198,62.652],[-59.214,85.402],[-54.851,89.152],[-52.131,67.152],[-53.944,48.152]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.26,-4.315],[0.184,-6.492],[-7.437,-6.586],[-3.507,1.079],[0.584,11.596],[4.986,4.245]],"o":[[-4.705,3.859],[-0.272,9.576],[3.888,3.443],[3.507,-1.079],[-0.408,-8.099],[-4.236,-3.606]],"v":[[-32.11,41.832],[-42.34,59.633],[-35.488,83.216],[-18.222,87.758],[-1.658,62.397],[-10.039,42.854]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-4],[0.5,-6],[-3,-3.5],[-3,1],[0.5,10.75],[1.98,3.366]],"o":[[-4.025,3.578],[-0.5,6],[3,3.5],[3,-1],[-0.349,-7.509],[-2.5,-4.25]],"v":[[-59,44.5],[-63.5,62.5],[-59.125,85.25],[-49.5,89],[-43.5,67],[-47.5,48]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.04,-4],[0.227,-6],[-1.36,-3.5],[-1.36,1],[0.227,10.75],[0.898,3.366]],"o":[[-1.825,3.578],[-0.227,6],[1.36,3.5],[1.36,-1],[-0.158,-7.509],[-1.133,-4.25]],"v":[[-59.158,44.652],[-61.198,62.652],[-59.214,85.402],[-54.851,89.152],[-52.131,67.152],[-53.944,48.152]]}],"t":435},{"s":[{"c":true,"i":[[4.854,-4.315],[0.17,-6.492],[-6.863,-6.586],[-3.236,1.079],[0.539,11.596],[4.601,4.245]],"o":[[-4.342,3.859],[-0.251,9.576],[3.588,3.443],[3.236,-1.079],[-0.377,-8.099],[-3.909,-3.606]],"v":[[-38.034,41.558],[-47.475,59.359],[-41.151,82.942],[-25.218,87.484],[-9.932,62.123],[-17.666,42.58]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.96862745285,0.443137258291,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"inside cone","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.952,5.519],[32.652,-49.597],[4.82,-51.058],[-38.298,-54.1],[-26.103,12.489],[-37.47,18.992],[-28.409,13.772],[-7.944,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[29.77,16.866]],"o":[[-7.742,-3.575],[-24.883,37.795],[-3.507,37.145],[16.719,23.618],[31.129,-14.893],[36.074,-18.284],[11.12,-5.39],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-40.969,-23.21]],"v":[[-270.04,-114.08],[-339.378,-83.257],[-380.924,43.3],[-352.332,182.436],[-287.86,217.19],[-182.026,166.112],[-64.608,106.562],[-35.327,91.875],[-10.431,70.718],[-13.093,48.577],[-56.434,18.289],[-118.844,-20.929]]}],"t":15},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.091,2.577],[14.242,-41.561],[1.412,-26.122],[-14.791,-25.908],[-6.795,2.442],[-62.476,17.687],[-28.591,7.926],[-7.509,3.754],[-0.387,9.621],[2.422,3.633],[21.153,6.237],[33.536,9.841]],"o":[[-7.814,-1.667],[-8.416,20.001],[-1.303,36.585],[11.132,22.391],[11.888,-4.272],[31.437,-8.9],[10.431,-2.944],[3.314,-1.657],[0.33,-8.202],[-5.098,-7.647],[-22.227,-6.371],[-60.086,-17.632]],"v":[[-353.897,-50.24],[-389.266,-18.891],[-404.513,59.623],[-388.834,158.539],[-351.74,176.907],[-171.538,125.789],[-70.051,97.162],[-44.838,88.498],[-35.526,68.727],[-38.726,48.707],[-73.046,33.791],[-177.387,2.236]]}],"t":22},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[12.137,1.599],[8.12,-38.889],[0.279,-17.83],[-6.975,-16.533],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.154,4.303],[12.5,3]],"o":[[-7.838,-1.032],[-2.941,14.084],[-0.57,36.399],[9.274,21.983],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-22.891,-4.656],[-12.5,-3]],"v":[[-381.781,-29.012],[-405.854,2.511],[-412.357,65.051],[-400.971,150.594],[-372.98,163.512],[-157.491,113.168],[-71.86,94.036],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.679,36.759],[-193.301,15.24]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.2,2.065],[9.992,-45.581],[-0.127,-32.035],[-1.989,-4.834],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.172,4.214],[12.5,3]],"o":[[-7.748,-1.569],[-3.081,14.054],[0.083,20.896],[4.771,11.597],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-23.454,-4.668],[-12.5,-3]],"v":[[-341.879,-17.315],[-372.904,16.394],[-376.678,84.672],[-368.055,136.802],[-350.602,157.052],[-155.405,112.011],[-70.138,93.527],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-191.387,15.686]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[8.967,0.213],[2.94,-15.953],[1.385,-12.467],[-1.247,-7.871],[0,0],[0,0],[-29.023,3.791],[-8.771,2.67],[-0.38,9.435],[2.376,3.564],[21.408,2.772],[19.06,2.948]],"o":[[-16.195,-3.341],[-2.902,15.748],[-2.409,21.682],[2.873,18.129],[0,0],[0,0],[10.49,-1.37],[3.476,-1.058],[0.324,-8.044],[-5,-7.5],[-20.829,-2.697],[-12.704,-1.965]],"v":[[-454.854,1.408],[-474.586,19.286],[-479.174,60.372],[-475.091,132.115],[-465.612,152.362],[-260.157,121.111],[-78.337,93.057],[-51.698,88.692],[-47.029,68.491],[-50.133,48.876],[-78.876,39.005],[-254.805,22.258]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[17.069,1.595],[0.421,-11.97],[0.346,-10.565],[-0.235,-7.756],[0,0],[0,0],[-33.812,3.951],[-7.364,3.682],[-0.38,9.435],[0.621,2.534],[21.532,1.417],[18.841,0.186]],"o":[[-4.687,6.037],[-0.301,8.562],[-0.513,15.682],[0.493,16.23],[0,0],[0,0],[9.12,-1.066],[3.25,-1.625],[0.324,-8.044],[-2.145,-8.755],[-20.723,-1.364],[-12.854,-0.127]],"v":[[-523.868,2.923],[-528.886,40.486],[-529.665,72.796],[-528.578,114.073],[-523.436,144.13],[-264.147,114.137],[-74.205,91.03],[-54.61,88.053],[-51.548,67.794],[-54.487,48.598],[-80.31,39.514],[-260.583,24.957]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.367,0.783],[8.341,-39.765],[-1.243,-18.908],[-6.75,-17.569],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.296,3.532],[12.5,3]],"o":[[-7.871,-0.737],[-2.954,14.081],[0.978,14.88],[9.171,23.869],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-24.339,-4.037],[-12.5,-3]],"v":[[-377.25,-24.328],[-405.061,8.182],[-410.777,80.401],[-398.229,149.08],[-372.818,164.545],[-211.959,126.243],[-69.728,93.248],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-235.34,5.574]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[15.05,10.157],[29.468,-27.773],[5.531,-34.275],[-37.378,-53.991],[0,0],[-37.471,18.992],[-28.41,13.772],[-7.943,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[30.992,19.487]],"o":[[-21.912,-14.788],[-32.569,30.696],[-3.493,21.646],[36.269,52.388],[0,0],[36.074,-18.284],[11.12,-5.391],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-39.862,-25.063]],"v":[[-260.375,-111.383],[-333.415,-95.852],[-387.241,20.902],[-363.65,179.185],[-288.332,218.776],[-182.854,167.102],[-66.321,107.507],[-28.438,88.398],[-10.24,68.674],[-14.491,47.433],[-56.544,18.382],[-163.317,-48.837]]}],"t":240},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.775,9.663],[59.203,-33.692],[16.607,-128.208],[-29.75,-19.69],[-50.491,37.725],[-29.609,20.711],[-24.828,19.502],[-7.195,5.269],[-0.41,10.178],[3.257,3.276],[17.473,13.381],[28.504,21.354]],"o":[[-25.488,-19.279],[-27.86,15.855],[-16.694,128.88],[63.612,42.1],[34.028,-25.424],[37.072,-25.931],[12.423,-9.758],[3.162,-2.316],[0.349,-8.677],[-6.636,-6.675],[-18.487,-14.157],[-38.802,-29.069]],"v":[[-235.681,-127.601],[-362.257,-151.685],[-493.509,53.749],[-411.075,267.823],[-262.456,258.354],[-173.112,196.968],[-62.42,118.434],[-26.421,92.326],[-2.535,69.552],[-5.883,47.592],[-51.247,14.198],[-118.974,-37.626]]}],"t":300},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[51.934,14.554],[15.764,-23.072],[0.441,-31.885],[-22.667,-27.668],[-18.423,5.452],[-50.925,15.469],[-27.942,8.49],[-7.333,3.976],[-0.385,9.573],[2.539,3.51],[20.538,5.64],[34.191,9.804]],"o":[[-16.201,-4.54],[-17.989,26.329],[-0.494,35.765],[12.176,14.862],[50.487,-14.94],[30.686,-9.321],[10.614,-3.545],[3.234,-1.753],[0.328,-8.162],[-5.303,-7.347],[-21.451,-5.917],[-48.149,-13.807]],"v":[[-320.322,-37.849],[-368.529,-22.884],[-399.516,67.621],[-371.21,171.125],[-313.587,172.509],[-167.701,127.894],[-68.797,98.154],[-43.997,88.293],[-36.202,68.341],[-39.576,48.535],[-73.342,32.974],[-176.528,5.782]]}],"t":306},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[16.106,2.829],[8.204,-31.825],[1.143,-26.169],[-7.019,-8.653],[0,0],[0,0],[-28.651,5.982],[-7.364,3.682],[-0.38,9.435],[2.376,3.564],[21.236,3.877],[12.5,3]],"o":[[-7.786,-1.368],[-4.352,16.885],[-1.312,30.035],[10.691,13.181],[0,0],[0,0],[10.202,-2.13],[3.25,-1.625],[0.324,-8.044],[-5,-7.5],[-22.127,-4.04],[-12.5,-3]],"v":[[-339.6,-17.406],[-369.958,6.451],[-378.109,70.781],[-362.13,149.1],[-325.233,152.957],[-157.198,112.704],[-70.249,93.535],[-48,87.375],[-43.87,68.065],[-47.25,48.75],[-78.375,37.25],[-189.636,15.669]]}],"t":313},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.967,0.213],[2.738,-15.015],[1.385,-12.467],[-1.247,-7.871],[0,0],[0,0],[-28.651,5.982],[-8.771,2.67],[-0.38,9.435],[1.081,4.285],[20.741,2.408],[19.06,2.948]],"o":[[-16.195,-3.341],[-2.873,15.753],[-2.409,21.682],[2.873,18.129],[0,0],[0,0],[10.202,-2.13],[3.476,-1.058],[0.324,-8.044],[-1.786,-7.076],[-20.863,-2.422],[-12.704,-1.965]],"v":[[-455.328,1.259],[-474.592,19.091],[-479.174,60.372],[-475.091,132.115],[-465.009,152.111],[-260.309,121.853],[-70.375,92.25],[-55.624,89.199],[-51.764,69.322],[-54.156,47.733],[-79.076,40.305],[-254.804,22.258]]}],"t":435},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[11.491,4.701],[28.039,-44.264],[4.291,-45.107],[-32.585,-46.971],[-22.078,10.563],[-31.692,16.063],[-28.447,12.571],[-8.071,3.771],[-0.405,10.063],[2.334,3.912],[21.088,10.567],[28.118,14.72]],"o":[[-9.045,-3.539],[-21.488,34.396],[-3.337,34.761],[14.584,22.771],[26.328,-12.597],[30.512,-15.465],[10.978,-4.888],[3.501,-1.646],[0.345,-8.58],[-4.837,-7.934],[-20.328,-10.125],[-36.61,-19.934]],"v":[[-298.612,-96.295],[-360.229,-67.474],[-396.075,45.933],[-371.262,174.676],[-315.178,207.155],[-194.098,159.287],[-65.498,104.355],[-38.457,91.463],[-16.805,70.503],[-19.425,48.447],[-59.925,21.684],[-146.392,-22.308]]}],"t":446},{"s":[{"c":true,"i":[[11.952,5.519],[32.652,-49.597],[4.82,-51.058],[-38.298,-54.1],[-26.103,12.489],[-37.47,18.992],[-28.409,13.772],[-7.944,3.972],[-0.41,10.177],[2.563,3.844],[21.151,12.055],[29.77,16.866]],"o":[[-7.742,-3.575],[-24.883,37.795],[-3.507,37.145],[16.719,23.618],[31.129,-14.893],[36.074,-18.284],[11.12,-5.39],[3.506,-1.753],[0.349,-8.677],[-5.393,-8.09],[-20.23,-11.53],[-40.969,-23.21]],"v":[[-270.04,-114.08],[-339.378,-83.257],[-380.924,43.3],[-352.332,182.436],[-287.86,217.19],[-182.026,166.112],[-64.608,106.562],[-35.327,91.875],[-10.431,70.718],[-13.093,48.577],[-56.434,18.289],[-118.844,-20.929]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"e":{"a":0,"ix":6,"k":[-39.242,69.189]},"g":{"k":{"a":0,"ix":9,"k":[0,1,0.969,0.443,0.5,1,0.969,0.443,1,1,0.969,0.443,0,0,0.5,0.5,1,1]},"p":3},"hd":false,"mn":"ADBE Vector Graphic - G-Fill","nm":"Gradient Fill 1","o":{"a":0,"ix":10,"k":100},"r":1,"s":{"a":0,"ix":5,"k":[-305.779,55.712]},"t":1,"ty":"gf"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":10},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"light beam","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":1,"ddd":0,"ind":20,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":45},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Royal Blue Solid 1","op":480,"sc":"#2e5fd8","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"ind":21,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1192.089,97.616,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1233.618,84.445,0],"t":0,"ti":[0.563,0.194,0],"to":[1.126,0.388,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1226.864,86.77,0],"t":125,"ti":[0.675,0.233,0],"to":[-0.563,-0.194,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.48,"y":0},"s":[-1236.995,83.282,0],"t":141,"ti":[-0.113,-0.039,0],"to":[-0.675,-0.233,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1230.917,85.375,0],"t":218,"ti":[-0.45,-0.155,0],"to":[0.113,0.039,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.333,"y":0},"s":[-1236.32,83.514,0],"t":240,"ti":[0.113,0.039,0],"to":[0.45,0.155,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1228.215,86.305,0],"t":300,"ti":[0.563,0.194,0],"to":[-0.113,-0.039,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.48,"y":0},"s":[-1236.995,83.282,0],"t":345,"ti":[-0.563,-0.194,0],"to":[-0.563,-0.194,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1231.592,85.142,0],"t":435,"ti":[0.338,0.116,0],"to":[0.563,0.194,0]},{"s":[-1233.618,84.445,0],"t":479}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-33],"t":0},{"i":{"x":[0.4],"y":[0.92]},"o":{"x":[0.508],"y":[0]},"s":[-20],"t":125},{"i":{"x":[0.822],"y":[-3.493]},"o":{"x":[0.181],"y":[-5.313]},"s":[-69],"t":141},{"i":{"x":[0.886],"y":[0.887]},"o":{"x":[0.463],"y":[0.062]},"s":[-68.132],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.141],"y":[0.378]},"s":[-28.5],"t":218},{"i":{"x":[0.737],"y":[1.211]},"o":{"x":[0.333],"y":[0]},"s":[-7],"t":240},{"i":{"x":[0.541],"y":[0.397]},"o":{"x":[0.627],"y":[0.147]},"s":[-15],"t":300},{"i":{"x":[0.565],"y":[1.438]},"o":{"x":[0.216],"y":[1.02]},"s":[-8.607],"t":314},{"i":{"x":[0.587],"y":[0.684]},"o":{"x":[0.49],"y":[0.077]},"s":[-4.683],"t":345},{"i":{"x":[0.755],"y":[1.203]},"o":{"x":[0.335],"y":[1.066]},"s":[-65],"t":419},{"i":{"x":[0.56],"y":[0.527]},"o":{"x":[0.985],"y":[0.137]},"s":[-68.132],"t":435},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.237],"y":[0.684]},"s":[-42.541],"t":457},{"s":[-33],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front arm","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[0.131,3.718],[1.046,3.495]],"o":[[3.537,3.766],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-0.131,-3.718],[0,0]],"v":[[-1236.741,90.401],[-1228.246,101.042],[-1225.579,103.683],[-1223.135,102.551],[-1219.979,92.497],[-1225.527,83.709]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.634,-3.921],[-1.436,-0.168],[-0.845,0.698],[0.161,3.718],[1.28,3.495]],"o":[[1.572,4.454],[0.806,1.2],[1.089,0.127],[2.87,-2.369],[-0.161,-3.718],[0,0]],"v":[[-1249.157,90.401],[-1242.815,103.031],[-1239.552,105.672],[-1236.56,104.54],[-1232.699,94.486],[-1235.435,83.709]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.634,-3.921],[-1.436,-0.168],[-0.845,0.698],[0.161,3.718],[1.28,3.495]],"o":[[1.572,4.454],[0.806,1.2],[1.089,0.127],[2.87,-2.369],[-0.161,-3.718],[0,0]],"v":[[-1249.157,90.401],[-1242.815,103.031],[-1239.552,105.672],[-1236.56,104.54],[-1232.699,94.486],[-1235.435,83.709]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.567,-3.921],[-1.4,-0.168],[-0.824,0.698],[0.157,3.718],[1.248,3.495]],"o":[[1.845,4.359],[0.786,1.2],[1.061,0.127],[2.797,-2.369],[-0.157,-3.718],[0,0]],"v":[[-1247.205,90.123],[-1240.563,102.477],[-1237.383,105.118],[-1234.468,103.986],[-1230.705,93.932],[-1233.832,83.432]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.88,-4.586],[-1.331,-0.376],[-0.907,0.638],[-0.425,4.032],[0.668,3.942]],"o":[[2.515,4.75],[0.575,1.404],[1.009,0.285],[3.079,-2.166],[0.425,-4.032],[0,0]],"v":[[-1247.032,88.898],[-1240.366,102.273],[-1237.693,105.564],[-1234.692,104.749],[-1229.486,94.431],[-1233.032,83.545]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.99,-4.317],[-1.267,-0.291],[-0.819,0.662],[-0.199,3.905],[3.207,4.227]],"o":[[5.902,5.386],[0.609,1.321],[0.96,0.221],[2.781,-2.248],[0.199,-3.905],[0,0]],"v":[[-1249.606,91.113],[-1241.081,105.137],[-1238.41,108.164],[-1235.635,107.221],[-1232.378,95.253],[-1236.735,85.217]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[1.974,3.38],[3.146,2.774]],"o":[[6.082,3.088],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-1.876,-3.213],[0,0]],"v":[[-1236.741,90.401],[-1224.211,100.493],[-1221.544,103.134],[-1219.1,102.002],[-1218.525,92.267],[-1225.527,83.709]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[1.493,4.077],[3.577,2.701]],"o":[[6.148,2.392],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-1.279,-3.494],[0,0]],"v":[[-1234.024,92.261],[-1222.744,103.635],[-1220.078,106.276],[-1217.633,105.144],[-1217.632,92.977],[-1224.214,84.467]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.99,-4.317],[-1.267,-0.291],[-0.819,0.662],[-0.199,3.905],[3.207,4.227]],"o":[[5.902,5.386],[0.609,1.321],[0.96,0.221],[2.781,-2.248],[0.199,-3.905],[0,0]],"v":[[-1249.606,91.113],[-1241.081,105.137],[-1238.41,108.164],[-1235.635,107.221],[-1232.378,95.253],[-1236.735,85.217]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.88,-4.586],[-1.331,-0.376],[-0.907,0.638],[-0.425,4.032],[0.668,3.942]],"o":[[2.515,4.75],[0.575,1.404],[1.009,0.285],[3.079,-2.166],[0.425,-4.032],[0,0]],"v":[[-1247.032,88.898],[-1240.366,102.273],[-1237.693,105.564],[-1234.692,104.749],[-1229.486,94.431],[-1233.032,83.545]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-2.152,-3.921],[-1.174,-0.168],[-0.691,0.698],[0.131,3.718],[1.046,3.495]],"o":[[3.537,3.766],[0.659,1.2],[0.89,0.127],[2.346,-2.369],[-0.131,-3.718],[0,0]],"v":[[-1236.741,90.401],[-1228.246,101.042],[-1225.579,103.683],[-1223.135,102.551],[-1219.979,92.497],[-1225.527,83.709]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.239,-6.04],[-0.896,-0.015],[-0.539,0.502],[2.384,5.314],[3.274,1.799]],"o":[[6.652,3.744],[0.122,0.594],[1.119,0.019],[3.791,-3.531],[-1.592,-3.549],[0,0]],"v":[[-1258.577,106.077],[-1248.922,116.945],[-1245.797,120.407],[-1242.813,118.866],[-1241.597,104.753],[-1246.413,98.334]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.516,-6.04],[-0.528,-0.31],[-0.66,0.502],[-0.481,5.81],[-0.007,3.016]],"o":[[1.516,6.04],[0.149,0.594],[0.715,0.42],[4.639,-3.531],[0.249,-3.006],[0,0]],"v":[[-1277.611,103.125],[-1273.062,121.246],[-1272.191,122.806],[-1269.911,122.286],[-1263.518,106.574],[-1263.134,97.537]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[0.121,7.484],[1.903,3.199]],"o":[[2.057,5.878],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[-0.049,-3.015],[0,0]],"v":[[-1280.806,99.93],[-1270.736,119.225],[-1270,120.853],[-1267.684,120.525],[-1261.883,104.335],[-1264.76,95.785]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.432,-6.676],[-0.467,-0.396],[-0.736,0.381],[1.838,8.814],[1.614,3.354]],"o":[[3.526,4.425],[0.129,0.599],[0.632,0.537],[5.176,-2.683],[-0.616,-2.952],[0,0]],"v":[[-1278.825,100.509],[-1270.234,118.549],[-1269.643,120.235],[-1267.307,120.113],[-1260.826,104.838],[-1264.283,95.467]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-4.708,-4.5],[-0.884,0.145],[-0.44,0.59],[4.127,5.595],[3.274,1.799]],"o":[[8.962,3.994],[0.438,0.419],[1.105,-0.182],[3.097,-4.153],[-2.309,-3.13],[0,0]],"v":[[-1258.577,106.077],[-1241.868,117.161],[-1238.174,120.007],[-1235.514,117.957],[-1238.778,103.168],[-1246.413,98.334]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.668,-3.725],[-0.974,0.033],[-0.558,0.575],[4.606,4.175],[3.274,1.799]],"o":[[8.51,2.348],[1.675,2.338],[1.217,-0.041],[3.923,-4.046],[-2.882,-2.612],[0,0]],"v":[[-1255.555,106.315],[-1240.878,114.408],[-1235.055,122.204],[-1230.081,120.248],[-1235.825,102.837],[-1243.308,97.502]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.003,-6.146],[-0.5,-0.354],[-0.699,0.445],[-0.968,5.749],[-0.26,3.005]],"o":[[1.003,6.146],[0.099,0.605],[0.677,0.479],[4.92,-3.129],[0.5,-2.974],[0,0]],"v":[[-1276.416,99.542],[-1273.406,117.982],[-1272.67,119.61],[-1270.354,119.283],[-1262.663,104.163],[-1261.522,95.191]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.432,-6.676],[-0.467,-0.396],[-0.736,0.381],[1.838,8.814],[1.614,3.354]],"o":[[3.526,4.425],[0.129,0.599],[0.632,0.537],[5.176,-2.683],[-0.616,-2.952],[0,0]],"v":[[-1278.825,100.509],[-1270.234,118.549],[-1269.643,120.235],[-1267.307,120.113],[-1260.826,104.838],[-1264.283,95.467]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-1.239,-6.04],[-0.896,-0.015],[-0.539,0.502],[2.384,5.314],[3.274,1.799]],"o":[[6.652,3.744],[0.122,0.594],[1.119,0.019],[3.791,-3.531],[-1.592,-3.549],[0,0]],"v":[[-1258.577,106.077],[-1248.922,116.945],[-1245.797,120.407],[-1242.813,118.866],[-1241.597,104.753],[-1246.413,98.334]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.525,-3.635],[-1.415,-1.206],[-1.696,0.761],[-0.501,2.147],[0.245,5.4]],"o":[[0.411,3.92],[0.719,1.714],[1.415,1.206],[2.011,-0.902],[1.227,-5.265],[0,0]],"v":[[-1308.868,112.916],[-1305.943,124.33],[-1302.933,128.964],[-1297.752,130.004],[-1294.408,124.581],[-1292.925,108.482]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.959,-3.42],[-1.553,-1.023],[-1.59,0.964],[-0.233,2.192],[2.298,6.454]],"o":[[0.889,3.84],[0.924,1.613],[1.553,1.023],[1.885,-1.143],[0.572,-5.376],[0,0]],"v":[[-1308.616,110.992],[-1301.8,121.697],[-1298.244,125.926],[-1292.974,126.322],[-1290.322,120.529],[-1293.339,104.634]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-1.573,-3.614],[-1.431,-1.187],[-1.686,0.784],[-0.472,2.153],[1.578,6.666]],"o":[[0.464,3.914],[0.742,1.704],[1.431,1.187],[1.999,-0.929],[1.157,-5.281],[0,0]],"v":[[-1310.303,110.01],[-1304.699,121.397],[-1301.627,125.99],[-1296.432,126.96],[-1293.162,121.492],[-1294.421,105.362]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.361,-4.005],[-1.681,-1.09],[-1.495,1.368],[0.011,2.734],[9.514,4.918]],"o":[[8.113,1.614],[1.113,1.889],[1.681,1.09],[1.773,-1.622],[-0.028,-6.704],[0,0]],"v":[[-1277.957,121.391],[-1260.037,130.391],[-1255.976,135.216],[-1250.617,135.115],[-1248.595,127.663],[-1264.395,111.761]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-1.031,-3.805],[-1.243,-1.382],[-1.782,0.53],[-0.78,2.062],[-0.471,5.385]],"o":[[-0.111,3.94],[0.486,1.794],[1.243,1.382],[2.113,-0.628],[1.913,-5.056],[0,0]],"v":[[-1310.345,103.383],[-1308.956,115.084],[-1306.586,120.075],[-1301.588,121.792],[-1297.556,116.858],[-1293.956,101.098]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.573,-3.614],[-1.431,-1.187],[-1.686,0.784],[-0.472,2.153],[1.578,6.666]],"o":[[0.464,3.914],[0.742,1.704],[1.431,1.187],[1.999,-0.929],[1.157,-5.281],[0,0]],"v":[[-1310.303,110.01],[-1304.699,121.397],[-1301.627,125.99],[-1296.432,126.96],[-1293.162,121.492],[-1294.421,105.362]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[-1.98,-3.787],[-1.492,-1.079],[-1.437,1.186],[-0.118,2.51],[6.302,5.259]],"o":[[7.373,1.861],[0.934,1.786],[1.492,1.079],[1.703,-1.406],[0.288,-6.155],[0,0]],"v":[[-1285.123,119.327],[-1269.574,130.881],[-1266.072,135.5],[-1261.148,135.659],[-1258.943,128.912],[-1271.189,111.235]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front arm stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[-0.677,-9.061],[8.335,3.257],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.21,7.307],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[0.686,9.17],[-1.905,-0.744],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.43,-6.452],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.513,-10.687],[1.734,-6.34],[9.189,5.001],[2.362,-6.398],[-9.482,-3.942],[-20.194,1.752],[-17.192,4.746],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.345,0.563],[-2.056,7.516],[-1.88,-1.023],[-4.473,12.116],[8.505,3.536],[14.376,-1.362],[17.267,-4.783],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1313.519,113.365],[-1328.186,116.559],[-1352.862,120.495],[-1361.96,127.966],[-1350.994,159.825],[-1313.619,162.147],[-1261.454,153.413],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[5.698,-5.261],[8.446,6.173],[3.188,-6.029],[-8.877,-5.162],[-20.248,-0.936],[-17.782,1.373],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.399,0.248],[-5.725,5.286],[-1.728,-1.263],[-6.037,11.417],[7.963,4.631],[14.43,0.552],[17.938,-1.385],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1328.755,103.135],[-1354.955,105.075],[-1364.962,111.276],[-1358.307,144.306],[-1321.568,151.553],[-1262.426,149.958],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.866,-16.525],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.263,0.834],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1314.728,111.674],[-1329.525,115.258],[-1357.186,119.039],[-1365.961,126.887],[-1360.432,161.506],[-1326.879,168.755],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[44.023,-12.552],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.32,0.661],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1318.178,110.259],[-1332.698,114.068],[-1357.186,119.039],[-1367.746,126.848],[-1362.217,161.467],[-1330.108,169.399],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[2.557,-6.055],[8.446,6.173],[3.188,-6.029],[-8.877,-5.162],[-20.248,-0.936],[-17.782,1.373],[-26.496,7.667],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.399,0.248],[-3.032,7.178],[-1.728,-1.263],[-6.037,11.417],[7.963,4.631],[14.43,0.552],[17.938,-1.385],[28.451,-8.232],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1329.975,104.438],[-1354.955,105.075],[-1364.962,111.276],[-1358.307,144.306],[-1321.568,151.553],[-1262.426,149.958],[-1209.68,138.947],[-1154.705,116.767],[-1141.428,85.024]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[0.751,-10.313],[7.479,4.495],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.354,6.999],[-21.959,8.8],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[-0.479,6.576],[-1.753,-1.054],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.557,-6.18],[24.843,-9.956],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[16.826,-10.701],[41.414,-24.649],[2.648,-9.509],[9.077,1.898],[2.415,-10.618],[-5.027,-5.802],[-13.782,10.909],[-16.527,7.989],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.182,1.299],[-2.378,8.538],[-2.178,-0.455],[-4.075,17.917],[7.287,8.411],[17.339,-13.724],[10.773,-5.208],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1284.446,123.726],[-1300.718,131.043],[-1333.813,143.852],[-1344.012,156.809],[-1331.292,191.125],[-1285.737,186.126],[-1236.832,156.314],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[20.59,-10.701],[45.535,-4.704],[4.418,-8.261],[8.446,6.173],[3.188,-6.029],[-8.297,-6.051],[-17.379,4.214],[-17.723,1.991],[-26.606,7.275],[-14.634,9.513],[2.179,14.332]],"o":[[-42.576,22.128],[-2.399,0.248],[-2.557,4.782],[-1.728,-1.263],[-6.037,11.417],[13.065,9.529],[23.245,-5.637],[19.709,-2.214],[27.971,-7.649],[8.245,-5.36],[-5.403,-35.53]],"v":[[-1209.521,69.181],[-1315.015,103.213],[-1329.975,104.438],[-1354.955,105.075],[-1366.884,111.335],[-1362.406,149.207],[-1321.796,152.82],[-1262.426,149.958],[-1209.395,139.602],[-1154.705,116.767],[-1141.428,85.024]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[20.59,-10.701],[44.023,-12.552],[1.465,-6.408],[9.391,4.61],[2.091,-6.491],[-7.598,-6.908],[-11.451,2.353],[-17.418,3.833],[-27.514,6.093],[-14.634,9.513],[1.851,14.378]],"o":[[-42.576,22.128],[-2.32,0.661],[-1.737,7.596],[-1.921,-0.943],[-3.959,12.293],[9.304,8.46],[18.395,-3.779],[19.706,-4.336],[28.917,-6.404],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1209.521,69.181],[-1318.178,110.259],[-1332.698,114.068],[-1357.186,119.039],[-1367.746,126.848],[-1362.217,161.467],[-1330.108,169.399],[-1262.426,149.958],[-1209.283,137.89],[-1154.705,116.767],[-1141.428,85.024]]}],"t":435},{"s":[{"c":true,"i":[[16.826,-10.701],[39.173,-20.691],[-4.865,-5.689],[8.335,3.257],[2.714,-9.635],[-5.443,-8.012],[-13.163,9.37],[-15.21,7.307],[-21.31,10.273],[-14.634,9.513],[1.851,14.378]],"o":[[-34.794,22.128],[-2.064,1.09],[5.976,6.989],[-1.905,-0.744],[-4.58,16.258],[6.779,9.978],[16.56,-11.788],[13.43,-6.452],[22.218,-10.71],[8.245,-5.36],[-4.272,-33.187]],"v":[[-1204.35,69.181],[-1289.768,121.534],[-1303.948,127.925],[-1335.985,136.347],[-1347.558,143.409],[-1340.674,177.869],[-1292.727,182.543],[-1243.477,157.165],[-1202.78,140.815],[-1154.705,116.767],[-1141.428,85.024]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front arm","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1261.786,114.847]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1261.786,114.847]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front arm","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":22,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[11.81,62.175,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":15,"ti":[-1.038,5.415,0],"to":[0.165,-3.508,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1348.369,78.178,0],"t":30,"ti":[-0.229,-0.023,0],"to":[1.038,-5.415,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1343.133,66.738,0],"t":125,"ti":[0.644,-1.93,0],"to":[0.229,0.023,0]},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[-1346.994,78.317,0],"t":141,"ti":[0,0,0],"to":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[-1346.994,78.317,0],"t":203,"ti":[0.395,-3.485,0],"to":[0.644,-1.93,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[-1343.133,66.738,0],"t":218,"ti":[0.841,-6.841,0],"to":[-0.395,3.485,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[-1349.362,99.226,0],"t":240,"ti":[-1.038,5.415,0],"to":[-0.841,6.841,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1348.178,107.783,0],"t":300,"ti":[-0.197,4.911,0],"to":[1.038,-5.415,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[-1343.133,66.738,0],"t":313,"ti":[1.038,-5.415,0],"to":[0.197,-4.911,0]},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[-1346.994,78.317,0],"t":435,"ti":[0.395,-3.485,0],"to":[-1.038,5.415,0]},{"s":[-1349.362,99.226,0],"t":457}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":15},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[-11.5],"t":30},{"i":{"x":[0.25],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[0.5],"t":125},{"i":{"x":[1],"y":[1]},"o":{"x":[0],"y":[0]},"s":[-3.5],"t":141},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.45],"y":[0]},"s":[-3.5],"t":203},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.333],"y":[0]},"s":[0.5],"t":218},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"s":[-18.5],"t":240},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-21.5],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0],"y":[0]},"s":[0.5],"t":313},{"i":{"x":[0.2],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"s":[-3.5],"t":435},{"s":[-18.5],"t":457}]},"s":{"a":0,"ix":6,"k":[175,175,100]}},"nm":"Lamp","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-3.406,-0.552],[-1.548,3.655],[0.47,9.125],[7.145,0.875]],"o":[[3.855,0.625],[2.774,-6.551],[-0.437,-8.484],[-3.95,-0.484]],"v":[[-57.077,96.22],[-47.732,90.153],[-43.972,66.027],[-55.347,36.527]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-2.053,-0.552],[-0.933,3.655],[0.283,9.125],[4.307,0.875]],"o":[[2.323,0.625],[1.672,-6.551],[-0.263,-8.484],[-2.381,-0.484]],"v":[[-57.82,96.22],[-52.188,90.153],[-49.921,66.027],[-56.778,36.527]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-5.293,-0.596],[-3.348,3.307],[0.08,12.581],[27.27,-0.154]],"o":[[5.99,0.674],[7.12,-7.033],[-0.059,-9.21],[-6.164,0.035]],"v":[[-20.496,94.594],[-4.641,87.681],[6.239,61.243],[-24.753,31.309]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.529,-0.552],[-2.058,3.655],[0.625,9.125],[9.5,0.875]],"o":[[5.125,0.625],[3.689,-6.551],[-0.581,-8.484],[-5.252,-0.484]],"v":[[-56.05,96.067],[-43.625,90.001],[-38.625,65.875],[-53.75,36.375]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-2.053,-0.552],[-0.933,3.655],[0.283,9.125],[4.307,0.875]],"o":[[2.323,0.625],[1.672,-6.551],[-0.263,-8.484],[-2.381,-0.484]],"v":[[-57.82,96.22],[-52.188,90.153],[-49.921,66.027],[-56.778,36.527]]}],"t":435},{"s":[{"c":false,"i":[[-4.885,-0.596],[-3.089,3.307],[0.074,12.581],[25.166,-0.154]],"o":[[5.528,0.674],[6.57,-7.033],[-0.054,-9.21],[-5.688,0.035]],"v":[[-27.316,94.32],[-12.684,87.406],[-2.645,60.969],[-31.245,31.035]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[4.05,-0.181]],"o":[[0,0],[-5.182,0.231]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[-5.242,49.842]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[-10.005,49.978]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,-0.544]],"o":[[0,0],[-5.137,0.719]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[3.725,-0.619]],"o":[[0,0],[-5.117,0.85]],"v":[[45.461,47.915],[24.165,50.216]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.861,49.841],[0.685,49.603]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[7.27,0.388]],"o":[[0,0],[-4.802,-0.256]],"v":[[32.937,49.909],[-10.005,49.978]]}],"t":435},{"s":[{"c":false,"i":[[0,0],[3.959,-0.261]],"o":[[0,0],[-5.176,0.341]],"v":[[45.461,47.915],[25.487,48.661]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[3.761,-0.5],[0.752,-9],[-1.88,-7],[-3.736,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-3.761,0.5],[-0.752,9],[1.02,3.796],[3.957,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-57.039,36.652],[-66.065,57.152],[-64.936,82.652],[-58.955,95.592],[-40.502,94.999],[-29.002,89.874],[-21.627,69.374],[-24.127,46.499]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.252,-1.585],[-5,0],[-1.895,3.055],[0,7.5],[1.646,5.585]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.385,1.679],[5,0],[2.792,-4.5],[0,-7.5],[-1.621,-5.5]],"v":[[-36.5,36],[-57.798,36.652],[-63.238,57.152],[-62.558,82.652],[-58.952,95.592],[-40.502,94.999],[-28.991,89.697],[-23.676,69.197],[-25.478,46.322]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.836,-0.002],[4.809,-1.207],[2.9,-9.453],[-4.388,-6.962],[-5.806,-1.71],[-5.844,0],[-4.827,1.754],[-1.374,7.972],[5.345,8.238]],"o":[[-10.536,0.001],[-12.583,3.158],[-3.267,10.649],[4.535,7.195],[6.15,1.811],[5.844,0],[9.056,-3.291],[1.288,-7.471],[-2.985,-4.601]],"v":[[-13.477,30.42],[-25.82,31.128],[-47.221,51.953],[-46.1,81.5],[-30.934,93.524],[-14.553,95.915],[-2.815,93.923],[12.772,70.972],[8.168,41.274]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-4.968,-1.585],[-5,0],[-2.63,3.055],[0,7.5],[2.285,5.585]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.261,1.679],[5,0],[3.875,-4.5],[0,-7.5],[-2.25,-5.5]],"v":[[-36.5,36],[-56,36.5],[-68,57],[-66.5,82.5],[-58.548,95.44],[-37.25,95.5],[-25.75,90.375],[-18.375,69.875],[-20.875,47]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.252,-1.585],[-5,0],[-1.895,3.055],[0,7.5],[1.646,5.585]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.385,1.679],[5,0],[2.792,-4.5],[0,-7.5],[-1.621,-5.5]],"v":[[-36.5,36],[-57.798,36.652],[-63.238,57.152],[-62.558,82.652],[-58.952,95.592],[-40.502,94.999],[-28.991,89.697],[-23.676,69.197],[-25.478,46.322]]}],"t":435},{"s":[{"c":true,"i":[[11.846,-0.002],[4.319,-1.638],[2.854,-9.341],[-4.505,-6.626],[-5.358,-1.71],[-5.393,0],[-3.702,2.28],[-1.374,7.972],[5.345,8.238]],"o":[[-9.723,0.001],[-10.375,3.934],[-3.231,10.575],[3.914,5.757],[5.675,1.811],[5.393,0],[7.73,-4.761],[1.288,-7.471],[-2.985,-4.601]],"v":[[-17.068,30.191],[-32.229,30.854],[-51.473,52.735],[-50.392,81.467],[-36.949,93.25],[-21.832,95.641],[-6.231,92.738],[8.291,70.698],[3.687,41]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.846,-2.617],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[-0.328,-4.014],[-0.404,-2.833],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.012,2.706],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[0.335,4.094],[0.404,2.833],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-3.895,33.546],[8.078,40.249],[35.139,42.953],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.107,-0.101],[-4.051,-1.688],[-0.161,-2.484],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[2.311,0.075],[1.864,0.777],[0.209,3.22],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[32.215,48.62],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.098,-0.253],[-3.643,-2.095],[-0.199,-3.761],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.853,0.315],[1.743,1.003],[0.17,3.222],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.593,48.283],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.073,0.47],[-3.069,-2.871],[-0.275,-2.552],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.073,-0.47],[1.061,0.993],[0.346,3.208],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-27.143,39.914],[-7,44.996],[25.716,46.127],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.63,91.502]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[-3.523,-1.475],[-3.863,0.266],[-3.073,0.47],[-0.546,-2.631],[-0.142,-2.81],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.254,-1.025]],"o":[[3.523,1.475],[3.863,-0.266],[3.073,-0.47],[0.854,4.115],[0.163,3.223],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.254,1.025]],"v":[[-28.256,39.521],[-7.249,45.591],[27.348,46.741],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.164,91.325]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.108,-0.069],[-3.381,-1.903],[-0.24,-2.923],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.782,0.083],[3.662,2.061],[0.264,3.216],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.073,47.41],[34.103,55.566],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-5.273,-1.591],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[0.04,-4.027],[0.054,-2.932],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.273,1.591],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[-0.04,4.032],[-0.053,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-4.211,34.08],[8.078,40.249],[35.139,42.953],[45.464,46.988],[47.341,53.319],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-5.24,-2.778],[-3.891,-1.518],[-3.349,-0.154],[-3.771,-2.148],[0.105,-4.026],[0.058,-3.165],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[5.333,2.827],[5.518,-0.075],[3.559,0.164],[1.799,1.025],[-0.097,3.726],[-0.052,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[1.607,34.283],[12.559,40.523],[33.784,41.83],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[17.006,81.433],[9.016,85.379],[0.584,91.638]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[-4.888,-1.475],[-3.863,0.266],[-3.105,-0.15],[-3.175,-1.433],[-0.361,-3.15],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.741,-1.025]],"o":[[4.888,1.475],[3.863,-0.266],[3.659,0.177],[3.83,1.729],[0.367,3.206],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.741,1.025]],"v":[[-24.731,40.199],[-7,44.996],[23.291,45.241],[31.049,47.668],[34.066,55.946],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-27.378,92.003]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-3.523,-1.475],[-3.863,0.266],[-3.073,0.47],[-0.546,-2.631],[-0.142,-2.81],[-0.375,-2.626],[3.321,-0.617],[3.124,-0.668],[2.18,-0.279],[1.492,-0.879],[1.254,-1.025]],"o":[[3.523,1.475],[3.863,-0.266],[3.073,-0.47],[0.854,4.115],[0.163,3.223],[0.375,2.626],[-3.321,0.617],[-3.124,0.668],[-2.18,0.279],[-1.492,0.879],[-1.254,1.025]],"v":[[-28.256,39.521],[-7.249,45.591],[27.348,46.741],[32.864,48.981],[33.899,55.573],[34.867,70.579],[31.045,78.022],[15.044,79.576],[-1.454,81.422],[-9.684,83.088],[-30.164,91.325]]}],"t":435},{"s":[{"c":false,"i":[[-4.604,-3.023],[-3.891,-1.518],[-3.333,-0.367],[-3.771,-2.148],[-0.766,-3.954],[0.048,-2.697],[3.583,-0.665],[3.37,-0.72],[2.352,-0.301],[1.609,-0.948],[2.479,-2.159]],"o":[[4.693,3.081],[5.518,-0.075],[3.542,0.39],[1.799,1.025],[0.662,3.417],[-0.051,2.861],[-3.583,0.665],[-3.37,0.72],[-2.352,0.301],[-1.609,0.948],[-1.643,1.431]],"v":[[-3.983,33.503],[8.078,40.249],[35.139,42.953],[45.464,46.988],[48.077,53.568],[47.625,70.284],[43.502,78.313],[26.242,79.989],[11.864,81.937],[6.085,83.155],[-1.939,89.439]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.84705889225,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":2}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"outlines","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.475,-0.414],[0.846,-2.625],[0.188,-2.75],[-0.658,-2.688],[-2.256,-2.25],[-1.504,2.75],[2.773,0.625],[0.682,6.06],[-0.423,3.562],[-5.923,-1.812]],"o":[[-3.337,0.938],[-0.846,2.625],[-0.188,2.75],[0.658,2.688],[2.138,2.132],[1.504,-2.75],[-2.773,-0.625],[-0.752,-6.688],[0.423,-3.562],[-1.363,-3.5]],"v":[[-56.804,37.965],[-63.291,46.902],[-65.83,60.715],[-64.09,83.34],[-60.424,91.027],[-50.599,90.527],[-55.629,88.84],[-61.74,75.34],[-62.398,52.152],[-52.198,41.965]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[0.889,-0.414],[0.51,-2.625],[0.113,-2.75],[-0.397,-2.688],[-1.36,-2.25],[-0.907,2.75],[1.672,0.625],[0.411,6.06],[-0.255,3.562],[-3.57,-1.812]],"o":[[-2.012,0.938],[-0.51,2.625],[-0.113,2.75],[0.397,2.688],[1.289,2.132],[0.907,-2.75],[-1.672,-0.625],[-0.453,-6.688],[0.255,-3.562],[-0.822,-3.5]],"v":[[-57.656,37.965],[-61.566,46.902],[-63.096,60.715],[-62.048,83.34],[-59.838,91.027],[-53.916,90.527],[-56.948,88.84],[-60.631,75.34],[-61.028,52.152],[-54.879,41.965]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.292,-0.447],[2.565,-3.649],[0.42,-2.953],[-1.023,-2.899],[-3.507,-2.427],[-2.643,2.931],[3.748,2.084],[1.059,6.537],[-10.413,9.29],[-1.412,2.937]],"o":[[-5.187,1.011],[-2.86,4.067],[-1.802,12.664],[1.023,2.899],[3.322,2.3],[2.995,-3.322],[-3.744,-2.082],[-1.169,-7.214],[2.962,-2.643],[-2.119,-3.775]],"v":[[-28.174,32.59],[-41.752,41.616],[-48.276,57.245],[-46.15,81.57],[-37.619,90.297],[-18.486,93.612],[-31.376,86.065],[-43.077,73.259],[-32.983,42.489],[-13.779,35.642]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.961,-0.414],[1.125,-2.625],[0.25,-2.75],[-0.875,-2.688],[-3,-2.25],[-2,2.75],[3.688,0.625],[0.906,6.06],[-0.562,3.562],[-7.875,-1.812]],"o":[[-4.438,0.938],[-1.125,2.625],[-0.25,2.75],[0.875,2.688],[2.843,2.132],[2,-2.75],[-3.688,-0.625],[-1,-6.688],[0.562,-3.562],[-1.812,-3.5]],"v":[[-55.688,37.812],[-64.312,46.75],[-67.688,60.562],[-65.375,83.188],[-60.5,90.875],[-47.438,90.375],[-54.125,88.688],[-62.25,75.188],[-63.125,52],[-49.562,41.812]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.889,-0.414],[0.51,-2.625],[0.113,-2.75],[-0.397,-2.688],[-1.36,-2.25],[-0.907,2.75],[1.672,0.625],[0.411,6.06],[-0.255,3.562],[-3.57,-1.812]],"o":[[-2.012,0.938],[-0.51,2.625],[-0.113,2.75],[0.397,2.688],[1.289,2.132],[0.907,-2.75],[-1.672,-0.625],[-0.453,-6.688],[0.255,-3.562],[-0.822,-3.5]],"v":[[-57.656,37.965],[-61.566,46.902],[-63.096,60.715],[-62.048,83.34],[-59.838,91.027],[-53.916,90.527],[-56.948,88.84],[-60.631,75.34],[-61.028,52.152],[-54.879,41.965]]}],"t":435},{"s":[{"c":true,"i":[[2.115,-0.447],[2.367,-3.649],[0.388,-2.953],[-0.944,-2.899],[-3.236,-2.427],[-3.489,1.131],[3.458,2.084],[0.978,6.537],[-2.745,4.933],[-8.494,-1.955]],"o":[[-4.787,1.011],[-2.639,4.067],[-1.663,12.664],[0.944,2.899],[3.066,2.3],[3.403,-1.103],[-3.455,-2.082],[-1.079,-7.214],[1.892,-3.399],[-1.955,-3.775]],"v":[[-34.402,32.316],[-46.215,42.003],[-52.635,58.015],[-50.991,81.296],[-43.118,90.023],[-25.462,93.338],[-37.357,85.791],[-48.155,72.985],[-45.258,48.946],[-21.117,35.368]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.427450984716,1,0.811764717102,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"front highlight","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.094,-1.409],[0.859,0.04],[6.029,-6.524],[10.144,-5.113],[-1.496,0.289],[-1.775,1.334],[-2.841,6.865],[0.045,2.036]],"o":[[-2.816,1.282],[-0.859,-0.04],[-2.14,2.316],[-1.439,0.725],[3.775,-0.729],[3.26,-2.45],[2.559,-6.185],[-0.06,-2.664]],"v":[[2.934,59.706],[-1.98,61.787],[-8.687,82.136],[-23.157,94.439],[-12.99,94.374],[-3.413,91.073],[5.981,78.08],[8.616,56.62]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.682,-3.394],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.895,1.978],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-33.18,73.844],[-43.749,77.558],[-45.368,84.098],[-50.831,94.452],[-43.384,95.192],[-33.879,94.052],[-24.486,81.059],[-21.881,67.576]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.441,-4.554],[0.859,0.04],[0.861,-2.665],[2.81,-7.701],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.569,3.87]],"o":[[-4.91,2.649],[-0.859,-0.04],[-0.969,3],[-0.552,1.513],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.388,-2.636]],"v":[[-36.928,63.227],[-49.537,66.775],[-50.424,82.509],[-53.591,94.067],[-46.144,94.807],[-33.19,93.32],[-26.288,82.208],[-24.336,56.405]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.199,-2.666],[2.895,-0.803],[2.381,-3.744],[11.287,-6.94],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.688,2.341],[-0.829,0.23],[-1.692,2.661],[-1.372,0.844],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[4.073,64.829],[-2.971,68.741],[-7.826,80.19],[-22.308,94.47],[-14.861,95.21],[-7.541,93.628],[4.037,81.077],[8.957,61.886]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.181,-1.208],[1.272,-0.88],[2.381,-3.744],[13.48,-3.698],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-0.746,0.763],[-0.707,0.489],[-1.692,2.661],[-1.554,0.426],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[10.442,60.317],[6.43,63.752],[3.238,76.829],[-17.485,94.506],[-10.039,95.246],[-2.718,93.664],[10.502,78.425],[13.285,57.244]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.861,-2.232],[0.859,0.04],[0.861,-2.665],[4.778,-6.256],[-1.517,-0.137],[-2.18,0.424],[-2.841,6.865],[0.045,2.036]],"o":[[-3.97,1.823],[-0.859,-0.04],[-0.969,3],[-0.978,1.28],[1.517,0.137],[1.147,-0.223],[2.559,-6.185],[-0.06,-2.664]],"v":[[-29.287,75.336],[-38.665,78.203],[-40.93,84.843],[-47.07,94.576],[-39.623,95.317],[-30.118,94.176],[-20.725,81.184],[-18.12,67.701]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.792,-4.426],[0.926,0.043],[0.263,-3.006],[2.773,-6.311],[-1.635,-0.147],[-3.898,2.138],[-1.624,8.182],[0.049,2.194]],"o":[[-5.785,2.912],[-0.926,-0.043],[-0.411,4.699],[-0.698,1.589],[1.635,0.147],[1.104,-0.605],[1.404,-7.075],[-0.064,-2.871]],"v":[[-38.929,60.022],[-49.611,63.653],[-50.132,78.311],[-53.393,94.168],[-50.177,95.438],[-32.426,92.828],[-24.913,77.462],[-24.612,52.603]]}],"t":435},{"s":[{"c":true,"i":[[3.094,-1.409],[0.859,0.04],[6.029,-6.524],[10.144,-5.113],[-1.496,0.289],[-1.775,1.334],[-2.841,6.865],[0.045,2.036]],"o":[[-2.816,1.282],[-0.859,-0.04],[-2.14,2.316],[-1.439,0.725],[3.775,-0.729],[3.26,-2.45],[2.559,-6.185],[-0.06,-2.664]],"v":[[2.934,59.706],[-1.98,61.787],[-8.687,82.136],[-23.157,94.439],[-12.99,94.374],[-3.413,91.073],[5.981,78.08],[8.616,56.62]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.852,0.058],[2.356,-2.356],[3.842,0.067],[-0.055,-1.574],[0.482,-3.395],[4.928,-5.647],[-3.777,-0.147],[-5.427,0.458],[-0.145,3.111],[0.239,4.634]],"o":[[-2.852,-0.058],[-3.813,3.813],[-3.369,-0.059],[0.075,2.138],[-0.482,3.395],[3.553,-1.255],[3.777,0.147],[5.427,-0.458],[0.218,-4.677],[-0.148,-2.874]],"v":[[32.12,42.47],[22.358,48.175],[11.006,53.551],[9.257,57.052],[9.076,62.499],[2.655,83.919],[16.451,81.281],[43.575,78.771],[47.228,62.227],[47.121,49.643]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[5.22,-2.696],[1.983,0.04],[0.447,-3.147],[-3.855,1.51],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.776,1.434],[-1.983,-0.04],[-0.447,3.147],[11.214,-4.393],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[31,50.043],[7.618,50.526],[-5.263,57.114],[-20.796,62.034],[-21.337,68.921],[-27.016,89.905],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[33.541,54.505]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[4.912,-0.17],[2.598,-0.547],[0.447,-3.147],[2.934,-3.18],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-3.121,0.108],[-1.94,0.409],[-0.447,3.147],[12.306,-4.815],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.679,50.171],[7.618,50.526],[-12.052,50.648],[-23.441,51.543],[-23.577,68.604],[-29.785,90.885],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.267,54.273]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.916,0.629],[2.994,-1.991],[4.583,-2.398],[1.512,0.04],[0.341,-3.147],[4.318,-6.469],[-2.671,-0.137],[-3.837,0.424],[-0.102,2.885],[-0.135,4.297]],"o":[[-4.38,-1.437],[-2.79,1.856],[-2.33,1.219],[-0.022,0.706],[-0.341,3.147],[7.867,-4.292],[2.671,0.137],[3.837,-0.424],[0.154,-4.335],[0.239,-7.603]],"v":[[39.352,43.894],[26.343,48.971],[17.821,54.236],[9.048,58.02],[8.174,68.274],[2.521,85.531],[19.974,81.253],[45.375,78.032],[47.959,62.695],[47.825,53.84]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.916,0.629],[3.007,-2.581],[4.671,-2.699],[1.763,-0.801],[0.341,-3.147],[6.499,-8.079],[-2.671,-0.137],[-3.837,0.424],[-0.102,2.885],[-0.135,4.297]],"o":[[-4.38,-1.437],[-2.543,2.182],[-1.754,1.014],[-0.022,0.706],[-0.341,3.147],[7.867,-4.292],[2.671,0.137],[3.837,-0.424],[0.154,-4.335],[0.239,-7.603]],"v":[[34.76,41.83],[24.559,46.149],[18.068,50.721],[12.742,52.638],[13.224,63.612],[6.207,86.978],[19.974,81.253],[45.375,78.032],[47.959,62.695],[47.825,53.84]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.644,0.053],[3.709,-0.451],[2.606,-1.723],[1.983,0.04],[0.447,-3.147],[-3.424,2.328],[-3.502,-0.137],[-5.031,0.424],[-0.134,2.885],[0.221,4.296]],"o":[[-2.644,-0.053],[-3.709,0.451],[-2.606,1.723],[-1.983,-0.04],[-0.447,3.147],[9.065,-6.163],[3.502,0.137],[5.031,-0.424],[0.202,-4.335],[-0.137,-2.664]],"v":[[32.812,50.181],[7.618,50.526],[-3.664,57.333],[-16.828,61.933],[-17.664,68.688],[-24.151,91.008],[-2.193,81.668],[31.113,78.447],[34.499,63.11],[34.324,54.255]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.849,0.058],[4.465,0.468],[4.736,-0.186],[2.137,0.043],[-1.173,-5.898],[7.484,-11.108],[-4.003,0.771],[-5.422,0.457],[-0.145,3.108],[0.239,4.629]],"o":[[-2.849,-0.058],[-4.005,-0.42],[-3.364,0.132],[-2.137,-0.043],[1.19,5.983],[13.127,-6.091],[3.708,-0.714],[5.422,-0.457],[0.218,-4.672],[-0.148,-2.871]],"v":[[32.196,50.086],[5.453,50],[-7.071,50.002],[-15.464,50.641],[-24.998,51.095],[-30.622,91.854],[-5.289,81.908],[31.161,78.114],[34.014,64.019],[33.826,54.476]]}],"t":435},{"s":[{"c":true,"i":[[2.852,0.058],[2.356,-2.356],[3.842,0.067],[-0.055,-1.574],[0.482,-3.395],[4.928,-5.647],[-3.777,-0.147],[-5.427,0.458],[-0.145,3.111],[0.239,4.634]],"o":[[-2.852,-0.058],[-3.813,3.813],[-3.369,-0.059],[0.075,2.138],[-0.482,3.395],[3.553,-1.255],[3.777,0.147],[5.427,-0.458],[0.218,-4.677],[-0.148,-2.874]],"v":[[32.12,42.47],[22.358,48.175],[11.006,53.551],[9.257,57.052],[9.076,62.499],[2.655,83.919],[16.451,81.281],[43.575,78.771],[47.228,62.227],[47.121,49.643]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.001,-0.486],[3.789,-0.337],[0.911,-4.371],[-3.057,-2.224],[-5.076,4.217],[-0.359,5.683],[-0.665,4.555]],"o":[[-4.001,0.486],[-2.131,0.19],[-1.132,5.428],[4.63,3.368],[4.189,-3.481],[0.295,-4.672],[0.416,-2.847]],"v":[[23.414,80.937],[13.376,81.559],[12.137,96.684],[12.749,118.214],[26.826,118.513],[30.148,95.759],[31.955,81.245]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.35,-1.398],[-5.173,1.609],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.35,1.398],[5.173,-1.609],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.599,114.838],[16.988,115.55],[21.872,93.512],[20.252,80.706]]}],"t":30},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-2.26,-2.678],[-4.806,1.547],[0.656,4.681],[0.19,4.523]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.317,3.93],[4.815,-1.55],[-0.609,-4.346],[-0.112,-2.665]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[4.5,114.712],[19.443,116.296],[22.624,92.541],[20.252,80.706]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.71,-0.451],[2.43,-1.025],[0.553,-5.172],[-5.604,-4.913],[-2.85,3.045],[1.864,4.329],[-0.558,4.245]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.547,5.111],[4.06,3.559],[3.118,-3.332],[-1.712,-3.979],[0.349,-2.641]],"v":[[12.421,80.455],[5.893,81.196],[4.62,95.402],[8.554,117.312],[22.81,116.165],[23.266,94.085],[20.252,80.706]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":218},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.408,-3.881],[-1.689,-3.214],[-5.173,1.609],[-0.145,4.725],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.538,5.112],[2.787,5.305],[5.173,-1.609],[0.15,-4.898],[0.386,-2.64]],"v":[[19.944,81.092],[13.416,81.832],[11.963,96.019],[11.319,116.687],[25.901,119.557],[29.395,94.149],[31.107,80.773]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.408,-3.881],[-1.689,-3.214],[-5.173,1.609],[-0.145,4.725],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-0.538,5.112],[2.787,5.305],[5.173,-1.609],[0.15,-4.898],[0.386,-2.64]],"v":[[19.944,81.092],[13.416,81.832],[11.963,96.019],[11.319,116.687],[25.901,119.557],[31.204,91.787],[32.494,80.315]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.709,-0.451],[2.43,-1.025],[0.845,-4.053],[-3.502,-0.137],[-5.031,0.424],[1.96,4.302],[-0.617,4.223]],"o":[[-3.709,0.451],[-1.827,0.771],[-1.049,5.032],[3.502,0.137],[5.031,-0.424],[-1.799,-3.95],[0.386,-2.64]],"v":[[12.421,80.455],[5.893,81.196],[5.043,95.232],[3.616,114.318],[17.005,115.03],[21.872,93.512],[20.252,80.706]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.997,-0.486],[1.782,-0.859],[0.094,-4.46],[-3.086,-2.177],[-4.548,2.518],[2.112,4.636],[-0.665,4.551]],"o":[[-3.997,0.486],[-0.701,0.355],[-0.191,9.032],[3.169,2.236],[4.76,-2.636],[-1.939,-4.256],[0.415,-2.845]],"v":[[15.459,79.584],[5.204,80.933],[6.932,96.771],[6.301,115.55],[20.356,118.581],[25.068,94.917],[23.322,81.117]]}],"t":435},{"s":[{"c":true,"i":[[4.001,-0.486],[3.789,-0.337],[0.911,-4.371],[-3.057,-2.224],[-5.076,4.217],[-0.359,5.683],[-0.665,4.555]],"o":[[-4.001,0.486],[-2.131,0.19],[-1.132,5.428],[4.63,3.368],[4.189,-3.481],[0.295,-4.672],[0.416,-2.847]],"v":[[23.414,80.937],[13.376,81.559],[12.137,96.684],[12.749,118.214],[26.826,118.513],[30.148,95.759],[31.955,81.245]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"shadows","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.977,0.735],[-2.682,0.36],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[0.629,-0.195],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.473,87],[8.113,82.258],[12.221,81.766],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[1.397,2.289],[2.763,-0.011]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-1.397,-2.289],[-2.952,0.012]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.15,49.821],[22.552,45.378]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.393,4.591],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.463,-5.4],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[32.967,50.41],[22.914,44.729]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.188,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.287,-8.382],[-4.909,4.798],[0.802,4.686],[-1.405,0.319],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.188,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-0.645,4.201],[4.155,-4.061],[-0.862,-5.035],[1.405,-0.319],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-33.581,38.232],[-38.447,65.402],[-34.731,92.483],[-5.764,82.123],[4.94,81.03],[3.266,112.098],[20.917,114.741],[22.198,91.191],[20.264,79.26],[29.526,77.981],[34.886,70.44],[33.026,51.377],[25.338,45.615]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.113,-3.75],[-2.217,1.046],[-9.057,3.305],[-3.353,0.132],[-2.301,-8.441],[-4.69,8.763],[2.368,6.629],[-0.905,0.331],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.113,3.75],[9.961,-4.698],[4.473,-0.554],[1.25,3.25],[1.624,5.958],[3.534,-6.604],[-1.452,-4.064],[2.578,-1.08],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.577,45.758],[-33.581,38.232],[-46.627,65.402],[-33.144,92.306],[-5.764,82.123],[4.94,81.03],[4.791,112.226],[23.357,114.452],[22.216,91.623],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[26.97,46.229]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[22.914,44.729]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.97,0.761],[-3.617,0.143],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[2.107,-0.54],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.473,87],[12.352,81.275],[12.258,80.33],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.854,-0.27],[4.863,2.906],[0.27,-4.045],[9.012,-9.367],[-2.554,1.696],[-2.988,1.348],[0.623,-6.118],[-1.299,9.644],[-0.346,4.642],[-0.209,-0.023],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.785,0.029]],"o":[[-5.126,-1.182],[9.711,6.763],[-0.27,4.045],[3.065,-2.016],[2.568,-1.705],[-0.082,3.979],[-0.86,8.448],[0.793,-5.889],[0.403,-5.412],[2.685,-1.372],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.785,-0.029]],"v":[[15.576,40.882],[2.552,34.988],[13.27,60.321],[4.304,89.132],[10.511,84.638],[12.742,83.078],[10.375,113.204],[28.879,114.534],[30.966,91.315],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[33.357,41.308]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.25,-3.75],[-3.077,1.046],[-9.057,3.305],[-3.353,0.132],[1.5,-5.5],[-2.704,6.31],[0.75,4.25],[-2.5,1.25],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.25,3.75],[13.824,-4.698],[4.473,-0.554],[1.25,3.25],[-1.118,4.1],[2.25,-5.25],[-0.75,-4.25],[2.5,-1.25],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.328,45.163],[-30.329,38.733],[-31.25,65.25],[-31.479,92.984],[-5.764,82.123],[4.94,81.03],[2.5,111.75],[20.75,112],[20.75,91.5],[20.283,79.692],[29.526,77.981],[34.886,70.44],[33.74,49.54],[22.914,44.729]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.5,-0.25],[6.108,1.815],[0.113,-3.75],[-2.217,1.046],[-9.057,3.305],[-3.353,0.132],[2.966,-6.559],[-4.586,10.307],[2.368,6.629],[-1.353,0.05],[-3.71,0.215],[0.007,4.608],[0.25,3.25],[3.5,0.25]],"o":[[-4.752,-1.096],[-6.488,-1.928],[-0.113,3.75],[9.961,-4.698],[4.473,-0.554],[1.25,3.25],[-2.544,5.627],[3.045,-6.843],[-1.452,-4.064],[2.259,-0.083],[4.985,-0.289],[-0.007,-4.191],[-0.25,-3.25],[-3.5,-0.25]],"v":[[-7.577,45.758],[-33.581,38.232],[-46.627,65.402],[-33.144,92.306],[-5.764,82.123],[4.94,81.03],[5.062,110.692],[23.357,114.452],[24.564,93.437],[23.461,78.421],[29.526,77.981],[34.886,70.44],[32.884,49.735],[26.97,46.229]]}],"t":435},{"s":[{"c":true,"i":[[4.854,-0.27],[4.488,2.906],[0.27,-4.045],[9.012,-9.367],[-2.97,0.761],[-3.617,0.143],[0.623,-6.118],[-1.299,9.644],[-0.768,4.591],[-2.697,1.348],[-4.002,0.232],[0.008,4.97],[1.935,2.935],[3.775,0.27]],"o":[[-5.126,-1.182],[8.961,6.763],[-0.27,4.045],[3.065,-2.016],[2.107,-0.54],[1.348,3.506],[-0.86,8.448],[0.793,-5.889],[0.93,-5.56],[2.697,-1.348],[5.377,-0.311],[-0.007,-4.52],[-1.532,-2.323],[-3.775,-0.27]],"v":[[11.094,40.608],[-3.2,34.29],[8.789,60.047],[-0.307,87.516],[7.048,82.37],[12.396,81.782],[10.375,113.204],[28.879,114.534],[29.311,91.623],[32.329,79.336],[41.87,78.277],[47.652,70.143],[46.416,47.6],[34.738,42.41]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.489,2.594],[-1.162,8.006],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[6.67,-4.959],[1.214,-8.36],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-2.125,89.307],[7.623,66.015],[6.859,47.587]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":30},{"i":{"x":0.25,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":125},{"i":{"x":1,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[3.761,-0.5],[0.752,-9],[-1.88,-7],[-4.137,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-3.761,0.5],[-0.752,9],[1.02,3.796],[4.137,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-57.129,36.539],[-66.155,57.039],[-65.026,82.539],[-59.386,95.539],[-40.592,94.885],[-29.092,89.76],[-21.967,68.885],[-24.842,47.885]]}],"t":141},{"i":{"x":0.667,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.493,-0.5],[-5,0],[-1.441,3.5],[-0.776,7.422],[1.101,4.203]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.493,0.5],[5,0],[1.441,-3.5],[0.811,-7.75],[-1.441,-5.5]],"v":[[-36.84,35.886],[-57.888,36.539],[-63.327,57.039],[-62.648,82.539],[-59.248,95.539],[-40.592,94.885],[-29.081,89.583],[-23.946,68.708],[-26.018,47.708]]}],"t":203},{"i":{"x":0.2,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":218},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.13,3.019],[-1.162,8.006],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[4.74,-4.572],[1.214,-8.36],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-3.457,90.809],[8.335,65.959],[6.859,47.587]]}],"t":240},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[13.588,1.014],[6.246,-2.861],[3.331,-9.856],[-3.573,-7.308],[-7.338,-3.28],[-5.844,0],[-4.244,0.947],[0.792,8.47],[1.649,4.533]],"o":[[-9.693,-0.723],[-5.261,2.41],[-3.152,9.325],[2.487,5.086],[5.81,2.597],[5.844,0],[6.027,-1.345],[-0.787,-8.411],[-2.157,-5.933]],"v":[[-11.892,30.311],[-32.048,32.76],[-47.748,53.8],[-46.109,80.825],[-32.188,93.1],[-13.946,95.056],[-0.633,92.434],[12.703,66.53],[11.34,47.862]]}],"t":300},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[9,-0.5],[5,-0.5],[1,-9],[-2.5,-7],[-5.5,-0.5],[-5,0],[-2,3.5],[-1.077,7.422],[1.528,4.203]],"o":[[-9,0.5],[-5,0.5],[-1,9],[1.356,3.796],[5.5,0.5],[5,0],[2,-3.5],[1.125,-7.75],[-2,-5.5]],"v":[[-36.84,35.886],[-56.09,36.386],[-68.09,56.886],[-66.59,82.386],[-59.09,95.386],[-37.34,95.386],[-25.84,90.261],[-18.715,69.386],[-21.59,48.386]]}],"t":313},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9,-0.5],[2.267,-0.5],[0.453,-9],[-1.133,-7],[-2.493,-0.5],[-5,0],[-1.441,3.5],[-0.776,7.422],[1.101,4.203]],"o":[[-9,0.5],[-2.267,0.5],[-0.453,9],[0.615,3.796],[2.493,0.5],[5,0],[1.441,-3.5],[0.811,-7.75],[-1.441,-5.5]],"v":[[-36.84,35.886],[-57.888,36.539],[-63.327,57.039],[-62.648,82.539],[-59.248,95.539],[-40.592,94.885],[-29.081,89.583],[-23.946,68.708],[-26.018,47.708]]}],"t":435},{"s":[{"c":true,"i":[[12.54,1.014],[5.764,-2.861],[3.074,-9.856],[-3.298,-7.308],[-6.772,-3.28],[-5.393,0],[-3.611,2.422],[-0.609,8.067],[1.649,4.533]],"o":[[-8.945,-0.723],[-4.855,2.41],[-2.908,9.325],[2.295,5.086],[5.361,2.597],[5.393,0],[7.832,-5.252],[0.651,-8.622],[-2.157,-5.933]],"v":[[-15.612,30.083],[-37.984,32.486],[-52.473,53.526],[-50.96,80.551],[-38.113,92.826],[-21.279,94.782],[-4.444,91.146],[8.427,66.261],[6.859,47.587]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.09,0.114]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"fill","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":23,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1186.375,89.045,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1160.358,116.389,0]},"r":{"a":0,"ix":10,"k":75},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front arm strap","op":480,"parent":21,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[12.857,2.5],[2.764,25.439],[-26.459,-0.537],[-6.407,-2.007],[-3.831,-6.997],[18.082,-18.824]],"o":[[-12.857,-2.5],[-2.821,-25.97],[6.713,0.136],[7.502,2.35],[5.398,9.859],[0,0]],"v":[[-1216.656,124.95],[-1259.419,93.797],[-1216.64,44.711],[-1193.813,47.808],[-1171.316,69.561],[-1181.867,126.018]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.278431385756,0.745098054409,0.666666686535,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front strap","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":24,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1295.661,56.187,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1295.661,56.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0],"y":[0.926]},"o":{"x":[0.226],"y":[-0.013]},"s":[-24],"t":0},{"i":{"x":[0.687],"y":[0.869]},"o":{"x":[0.585],"y":[-0.198]},"s":[-36.742],"t":33},{"i":{"x":[0.955],"y":[0.565]},"o":{"x":[0.587],"y":[-0.088]},"s":[-31.84],"t":91},{"i":{"x":[0.226],"y":[1.052]},"o":{"x":[0.02],"y":[0.024]},"s":[-40.546],"t":128},{"i":{"x":[0.658],"y":[1.501]},"o":{"x":[0.597],"y":[-0.816]},"s":[-69.071],"t":143},{"i":{"x":[0.625],"y":[0.881]},"o":{"x":[0.299],"y":[0.036]},"s":[-74.765],"t":204},{"i":{"x":[0.574],"y":[1.769]},"o":{"x":[0.267],"y":[0.827]},"s":[-43.204],"t":232},{"i":{"x":[0.597],"y":[0.901]},"o":{"x":[0.266],"y":[-0.089]},"s":[-35.123],"t":302},{"i":{"x":[0.615],"y":[1.3]},"o":{"x":[0.407],"y":[-0.131]},"s":[-18.224],"t":329},{"i":{"x":[0.935],"y":[0.735]},"o":{"x":[0.482],"y":[0.199]},"s":[-50.369],"t":396},{"i":{"x":[0.654],"y":[0.876]},"o":{"x":[0.044],"y":[0.536]},"s":[-38.603],"t":409},{"i":{"x":[0.833],"y":[0.951]},"o":{"x":[0.353],"y":[0.48]},"s":[-26.41],"t":449},{"s":[-24],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Head","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[5.89,6.29],[6.173,10.555],[-31.869,41.718],[-36.964,8.089],[-22.543,-6.035],[-28.001,-21.569],[-7.57,-23.772],[10.449,-25.082],[11.602,-15.659],[38.213,-10.108]],"o":[[-20.212,-6.536],[-8.358,-8.925],[-25.392,-43.416],[31.869,-41.718],[26.695,-5.842],[17.838,4.776],[14.275,10.996],[8.245,25.89],[-7.441,17.862],[-7.5,10.122],[0,0]],"v":[[-1364.594,64.448],[-1407.25,36.836],[-1426.34,14.633],[-1419.443,-140.192],[-1320.859,-204.684],[-1242.125,-201.011],[-1170.206,-163.671],[-1131.645,-104.785],[-1134.655,-19.767],[-1159.368,23.794],[-1225.449,64.952]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Helmet","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[6.215,-6.562],[-1.842,-2.745],[-0.868,5.473],[-2.758,7.671]],"o":[[-6.749,7.126],[3.458,5.153],[0.312,-1.97],[2.018,-5.614]],"v":[[-1419.524,-106.473],[-1428.594,-78.459],[-1417.324,-79.167],[-1409.596,-101.248]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[11.173,3.061],[26.271,-9.478],[20.055,-21.006],[-6.194,1.313],[-7.789,8.079],[-12.587,6.129],[-20.168,0.294]],"o":[[-25.199,-6.905],[-27.942,10.081],[-19.713,20.647],[6.859,-1.454],[8.751,-9.077],[27.19,-13.24],[13.305,-0.194]],"v":[[-1256.206,-188.055],[-1332.986,-183.559],[-1396.688,-139.562],[-1400.137,-113.137],[-1375.442,-136.589],[-1337.667,-164.576],[-1258.15,-175.655]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Helmet highlights","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.672,-1.633],[-1.303,-6.385]],"o":[[1.509,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[2.48,6.026],[0,0]],"v":[[-1365.8,-105.074],[-1358.227,-128.939],[-1356.959,-130.329],[-1355.442,-129.783],[-1352.661,-125.338],[-1346.97,-106.666]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.3,7.69],[-0.631,0.16],[-0.437,-0.347],[-0.425,-1.714],[-1.48,-6.346]],"o":[[1.281,-8.27],[0.257,-0.598],[0.54,-0.137],[1.383,1.098],[1.902,7.674],[0,0]],"v":[[-1364.701,-104.599],[-1356.78,-128.316],[-1355.551,-129.74],[-1354.02,-129.236],[-1351.116,-124.871],[-1348.879,-99.233]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.377,-1.725],[-1.303,-6.385]],"o":[[1.51,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[1.688,7.724],[0,0]],"v":[[-1371.9,-108.131],[-1363.324,-131.619],[-1362.056,-133.009],[-1360.539,-132.463],[-1357.758,-128.018],[-1356.233,-102.328]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1363.96,-108.131],[-1357.667,-131.619],[-1356.737,-133.009],[-1356.344,-132.991],[-1355.119,-128.038],[-1354.97,-102.837]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1363.96,-108.131],[-1357.667,-131.619],[-1356.737,-133.009],[-1356.344,-132.991],[-1355.119,-128.038],[-1354.97,-102.837]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.079,7.781],[-0.626,0.178],[-0.446,-0.334],[-0.474,-1.701],[-1.66,-6.301]],"o":[[1.044,-8.303],[0.24,-0.605],[0.536,-0.153],[1.413,1.058],[2.12,7.617],[0,0]],"v":[[-1364.337,-102.569],[-1357.096,-126.502],[-1355.908,-127.961],[-1354.363,-127.501],[-1351.336,-123.22],[-1348.368,-97.656]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.066,7.786],[-0.626,0.179],[-0.447,-0.333],[-0.476,-1.7],[-1.671,-6.298]],"o":[[1.03,-8.304],[0.239,-0.606],[0.536,-0.154],[1.415,1.056],[2.133,7.613],[0,0]],"v":[[-1365.605,-104.545],[-1358.404,-128.49],[-1357.218,-129.951],[-1355.673,-129.494],[-1352.638,-125.218],[-1349.628,-99.659]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1358.841,-107.556],[-1352.549,-131.044],[-1351.618,-132.434],[-1351.226,-132.416],[-1350.001,-127.463],[-1349.852,-102.262]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.577,7.595],[-0.466,0.143],[-0.313,-0.359],[-0.277,-1.725],[-0.956,-6.385]],"o":[[1.108,-8.231],[0.201,-0.591],[0.399,-0.122],[0.992,1.136],[1.239,7.724],[0,0]],"v":[[-1358.841,-107.556],[-1352.549,-131.044],[-1351.618,-132.434],[-1351.226,-132.416],[-1350.001,-127.463],[-1349.852,-102.262]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.3,7.69],[-0.631,0.16],[-0.437,-0.347],[-0.425,-1.714],[-0.446,-7.909]],"o":[[1.281,-8.27],[0.257,-0.598],[0.54,-0.137],[1.383,1.098],[1.902,7.674],[0,0]],"v":[[-1364.701,-104.599],[-1356.78,-128.316],[-1355.551,-129.74],[-1353.308,-131.969],[-1351.116,-124.871],[-1347.846,-99.839]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-3.512,7.595],[-0.635,0.143],[-0.427,-0.359],[-0.672,-1.633],[-1.303,-6.385]],"o":[[1.509,-8.231],[0.273,-0.591],[0.544,-0.122],[1.352,1.136],[2.48,6.026],[0,0]],"v":[[-1365.8,-105.074],[-1358.227,-128.939],[-1356.959,-130.329],[-1355.442,-129.783],[-1352.661,-125.338],[-1346.97,-106.666]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.07,5.251],[-0.108,-0.675],[3.571,-8.522]],"o":[[4.995,-7.253],[0.557,0.396],[1.463,9.123],[0,0]],"v":[[-1225.614,-100.355],[-1206.01,-123.816],[-1205.181,-122.003],[-1209.769,-90.298]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.937,5.362],[-0.194,-1.684],[2.484,-8.594]],"o":[[4.792,-7.389],[1.199,-0.927],[1.022,8.858],[0,0]],"v":[[-1242.087,-106.267],[-1220.747,-130.683],[-1218.565,-123.91],[-1222.645,-97.95]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.083,5.167],[-0.148,-1.689],[2.722,-8.522]],"o":[[4.995,-7.253],[1.225,-0.893],[0.776,8.883],[0,0]],"v":[[-1249.287,-106.397],[-1227.278,-130.212],[-1225.284,-123.382],[-1230.083,-97.545]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1251.409,-107.732],[-1228.961,-134.023],[-1230.232,-124.448],[-1235.725,-98.879]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1251.409,-107.732],[-1228.961,-134.023],[-1230.232,-124.448],[-1235.725,-98.879]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.781,5.557],[-0.242,-1.678],[2.238,-8.662]],"o":[[4.58,-7.523],[1.172,-0.961],[1.274,8.825],[0,0]],"v":[[-1241.821,-107.734],[-1221.186,-132.749],[-1218.811,-126.042],[-1222.149,-99.976]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-6.772,5.568],[-0.245,-1.678],[2.224,-8.665]],"o":[[4.567,-7.53],[1.171,-0.963],[1.289,8.823],[0,0]],"v":[[-1243.098,-109.916],[-1222.505,-134.965],[-1220.119,-128.262],[-1223.412,-102.19]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1244.767,-102.713],[-1221.914,-132.847],[-1223.177,-122.872],[-1230.606,-98.305]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-5.785,5.167],[0.287,-1.669],[2.223,-8.522]],"o":[[4.08,-7.253],[1,-0.893],[-1.641,9.531],[0,0]],"v":[[-1244.767,-102.713],[-1221.914,-132.847],[-1223.177,-122.872],[-1230.606,-98.305]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-6.093,5.849],[-0.194,-1.684],[2.484,-8.594]],"o":[[4.792,-7.389],[1.094,-1.05],[1.022,8.858],[0,0]],"v":[[-1238.151,-104.132],[-1217.559,-129.035],[-1215.376,-122.263],[-1219.456,-96.302]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-7.07,5.251],[-0.108,-0.675],[3.571,-8.522]],"o":[[4.995,-7.253],[0.557,0.396],[1.463,9.123],[0,0]],"v":[[-1225.614,-100.355],[-1206.01,-123.816],[-1205.181,-122.003],[-1209.769,-90.298]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Ear lines","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-5.612,13.435],[-2.809,-1.873],[-3.178,-8.896],[0.936,-15.607],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-4.603,5.992],[-3.746,-1.249],[2.185,-33.086],[0.48,-4.519],[0.708,-2.374],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[5.695,-13.633],[2.809,1.873],[3.337,9.34],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[7.745,-10.082],[3.746,1.249],[-2.185,33.086],[-0.558,5.25],[-0.736,2.466],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1333.89,-107.066],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-26.057,60.924],[-7.142,12.688],[-2.86,-1.794],[-1.508,-9.326],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-7.645,7.817],[-5.72,3.409],[0.747,-33.12],[0.24,-4.528],[0.474,-2.388],[2.524,-11.936],[37.936,-5.736],[33.586,15.752]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[1.508,9.326],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[6.582,-6.73],[2.724,-1.624],[-0.747,33.12],[-0.279,5.26],[-0.492,2.481],[-2.524,11.936],[-37.936,5.736],[-27.879,-13.075]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1338.391,-137.439],[-1335.827,-104.344],[-1311.092,-102.931],[-1255.894,-100.403],[-1252.969,-99.548],[-1227.771,-129.242],[-1207.068,-149.273],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1374.57,46.578]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-27.737,60.178],[-7.491,12.485],[-2.809,-1.873],[-1.249,-9.364],[0.936,-15.607],[-13.183,0.312],[-8.437,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[36.619,19.677]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[1.249,9.364],[0,0],[13.183,-0.312],[8.437,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.467],[-2.854,11.861],[-38.08,4.682],[-27.125,-14.576]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1344.69,-140.229],[-1343.044,-107.075],[-1318.357,-104.977],[-1263.251,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1385.958,42.714]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.137,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.08,4.682],[-27.506,-13.843]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.848,-140.879],[-1330.687,-106.336],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1369.772,46.612]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.665,-33.086],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.137,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.665,33.086],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.08,4.682],[-27.506,-13.843]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.848,-140.879],[-1330.687,-106.336],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.339,-128.967],[-1213.089,-148.416],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1369.772,46.612]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.308,61.643],[-6.777,12.887],[-2.91,-1.712],[-1.773,-9.279],[0.057,-15.635],[-13.145,1.053],[-8.565,-2.019],[-0.807,-0.267],[-7.419,8.032],[-5.621,3.571],[-0.198,-33.128],[0.111,-4.533],[0.406,-2.4],[2.183,-12.003],[37.757,-6.816],[34.022,14.787]],"o":[[0,0],[6.777,-12.887],[2.91,1.712],[1.773,9.279],[0,0],[13.145,-1.053],[8.565,2.019],[0.807,0.267],[6.387,-6.915],[2.677,-1.701],[0.198,33.128],[-0.129,5.266],[-0.422,2.494],[-2.183,12.003],[-37.757,6.816],[-28.241,-12.275]],"v":[[-1366.314,-92.012],[-1354.853,-138.302],[-1343.871,-154.239],[-1338.975,-136.146],[-1335.468,-103.138],[-1310.702,-102.431],[-1255.455,-101.479],[-1252.506,-100.707],[-1228.165,-131.108],[-1208.043,-151.722],[-1193.246,-116.768],[-1191.545,-69.656],[-1191.247,-55.917],[-1195.109,19.331],[-1226.875,52.384],[-1369.889,48.828]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-24.205,61.684],[-6.755,12.898],[-2.913,-1.707],[-1.789,-9.276],[0.031,-15.635],[-13.143,1.075],[-8.568,-2.004],[-0.808,-0.266],[-7.406,8.045],[-5.615,3.58],[-0.254,-33.127],[0.104,-4.533],[0.401,-2.401],[2.163,-12.007],[37.745,-6.88],[35.931,18.029]],"o":[[0,0],[6.755,-12.898],[2.913,1.707],[1.789,9.276],[0,0],[13.143,-1.075],[8.568,2.004],[0.808,0.266],[6.375,-6.926],[2.674,-1.705],[0.254,33.127],[-0.12,5.266],[-0.417,2.495],[-2.163,12.007],[-37.745,6.88],[-27.522,-13.81]],"v":[[-1367.564,-93.985],[-1356.181,-140.294],[-1345.226,-156.25],[-1337.467,-137.057],[-1332.635,-104.335],[-1311.97,-104.497],[-1256.721,-103.638],[-1253.771,-102.871],[-1229.481,-133.313],[-1209.394,-153.96],[-1194.538,-119.031],[-1192.758,-71.922],[-1192.437,-58.184],[-1196.172,17.071],[-1227.883,50.177],[-1370.903,46.861]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.479,-38.3],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.136,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.278,33.104],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.081,4.682],[-27.506,-13.843]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.73,-140.304],[-1325.568,-105.762],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.22,-128.392],[-1207.97,-147.841],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1364.653,47.186]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-20.352,60.178],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-7.859,7.602],[-5.813,3.249],[1.479,-38.3],[0.366,-4.519],[0.54,-2.374],[2.854,-11.861],[38.08,-4.682],[33.136,16.677]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.766,-6.545],[2.768,-1.547],[-1.278,33.104],[-0.425,5.25],[-0.561,2.466],[-2.854,11.861],[-38.081,4.682],[-27.506,-13.843]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.73,-140.304],[-1325.568,-105.762],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.22,-128.392],[-1207.97,-147.841],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1364.653,47.186]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-26.057,60.924],[-5.899,13.117],[-2.86,-1.794],[-2.173,-9.194],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-5.615,9.383],[-5.72,3.409],[0.747,-33.12],[0.24,-4.528],[0.474,-2.388],[2.524,-11.936],[37.936,-5.736],[33.586,15.752]],"o":[[0,0],[5.972,-13.279],[2.86,1.794],[2.173,9.194],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[5.335,-8.916],[2.724,-1.624],[-0.747,33.12],[-0.279,5.26],[-0.492,2.481],[-2.524,11.936],[-37.936,5.736],[-27.879,-13.075]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1334.667,-136.525],[-1328.926,-102.838],[-1311.092,-102.931],[-1251.081,-99.616],[-1248.155,-98.76],[-1225.929,-128.47],[-1207.068,-149.273],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1374.57,46.578]]}],"t":420},{"s":[{"c":true,"i":[[-25.907,60.866],[-7.139,16.883],[-2.809,-1.873],[-2.959,-8.971],[-2.355,-14.174],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-4.426,6.124],[-3.746,-1.249],[2.185,-33.086],[0.48,-4.519],[0.708,-2.374],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[5.671,-13.411],[2.809,1.873],[2.746,8.326],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[7.256,-10.039],[3.746,1.249],[-2.185,33.086],[-0.558,5.25],[-0.736,2.466],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1361.132,-143.843],[-1348.56,-158.569],[-1339.508,-138.28],[-1331.577,-106.874],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Head stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.702,-6.793],[-0.692,-0.545],[-1.433,0.197],[-2.218,3.534],[-1.528,5.368]],"o":[[1.788,7.527],[0.422,0.774],[1.136,0.896],[4.133,-0.57],[2.967,-4.728],[0,0]],"v":[[-1271.674,-103.325],[-1267.398,-80.658],[-1265.79,-78.583],[-1261.669,-77.664],[-1252.295,-85.328],[-1245.506,-100.574]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.314,-6.704],[-0.599,-0.529],[-1.205,0.231],[-1.775,3.585],[-5.223,1.186]],"o":[[-7.028,6.578],[0.378,0.763],[0.984,0.869],[3.474,-0.666],[2.374,-4.795],[0,0]],"v":[[-1285.143,-102.406],[-1292.063,-81.996],[-1290.648,-79.96],[-1287.142,-79.137],[-1279.439,-87.018],[-1262.971,-100.269]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.127,-6.793],[-0.584,-0.545],[-1.21,0.197],[-1.873,3.534],[-5.254,1.041]],"o":[[-7.208,6.38],[0.356,0.774],[0.96,0.896],[3.492,-0.57],[2.506,-4.728],[0,0]],"v":[[-1292.433,-103.733],[-1299.917,-83.523],[-1298.559,-81.448],[-1295.077,-80.528],[-1287.158,-88.193],[-1270.329,-100.982]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1294.295,-104.212],[-1308.058,-85.107],[-1306.82,-83.032],[-1303.646,-82.112],[-1296.427,-89.777],[-1274.143,-101.462]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1294.295,-104.212],[-1308.058,-85.107],[-1306.82,-83.032],[-1303.646,-82.112],[-1296.427,-89.777],[-1274.143,-101.462]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.504,-6.606],[-0.614,-0.512],[-1.198,0.265],[-1.672,3.634],[-5.187,1.335]],"o":[[-6.837,6.775],[0.399,0.752],[1.008,0.84],[3.454,-0.765],[2.236,-4.861],[0,0]],"v":[[-1284.749,-102.647],[-1291.084,-82.048],[-1289.611,-80.053],[-1286.083,-79.33],[-1278.608,-87.428],[-1262.525,-101.143]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.515,-6.6],[-0.615,-0.511],[-1.197,0.267],[-1.666,3.637],[-5.184,1.344]],"o":[[-6.826,6.787],[0.4,0.752],[1.01,0.839],[3.453,-0.771],[2.228,-4.865],[0,0]],"v":[[-1286.017,-104.756],[-1292.317,-84.147],[-1290.841,-82.154],[-1287.312,-81.438],[-1279.851,-89.548],[-1263.79,-103.29]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1289.176,-103.638],[-1302.939,-84.532],[-1301.701,-82.457],[-1298.527,-81.537],[-1291.308,-89.202],[-1269.024,-100.887]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-2.851,-6.793],[-0.533,-0.545],[-1.104,0.197],[-1.708,3.534],[-8.131,-0.591]],"o":[[-10.107,3.648],[0.325,0.774],[0.875,0.896],[3.183,-0.57],[2.285,-4.728],[0,0]],"v":[[-1289.176,-103.638],[-1302.939,-84.532],[-1301.701,-82.457],[-1298.527,-81.537],[-1291.308,-89.202],[-1269.024,-100.887]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.314,-6.704],[-0.599,-0.529],[-1.205,0.231],[-1.775,3.585],[-5.223,1.186]],"o":[[-7.028,6.578],[0.378,0.763],[0.984,0.869],[3.474,-0.666],[2.374,-4.795],[0,0]],"v":[[-1285.143,-102.406],[-1292.063,-81.996],[-1290.648,-79.96],[-1287.142,-79.137],[-1279.439,-87.018],[-1262.971,-100.269]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-3.702,-6.793],[-0.692,-0.545],[-1.433,0.197],[-2.218,3.534],[-1.528,5.368]],"o":[[1.788,7.527],[0.422,0.774],[1.136,0.896],[4.133,-0.57],[2.967,-4.728],[0,0]],"v":[[-1271.674,-103.325],[-1267.398,-80.658],[-1265.79,-78.583],[-1261.669,-77.664],[-1252.295,-85.328],[-1245.506,-100.574]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.418,-6.418],[-1.79,-1.189],[-1.503,0.676],[-1.644,3.403],[-1.947,4.029],[0.573,0.931]],"o":[[0.418,6.418],[0.14,2.144],[1.373,0.912],[3.446,-1.551],[1.947,-4.029],[0.476,-0.984],[0,0]],"v":[[-1303.011,-103.964],[-1301.758,-84.71],[-1299.518,-78.921],[-1294.784,-78.857],[-1287.793,-87.472],[-1281.952,-99.559],[-1281.58,-102.672]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.743,-6.385],[-1.288,-1.428],[-1.366,0.451],[-1.947,3.117],[-5.434,5.833],[0.51,0.917]],"o":[[-4.323,6.408],[-0.248,2.133],[0.988,1.096],[3.133,-1.034],[2.306,-3.691],[0.724,-0.778],[0,0]],"v":[[-1311.622,-102.311],[-1319.015,-86.57],[-1318.134,-80.545],[-1314.204,-79.801],[-1306.92,-87.287],[-1296.586,-99.391],[-1292.01,-102.523]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.919,-6.362],[-1.248,-1.464],[-1.378,0.413],[-2.033,3.062],[-5.594,5.68],[0.485,0.931]],"o":[[-4.5,6.285],[-0.307,2.125],[0.957,1.123],[3.16,-0.947],[2.407,-3.626],[0.746,-0.757],[0,0]],"v":[[-1318.904,-104.372],[-1326.731,-88.842],[-1326.018,-82.795],[-1322.11,-81.942],[-1314.622,-89.224],[-1303.956,-101.036],[-1299.295,-104.04]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.872,1.123],[2.881,-0.947],[2.194,-3.626],[0.867,-0.533],[0,0]],"v":[[-1314.175,-104.612],[-1324.43,-90.263],[-1323.78,-84.215],[-1320.217,-83.363],[-1313.39,-90.645],[-1300.374,-101.813],[-1294.723,-104.011]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.872,1.123],[2.881,-0.947],[2.194,-3.626],[0.867,-0.533],[0,0]],"v":[[-1314.175,-104.612],[-1324.43,-90.263],[-1323.78,-84.215],[-1320.217,-83.363],[-1313.39,-90.645],[-1300.374,-101.813],[-1294.723,-104.011]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.56,-6.403],[-1.328,-1.391],[-1.352,0.49],[-1.857,3.172],[-5.266,5.985],[0.536,0.902]],"o":[[-4.139,6.528],[-0.187,2.139],[1.019,1.067],[3.102,-1.123],[2.199,-3.755],[0.702,-0.798],[0,0]],"v":[[-1311.214,-101.796],[-1318.155,-85.851],[-1317.102,-79.853],[-1313.153,-79.222],[-1306.086,-86.913],[-1296.102,-99.306],[-1291.617,-102.568]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.55,-6.404],[-1.33,-1.389],[-1.351,0.492],[-1.852,3.175],[-5.256,5.994],[0.538,0.901]],"o":[[-4.128,6.535],[-0.184,2.139],[1.02,1.065],[3.1,-1.128],[2.193,-3.759],[0.701,-0.799],[0,0]],"v":[[-1312.481,-103.861],[-1319.395,-87.905],[-1318.332,-81.908],[-1314.382,-81.284],[-1307.328,-88.987],[-1297.364,-101.397],[-1292.885,-104.666]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.873,1.123],[2.881,-0.947],[2.195,-3.626],[0.867,-0.533],[0,0]],"v":[[-1309.056,-104.037],[-1319.312,-89.688],[-1318.661,-83.641],[-1315.099,-82.788],[-1308.272,-90.07],[-1295.255,-101.239],[-1289.604,-103.436]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.838,-6.362],[-1.137,-1.464],[-1.256,0.413],[-1.853,3.062],[-6.073,3.736],[0.442,0.931]],"o":[[-6.365,4.614],[-0.28,2.125],[0.873,1.123],[2.881,-0.947],[2.195,-3.626],[0.867,-0.533],[0,0]],"v":[[-1309.056,-104.037],[-1319.312,-89.688],[-1318.661,-83.641],[-1315.099,-82.788],[-1308.272,-90.07],[-1295.255,-101.239],[-1289.604,-103.436]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.743,-6.385],[-1.288,-1.428],[-1.366,0.451],[-1.947,3.117],[-5.434,5.833],[0.51,0.917]],"o":[[-4.323,6.408],[-0.248,2.133],[0.988,1.096],[3.133,-1.034],[2.305,-3.691],[0.725,-0.778],[0,0]],"v":[[-1309.293,-102.288],[-1316.687,-86.547],[-1315.805,-80.522],[-1311.876,-79.778],[-1304.592,-87.264],[-1294.258,-99.368],[-1289.682,-102.5]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-0.418,-6.418],[-1.79,-1.189],[-1.503,0.676],[-1.644,3.403],[-1.947,4.029],[0.573,0.931]],"o":[[0.418,6.418],[0.14,2.144],[1.373,0.912],[3.446,-1.551],[1.947,-4.029],[0.476,-0.984],[0,0]],"v":[[-1303.011,-103.964],[-1301.758,-84.71],[-1299.518,-78.921],[-1294.784,-78.857],[-1287.793,-87.472],[-1281.952,-99.559],[-1281.58,-102.672]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.712,-6.854],[-0.489,-0.806],[-0.898,-0.188],[-2.445,1.689],[-2.394,7.522]],"o":[[-3.059,6.174],[-0.097,0.938],[0.476,0.784],[2.908,0.608],[6.495,-4.486],[0,0]],"v":[[-1330.445,-105.569],[-1336.162,-85.818],[-1335.829,-83.061],[-1333.548,-81.666],[-1325.256,-84.177],[-1311.419,-102.87]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.411,-6.868],[-0.435,-0.794],[-0.764,-0.167],[-2.017,1.745],[-9.281,4.937]],"o":[[-8.148,5.793],[-0.056,0.94],[0.423,0.773],[2.473,0.539],[5.36,-4.637],[0,0]],"v":[[-1334.831,-103.273],[-1344.292,-84.803],[-1343.934,-82.056],[-1341.969,-80.714],[-1335.037,-83.419],[-1318.056,-102.313]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.602,-6.854],[-0.413,-0.806],[-0.759,-0.188],[-2.065,1.688],[-9.415,4.677]],"o":[[-8.306,5.564],[-0.082,0.938],[0.402,0.784],[2.457,0.608],[5.487,-4.486],[0,0]],"v":[[-1342.078,-105.977],[-1352.047,-87.777],[-1351.766,-85.021],[-1349.839,-83.625],[-1342.835,-86.137],[-1325.336,-104.552]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1330.117,-105.737],[-1342.47,-91.262],[-1343.222,-86.807],[-1341.465,-85.411],[-1335.08,-87.922],[-1314.854,-104.312]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1330.117,-105.737],[-1342.47,-91.262],[-1343.222,-86.807],[-1341.465,-85.411],[-1335.08,-87.922],[-1314.854,-104.312]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.215,-6.877],[-0.458,-0.782],[-0.768,-0.145],[-1.967,1.802],[-9.136,5.2]],"o":[[-7.979,6.023],[-0.029,0.941],[0.445,0.76],[2.487,0.468],[5.226,-4.788],[0,0]],"v":[[-1334.441,-102.095],[-1343.371,-83.364],[-1342.935,-80.628],[-1340.933,-79.342],[-1334.081,-82.244],[-1317.646,-101.614]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.204,-6.877],[-0.459,-0.781],[-0.768,-0.143],[-1.964,1.805],[-9.128,5.215]],"o":[[-7.969,6.036],[-0.028,0.941],[0.447,0.76],[2.488,0.464],[5.218,-4.797],[0,0]],"v":[[-1332.516,-104.224],[-1341.414,-85.478],[-1340.974,-82.742],[-1338.969,-81.461],[-1332.122,-84.373],[-1315.72,-103.771]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1324.999,-105.162],[-1337.352,-90.687],[-1338.104,-86.232],[-1336.347,-84.836],[-1329.961,-87.347],[-1309.736,-103.737]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[1.204,-6.441],[-0.377,-0.806],[-0.692,-0.188],[-1.883,1.688],[-8.583,4.677]],"o":[[-5.984,3.407],[-0.173,0.923],[0.366,0.784],[2.24,0.608],[5.002,-4.486],[0,0]],"v":[[-1324.999,-105.162],[-1337.352,-90.687],[-1338.104,-86.232],[-1336.347,-84.836],[-1329.961,-87.347],[-1309.736,-103.737]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.412,-6.868],[-0.435,-0.794],[-0.764,-0.167],[-2.017,1.745],[-9.281,4.937]],"o":[[-8.148,5.793],[-0.056,0.94],[0.423,0.773],[2.473,0.539],[5.36,-4.637],[0,0]],"v":[[-1329.972,-102.882],[-1339.433,-84.413],[-1339.076,-81.666],[-1337.111,-80.324],[-1330.179,-83.028],[-1313.198,-101.922]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[0.712,-6.854],[-0.489,-0.806],[-0.898,-0.188],[-2.445,1.689],[-2.394,7.522]],"o":[[-3.059,6.174],[-0.097,0.938],[0.476,0.784],[2.908,0.608],[6.495,-4.486],[0,0]],"v":[[-1330.445,-105.569],[-1336.162,-85.818],[-1335.829,-83.061],[-1333.548,-81.666],[-1325.256,-84.177],[-1311.419,-102.87]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Head stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1395.712,19.525],[-1413.534,24.893]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.786,-2.247]],"o":[[-5.982,1.656],[0,0]],"v":[[-1388.584,24.31],[-1402.629,29.529]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1399.349,20.065],[-1413.534,24.893]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[4.289,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1385.704,20.439],[-1394.509,24.893]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[4.289,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1385.704,20.439],[-1394.509,24.893]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.719,-2.411]],"o":[[-5.932,1.826],[0,0]],"v":[[-1384.533,26.968],[-1398.423,32.586]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[5.715,-2.421]],"o":[[-5.929,1.836],[0,0]],"v":[[-1385.583,25.026],[-1399.465,30.667]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[4.29,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1380.585,21.014],[-1389.39,25.468]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[4.29,-2.085]],"o":[[-4.421,1.49],[0,0]],"v":[[-1380.585,21.014],[-1389.39,25.468]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[5.786,-2.247]],"o":[[-5.982,1.656],[0,0]],"v":[[-1388.584,24.31],[-1402.629,29.529]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[5.846,-2.085]],"o":[[-6.025,1.49],[0,0]],"v":[[-1395.712,19.525],[-1413.534,24.893]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[4.212,1.4]],"o":[[-4.212,-1.4],[0,0]],"v":[[-1398.483,3.866],[-1411.12,-0.335]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,1.293]],"o":[[-3.891,-1.293],[0,0]],"v":[[-1391.212,5.777],[-1401.905,2.09]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[3.854,1.4]],"o":[[-3.854,-1.4],[0,0]],"v":[[-1401.462,1.467],[-1412.049,-2.516]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1386.509,3.184],[-1392.738,-0.335]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1386.509,3.184],[-1392.738,-0.335]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.926,1.181]],"o":[[-3.926,-1.181],[0,0]],"v":[[-1387.689,8.519],[-1398.483,5.138]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[3.928,1.175]],"o":[[-3.928,-1.175],[0,0]],"v":[[-1388.77,6.582],[-1399.57,3.219]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1381.39,3.759],[-1387.619,0.24]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[3.091,1.4]],"o":[[-3.091,-1.4],[0,0]],"v":[[-1381.39,3.759],[-1387.619,0.24]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[3.891,1.293]],"o":[[-3.891,-1.293],[0,0]],"v":[[-1391.212,5.777],[-1401.905,2.09]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[4.212,1.4]],"o":[[-4.212,-1.4],[0,0]],"v":[[-1398.483,3.866],[-1411.12,-0.335]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.475,-3.726]],"o":[[13.978,0.278],[0,0]],"v":[[-1228.81,33.984],[-1187.414,40.022]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.369,-3.44]],"o":[[10.656,-0.017],[0,0]],"v":[[-1242.375,30.226],[-1183.72,39.391]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1253.361,30.034],[-1194.982,40.823]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1259.581,29.459],[-1202.912,40.765]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-10.269,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1259.581,29.459],[-1202.912,40.765]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.463,-3.143]],"o":[[10.651,-0.321],[0,0]],"v":[[-1238.215,28.711],[-1179.322,36.199]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-10.468,-3.125]],"o":[[10.651,-0.339],[0,0]],"v":[[-1239.263,26.523],[-1180.357,33.912]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-10.27,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1254.463,30.033],[-1197.793,41.34]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-10.27,-3.726]],"o":[[10.653,0.278],[0,0]],"v":[[-1254.463,30.033],[-1197.793,41.34]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-10.369,-3.44]],"o":[[10.656,-0.017],[0,0]],"v":[[-1242.375,30.226],[-1183.72,39.391]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-13.475,-3.726]],"o":[[13.978,0.278],[0,0]],"v":[[-1228.81,33.984],[-1187.414,40.022]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.841,4.238]],"o":[[13.095,-6.169],[0,0]],"v":[[-1226.817,23.281],[-1186.343,7.644]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.211,1.379]],"o":[[9.805,-6.443],[0,0]],"v":[[-1241.154,19.485],[-1184.571,4.848]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1251.842,19.331],[-1194.875,6.27]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1258.063,18.755],[-1202.804,6.212]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1258.063,18.755],[-1202.804,6.212]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.166,1.755]],"o":[[9.617,-6.72],[0,0]],"v":[[-1237.301,17.939],[-1181.158,1.695]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-13.164,1.777]],"o":[[9.606,-6.736],[0,0]],"v":[[-1238.366,15.75],[-1182.251,-0.589]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1252.944,19.33],[-1197.686,6.787]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-13.244,1.012]],"o":[[9.98,-6.169],[0,0]],"v":[[-1252.944,19.33],[-1197.686,6.787]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-13.211,1.379]],"o":[[9.805,-6.443],[0,0]],"v":[[-1241.154,19.485],[-1184.571,4.848]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[-13.841,4.238]],"o":[[13.095,-6.169],[0,0]],"v":[[-1226.817,23.281],[-1186.343,7.644]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Whiskers","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.191,-6.555]],"o":[[-0.191,6.555],[0,0]],"v":[[-1317.113,14.782],[-1317.64,34.805]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.308,-7.153]],"o":[[-2.949,5.557],[0,0]],"v":[[-1355.016,8.906],[-1358.548,29.292]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.109,-7.159]],"o":[[-3.102,5.473],[0,0]],"v":[[-1365.367,5.599],[-1369.463,25.879]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1367.168,2.167],[-1373.923,27.665]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1367.168,2.167],[-1373.923,27.665]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.512,-7.141]],"o":[[-2.789,5.639],[0,0]],"v":[[-1351.418,10.614],[-1354.367,31.092]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.524,-7.141]],"o":[[-2.779,5.644],[0,0]],"v":[[-1352.496,8.616],[-1355.411,29.099]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1362.05,2.742],[-1368.805,28.24]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.668,-7.129]],"o":[[-4.044,4.834],[0,0]],"v":[[-1362.05,2.742],[-1368.805,28.24]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.308,-7.153]],"o":[[-2.949,5.557],[0,0]],"v":[[-1355.016,8.906],[-1358.548,29.292]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[0.191,-6.555]],"o":[[-0.191,6.555],[0,0]],"v":[[-1317.113,14.782],[-1317.64,34.805]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.697,3.601],[-0.052,0.286],[-0.587,0.063],[-4.056,-1.044],[-0.413,-0.714],[0.686,-0.936],[3.421,-1.344]],"o":[[-3.617,-1.661],[-0.124,-0.263],[0.105,-0.581],[4.164,-0.448],[0.799,0.206],[0.581,1.005],[-2.173,2.964],[0,0]],"v":[[-1316.287,14.381],[-1323.567,5.244],[-1323.767,4.41],[-1322.354,3.568],[-1309.89,4.471],[-1307.809,5.683],[-1308.529,8.885],[-1317.149,15.523]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.567,3.558],[-0.037,0.287],[-0.506,0.077],[-3.703,-1.528],[-0.377,-0.704],[2.238,-1.428],[2.699,-2.496]],"o":[[-3.174,-1.573],[-0.114,-0.26],[0.075,-0.583],[3.589,-0.548],[0.667,0.275],[0.53,0.99],[-3.686,2.353],[0,0]],"v":[[-1354.313,8.485],[-1360.726,-0.049],[-1360.435,-1.465],[-1358.471,-2.644],[-1346.413,-0.474],[-1344.58,0.687],[-1347.28,3.064],[-1355.027,9.648]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.468,3.601],[-0.045,0.286],[-0.508,0.063],[-3.659,-1.63],[-0.357,-0.714],[2.276,-1.366],[2.767,-2.421]],"o":[[-3.129,-1.661],[-0.107,-0.263],[0.091,-0.581],[3.602,-0.448],[0.659,0.294],[0.502,1.005],[-3.75,2.25],[0,0]],"v":[[-1364.652,5.198],[-1370.826,-3.511],[-1370.496,-4.919],[-1368.5,-6.043],[-1356.507,-3.539],[-1354.707,-2.328],[-1357.472,-0.027],[-1365.398,6.34]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1366.855,2.054],[-1370.781,-6.946],[-1370.907,-7.78],[-1368.811,-8.296],[-1359.443,-6.074],[-1358.123,-4.862],[-1359.024,-2.079],[-1367.402,3.196]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1366.855,2.054],[-1370.781,-6.946],[-1370.907,-7.78],[-1368.811,-8.296],[-1359.443,-6.074],[-1358.123,-4.862],[-1359.024,-2.079],[-1367.402,3.196]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.668,3.512],[-0.029,0.288],[-0.503,0.092],[-3.745,-1.422],[-0.397,-0.693],[2.196,-1.492],[2.627,-2.572]],"o":[[-3.218,-1.482],[-0.122,-0.256],[0.058,-0.585],[3.571,-0.65],[0.675,0.256],[0.558,0.975],[-3.618,2.457],[0,0]],"v":[[-1350.727,10.173],[-1357.381,1.825],[-1357.13,0.401],[-1355.201,-0.833],[-1343.086,0.992],[-1341.221,2.1],[-1343.852,4.553],[-1351.407,11.355]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[1.674,3.509],[-0.028,0.288],[-0.503,0.092],[-3.747,-1.416],[-0.398,-0.693],[2.193,-1.495],[2.622,-2.577]],"o":[[-3.22,-1.477],[-0.122,-0.256],[0.057,-0.585],[3.57,-0.656],[0.675,0.255],[0.56,0.974],[-3.614,2.463],[0,0]],"v":[[-1351.806,8.174],[-1358.473,-0.163],[-1358.225,-1.588],[-1356.298,-2.825],[-1344.18,-1.02],[-1342.313,0.085],[-1344.94,2.543],[-1352.484,9.358]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1361.736,2.628],[-1365.663,-6.371],[-1365.789,-7.205],[-1363.692,-7.721],[-1354.325,-5.499],[-1353.004,-4.287],[-1353.906,-1.504],[-1362.283,3.771]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[0.015,3.977],[-0.033,0.286],[-0.373,0.063],[-2.574,-1.044],[-0.262,-0.715],[0.435,-0.936],[2.171,-1.344]],"o":[[-2.296,-1.661],[-0.001,-0.274],[0.067,-0.581],[2.643,-0.448],[0.507,0.206],[0.369,1.005],[-1.379,2.964],[0,0]],"v":[[-1361.736,2.628],[-1365.663,-6.371],[-1365.789,-7.205],[-1363.692,-7.721],[-1354.325,-5.499],[-1353.004,-4.287],[-1353.906,-1.504],[-1362.283,3.771]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[1.567,3.558],[-0.037,0.287],[-0.506,0.077],[-3.703,-1.528],[-0.377,-0.704],[2.238,-1.428],[2.699,-2.496]],"o":[[-3.174,-1.573],[-0.114,-0.26],[0.075,-0.583],[3.589,-0.548],[0.667,0.275],[0.53,0.99],[-3.686,2.353],[0,0]],"v":[[-1354.313,8.485],[-1360.726,-0.049],[-1360.435,-1.465],[-1358.471,-2.644],[-1346.413,-0.474],[-1344.58,0.687],[-1347.28,3.064],[-1355.027,9.648]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[1.697,3.601],[-0.052,0.286],[-0.587,0.063],[-4.056,-1.044],[-0.413,-0.714],[0.686,-0.936],[3.421,-1.344]],"o":[[-3.617,-1.661],[-0.124,-0.263],[0.105,-0.581],[4.164,-0.448],[0.799,0.206],[0.581,1.005],[-2.173,2.964],[0,0]],"v":[[-1316.287,14.381],[-1323.567,5.244],[-1323.767,4.41],[-1322.354,3.568],[-1309.89,4.471],[-1307.809,5.683],[-1308.529,8.885],[-1317.149,15.523]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.101960793138,0.254901975393,0.780392229557,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Nose","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.52,-0.118],[0.609,-1.647],[-0.496,-1.37],[-2.43,0.033],[-2.43,-0.083],[-0.858,0.089],[1.893,0.501]],"o":[[-3.014,0.064],[-0.505,1.367],[0.473,1.306],[2.353,-0.032],[2.633,0.09],[2.086,-0.216],[-1.926,-0.51]],"v":[[-1317,36.911],[-1326.038,38.789],[-1325.242,40.285],[-1318.575,39.775],[-1313.078,39.871],[-1308.515,40.702],[-1307.831,38.231]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.737,0.616],[1.764,-1.793],[-1.079,-0.948],[-2.466,0.193],[-2.088,-0.376],[-0.768,0.34],[0.799,1.007]],"o":[[-2.587,-0.336],[-1.006,1.023],[0.818,0.719],[2.814,-0.221],[2.484,0.447],[2.156,-0.954],[-1.227,-1.545]],"v":[[-1359.165,31.313],[-1366.208,32.681],[-1365.974,37.123],[-1361.092,38.178],[-1355.147,37.095],[-1350.499,38.629],[-1348.246,34.885]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.986,0.239],[1.551,-1.42],[-1.358,-0.466],[-3.367,-0.122],[-2.041,-0.578],[-0.768,0.34],[1.159,0.557]],"o":[[-2.6,-0.208],[-2.691,2.464],[4.01,1.375],[3.027,0.11],[2.912,0.824],[2.156,-0.954],[-2.782,-1.337]],"v":[[-1368.759,26.382],[-1374.669,27.423],[-1375.678,33.183],[-1369.224,33.185],[-1363.958,33.72],[-1359.011,33.926],[-1359.808,28.531]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[3.039,0.77],[1.032,0.071],[-0.047,-1.434],[-1.055,-1.23],[-1.43,-0.252],[-1.997,1.785],[0.431,1.926]],"o":[[-1.781,-0.451],[-1.302,-0.089],[0.045,1.367],[0.775,0.903],[1.485,0.262],[0.725,-0.517],[-0.343,-1.533]],"v":[[-1373.259,27.627],[-1376.026,27.517],[-1378.557,30.194],[-1377.647,33.392],[-1374.514,34.871],[-1369.844,33.457],[-1369.411,30.609]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.23,0.959],[1.596,0.156],[1.011,-0.856],[-0.734,0.044],[-1.4,-0.385],[-0.536,-0.217],[-0.543,1.897]],"o":[[-1.449,-1.13],[-1.299,-0.127],[-1.044,0.884],[1.685,-0.045],[1.339,0.368],[2.356,0.953],[0.543,-1.897]],"v":[[-1367.968,29.078],[-1374.19,27.193],[-1378.757,28.139],[-1377.968,30.481],[-1374.306,30.668],[-1370.042,33.245],[-1366.329,32.12]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[4.753,0.481],[1.29,-0.176],[-0.502,-0.744],[-2.096,-0.292],[-2.12,0.065],[-1.091,0.797],[1.334,0.529]],"o":[[-2.595,-0.263],[-1.422,0.194],[0.708,1.171],[1.83,0.255],[1.448,-0.044],[1.021,-0.746],[-1.835,-0.727]],"v":[[-1354.926,33.129],[-1359.094,33.02],[-1359.932,35.681],[-1355.191,37.159],[-1351.54,37.43],[-1347.355,36.921],[-1348.166,34.005]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[4.754,0.473],[0.726,-1.569],[-1.409,-0.277],[-1.982,-0.742],[-2.106,-0.25],[-2.402,-0.196],[1.695,0.581]],"o":[[-2.596,-0.258],[-0.603,1.302],[1.636,0.321],[1.984,0.743],[1.576,0.187],[1.933,0.158],[-1.867,-0.64]],"v":[[-1355.966,31.137],[-1361.863,31.407],[-1360.169,33.115],[-1356.963,33.948],[-1353.673,34.64],[-1349.198,35.567],[-1347.975,33.739]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.244,1.028],[1.466,-0.08],[1.112,-0.907],[-1.595,-1.381],[-1.748,0.395],[-0.575,-0.054],[-0.487,1.912]],"o":[[-1.671,-0.765],[-1.303,0.071],[-1.86,1.516],[1.219,1.055],[1.355,-0.306],[1.667,0.157],[0.487,-1.912]],"v":[[-1363.559,29.133],[-1369.36,27.851],[-1373.816,29.097],[-1373.399,33.896],[-1369.324,33.562],[-1365.078,33.31],[-1360.964,33.037]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.244,1.028],[1.466,-0.08],[1.112,-0.907],[-1.595,-1.381],[-1.748,0.395],[-0.575,-0.054],[-0.487,1.912]],"o":[[-1.671,-0.765],[-1.303,0.071],[-1.86,1.516],[1.219,1.055],[1.355,-0.306],[1.667,0.157],[0.487,-1.912]],"v":[[-1363.559,29.133],[-1369.36,27.851],[-1373.816,29.097],[-1373.399,33.896],[-1369.324,33.562],[-1365.078,33.31],[-1360.964,33.037]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.086,0.358],[0.773,-1.546],[-1.422,-0.201],[-1.996,-0.264],[-2.119,-0.103],[-0.818,-0.189],[1.292,0.579]],"o":[[-2.571,-0.442],[-0.642,1.284],[1.688,0.238],[2.1,0.278],[1.811,0.088],[2.247,0.519],[-1.801,-0.807]],"v":[[-1359.165,31.313],[-1367.47,32.847],[-1365.479,35.675],[-1361.38,34.959],[-1356.591,35.325],[-1353.547,36.067],[-1352.678,33.273]]}],"t":420},{"s":[{"c":true,"i":[[5.52,-0.118],[0.609,-1.647],[-0.496,-1.37],[-2.43,0.033],[-2.43,-0.083],[-0.858,0.089],[1.893,0.501]],"o":[[-3.014,0.064],[-0.505,1.367],[0.473,1.306],[2.353,-0.032],[2.633,0.09],[2.086,-0.216],[-1.926,-0.51]],"v":[[-1317,36.911],[-1326.038,38.789],[-1325.242,40.285],[-1318.575,39.775],[-1313.078,39.871],[-1308.515,40.702],[-1307.831,38.231]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.101960793138,0.254901975393,0.780392229557,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Mouth","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[1.251,3.984],[-0.876,4.083],[-6.114,8.507],[-7.356,1.577],[-5.068,-3.687],[-2.913,-5.549],[0.386,-12.057],[4.059,-2.456],[3.007,0.111],[15.477,2.937]],"o":[[-4.148,-0.479],[-1.251,-3.984],[2.198,-10.243],[4.391,-6.11],[6.128,-1.314],[5.068,3.687],[5.607,10.682],[-0.152,4.742],[-2.574,1.558],[-15.742,-0.579],[0,0]],"v":[[-1342.869,54.095],[-1351.574,46.065],[-1351.489,33.68],[-1338.442,5.333],[-1321.075,-8.251],[-1303.352,-3.894],[-1291.624,10.587],[-1283.615,45.471],[-1288.861,58.052],[-1297.639,59.479],[-1344.556,54.195]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.898,2.893],[-0.535,9.729],[-4.386,8.632],[-5.518,1.731],[-3.934,-3.579],[-2.356,-5.486],[-0.043,-12.061],[3.001,-2.54],[2.277,0.048],[11.783,2.611]],"o":[[-3.15,-0.392],[-3.818,-3.812],[0.756,-13.749],[3.15,-6.199],[4.597,-1.442],[3.934,3.579],[4.535,10.56],[0.017,4.743],[-1.903,1.611],[-11.918,-0.249],[0,0]],"v":[[-1366.278,49.812],[-1374.585,45.228],[-1379.114,28.737],[-1369.802,-0.549],[-1353.556,-13.665],[-1338.009,-8.984],[-1328.741,5.246],[-1321.718,39.949],[-1325.335,52.634],[-1331.932,54.245],[-1367.551,49.947]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[2.816,2.972],[-0.805,9.71],[-4.624,8.507],[-5.564,1.577],[-3.833,-3.687],[-2.203,-5.549],[0.292,-12.057],[3.07,-2.456],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-3.711,-3.916],[1.137,-13.723],[3.321,-6.11],[4.635,-1.314],[3.833,3.687],[4.24,10.682],[-0.115,4.742],[-1.947,1.558],[-11.906,-0.579],[0,0]],"v":[[-1377.759,46.176],[-1385.935,41.364],[-1390.005,24.753],[-1379.885,-4.263],[-1363.281,-16.923],[-1347.87,-11.812],[-1339,2.669],[-1332.943,37.553],[-1336.91,50.133],[-1343.55,51.56],[-1379.036,46.277]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1363.579,49.488],[-1376.265,40.778],[-1383.859,22.449],[-1376.428,-6.12],[-1359.642,-17.509],[-1349.243,-13.262],[-1339.778,0.106],[-1334.949,36.967],[-1342.977,50.556],[-1349.487,52.41],[-1364.856,49.588]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1363.579,49.488],[-1376.265,40.778],[-1383.859,22.449],[-1376.428,-6.12],[-1359.642,-17.509],[-1349.243,-13.262],[-1339.778,0.106],[-1334.949,36.967],[-1342.977,50.556],[-1349.487,52.41],[-1364.856,49.588]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.979,2.809],[-0.257,9.74],[-4.138,8.754],[-5.466,1.888],[-4.034,-3.465],[-2.511,-5.416],[-0.388,-12.055],[2.927,-2.625],[2.277,-0.017],[11.853,2.273]],"o":[[-3.159,-0.302],[-3.926,-3.701],[0.364,-13.765],[2.972,-6.287],[4.553,-1.572],[4.034,3.465],[4.834,10.426],[0.152,4.741],[-1.857,1.665],[-11.92,0.091],[0,0]],"v":[[-1361.509,51.824],[-1369.942,47.479],[-1374.94,31.123],[-1366.468,1.585],[-1350.602,-11.99],[-1334.928,-7.754],[-1325.258,6.205],[-1317.248,40.693],[-1320.501,53.477],[-1327.05,55.275],[-1362.777,51.996]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[2.984,2.804],[-0.241,9.74],[-4.124,8.761],[-5.463,1.897],[-4.04,-3.458],[-2.521,-5.412],[-0.408,-12.054],[2.923,-2.63],[2.277,-0.021],[11.856,2.254]],"o":[[-3.16,-0.297],[-3.932,-3.695],[0.341,-13.765],[2.961,-6.292],[4.551,-1.58],[4.04,3.458],[4.852,10.418],[0.16,4.741],[-1.854,1.668],[-11.92,0.111],[0,0]],"v":[[-1362.517,49.843],[-1370.958,45.512],[-1375.983,29.165],[-1367.561,-0.388],[-1351.718,-13.989],[-1336.037,-9.78],[-1326.343,4.164],[-1318.275,38.638],[-1321.508,51.427],[-1328.053,53.236],[-1363.786,50.017]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1358.461,50.063],[-1371.146,41.353],[-1378.74,23.024],[-1371.31,-5.545],[-1354.524,-16.934],[-1344.125,-12.687],[-1334.659,0.68],[-1329.83,37.542],[-1337.858,51.13],[-1344.369,52.985],[-1359.737,50.163]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[2.067,2.972],[-0.59,9.71],[-5.018,8.052],[-5.057,0.831],[-4.613,-2.647],[-2.203,-5.549],[2.679,-13.921],[4.069,-2.151],[2.274,0.111],[11.706,2.937]],"o":[[-3.137,-0.479],[-2.723,-3.916],[0.834,-13.723],[3.479,-5.582],[3.598,-0.591],[4.503,2.584],[4.24,10.682],[-0.896,4.658],[-2.205,1.165],[-11.906,-0.579],[0,0]],"v":[[-1358.461,50.063],[-1371.146,41.353],[-1378.74,23.024],[-1371.31,-5.545],[-1354.524,-16.934],[-1344.125,-12.687],[-1334.659,0.68],[-1329.83,37.542],[-1337.858,51.13],[-1344.369,52.985],[-1359.737,50.163]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[2.898,2.893],[-0.535,9.729],[-4.386,8.632],[-5.518,1.731],[-3.934,-3.579],[-2.356,-5.486],[-0.043,-12.061],[3.001,-2.54],[2.277,0.048],[11.783,2.611]],"o":[[-3.15,-0.392],[-3.818,-3.812],[0.756,-13.749],[3.15,-6.199],[4.597,-1.442],[3.934,3.579],[4.535,10.56],[0.017,4.743],[-1.903,1.611],[-11.918,-0.249],[0,0]],"v":[[-1366.278,49.812],[-1374.585,45.228],[-1379.114,28.737],[-1369.802,-0.549],[-1353.556,-13.665],[-1338.009,-8.984],[-1328.741,5.246],[-1321.718,39.949],[-1325.335,52.634],[-1331.932,54.245],[-1367.551,49.947]]}],"t":420},{"s":[{"c":false,"i":[[0,0],[1.251,3.984],[-0.876,4.083],[-6.114,8.507],[-7.356,1.577],[-5.068,-3.687],[-2.913,-5.549],[0.386,-12.057],[4.059,-2.456],[3.007,0.111],[15.477,2.937]],"o":[[-4.148,-0.479],[-1.251,-3.984],[2.198,-10.243],[4.391,-6.11],[6.128,-1.314],[5.068,3.687],[5.607,10.682],[-0.152,4.742],[-2.574,1.558],[-15.742,-0.579],[0,0]],"v":[[-1342.869,54.095],[-1351.574,46.065],[-1351.489,33.68],[-1338.442,5.333],[-1321.075,-8.251],[-1303.352,-3.894],[-1291.624,10.587],[-1283.615,45.471],[-1288.861,58.052],[-1297.639,59.479],[-1344.556,54.195]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.933333337307,0.933333337307,0.933333337307,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Snout","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1328.447,25.019]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1328.447,25.019]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Snout","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.767},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1265.202,-2.882],[-1267.487,-11.66],[-1261.509,-18.481],[-1258.191,-18.852],[-1254.268,-15.64],[-1251.975,-7.214],[-1257.364,-0.783],[-1265.218,-4.347]]}],"t":9},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.233},"s":[{"c":false,"i":[[0,0],[-0.53,3.076],[-2.448,1.184],[-0.935,-0.222],[-0.844,-1.425],[0.26,-2.956],[2.426,-0.733],[0.325,2.953]],"o":[[-1.853,-2.272],[0.53,-3.076],[0.879,-0.425],[1.436,0.341],[1.448,2.445],[-0.26,2.956],[-2.425,0.733],[0,0]],"v":[[-1315.748,2.079],[-1317.904,-6.645],[-1313.046,-13.595],[-1310.259,-14.038],[-1306.869,-10.913],[-1304.714,-2.54],[-1309.087,4.006],[-1315.801,0.616]]}],"t":19},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.53,3.076],[-2.448,1.184],[-0.935,-0.222],[-0.844,-1.425],[0.26,-2.956],[2.426,-0.733],[0.325,2.953]],"o":[[-1.853,-2.272],[0.53,-3.076],[0.879,-0.425],[1.436,0.341],[1.448,2.445],[-0.26,2.956],[-2.425,0.733],[0,0]],"v":[[-1323.984,0.356],[-1326.141,-8.368],[-1321.282,-15.318],[-1318.496,-15.762],[-1315.105,-12.637],[-1312.951,-4.264],[-1317.324,2.283],[-1324.037,-1.108]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.519,3.077],[-2.421,1.188],[-0.925,-0.221],[-0.837,-1.423],[0.252,-2.956],[2.399,-0.736],[0.327,2.953]],"o":[[-1.837,-2.27],[0.519,-3.077],[0.869,-0.426],[1.421,0.339],[1.437,2.443],[-0.252,2.956],[-2.399,0.736],[0,0]],"v":[[-1328.084,-12.224],[-1330.233,-20.945],[-1325.437,-27.902],[-1322.68,-28.35],[-1319.32,-25.23],[-1317.173,-16.86],[-1321.489,-10.307],[-1328.138,-13.688]]}],"t":77},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.561,3.07],[-2.436,1.155],[-0.922,-0.234],[-0.817,-1.435],[0.292,-2.952],[2.408,-0.703],[0.286,2.957]],"o":[[-1.806,-2.294],[0.561,-3.07],[0.874,-0.414],[1.416,0.359],[1.403,2.462],[-0.292,2.952],[-2.408,0.703],[0,0]],"v":[[-1339.133,-9.096],[-1341.162,-17.845],[-1336.273,-24.735],[-1333.51,-25.145],[-1330.193,-21.98],[-1328.161,-13.582],[-1332.566,-7.089],[-1339.167,-10.56]]}],"t":113},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1329.609,18.859],[-1331.515,10.081],[-1326.529,3.26],[-1323.761,2.889],[-1320.488,6.101],[-1318.574,14.527],[-1323.07,20.958],[-1329.623,17.394]]}],"t":120},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1329.609,18.859],[-1331.515,10.081],[-1326.529,3.26],[-1323.761,2.889],[-1320.488,6.101],[-1318.574,14.527],[-1323.07,20.958],[-1329.623,17.394]]}],"t":128},{"i":{"x":0,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1337.565,8.259],[-1339.471,-0.518],[-1334.485,-7.339],[-1331.717,-7.71],[-1328.444,-4.498],[-1326.531,3.928],[-1331.026,10.359],[-1337.579,6.795]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":160},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.273},"s":[{"c":false,"i":[[0,0],[-0.604,0.376],[-2.453,0.138],[-0.919,-0.03],[-0.797,-0.178],[0.334,-0.362],[2.418,-0.082],[0.245,0.364]],"o":[[-1.773,-0.285],[0.604,-0.376],[0.88,-0.049],[1.411,0.047],[1.368,0.305],[-0.334,0.362],[-2.418,0.082],[0,0]],"v":[[-1338.469,-17.7],[-1340.375,-18.779],[-1335.388,-19.617],[-1332.62,-19.663],[-1329.348,-19.268],[-1327.434,-18.232],[-1331.93,-17.442],[-1338.483,-17.88]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":171},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1339.393,-1.863],[-1341.299,-10.64],[-1336.313,-17.462],[-1333.545,-17.833],[-1330.272,-14.621],[-1328.358,-6.194],[-1332.854,0.237],[-1339.407,-3.328]]}],"t":187},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1336.846,11.722],[-1338.752,2.945],[-1333.766,-3.876],[-1330.997,-4.247],[-1327.725,-1.035],[-1325.811,7.391],[-1330.307,13.822],[-1336.86,10.258]]}],"t":193},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1336.846,11.722],[-1338.752,2.945],[-1333.766,-3.876],[-1330.997,-4.247],[-1327.725,-1.035],[-1325.811,7.391],[-1330.307,13.822],[-1336.86,10.258]]}],"t":203},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1320.019,-18.701],[-1322.38,-27.366],[-1317.758,-34.438],[-1315.013,-34.953],[-1311.578,-31.917],[-1309.226,-23.603],[-1313.38,-16.947],[-1320.109,-20.163]]}],"t":214},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1297.984,-21.208],[-1300.345,-29.873],[-1295.723,-36.945],[-1292.978,-37.46],[-1289.542,-34.424],[-1287.191,-26.11],[-1291.344,-19.454],[-1298.074,-22.67]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.444,3.089],[-2.391,1.247],[-0.93,-0.198],[-0.872,-1.402],[0.179,-2.961],[2.38,-0.795],[0.399,2.943]],"o":[[-1.892,-2.224],[0.443,-3.089],[0.858,-0.447],[1.429,0.304],[1.496,2.407],[-0.179,2.961],[-2.379,0.795],[0,0]],"v":[[-1302.516,-23.194],[-1304.878,-31.859],[-1300.255,-38.931],[-1297.51,-39.446],[-1294.075,-36.41],[-1291.724,-28.096],[-1295.877,-21.44],[-1302.606,-24.656]]}],"t":296},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1344.909,-22.774],[-1346.815,-31.551],[-1341.829,-38.373],[-1339.061,-38.744],[-1335.788,-35.532],[-1333.874,-27.106],[-1338.37,-20.675],[-1344.923,-24.239]]}],"t":312},{"i":{"x":0.25,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1344.909,-22.774],[-1346.815,-31.551],[-1341.829,-38.373],[-1339.061,-38.744],[-1335.788,-35.532],[-1333.874,-27.106],[-1338.37,-20.675],[-1344.923,-24.239]]}],"t":366},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.431,3.091],[-2.386,1.257],[-0.931,-0.194],[-0.877,-1.399],[0.167,-2.962],[2.377,-0.805],[0.411,2.942]],"o":[[-1.901,-2.216],[0.431,-3.091],[0.856,-0.451],[1.43,0.299],[1.506,2.401],[-0.167,2.962],[-2.376,0.805],[0,0]],"v":[[-1334.779,4.666],[-1337.176,-3.99],[-1332.581,-11.081],[-1329.838,-11.607],[-1326.39,-8.584],[-1324.005,-0.279],[-1328.132,6.394],[-1334.875,3.205]]}],"t":371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1333.045,3.371],[-1334.952,-5.407],[-1329.965,-12.228],[-1327.197,-12.599],[-1323.924,-9.387],[-1322.011,-0.961],[-1326.506,5.47],[-1333.059,1.906]]}],"t":384},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1333.651,8.8],[-1335.557,0.023],[-1330.571,-6.799],[-1327.803,-7.169],[-1324.53,-3.958],[-1322.616,4.469],[-1327.112,10.9],[-1333.665,7.336]]}],"t":403},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.55,0.581],[-2.422,0.431],[-0.919,0.048],[-0.818,-0.169],[0.283,-0.535],[2.396,-0.35],[0.293,0.481]],"o":[[-1.804,-0.222],[0.55,-0.581],[0.869,-0.154],[1.411,-0.073],[1.403,0.29],[-0.283,0.535],[-2.396,0.35],[0,0]],"v":[[-1317.214,-13.937],[-1319.258,-15.248],[-1314.41,-16.898],[-1311.661,-17.231],[-1308.35,-17.003],[-1306.305,-15.753],[-1310.672,-14.217],[-1317.253,-14.185]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1317.286,-1.55],[-1319.192,-10.327],[-1314.205,-17.149],[-1311.437,-17.52],[-1308.165,-14.308],[-1306.251,-5.881],[-1310.747,0.549],[-1317.3,-3.015]]}],"t":405},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.605,3.062],[-2.453,1.12],[-0.919,-0.247],[-0.797,-1.446],[0.334,-2.948],[2.418,-0.67],[0.245,2.961]],"o":[[-1.773,-2.32],[0.604,-3.062],[0.88,-0.402],[1.411,0.378],[1.368,2.482],[-0.334,2.948],[-2.418,0.67],[0,0]],"v":[[-1317.286,-1.55],[-1319.192,-10.327],[-1314.205,-17.149],[-1311.437,-17.52],[-1308.165,-14.308],[-1306.251,-5.881],[-1310.747,0.549],[-1317.3,-3.015]]}],"t":410},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.519,3.077],[-2.421,1.188],[-0.926,-0.221],[-0.837,-1.423],[0.252,-2.956],[2.399,-0.736],[0.327,2.953]],"o":[[-1.837,-2.27],[0.519,-3.077],[0.869,-0.426],[1.421,0.339],[1.437,2.443],[-0.252,2.956],[-2.399,0.736],[0,0]],"v":[[-1303.67,7.409],[-1305.819,-1.313],[-1301.024,-8.27],[-1298.267,-8.717],[-1294.907,-5.597],[-1292.76,2.773],[-1297.076,9.326],[-1303.725,5.945]]}],"t":420},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1276.29,1.547],[-1278.575,-7.231],[-1272.598,-14.052],[-1269.28,-14.423],[-1265.357,-11.211],[-1263.063,-2.785],[-1268.452,3.646],[-1276.307,0.082]]}],"t":461},{"s":[{"c":false,"i":[[0,0],[-0.725,3.062],[-2.94,1.12],[-1.102,-0.247],[-0.956,-1.446],[0.4,-2.948],[2.899,-0.67],[0.293,2.961]],"o":[[-2.126,-2.32],[0.725,-3.062],[1.055,-0.402],[1.692,0.378],[1.64,2.482],[-0.4,2.948],[-2.899,0.67],[0,0]],"v":[[-1295.904,-3.752],[-1298.189,-12.529],[-1292.211,-19.351],[-1288.893,-19.722],[-1284.97,-16.51],[-1282.677,-8.083],[-1288.065,-1.653],[-1295.92,-5.217]]}],"t":475}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Front pupil","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.881,0.157],[5.323,-5.016],[-0.849,-14.064],[-2.164,-2.424],[-2.847,-1.093],[-8.994,4.376],[-2.066,7.956],[1.855,5.121],[4.646,3.454]],"o":[[-3.447,-0.069],[-7.037,6.63],[0.256,4.236],[2.164,2.424],[9.256,3.553],[6.565,-3.194],[1.382,-5.322],[-3.489,-9.633],[-4.858,-3.612]],"v":[[-1277.036,-47.926],[-1295.86,-41.682],[-1306.029,-14.062],[-1300.775,1.838],[-1292.963,6.858],[-1264.371,5.568],[-1249.609,-11.302],[-1249.935,-27.778],[-1260.336,-42.78]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[7.001,-0.037],[4.997,-4.394],[-1.145,-14.038],[-1.988,-2.37],[-2.558,-1.022],[-7.863,4.596],[-1.614,8.004],[1.56,5.037],[4.22,3.338]],"o":[[-3.062,0.016],[-6.843,6.017],[0.345,4.228],[1.988,2.37],[8.316,3.324],[5.74,-3.355],[1.079,-5.354],[-2.545,-8.216],[-4.413,-3.49]],"v":[[-1298.132,-45.679],[-1313.908,-39.137],[-1326.075,-10.357],[-1321.127,4.22],[-1312.708,10.076],[-1281.708,7.575],[-1269.304,-8.977],[-1270.787,-25.418],[-1281.422,-41.001]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7,0.157],[4.728,-5.016],[-0.754,-14.064],[-1.922,-2.424],[-2.529,-1.093],[-7.988,4.376],[-1.835,7.956],[1.255,5.121],[4.126,3.454]],"o":[[-3.061,-0.069],[-6.25,6.63],[0.227,4.236],[1.921,2.424],[8.22,3.553],[5.831,-3.194],[1.227,-5.322],[-2.361,-9.633],[-4.315,-3.612]],"v":[[-1306.224,-47.53],[-1322.942,-41.286],[-1335.903,-12.855],[-1331.361,1.854],[-1323.107,7.941],[-1292.05,6.302],[-1279.192,-9.9],[-1280.219,-26.376],[-1291.393,-42.384]]}],"t":128},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":157},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.006],[4.628,-0.168],[-0.624,-0.51],[-1.589,-0.088],[-2.091,-0.04],[-6.607,0.159],[-1.518,0.289],[1.038,0.186],[3.413,0.125]],"o":[[-2.308,-0.003],[-5.754,0.209],[0.188,0.154],[1.589,0.088],[6.799,0.129],[4.823,-0.116],[1.015,-0.193],[-1.953,-0.349],[-3.569,-0.131]],"v":[[-1315.11,-19.937],[-1329.324,-19.713],[-1340.163,-18.709],[-1336.303,-18.132],[-1330.565,-17.95],[-1307.142,-17.985],[-1296.507,-18.572],[-1297.356,-19.17],[-1304.673,-19.764]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":168},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1315.11,-48.015],[-1329.324,-41.842],[-1340.163,-14.151],[-1336.303,1.749],[-1330.565,6.77],[-1307.142,5.817],[-1296.507,-10.385],[-1297.356,-26.861],[-1304.673,-43.229]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[6.997,-0.237],[4.438,-5.274],[-1.545,-13.999],[-2.055,-2.312],[-2.586,-0.949],[-7.729,4.819],[-1.384,8.047],[1.541,5.043],[4.314,3.216]],"o":[[-3.06,0.104],[-5.867,6.971],[0.465,4.217],[2.055,2.312],[8.407,3.085],[5.642,-3.517],[0.926,-5.382],[-2.9,-9.485],[-4.511,-3.363]],"v":[[-1295.357,-45.757],[-1311.697,-38.583],[-1323.039,-9.468],[-1317.676,4.962],[-1309.093,10.576],[-1278.178,7.192],[-1266.251,-9.707],[-1268.203,-26.1],[-1280.26,-41.454]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[6.997,-0.248],[4.43,-5.281],[-1.568,-13.997],[-2.059,-2.309],[-2.588,-0.945],[-7.721,4.831],[-1.371,8.049],[1.55,5.04],[4.319,3.209]],"o":[[-3.06,0.109],[-5.855,6.981],[0.472,4.216],[2.059,2.309],[8.412,3.071],[5.636,-3.527],[0.917,-5.384],[-2.915,-9.48],[-4.517,-3.356]],"v":[[-1296.53,-47.849],[-1312.858,-40.647],[-1324.15,-11.513],[-1318.764,2.908],[-1310.171,8.507],[-1279.262,5.071],[-1267.363,-11.848],[-1269.342,-28.237],[-1281.425,-43.571]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1309.992,-47.44],[-1324.206,-41.268],[-1335.044,-13.576],[-1331.185,2.324],[-1325.446,7.344],[-1302.024,6.392],[-1291.389,-9.81],[-1292.238,-26.286],[-1299.555,-42.654]]}],"t":312},{"i":{"x":0.833,"y":0.667},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[5.278,0.157],[4.628,-4.625],[-0.624,-14.064],[-1.589,-2.424],[-2.091,-1.093],[-6.607,4.376],[-1.518,7.956],[1.038,5.121],[3.413,3.454]],"o":[[-2.308,-0.069],[-5.754,5.75],[0.188,4.236],[1.589,2.424],[6.799,3.553],[4.823,-3.194],[1.015,-5.322],[-1.953,-9.633],[-3.569,-3.612]],"v":[[-1309.992,-47.44],[-1324.206,-41.268],[-1335.044,-13.576],[-1331.185,2.324],[-1325.446,7.344],[-1302.024,6.392],[-1291.389,-9.81],[-1292.238,-26.286],[-1299.555,-42.654]]}],"t":400},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":true,"i":[[6.965,-0.228],[4.584,-0.191],[-1.138,-0.076],[-1.979,0.046],[-2.548,0.075],[-7.834,0.293],[-1.609,0.117],[1.391,-0.005],[4.203,-0.111]],"o":[[-3.046,0.1],[-6.053,0.252],[0.343,0.023],[1.979,-0.046],[8.283,-0.244],[5.718,-0.214],[1.076,-0.078],[-2.616,0.009],[-4.396,0.116]],"v":[[-1297.623,-16.528],[-1314.106,-15.936],[-1326.234,-15.308],[-1321.305,-15.352],[-1312.94,-15.578],[-1282.103,-16.606],[-1269.744,-17.143],[-1271.219,-17.227],[-1282.748,-16.977]]}],"t":404},{"i":{"x":0.6,"y":1},"o":{"x":0.5,"y":1},"s":[{"c":true,"i":[[6.891,-0.025],[4.59,-5.112],[-1.111,-14.039],[-1.962,-2.373],[-2.528,-1.027],[-7.783,4.582],[-1.607,8.001],[1.374,5.087],[4.169,3.345]],"o":[[-3.014,0.011],[-6.044,6.734],[0.335,4.229],[1.962,2.373],[8.219,3.338],[5.681,-3.345],[1.075,-5.351],[-2.585,-9.569],[-4.359,-3.498]],"v":[[-1298.177,-45.945],[-1314.566,-39.273],[-1326.649,-10.563],[-1321.77,4.098],[-1313.522,9.901],[-1283.007,7.5],[-1270.716,-9.03],[-1272.159,-25.474],[-1283.498,-41.208]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[7.001,-0.037],[4.587,-5.145],[-1.145,-14.038],[-1.988,-2.37],[-2.558,-1.022],[-7.863,4.596],[-1.614,8.004],[1.397,5.085],[4.22,3.338]],"o":[[-3.062,0.016],[-6.064,6.801],[0.345,4.228],[1.988,2.37],[8.316,3.324],[5.74,-3.355],[1.079,-5.354],[-2.628,-9.564],[-4.413,-3.49]],"v":[[-1297.37,-45.843],[-1313.908,-39.137],[-1326.075,-10.357],[-1321.127,4.22],[-1312.708,10.076],[-1281.708,7.575],[-1269.304,-8.977],[-1270.787,-25.418],[-1282.401,-41.11]]}],"t":420},{"s":[{"c":true,"i":[[7.881,0.157],[5.323,-5.016],[-0.849,-14.064],[-2.164,-2.424],[-2.847,-1.093],[-8.994,4.376],[-2.066,7.956],[1.855,5.121],[4.646,3.454]],"o":[[-3.447,-0.069],[-7.037,6.63],[0.256,4.236],[2.164,2.424],[9.256,3.553],[6.565,-3.194],[1.382,-5.322],[-3.489,-9.633],[-4.858,-3.612]],"v":[[-1277.036,-47.926],[-1295.86,-41.682],[-1306.029,-14.062],[-1300.775,1.838],[-1292.963,6.858],[-1264.371,5.568],[-1249.609,-11.302],[-1249.935,-27.778],[-1260.336,-42.78]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-1298.635,-16.776]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1298.635,-16.776]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[145,145]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"Front eye","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.767},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[0.858,1.588]],"o":[[-3.434,-0.634],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1342.852,-8.695],[-1348.82,-16.258],[-1342.95,-24.17],[-1339.493,-24.508],[-1334.526,-19.079],[-1333.972,-12.253],[-1338.356,-7.255],[-1343.104,-8.804]]}],"t":9},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.233},"s":[{"c":false,"i":[[0,0],[0.042,3.491],[-2.622,1.253],[-0.933,-0.226],[-0.746,-2.404],[0.398,-2.257],[1.767,-0.737],[0.734,1.569]],"o":[[-2.79,-0.561],[-0.042,-3.491],[0.881,-0.421],[2.039,0.493],[0.673,2.17],[-0.398,2.257],[-1.377,0.574],[0,0]],"v":[[-1381.126,-3.297],[-1386.145,-10.732],[-1381.612,-18.764],[-1378.828,-19.175],[-1374.673,-13.852],[-1374.046,-7.04],[-1377.457,-1.952],[-1381.332,-3.401]]}],"t":19},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.042,3.491],[-2.622,1.253],[-0.933,-0.226],[-0.746,-2.404],[0.398,-2.257],[1.767,-0.737],[0.734,1.569]],"o":[[-2.79,-0.561],[-0.042,-3.491],[0.881,-0.421],[2.039,0.493],[0.673,2.17],[-0.398,2.257],[-1.377,0.574],[0,0]],"v":[[-1383.363,-6.829],[-1388.382,-14.264],[-1383.849,-22.296],[-1381.065,-22.706],[-1376.91,-17.383],[-1376.283,-10.571],[-1379.694,-5.484],[-1383.569,-6.932]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.047,3.491],[-2.585,1.257],[-0.921,-0.224],[-0.74,-2.403],[0.389,-2.257],[1.742,-0.74],[0.728,1.568]],"o":[[-2.754,-0.557],[-0.047,-3.491],[0.869,-0.422],[2.012,0.49],[0.668,2.169],[-0.389,2.257],[-1.358,0.576],[0,0]],"v":[[-1383.718,-18.309],[-1388.683,-25.737],[-1384.225,-33.776],[-1381.479,-34.191],[-1377.37,-28.874],[-1376.739,-22.063],[-1380.095,-16.97],[-1383.921,-18.413]]}],"t":77},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0,3.491],[-2.601,1.222],[-0.917,-0.237],[-0.707,-2.412],[0.419,-2.251],[1.752,-0.716],[0.706,1.578]],"o":[[-2.746,-0.595],[0,-3.491],[0.874,-0.41],[2.005,0.518],[0.638,2.178],[-0.419,2.251],[-1.365,0.558],[0,0]],"v":[[-1390.361,-16.711],[-1395.224,-24.205],[-1390.657,-32.181],[-1387.906,-32.558],[-1383.871,-27.186],[-1383.332,-20.368],[-1386.757,-15.322],[-1390.563,-16.817]]}],"t":113},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1391.939,4.219],[-1396.697,-3.344],[-1392.017,-11.256],[-1389.261,-11.594],[-1385.301,-6.165],[-1384.859,0.661],[-1388.355,5.659],[-1392.14,4.11]]}],"t":120},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1391.939,4.219],[-1396.697,-3.344],[-1392.017,-11.256],[-1389.261,-11.594],[-1385.301,-6.165],[-1384.859,0.661],[-1388.355,5.659],[-1392.14,4.11]]}],"t":128},{"i":{"x":0,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.05,3.491],[-2.619,1.185],[-0.914,-0.25],[-0.673,-2.422],[0.451,-2.246],[1.762,-0.691],[0.684,1.588]],"o":[[-2.738,-0.634],[0.05,-3.491],[0.88,-0.398],[1.998,0.546],[0.608,2.187],[-0.451,2.246],[-1.373,0.539],[0,0]],"v":[[-1381.497,-5.244],[-1386.254,-12.807],[-1381.575,-20.719],[-1378.819,-21.057],[-1374.859,-15.628],[-1374.417,-8.802],[-1377.912,-3.804],[-1381.697,-5.353]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":160},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.273},"s":[{"c":false,"i":[[0,0],[-0.074,0.199],[-1.903,-0.278],[-0.656,-0.136],[-0.459,-0.232],[0.35,-0.072],[1.279,0.193],[0.476,0.185]],"o":[[-1.969,-0.401],[0.074,-0.199],[0.639,0.093],[1.436,0.298],[0.415,0.21],[-0.35,0.072],[-0.997,-0.151],[0,0]],"v":[[-1379.207,-26.935],[-1382.558,-28.013],[-1379.095,-27.858],[-1377.103,-27.512],[-1374.304,-26.665],[-1374.06,-26.204],[-1376.636,-26.374],[-1379.351,-26.968]]}],"t":163.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":171},{"i":{"x":0.2,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1379.336,-10.049],[-1382.827,-17.612],[-1379.394,-25.524],[-1377.371,-25.862],[-1374.466,-20.434],[-1374.141,-13.607],[-1376.706,-8.61],[-1379.484,-10.158]]}],"t":187},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.922,1.185],[-0.671,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1383.109,0.293],[-1386.6,-7.269],[-1383.166,-15.182],[-1381.144,-15.52],[-1378.238,-10.091],[-1377.914,-3.265],[-1380.479,1.733],[-1383.256,0.185]]}],"t":193},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[0.147,3.489],[-2.548,1.33],[-0.927,-0.198],[-0.808,-2.38],[0.324,-2.267],[1.72,-0.789],[0.772,1.547]],"o":[[-2.769,-0.479],[-0.147,-3.489],[0.856,-0.447],[2.026,0.433],[0.73,2.149],[-0.324,2.267],[-1.341,0.615],[0,0]],"v":[[-1382.23,0.698],[-1387.406,-6.585],[-1383.178,-14.748],[-1380.446,-15.241],[-1376.187,-10.043],[-1375.361,-3.253],[-1378.571,1.934],[-1382.436,0.6]]}],"t":203},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1369.085,-26.199],[-1374.141,-33.502],[-1369.971,-41.647],[-1367.288,-42.129],[-1363.125,-36.915],[-1362.335,-30.122],[-1365.499,-24.949],[-1369.287,-26.298]]}],"t":214},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1359.342,-22.665],[-1364.397,-29.968],[-1360.227,-38.113],[-1357.544,-38.595],[-1353.381,-33.381],[-1352.592,-26.588],[-1355.755,-21.415],[-1359.543,-22.763]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[0.134,3.489],[-2.503,1.32],[-0.909,-0.202],[-0.786,-2.383],[0.324,-2.266],[1.69,-0.782],[0.752,1.55]],"o":[[-2.715,-0.49],[-0.134,-3.489],[0.841,-0.444],[1.986,0.441],[0.709,2.152],[-0.325,2.266],[-1.317,0.61],[0,0]],"v":[[-1361.147,-27.071],[-1366.203,-34.374],[-1362.032,-42.519],[-1359.35,-43.001],[-1355.187,-37.787],[-1354.397,-30.994],[-1357.561,-25.821],[-1361.349,-27.169]]}],"t":296},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.525,-28.795],[-1377.016,-36.358],[-1373.582,-44.27],[-1371.56,-44.608],[-1368.654,-39.179],[-1368.33,-32.353],[-1370.895,-27.355],[-1373.672,-28.904]]}],"t":312},{"i":{"x":0.25,"y":1},"o":{"x":1,"y":0},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.525,-28.795],[-1377.016,-36.358],[-1373.582,-44.27],[-1371.56,-44.608],[-1368.654,-39.179],[-1368.33,-32.353],[-1370.895,-27.355],[-1373.672,-28.904]]}],"t":366},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.147,3.489],[-2.548,1.33],[-0.927,-0.198],[-0.808,-2.38],[0.324,-2.267],[1.72,-0.789],[0.772,1.547]],"o":[[-2.769,-0.479],[-0.147,-3.489],[0.856,-0.447],[2.026,0.433],[0.73,2.149],[-0.324,2.267],[-1.341,0.615],[0,0]],"v":[[-1374.434,-4.377],[-1379.609,-11.66],[-1375.382,-19.823],[-1372.649,-20.315],[-1368.39,-15.118],[-1367.565,-8.327],[-1370.774,-3.141],[-1374.64,-4.474]]}],"t":371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1376.408,-5.237],[-1379.899,-12.8],[-1376.465,-20.712],[-1374.443,-21.05],[-1371.537,-15.621],[-1371.213,-8.795],[-1373.778,-3.797],[-1376.555,-5.346]]}],"t":384},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1377.477,-0.705],[-1380.968,-8.268],[-1377.535,-16.18],[-1375.512,-16.518],[-1372.607,-11.089],[-1372.282,-4.263],[-1374.847,0.735],[-1377.625,-0.814]]}],"t":403},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.135,0.312],[-1.869,-0.461],[-0.633,-0.222],[-0.402,-0.371],[0.381,-0.109],[1.255,0.32],[0.433,0.296]],"o":[[-1.9,-0.655],[0.135,-0.312],[0.628,0.155],[1.384,0.486],[0.363,0.335],[-0.381,0.109],[-0.978,-0.249],[0,0]],"v":[[-1372.669,-22.399],[-1375.785,-24.135],[-1372.279,-23.847],[-1370.338,-23.278],[-1367.72,-21.913],[-1367.606,-21.186],[-1370.199,-21.485],[-1372.807,-22.453]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.517,-8.855],[-1377.321,-14.471],[-1373.887,-22.383],[-1371.865,-22.721],[-1368.959,-17.292],[-1368.635,-10.466],[-1371.012,-8.369],[-1372.843,-8.57]]}],"t":405},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.333},"s":[{"c":false,"i":[[0,0],[-0.036,3.491],[-1.921,1.185],[-0.67,-0.25],[-0.494,-2.422],[0.331,-2.246],[1.293,-0.691],[0.502,1.588]],"o":[[-2.009,-0.634],[0.036,-3.491],[0.646,-0.398],[1.466,0.546],[0.446,2.187],[-0.331,2.246],[-1.008,0.539],[0,0]],"v":[[-1373.83,-6.908],[-1377.321,-14.471],[-1373.887,-22.383],[-1371.865,-22.721],[-1368.959,-17.292],[-1368.635,-10.466],[-1371.2,-5.468],[-1373.977,-7.017]]}],"t":410},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[0.047,3.491],[-2.585,1.257],[-0.921,-0.224],[-0.74,-2.403],[0.389,-2.257],[1.742,-0.74],[0,0]],"o":[[-2.152,-1.252],[-0.047,-3.491],[0.869,-0.422],[2.012,0.49],[0.668,2.169],[-0.389,2.257],[-1.358,0.576],[0,0]],"v":[[-1367.706,-2.994],[-1372.2,-11.18],[-1367.742,-19.219],[-1364.996,-19.634],[-1360.887,-14.317],[-1360.256,-7.506],[-1363.612,-2.413],[-1367.91,-3.098]]}],"t":420},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[1.008,0.696]],"o":[[-2.01,-1.357],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1345.63,-8.706],[-1350.333,-16.858],[-1344.463,-24.77],[-1341.007,-25.108],[-1336.04,-19.679],[-1335.485,-12.853],[-1339.87,-7.855],[-1345.882,-8.815]]}],"t":461},{"s":[{"c":false,"i":[[0,0],[-0.062,3.491],[-3.285,1.185],[-1.146,-0.25],[-0.845,-2.422],[0.566,-2.246],[2.21,-0.691],[1.008,0.696]],"o":[[-2.01,-1.357],[0.062,-3.491],[1.104,-0.398],[2.506,0.546],[0.763,2.187],[-0.566,2.246],[-1.723,0.539],[0,0]],"v":[[-1356.267,-6.6],[-1360.998,-15.173],[-1355.129,-23.086],[-1351.672,-23.424],[-1346.705,-17.995],[-1346.15,-11.169],[-1350.535,-6.171],[-1356.519,-6.709]]}],"t":475}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"Back pupil","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.836,2.426],[6.311,-2.495],[3.518,-5.242],[1.616,-6.512],[-0.654,-3.285],[-1.52,-2.202],[-6.479,-1.448],[-5.388,3.355],[-2.497,5.611],[0.894,7.369]],"o":[[-5.48,-3.466],[-6.092,2.409],[-3.799,5.661],[-0.807,3.255],[0.513,2.577],[3.614,5.238],[6.479,1.448],[5.007,-3.118],[2.9,-6.516],[-0.522,-4.306]],"v":[[-1344.228,-47.153],[-1365.365,-48.626],[-1378.915,-38.905],[-1384.241,-25.266],[-1383.285,-14.435],[-1380.09,-7.214],[-1364.044,1.094],[-1344.736,-2.607],[-1334.377,-13.355],[-1333.264,-32.062]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.573,2.356],[4.098,-2.539],[1.659,-5.751],[1.063,-6.261],[0.257,-3.303],[-1.054,-2.174],[-4.273,-1.33],[-3.427,3.452],[-1.476,5.654],[0.788,7.35]],"o":[[-3.676,-3.365],[-2.408,1.492],[-1.714,5.94],[-0.552,3.251],[-0.24,3.084],[2.506,5.17],[4.273,1.33],[3.184,-3.207],[1.714,-6.566],[-0.461,-4.295]],"v":[[-1362.236,-45.393],[-1376.084,-46.482],[-1380.722,-35.214],[-1383.849,-21.239],[-1385.236,-10.81],[-1384.554,-4.819],[-1373.842,3.195],[-1361.332,-0.855],[-1354.864,-11.786],[-1354.655,-30.506]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.932,2.426],[3.178,-2.495],[1.771,-5.242],[1.215,-6.45],[1.145,-4.822],[-1.315,-1.925],[-4.115,0.266],[-2.713,3.355],[-1.258,5.611],[0.45,7.369]],"o":[[-2.76,-3.466],[-3.068,2.409],[-1.913,5.661],[-0.993,5.271],[-0.598,2.52],[3.583,5.246],[3.562,-0.23],[2.521,-3.118],[1.46,-6.516],[-0.263,-4.306]],"v":[[-1369.166,-48.879],[-1379.81,-50.352],[-1386.633,-40.631],[-1389.315,-26.993],[-1390.771,-16.522],[-1389.461,-6.351],[-1379.145,-0.632],[-1369.422,-4.334],[-1364.206,-15.081],[-1363.645,-33.788]]}],"t":128},{"i":{"x":0.833,"y":0.727},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.793,-5.669],[0.775,-6.512],[-0.313,-3.285],[-0.318,-2.332],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.168,8.344],[-0.387,3.255],[0.246,2.577],[0.746,5.466],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1363.648,-46.499],[-1372.775,-49.661],[-1378.006,-38.174],[-1379.998,-23.979],[-1381.038,-13.915],[-1382.943,-8.701],[-1372.858,-0.632],[-1366.517,-4.871],[-1361.939,-15.316],[-1359.949,-33.639]]}],"t":143},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[1.15,-5.607],[0.775,-6.512],[-0.313,-3.285],[-0.119,-2.317],[-4.478,0.548],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.472,7.183],[-0.387,3.255],[0.246,2.577],[0.316,6.146],[3.402,-0.417],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1378.034,-39.369],[-1379.692,-25.121],[-1381.079,-16.342],[-1381.963,-9.447],[-1372.858,-0.632],[-1363.6,-4.334],[-1359.659,-13.99],[-1358.952,-33.157]]}],"t":157},{"i":{"x":0.833,"y":0.727},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.17,0.678],[3.208,0.706],[2.246,0.209],[0.812,-0.232],[-0.273,-0.287],[-0.669,-0.321],[-3.036,-0.789],[-2.536,-0.409],[-1.214,0.071],[0.497,0.615]],"o":[[-2.037,-0.636],[-4.163,-0.916],[-2.432,-0.194],[-0.406,0.116],[0.214,0.225],[1.591,0.781],[3.006,0.793],[2.357,0.38],[1.409,-0.083],[-0.29,-0.36]],"v":[[-1364.787,-25.127],[-1372.491,-27.134],[-1377.035,-27.528],[-1379.609,-27.272],[-1380.159,-26.737],[-1378.809,-25.911],[-1373.032,-23.999],[-1364.022,-21.998],[-1359.135,-21.458],[-1359.941,-22.897]]}],"t":163},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.273},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.925,-5.649],[0.775,-6.512],[0.605,-3.244],[-0.729,-2.202],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.003,6.128],[-0.387,3.255],[-0.681,3.649],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1377.666,-38.857],[-1379.801,-25.638],[-1381.024,-14.82],[-1381.635,-7.373],[-1372.858,-0.632],[-1363.6,-4.334],[-1358.633,-15.081],[-1358.88,-34.902]]}],"t":168},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[1.629,-7.57],[0.775,-6.512],[0.452,-3.269],[0.514,-2.242],[-3.107,-1.448],[-2.584,3.355],[-1.197,5.611],[0.584,7.369]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.124,5.226],[-0.387,3.255],[-0.461,3.333],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.391,-6.516],[-0.341,-4.306]],"v":[[-1364.816,-48.399],[-1372.775,-49.661],[-1377.364,-39.12],[-1380.083,-25.454],[-1381.216,-15.319],[-1382.222,-8.168],[-1372.858,-0.632],[-1363.6,-4.334],[-1358.633,-15.081],[-1359.689,-32.905]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.639,2.281],[3.977,-2.723],[2,-5.363],[0.688,-6.561],[0.254,-2.745],[-1.115,-2.143],[-4.309,-1.208],[-3.327,3.548],[-1.314,5.694],[0.998,7.325]],"o":[[-3.77,-3.259],[-3.84,2.629],[-2.16,5.792],[-0.344,3.28],[-0.335,3.623],[2.653,5.096],[4.309,1.208],[3.091,-3.297],[1.526,-6.613],[-0.583,-4.28]],"v":[[-1360.184,-43.457],[-1374.057,-44.151],[-1379.34,-33.034],[-1382.085,-18.351],[-1383.373,-9.771],[-1381.336,-2.264],[-1370.4,5.442],[-1358.01,1.037],[-1351.856,-10.075],[-1352.181,-28.793]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.643,2.277],[3.973,-2.73],[1.349,-5.563],[0.677,-6.563],[0.449,-3.282],[-1.119,-2.141],[-4.311,-1.201],[-3.321,3.553],[-1.304,5.696],[1.01,7.323]],"o":[[-3.776,-3.252],[-3.835,2.635],[-1.477,6.091],[-0.338,3.28],[-0.408,2.98],[2.661,5.092],[4.311,1.201],[3.086,-3.302],[1.515,-6.615],[-0.59,-4.279]],"v":[[-1361.353,-45.44],[-1375.227,-46.111],[-1380.155,-35.585],[-1382.421,-21.253],[-1383.622,-11.132],[-1382.435,-4.211],[-1371.486,3.476],[-1359.104,-0.95],[-1352.969,-12.072],[-1353.326,-30.789]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.924,-5.649],[0.775,-6.512],[0.039,-3.3],[-0.729,-2.202],[-3.107,-1.448],[-2.583,3.355],[-1.198,5.611],[-0.154,7.391]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.062,6.496],[-0.387,3.255],[-0.045,3.824],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.39,-6.516],[0.11,-5.266]],"v":[[-1359.698,-47.825],[-1367.657,-49.086],[-1373.832,-39.24],[-1376.535,-25.403],[-1377.995,-15.001],[-1377.824,-8.126],[-1367.74,-0.057],[-1358.482,-3.759],[-1353.515,-14.507],[-1354.57,-32.33]]}],"t":312},{"i":{"x":0.833,"y":0.667},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[2.258,2.043],[3.295,-1.414],[0.924,-5.649],[0.775,-6.512],[0.039,-3.3],[-0.729,-2.202],[-3.107,-1.448],[-2.583,3.355],[-1.198,5.611],[-0.154,7.391]],"o":[[-2.12,-1.918],[-4.276,1.835],[-1.062,6.496],[-0.387,3.255],[-0.045,3.824],[1.733,5.238],[3.107,1.448],[2.401,-3.118],[1.39,-6.516],[0.11,-5.266]],"v":[[-1359.698,-47.825],[-1367.657,-49.086],[-1373.832,-39.24],[-1376.535,-25.403],[-1377.995,-15.001],[-1377.824,-8.126],[-1367.74,-0.057],[-1358.482,-3.759],[-1353.515,-14.507],[-1354.57,-32.33]]}],"t":400},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.333},"s":[{"c":true,"i":[[2.443,0.793],[3.91,1.017],[2.112,0.459],[0.892,0.062],[-0.466,-0.238],[-0.987,-0.358],[-4.066,-1.24],[-3.3,-0.867],[-1.458,-0.255],[0.691,0.43]],"o":[[-3.469,-1.126],[-2.393,-0.623],[-2.281,-0.496],[-0.446,-0.031],[0.365,0.187],[2.346,0.851],[4.066,1.24],[3.066,0.805],[1.693,0.297],[-0.404,-0.251]],"v":[[-1362.337,-20.608],[-1371.733,-23.365],[-1373.515,-23.726],[-1376.329,-24.011],[-1375.914,-23.548],[-1373.794,-22.702],[-1373.81,-22.493],[-1361.836,-19.088],[-1355.568,-17.577],[-1355.235,-18.055]]}],"t":404},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.513,1.773],[2.825,-0.513],[0.676,-2.891],[0.355,-2.866],[-0.111,-2.19],[-0.537,-1.65],[-4.15,-1.302],[-3.346,1.873],[-1.458,3.497],[0.745,4.827]],"o":[[-3.537,-2.49],[-1.389,1.872],[-0.657,2.812],[-0.254,2.051],[0.071,2.277],[1.261,3.778],[4.15,1.302],[3.109,-1.74],[1.693,-4.061],[-0.435,-2.821]],"v":[[-1362.17,-36.453],[-1372.886,-38.918],[-1375.518,-30.41],[-1376.874,-21.854],[-1377.343,-15.671],[-1376.758,-10.717],[-1373.583,-6.305],[-1361.4,-7.622],[-1355.066,-14.008],[-1354.863,-26.039]]}],"t":406},{"i":{"x":0.833,"y":0.833},"o":{"x":0.5,"y":1},"s":[{"c":true,"i":[[2.553,2.336],[2.203,-1.391],[1.24,-5.878],[0.704,-5.457],[0.093,-3.31],[-0.279,-2.392],[-4.198,-1.338],[-3.373,3.446],[-1.458,5.651],[0.775,7.351]],"o":[[-3.576,-3.272],[-0.813,3.304],[-1.276,6.049],[-0.422,3.269],[-0.098,3.476],[0.638,5.458],[4.198,1.338],[3.134,-3.201],[1.693,-6.563],[-0.453,-4.296]],"v":[[-1362.074,-45.548],[-1371.572,-47.779],[-1374.78,-33.802],[-1377.187,-20.616],[-1378.164,-11.149],[-1378.459,-3.837],[-1373.452,2.987],[-1361.15,-1.041],[-1354.777,-11.96],[-1354.65,-30.623]]}],"t":407},{"i":{"x":0.6,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.572,2.354],[2.371,-1.506],[1.304,-5.593],[1.36,-6.64],[0.408,-3.842],[-0.013,-2.407],[-4.268,-1.331],[-3.423,3.451],[-1.475,5.654],[0.788,7.35]],"o":[[-3.669,-3.359],[-0.992,0.867],[-1.138,4.889],[-0.658,3.23],[-0.364,3.428],[0.03,5.597],[4.268,1.331],[3.181,-3.207],[1.713,-6.566],[-0.46,-4.295]],"v":[[-1362.225,-45.403],[-1373.148,-47.26],[-1375.906,-35.918],[-1378.459,-22.122],[-1379.733,-11.334],[-1379.98,-4.36],[-1373.817,3.182],[-1361.32,-0.867],[-1354.858,-11.798],[-1354.655,-30.514]]}],"t":415},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.573,2.356],[4.051,-2.612],[1.309,-5.573],[1.406,-6.724],[0.648,-3.851],[-1.054,-2.174],[-4.273,-1.33],[-3.427,3.452],[-1.476,5.654],[0.788,7.35]],"o":[[-3.676,-3.365],[-2.628,1.694],[-1.129,4.807],[-0.675,3.228],[-0.431,2.563],[2.506,5.17],[4.273,1.33],[3.184,-3.207],[1.714,-6.566],[-0.461,-4.295]],"v":[[-1362.236,-45.393],[-1376.084,-46.482],[-1380.847,-36.517],[-1383.848,-22.044],[-1385.258,-11.434],[-1384.554,-4.819],[-1373.842,3.195],[-1361.332,-0.855],[-1354.864,-11.786],[-1354.655,-30.506]]}],"t":420},{"s":[{"c":true,"i":[[3.836,2.426],[6.311,-2.495],[3.518,-5.242],[1.616,-6.512],[-0.654,-3.285],[-1.52,-2.202],[-6.479,-1.448],[-5.388,3.355],[-2.497,5.611],[0.894,7.369]],"o":[[-5.48,-3.466],[-6.092,2.409],[-3.799,5.661],[-0.807,3.255],[0.513,2.577],[3.614,5.238],[6.479,1.448],[5.007,-3.118],[2.9,-6.516],[-0.522,-4.306]],"v":[[-1344.228,-47.153],[-1365.365,-48.626],[-1378.915,-38.905],[-1384.241,-25.266],[-1383.285,-14.435],[-1380.09,-7.214],[-1364.044,1.094],[-1344.736,-2.607],[-1334.377,-13.355],[-1333.264,-32.062]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-1371.872,-21.895]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1371.872,-21.895]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[145,145]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"Back eye ","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.504,2.82],[1.357,-5.179],[5.023,-22.061],[12.439,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-8.057,9.03],[-1.601,11.361],[0.016,46.36]],"o":[[-3.6,3.963],[-5.734,21.887],[-5.023,22.061],[-12.439,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[7.638,-8.561],[6.469,-45.906],[-0.001,-3.771]],"v":[[-1189.616,-140.561],[-1196.176,-126.077],[-1210.157,-59.666],[-1232.685,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1240.566,55.083],[-1208.001,40.731],[-1196.651,8.792],[-1186.956,-129.835]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.986,2.766],[0.89,-5.206],[3.215,-22.159],[8.952,-19.155],[21.82,-5.984],[8.3,-0.511],[21.083,2.234],[-18.891,-3.183],[-33.08,4.316],[-5.887,9.196],[-0.905,11.39],[1.298,46.342]],"o":[[-2.632,4.038],[-3.761,22],[-3.215,22.159],[-8.952,19.155],[-8.02,2.199],[-21.161,1.302],[0,0],[36.844,6.207],[12,-1.566],[5.582,-8.719],[3.655,-46.025],[-0.106,-3.769]],"v":[[-1196.612,-141.705],[-1201.208,-127.088],[-1210.016,-60.407],[-1225.223,10.528],[-1276.118,44.368],[-1300.771,47.87],[-1364.286,46.468],[-1339.808,55.996],[-1228.894,53.767],[-1203.554,40.766],[-1197.829,7.739],[-1194.288,-131.039]]}],"t":26},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-33.187,3.397],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.37,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[12.039,-1.232],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1202.846,-140.561],[-1207.845,-126.077],[-1218.5,-59.666],[-1235.669,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1350.856,53.741],[-1240.538,53.94],[-1214.373,42.313],[-1208.208,8.792],[-1200.819,-129.835]]}],"t":128},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.37,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1202.846,-140.561],[-1207.845,-126.077],[-1218.5,-59.666],[-1235.669,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1239.642,53.98],[-1214.301,41.661],[-1208.208,8.792],[-1200.819,-129.835]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.064,2.708],[0.741,-5.229],[2.581,-22.241],[8.402,-19.403],[21.64,-6.605],[8.282,-0.747],[21.139,1.632],[-19.066,-1.872],[-36.451,8.209],[-5.623,9.361],[-0.579,11.411],[2.62,46.286]],"o":[[-2.516,4.111],[-3.131,22.098],[-2.581,22.241],[-8.402,19.403],[-7.953,2.427],[-21.115,1.905],[0,0],[37.782,3.709],[11.806,-2.659],[5.331,-8.875],[2.341,-46.111],[-0.213,-3.765]],"v":[[-1197.375,-144.455],[-1201.552,-129.713],[-1208.455,-62.808],[-1221.631,8.532],[-1271.54,43.81],[-1296.084,48.014],[-1359.612,48.424],[-1335.031,57.202],[-1222.662,50.692],[-1199.077,38.574],[-1194.328,4.962],[-1194.748,-133.86]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[2.068,2.705],[0.732,-5.231],[2.544,-22.246],[8.369,-19.417],[21.629,-6.641],[8.281,-0.761],[21.141,1.597],[-19.072,-1.81],[-36.89,5.106],[-5.607,9.37],[-0.56,11.412],[2.698,46.281]],"o":[[-2.509,4.116],[-3.095,22.103],[-2.544,22.246],[-8.369,19.417],[-7.949,2.441],[-21.112,1.941],[0,0],[38.917,3.693],[11.987,-1.659],[5.316,-8.884],[2.263,-46.115],[-0.219,-3.765]],"v":[[-1198.713,-146.711],[-1202.865,-131.962],[-1209.656,-65.046],[-1222.713,6.316],[-1272.562,41.678],[-1297.099,45.923],[-1360.627,46.44],[-1336.701,55.354],[-1225.149,49.833],[-1200.054,36.476],[-1195.416,2.701],[-1196.068,-136.121]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.978,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.369,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1197.728,-139.986],[-1202.727,-125.502],[-1213.382,-59.091],[-1230.55,11.395],[-1282.364,43.81],[-1307.105,46.627],[-1370.556,43.463],[-1347.132,54.708],[-1235.448,55.658],[-1209.728,42.608],[-1203.089,9.366],[-1195.7,-129.26]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[1.908,2.82],[1.034,-5.179],[3.828,-22.061],[9.48,-18.899],[21.978,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-6.14,9.03],[-1.22,11.361],[0.012,46.36]],"o":[[-2.743,3.963],[-4.369,21.887],[-3.828,22.061],[-9.48,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[5.821,-8.561],[4.93,-45.906],[-0.001,-3.771]],"v":[[-1197.728,-139.986],[-1202.727,-125.502],[-1213.382,-59.091],[-1230.55,11.395],[-1282.364,43.81],[-1307.105,46.627],[-1370.556,43.463],[-1347.132,54.708],[-1235.448,55.658],[-1209.728,42.608],[-1203.089,9.366],[-1195.7,-129.26]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[1.986,2.766],[0.89,-5.206],[3.215,-22.159],[8.952,-19.155],[21.82,-5.984],[8.3,-0.511],[21.083,2.234],[-18.891,-3.183],[-33.08,4.316],[-5.887,9.196],[-0.905,11.39],[1.298,46.342]],"o":[[-2.632,4.038],[-3.761,22],[-3.215,22.159],[-8.952,19.155],[-8.02,2.199],[-21.161,1.302],[0,0],[36.844,6.207],[12,-1.566],[5.582,-8.719],[3.655,-46.025],[-0.106,-3.769]],"v":[[-1196.612,-141.705],[-1201.208,-127.088],[-1210.016,-60.407],[-1225.223,10.528],[-1276.118,44.368],[-1300.771,47.87],[-1364.286,46.468],[-1339.808,55.996],[-1228.894,53.767],[-1203.24,40.525],[-1197.829,7.739],[-1194.288,-131.039]]}],"t":420},{"s":[{"c":true,"i":[[2.504,2.82],[1.357,-5.179],[5.023,-22.061],[12.439,-18.899],[21.977,-5.377],[8.311,-0.28],[21.013,2.818],[-18.796,-3.705],[-36.855,6.146],[-8.057,9.03],[-1.601,11.361],[0.016,46.36]],"o":[[-3.6,3.963],[-5.734,21.887],[-5.023,22.061],[-12.439,18.899],[-8.077,1.976],[-21.189,0.715],[0,0],[36.658,7.227],[11.937,-1.991],[7.638,-8.561],[6.469,-45.906],[-0.001,-3.771]],"v":[[-1189.616,-140.561],[-1196.176,-126.077],[-1210.157,-59.666],[-1232.685,10.82],[-1287.483,43.235],[-1312.224,46.052],[-1375.675,42.889],[-1352.25,54.133],[-1240.566,55.083],[-1208.001,40.731],[-1196.651,8.792],[-1186.956,-129.835]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"Head shadow","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.15,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-2.243,-9.177],[0.936,-15.607],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-5.931,4.682],[-3.746,-1.249],[2.185,-33.086],[1.249,-4.37],[-0.624,-2.497],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[2.297,9.397],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[5.931,-4.682],[3.746,1.249],[-2.185,33.086],[-1.249,4.37],[0.624,2.497],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1333.89,-107.066],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":15},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.209,61.562],[-7.142,12.688],[-2.86,-1.794],[-1.508,-9.326],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-5.114,5.562],[-2.888,-1.169],[0.747,-33.12],[0.83,-4.395],[-0.545,-2.483],[2.524,-11.936],[37.936,-5.736],[30.711,18.46]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[1.508,9.326],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[6.153,-6.692],[2.888,1.169],[-0.747,33.12],[-0.83,4.395],[0.545,2.483],[-2.524,11.936],[-37.936,5.736],[-31.795,-19.111]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1337.925,-138.789],[-1335.931,-105.136],[-1311.092,-102.931],[-1255.894,-100.403],[-1252.969,-99.548],[-1228.276,-128.297],[-1204.829,-150.127],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1375.234,45.216]]}],"t":26},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-1.249,-9.364],[0.936,-15.607],[-13.183,0.312],[-8.437,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[30.187,19.304]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[1.249,9.364],[0,0],[13.183,-0.312],[8.437,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-31.253,-19.986]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1344.186,-141.566],[-1343.126,-107.87],[-1318.357,-104.977],[-1263.251,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1386.584,41.334]]}],"t":128},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-22.932,-19.986]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.713,-142.26],[-1330.742,-107.131],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1374.734,41.334]]}],"t":143},{"i":{"x":0.25,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.266,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.855,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.08,4.682],[-22.932,-19.986]],"v":[[-1365.844,-97.702],[-1355.537,-143.274],[-1346.834,-158.569],[-1337.713,-142.26],[-1330.742,-107.131],[-1312.745,-104.977],[-1262.506,-100.919],[-1260.351,-99.983],[-1234.87,-128.037],[-1210.826,-149.207],[-1200.281,-112.685],[-1201.232,-65.552],[-1201.708,-51.818],[-1209.796,23.094],[-1243.37,54.308],[-1374.734,41.334]]}],"t":210},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-22.443,62.227],[-6.777,12.887],[-2.91,-1.712],[-1.773,-9.279],[0.057,-15.635],[-13.145,1.053],[-8.565,-2.019],[-0.807,-0.267],[-4.953,5.706],[-2.92,-1.086],[-0.198,-33.128],[0.704,-4.416],[-0.615,-2.466],[2.183,-12.003],[37.757,-6.816],[31.225,17.576]],"o":[[0,0],[6.777,-12.887],[2.91,1.712],[1.773,9.279],[0,0],[13.145,-1.053],[8.565,2.019],[0.807,0.267],[5.96,-6.865],[2.92,1.086],[0.198,33.128],[-0.704,4.416],[0.615,2.466],[-2.183,12.003],[-37.757,6.816],[-32.327,-18.197]],"v":[[-1366.314,-92.012],[-1354.853,-138.302],[-1343.871,-154.239],[-1338.548,-137.509],[-1335.594,-103.926],[-1310.702,-102.431],[-1255.455,-101.479],[-1252.506,-100.707],[-1228.643,-130.15],[-1205.829,-152.639],[-1193.246,-116.768],[-1191.545,-69.656],[-1191.247,-55.917],[-1195.109,19.331],[-1226.875,52.384],[-1370.591,47.486]]}],"t":246},{"i":{"x":0.15,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-22.338,62.265],[-6.755,12.898],[-2.913,-1.707],[-1.789,-9.276],[0.031,-15.635],[-13.143,1.075],[-8.568,-2.004],[-0.808,-0.266],[-4.944,5.714],[-2.922,-1.081],[-0.254,-33.127],[0.697,-4.418],[-0.62,-2.465],[2.163,-12.007],[37.745,-6.88],[31.254,17.523]],"o":[[0,0],[6.755,-12.898],[2.913,1.707],[1.789,9.276],[0,0],[13.143,-1.075],[8.568,2.004],[0.808,0.266],[5.948,-6.875],[2.922,1.081],[0.254,33.127],[-0.697,4.418],[0.62,2.465],[-2.163,12.007],[-37.745,6.88],[-32.358,-18.142]],"v":[[-1367.564,-93.985],[-1356.181,-140.294],[-1345.226,-156.25],[-1337.683,-138.48],[-1332.763,-105.124],[-1311.97,-104.497],[-1256.721,-103.638],[-1253.771,-102.871],[-1229.958,-132.354],[-1207.181,-154.881],[-1194.538,-119.031],[-1192.758,-71.922],[-1192.437,-58.184],[-1196.172,17.071],[-1227.883,50.177],[-1371.607,45.52]]}],"t":291},{"i":{"x":0.15,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.267,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.854,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.081,4.682],[-22.932,-19.986]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.594,-141.685],[-1325.624,-106.556],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.751,-127.462],[-1205.708,-148.632],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1369.615,41.909]]}],"t":312},{"i":{"x":0.6,"y":1},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[-19.009,60.866],[-5.497,12.485],[-2.061,-1.873],[-2.501,-9.07],[0.626,-15.607],[-12.019,0.312],[-7.692,-2.497],[-0.791,-0.312],[-5.267,5.418],[-2.855,-1.249],[1.665,-33.086],[0.951,-4.37],[-0.476,-2.497],[2.854,-11.861],[38.08,-4.682],[22.15,19.304]],"o":[[0,0],[5.497,-12.485],[2.061,1.873],[2.501,9.07],[0,0],[12.019,-0.312],[7.692,2.497],[0.791,0.312],[6.336,-6.519],[2.854,1.249],[-1.665,33.086],[-0.951,4.37],[0.476,2.497],[-2.854,11.861],[-38.081,4.682],[-22.932,-19.986]],"v":[[-1360.725,-97.127],[-1350.419,-142.699],[-1341.716,-157.994],[-1332.594,-141.685],[-1325.624,-106.556],[-1307.626,-104.402],[-1251.518,-98.38],[-1249.363,-97.444],[-1229.751,-127.462],[-1205.708,-148.632],[-1195.162,-112.11],[-1196.114,-64.978],[-1196.589,-51.244],[-1204.677,23.669],[-1238.252,54.882],[-1369.615,41.909]]}],"t":407},{"i":{"x":0.2,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-24.209,61.562],[-7.142,12.688],[-2.86,-1.794],[-2.173,-9.194],[0.503,-15.627],[-13.17,0.678],[-8.504,-2.262],[-0.799,-0.29],[-6.127,9.197],[-3.807,-2.701],[0.747,-33.12],[0.83,-4.395],[-0.545,-2.483],[2.524,-11.936],[37.936,-5.736],[30.711,18.46]],"o":[[0,0],[7.142,-12.688],[2.86,1.794],[2.173,9.194],[0,0],[13.17,-0.678],[8.504,2.262],[0.799,0.29],[5.041,-7.566],[2.541,1.803],[-0.747,33.12],[-0.83,4.395],[0.545,2.483],[-2.524,11.936],[-37.936,5.736],[-31.795,-19.111]],"v":[[-1366.978,-94.103],[-1354.201,-140.046],[-1342.769,-155.664],[-1334.299,-137.905],[-1329.03,-103.629],[-1311.092,-102.931],[-1251.081,-99.616],[-1248.155,-98.76],[-1227.228,-127.616],[-1204.829,-150.127],[-1193.274,-113.911],[-1192.918,-66.77],[-1193.012,-53.028],[-1199.02,22.08],[-1231.716,54.213],[-1375.234,45.216]]}],"t":420},{"s":[{"c":true,"i":[[-25.907,60.866],[-7.491,12.485],[-2.809,-1.873],[-2.955,-8.973],[-1.346,-14.959],[-15.607,0.312],[-9.988,-2.497],[-0.936,-0.312],[-5.931,4.682],[-3.746,-1.249],[2.185,-33.086],[1.249,-4.37],[-0.624,-2.497],[3.746,-11.861],[38.08,-4.682],[29.029,23.098]],"o":[[0,0],[7.491,-12.485],[2.809,1.873],[2.861,8.687],[0,0],[15.607,-0.312],[9.988,2.497],[0.936,0.312],[5.931,-4.682],[3.746,1.249],[-2.185,33.086],[-1.249,4.37],[0.624,2.497],[-3.746,11.861],[-38.08,4.682],[-29.029,-23.098]],"v":[[-1374.467,-97.702],[-1360.421,-143.274],[-1348.56,-158.569],[-1339.508,-138.28],[-1331.415,-106.992],[-1302.364,-104.569],[-1237.128,-100.511],[-1233.694,-99.575],[-1216.839,-122.049],[-1194.365,-145.147],[-1186.25,-112.685],[-1187.498,-65.552],[-1188.123,-51.818],[-1198.735,23.094],[-1243.37,54.308],[-1380.398,42.134]]}],"t":442}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"Head fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.227,-2.778],[-1.353,-0.367],[-6.471,-0.544],[-9.867,-0.295],[-27.649,6.141],[-0.11,0.604],[0.126,4.4],[23.479,-1.053],[22.589,6.489]],"o":[[-0.46,2.749],[0.276,3.372],[6.944,1.884],[9.96,0.837],[28.31,0.848],[0.53,-0.118],[0.79,-4.331],[-23.364,2.552],[-23.479,1.053],[0,0]],"v":[[-1363.494,52.882],[-1363.618,60.993],[-1360.808,65.864],[-1340.115,69.258],[-1311.792,71.49],[-1227.493,66.408],[-1225.32,64.112],[-1224.321,50.967],[-1294.474,57.901],[-1364.349,51.193]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372618675,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"Helmet collar","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[23.023,-3.817],[33.186,-39.093],[-12.733,-48.658],[-9.231,-8.019],[0,0],[-44.404,6.65],[-17.923,25.701],[-7.441,17.862],[7.154,26.212],[82.928,18.735]],"o":[[-49.619,8.226],[-26.764,31.528],[8.177,31.247],[23.191,20.147],[44.717,4.039],[13.81,-2.068],[11.068,-15.872],[10.449,-25.081],[-4.744,-17.383],[-22.763,-5.143]],"v":[[-1304.764,-207.839],[-1414.922,-146.333],[-1438.469,-15.523],[-1407.347,36.657],[-1363.455,64.003],[-1228.244,63.996],[-1159.167,21.376],[-1131.354,-31.799],[-1131.22,-103.357],[-1246.445,-202.29]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.243137255311,0.65098041296,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"Helmet fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1280.449,-66.313]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1280.449,-66.313]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Head and Helmet","np":15,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":25,"ip":45,"ks":{"a":{"a":0,"ix":1,"k":[-365,-428,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.77],"y":[0.604]},"o":{"x":[0.291],"y":[0.2]},"s":[179],"t":45},{"i":{"x":[0.674],"y":[0.494]},"o":{"x":[0.436],"y":[0.467]},"s":[372],"t":190.139},{"i":{"x":[0.754],"y":[0.922]},"o":{"x":[0.106],"y":[0.184]},"s":[663],"t":326},{"s":[925],"t":462}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.677],"y":[0.967]},"o":{"x":[0.304],"y":[0.004]},"s":[193],"t":45},{"i":{"x":[0.307],"y":[0.87]},"o":{"x":[0.59],"y":[-0.043]},"s":[219],"t":190.139},{"i":{"x":[0.579],"y":[1.231]},"o":{"x":[0.211],"y":[-1.351]},"s":[185],"t":326},{"s":[186],"t":462}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.247],"y":[1.161]},"o":{"x":[0.167],"y":[0.167]},"s":[-9],"t":45},{"i":{"x":[0.712],"y":[0.509]},"o":{"x":[0.488],"y":[0.067]},"s":[2],"t":133},{"i":{"x":[0.459],"y":[1.036]},"o":{"x":[0.207],"y":[0.301]},"s":[-14.225],"t":216},{"i":{"x":[0.384],"y":[0.716]},"o":{"x":[0.499],"y":[0.027]},"s":[-23.61],"t":257},{"i":{"x":[0.713],"y":[0.925]},"o":{"x":[0.305],"y":[0.876]},"s":[-12],"t":298},{"s":[-9],"t":364}]},"s":{"a":0,"ix":6,"k":[-21,21,100]}},"nm":"striped fish 3","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.644,1.367],[-1.367,-2.644],[2.644,-1.367],[1.367,2.644]],"o":[[2.644,-1.367],[1.367,2.644],[-2.644,1.367],[-1.367,-2.644]],"v":[[-278.01,-464.082],[-270.748,-461.771],[-273.06,-454.508],[-280.322,-456.82]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 18","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.213},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"dots 18","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.397,1.24],[-1.24,-2.397],[2.397,-1.24],[1.24,2.397]],"o":[[2.397,-1.24],[1.24,2.397],[-2.397,1.24],[-1.24,-2.397]],"v":[[-271.779,-452.636],[-265.195,-450.54],[-267.29,-443.955],[-273.875,-446.051]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 12","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":212.207},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.016},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":237.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":250.646},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":263.455},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"dots 12","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.637,1.363],[-1.363,-2.637],[2.637,-1.363],[1.363,2.637]],"o":[[2.637,-1.363],[1.363,2.637],[-2.637,1.363],[-1.363,-2.637]],"v":[[-269.885,-474.475],[-262.643,-472.169],[-264.948,-464.927],[-272.19,-467.232]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 17","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.213},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":197.928},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":209.643},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":233.072},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":244.783},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":256.5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":314.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":327.008},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.861},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":374.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":383.602},{"s":[0],"t":392.458984375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"dots 17","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.41,1.246],[-1.246,-2.41],[2.41,-1.246],[1.246,2.41]],"o":[[2.41,-1.246],[1.246,2.41],[-2.41,1.246],[-1.246,-2.41]],"v":[[-258.674,-446.065],[-252.052,-443.958],[-254.16,-437.336],[-260.781,-439.444]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 11","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":233.438},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":247.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":261.992},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":314.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":327.008},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.861},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":374.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":383.602},{"s":[0],"t":392.458984375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"dots 11","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.805,1.451],[-1.451,-2.805],[2.805,-1.451],[1.451,2.805]],"o":[[2.805,-1.451],[1.451,2.805],[-2.805,1.451],[-1.451,-2.805]],"v":[[-262.366,-484.789],[-254.66,-482.337],[-257.113,-474.63],[-264.819,-477.083]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 16","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190.605},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.336},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.062},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":231.791},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":245.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256.5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":267.484},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"dots 16","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.784,1.44],[-1.44,-2.784],[2.784,-1.44],[1.44,2.784]],"o":[[2.784,-1.44],[1.44,2.784],[-2.784,1.44],[-1.44,-2.784]],"v":[[-242.346,-444.75],[-234.699,-442.316],[-237.133,-434.67],[-244.78,-437.103]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 10","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":211.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.895},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":227.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":244.783},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":261.627},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"dots 10","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.607,1.348],[-1.348,-2.607],[2.607,-1.348],[1.348,2.607]],"o":[[2.607,-1.348],[1.348,2.607],[-2.607,1.348],[-1.348,-2.607]],"v":[[-331.273,-454.413],[-324.112,-452.133],[-326.391,-444.972],[-333.552,-447.252]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 15","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.768},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":225.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":255.922},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":272.689},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":300},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"dots 15","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.896,1.497],[-1.497,-2.896],[2.896,-1.497],[1.497,2.896]],"o":[[2.896,-1.497],[1.497,2.896],[-2.896,1.497],[-1.497,-2.896]],"v":[[-329.246,-442.538],[-321.292,-440.007],[-323.824,-432.052],[-331.778,-434.584]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 9","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":188.41},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":202.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":223.555},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":233.375},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":271.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"dots 9","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.823,1.46],[-1.46,-2.823],[2.823,-1.46],[1.46,2.823]],"o":[[2.823,-1.46],[1.46,2.823],[-2.823,1.46],[-1.46,-2.823]],"v":[[-322.06,-463.812],[-314.305,-461.344],[-316.773,-453.589],[-324.528,-456.057]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 14","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":208.18},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":217.691},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":227.217},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":236.734},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":246.246},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":255.771},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":265.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"dots 14","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.459,1.271],[-1.271,-2.459],[2.459,-1.271],[1.271,2.459]],"o":[[2.459,-1.271],[1.271,2.459],[-2.459,1.271],[-1.271,-2.459]],"v":[[-317.719,-435.153],[-310.965,-433.003],[-313.114,-426.249],[-319.868,-428.399]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 8","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":211.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":219.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"dots 8","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.93,1.515],[-1.515,-2.93],[2.93,-1.515],[1.515,2.93]],"o":[[2.93,-1.515],[1.515,2.93],[-2.93,1.515],[-1.515,-2.93]],"v":[[-312.483,-475.015],[-304.435,-472.453],[-306.996,-464.405],[-315.045,-466.966]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 13","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":207.08},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":235.635},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":249.912},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":264.189},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"dots 13","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.807,1.452],[-1.452,-2.807],[2.807,-1.452],[1.452,2.807]],"o":[[2.807,-1.452],[1.452,2.807],[-2.807,1.452],[-1.452,-2.807]],"v":[[-306.368,-430.793],[-298.656,-428.339],[-301.111,-420.626],[-308.823,-423.081]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 7","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.193},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":207.809},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.432},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":229.043},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":242.59},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256.135},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":269.682},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"dots 7","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.748,1.421],[-1.421,-2.748],[2.748,-1.421],[1.421,2.748]],"o":[[2.748,-1.421],[1.421,2.748],[-2.748,1.421],[-1.421,-2.748]],"v":[[-383.108,-444.271],[-375.559,-441.868],[-377.962,-434.319],[-385.511,-436.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190.605},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":204.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.426},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":232.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":246.252},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":260.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":274.072},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"dots 5","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.766,1.43],[-1.43,-2.766],[2.766,-1.43],[1.43,2.766]],"o":[[2.766,-1.43],[1.43,2.766],[-2.766,1.43],[-1.43,-2.766]],"v":[[-384.125,-430.303],[-376.527,-427.885],[-378.945,-420.287],[-386.543,-422.705]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 6","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208.912},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":218.426},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":227.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":253.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":269.682},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":303.877},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":316.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":329.578},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":376.518},{"s":[0],"t":385.373046875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"dots 6","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.6,1.345],[-1.345,-2.6],[2.6,-1.345],[1.345,2.6]],"o":[[2.6,-1.345],[1.345,2.6],[-2.6,1.345],[-1.345,-2.6]],"v":[[-373.851,-454.409],[-366.708,-452.136],[-368.982,-444.992],[-376.125,-447.266]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":212.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":238.93},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":247.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"dots 3","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.597,1.343],[-1.343,-2.597],[2.597,-1.343],[1.343,2.597]],"o":[[2.597,-1.343],[1.343,2.597],[-2.597,1.343],[-1.343,-2.597]],"v":[[-370.848,-424.403],[-363.714,-422.133],[-365.985,-414.998],[-373.119,-417.269]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":185.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":195},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":212.57},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":230.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":241.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":252.107},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":276.27},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.586},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.439},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":337.291},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.83},{"s":[0],"t":390.6875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":16,"mn":"ADBE Vector Group","nm":"dots 4","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.944,1.522],[-1.522,-2.944],[2.944,-1.522],[1.522,2.944]],"o":[[2.944,-1.522],[1.522,2.944],[-2.944,1.522],[-1.522,-2.944]],"v":[[-364.496,-466.04],[-356.41,-463.466],[-358.983,-455.38],[-367.07,-457.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":192.803},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":203.785},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.768},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":243.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":252.932},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":262.543},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":278.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":17,"mn":"ADBE Vector Group","nm":"dots","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.68,1.386],[-1.386,-2.68],[2.68,-1.386],[1.386,2.68]],"o":[[2.68,-1.386],[1.386,2.68],[-2.68,1.386],[-1.386,-2.68]],"v":[[-358.249,-418.562],[-350.888,-416.219],[-353.231,-408.858],[-360.591,-411.201]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":199.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":210.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":221.357},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":232.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243.322},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":254.305},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":265.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":319.299},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.152},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":345},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":378.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":387.143},{"s":[0],"t":396}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":18,"mn":"ADBE Vector Group","nm":"dots 2","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.787,4.783],[-3.53,3.322],[-0.752,0.191],[-1.009,-1.757],[-0.469,-5.598],[0.123,-0.319],[0.443,-0.254],[5.377,-2.171]],"o":[[-0.264,-4.84],[0.787,-4.783],[0.565,-0.532],[1.964,-0.499],[2.797,4.872],[0.029,0.341],[-0.184,0.476],[-5.031,2.884],[0,0]],"v":[[-268.562,-391.745],[-268.301,-406.254],[-262.051,-419.097],[-260.105,-420.326],[-255.349,-417.283],[-251.552,-401.011],[-251.62,-399.996],[-252.718,-398.975],[-268.356,-391.382]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-3.975,8.311],[-2.071,0.172],[-1.196,-1.654],[0.251,-6.78],[0.168,-0.307],[0.439,-0.211],[5.253,-2.343],[0.466,0.522]],"o":[[-0.343,-9.206],[0.896,-1.875],[2.034,-0.169],[3.976,5.497],[-0.013,0.35],[-0.234,0.427],[-5.186,2.487],[-0.639,0.285],[0,0]],"v":[[-303.201,-377.675],[-299.375,-404.766],[-295.016,-408.806],[-290.098,-405.644],[-284.296,-386.523],[-284.5,-385.503],[-285.64,-384.628],[-301.299,-377.383],[-303.254,-377.374]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-4.199,9.826],[-1.482,0.717],[-1.691,-1.506],[-0.941,-4.257],[0.521,-4.392],[0.3,-0.433],[0.422,-0.251],[6.634,-0.542]],"o":[[-0.985,-10.584],[0.632,-1.478],[2.058,-0.995],[3.317,2.954],[0.956,4.324],[-0.061,0.517],[-0.275,0.397],[-5.664,3.373],[0,0]],"v":[[-348.784,-363.5],[-343.867,-394.716],[-340.962,-398.475],[-334.688,-396.895],[-328.963,-385.294],[-327.977,-372.124],[-328.422,-370.639],[-329.548,-369.721],[-348.342,-363.739]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.124,7.058],[-4.732,1.899],[-1.513,-0.992],[-0.554,-1.002],[0.458,-8.291],[0.277,-0.457],[0.394,-0.233],[2.439,-0.322],[5.037,-0.665]],"o":[[0.451,-7.357],[1.469,-4.883],[1.679,-0.674],[0.957,0.628],[4.019,7.266],[-0.029,0.534],[-0.237,0.391],[-2.119,1.25],[-5.037,0.665],[0,0]],"v":[[-390.46,-353.652],[-385.747,-375.201],[-377.547,-387.47],[-372.333,-387.239],[-370.162,-384.622],[-366.949,-360.269],[-367.292,-358.72],[-368.311,-357.822],[-375.384,-355.902],[-390.495,-353.906]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":19,"mn":"ADBE Vector Group","nm":"stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[4.818,-7.964],[-0.071,-0.543],[-0.388,-0.372],[-12.193,-0.364]],"o":[[-5.794,7.284],[-0.283,0.468],[0.07,0.533],[8.803,8.444],[0,0]],"v":[[-260.836,-478.945],[-276.775,-456.042],[-277.279,-454.514],[-276.418,-453.19],[-243.427,-439.348]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[6.274,-9.991],[-9.235,-4.045]],"o":[[-8.82,7.836],[7.735,6.466],[0,0]],"v":[[-309.475,-468.673],[-332.269,-441.751],[-306.642,-425.877]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.256,-11.093],[-10.904,-5.377]],"o":[[-9.424,10.119],[10.904,5.377],[0,0]],"v":[[-361.705,-460.818],[-388.252,-428.968],[-355.539,-412.837]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.344,0.488]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.818,-472.842]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-20.97,12.957]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-200.277,-485.07]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.621,1.19]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-187.841,-459.3]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.409,3.438]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-188.459,-464.901]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.823,9.314]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.995,-478.552]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.645,0.499]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.94,-455.493]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.837,11.436]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-194.923,-485.111]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.409,3.438]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-188.459,-464.901]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[1.097,-1.636],[0.372,-2.467],[-1.219,-1.825],[-1.689,0.394],[-1.224,1.71],[-0.272,1.637],[1.022,1.762],[1.499,0.806]],"o":[[-1.559,-0.417],[-1.222,1.822],[-0.372,2.467],[1.182,1.769],[1.689,-0.394],[0.842,-1.176],[0.37,-2.226],[-1.022,-1.762],[0,0]],"v":[[-448.595,-443.882],[-452.744,-441.185],[-455.36,-434.713],[-454.154,-427.647],[-449.429,-425.61],[-444.988,-429.06],[-443.138,-433.282],[-444.347,-439.673],[-448.306,-443.422]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":20,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.511,20.332],[20.031,-20.488],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.511,-20.332],[-20.031,20.488],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-222.846,-497.356],[-203.083,-430.203],[-432,-353],[-521.357,-405.581]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-101.298,-32.784],[27.444,-8.236],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[101.298,32.784],[-27.444,8.236],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-201.646,-480.973],[-216.849,-412.644],[-432,-353],[-521.357,-405.581]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.504,-14.378],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.564,13.861],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.69,12.889],[23.14,-16.898],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.743,-12.425],[-23.14,16.898],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-214.224,-494.398],[-205.828,-424.903],[-432,-353],[-515.729,-412.062]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.285,11.221],[12,6],[-35,13],[-107.003,-27.354],[27.664,-7.462],[78,9],[6.18,21.925]],"o":[[0,0],[-12,-6],[35,-13],[103.153,26.37],[-27.664,7.462],[-78,-9],[0,0]],"v":[[-483,-409],[-511.576,-420.114],[-470,-460],[-203.131,-477.545],[-220.247,-409.67],[-432,-353],[-516.727,-396.945]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.974,23.231],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.089,-22.395],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":384},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.504,-14.378],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.564,13.861],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-510.727,-414.825],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":256},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":21,"mn":"ADBE Vector Group","nm":"body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.511,20.332],[20.031,-20.488],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.511,-20.332],[-20.031,20.488],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-222.846,-497.356],[-203.083,-430.203],[-432,-353],[-521.357,-405.581]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-101.298,-32.784],[27.444,-8.236],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[101.298,32.784],[-27.444,8.236],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-201.646,-480.973],[-216.849,-412.644],[-432,-353],[-521.357,-405.581]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-108.777,-16.115],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.321,15.603],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-109.41,11.028],[23.14,-16.898],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.934,-10.677],[-23.14,16.898],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-214.224,-494.398],[-205.828,-424.903],[-432,-353],[-515.729,-412.062]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.603,11.715],[12,6],[-35,13],[-106.074,-28.991],[27.664,-7.462],[78,9],[6.18,21.925]],"o":[[0,0],[-12,-6],[35,-13],[102.704,28.07],[-27.664,7.462],[-78,-9],[0,0]],"v":[[-483,-409],[-511.89,-421.262],[-470,-460],[-203.131,-477.545],[-220.247,-409.67],[-432,-353],[-516.727,-396.945]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-107.872,21.351],[21.434,-19.015],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.444,-20.673],[-21.434,19.015],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-216.563,-498.968],[-201.616,-430.582],[-432,-353],[-515.729,-412.062]]}],"t":384},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-108.777,-16.115],[26.575,-10.713],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.321,15.603],[-26.575,10.713],[-78,-9],[0,0]],"v":[[-483,-409],[-511.042,-415.973],[-470,-460],[-204.189,-485.22],[-213.075,-415.786],[-432,-353],[-515.729,-412.062]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":22,"mn":"ADBE Vector Group","nm":"body","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.82,10.821]],"o":[[17.676,-4.928],[0,0]],"v":[[-172.602,-476.242],[-119.976,-506.493]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.357,-9.638]],"o":[[17.853,4.241],[0,0]],"v":[[-167.895,-438.182],[-112.758,-422.061]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.779,12.238]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-113.382,-509.203]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.693,5.159]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-110.794,-485.904]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.762,11.033]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-111.038,-505.592]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.866,-10.865]],"o":[[18.166,2.59],[0,0]],"v":[[-166.664,-445.697],[-114.7,-424.739]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.953,9.951]],"o":[[18.247,-1.94],[0,0]],"v":[[-168.159,-465.274],[-106.558,-489.544]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-19.153,-7.987]],"o":[[17.727,4.741],[0,0]],"v":[[-170.595,-433.824],[-117.731,-420.503]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-13.779,12.238]],"o":[[17.981,-3.661],[0,0]],"v":[[-167.944,-474.342],[-113.382,-509.203]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-11.866,-10.865]],"o":[[18.166,2.59],[0,0]],"v":[[-166.664,-445.697],[-114.7,-424.739]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.896,3.885],[-3.972,8.323]],"o":[[7.769,-1.515],[7.245,-4.081],[0,0]],"v":[[-173.106,-489.205],[-152.479,-503.119],[-135.428,-522.797]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.662,-1.989],[-8.356,-3.398]],"o":[[7.532,2.434],[8.049,2.089],[0,0]],"v":[[-162.063,-449.77],[-137.816,-448.22],[-112.569,-444.524]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.308,4.782],[-4.819,9.708]],"o":[[7.857,-0.96],[7.288,-5.525],[0,0]],"v":[[-167.527,-487.308],[-147.414,-500.863],[-130.23,-524.02]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.748,1.62],[-8.512,6.709]],"o":[[7.857,-0.96],[8.952,-1.871],[0,0]],"v":[[-167.527,-487.308],[-145.119,-492.942],[-119.673,-506.509]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-5.666,5.813],[-5.62,9.267]],"o":[[7.857,-0.96],[6.384,-6.549],[0,0]],"v":[[-167.527,-487.308],[-145.867,-499.111],[-126.576,-521.777]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.842,-1.076],[-10.547,-5.09]],"o":[[7.723,1.735],[9.061,1.244],[0,0]],"v":[[-161.916,-457.77],[-138.917,-455.551],[-111.479,-446.943]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.541,5.06],[-8.728,9.689]],"o":[[7.416,-1.818],[7.594,-5.096],[0,0]],"v":[[-166.514,-478.142],[-143.098,-488.388],[-120.318,-507.266]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-12.352,-0.281],[-13.01,-0.883]],"o":[[7.574,0.966],[9.143,0.208],[0,0]],"v":[[-164.439,-445.243],[-138.905,-446.398],[-112.288,-442.269]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.308,4.782],[-4.819,9.708]],"o":[[7.857,-0.96],[7.288,-5.525],[0,0]],"v":[[-167.527,-487.308],[-147.414,-500.863],[-130.23,-524.02]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-7.842,-1.076],[-10.547,-5.09]],"o":[[7.723,1.735],[9.061,1.244],[0,0]],"v":[[-161.916,-457.77],[-138.917,-455.551],[-111.479,-446.943]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.566,17.502]],"o":[[17.386,-10.051],[0,0]],"v":[[-183.242,-498.735],[-148.006,-540.732]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-22.937,-1.122]],"o":[[20.079,-0.381],[0,0]],"v":[[-166.321,-463.015],[-109.18,-466.166]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.098,15.635]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-145.53,-537.216]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-12.206,11.517]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-127.848,-524.986]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.395,15.065]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-139.448,-534.819]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.3,-4.326]],"o":[[19.959,-2.217],[0,0]],"v":[[-167.369,-470.57],[-108.772,-466.966]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.083,14.579]],"o":[[18.808,-7.04],[0,0]],"v":[[-174.937,-489.216],[-132.865,-523.103]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-18.533,-0.856]],"o":[[20.081,0.182],[0,0]],"v":[[-168.324,-458.603],[-107.576,-461.917]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-6.098,15.635]],"o":[[18.056,-8.791],[0,0]],"v":[[-176.961,-497.534],[-145.53,-537.216]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-16.3,-4.326]],"o":[[19.959,-2.217],[0,0]],"v":[[-167.369,-470.57],[-108.772,-466.966]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[-141.167,-477.879]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[-141.167,-477.879]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.816,15.265],[-5.727,10.201],[-4.344,0.323],[-2.793,-3.343],[-2.528,-8.072],[-8.69,-6.646],[-0.889,-3.362],[5.155,-3.779],[31.868,-3.107],[9,14.412]],"o":[[9.487,-14.286],[7.816,-15.265],[2.132,-3.799],[4.344,-0.323],[3.7,4.429],[3.27,10.44],[2.763,2.113],[1.634,6.18],[-25.823,18.932],[-7.313,-15.337],[0,0]],"v":[[-203.864,-501.795],[-169.553,-539.871],[-144.145,-573.62],[-132.998,-578.96],[-121.235,-574.495],[-105.978,-540.861],[-78.351,-510.697],[-71.835,-502.803],[-80.976,-487.307],[-179.476,-456.496],[-203.971,-501.168]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.811,3.393],[-11.49,-2.199],[-3.352,-2.783],[0.309,-4.345],[3.782,-7.567],[-1.644,-10.815],[1.693,-3.038],[3.809,5.134],[29.392,12.703],[0.901,16.968]],"o":[[15.216,-7.911],[16.811,-3.393],[4.279,0.819],[3.352,2.783],[-0.41,5.756],[-4.891,9.786],[0.523,3.438],[-3.112,5.583],[-19.078,-25.715],[1.023,-16.961],[0,0]],"v":[[-182.887,-475.672],[-127.277,-489.888],[-86.258,-489.963],[-71.844,-483.274],[-66.473,-471.896],[-78.83,-437.092],[-79.871,-396.201],[-80.658,-385.996],[-106.43,-384.271],[-183.466,-424.228],[-183.283,-475.175]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.505,9.149],[-11.225,3.294],[-4.253,-0.943],[-1.711,-4.006],[-0.094,-8.459],[-6.405,-8.869],[0.118,-3.476],[6.367,0.561],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[14.505,-9.149],[4.18,-1.227],[4.253,0.943],[2.266,5.307],[0.121,10.939],[2.036,2.82],[-0.217,6.388],[-31.896,-2.812],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-145.812,-538.037],[-111.849,-555.13],[-102.456,-557.265],[-92.48,-549.598],[-87.567,-512.994],[-69.808,-476.146],[-65.845,-466.709],[-86.005,-460.587],[-176.202,-455.133],[-197.465,-501.431]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.379,13.652],[-9.359,7.02],[-4.314,0.607],[-3.006,-3.153],[-3.053,-7.889],[-9.107,-6.061],[-1.108,-3.297],[5.218,-3.692],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[10.379,-13.652],[3.485,-2.614],[4.314,-0.607],[3.982,4.176],[3.948,10.203],[2.895,1.927],[2.036,6.059],[-26.136,18.496],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-156.212,-537.575],[-136.291,-570.056],[-128.242,-575.348],[-116.211,-571.664],[-98.78,-539.104],[-69.232,-510.818],[-62.213,-503.369],[-79.134,-486.2],[-176.202,-455.133],[-197.465,-501.431]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[14.664,-3.025],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.749,12.493],[-10.041,6.003],[-4.354,0.153],[-2.66,-3.45],[-2.211,-8.165],[-8.424,-6.98],[-0.757,-3.395],[6.07,-2.002],[31.944,2.201],[6.495,15.701]],"o":[[13.476,-6.526],[11.749,-12.493],[3.739,-2.235],[4.354,-0.153],[3.524,4.57],[2.86,10.559],[2.678,2.219],[1.391,6.239],[-30.408,10.03],[-4.678,-16.335],[0,0]],"v":[[-194.77,-495.64],[-153.526,-531.234],[-124.933,-556.296],[-116.375,-560.717],[-104.795,-555.795],[-90.863,-521.591],[-64.435,-490.372],[-58.232,-482.23],[-77.151,-465.805],[-178.201,-446.934],[-194.979,-495.039]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.081,-1.528],[-10.922,-4.192],[-2.808,-3.33],[1.071,-4.223],[5.057,-6.781],[0.29,-10.936],[2.203,-2.691],[5.323,3.539],[29.023,13.523],[0.425,16.986]],"o":[[14.921,-1.252],[17.081,1.528],[4.067,1.561],[2.808,3.33],[-1.419,5.593],[-6.54,8.769],[-0.092,3.477],[-4.049,4.947],[-26.665,-17.727],[1.499,-16.925],[0,0]],"v":[[-184.528,-471.72],[-113.938,-483.19],[-76.57,-476.172],[-67.807,-472.17],[-64.529,-460.023],[-82.832,-427.945],[-91.071,-387.879],[-93.647,-377.973],[-118.248,-382.713],[-186.551,-420.312],[-184.939,-471.234]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[12.797,-7.774],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[14.664,-3.025],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":157},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":167.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":177.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":187.6},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":197.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":208},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":440.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":450.801},{"s":[0],"t":462}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":106},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-7.816,15.265],[-5.727,10.201],[-4.344,0.323],[-2.793,-3.343],[-2.528,-8.072],[-8.69,-6.646],[-0.889,-3.362],[5.155,-3.779],[31.868,-3.107],[9,14.412]],"o":[[9.487,-14.286],[7.816,-15.265],[2.132,-3.799],[4.344,-0.323],[3.7,4.429],[3.27,10.44],[2.763,2.113],[1.634,6.18],[-25.823,18.932],[-7.313,-15.337],[0,0]],"v":[[-203.864,-501.795],[-169.553,-539.871],[-144.145,-573.62],[-132.998,-578.96],[-121.235,-574.495],[-105.978,-540.861],[-78.351,-510.697],[-71.835,-502.803],[-80.976,-487.307],[-179.476,-456.496],[-203.971,-501.168]]}],"t":149},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-16.811,3.393],[-11.49,-2.199],[-3.352,-2.783],[0.309,-4.345],[3.782,-7.567],[-1.644,-10.815],[1.693,-3.038],[3.809,5.134],[29.392,12.703],[0.901,16.968]],"o":[[15.216,-7.911],[16.811,-3.393],[4.279,0.819],[3.352,2.783],[-0.41,5.756],[-4.891,9.786],[0.523,3.438],[-3.112,5.583],[-19.078,-25.715],[1.023,-16.961],[0,0]],"v":[[-182.887,-475.672],[-127.277,-489.888],[-86.258,-489.963],[-71.844,-483.274],[-66.473,-471.896],[-78.83,-437.092],[-79.871,-396.201],[-80.658,-385.996],[-106.43,-384.271],[-183.466,-424.228],[-183.283,-475.175]]}],"t":186},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":208},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-14.505,9.149],[-11.225,3.294],[-4.253,-0.943],[-1.711,-4.006],[-0.094,-8.459],[-6.405,-8.869],[0.118,-3.476],[6.367,0.561],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[14.505,-9.149],[4.18,-1.227],[4.253,0.943],[2.266,5.307],[0.121,10.939],[2.036,2.82],[-0.217,6.388],[-31.896,-2.812],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-145.812,-538.037],[-111.849,-555.13],[-102.456,-557.265],[-92.48,-549.598],[-87.567,-512.994],[-69.808,-476.146],[-65.845,-466.709],[-86.005,-460.587],[-176.202,-455.133],[-197.465,-501.431]]}],"t":230},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-10.379,13.652],[-9.359,7.02],[-4.314,0.607],[-3.006,-3.153],[-3.053,-7.889],[-9.107,-6.061],[-1.108,-3.297],[5.218,-3.692],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[10.379,-13.652],[3.485,-2.614],[4.314,-0.607],[3.982,4.176],[3.948,10.203],[2.895,1.927],[2.036,6.059],[-26.136,18.496],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-156.212,-537.575],[-136.291,-570.056],[-128.242,-575.348],[-116.211,-571.664],[-98.78,-539.104],[-69.232,-510.818],[-62.213,-503.369],[-79.134,-486.2],[-176.202,-455.133],[-197.465,-501.431]]}],"t":256},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[15.347,-4.168],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":281},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-11.749,12.493],[-10.041,6.003],[-4.354,0.153],[-2.66,-3.45],[-2.211,-8.165],[-8.424,-6.98],[-0.757,-3.395],[6.07,-2.002],[31.944,2.201],[6.495,15.701]],"o":[[13.858,-7.801],[11.749,-12.493],[3.739,-2.235],[4.354,-0.153],[3.524,4.57],[2.86,10.559],[2.678,2.219],[1.391,6.239],[-30.408,10.03],[-4.678,-16.335],[0,0]],"v":[[-194.77,-495.64],[-153.526,-531.234],[-124.933,-556.296],[-116.375,-560.717],[-104.795,-555.795],[-90.863,-521.591],[-64.435,-490.372],[-58.232,-482.23],[-77.151,-465.805],[-178.201,-446.934],[-194.979,-495.039]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-17.081,-1.528],[-10.922,-4.192],[-2.808,-3.33],[1.071,-4.223],[5.057,-6.781],[0.29,-10.936],[2.203,-2.691],[5.323,3.539],[29.023,13.523],[0.425,16.986]],"o":[[15.735,-2.305],[17.081,1.528],[4.067,1.561],[2.808,3.33],[-1.419,5.593],[-6.54,8.769],[-0.092,3.477],[-4.049,4.947],[-26.665,-17.727],[1.499,-16.925],[0,0]],"v":[[-184.528,-471.72],[-113.938,-483.19],[-76.57,-476.172],[-67.807,-472.17],[-64.529,-460.023],[-82.832,-427.945],[-91.071,-387.879],[-93.647,-377.973],[-118.248,-382.713],[-186.551,-420.312],[-184.939,-471.234]]}],"t":354},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-9.19,14.479],[-8.733,7.784],[-4.247,0.969],[-3.262,-2.888],[-3.707,-7.604],[-9.586,-5.272],[-1.382,-3.192],[5.305,-3.566],[32.008,-0.838],[7.955,15.014]],"o":[[13.056,-9.08],[9.19,-14.479],[3.252,-2.898],[4.247,-0.969],[4.32,3.825],[4.794,9.833],[3.047,1.676],[2.54,5.866],[-26.573,17.864],[-6.206,-15.818],[0,0]],"v":[[-197.315,-502.049],[-159.228,-539.772],[-143.982,-571.308],[-136.407,-577.26],[-124.109,-574.603],[-103.994,-543.629],[-72.166,-517.937],[-64.544,-511.106],[-81.387,-491.633],[-176.202,-455.133],[-197.465,-501.431]]}],"t":384},{"s":[{"c":false,"i":[[0,0],[-17.148,0.202],[-11.289,-3.069],[-3.13,-3.03],[0.64,-4.309],[4.348,-7.256],[-0.815,-10.909],[1.92,-2.9],[5.131,3.811],[30.431,9.96],[2.45,16.814]],"o":[[15.347,-4.168],[17.148,-0.202],[4.204,1.143],[3.13,3.03],[-0.847,5.708],[-5.623,9.384],[0.259,3.468],[-3.529,5.33],[-25.704,-19.092],[-0.533,-16.983],[0,0]],"v":[[-185.024,-481.658],[-117.247,-487.489],[-79.361,-484.275],[-70.24,-481.177],[-65.754,-469.422],[-80.729,-435.662],[-84.886,-394.97],[-86.449,-384.855],[-106.831,-390.191],[-180.893,-430.377],[-185.373,-481.126]]}],"t":437}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":23,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":26,"ip":83,"ks":{"a":{"a":0,"ix":1,"k":[-365,-428,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.731],"y":[0.806]},"o":{"x":[0.252],"y":[0.129]},"s":[183],"t":84},{"i":{"x":[0.601],"y":[0.479]},"o":{"x":[0.294],"y":[0.23]},"s":[355.01],"t":186},{"i":{"x":[0.843],"y":[0.836]},"o":{"x":[0.198],"y":[0.187]},"s":[532.832],"t":300},{"s":[856],"t":450}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.699],"y":[1.154]},"o":{"x":[0.149],"y":[0.089]},"s":[148],"t":84},{"i":{"x":[0.427],"y":[0.668]},"o":{"x":[0.603],"y":[0.082]},"s":[150.802],"t":186},{"i":{"x":[0.463],"y":[0.923]},"o":{"x":[0.228],"y":[0.663]},"s":[139.072],"t":300},{"s":[136],"t":450}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.836],"y":[0.523]},"o":{"x":[0.247],"y":[0.019]},"s":[-6],"t":84},{"i":{"x":[0.356],"y":[1.056]},"o":{"x":[0.293],"y":[0.668]},"s":[-9.642],"t":186},{"i":{"x":[0.554],"y":[0.972]},"o":{"x":[0.221],"y":[0.033]},"s":[-12.279],"t":244},{"s":[-10],"t":330}]},"s":{"a":0,"ix":6,"k":[-35,35,100]}},"nm":"striped fish","op":502,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.644,1.367],[-1.367,-2.644],[2.644,-1.367],[1.367,2.644]],"o":[[2.644,-1.367],[1.367,2.644],[-2.644,1.367],[-1.367,-2.644]],"v":[[-278.01,-464.082],[-270.748,-461.771],[-273.06,-454.508],[-280.322,-456.82]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 18","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309.701},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":361.297},{"s":[0],"t":371.615234375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"dots 18","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.397,1.24],[-1.24,-2.397],[2.397,-1.24],[1.24,2.397]],"o":[[2.397,-1.24],[1.24,2.397],[-2.397,1.24],[-1.24,-2.397]],"v":[[-271.779,-452.636],[-265.195,-450.54],[-267.29,-443.955],[-273.875,-446.051]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 12","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":334.125},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":346.16},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":358.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":370.242},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":382.277},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"dots 12","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.637,1.363],[-1.363,-2.637],[2.637,-1.363],[1.363,2.637]],"o":[[2.637,-1.363],[1.363,2.637],[-2.637,1.363],[-1.363,-2.637]],"v":[[-269.885,-474.475],[-262.643,-472.169],[-264.948,-464.927],[-272.19,-467.232]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 17","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":117.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":126.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":135.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":168.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":177.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309.701},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":320.709},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":331.715},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":353.73},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":364.734},{"s":[0],"t":375.744140625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"dots 17","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.41,1.246],[-1.246,-2.41],[2.41,-1.246],[1.246,2.41]],"o":[[2.41,-1.246],[1.246,2.41],[-2.41,1.246],[-1.246,-2.41]],"v":[[-258.674,-446.065],[-252.052,-443.958],[-254.16,-437.336],[-260.781,-439.444]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 11","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":117.748},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":126.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":135.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":168.746},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":177.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":186.459},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":354.074},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":367.488},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":380.902},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"dots 11","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.805,1.451],[-1.451,-2.805],[2.805,-1.451],[1.451,2.805]],"o":[[2.805,-1.451],[1.451,2.805],[-2.805,1.451],[-1.451,-2.805]],"v":[[-262.366,-484.789],[-254.66,-482.337],[-257.113,-474.63],[-264.819,-477.083]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 16","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":313.828},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.729},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.627},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":352.525},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":365.424},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.744},{"s":[0],"t":386.0625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"dots 16","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.784,1.44],[-1.44,-2.784],[2.784,-1.44],[1.44,2.784]],"o":[[2.784,-1.44],[1.44,2.784],[-2.784,1.44],[-1.44,-2.784]],"v":[[-242.346,-444.75],[-234.699,-442.316],[-237.133,-434.67],[-244.78,-437.103]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 10","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":333.777},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":341.348},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":348.914},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":364.734},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":380.561},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"dots 10","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.607,1.348],[-1.348,-2.607],[2.607,-1.348],[1.348,2.607]],"o":[[2.607,-1.348],[1.348,2.607],[-2.607,1.348],[-1.348,-2.607]],"v":[[-331.273,-454.413],[-324.112,-452.133],[-326.391,-444.972],[-333.552,-447.252]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 15","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":336.531},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":346.85},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":375.199},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390.953},{"s":[0],"t":400}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"dots 15","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.896,1.497],[-1.497,-2.896],[2.896,-1.497],[1.497,2.896]],"o":[[2.896,-1.497],[1.497,2.896],[-2.896,1.497],[-1.497,-2.896]],"v":[[-329.246,-442.538],[-321.292,-440.007],[-323.824,-432.052],[-331.778,-434.584]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 9","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":311.766},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":324.838},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":344.787},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":354.014},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":361.297},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":371.615},{"s":[0],"t":390.19140625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"dots 9","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.823,1.46],[-1.46,-2.823],[2.823,-1.46],[1.46,2.823]],"o":[[2.823,-1.46],[1.46,2.823],[-2.823,1.46],[-1.46,-2.823]],"v":[[-322.06,-463.812],[-314.305,-461.344],[-316.773,-453.589],[-324.528,-456.057]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 14","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":330.34},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":339.279},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":348.229},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":357.17},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":366.109},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.059},{"s":[0],"t":384}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":9,"mn":"ADBE Vector Group","nm":"dots 14","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.459,1.271],[-1.271,-2.459],[2.459,-1.271],[1.271,2.459]],"o":[[2.459,-1.271],[1.271,2.459],[-2.459,1.271],[-1.271,-2.459]],"v":[[-317.719,-435.153],[-310.965,-433.003],[-313.114,-426.249],[-319.868,-428.399]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 8","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.9},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":333.777},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":340.658},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":361.297},{"s":[0],"t":371.615234375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":10,"mn":"ADBE Vector Group","nm":"dots 8","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.93,1.515],[-1.515,-2.93],[2.93,-1.515],[1.515,2.93]],"o":[[2.93,-1.515],[1.515,2.93],[-2.93,1.515],[-1.515,-2.93]],"v":[[-312.483,-475.015],[-304.435,-472.453],[-306.996,-464.405],[-315.045,-466.966]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 13","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":329.307},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":356.137},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":369.553},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":382.967},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":11,"mn":"ADBE Vector Group","nm":"dots 13","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.807,1.452],[-1.452,-2.807],[2.807,-1.452],[1.452,2.807]],"o":[[2.807,-1.452],[1.452,2.807],[-2.807,1.452],[-1.452,-2.807]],"v":[[-306.368,-430.793],[-298.656,-428.339],[-301.111,-420.626],[-308.823,-423.081]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 7","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":320.02},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":329.992},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.973},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":349.945},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":362.672},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":375.4},{"s":[0],"t":388.126953125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":12,"mn":"ADBE Vector Group","nm":"dots 7","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.748,1.421],[-1.421,-2.748],[2.748,-1.421],[1.421,2.748]],"o":[[2.748,-1.421],[1.421,2.748],[-2.748,1.421],[-1.421,-2.748]],"v":[[-383.108,-444.271],[-375.559,-441.868],[-377.962,-434.319],[-385.511,-436.722]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":313.828},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.9},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.969},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":353.041},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":366.113},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":379.182},{"s":[0],"t":392.25390625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":13,"mn":"ADBE Vector Group","nm":"dots 5","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.766,1.43],[-1.43,-2.766],[2.766,-1.43],[1.43,2.766]],"o":[[2.766,-1.43],[1.43,2.766],[-2.766,1.43],[-1.43,-2.766]],"v":[[-384.125,-430.303],[-376.527,-427.885],[-378.945,-420.287],[-386.543,-422.705]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 6","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":110.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":119.52},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":128.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":161.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":170.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":179.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":214.662},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":223.516},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":232.373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":331.029},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":339.969},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":348.914},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":357.859},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":372.99},{"s":[0],"t":388.126953125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":14,"mn":"ADBE Vector Group","nm":"dots 6","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.6,1.345],[-1.345,-2.6],[2.6,-1.345],[1.345,2.6]],"o":[[2.6,-1.345],[1.345,2.6],[-2.6,1.345],[-1.345,-2.6]],"v":[[-373.851,-454.409],[-366.708,-452.136],[-368.982,-444.992],[-376.125,-447.266]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":334.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":359.232},{"s":[0],"t":367.48828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":15,"mn":"ADBE Vector Group","nm":"dots 3","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.597,1.343],[-1.343,-2.597],[2.597,-1.343],[1.343,2.597]],"o":[[2.597,-1.343],[1.343,2.597],[-2.597,1.343],[-1.343,-2.597]],"v":[[-370.848,-424.403],[-363.714,-422.133],[-365.985,-414.998],[-373.119,-417.269]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":115.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":124.832},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":133.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":166.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":175.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":184.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":219.975},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":228.83},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":237.688},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":309},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":317.957},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":334.467},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":350.979},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":361.297},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":371.615},{"s":[0],"t":394.318359375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":16,"mn":"ADBE Vector Group","nm":"dots 4","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.944,1.522],[-1.522,-2.944],[2.944,-1.522],[1.522,2.944]],"o":[[2.944,-1.522],[1.522,2.944],[-2.944,1.522],[-1.522,-2.944]],"v":[[-364.496,-466.04],[-356.41,-463.466],[-358.983,-455.38],[-367.07,-457.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":315.893},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":326.211},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":336.531},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":363.361},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":372.391},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":381.42},{"s":[0],"t":396.3828125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":17,"mn":"ADBE Vector Group","nm":"dots","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-2.68,1.386],[-1.386,-2.68],[2.68,-1.386],[1.386,2.68]],"o":[[2.68,-1.386],[1.386,2.68],[-2.68,1.386],[-1.386,-2.68]],"v":[[-358.249,-418.562],[-350.888,-416.219],[-353.231,-408.858],[-360.591,-411.201]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":121.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":130.146},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":139},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":172.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":181.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":190},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":225.289},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":234.143},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":243},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":322.084},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":332.402},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":342.723},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":353.041},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":363.361},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":373.68},{"s":[0],"t":384}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":18,"mn":"ADBE Vector Group","nm":"dots 2","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-0.787,4.783],[-3.53,3.322],[-0.752,0.191],[-1.009,-1.757],[-0.469,-5.598],[0.123,-0.319],[0.443,-0.254],[5.377,-2.171]],"o":[[-0.264,-4.84],[0.787,-4.783],[0.565,-0.532],[1.964,-0.499],[2.797,4.872],[0.029,0.341],[-0.184,0.476],[-5.031,2.884],[0,0]],"v":[[-268.562,-391.745],[-268.301,-406.254],[-262.051,-419.097],[-260.105,-420.326],[-255.349,-417.283],[-251.552,-401.011],[-251.62,-399.996],[-252.718,-398.975],[-268.356,-391.382]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-3.975,8.311],[-2.071,0.172],[-1.196,-1.654],[0.251,-6.78],[0.168,-0.307],[0.439,-0.211],[5.253,-2.343],[0.466,0.522]],"o":[[-0.343,-9.206],[0.896,-1.875],[2.034,-0.169],[3.976,5.497],[-0.013,0.35],[-0.234,0.427],[-5.186,2.487],[-0.639,0.285],[0,0]],"v":[[-303.201,-377.675],[-299.375,-404.766],[-295.016,-408.806],[-290.098,-405.644],[-284.296,-386.523],[-284.5,-385.503],[-285.64,-384.628],[-301.299,-377.383],[-303.254,-377.374]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-4.199,9.826],[-1.482,0.717],[-1.691,-1.506],[-0.941,-4.257],[0.521,-4.392],[0.3,-0.433],[0.422,-0.251],[6.634,-0.542]],"o":[[-0.985,-10.584],[0.632,-1.478],[2.058,-0.995],[3.317,2.954],[0.956,4.324],[-0.061,0.517],[-0.275,0.397],[-5.664,3.373],[0,0]],"v":[[-348.784,-363.5],[-343.867,-394.716],[-340.962,-398.475],[-334.688,-396.895],[-328.963,-385.294],[-327.977,-372.124],[-328.422,-370.639],[-329.548,-369.721],[-348.342,-363.739]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-2.124,7.058],[-4.732,1.899],[-1.513,-0.992],[-0.554,-1.002],[0.458,-8.291],[0.277,-0.457],[0.394,-0.233],[2.439,-0.322],[5.037,-0.665]],"o":[[0.451,-7.357],[1.469,-4.883],[1.679,-0.674],[0.957,0.628],[4.019,7.266],[-0.029,0.534],[-0.237,0.391],[-2.119,1.25],[-5.037,0.665],[0,0]],"v":[[-390.46,-353.652],[-385.747,-375.201],[-377.547,-387.47],[-372.333,-387.239],[-370.162,-384.622],[-366.949,-360.269],[-367.292,-358.72],[-368.311,-357.822],[-375.384,-355.902],[-390.495,-353.906]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":19,"mn":"ADBE Vector Group","nm":"stripes","np":5,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[4.818,-7.964],[-0.071,-0.543],[-0.388,-0.372],[-12.193,-0.364]],"o":[[-5.794,7.284],[-0.283,0.468],[0.07,0.533],[8.803,8.444],[0,0]],"v":[[-260.836,-478.945],[-276.775,-456.042],[-277.279,-454.514],[-276.418,-453.19],[-243.427,-439.348]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[6.274,-9.991],[-9.235,-4.045]],"o":[[-8.82,7.836],[7.735,6.466],[0,0]],"v":[[-309.475,-468.673],[-332.269,-441.751],[-306.642,-425.877]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.256,-11.093],[-10.904,-5.377]],"o":[[-9.424,10.119],[10.904,5.377],[0,0]],"v":[[-361.705,-460.818],[-388.252,-428.968],[-355.539,-412.837]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.53,4.849]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.718,-466.198]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.258,-2.013]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.933,-465.562]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.249,2.117]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.662,-476.038]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.347,-0.273]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.73,-470.067]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-23.035,8.671]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.194,-477.839]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.385,3.343]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.131,-460.877]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-21.53,4.849]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-190.718,-466.198]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.258,-2.013]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.933,-465.562]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.249,2.117]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.662,-476.038]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-22.347,-0.273]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.73,-470.067]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-23.035,8.671]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-193.194,-477.839]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-41.042,8.339],[-9.479,2.517],[-24.385,3.343]],"o":[[41.042,-8.339],[9.611,-1.953],[21.601,-5.735],[0,0]],"v":[[-407.807,-426.471],[-284.68,-451.489],[-255.971,-457.914],[-189.131,-460.877]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[1.097,-1.636],[0.372,-2.467],[-1.219,-1.825],[-1.689,0.394],[-1.224,1.71],[-0.272,1.637],[1.022,1.762],[1.499,0.806]],"o":[[-1.559,-0.417],[-1.222,1.822],[-0.372,2.467],[1.182,1.769],[1.689,-0.394],[0.842,-1.176],[0.37,-2.226],[-1.022,-1.762],[0,0]],"v":[[-448.595,-443.882],[-452.744,-441.185],[-455.36,-434.713],[-454.154,-427.647],[-449.429,-425.61],[-444.988,-429.06],[-443.138,-433.282],[-444.347,-439.673],[-448.306,-443.422]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":20,"mn":"ADBE Vector Group","nm":"strokes","np":6,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-211.064,-418.57],[-432,-353],[-515.836,-410.438]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-103.215,-26.128],[27.732,-7.206],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[103.215,26.127],[-31.343,8.144],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-218.019,-413.46],[-432,-353],[-515.836,-410.438]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-211.064,-418.57],[-432,-353],[-515.836,-410.438]]}],"t":449},{"s":[{"c":true,"i":[[-14.908,5.03],[5.662,2.507],[-35,13],[-103.215,-26.128],[27.732,-7.206],[78,9],[-0.532,22.773]],"o":[[0,0],[-12.267,-5.432],[35,-13],[103.215,26.127],[-31.343,8.144],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-218.019,-413.46],[-432,-353],[-515.836,-410.438]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":21,"mn":"ADBE Vector Group","nm":"body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-209.668,-418.874],[-432,-353],[-515.836,-410.438]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-103.215,-26.128],[27.743,-7.162],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[103.215,26.127],[-27.743,7.162],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-219.86,-411.085],[-432,-353],[-515.836,-410.438]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106,-10],[25,-14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106,10],[-25,14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-209,-491],[-209,-421],[-432,-353],[-521.357,-405.581]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-104.217,-21.79],[26.409,-11.117],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[104.217,21.79],[-26.409,11.117],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-205.97,-485.639],[-213.798,-416.078],[-432,-353],[-521.357,-405.581]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.447,-2.24],[23.912,-15.786],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.447,2.24],[-23.912,15.786],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-213.121,-492.821],[-208.014,-423.007],[-432,-353],[-521.357,-405.581]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-105.598,-13.606],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[105.598,13.606],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-507.135,-421.982],[-470,-460],[-207.283,-488.834],[-209.668,-418.874],[-432,-353],[-521.357,-405.581]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-106.44,-2.573],[25.462,-13.14],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[106.44,2.573],[-25.462,13.14],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-212.6,-494.682],[-209.668,-418.874],[-432,-353],[-515.836,-410.438]]}],"t":449},{"s":[{"c":true,"i":[[-14.908,5.03],[12,6],[-35,13],[-103.215,-26.128],[27.743,-7.162],[78,9],[-0.532,22.773]],"o":[[0,0],[-12,-6],[35,-13],[103.215,26.127],[-27.743,7.162],[-78,-9],[0,0]],"v":[[-483,-409],[-510.501,-413.939],[-470,-460],[-204.316,-481.606],[-219.86,-411.085],[-432,-353],[-515.836,-410.438]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":22,"mn":"ADBE Vector Group","nm":"body","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.99,-10.632]],"o":[[19.349,-0.768],[0,0]],"v":[[-167.847,-446.693],[-113.237,-439.755]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.429,3.808]],"o":[[18.877,-4.315],[0,0]],"v":[[-168.481,-461.555],[-113.527,-464.785]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.161,-6.546]],"o":[[19.23,-2.273],[0,0]],"v":[[-166.242,-452.975],[-116.603,-447.66]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.252,8.444]],"o":[[18.89,-4.256],[0,0]],"v":[[-168.058,-463.277],[-114.861,-480.077]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.401,-7.305]],"o":[[19.364,0.042],[0,0]],"v":[[-167.854,-441.1],[-123.549,-431.15]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-18.348,-0.263]],"o":[[18.348,0.263],[0,0]],"v":[[-166.761,-456.561],[-111.717,-455.773]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.99,-10.632]],"o":[[19.349,-0.768],[0,0]],"v":[[-167.847,-446.693],[-113.237,-439.755]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.429,3.808]],"o":[[18.877,-4.315],[0,0]],"v":[[-168.481,-461.555],[-113.527,-464.785]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.161,-6.546]],"o":[[19.23,-2.273],[0,0]],"v":[[-166.242,-452.975],[-116.603,-447.66]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.252,8.444]],"o":[[18.89,-4.256],[0,0]],"v":[[-168.058,-463.277],[-114.861,-480.077]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-14.401,-7.305]],"o":[[19.364,0.042],[0,0]],"v":[[-167.854,-441.1],[-123.549,-431.15]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.863,0.907],[-8.017,-2.205]],"o":[[7.749,1.617],[8.26,-0.952],[0,0]],"v":[[-163.284,-458.837],[-140.399,-462.045],[-114.929,-458.839]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.562,2.338],[-9.414,5.006]],"o":[[7.914,0.163],[7.944,-2.456],[0,0]],"v":[[-166.231,-474.331],[-142.231,-476.936],[-119.091,-486.061]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.769,1.516],[-10.394,-2.79]],"o":[[7.851,1.008],[8.161,-1.593],[0,0]],"v":[[-162.639,-465.438],[-139.422,-468.259],[-115.254,-465.481]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-6.528,4.476],[-6.59,4.181]],"o":[[7.913,0.188],[8.713,-5.974],[0,0]],"v":[[-165.768,-476.046],[-144.542,-483.752],[-124.93,-499.087]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.259,-1.345],[-7.729,-1.079]],"o":[[7.674,1.939],[10.388,1.924],[0,0]],"v":[[-162.788,-453.043],[-140.381,-455.846],[-118.919,-452.158]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.713,1.78],[-8.214,-1.295]],"o":[[7.881,0.74],[8.102,-1.87],[0,0]],"v":[[-163.585,-469.139],[-139.992,-470.712],[-115.533,-474.547]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.863,0.907],[-8.017,-2.205]],"o":[[7.749,1.617],[8.26,-0.952],[0,0]],"v":[[-163.284,-458.837],[-140.399,-462.045],[-114.929,-458.839]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.562,2.338],[-9.414,5.006]],"o":[[7.914,0.163],[7.944,-2.456],[0,0]],"v":[[-166.231,-474.331],[-142.231,-476.936],[-119.091,-486.061]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-7.769,1.516],[-10.394,-2.79]],"o":[[7.851,1.008],[8.161,-1.593],[0,0]],"v":[[-162.639,-465.438],[-139.422,-468.259],[-115.254,-465.481]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-6.528,4.476],[-6.59,4.181]],"o":[[7.913,0.188],[8.713,-5.974],[0,0]],"v":[[-165.768,-476.046],[-144.542,-483.752],[-124.93,-499.087]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-7.259,-1.345],[-7.729,-1.079]],"o":[[7.674,1.939],[10.388,1.924],[0,0]],"v":[[-162.788,-453.043],[-140.381,-455.846],[-118.919,-452.158]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.077,0.448]],"o":[[20.262,-10.908],[0,0]],"v":[[-168.931,-471.552],[-110.098,-483.893]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-17.23,11.389]],"o":[[22.344,-7.208],[0,0]],"v":[[-174.121,-485.79],[-118.563,-508.747]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-22.777,-1.154]],"o":[[22.987,-4.778],[0,0]],"v":[[-169.259,-477.675],[-117.996,-487.479]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-8.642,11.641]],"o":[[22.367,-7.138],[0,0]],"v":[[-173.623,-487.53],[-137.079,-515.404]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-10.441,-2.265]],"o":[[19.115,-8.372],[0,0]],"v":[[-167.898,-465.983],[-117.618,-472.46]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-19.901,2.69]],"o":[[19.516,-4.733],[0,0]],"v":[[-170.618,-481.143],[-113.533,-499.985]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-20.077,0.448]],"o":[[20.262,-10.908],[0,0]],"v":[[-168.931,-471.552],[-110.098,-483.893]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-17.23,11.389]],"o":[[22.344,-7.208],[0,0]],"v":[[-174.121,-485.79],[-118.563,-508.747]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-22.777,-1.154]],"o":[[22.987,-4.778],[0,0]],"v":[[-169.259,-477.675],[-117.996,-487.479]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-8.642,11.641]],"o":[[22.367,-7.138],[0,0]],"v":[[-173.623,-487.53],[-137.079,-515.404]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-10.441,-2.265]],"o":[[19.115,-8.372],[0,0]],"v":[[-167.898,-465.983],[-117.618,-472.46]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[-141.167,-477.879]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[-141.167,-477.879]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.276,3.609],[29.749,7.044],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-36.044,-24.654],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-16.175,9.378],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.737,-2.819],[30.537,1.449],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.524,-3.203],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-28.688,14.097],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.595,5.152],[-20.896,-2.154],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.971,2.281],[30.207,4.705],[4.005,16.513]],"o":[[13.503,-10.573],[16.171,-5.709],[6.352,0.655],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.041,-11.86],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-147.448,-510.108],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.722,8.816],[-13.537,16.063],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.677,-2.938],[30.532,1.544],[5.697,16.008]],"o":[[12.332,-11.917],[14.096,-9.768],[4.115,-4.883],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-29.511,15.273],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-155.404,-521.745],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.033,3.687],[-20.916,-1.945],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.549,3.172],[29.428,8.281],[2.003,16.873]],"o":[[14.669,-8.884],[16.656,-4.085],[6.358,0.591],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-28.849,-16.49],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-141.89,-491.688],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-16.703,3.889],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.22,-1.448],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-151.674,-511.728],[-105.303,-528.435],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.276,3.609],[29.749,7.044],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-36.044,-24.654],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-16.175,9.378],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.737,-2.819],[30.537,1.449],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.524,-3.203],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-28.688,14.097],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.595,5.152],[-20.896,-2.154],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.971,2.281],[30.207,4.705],[4.005,16.513]],"o":[[13.503,-10.573],[16.171,-5.709],[6.352,0.655],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.041,-11.86],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-147.448,-510.108],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.722,8.816],[-13.537,16.063],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.677,-2.938],[30.532,1.544],[5.697,16.008]],"o":[[12.332,-11.917],[14.096,-9.768],[4.115,-4.883],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-29.511,15.273],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-155.404,-521.745],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-15.033,3.687],[-20.916,-1.945],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.549,3.172],[29.428,8.281],[2.003,16.873]],"o":[[14.669,-8.884],[16.656,-4.085],[6.358,0.591],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-28.849,-16.49],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-141.89,-491.688],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.152941182256,0.466666698456,0.929411828518,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":5}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":83.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":94},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":104.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":114.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":124.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":134.801},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":390},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":400.201},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":410.4},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":420.602},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":430.801},{"s":[0],"t":442}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-17.113,-1.114],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.372,0.415],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-148.179,-520.36],[-99.054,-533.075],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":85},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.411,3.402],[30.55,3.439],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-32.795,-20.619],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":122},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-15.98,10.794],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.824,-2.635],[30.661,-2.241],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.292,-3.574],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-32.226,14.584],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":155},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.263,7.82],[-18.6,-0.177],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.948,2.341],[30.725,1.049],[4.005,16.513]],"o":[[13.503,-10.573],[15.263,-7.82],[6.386,0.061],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.806,-12.519],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-145.97,-509.502],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":193},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.663,11.565],[-10.61,15.277],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.706,-2.881],[30.668,-2.145],[5.697,16.008]],"o":[[12.332,-11.917],[12.663,-11.565],[3.643,-5.245],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-30.512,15.406],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-153.819,-521.55],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":233},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.96,6.276],[-18.6,0.01],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.517,3.228],[30.379,4.713],[2.003,16.873]],"o":[[14.669,-8.884],[15.96,-6.276],[6.386,-0.003],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-29.504,-17.259],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-140.48,-490.939],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":270},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.988,8.335],[-16.703,3.889],[-5.373,-3.45],[-0.325,-6.378],[1.556,-8.315],[-4.554,-9.947],[0.793,-3.386],[6.326,-0.918],[31.449,6.016],[4.565,16.367]],"o":[[13.134,-11.027],[14.988,-8.335],[6.22,-1.448],[5.373,3.45],[0.431,8.448],[-2.012,10.753],[1.448,3.162],[-1.458,6.224],[-31.688,4.597],[-2.685,-16.778],[0,0]],"v":[[-189.538,-489.9],[-151.674,-511.728],[-105.303,-528.435],[-80.845,-527.823],[-71.001,-512.225],[-78.119,-488.054],[-70.044,-456.83],[-67.995,-446.802],[-83.34,-437.409],[-178.93,-439.558],[-189.817,-489.328]]}],"t":301},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.826,6.607],[-16.882,-3.02],[-4.954,-4.03],[0.39,-6.374],[2.476,-8.089],[-3.413,-10.394],[1.167,-3.276],[5.411,3.402],[30.55,3.439],[2.706,16.775]],"o":[[14.285,-9.489],[15.826,-6.607],[6.286,1.125],[4.954,4.03],[-0.516,8.443],[-3.202,10.461],[1.085,3.304],[-2.145,6.022],[-32.795,-20.619],[-0.792,-16.973],[0,0]],"v":[[-186.753,-482.37],[-142.223,-503.014],[-85.532,-505.188],[-68.024,-497.932],[-67.854,-483.436],[-77.63,-460.213],[-73.097,-428.282],[-72.183,-418.087],[-88.481,-410.469],[-181.841,-431.158],[-187.094,-481.833]]}],"t":338},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-14.34,9.406],[-15.98,10.794],[-6.085,-1.937],[-1.97,-6.074],[-0.656,-8.434],[-6.98,-8.424],[-0.113,-3.476],[5.824,-2.635],[30.661,-2.241],[5.747,15.99]],"o":[[12.295,-11.956],[14.34,-9.406],[5.292,-3.574],[6.085,1.937],[2.609,8.047],[0.848,10.907],[2.219,2.678],[0.208,6.389],[-32.226,14.584],[-3.902,-16.537],[0,0]],"v":[[-193.63,-493.143],[-149.953,-515.65],[-107.597,-545.16],[-88.648,-544.814],[-83.185,-531.386],[-83.785,-506.196],[-67.881,-478.138],[-63.3,-468.986],[-75.68,-455.932],[-179.378,-443.71],[-193.866,-492.553]]}],"t":371},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-15.263,7.82],[-18.6,-0.177],[-5.457,-3.317],[-0.483,-6.368],[1.35,-8.351],[-4.798,-9.831],[0.709,-3.405],[5.948,2.341],[30.725,1.049],[4.005,16.513]],"o":[[13.503,-10.573],[15.263,-7.82],[6.386,0.061],[5.457,3.317],[0.64,8.435],[-1.746,10.799],[1.525,3.126],[-1.304,6.258],[-31.806,-12.519],[-2.112,-16.86],[0,0]],"v":[[-187.87,-487.071],[-145.97,-509.502],[-92.687,-515.72],[-74.354,-510.919],[-72.209,-496.581],[-78.729,-472.242],[-69.884,-441.227],[-67.589,-431.253],[-89.001,-419.582],[-178.983,-436.397],[-188.168,-486.51]]}],"t":409},{"i":{"x":0.55,"y":1},"o":{"x":0.45,"y":0},"s":[{"c":false,"i":[[0,0],[-12.663,11.565],[-10.61,15.277],[-6.386,0.068],[-3.775,-5.151],[-3.267,-7.803],[-9.269,-5.811],[-1.197,-3.265],[5.706,-2.881],[30.668,-2.145],[5.697,16.008]],"o":[[12.332,-11.917],[12.663,-11.565],[3.643,-5.245],[6.386,-0.068],[5,6.823],[4.224,10.091],[2.947,1.847],[2.2,6.001],[-30.512,15.406],[-3.85,-16.549],[0,0]],"v":[[-193.108,-494.944],[-153.819,-521.55],[-129.028,-550.681],[-112.423,-556.108],[-103.025,-545.07],[-95.698,-520.961],[-71.8,-499.305],[-64.58,-492.049],[-77.866,-474.575],[-179.01,-445.466],[-193.346,-494.354]]}],"t":449},{"s":[{"c":false,"i":[[0,0],[-15.96,6.276],[-18.6,0.01],[-4.911,-4.081],[0.456,-6.369],[2.561,-8.062],[-3.304,-10.429],[1.201,-3.264],[5.517,3.228],[30.379,4.713],[2.003,16.873]],"o":[[14.669,-8.884],[15.96,-6.276],[6.386,-0.003],[4.911,4.081],[-0.605,8.438],[-3.312,10.426],[1.05,3.315],[-2.207,5.999],[-29.504,-17.259],[-0.082,-16.991],[0,0]],"v":[[-185.252,-477.536],[-140.48,-490.939],[-89.168,-495.827],[-72.477,-487.527],[-72.458,-473.03],[-82.478,-449.911],[-82.103,-422.24],[-81.296,-412.036],[-104.249,-403.555],[-182.485,-426.164],[-185.615,-477.014]]}],"t":477}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":23,"mn":"ADBE Vector Group","nm":"tail","np":3,"ty":"gr"}],"sr":1,"st":22,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":27,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1173.598,40.967,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,1.902,0],"t":0,"ti":[0.238,-0.119,0],"to":[0,-1.19,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-5.241,0],"t":59.881,"ti":[-0.119,0.119,0],"to":[-0.238,0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1191.375,2.616,0],"t":119.76,"ti":[-0.238,0.595,0],"to":[0.119,-0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.232,-5.955,0],"t":179.637,"ti":[0.238,-0.238,0],"to":[0.238,-0.595,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-0.955,0],"t":239.518,"ti":[0.119,0.119,0],"to":[-0.238,0.238,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1190.661,-4.527,0],"t":299.396,"ti":[-0.119,0.119,0],"to":[-0.119,-0.119,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1190.661,-1.67,0],"t":359.277,"ti":[-0.119,-0.595,0],"to":[0.119,-0.119,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,-5.241,0],"t":419.156,"ti":[0.238,-0.357,0],"to":[0.119,0.595,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[-1189.947,1.902,0],"t":479,"ti":[0.238,0.833,0],"to":[-0.238,0.357,0]},{"s":[-1191.375,-3.098,0],"t":479.037109375}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[14],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[12.5],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[13],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[14],"t":479},{"s":[16],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Tank","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.226,"y":0.156},"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[-0.47,-7.794],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[3.905,22.436]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[0.515,10.232],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-2.125,-12.101]],"v":[[-1103.779,-47.018],[-1150.046,-23.44],[-1140.824,-12.755],[-1111.02,-27.655],[-1093.199,-18.138],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1076.369,-24.419]]}],"t":17},{"i":{"x":0.7,"y":1},"o":{"x":1,"y":1},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[-0.47,-7.794],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[3.905,22.436]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[0.515,10.232],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-2.125,-12.101]],"v":[[-1103.779,-47.018],[-1150.046,-23.44],[-1140.824,-12.755],[-1111.02,-27.655],[-1093.199,-18.138],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1076.369,-24.419]]}],"t":62},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"s":[{"c":true,"i":[[16.159,1.124],[17.409,-0.665],[-0.995,-0.213],[-6.234,1.485],[0.427,-7.487],[6.349,-7.978],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.611,6.958],[1.856,22.561]],"o":[[-20.605,-1.433],[-1.017,0.039],[12.676,2.713],[11.57,-2.756],[-0.59,10.336],[-6.516,8.188],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[9.649,-14.56],[-0.957,-11.631]],"v":[[-1093.373,-51.23],[-1141.746,-32.091],[-1133.475,-20.654],[-1102.772,-32.445],[-1085.944,-21.623],[-1109.41,3.533],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.453,16.179],[-1068.65,-26.77]]}],"t":90},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[14.773,-3.009],[15.491,-4.373],[-0.903,0.092],[-5.633,2.521],[-3.699,-5.792],[3.19,-8.191],[2.303,-13.237],[-3.222,0.337],[-0.635,3.176],[-2.254,7.153],[6.899,16.744]],"o":[[-18.713,3.716],[-0.914,0.266],[11.306,-0.966],[10.226,-4.434],[2.543,7.521],[-3.3,8.342],[-0.387,2.788],[3.222,-0.337],[1.271,-6.352],[9.491,-13.88],[-5.38,-9.122]],"v":[[-1110.694,-46.701],[-1150.381,-22.628],[-1139.864,-12.239],[-1111.677,-29.121],[-1095.789,-20.914],[-1114.487,6.298],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1100.516,14.095],[-1079.818,-31.3]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0.8,"y":0.8},"s":[{"c":true,"i":[[11.893,-11.59],[11.506,-12.071],[-0.713,0.725],[-4.386,4.67],[-12.267,-2.272],[-3.369,-8.635],[-0.592,-8.821],[-3.222,0.337],[-0.635,3.176],[2.641,7.559],[17.369,4.666]],"o":[[-14.784,14.408],[-0.702,0.736],[8.46,-8.605],[7.435,-7.917],[9.048,1.676],[3.379,8.66],[0.19,2.836],[3.222,-0.337],[1.271,-6.352],[-5.157,-14.761],[-14.565,-3.912]],"v":[[-1180.132,-13.732],[-1203.483,12.613],[-1188.302,20.827],[-1169.568,1.139],[-1141.384,-7.459],[-1125.029,12.041],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1106.877,9.767],[-1138.181,-25.116]]}],"t":142},{"i":{"x":0.62,"y":0.62},"o":{"x":0.45,"y":0.45},"s":[{"c":true,"i":[[11.893,-11.59],[11.506,-12.071],[-0.713,0.725],[-4.386,4.67],[-11.16,0.456],[-3.369,-8.635],[-0.592,-8.821],[-3.222,0.337],[-0.635,3.176],[2.641,7.559],[15.075,1.637]],"o":[[-14.784,14.408],[-0.702,0.736],[8.46,-8.605],[7.435,-7.917],[9.194,-0.375],[3.379,8.66],[0.19,2.836],[3.222,-0.337],[1.271,-6.352],[-5.157,-14.761],[-14.993,-1.628]],"v":[[-1190.761,-2.477],[-1212.088,20.714],[-1196.907,28.928],[-1180.197,12.395],[-1149.015,0.35],[-1125.029,12.041],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1106.877,9.767],[-1145.812,-17.307]]}],"t":204},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[14.773,-3.009],[15.491,-4.373],[-0.903,0.092],[-5.633,2.521],[-3.699,-5.792],[3.19,-8.191],[2.303,-13.237],[-3.222,0.337],[-0.635,3.176],[-2.254,7.153],[6.899,16.744]],"o":[[-18.713,3.716],[-0.914,0.266],[11.306,-0.966],[10.226,-4.434],[2.543,7.521],[-3.3,8.342],[-0.387,2.788],[3.222,-0.337],[1.271,-6.352],[4.836,-14.625],[-5.38,-9.122]],"v":[[-1121.575,-39.041],[-1161.814,-17.56],[-1151.297,-7.171],[-1124.484,-21.528],[-1107.222,-15.846],[-1114.487,6.298],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1100.516,14.095],[-1091.251,-26.232]]}],"t":235},{"i":{"x":0.833,"y":0.833},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[0.424,-7.797],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[1.348,22.734]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[-0.658,10.224],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-0.727,-12.264]],"v":[[-1096.637,-50.072],[-1142.905,-26.494],[-1133.683,-15.81],[-1103.879,-30.71],[-1088.032,-23.044],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1070.594,-27.36]]}],"t":274},{"i":{"x":0.833,"y":1},"o":{"x":0.35,"y":0.35},"s":[{"c":true,"i":[[16.196,-0.298],[17.288,-2.157],[-1.01,-0.127],[-6.726,2.164],[0.424,-7.797],[6.798,-7.556],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-4.513,6.428],[1.348,22.734]],"o":[[-21.185,0.398],[-1.01,0.126],[12.863,1.614],[11.287,-3.679],[-0.658,10.224],[-7.707,8.03],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[10.979,-14.26],[-0.727,-12.264]],"v":[[-1096.637,-50.072],[-1142.905,-26.494],[-1133.683,-15.81],[-1103.879,-30.71],[-1088.032,-23.044],[-1107.977,2.771],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1097.138,16.259],[-1070.594,-27.36]]}],"t":305},{"i":{"x":0.731,"y":1},"o":{"x":0.226,"y":0.156},"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":335},{"i":{"x":0.55,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[16.093,-1.845],[11.125,-8.191],[-0.914,0.447],[-6.687,1.433],[-5.573,-5.245],[-0.129,-7.479],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-1.152,8.267],[5.449,11.749]],"o":[[-20.539,2.355],[-0.819,0.603],[14.003,-6.85],[11.055,-2.368],[5.006,4.712],[0.18,10.463],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[1.969,-14.129],[-4.595,-9.908]],"v":[[-1138.584,-33.109],[-1178.883,-14.629],[-1168.792,-1.954],[-1143.238,-13.056],[-1122.45,-9.265],[-1117.496,6.947],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1099.381,16.15],[-1103.426,-14.879]]}],"t":387},{"s":[{"c":true,"i":[[16.189,-0.55],[17.288,-2.157],[-1.01,-0.127],[-12.162,3.423],[-2.606,-10.311],[10.601,-3.992],[3.697,-15.364],[-3.222,0.337],[-0.635,3.176],[-3.685,1.943],[4.904,23.433]],"o":[[-25.696,0.872],[-1.01,0.126],[12.863,1.614],[11.264,-3.17],[2.337,9.249],[-17.784,6.696],[-0.665,2.765],[3.222,-0.337],[1.271,-6.352],[22.237,-11.724],[-3.586,-17.133]],"v":[[-1086.781,-55.194],[-1130.649,-28.594],[-1121.427,-17.909],[-1089.709,-37.184],[-1070.818,-26.143],[-1095.856,-3.676],[-1121.458,33.031],[-1111.425,37.042],[-1103.062,34.232],[-1094.474,16.935],[-1053.633,-29.618]]}],"t":450}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.866666674614,0.866666674614,0.86274510622,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-78.686,-16.815]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tank hose","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.068,0.243],[4.75,-0.388],[2.069,-7.9],[-2.31,-4.314],[2.841,-15.555],[6.064,-5.896],[-2.385,-5.098],[-7.227,0.444],[-3.119,1.172],[-2.111,6.054],[-0.222,9.997],[2.833,11.369],[2.563,1.932]],"o":[[-4.285,-0.503],[-4.594,0.376],[-0.504,1.924],[6.477,12.098],[-1.871,10.244],[-1.5,1.458],[2.385,5.098],[4.954,-0.304],[6.001,-2.256],[3.656,-10.484],[0.231,-10.374],[-0.776,-3.114],[-1.662,-1.253]],"v":[[-1041.765,-2.261],[-1045.242,-2.633],[-1061.311,3.45],[-1055.682,6.471],[-1050.376,49.613],[-1060.842,79.482],[-1065.555,85.631],[-1051.61,88.648],[-1042.27,87.81],[-1030.49,70.791],[-1026.302,41.208],[-1028.238,9.117],[-1034.43,0.412]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-116.188,-0.01]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Tank strap 2","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.068,0.243],[4.75,-0.388],[2.069,-7.9],[-2.31,-4.314],[2.841,-15.555],[6.064,-5.896],[-2.385,-5.098],[-7.227,0.444],[-3.119,1.172],[-2.111,6.054],[-0.222,9.997],[2.833,11.369],[2.563,1.932]],"o":[[-4.285,-0.503],[-4.594,0.376],[-0.504,1.924],[6.477,12.098],[-1.871,10.244],[-1.5,1.458],[2.385,5.098],[4.954,-0.304],[6.001,-2.256],[3.656,-10.484],[0.231,-10.374],[-0.776,-3.114],[-1.662,-1.253]],"v":[[-1041.765,-2.261],[-1055.155,-2.161],[-1071.224,3.922],[-1065.596,6.943],[-1060.289,50.085],[-1070.756,79.953],[-1075.469,86.103],[-1051.61,88.648],[-1042.27,87.81],[-1030.49,70.791],[-1026.302,41.208],[-1028.238,9.117],[-1034.43,0.412]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Tank strap","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.674,-5.377],[-0.984,-2.083],[-1.516,-0.803],[-4.456,0.202],[-3.039,1.633],[0.48,3.389],[3.946,1.506],[3.27,-1.329]],"o":[[-5.67,-2.103],[-1.026,2.063],[0.728,1.542],[3.933,2.083],[3.454,-0.156],[3.039,-1.633],[-0.587,-4.145],[-3.298,-1.259],[0,0]],"v":[[-1109.03,26.342],[-1127.512,33.158],[-1127.955,39.812],[-1124.309,43.299],[-1111.24,45.231],[-1101.18,43.131],[-1096.235,34.819],[-1105.074,26.68],[-1117.548,26.491]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0.752941191196,0.054901961237,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-78.686,-16.815]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Tank valve","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[18.439,-0.647],[43.24,-5.798],[3.119,-4.413],[0.438,-2.965],[-1.431,-10.009],[-1.016,-1.664],[-1.774,-0.81],[-14.615,-0.979],[-35.21,-2.358],[-20.032,4.919],[-2.24,3.361],[-0.225,3.035],[-0.422,5.692],[9.605,7.903],[5.137,1.114]],"o":[[-43.6,1.531],[-5.356,0.718],[-1.73,2.448],[-1.572,10.629],[0,0],[1.016,1.664],[13.325,6.084],[35.21,2.358],[20.581,1.378],[3.922,-0.963],[1.688,-2.533],[0.422,-5.692],[0.919,-12.405],[-4.059,-3.34],[-18.032,-3.91]],"v":[[-1079.871,6.375],[-1211.109,8.812],[-1225.538,15.081],[-1228.247,23.565],[-1228.082,61.031],[-1226.697,71.34],[-1222.083,74.789],[-1183.443,80.779],[-1077.099,83.568],[-1015.516,81.375],[-1005.177,75.629],[-1002.401,60.065],[-1001.726,49.798],[-1010.32,15.022],[-1024.734,9.009]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Tank stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-0.422,5.692],[9.605,7.903],[5.137,1.114],[18.44,-0.647],[43.24,-5.798],[3.119,-4.413],[0.438,-2.965],[0.061,-0.432],[-36.056,-2.367],[1.375,15.964],[-0.06,0.808]],"o":[[0.919,-12.405],[-4.059,-3.34],[-18.032,-3.91],[-43.6,1.531],[-5.356,0.718],[-1.73,2.448],[-0.064,0.431],[4.14,35.561],[42.24,2.459],[0.093,-0.815],[0.422,-5.692]],"v":[[-1001.547,49.738],[-1010.142,14.963],[-1024.555,8.949],[-1079.693,6.315],[-1210.93,8.753],[-1225.359,15.022],[-1228.068,23.505],[-1228.249,24.801],[-1127.788,73.266],[-1002.751,61.975],[-1002.222,60.005]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.039215687662,0.184313729405,0.674509823322,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Tank fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[42.24,2.459],[5.083,37.712],[-1.808,-13.275],[-0.882,-1.446],[-1.774,-0.81],[-14.615,-0.979],[-35.21,-2.358],[-20.032,4.919],[-2.24,3.361],[-0.255,2.244]],"o":[[-36.056,-2.367],[-1.362,9.576],[0.212,1.56],[1.016,1.664],[13.325,6.084],[35.21,2.358],[20.581,1.378],[3.922,-0.963],[1.238,-1.858],[-4.41,14.363]],"v":[[-1126.914,71.709],[-1227.937,22.501],[-1227.69,61.028],[-1226.518,71.28],[-1221.905,74.73],[-1183.264,80.719],[-1076.92,83.508],[-1015.337,81.315],[-1004.998,75.569],[-1002.256,60.365]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.015686275437,0.129411771894,0.525490224361,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Tank shadow","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1116.402,24.689]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1116.402,24.689]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tank","np":7,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-4.289,-8.926],[-18.405,-1.77],[-34.442,-2.169],[-29.248,16.919],[3.431,4.239],[0,0]],"o":[[4.585,9.542],[43.588,4.192],[34.297,2.16],[7.211,-4.171],[-65.933,-10.005],[0,0]],"v":[[-1232.34,76.162],[-1198.149,90.561],[-1103.431,91.164],[-1000.586,83.998],[-999.104,70.33],[-1205.137,64.677]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Body tank shadow","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":28,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-884.232,101.187,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-884.232,101.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":0},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-36],"t":59.881},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[15],"t":119.76},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-27],"t":179.637},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[14],"t":239.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-26],"t":299.396},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[14],"t":359.277},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24],"t":419.156},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":479},{"s":[-1],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front fin","op":480,"parent":29,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.046,1.808],[0.622,-6.073],[4.047,-7.52],[-6.739,-6.228],[-2.957,-3.476],[-2.947,-2.52],[1.22,6.36],[3.289,2.864]],"o":[[-0.588,-0.205],[-0.872,8.512],[1.562,1.313],[4.524,4.182],[2.679,3.149],[3.963,2.893],[-0.585,-2.74],[-2.079,-1.81]],"v":[[-873.78,106.277],[-880.145,108.532],[-888.012,124.128],[-871.094,132.336],[-861.013,146.994],[-853.736,157.178],[-854.1,135.197],[-862.652,114.038]]}],"t":11.977},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.96,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-1.845,-2.205],[1.796,6.759],[3.595,3.746]],"o":[[-1.095,-0.319],[-0.681,8.498],[1.627,1.231],[4.546,3.696],[3.071,3.354],[3.171,2.472],[-1.059,-3.719],[-2.226,-2.32]],"v":[[-872.735,98.118],[-879.036,100.623],[-886.904,117.446],[-870.264,125.203],[-861.487,137.822],[-853.611,149.084],[-854.009,124.884],[-861.491,106.076]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.078,-4.109],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[5.513,4.461],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-869.833,85.277],[-874.677,90.115],[-879.407,101.286],[-862.238,105.681],[-853.655,112.26],[-835.53,127.19],[-843.868,103.291],[-857.756,90.05]]}],"t":43.912},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.139,2.239],[1.257,-5.634],[3.656,-7.718],[-4.572,-2.679],[-3.282,-3.243],[-0.347,-0.269],[3.277,7.105],[4.043,4.4]],"o":[[-2.12,-0.918],[-1.289,8.129],[1.627,1.231],[3.85,2.24],[6.035,5.965],[0.139,0.25],[-2.209,-5.713],[-4.19,-4.511]],"v":[[-869.168,82.315],[-875.062,84.841],[-879.662,100.158],[-866.132,104.583],[-854.844,112.58],[-838.544,126.374],[-845.011,108.446],[-854.067,93.052]]}],"t":71.855},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.751,-2.506],[0,0],[1.661,6.389],[3.962,4.181]],"o":[[-2.11,-0.958],[-1.179,8.066],[1.627,1.231],[3.809,2.11],[6.09,4.069],[0,0],[-1.575,-6.056],[-4.604,-4.86]],"v":[[-870.392,82.634],[-876.074,85.259],[-880.179,100.693],[-866.812,104.988],[-855.554,112.497],[-837.29,124.714],[-845.116,109.312],[-854.462,93.812]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.155,1.287],[0.968,-5.652],[3.027,-7.985],[-4.846,-1.589],[-4.52,-1.258],[0.909,0.167],[3.411,5.088],[4.388,3.113]],"o":[[-2.2,-0.525],[-0.985,8.208],[1.72,1.097],[4.289,1.341],[7.016,2.06],[-2.741,-0.504],[-2.935,-4.65],[-4.843,-3.512]],"v":[[-873.179,84.575],[-878.85,87.591],[-882.671,103.307],[-868.814,105.908],[-855.249,109.998],[-834.016,116.985],[-845.812,104.178],[-857.382,92.154]]}],"t":81.834},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.735,0.576],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[5.212,3.603],[4.397,2.242]],"o":[[-2.218,-0.27],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-4.185,-2.893],[-4.449,-2.269]],"v":[[-875.808,96.19],[-882.053,98.622],[-888.723,113.856],[-874.724,116.57],[-858.303,117.823],[-833.794,120.565],[-849.373,109.673],[-861.984,101.076]]}],"t":91.816},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.831,1.159],[1.803,-5.371],[4.96,-6.597],[-5.834,-0.058],[-4.895,0.501],[7.618,5.671],[9.798,2.654],[4.953,2.346]],"o":[[-4.573,-1.384],[-2.749,8.096],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-4.779,-3.558],[-5.408,-1.465],[-3.617,-1.713]],"v":[[-873.049,106.128],[-882.642,109.469],[-891.196,123.508],[-871.409,127.549],[-853.145,127.94],[-823.963,125.792],[-845.054,115.421],[-861.569,111.07]]}],"t":105.787},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.581,1.911],[2.028,-5.263],[4.372,-6.996],[-4.74,-4.98],[-3.119,-4.279],[-6.064,3.449],[2.267,8.341],[5.2,6.121]],"o":[[-2.657,-1.109],[-3.093,8.029],[1.627,1.231],[4.009,4.212],[4.74,6.504],[6.112,-3.476],[-2.206,-8.113],[-3.124,-3.677]],"v":[[-871.882,108.396],[-881.358,107.322],[-889.714,122.801],[-872.654,129.349],[-862.237,143.673],[-847.08,163.024],[-847.521,137.073],[-859.775,116.327]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.636,1.743],[2.233,-5.179],[4.746,-6.94],[-4.06,-4.164],[-3.719,-5.084],[-6.36,-3.172],[2.315,9.663],[5.225,7.089]],"o":[[-2.219,-0.864],[-3.406,7.901],[1.577,1.294],[4.093,4.13],[4.053,5.643],[4.963,1.421],[-1.674,-6.989],[-2.909,-3.946]],"v":[[-875.257,100.755],[-882.818,101.478],[-891.087,116.393],[-876.451,122.106],[-865.512,135.665],[-853.232,152.189],[-854.024,128.57],[-862.984,109.062]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.791,1.297],[2.028,-5.263],[4.545,-7.215],[-3.83,-3.268],[-4.513,-5.425],[-6.792,-7.697],[3.048,10.473],[5.704,7.463]],"o":[[-1.947,-0.527],[-3.093,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[4.193,4.752],[-1.753,-6.022],[-3.014,-3.944]],"v":[[-876.958,92.934],[-883.025,95.523],[-890.194,110.562],[-877.003,114.639],[-864.758,126.855],[-853.518,140.394],[-856.193,118.609],[-864.008,100.671]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.872,1.106],[1.854,-5.327],[3.883,-7.581],[-3.936,-3.14],[-4.689,-5.274],[-8.102,-6.823],[6.547,9.84],[5.947,7.271]],"o":[[-2.217,-0.503],[-2.828,8.126],[1.667,1.177],[4.555,3.635],[4.072,4.58],[4.794,4.077],[-3.205,-5.149],[-3.142,-3.842]],"v":[[-874.602,78.917],[-880.488,82.653],[-886.655,97.868],[-872.343,101.654],[-860.509,112.993],[-847.74,123.943],[-850.236,104.703],[-860.808,87.121]]}],"t":163.67},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.094,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-869.357,78.04],[-876.244,79.833],[-882.33,94.797],[-867.022,99.256],[-856.469,110.413],[-842.739,119.291],[-843.672,102.806],[-856.143,84.905]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,1.328],[1.674,-5.433],[3.656,-7.718],[-3.953,-3.022],[-4.074,-3.552],[-4.554,-3.194],[5.753,7.978],[5.007,6.654]],"o":[[-1.055,-0.479],[-2.552,8.134],[3.442,0.999],[5.02,3.839],[4.246,3.702],[2.594,1.819],[-3.036,-5.214],[-2.964,-3.947]],"v":[[-871.38,79.555],[-878.135,81.508],[-883.69,96.848],[-871.502,100.428],[-857.487,113.235],[-845.018,124.326],[-847.67,106.33],[-857.674,88.904]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.356,2.107],[1.409,-5.561],[3.656,-7.718],[-3.21,-3.777],[-2.986,-3.254],[-1.139,-0.798],[2.684,6.787],[4.484,6.047]],"o":[[-1.846,-0.838],[-2.146,8.213],[4.804,0.824],[3.092,3.638],[4.028,4.352],[0.649,0.455],[-1.94,-5.846],[-2.926,-3.949]],"v":[[-872.897,80.692],[-879.553,82.764],[-884.711,98.386],[-872.179,105.061],[-861.177,116.351],[-847.972,129.929],[-850.669,108.974],[-858.823,91.902]]}],"t":193.611},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-2.768,-2.944],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[5.258,0.766],[3.809,2.11],[4.043,4.3],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.402,81.07],[-880.026,83.183],[-885.051,98.899],[-870.761,105.412],[-861.357,113.669],[-845.354,127.282],[-851.669,109.855],[-859.206,92.902]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.125,1.61],[1.064,-5.637],[3.258,-7.386],[-4.697,-1.851],[-3.49,-2.122],[0.609,0.091],[2.822,5.416],[4.858,5.064]],"o":[[-2.191,-0.65],[-1.633,8.319],[4.396,0.682],[4.122,1.573],[5.664,3.275],[-1.838,-0.273],[-2.917,-5.252],[-3.3,-3.435]],"v":[[-875.295,83.091],[-881.129,85.957],[-886.207,101.522],[-871.216,104.934],[-859.221,111.214],[-840.817,120.565],[-850.911,106.273],[-860.85,92.354]]}],"t":199.598},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.033,0.853],[0.807,-5.671],[2.859,-7.054],[-4.973,-1.252],[-4.212,-1.301],[1.219,0.181],[3.983,4.443],[5.406,4.284]],"o":[[-2.271,-0.342],[-1.256,8.4],[3.534,0.599],[4.435,1.036],[7.285,2.25],[-3.675,-0.546],[-4.259,-4.447],[-3.686,-2.921]],"v":[[-877.188,85.111],[-882.231,88.731],[-887.362,104.145],[-872.783,107.112],[-859.133,110.782],[-839.057,117.153],[-851.226,103.875],[-862.493,91.807]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.589,0.477],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[5.237,3.348],[5.439,3.916]],"o":[[-2.324,-0.242],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.872,-3.754],[-3.744,-2.696]],"v":[[-877.724,94.557],[-884.553,97.259],[-890.639,112.223],[-876.64,114.937],[-860.218,116.19],[-835.995,117.78],[-852.16,108.988],[-864.253,99.388]]}],"t":211.574},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.991,0.303],[2.275,-5.189],[4.304,-7.376],[-5.807,-0.558],[-4.92,0.079],[7.104,6.303],[8.323,0.683],[4.734,2.762]],"o":[[-2.488,-0.189],[-3.432,7.831],[1.516,1.366],[5.585,0.436],[9.363,-0.49],[-4.457,-3.955],[-5.584,-0.458],[-3.457,-2.017]],"v":[[-874.642,106.378],[-881.614,109.1],[-888.96,123.487],[-874.575,126.059],[-855.983,125.846],[-826.561,118.69],[-848.241,114.851],[-863.359,110.484]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.763,1.395],[1.37,-4.367],[4.564,-6.521],[-4.344,-3.062],[-3.489,-4.133],[-8.645,3.125],[3.261,7.637],[5.255,5.897]],"o":[[-1.708,-0.5],[-2.575,8.21],[1.627,1.231],[4.335,3.056],[4.779,5.66],[6.613,-2.391],[-2.758,-6.459],[-3.358,-3.62]],"v":[[-876.348,105.687],[-882.063,106.918],[-889.909,122.181],[-875.984,125.97],[-865.284,139.539],[-848.427,155.594],[-849.473,133.102],[-863.723,112.29]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.785,2.52],[1.429,-4.179],[4.74,-6.769],[-3.703,-3.578],[-3.576,-5.248],[-7.245,-3.795],[2.207,9.523],[4.812,7.304]],"o":[[-0.707,-0.286],[-2.9,8.481],[1.497,1.387],[4.026,3.889],[3.759,5.517],[5.037,2.201],[-1.558,-6.395],[-2.769,-4.099]],"v":[[-878.127,102.339],[-884.634,103.25],[-892.936,117.591],[-879.976,122.765],[-869.514,137.286],[-857.5,152.641],[-857.278,130.466],[-865.888,110.863]]}],"t":263.469},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.938,2.339],[0.767,-4.243],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-6.792,-7.697],[3.048,10.473],[5.704,7.463]],"o":[[0,0],[-1.648,9.114],[1.627,1.231],[4.433,3.782],[3.919,4.711],[4.193,4.752],[-1.753,-6.022],[-3.014,-3.944]],"v":[[-877.892,94.388],[-884.779,96.181],[-890.865,111.145],[-877.844,115.066],[-865.131,128.363],[-854.189,140.976],[-856.864,119.191],[-864.571,102.157]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.89,1.422],[0.88,-4.488],[3.67,-7.027],[-4.002,-3.056],[-5.377,-4.495],[-8.395,-6.553],[7.205,9.613],[6.101,7.143]],"o":[[-1.241,-0.243],[-1.662,8.738],[1.691,1.141],[4.632,3.536],[4.377,3.71],[4.942,3.895],[-3.491,-4.959],[-3.224,-3.774]],"v":[[-874.72,80.19],[-880.148,82.854],[-885.918,97.859],[-872.357,100.927],[-858.762,113.066],[-845.776,122.997],[-848.547,104.161],[-859.699,87.801]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.813,1.215],[1.433,-4.601],[4.387,-6.031],[-3.83,-3.268],[-5.66,-4.215],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[-2.3,-0.58],[-2.56,8.215],[1.627,1.231],[4.433,3.782],[4.389,3.268],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-871.468,77.46],[-875.874,80.326],[-882.879,94.739],[-869.194,98.431],[-856.1,110.906],[-842.37,119.784],[-843.303,103.299],[-855.775,86.44]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.875,82.145],[-880.498,84.258],[-886.584,99.222],[-873.217,103.517],[-862.573,111.45],[-844.783,125.302],[-853.026,109.107],[-860.739,93.225]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.221,1.215],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[4.891,3.976],[5.854,3.264]],"o":[[-2.276,-0.529],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.408,-4.396],[-4.898,-2.731]],"v":[[-876.932,93.515],[-883.798,96.931],[-889.884,111.895],[-875.885,114.609],[-859.463,115.862],[-835.063,117.46],[-851.003,107.786],[-863.649,98.515]]}],"t":331.334},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.869,1.025],[1.098,-3.689],[3.656,-7.718],[-5.834,-0.058],[-4.895,0.501],[5.706,7.592],[10.221,1.283],[4.953,2.346]],"o":[[-3.158,-0.836],[-2.439,8.195],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-3.562,-4.739],[-5.559,-0.698],[-3.617,-1.713]],"v":[[-877.455,104.384],[-882.744,108.518],[-890.3,123.392],[-875.617,125.424],[-857.28,125.648],[-830.887,118.242],[-850.471,111.299],[-865.908,108.243]]}],"t":345.305},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-4.62,-2.003],[-5.866,-4.115],[-2.657,9.85],[3.676,5.628],[4.741,4.106]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[6.186,2.682],[5.017,3.519],[1.776,-6.583],[-3.43,-5.251],[-3.752,-3.25]],"v":[[-872.989,109.462],[-879.875,111.255],[-885.961,126.219],[-870.654,130.678],[-855.561,139.401],[-833.849,145.118],[-848.063,131.053],[-859.775,116.327]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.631,1.786],[1.353,-3.356],[4.559,-7.221],[-3.845,-3.164],[-4.306,-6.01],[-6.745,6.245],[2.317,7.974],[4.506,6.487]],"o":[[-2.213,-0.853],[-3.218,7.98],[1.467,1.418],[4.819,3.878],[3.538,4.938],[4.428,-4.099],[-1.959,-6.745],[-2.898,-3.998]],"v":[[-874.583,105.651],[-881.693,106.249],[-889.335,121.604],[-874.677,127.875],[-864.579,140.693],[-847.489,157.693],[-850.51,137.318],[-862.148,114.94]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.731,1.502],[1.64,-5.396],[4.211,-6.688],[-3.627,-3.492],[-4.179,-5.687],[-6.317,-8.091],[2.414,10.637],[5.246,7.792]],"o":[[-2.261,-0.718],[-1.711,5.63],[1.55,1.327],[4.198,4.042],[3.629,4.938],[3.9,4.995],[-1.388,-6.116],[-2.772,-4.118]],"v":[[-877.856,94.473],[-885.269,96.893],[-892.243,111.464],[-879.51,116.139],[-867.94,129.103],[-857.426,143.446],[-858.787,121.54],[-865.763,104.22]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.557,0.17],[1.067,-5.534],[2.924,-7.645],[-4.154,-2.841],[-5.062,-4.913],[-8.554,-6.174],[7.224,9.228],[6.462,6.812]],"o":[[-1.247,-0.213],[-1.401,7.01],[1.748,1.051],[4.808,3.289],[4.395,4.266],[5.06,3.699],[-3.544,-4.859],[-3.415,-3.599]],"v":[[-875.661,80.253],[-882.466,83.35],[-886.926,98.869],[-872.493,101.475],[-859.831,111.947],[-846.303,121.968],[-850.128,102.938],[-862.006,86.833]]}],"t":403.189},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-5.63,-4.255],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.093,8.029],[1.627,1.231],[4.433,3.782],[5.039,3.808],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-871.406,77.876],[-878.293,79.669],[-884.378,94.633],[-870.823,98.938],[-858.518,110.249],[-844.788,119.127],[-845.721,102.642],[-858.192,84.742]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.875,82.145],[-880.498,84.258],[-886.584,99.222],[-873.217,103.517],[-862.573,111.45],[-844.783,125.302],[-853.026,109.107],[-860.739,93.225]]}],"t":435.125},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.221,1.215],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.495,-0.131],[2.38,0.638],[4.891,3.976],[5.854,3.264]],"o":[[-2.276,-0.529],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[8.059,0.192],[-7.177,-1.925],[-5.408,-4.396],[-4.898,-2.731]],"v":[[-876.932,93.515],[-883.798,96.931],[-889.884,111.895],[-875.885,114.609],[-859.463,115.862],[-835.063,117.46],[-851.003,107.786],[-863.649,98.515]]}],"t":451.094},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.869,1.025],[1.098,-3.689],[3.656,-7.718],[-5.834,-0.058],[-4.895,0.501],[5.706,7.592],[10.221,1.283],[4.953,2.346]],"o":[[-3.158,-0.836],[-2.439,8.195],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-3.562,-4.739],[-5.559,-0.698],[-3.617,-1.713]],"v":[[-877.455,104.384],[-882.744,108.518],[-890.3,123.392],[-875.617,125.424],[-857.28,125.648],[-830.887,118.242],[-850.471,111.299],[-865.908,108.243]]}],"t":465.064},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":479},{"s":[{"c":true,"i":[[6.336,0.289],[0.1,-6.191],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-0.139,8.603],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-873.706,108.59],[-879.875,111.255],[-885.961,126.219],[-867.834,133.039],[-854.568,148.966],[-846.883,157.007],[-849.682,137.796],[-861.876,114.839]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front fin top","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.588,4.27],[8.096,2.958],[9.506,16.175],[3.39,10.887],[20.604,1.913],[0,0],[2.491,-10.218],[4.206,-4.544],[-4.971,-6.937],[-3.915,-6.247],[-10.02,-12.31],[-9.354,-6.56],[-8.688,2.267]],"o":[[6.649,-5.08],[-17.011,-6.216],[-6.047,-10.289],[-5.169,-17.305],[-8.898,-0.826],[3.86,7.571],[-1.122,4.602],[5.724,2.06],[6.911,9.644],[6.569,10.628],[5.342,6.564],[7.446,5.222],[11.066,-2.888]],"v":[[-760.612,203.089],[-780.083,187.245],[-827.524,147.704],[-839.507,113.966],[-864.354,76.951],[-880.377,79.987],[-880.463,109.101],[-888.807,123.975],[-872.132,132.725],[-857.218,154.109],[-836.941,181.64],[-808.165,210.538],[-781.692,212.491]]}],"t":13.971},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.158,1.019],[3.431,9.602],[8.969,19.033],[4.472,10.733],[20.656,1.218],[0,0],[2.145,-10.296],[4.05,-4.683],[-5.203,-6.766],[-3.87,-6.281],[-3.693,-10.053],[-2.456,-11.66],[-6.719,-2.886]],"o":[[10.011,-0.805],[-6.46,-18.081],[-5.389,-11.216],[-6.545,-16.129],[-8.921,-0.526],[4.113,7.436],[-0.966,4.637],[5.79,1.866],[7.232,9.406],[6.786,11.129],[3.578,9.739],[1.399,6.639],[6.364,2.733]],"v":[[-794.524,222.695],[-794.83,188.816],[-823.464,138.836],[-837.033,104.682],[-863.242,71.567],[-880.185,76.361],[-879.656,102.432],[-887.494,117.578],[-870.533,125.762],[-854.416,147.446],[-839.332,175.815],[-832.847,202.257],[-814.975,219.017]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-823.342,226.507],[-805.503,189.548],[-817.853,128.155],[-834.021,94.098],[-865.187,62.275],[-880.847,66.829],[-878.149,95.818],[-885.032,111.421],[-867.597,118.537],[-849.625,139.964],[-838.815,169.257],[-853.438,203.188],[-841.768,217.818]]}],"t":29.939},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.173,-0.307],[-0.292,20.456],[12.833,18.632],[6.944,9.653],[20.56,-2.336],[0,0],[0.351,-10.511],[3.188,-5.308],[-6.284,-5.775],[-5.113,-5.3],[0.694,-11.687],[-6.003,-10.862],[-6.632,-3.389]],"o":[[13.08,0.502],[0.365,-25.597],[-7.783,-11.107],[-9.824,-13.657],[-8.879,1.009],[5.325,6.622],[-0.158,4.734],[6.024,0.847],[8.736,8.029],[10.089,10.333],[-1.22,20.54],[4.157,7.523],[5.697,2.633]],"v":[[-810.961,203.449],[-790.205,171.167],[-810.462,110.241],[-832.201,79.712],[-866.672,51.503],[-880.017,56.34],[-874.153,84.858],[-879.282,101.122],[-861.171,106.281],[-838.635,124.239],[-822.786,152.996],[-844.395,182.368],[-826.083,199.328]]}],"t":43.912},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-811.237,208.504],[-792.806,182.132],[-810.329,115.034],[-830.973,83.819],[-862.138,51.997],[-873.802,53.955],[-871.104,82.944],[-877.988,98.547],[-860.552,105.663],[-837.318,124.725],[-821.068,161.753],[-843.392,196.62],[-822.493,206.242]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.89,2.029],[8.663,12.792],[15.292,14.622],[6.578,9.906],[20.633,-1.567],[0,0],[0.744,-10.491],[3.385,-5.185],[-6.064,-6.006],[-5.439,-5.009],[-13.943,-17.582],[-9.938,1.212],[-3.61,0.603]],"o":[[7.576,-3.952],[-13.25,-15.548],[-10.238,-9.746],[-9.307,-14.015],[-8.911,0.677],[5.074,6.817],[-0.335,4.725],[5.988,1.071],[8.43,8.35],[11.429,10.525],[13.094,16.511],[7.318,-0.893],[4.328,-0.723]],"v":[[-763.524,181.686],[-765.566,155.136],[-809.99,109.982],[-832.845,80.347],[-866.237,50.87],[-877.728,53.669],[-872.934,82.387],[-878.667,98.448],[-861.269,105.413],[-837.955,124.608],[-802.512,151.864],[-796.425,190.349],[-785.619,188.405]]}],"t":67.863},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.296,4.464],[10.982,5.579],[11.967,14.426],[5.084,10.749],[20.55,-2.419],[0,0],[0.309,-10.513],[3.167,-5.32],[-6.307,-5.75],[-5.642,-4.78],[-10.522,-5.134],[-12.44,-2.874],[-2.337,2.185]],"o":[[4.53,-6.136],[-22.823,-11.595],[-8.812,-10.623],[-7.191,-15.204],[-8.875,1.045],[5.352,6.601],[-0.139,4.734],[6.027,0.823],[8.768,7.993],[11.855,10.043],[10.194,4.974],[6.467,1.494],[5.578,-5.214]],"v":[[-743.782,164.877],[-779.488,148.365],[-820.685,110.863],[-835.426,79.917],[-870.01,51.847],[-881.375,55.12],[-875.397,83.614],[-880.46,99.899],[-863.135,107.002],[-839.919,126.656],[-796.797,154.702],[-757.654,167.969],[-744.989,167.114]]}],"t":73.852},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.402,4.036],[10.008,-1.427],[14.217,10.782],[8.582,9.116],[19.203,-3.47],[0,0],[-0.105,-10.517],[2.955,-5.441],[-6.65,-2.551],[-7.612,-2.689],[-15.628,-2.233],[-10.783,2.975],[-0.778,3.07]],"o":[[1.27,-12.753],[-16.413,2.34],[-9.154,-6.858],[-9.652,-11.231],[-8.755,1.667],[5.608,6.385],[0.047,4.736],[6.055,0.585],[10.619,3.227],[16.169,4.826],[18.942,2.707],[5.72,-0.894],[0.458,-4.626]],"v":[[-737.576,104.15],[-767.578,108.572],[-818.753,96.357],[-839.319,73.254],[-874.29,55.142],[-885.74,59.377],[-878.645,87.614],[-883.063,104.086],[-862.93,107.386],[-837.5,115.892],[-791.62,127.641],[-745.342,122.895],[-737.736,116.316]]}],"t":81.834},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-735.289,83.203],[-756.789,96.994],[-817.543,99.158],[-840.008,79.634],[-872.427,64.972],[-884.69,67.884],[-881.993,96.874],[-888.876,112.477],[-866.495,116.125],[-839.661,118.54],[-792.218,123.011],[-736.679,110.139],[-732.314,98.868]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.323,6.378],[13.998,-10.278],[12.624,7.635],[8.954,7.559],[15.965,0.707],[0,0],[2.885,-10.114],[4.378,-4.378],[-7.257,-0.429],[-8.118,-1.296],[-13.493,0.587],[-14.475,12.418],[0.565,3.94]],"o":[[-4.297,-8.778],[-16.284,11.957],[-8.756,-3.845],[-9.068,-7.491],[-8.892,-0.181],[3.564,7.715],[-1.299,4.555],[5.64,2.28],[14.244,0.278],[20.373,0.775],[28.307,-5.346],[5.427,-4.342],[-1.292,-6.391]],"v":[[-741.365,73.39],[-759.704,98.41],[-819.111,106.184],[-839.985,90.07],[-868.201,77.759],[-881.313,79.684],[-882.526,108.773],[-891.44,123.312],[-865.517,127.741],[-836.735,128.054],[-789.843,125.415],[-737.776,106.214],[-734.531,90.214]]}],"t":105.787},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.714,4.903],[8.23,-2.543],[13.194,10.37],[6.527,9.109],[18.646,0.627],[0,0],[2.214,-10.281],[4.081,-4.656],[-6.841,-2.858],[-7.504,-3.117],[-11.443,-1.572],[-19.533,3.64],[-2.86,3.044]],"o":[[1.096,-6.213],[-19.813,6.122],[-8.486,-5.848],[-7.23,-10.695],[-8.903,-0.161],[4.063,7.463],[-0.997,4.63],[5.778,1.904],[12.322,4.153],[13.502,3.922],[17.234,2.368],[4.627,-0.862],[2.735,-4.722]],"v":[[-726.647,118.69],[-749.567,126.069],[-818.914,122.514],[-837.853,98.827],[-866.219,78.385],[-880.665,81.183],[-879.963,110.289],[-887.901,125.383],[-865.229,131.302],[-839.747,140.236],[-805.928,147.784],[-746.601,142],[-734.639,134.498]]}],"t":113.771},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.371,6.262],[10.762,5.642],[11.143,16.013],[4.433,10.719],[20.655,1.241],[0,0],[2.157,-10.293],[4.055,-4.679],[-6.031,-5.63],[-5.441,-5.566],[-6.222,-7.712],[-8.044,-5.614],[-6.163,-0.228]],"o":[[4.559,-5.315],[-16.407,-8.602],[-6.763,-9.483],[-6.049,-14.832],[-8.92,-0.536],[4.104,7.441],[-0.971,4.636],[5.788,1.872],[8.76,7.588],[7.578,9.189],[6.534,7.495],[5.51,3.846],[6.205,-0.418]],"v":[[-765.689,192.95],[-779.892,176.691],[-822.845,141.424],[-838.057,109.174],[-865.876,77.797],[-881.607,81.022],[-880.745,110.124],[-888.6,125.262],[-869.761,132.906],[-850.461,152.667],[-830.778,175.542],[-809.296,195.656],[-790.726,203.496]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.177,0.874],[3.236,9.669],[8.584,19.21],[4.255,10.821],[20.628,1.634],[0,0],[2.353,-10.251],[4.144,-4.601],[-5.396,-6.361],[-3.742,-6.358],[-3.49,-10.126],[-2.221,-11.707],[-6.659,-3.021]],"o":[[10.025,-0.603],[-6.094,-18.208],[-5.162,-11.322],[-6.219,-16.258],[-8.908,-0.706],[3.962,7.518],[-1.059,4.616],[5.751,1.982],[6.445,7.598],[6.56,11.263],[3.38,9.809],[1.264,6.666],[6.308,2.861]],"v":[[-798.85,229.521],[-798.472,195.644],[-826.093,145.096],[-838.971,110.675],[-865.868,75.201],[-881.848,78.453],[-881.54,107.566],[-889.681,122.552],[-872.245,129.96],[-857.212,153.08],[-842.703,181.748],[-836.753,208.315],[-819.222,225.432]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.868,-2.441],[-4.005,21.634],[7.836,22.24],[5.161,10.712],[20.653,1.27],[0,0],[2.172,-10.29],[4.062,-4.673],[-5.185,-6.779],[-3.6,-6.459],[2.714,-11.389],[-5.071,-13.076],[-5.992,-6.637]],"o":[[13.538,3.726],[4.66,-25.172],[-4.356,-12.363],[-7.303,-15.156],[-8.919,-0.549],[4.094,7.447],[-0.978,4.634],[5.785,1.88],[7.208,9.424],[6.617,11.874],[-4.769,20.016],[2.757,7.11],[4.432,4.909]],"v":[[-837.314,235.237],[-817.127,199.507],[-825.49,137.445],[-839.427,102.415],[-868.474,68.647],[-884.395,72.181],[-883.573,101.284],[-891.449,116.41],[-874.51,124.637],[-857.958,147.179],[-849.06,177.108],[-865.843,210.025],[-855.141,225.377]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-828.755,225.788],[-810.916,188.829],[-823.267,127.436],[-839.434,93.379],[-870.6,61.556],[-886.26,66.11],[-883.562,95.099],[-890.446,110.702],[-873.01,117.818],[-855.038,139.246],[-844.228,168.538],[-858.851,202.469],[-847.181,217.099]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.148,-0.75],[-1.279,20.418],[11.919,19.23],[6.47,9.977],[20.649,-1.341],[0,0],[0.858,-10.482],[3.441,-5.148],[-5.998,-6.072],[-4.851,-5.541],[1.258,-11.64],[-5.471,-11.139],[-6.46,-3.706]],"o":[[13.04,1.133],[1.6,-25.55],[-7.238,-11.47],[-9.153,-14.116],[-8.917,0.579],[4.999,6.872],[-0.387,4.721],[5.976,1.137],[8.338,8.441],[9.578,10.808],[-2.211,20.457],[3.789,7.715],[5.563,2.905]],"v":[[-823.9,203.883],[-801.61,172.641],[-818.901,110.807],[-839.142,79.265],[-872.211,49.424],[-885.773,53.611],[-881.293,82.379],[-887.201,98.377],[-869.36,104.404],[-847.718,123.429],[-833.275,152.917],[-856.278,181.212],[-838.805,199.037]]}],"t":163.67},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-815.458,204.75],[-797.027,178.379],[-814.549,111.281],[-835.193,80.066],[-866.359,48.243],[-878.022,50.201],[-875.325,79.19],[-882.208,94.793],[-864.773,101.909],[-841.538,120.972],[-825.289,157.999],[-847.612,192.867],[-826.713,202.488]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.982,1.842],[8.045,13.19],[14.578,15.334],[6.099,10.208],[20.684,-0.582],[0,0],[1.242,-10.443],[3.628,-5.018],[-5.771,-6.288],[-5.195,-5.263],[-13.09,-18.226],[-9.985,0.738],[-3.634,0.431]],"o":[[7.755,-3.587],[-12.494,-16.161],[-9.762,-10.222],[-8.629,-14.442],[-8.932,0.252],[4.744,7.051],[-0.559,4.703],[5.93,1.355],[8.023,8.741],[10.915,11.058],[12.293,17.116],[7.352,-0.543],[4.357,-0.516]],"v":[[-774.528,183.727],[-775.304,157.11],[-817.527,109.892],[-838.945,79.203],[-870.897,48.169],[-882.508,50.418],[-878.015,77.859],[-884.728,96.672],[-868.531,102.887],[-846.157,123.17],[-812.052,152.082],[-807.804,190.814],[-796.918,189.387]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.702,4.133],[10.407,6.59],[10.554,15.49],[4.048,11.181],[20.687,-0.471],[0,0],[1.298,-10.437],[3.654,-4.998],[-5.737,-6.319],[-5.166,-5.29],[-9.991,-6.103],[-12.113,-4.034],[-2.533,1.955]],"o":[[5.088,-5.682],[-21.629,-13.695],[-7.771,-11.406],[-5.726,-15.814],[-8.934,0.203],[4.706,7.076],[-0.585,4.7],[5.923,1.387],[7.976,8.784],[10.855,11.116],[9.68,5.913],[6.298,2.097],[6.045,-4.665]],"v":[[-758.855,174.26],[-792.846,154.456],[-830.324,113.237],[-842.083,81.04],[-873.867,49.835],[-885.49,52.021],[-879.934,79.887],[-884.987,97.7],[-872.221,105.392],[-850.961,127.147],[-810.674,159.133],[-772.956,176.031],[-760.268,176.373]]}],"t":193.611},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.587,4.013],[10.063,-0.965],[13.706,11.424],[8.153,9.501],[19.343,-2.584],[0,0],[0.378,-10.51],[3.202,-5.299],[-6.525,-2.854],[-7.481,-3.037],[-15.509,-2.949],[-10.909,2.476],[-0.918,3.031]],"o":[[1.855,-12.681],[-16.504,1.583],[-8.83,-7.271],[-9.126,-11.663],[-8.822,1.263],[5.308,6.636],[-0.17,4.733],[6.022,0.863],[10.459,3.712],[15.931,5.564],[18.797,3.575],[5.755,-0.63],[0.671,-4.6]],"v":[[-741.291,109.373],[-771.464,112.412],[-822.025,97.857],[-841.506,73.834],[-875.607,54.134],[-887.241,57.837],[-881.451,86.37],[-886.622,102.622],[-866.661,106.844],[-841.649,116.51],[-796.357,130.355],[-749.91,127.742],[-742.01,121.519]]}],"t":201.594},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-738.061,81.376],[-759.561,95.167],[-820.315,97.331],[-842.78,77.807],[-875.199,63.145],[-887.462,66.057],[-884.764,95.047],[-891.648,110.65],[-869.267,114.298],[-842.433,116.713],[-794.99,121.184],[-739.45,108.312],[-735.086,97.041]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.739,6.144],[13.286,-11.184],[13.103,6.781],[9.435,6.949],[15.977,-0.353],[0,0],[2.208,-10.283],[4.078,-4.659],[-7.269,0.053],[-8.186,-0.755],[-13.425,1.48],[-13.62,13.35],[0.825,3.894]],"o":[[-4.869,-8.474],[-15.455,13.01],[-8.991,-3.256],[-9.544,-6.873],[-8.884,0.409],[4.067,7.461],[-0.994,4.631],[5.779,1.901],[14.231,-0.667],[20.38,-0.577],[27.891,-7.211],[5.128,-4.692],[-1.713,-6.291]],"v":[[-743.436,63.989],[-760.076,90.169],[-818.837,101.864],[-840.733,87.17],[-869.704,76.756],[-882.659,79.546],[-881.941,108.652],[-889.871,123.75],[-863.712,126.45],[-834.973,124.855],[-788.358,119.113],[-737.679,96.502],[-735.502,80.322]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.582,4.92],[8.159,-2.763],[13.468,10.012],[6.769,8.93],[18.656,0.125],[0,0],[1.937,-10.337],[3.954,-4.764],[-6.915,-2.673],[-7.585,-2.914],[-11.481,-1.264],[-19.428,4.164],[-2.778,3.12]],"o":[[0.928,-6.24],[-19.641,6.652],[-8.64,-5.618],[-7.515,-10.497],[-8.904,0.078],[4.263,7.352],[-0.872,4.656],[5.827,1.748],[12.429,3.821],[13.603,3.557],[17.291,1.904],[4.602,-0.986],[2.607,-4.793]],"v":[[-726.69,114.847],[-749.404,122.839],[-818.821,121.149],[-838.39,97.98],[-867.296,78.308],[-881.661,81.493],[-880.177,110.57],[-887.706,125.872],[-864.883,131.18],[-839.171,139.425],[-805.161,146.062],[-746.011,138.685],[-734.255,130.864]]}],"t":233.531},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.329,6.298],[10.8,5.57],[11.25,15.938],[4.505,10.689],[20.663,1.103],[0,0],[2.088,-10.308],[4.024,-4.706],[-6.069,-5.589],[-5.478,-5.529],[-6.274,-7.67],[-8.081,-5.56],[-6.164,-0.187]],"o":[[4.523,-5.346],[-16.465,-8.491],[-6.827,-9.438],[-6.148,-14.791],[-8.923,-0.476],[4.154,7.413],[-0.94,4.642],[5.801,1.833],[8.811,7.53],[7.64,9.138],[6.584,7.451],[5.536,3.809],[6.202,-0.46]],"v":[[-764.652,192.121],[-778.964,175.957],[-822.152,140.979],[-837.58,108.832],[-865.609,77.643],[-881.318,80.973],[-880.261,110.068],[-888.014,125.258],[-869.124,132.776],[-849.692,152.407],[-829.856,175.15],[-808.24,195.119],[-789.618,202.834]]}],"t":247.502},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.165,0.968],[3.362,9.626],[8.834,19.096],[4.396,10.764],[20.647,1.364],[0,0],[2.218,-10.281],[4.083,-4.655],[-5.478,-6.29],[-3.825,-6.308],[-3.622,-10.079],[-2.374,-11.677],[-6.698,-2.933]],"o":[[10.016,-0.734],[-6.332,-18.126],[-5.309,-11.254],[-6.431,-16.175],[-8.917,-0.589],[4.06,7.465],[-0.999,4.63],[5.777,1.907],[6.544,7.513],[6.707,11.177],[3.508,9.764],[1.351,6.649],[6.345,2.778]],"v":[[-797.937,227.887],[-798.002,194.007],[-826.282,143.826],[-839.609,109.576],[-866.968,74.457],[-882.904,77.918],[-882.215,107.025],[-890.16,122.115],[-872.628,129.295],[-857.294,152.216],[-842.411,180.691],[-836.114,207.179],[-818.361,224.065]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.725,-2.91],[-5.153,21.389],[6.639,22.627],[4.583,10.972],[20.556,2.37],[0,0],[2.717,-10.16],[4.305,-4.45],[-4.816,-7.046],[-3.25,-6.642],[3.318,-11.228],[-4.366,-13.328],[-5.629,-6.947]],"o":[[13.32,4.443],[5.996,-24.888],[-3.69,-12.578],[-6.484,-15.524],[-8.877,-1.024],[3.691,7.655],[-1.224,4.576],[5.677,2.186],[6.695,9.795],[5.974,12.21],[-5.831,19.733],[2.374,7.247],[4.164,5.139]],"v":[[-846.085,238.919],[-824.021,204.317],[-829.061,141.897],[-841.109,106.174],[-868.313,70.905],[-884.4,73.584],[-885.132,102.689],[-893.804,117.374],[-877.327,126.492],[-862.002,149.885],[-854.714,180.247],[-873.228,212.221],[-863.36,228.123]]}],"t":263.469},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-829.793,226.527],[-811.954,189.568],[-824.305,128.175],[-840.473,94.118],[-871.638,62.295],[-887.298,66.848],[-884.6,95.838],[-891.484,111.441],[-874.048,118.557],[-856.076,139.984],[-845.266,169.277],[-859.89,203.208],[-848.219,217.838]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.162,-0.553],[-0.839,20.441],[12.33,18.969],[6.683,9.835],[20.615,-1.785],[0,0],[0.633,-10.498],[3.329,-5.22],[-6.127,-5.942],[-4.969,-5.435],[1.007,-11.664],[-5.71,-11.019],[-6.539,-3.566]],"o":[[13.062,0.852],[1.05,-25.578],[-7.483,-11.311],[-9.455,-13.916],[-8.903,0.771],[5.146,6.763],[-0.285,4.728],[5.999,1.008],[8.518,8.26],[9.808,10.599],[-1.77,20.5],[3.955,7.632],[5.625,2.785]],"v":[[-821.378,203.101],[-799.765,171.387],[-818.383,109.94],[-839.297,78.84],[-873,49.717],[-886.469,54.195],[-881.371,82.86],[-886.934,98.981],[-868.967,104.623],[-846.921,123.178],[-831.848,152.349],[-854.236,181.132],[-836.384,198.577]]}],"t":283.43},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-816.313,204.508],[-797.882,178.136],[-815.404,111.038],[-836.048,79.823],[-867.214,48],[-878.878,49.958],[-876.18,78.948],[-883.063,94.551],[-865.628,101.667],[-842.393,120.729],[-826.144,157.757],[-848.468,192.624],[-827.568,202.246]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.968,1.873],[8.147,13.127],[14.697,15.22],[6.178,10.16],[20.679,-0.743],[0,0],[1.161,-10.453],[3.589,-5.046],[-5.82,-6.243],[-5.235,-5.222],[-13.231,-18.124],[-9.979,0.815],[-3.631,0.459]],"o":[[7.727,-3.647],[-12.619,-16.064],[-9.841,-10.146],[-8.741,-14.375],[-8.93,0.321],[4.798,7.014],[-0.523,4.708],[5.941,1.309],[8.09,8.679],[11,10.973],[12.426,17.02],[7.347,-0.6],[4.353,-0.55]],"v":[[-773.386,183.437],[-774.369,156.827],[-816.957,109.938],[-838.612,79.415],[-870.803,48.63],[-882.396,50.969],[-878.751,79.855],[-885.12,95.675],[-868.013,103.328],[-845.483,123.437],[-811.154,152.084],[-806.607,190.782],[-795.732,189.27]]}],"t":307.381},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.462,4.336],[10.763,5.991],[11.413,14.869],[4.674,10.934],[20.627,-1.64],[0,0],[0.706,-10.493],[3.366,-5.197],[-6.085,-5.984],[-5.457,-4.99],[-10.32,-5.528],[-12.322,-3.343],[-2.418,2.095]],"o":[[4.759,-5.961],[-22.369,-12.45],[-8.404,-10.948],[-6.611,-15.465],[-8.908,0.708],[5.098,6.799],[-0.318,4.726],[5.992,1.05],[8.459,8.319],[11.466,10.484],[9.999,5.356],[6.406,1.738],[5.771,-5]],"v":[[-751.701,167.622],[-786.757,149.772],[-826.507,110.739],[-840.067,79.258],[-873.565,49.9],[-885.045,52.74],[-880.149,81.44],[-885.824,97.522],[-868.779,105.275],[-846.324,125.793],[-804.293,155.45],[-765.68,170.188],[-752.992,169.811]]}],"t":313.371},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.859,3.964],[10.105,-0.279],[12.897,12.33],[7.488,10.033],[19.474,-1.262],[0,0],[1.092,-10.46],[3.555,-5.069],[-6.316,-3.291],[-7.257,-3.538],[-15.272,-3.997],[-11.052,1.728],[-1.122,2.961]],"o":[[2.713,-12.526],[-16.573,0.457],[-8.315,-7.855],[-8.311,-12.257],[-8.887,0.66],[4.844,6.982],[-0.492,4.711],[5.949,1.27],[10.182,4.415],[15.515,6.635],[18.511,4.845],[5.784,-0.237],[0.982,-4.544]],"v":[[-745.505,120.492],[-775.815,121.471],[-825.268,103.511],[-843.071,78.218],[-875.754,56.245],[-887.612,59.149],[-883.776,88.009],[-890.04,103.871],[-870.413,109.442],[-846.116,120.786],[-801.871,137.68],[-755.354,138.231],[-747.048,132.561]]}],"t":321.352},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-736.962,81.114],[-758.462,94.905],[-819.217,97.069],[-841.682,77.544],[-874.101,62.882],[-886.364,65.795],[-883.666,94.784],[-890.549,110.387],[-868.168,114.035],[-841.334,116.451],[-793.892,120.922],[-738.352,108.049],[-733.987,96.779]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.748,6.138],[13.269,-11.205],[13.114,6.76],[9.446,6.934],[15.977,-0.378],[0,0],[2.192,-10.286],[4.071,-4.665],[-7.269,0.064],[-8.187,-0.742],[-13.423,1.501],[-13.599,13.371],[0.831,3.893]],"o":[[-4.883,-8.466],[-15.435,13.034],[-8.996,-3.242],[-9.555,-6.858],[-8.884,0.423],[4.079,7.455],[-0.987,4.632],[5.782,1.892],[14.23,-0.689],[20.379,-0.609],[27.879,-7.255],[5.12,-4.7],[-1.723,-6.288]],"v":[[-744.346,63.286],[-760.944,89.492],[-819.686,101.279],[-841.606,86.62],[-870.592,76.252],[-883.544,79.062],[-882.78,108.167],[-890.686,123.278],[-864.523,125.936],[-835.786,124.296],[-789.181,118.481],[-738.537,95.79],[-736.385,79.606]]}],"t":345.305},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.606,4.918],[8.172,-2.723],[13.42,10.077],[6.726,8.963],[18.655,0.216],[0,0],[1.987,-10.328],[3.977,-4.745],[-6.902,-2.707],[-7.571,-2.951],[-11.475,-1.32],[-19.448,4.07],[-2.793,3.107]],"o":[[0.958,-6.236],[-19.674,6.557],[-8.612,-5.66],[-7.464,-10.533],[-8.904,0.035],[4.227,7.372],[-0.895,4.651],[5.818,1.776],[12.41,3.881],[13.585,3.623],[17.282,1.988],[4.607,-0.964],[2.63,-4.781]],"v":[[-726.403,115.111],[-749.155,122.993],[-818.563,120.967],[-838.019,97.703],[-866.829,77.891],[-881.21,81.006],[-879.867,110.09],[-887.47,125.355],[-864.673,130.774],[-839.001,139.144],[-805.024,145.945],[-745.838,138.855],[-734.045,131.092]]}],"t":353.289},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.769,4.239],[8.666,0.846],[14.131,12.116],[5.074,10.401],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-6.85,-4.579],[-7.312,-4.394],[-9.084,-4.803],[-12.107,-1.995],[-5.444,2.787]],"o":[[5.243,-4.887],[-19.907,-1.943],[-8.623,-7.214],[-6.414,-13.148],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[11.396,6.997],[8.824,6.698],[9.814,4.638],[6.18,1.018],[5.811,-3.952]],"v":[[-740.446,156.523],[-759.267,149.787],[-817.776,132.926],[-836.551,103.722],[-866.321,77.753],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-865.258,133.143],[-841.12,148.342],[-815.757,164.135],[-778.453,175.582],[-759.273,173.266]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.297,6.325],[10.828,5.515],[11.331,15.881],[4.56,10.666],[20.668,0.997],[0,0],[2.035,-10.318],[4,-4.726],[-6.097,-5.558],[-5.506,-5.501],[-6.313,-7.638],[-8.11,-5.519],[-6.165,-0.155]],"o":[[4.496,-5.369],[-16.508,-8.407],[-6.875,-9.403],[-6.224,-14.759],[-8.926,-0.431],[4.192,7.392],[-0.917,4.647],[5.81,1.804],[8.849,7.484],[7.686,9.099],[6.622,7.418],[5.555,3.78],[6.199,-0.492]],"v":[[-764.608,191.087],[-779.002,174.997],[-822.369,140.24],[-837.961,108.172],[-866.149,77.127],[-881.841,80.537],[-880.635,109.627],[-888.31,124.856],[-869.382,132.277],[-849.85,151.809],[-829.898,174.449],[-808.18,194.308],[-789.519,201.928]]}],"t":367.262},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.175,0.89],[3.257,9.662],[8.625,19.192],[4.278,10.811],[20.631,1.59],[0,0],[2.331,-10.256],[4.134,-4.61],[-5.409,-6.349],[-3.756,-6.35],[-3.511,-10.118],[-2.246,-11.702],[-6.666,-3.006]],"o":[[10.024,-0.624],[-6.133,-18.195],[-5.186,-11.311],[-6.254,-16.245],[-8.91,-0.687],[3.978,7.509],[-1.05,4.619],[5.756,1.97],[6.461,7.584],[6.584,11.249],[3.401,9.802],[1.279,6.663],[6.314,2.847]],"v":[[-799.067,228.689],[-798.762,194.81],[-826.49,144.322],[-839.442,109.928],[-866.414,74.512],[-882.388,77.798],[-882.017,106.911],[-890.127,121.913],[-872.675,129.284],[-857.592,152.372],[-843.023,181.009],[-837.015,207.563],[-819.448,224.643]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.778,-2.744],[-4.748,21.483],[7.066,22.497],[4.789,10.884],[20.597,1.981],[0,0],[2.525,-10.21],[4.22,-4.53],[-4.949,-6.954],[-3.375,-6.579],[3.104,-11.288],[-4.617,-13.243],[-5.76,-6.84]],"o":[[13.402,4.19],[5.524,-24.997],[-3.928,-12.506],[-6.776,-15.399],[-8.895,-0.855],[3.835,7.583],[-1.137,4.598],[5.717,2.078],[6.88,9.667],[6.204,12.095],[-5.456,19.84],[2.511,7.201],[4.26,5.059]],"v":[[-842.783,237.577],[-821.377,202.564],[-827.597,140.251],[-840.319,104.761],[-868.186,70.013],[-884.219,72.996],[-884.4,102.111],[-892.793,116.957],[-876.146,125.761],[-860.381,148.861],[-852.52,179.079],[-870.426,211.397],[-860.259,227.11]]}],"t":383.229},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.909,-2.287],[-3.63,21.7],[8.22,22.101],[5.346,10.621],[20.672,0.912],[0,0],[1.993,-10.326],[3.98,-4.743],[-5.302,-6.688],[-3.711,-6.396],[2.516,-11.434],[-5.297,-12.987],[-6.106,-6.532]],"o":[[13.601,3.491],[4.224,-25.249],[-4.57,-12.286],[-7.564,-15.027],[-8.927,-0.394],[4.222,7.375],[-0.898,4.651],[5.817,1.78],[7.371,9.298],[6.822,11.757],[-4.422,20.095],[2.88,7.062],[4.516,4.832]],"v":[[-836.408,229.436],[-816.843,193.361],[-826.28,131.453],[-840.821,96.67],[-870.448,63.411],[-886.305,67.219],[-884.98,96.304],[-892.593,111.564],[-875.513,119.496],[-858.574,141.749],[-849.159,171.519],[-865.369,204.721],[-854.403,219.886]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.355],[-0.398,20.455],[12.736,18.699],[6.893,9.689],[20.572,-2.229],[0,0],[0.406,-10.509],[3.216,-5.291],[-6.254,-5.808],[-5.085,-5.327],[0.755,-11.683],[-5.946,-10.893],[-6.614,-3.424]],"o":[[13.077,0.57],[0.498,-25.595],[-7.726,-11.147],[-9.753,-13.708],[-8.884,0.963],[5.291,6.65],[-0.183,4.733],[6.02,0.878],[8.694,8.074],[10.035,10.385],[-1.327,20.533],[4.118,7.544],[5.683,2.663]],"v":[[-819.687,201.346],[-798.764,169.172],[-818.703,108.141],[-840.284,77.5],[-874.607,49.112],[-887.977,53.879],[-882.261,82.427],[-887.475,98.665],[-869.391,103.918],[-846.949,121.993],[-831.25,150.831],[-853.012,180.091],[-834.788,197.146]]}],"t":403.189},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-818.391,204.709],[-799.96,178.337],[-817.482,111.239],[-838.126,80.024],[-869.292,48.201],[-880.956,50.159],[-878.258,79.149],[-885.142,94.752],[-867.706,101.868],[-844.471,120.93],[-828.222,157.958],[-850.546,192.825],[-829.646,202.446]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.968,1.873],[8.147,13.127],[14.697,15.22],[6.178,10.16],[20.679,-0.743],[0,0],[1.161,-10.453],[3.589,-5.046],[-5.82,-6.243],[-5.235,-5.222],[-13.231,-18.124],[-9.979,0.815],[-3.631,0.459]],"o":[[7.727,-3.647],[-12.619,-16.064],[-9.841,-10.146],[-8.741,-14.375],[-8.93,0.321],[4.798,7.014],[-0.523,4.708],[5.941,1.309],[8.09,8.679],[11,10.973],[12.426,17.02],[7.347,-0.6],[4.353,-0.55]],"v":[[-773.386,183.437],[-774.369,156.827],[-816.957,109.938],[-838.612,79.415],[-870.803,48.63],[-882.396,50.969],[-878.751,79.855],[-885.12,95.675],[-868.013,103.328],[-845.483,123.437],[-811.154,152.084],[-806.607,190.782],[-795.732,189.27]]}],"t":427.141},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.462,4.336],[10.763,5.991],[11.413,14.869],[4.674,10.934],[20.627,-1.64],[0,0],[0.706,-10.493],[3.366,-5.197],[-6.085,-5.984],[-5.457,-4.99],[-10.32,-5.528],[-12.322,-3.343],[-2.418,2.095]],"o":[[4.759,-5.961],[-22.369,-12.45],[-8.404,-10.948],[-6.611,-15.465],[-8.908,0.708],[5.098,6.799],[-0.318,4.726],[5.992,1.05],[8.459,8.319],[11.466,10.484],[9.999,5.356],[6.406,1.738],[5.771,-5]],"v":[[-751.701,167.622],[-786.757,149.772],[-826.507,110.739],[-840.067,79.258],[-873.565,49.9],[-885.045,52.74],[-880.149,81.44],[-885.824,97.522],[-868.779,105.275],[-846.324,125.793],[-804.293,155.45],[-765.68,170.188],[-752.992,169.811]]}],"t":433.129},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.859,3.964],[10.105,-0.279],[12.897,12.33],[7.488,10.033],[19.474,-1.262],[0,0],[1.092,-10.46],[3.555,-5.069],[-6.316,-3.291],[-7.257,-3.538],[-15.272,-3.997],[-11.052,1.728],[-1.122,2.961]],"o":[[2.713,-12.526],[-16.573,0.457],[-8.315,-7.855],[-8.311,-12.257],[-8.887,0.66],[4.844,6.982],[-0.492,4.711],[5.949,1.27],[10.182,4.415],[15.515,6.635],[18.511,4.845],[5.784,-0.237],[0.982,-4.544]],"v":[[-745.505,120.492],[-775.815,121.471],[-825.268,103.511],[-843.071,78.218],[-875.754,56.245],[-887.612,59.149],[-883.776,88.009],[-890.04,103.871],[-870.413,109.442],[-846.116,120.786],[-801.871,137.68],[-755.354,138.231],[-747.048,132.561]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.325,6.397],[13.09,-8.505],[14.557,9.96],[10.348,9.382],[18.324,-0.925],[0,0],[1.503,-10.409],[3.752,-4.926],[-6.751,-0.643],[-9.163,-2.251],[-15.948,-1.35],[-10.19,6.855],[0.094,3.925]],"o":[[-1.64,-9.035],[-16.003,10.398],[-8.452,-4.795],[-10.231,-9.225],[-8.877,0.591],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[12.2,0.685],[19.849,3.153],[25.561,-0.052],[5.323,-2.24],[-0.496,-5.642]],"v":[[-736.962,81.114],[-758.462,94.905],[-819.217,97.069],[-841.682,77.544],[-874.101,62.882],[-886.364,65.795],[-883.666,94.784],[-890.549,110.387],[-868.168,114.035],[-841.334,116.451],[-793.892,120.922],[-738.352,108.049],[-733.987,96.779]]}],"t":449.096},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.748,6.138],[13.269,-11.205],[13.114,6.76],[9.446,6.934],[15.977,-0.378],[0,0],[2.192,-10.286],[4.071,-4.665],[-7.269,0.064],[-8.187,-0.742],[-13.423,1.501],[-13.599,13.371],[0.831,3.893]],"o":[[-4.883,-8.466],[-15.435,13.034],[-8.996,-3.242],[-9.555,-6.858],[-8.884,0.423],[4.079,7.455],[-0.987,4.632],[5.782,1.892],[14.23,-0.689],[20.379,-0.609],[27.879,-7.255],[5.12,-4.7],[-1.723,-6.288]],"v":[[-744.346,63.286],[-760.944,89.492],[-819.686,101.279],[-841.606,86.62],[-870.592,76.252],[-883.544,79.062],[-882.78,108.167],[-890.686,123.278],[-864.523,125.936],[-835.786,124.296],[-789.181,118.481],[-738.537,95.79],[-736.385,79.606]]}],"t":465.064},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.606,4.918],[8.172,-2.723],[13.42,10.077],[6.726,8.963],[18.655,0.216],[0,0],[1.987,-10.328],[3.977,-4.745],[-6.902,-2.707],[-7.571,-2.951],[-11.475,-1.32],[-19.448,4.07],[-2.793,3.107]],"o":[[0.958,-6.236],[-19.674,6.557],[-8.612,-5.66],[-7.464,-10.533],[-8.904,0.035],[4.227,7.372],[-0.895,4.651],[5.818,1.776],[12.41,3.881],[13.585,3.623],[17.282,1.988],[4.607,-0.964],[2.63,-4.781]],"v":[[-726.403,115.111],[-749.155,122.993],[-818.563,120.967],[-838.019,97.703],[-866.829,77.891],[-881.21,81.006],[-879.867,110.09],[-887.47,125.355],[-864.673,130.774],[-839.001,139.144],[-805.024,145.945],[-745.838,138.855],[-734.045,131.092]]}],"t":473.049},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":479},{"s":[{"c":true,"i":[[-7.367,9.005],[15.747,-6.232],[15.739,10.707],[3.167,10.649],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.925],[-5.612,-6.43],[-4.918,-5.521],[-7.289,-4.03],[-14.011,-0.63],[-10.368,7.724]],"o":[[12.313,-15.05],[-27.355,10.826],[-10.374,-7.058],[-5.517,-18.55],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.719,8.665],[18.88,10.438],[12.748,0.574],[10.569,-7.874]],"v":[[-737.04,157.551],[-756.875,148.321],[-825.1,144.184],[-840.255,113.855],[-865.994,77.069],[-881.654,81.623],[-878.956,110.612],[-885.84,126.215],[-868.405,133.331],[-852.462,151.82],[-829.897,172.994],[-786.622,188.216],[-762.477,180.144]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.075,0.089]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front fin bottom","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":29,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1073.875,105.473,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1073.875,105.473,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-8],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[6],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[8],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-5],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[7],"t":479},{"s":[10],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Front leg","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-40.292,16.342],[-33.029,8.646],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[35.009,-14.199],[23.972,-6.275],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.04,168.725],[-946.09,138.338],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-42.046,11.075],[-36.938,18.988],[-7.388,4.141],[-2.046,1.369],[4.713,10.778],[1.331,-0.516],[18.938,-4.523],[23.72,0.894],[23.05,5.482]],"o":[[44.458,-11.71],[19.89,-10.225],[3.571,-2.002],[1.283,-0.609],[-3.846,-8.796],[-15.787,6.119],[-14.884,3.555],[-18.821,-0.71],[0,0]],"v":[[-1045.039,171.198],[-943.389,129.475],[-889.562,101.231],[-881.344,96.203],[-882.23,77.848],[-902.574,55.765],[-932.553,65.992],[-979.945,68.652],[-1040.1,58.04]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.409,13.26],[-39.393,12.294],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[39.301,-12.585],[16.596,-5.18],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1036.044,165.594],[-944.981,137.162],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.859,11.761],[-36.077,20.355],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[39.728,-11.163],[24.674,-13.921],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1039.425,170.524],[-935.513,131.047],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.983,15.695],[-52.345,16.392],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[32.234,-12.05],[8.125,-2.544],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1034.133,166.675],[-944.664,135.903],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.988,11.291],[-37.164,18.296],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[40.737,-10.955],[7.639,-3.761],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1051.355,171.85],[-935.771,128.803],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.38,13.349],[-37.52,11.878],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[40.052,-12.921],[8.117,-2.57],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.118,167.508],[-945.771,138.473],[-902.073,126.364],[-893.362,124.92],[-878.306,103.938],[-876.6,83.465],[-927.249,77.996],[-979.002,69.856],[-1040.1,58.04]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-41.728,12.219],[-31.928,16.808],[-7.712,7.738],[-1.335,2.069],[5.7,10.29],[1.038,-0.979],[17.948,-2.309],[21.737,2.632],[22.373,3.338]],"o":[[39.604,-11.597],[25.699,-13.529],[2.89,-2.9],[0.936,-1.068],[-4.651,-8.398],[-14.122,13.315],[-11.181,1.438],[-18.698,-2.264],[0,0]],"v":[[-1043.212,172.33],[-939.397,132.858],[-892.197,101.675],[-886.254,94.486],[-888.925,68.801],[-901.242,52.358],[-939.742,72.322],[-979.545,71.96],[-1040.1,58.04]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[-40.292,16.342],[-33.029,8.646],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[35.009,-14.199],[23.972,-6.275],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1033.04,168.725],[-946.09,138.338],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":479},{"s":[{"c":false,"i":[[-40.173,16.633],[-41.972,11.417],[-8.312,1.622],[-2.372,0.66],[-2.569,11.479],[1.417,0.164],[18.897,2.431],[22.655,3.122],[22.373,3.338]],"o":[[34.811,-14.413],[26.053,-7.087],[4.018,-0.784],[1.409,-0.177],[2.097,-9.368],[-17.855,-2.069],[-15.177,-1.952],[-18.658,-2.572],[0,0]],"v":[[-1031.966,168.567],[-944.088,137.742],[-895.138,127.431],[-886.426,125.986],[-878.306,103.938],[-879.872,83.09],[-927.192,75.117],[-977.525,66.828],[-1040.1,58.04]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Body stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.786,0.328],[1.74,3.307]],"o":[[0,0],[6.786,-0.328],[0,0]],"v":[[-935.283,67.157],[-924.073,84.367],[-922.325,63.419]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.099,77.667],[-926.13,97.99],[-915.766,79.701]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.793,0.13],[1.643,3.357]],"o":[[0,0],[6.793,-0.13],[0,0]],"v":[[-941.728,74.524],[-931.026,92.053],[-928.667,71.165]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":479},{"s":[{"c":false,"i":[[0,0],[-6.299,-2.545],[0.194,3.732]],"o":[[0,0],[6.299,2.545],[0,0]],"v":[[-929.042,74.788],[-926.073,95.111],[-915.709,76.822]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.336,-4.193],[-7.048,12.388],[0,0]],"o":[[0,0],[0.336,4.193],[7.048,-12.388],[0,0]],"v":[[-967.396,70.28],[-966.982,92.347],[-954.188,91.31],[-948.178,71.101]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.711,72.936],[-968.081,94.964],[-955.245,94.964],[-947.623,75.306]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-0.502,-4.176],[-6.552,12.658],[0,0]],"o":[[0,0],[0.502,4.176],[6.552,-12.657],[0,0]],"v":[[-968.677,74.147],[-967.389,96.18],[-954.647,94.638],[-952.185,73.573]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":479},{"s":[{"c":false,"i":[[0,0],[0.003,-4.207],[-8.026,11.778],[0,0]],"o":[[0,0],[-0.003,4.207],[8.026,-11.778],[0,0]],"v":[[-966.188,71.086],[-967.557,93.113],[-954.721,93.113],[-947.099,73.455]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front leg stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-3.865,-14.502],[-5.415,2.069],[-39.37,12.366],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[2.792,10.475],[38.55,-14.727],[8.123,-2.552],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1040.275,107.689],[-1035.983,136.56],[-1021.07,163.518],[-946.203,138.095],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.333,-0.61],[17.812,-3.607],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.648,1.307],[-37.863,16.776],[-7.27,4.344],[-2.649,1.258],[4.593,10.597]],"o":[[-14.717,6.735],[-21.422,4.338],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[42.676,-9.879],[7.785,-3.449],[3.142,-1.877],[1.254,-0.596],[-3.939,-9.087]],"v":[[-902.683,56.005],[-936.626,66.148],[-993.809,67.38],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1037.089,168.24],[-943.484,129.224],[-889.953,100.482],[-881.226,96.275],[-883.255,77.8]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.521,1.768],[-39.72,11.191],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.301,-12.585],[8.195,-2.309],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1036.16,164.725],[-944.746,137.992],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.581,1.568],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.728,-11.163],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1039.51,169.651],[-934.896,130.872],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-0.341,-7.289],[-3.264,-16.174],[-5.481,1.889],[-35.943,9.646],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[0.386,8.254],[1.932,9.574],[38.292,-13.201],[8.223,-2.207],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.333,103.193],[-1040.703,133.856],[-1026.683,163.151],[-944.754,135.651],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.583,1.564],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.531,-11.072],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1041.706,106.106],[-1040.703,133.856],[-1041.259,168.215],[-935.952,128.606],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.453,0.196],[21.572,2.678],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.535,1.723],[-39.481,14.128],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-20.041,-2.707],[-21.69,-2.693],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.401,-12.267],[8.017,-2.869],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-876.779,83.659],[-929.197,77.973],[-994.573,67.273],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1033.157,166.137],[-945.876,138.227],[-902.877,126.291],[-893.272,125.025],[-879.105,103.294]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.217,-0.818],[23.139,-2.196],[21.402,4.457],[18.263,4.572],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.564,1.629],[-37.407,17.425],[-4.951,6.871],[-1.932,2.205],[5.564,10.122]],"o":[[-16.784,11.281],[-21.758,2.065],[-4.694,-0.978],[-4.864,-1.218],[0.511,20.071],[1.842,7.174],[0.62,9.748],[39.604,-11.597],[13.214,-6.155],[2.14,-2.97],[0.915,-1.044],[-4.77,-8.679]],"v":[[-901.247,52.622],[-942.873,71.873],[-995.053,68.665],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1043.307,171.458],[-939.578,132.661],[-892.46,101.829],[-886.117,94.506],[-889.95,68.849]]}],"t":419.156},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-0.02,-7.297],[-3.003,-14.567],[-5.415,2.069],[-39.37,12.366],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[0.022,8.144],[1.972,9.566],[38.55,-14.727],[8.123,-2.552],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1022.487,163.203],[-946.203,138.095],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":479},{"s":[{"c":true,"i":[[1.399,0.439],[18.781,3.915],[21.402,4.457],[16.586,2.133],[-0.306,-12.008],[-1.814,-7.068],[-0.953,-14.978],[-5.433,2.023],[-28.721,6.105],[-8.264,1.851],[-2.908,0.377],[-2.559,11.263]],"o":[[-17.12,-5.368],[-21.396,-4.46],[-4.694,-0.978],[-4.973,-0.64],[0.511,20.071],[1.842,7.174],[0.62,9.748],[38.674,-14.397],[8.328,-1.77],[3.572,-0.8],[1.377,-0.173],[2.195,-9.657]],"v":[[-880.05,83.285],[-927.907,73.168],[-993.058,64.6],[-1042.754,57.733],[-1043.953,75.951],[-1043.412,110.054],[-1040.703,133.856],[-1020.11,163.685],[-944.189,137.494],[-895.942,127.358],[-886.337,126.091],[-879.105,103.294]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Body fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":30,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1107.804,-2.384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[699.196,282.616,0]},"r":{"a":0,"ix":10,"k":30},"s":{"a":0,"ix":6,"k":[55,55,100]}},"nm":"Body","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-9.643,2.5],[-10.714,-5]],"o":[[9.643,-2.5],[10.714,5]],"v":[[-1255.941,20.307],[-1217.727,21.736]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392156863,0.372549019608,0.847058823529,1]},"hd":false,"lc":1,"lj":1,"ml":4,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back stroke","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[2.744,6.946],[0.714,1.964]],"o":[[0,0],[-2.797,-7.082],[-0.714,-1.964]],"v":[[-1314.101,113.308],[-1324.413,90.448],[-1330.214,68.56]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392156863,0.372549019608,0.847058823529,1]},"hd":false,"lc":1,"lj":1,"ml":4,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Neck stroke","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.373,3.468],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.389,9.68]],"o":[[-13.173,-4.404],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.337,-8.983]],"v":[[-1246.03,82.507],[-1295.763,79.593],[-1313.439,98.917],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.76,149.779]]}],"t":0},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[9.772,2.502],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[0.352,3.422],[-10.506,-8.72],[-15.274,-6.539],[-28.536,-3.208],[-49.164,18.593]],"o":[[-13.653,-3.496],[-7.855,2.563],[8.522,13.557],[-1.453,-5.936],[3.387,9.315],[19.123,10.673],[20.539,8.793],[42.6,4.79],[38.599,-14.598]],"v":[[-1235.049,76.656],[-1295.763,74.593],[-1315.892,96.215],[-1301.631,111.689],[-1303.079,102.421],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1034.906,144.76]]}],"t":59.881},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.655,-1.864],[-47.436,11.182]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[44.048,2.866],[40.166,-9.468]],"v":[[-1251.563,84.365],[-1291.477,84.593],[-1311.249,101.929],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.489,145.274]]}],"t":120},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-17.008,-2.329],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.006,2.529],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-45.238,15.188]],"o":[[13.761,1.885],[-7.855,2.563],[5.843,7.842],[-0.024,-5.489],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.121,-13.134]],"v":[[-1244.34,80.045],[-1293.62,79.236],[-1315.535,97.286],[-1302.346,110.796],[-1302.007,104.028],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1034.371,145.567]]}],"t":180},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.652,-1.911],[-40.849,8.456]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[47.329,3.157],[40.602,-8.404]],"v":[[-1249.659,83.597],[-1292.548,82.45],[-1311.606,100.858],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1042.009,149.269]]}],"t":239},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[16.869,2.178],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.184,2.529],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-41.33,13.504]],"o":[[-13.776,-1.779],[-7.855,2.563],[6.558,11.235],[-1.096,-5.311],[2.137,7.886],[19.123,10.673],[20.539,8.793],[42.6,4.79],[40.953,-13.381]],"v":[[-1235.955,75.836],[-1294.691,77.807],[-1315.892,96.215],[-1300.381,115.261],[-1301.471,107.243],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1038.714,145.237]]}],"t":299},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.064,2.561],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.611,9.208]],"o":[[-13.461,-3.425],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[40.336,-8.716]],"v":[[-1248.731,83.85],[-1294.334,81.379],[-1313.392,100.144],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.368,148.506]]}],"t":360},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-0.006,0.743],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-41.864,11.743]],"o":[[13.75,1.964],[-7.855,2.563],[9.593,13.378],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[38.884,-10.908]],"v":[[-1244.114,81.007],[-1293.62,79.236],[-1315.535,97.286],[-1299.845,115.261],[-1300.936,106.35],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1039.498,147.782]]}],"t":420},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[10.373,3.468],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.536,-3.208],[-42.389,9.68]],"o":[[-13.173,-4.404],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[42.6,4.79],[39.337,-8.983]],"v":[[-1246.03,82.507],[-1295.763,79.593],[-1313.439,98.917],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.76,149.779]]}],"t":479},{"s":[{"c":false,"i":[[-13.75,-1.964],[16.964,-5.536],[3.7,-12.158],[-3.239,-3.525],[-1.613,5.208],[-4.97,-4.077],[-15.274,-6.539],[-28.7,-0.957],[-43.474,7.821]],"o":[[13.75,1.964],[-7.855,2.563],[8.522,16.414],[-1.453,-5.936],[2.439,11.595],[19.123,10.673],[20.539,8.793],[46.257,1.543],[40.099,-7.214]],"v":[[-1256.298,85.307],[-1291.477,84.593],[-1311.249,101.929],[-1295.559,120.796],[-1298.078,105.635],[-1277.042,130.456],[-1245.675,144.789],[-1170.019,161.656],[-1037.403,150.317]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-11.523,-2.936],[-2.802,-6.168]],"o":[[14.26,4.062],[16.499,6.033],[13.932,3.55],[4.737,10.425]],"v":[[-1207.46,94.306],[-1148.093,115.555],[-1088.67,132.069],[-1039.595,149.676]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-6.184,-2.263],[-3.682,-5.009]],"o":[[14.26,4.062],[16.499,6.033],[13.502,4.941],[6.783,9.226]],"v":[[-1199.004,84.682],[-1146.968,101.722],[-1084.936,125.891],[-1042.976,147.07]]}],"t":60},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.667,-3.608],[-9.292,-2.345],[-19.314,-2.623],[-3.682,-5.009]],"o":[[14.26,4.062],[15.848,4],[14.246,1.935],[6.783,9.226]],"v":[[-1207.615,98.59],[-1151.915,115.616],[-1077.756,129.589],[-1042.976,147.07]]}],"t":120},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.292,-2.345],[-20.733,-9.898],[-3.682,-5.009]],"o":[[14.399,2.936],[15.848,4],[12.974,6.194],[6.783,9.226]],"v":[[-1208.438,86.679],[-1150.633,101.736],[-1077.515,127.186],[-1040.833,147.135]]}],"t":180},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.292,-2.345],[-26.039,-5.637],[-3.682,-5.009]],"o":[[14.399,2.936],[15.848,4],[14.052,3.042],[6.783,9.226]],"v":[[-1219.753,95.327],[-1156.239,113.451],[-1070.957,130.739],[-1040.833,147.135]]}],"t":239},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-24.479,-10.515],[-4.427,-4.191]],"o":[[14.399,2.936],[16.56,5.468],[13.966,5.999],[8.316,7.872]],"v":[[-1208.326,80.918],[-1152.769,97.332],[-1072.806,127.56],[-1039.35,145.021]]}],"t":299},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-27.009,-7.888],[-5.836,-3.941]],"o":[[14.399,2.936],[16.56,5.468],[14.59,4.261],[9.49,6.408]],"v":[[-1219.77,92.141],[-1161.783,109.844],[-1076.748,133.875],[-1041.021,148.827]]}],"t":360},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-12.905,-2.632],[-9.1,-3.005],[-27.555,-9.896],[-7.911,-7.462]],"o":[[14.399,2.936],[16.56,5.468],[14.735,5.292],[8.33,7.857]],"v":[[-1212.875,84.343],[-1157.957,97.426],[-1082.188,122.914],[-1039.932,146.911]]}],"t":420},{"s":[{"c":false,"i":[[-12.667,-3.608],[-9,-3.291],[-11.523,-2.936],[-2.802,-6.168]],"o":[[14.26,4.062],[16.499,6.033],[13.932,3.55],[4.737,10.425]],"v":[[-1207.46,94.306],[-1148.093,115.555],[-1088.67,132.069],[-1039.595,149.676]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Body stroke","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[19.41,5.144]],"o":[[-5.188,2.946],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-17.238,-11.627],[-57.952,-15.357]],"v":[[-1302.432,82.648],[-1313.672,98.703],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.964,149.872],[-1114.01,126.202]]}],"t":0},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-6.81,-5.862],[-0.184,3.585],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-39.347,13.459],[30.835,13.035]],"o":[[-5.188,2.946],[3.623,5.711],[-2.826,-7.055],[3.03,8.406],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-16.44,-11.668],[-57.818,-24.441]],"v":[[-1302.432,77.648],[-1315.458,97.275],[-1301.453,112.062],[-1303.079,102.437],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1042.571,146.304],[-1108.254,116.857]]}],"t":59.881},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[29.773,4.603]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-10.076,-14.505],[-63.874,-9.875]],"v":[[-1293.503,86.22],[-1310.862,100.691],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1043.499,146.77],[-1108.656,124.948]]}],"t":119.76},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-0.542,3.763],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-36.219,10.095],[24.563,7.936]],"o":[[-5.404,2.527],[3.445,7.676],[-0.738,-4.076],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-59.501,-19.223]],"v":[[-1295.646,80.863],[-1315.458,96.203],[-1301.274,110.634],[-1302.007,103.151],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.977,147.369],[-1113.146,113.217]]}],"t":180},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[29.37,-9.346],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-34.568,7.149],[28.261,3.569]],"o":[[-11.724,3.731],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-7.01,-14.133],[-71.026,-8.969]],"v":[[-1293.503,82.648],[-1311.172,102.275],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.968,148.872],[-1111.548,122.455]]}],"t":239},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[46,-16.206],[3.088,-9.11],[-9.125,-5.056],[-0.006,3.049],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-33.958,10.395],[22.32,8.333]],"o":[[-11.604,4.088],[3.445,7.676],[-2.826,-7.055],[3.208,9.478],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-57.141,-21.332]],"v":[[-1295.646,78.005],[-1315.458,97.632],[-1299.31,115.098],[-1301.471,106.365],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.99,144.865],[-1111.112,112.554]]}],"t":299},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[29.37,-9.346],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[21.736,5.604]],"o":[[-11.724,3.731],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-63.187,-16.29]],"v":[[-1294.218,81.577],[-1313.315,99.418],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.38,148.757],[-1108.965,125.103]]}],"t":360},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-1.989,-1.398],[0.173,2.871],[-2.841,-2.082],[-13.885,-5.039],[-32.131,-4.558],[-37.522,9.906],[19.491,7.317]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.237,5.424],[-9.801,-12.85],[-61.091,-22.934]],"v":[[-1295.646,80.863],[-1315.458,96.203],[-1298.774,115.098],[-1300.936,105.473],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1039.774,147.41],[-1107.828,113.774]]}],"t":420},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[33.991,-19.305],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[19.41,5.144]],"o":[[-5.188,2.946],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-17.238,-11.627],[-57.952,-15.357]],"v":[[-1302.432,82.648],[-1313.672,98.703],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1038.964,149.872],[-1114.01,126.202]]}],"t":479},{"s":[{"c":true,"i":[[27.919,-13.055],[3.088,-9.11],[-9.125,-5.056],[-1.366,4.59],[-2.841,-2.082],[-13.885,-5.039],[-32.21,-3.955],[-35.397,6.169],[23.396,4.936]],"o":[[-5.404,2.527],[3.445,7.676],[-2.826,-7.055],[2.439,11.595],[8.543,6.26],[11.386,4.132],[38.624,4.743],[-15.921,-10.931],[-63.25,-13.343]],"v":[[-1293.503,86.22],[-1311.172,100.846],[-1294.488,120.634],[-1298.078,104.758],[-1275.526,130.476],[-1244.425,145.34],[-1169.705,161.133],[-1040.119,149.376],[-1104.989,131.714]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.933333337307,0.933333337307,0.933333337307,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Stomach fill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-6.396,1.771],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.498,-5.953],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1053.062,152.536],[-1031.275,147.86],[-1032.083,110.145]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-5.731,1.105],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.904,-4.222],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1052.663,147.999],[-1033.775,144.094],[-1032.083,110.145]]}],"t":120},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.057,150.342],[-1033.487,145.319],[-1032.083,110.145]]}],"t":180},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.057,150.342],[-1032.66,146.876],[-1032.083,110.145]]}],"t":239},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.088,148.744],[-1033.916,143.741],[-1032.083,110.145]]}],"t":299},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.287,150.531],[-1030.193,144.69],[-1032.083,110.145]]}],"t":420},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[23.666,8.925],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-21.669,4.519],[-5.731,1.105],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-30.661,-11.563],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.962,-1.661],[21.904,-4.222],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1185.517,17.404],[-1276.026,9.248],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1051.851,152.384],[-1031.472,147.959],[-1032.083,110.145]]}],"t":479},{"s":[{"c":true,"i":[[-0.374,5.242],[16.503,2.703],[26.969,3.83],[21.942,5.281],[31.226,-8.5],[-0.023,-0.353],[-1.814,-7.068],[-5.528,-9.335],[-68.456,-10.716],[-19.079,5.489],[-5.484,2],[3.895,9.734]],"o":[[1.045,-14.65],[-24.616,-4.033],[-22.345,-3.173],[-31.859,-7.668],[-18.173,4.947],[0.598,4.445],[1.842,7.174],[67.53,10.28],[22.162,3.469],[7.816,-2.249],[19.524,-7.121],[-3.679,-9.195]],"v":[[-1034.844,85.315],[-1042.754,57.733],[-1123.567,45.599],[-1191.582,26.904],[-1268.596,24.165],[-1329.932,58.898],[-1326.27,71.482],[-1310.77,102.321],[-1102.032,146.725],[-1050.384,151.403],[-1025.3,148.022],[-1032.083,110.145]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,115]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Body fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":31,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1021.732,79.759,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1022.249,79.437,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.786],"y":[0.766]},"o":{"x":[0.449],"y":[0]},"s":[-9.418],"t":0},{"i":{"x":[0.612],"y":[1.279]},"o":{"x":[0.2],"y":[0.598]},"s":[1.248],"t":100},{"i":{"x":[0.873],"y":[0.898]},"o":{"x":[0.499],"y":[0.047]},"s":[4.179],"t":175},{"i":{"x":[0.903],"y":[1.418]},"o":{"x":[0.184],"y":[0.649]},"s":[-23.418],"t":267},{"i":{"x":[0],"y":[0.925]},"o":{"x":[0.289],"y":[0.097]},"s":[-29.778],"t":360},{"i":{"x":[0.55],"y":[1]},"o":{"x":[0.283],"y":[-0.336]},"s":[-4.418],"t":389},{"s":[-9.418],"t":479}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Tail","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.896,-1.878],[-2.215,0.918],[-0.725,2.253],[2.628,6.086]],"o":[[1.228,2.466],[1.896,1.878],[1.995,-0.827],[1.933,-6.005],[0,0]],"v":[[-931.841,14.251],[-925.794,21.795],[-918.992,23.87],[-913.644,18.061],[-915.278,0.896]]}],"t":100},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.935,-2.382],[-2.299,-0.054],[-1.51,1.695],[-0.056,6.357]],"o":[[0.12,2.639],[0.935,2.382],[2.071,0.048],[4.024,-4.517],[0,0]],"v":[[-922.293,20.266],[-919.915,29.228],[-914.754,33.685],[-907.812,30.664],[-902.587,14.977]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.942,41.899],[-901.384,26.93]]}],"t":175},{"i":{"x":0.35,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.715,39.989],[-901.156,25.02]]}],"t":222},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.974,2.157],[6.033,2.748]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-2.597,-5.749],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-927.673,0.611],[-940.404,-11.018]]}],"t":360},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-0.944,-2.244],[-2.188,0.002],[-1.207,1.598],[0.405,5.595]],"o":[[0.175,2.508],[0.944,2.244],[1.971,-0.002],[3.217,-4.26],[0,0]],"v":[[-927.521,20.989],[-925.051,29.458],[-920.04,33.578],[-914.021,29.875],[-910.545,15.703]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-0.467,-2.627],[-2.34,-0.526],[-1.891,1.423],[-1.36,6.488]],"o":[[-0.418,2.723],[0.467,2.627],[2.107,0.474],[5.04,-3.793],[0,0]],"v":[[-922.389,26.388],[-921.795,36.039],[-917.433,41.654],[-909.715,39.989],[-901.156,25.02]]}],"t":389},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-1.577,-1.736],[-2.339,-0.147],[-0.445,2.032],[2.811,5.103]],"o":[[0.963,2.221],[1.577,1.736],[1.894,0.119],[1.186,-5.415],[0,0]],"v":[[-930.528,11.668],[-926.153,14.886],[-919.03,20.502],[-914.84,14.971],[-917.712,0.093]]}],"t":440},{"s":[{"c":false,"i":[[0,0],[-2.465,-1.022],[-1.704,1.687],[0.179,2.36],[4.732,4.643]],"o":[[2.069,1.82],[2.465,1.022],[1.535,-1.519],[-0.479,-6.29],[0,0]],"v":[[-943.805,6.761],[-935.356,11.463],[-928.274,10.815],[-925.517,3.416],[-933.513,-11.861]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.991,-0.844],[-0.659,0.841],[-0.111,0.583],[1.858,5.501]],"o":[[1.665,3.989],[1.065,0.225],[0.352,-0.449],[1.048,-5.51],[0,0]],"v":[[-963.088,31.387],[-951.239,43.515],[-948.293,42.82],[-947.694,41.188],[-948.438,23.629]]}],"t":100},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.859,-1.281],[-0.746,0.76],[-0.175,0.566],[1.227,5.656]],"o":[[1.205,4.137],[1.03,0.342],[0.398,-0.405],[1.652,-5.342],[0,0]],"v":[[-960.669,28.82],[-949.82,43.542],[-946.823,43.182],[-946.048,41.632],[-944.829,24.154]]}],"t":125},{"i":{"x":0.35,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-3.796,-1.494],[-0.789,0.72],[-0.206,0.557],[0.921,5.732]],"o":[[0.981,4.209],[1.013,0.399],[0.421,-0.384],[1.946,-5.26],[0,0]],"v":[[-960.671,32.171],[-950.307,48.155],[-947.286,47.957],[-946.426,46.447],[-944.251,29.008]]}],"t":222},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":360},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.863,-1.131],[-0.711,0.778],[-0.153,0.566],[1.414,5.552]],"o":[[1.338,4.05],[1.031,0.302],[0.38,-0.415],[1.446,-5.343],[0,0]],"v":[[-963.005,29.406],[-951.735,43.801],[-948.784,43.339],[-948.071,41.778],[-947.482,24.444]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":false,"i":[[0,0],[-3.796,-1.494],[-0.789,0.72],[-0.206,0.557],[0.921,5.732]],"o":[[0.981,4.209],[1.013,0.399],[0.421,-0.384],[1.946,-5.26],[0,0]],"v":[[-960.671,32.171],[-950.307,48.155],[-947.286,47.957],[-946.426,46.447],[-944.251,29.008]]}],"t":389},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[0,0],[-3.865,-1.122],[-0.71,0.779],[-0.152,0.566],[1.425,5.548]],"o":[[1.347,4.047],[1.031,0.3],[0.379,-0.416],[1.434,-5.345],[0,0]],"v":[[-962.389,29.732],[-951.098,44.088],[-948.148,43.62],[-947.439,42.058],[-946.887,24.727]]}],"t":411},{"s":[{"c":false,"i":[[0,0],[-4.079,0.025],[-0.464,0.962],[0.016,0.594],[2.986,4.979]],"o":[[2.476,3.543],[1.089,-0.007],[0.248,-0.513],[-0.149,-5.606],[0,0]],"v":[[-967.217,29.482],[-953.059,38.81],[-950.328,37.503],[-950.09,35.782],[-954.555,18.784]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.964705884457,0.549019634724,0.129411771894,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tail stripes","np":4,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.793,-6.973],[7.825,-4.687],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.475,7.931],[-17.784,9.83],[-5.599,10.507],[1.862,9.139],[6.419,2.07],[6.443,-6.19]],"o":[[-6.665,8.023],[-13.516,8.095],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[15.119,-4.211],[14.681,-8.115],[3.057,-5.737],[-1.298,-6.37],[-8.503,-2.742],[-6.552,6.295]],"v":[[-913.983,-3.94],[-935.884,15.433],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-954.71,64.138],[-905.756,45.069],[-871.05,11.89],[-864.477,-14.787],[-876.762,-29.172],[-900.496,-23.687]]}],"t":100},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[10.806,-1.498],[12.204,-2.842],[20.226,-9.798],[14.416,-11.45],[-4.091,-2.787],[-3.41,3.588],[-28.793,6.62],[-16.146,1.303],[-10.409,2.045],[-5.265,6.43],[2.183,5.599],[7.902,0.967]],"o":[[-9.833,1.363],[-14.927,4.074],[-24.436,11.837],[0,0],[4.091,2.787],[7.645,-8.045],[16.795,-3.826],[15.433,-1.246],[5.684,-1.117],[3.67,-4.482],[-2.892,-7.417],[-8.036,-0.983]],"v":[[-902.522,13.767],[-932.399,19.878],[-989.261,37.393],[-1035.189,65.133],[-1035.866,71.507],[-991.717,79.369],[-955.175,63.419],[-906.595,56.131],[-868.545,54.335],[-852.86,43.273],[-851.321,23.863],[-870.597,11.312]]}],"t":125},{"i":{"x":0.667,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[19.97,5.88],[15.44,-0.965],[15.928,-6.282],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.873,12.312],[-16.823,-3.387],[-8.747,-3.952],[-8.563,3.696],[-0.71,6.708],[7.379,5.037]],"o":[[-10.447,-3.076],[-15.725,0.983],[-22.31,8.8],[0,0],[4.091,2.787],[-1.433,-11.582],[19.149,-8.773],[12.837,2.584],[5.924,2.677],[5.969,-2.576],[0.94,-8.885],[-7.504,-5.123]],"v":[[-893.909,28.164],[-931.069,25.376],[-986.464,36.902],[-1035.258,64.111],[-1035.934,70.485],[-991.717,79.369],[-959.467,69.379],[-910.841,64.299],[-885.68,78.513],[-859.232,81.227],[-847.831,67.037],[-859.563,43.484]]}],"t":175},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[8.466,-0.786],[14.333,-1.944],[21.628,-8.358],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.947,5.982],[-20.307,-0.725],[-11.876,0.847],[-6.749,6.438],[1.662,6.537],[8.668,2.164]],"o":[[-13.282,1.233],[-15.612,2.118],[-22.37,8.644],[0,0],[4.091,2.787],[-1.433,-11.582],[17.61,-3.639],[14.223,0.507],[6.484,-0.462],[4.704,-4.487],[-2.201,-8.659],[-8.816,-2.2]],"v":[[-897.988,22.601],[-931.069,25.376],[-989.384,38.424],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.467,69.379],[-907.367,64.847],[-875.835,66.604],[-849.748,57.981],[-844.101,39.927],[-861.37,22.746]]}],"t":222},{"i":{"x":0.35,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.693,-6.245],[10.36,-4.344],[20.804,-7.776],[11.697,-11.071],[-4.091,-2.787],[-0.95,4.519],[-13.965,3.765],[-17.528,7.256],[-8.346,8.983],[-0.316,7.163],[4.904,2.721],[5.92,-4.334]],"o":[[-7.368,5.294],[-12.852,6.82],[-22.468,8.382],[0,0],[4.091,2.787],[4.004,-6.166],[18.461,-4.977],[15.294,-6.331],[5.875,-6.323],[0.221,-4.992],[-6.496,-3.605],[-7.784,5.699]],"v":[[-914.188,4.9],[-939.217,18.61],[-989.758,39.132],[-1027.718,59.133],[-1028.394,65.506],[-996.339,81.354],[-956.136,65.029],[-907.089,48.103],[-870.699,26.01],[-862.75,6.301],[-873.11,-9.611],[-893.917,-9.866]]}],"t":238},{"i":{"x":0.5,"y":1},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[-2.866,4.035],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[7.173,-10.101],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-1002.022,83.793],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":267},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[-0.386,-9.057],[3.26,-4.77],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[-3.582,3.416],[-21.918,9.852],[-12.827,22.947],[2.9,11.547],[7.514,5.525],[6.148,-2.774],[0.622,-8.913]],"o":[[0.444,10.42],[-8.889,13.008],[-22.588,8.059],[0,0],[4.091,2.787],[8.91,-8.497],[14.315,-6.434],[8.185,-14.642],[-1.584,-6.305],[-5.237,-3.851],[-8.144,3.674],[-0.633,9.064]],"v":[[-942.641,-15.553],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-1000.689,85.225],[-952.04,59.68],[-909.381,22.995],[-900.983,-32.54],[-913.221,-56.819],[-931.982,-59.238],[-945.896,-39.243]]}],"t":360},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.048,-4.411],[6.901,-3.405],[14.9,-7.746],[11.697,-11.071],[-4.091,-2.787],[-1.668,4.099],[-25.129,8.085],[-15.041,7.902],[-7.745,9.655],[1.913,7.233],[4.539,2.003],[5.515,-2.229]],"o":[[-5.687,4.81],[-13.072,7.749],[-13.612,7.077],[0,0],[4.091,2.787],[9.079,-6.046],[15.82,-5.158],[10.64,-5.59],[3.647,-5.035],[-1.293,-5.134],[-6.013,-2.653],[-7.738,3.128]],"v":[[-923.079,2.755],[-942.197,14.671],[-987.324,37.071],[-1027.718,59.133],[-1028.394,65.506],[-996.591,82.55],[-955.478,62.396],[-901.682,40.717],[-874.213,19.461],[-870.76,-3.352],[-880.31,-15.315],[-898.077,-14.915]]}],"t":369},{"i":{"x":0.45,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.003,-1.313],[9.328,-2.495],[15.013,-6.646],[11.697,-11.071],[-4.091,-2.787],[-0.392,4.555],[-27.269,6.906],[-16.611,2.03],[-12.031,4.89],[-2.515,5.746],[1.819,4.461],[6.327,0.832]],"o":[[-9.773,1.069],[-15.861,4.243],[-14.833,6.566],[0,0],[4.091,2.787],[9.192,-4.412],[16.824,-4.307],[13.081,-1.599],[5.811,-2.362],[1.806,-4.126],[-2.41,-5.908],[-13.2,-1.737]],"v":[[-910.037,14.959],[-938.616,19.691],[-985.394,35.116],[-1027.718,59.133],[-1028.394,65.506],[-993.859,80.767],[-957.77,64.207],[-908.581,54.161],[-869.054,53.365],[-856.392,39.808],[-856.337,25.824],[-870.284,13.944]]}],"t":375},{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"s":[{"c":true,"i":[[11.752,-0.504],[14.333,-1.944],[21.628,-8.358],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-28.947,5.982],[-20.307,-0.725],[-11.7,-2.202],[-7.794,5.123],[0.462,6.729],[8.14,3.683]],"o":[[-13.327,0.571],[-15.612,2.118],[-22.37,8.644],[0,0],[4.091,2.787],[-1.433,-11.582],[17.61,-3.639],[14.223,0.507],[7.28,1.37],[5.432,-3.571],[-0.612,-8.913],[-8.278,-3.746]],"v":[[-897.988,22.601],[-931.069,25.376],[-989.384,38.424],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.467,69.379],[-907.367,64.847],[-880.001,68.66],[-852.791,64.856],[-843.997,48.108],[-857.904,28.108]]}],"t":389},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.671,-2.069],[12.21,-3.227],[20.676,-8.288],[8.839,-6.681],[-4.091,-2.787],[-1.364,4.072],[-28.273,7.858],[-18.044,0.564],[-9.814,2.664],[-4.366,6.888],[2.791,5.196],[7.812,0.004]],"o":[[-10.85,1.771],[-14.137,4.63],[-18.956,7.598],[0,0],[4.091,2.787],[4.538,-2.167],[16.715,-4.524],[14.364,-0.449],[5.914,-1.35],[3.043,-4.801],[-3.697,-6.882],[-7.945,-0.004]],"v":[[-904.067,12.1],[-935.877,18.915],[-990.747,37.447],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-959.183,66.079],[-905.979,55.951],[-870.091,53.225],[-851.723,41.438],[-853.804,20.286],[-874.924,9.497]]}],"t":411},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.458,-5.877],[9.412,-4.917],[20.607,-7.637],[11.697,-11.071],[-4.091,-2.787],[-3.963,2.965],[-27.384,10.331],[-14.681,10.758],[-5.347,8.541],[1.033,7.826],[5.298,2.126],[5.804,-4.846]],"o":[[-6.665,7.138],[-12.193,7.942],[-22.491,8.319],[0,0],[4.091,2.787],[9.949,-7.444],[15.536,-5.691],[12.148,-7.669],[2.919,-4.663],[-0.72,-5.454],[-7.017,-2.816],[-5.903,4.928]],"v":[[-917.202,-3.893],[-940.235,15.246],[-989.848,39.301],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-955.341,63.99],[-899.576,38.114],[-875.412,14.704],[-869.638,-9.2],[-879.004,-23.238],[-901.65,-20.711]]}],"t":440},{"s":[{"c":true,"i":[[2.73,-8.645],[5.475,-7.296],[19.79,-7.061],[11.697,-11.071],[-4.091,-2.787],[0.608,4.912],[-26.134,13.811],[-12.754,15.819],[-1.216,11.843],[5.176,7.759],[6.726,-0.508],[3.627,-8.165]],"o":[[-3.14,9.946],[-9.457,12.601],[-22.588,8.059],[0,0],[4.091,2.787],[-1.433,-11.582],[13.876,-7.333],[10.529,-13.059],[0.664,-6.467],[-3.608,-5.408],[-8.909,0.673],[-3.689,8.303]],"v":[[-934.108,-16.865],[-947.567,7.143],[-990.219,40.002],[-1027.718,59.133],[-1028.394,65.506],[-991.717,79.369],[-952.04,59.68],[-907.978,25.406],[-888.376,-18.425],[-892.367,-45.608],[-909.175,-54.287],[-929.079,-40.243]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.08,0.103]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Tail","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-901.937,29.546]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-936.937,29.546]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Tail","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":32,"ip":0,"ks":{"a":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[-884.232,101.187,0],"t":45.906,"ti":[0,0,0],"to":[0,0,0]},{"s":[-884.232,101.187,0],"t":271.453125}]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-923.191,58.706,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-87.378],"t":0},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-62.378],"t":59.881},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-79.378],"t":119.76},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-59.378],"t":179.637},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-81.378],"t":239.518},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-55.378],"t":299.396},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-79.378],"t":359.277},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-52.378],"t":419.156},{"s":[-87.378],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back fin","op":480,"parent":33,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.96,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-1.845,-2.205],[1.796,6.759],[3.595,3.746]],"o":[[-1.095,-0.319],[-0.681,8.498],[1.627,1.231],[4.546,3.696],[3.071,3.354],[3.171,2.472],[-1.059,-3.719],[-2.226,-2.32]],"v":[[-872.735,98.118],[-879.036,100.623],[-886.904,117.446],[-870.264,125.203],[-861.487,137.822],[-853.611,149.084],[-854.009,124.884],[-861.491,106.076]]}],"t":-19},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.078,-4.109],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[5.513,4.461],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-869.833,85.277],[-874.677,90.115],[-879.407,101.286],[-862.238,105.681],[-853.655,112.26],[-835.53,127.19],[-843.868,103.291],[-857.756,90.05]]}],"t":-8},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.139,2.239],[1.257,-5.634],[3.656,-7.718],[-4.572,-2.679],[-3.282,-3.243],[-0.347,-0.269],[3.277,7.105],[4.043,4.4]],"o":[[-2.12,-0.918],[-1.289,8.129],[1.627,1.231],[3.85,2.24],[6.035,5.965],[0.139,0.25],[-2.209,-5.713],[-4.19,-4.511]],"v":[[-869.168,82.315],[-875.062,84.841],[-879.662,100.158],[-866.132,104.583],[-854.844,112.58],[-838.544,126.374],[-845.011,108.446],[-854.067,93.052]]}],"t":11.977},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.751,-2.506],[0,0],[1.661,6.389],[3.962,4.181]],"o":[[-2.11,-0.958],[-1.179,8.066],[1.627,1.231],[3.809,2.11],[6.09,4.069],[0,0],[-1.575,-6.056],[-4.604,-4.86]],"v":[[-870.392,82.634],[-876.074,85.259],[-880.179,100.693],[-866.812,104.988],[-855.554,112.497],[-837.29,124.714],[-845.116,109.312],[-854.462,93.812]]}],"t":15.969},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.155,1.287],[0.968,-5.652],[3.027,-7.985],[-4.846,-1.589],[-4.52,-1.258],[0.909,0.167],[3.411,5.088],[4.388,3.113]],"o":[[-2.2,-0.525],[-0.985,8.208],[1.72,1.097],[4.289,1.341],[7.016,2.06],[-2.741,-0.504],[-2.935,-4.65],[-4.843,-3.512]],"v":[[-873.179,84.575],[-878.85,87.591],[-882.671,103.307],[-868.814,105.908],[-855.249,109.998],[-834.016,116.985],[-845.812,104.178],[-857.382,92.154]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.735,0.576],[1.578,-5.479],[3.656,-7.718],[-5.174,-1.174],[-5.366,-1.191],[2.38,0.638],[5.212,3.603],[4.397,2.242]],"o":[[-2.218,-0.27],[-2.404,8.163],[1.627,1.231],[4.765,0.961],[10.528,2.336],[-7.177,-1.925],[-4.185,-2.893],[-4.449,-2.269]],"v":[[-875.808,96.19],[-882.053,98.622],[-888.723,113.856],[-874.724,116.57],[-858.303,117.823],[-834.804,122.88],[-849.373,109.673],[-861.984,101.076]]}],"t":31.936},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.831,1.159],[1.803,-5.371],[4.959,-6.597],[-5.834,-0.058],[-4.895,0.501],[7.618,5.671],[9.798,2.654],[4.953,2.346]],"o":[[-4.573,-1.384],[-2.749,8.096],[1.627,1.231],[5.602,-0.044],[9.287,-1.29],[-4.779,-3.558],[-5.408,-1.465],[-3.617,-1.713]],"v":[[-877.951,106.972],[-887.544,110.313],[-896.099,124.352],[-876.311,128.393],[-858.677,130.115],[-828.723,129.578],[-849.957,116.265],[-866.471,111.914]]}],"t":45.906},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.211,0.989],[2.267,-5.175],[4.658,-6.96],[-5.057,-1.488],[-5.306,-2.473],[1.24,8.152],[6.016,4.738],[4.594,3.671]],"o":[[-1.919,-0.714],[-3.443,7.858],[1.547,1.331],[5.83,1.881],[6.743,1.883],[-0.702,-5.341],[-4.043,-3.888],[-3.525,-2.817]],"v":[[-880.077,112.026],[-888.261,113.975],[-896.3,128.069],[-879.373,133.415],[-863.58,140.137],[-838.574,144.742],[-854.905,129.952],[-868.008,118.833]]}],"t":53.891},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.241,1.129],[2.71,-4.946],[4.65,-7.163],[-4.312,-2.6],[-5.267,-4.859],[-3.944,9.409],[2.895,6.067],[4.152,4.7]],"o":[[0,0],[-4.134,7.546],[1.449,1.437],[5.774,3.481],[4.504,4.155],[2.636,-6.288],[-2.701,-5.661],[-3.286,-3.72]],"v":[[-880.569,113.611],[-887.633,114.472],[-895.655,128.493],[-881.077,134.949],[-867.279,145.602],[-846.52,154.156],[-858.737,138.325],[-868.386,122.173]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.581,1.911],[2.028,-5.263],[4.371,-6.996],[-4.74,-4.98],[-3.119,-4.279],[-6.064,3.449],[2.267,8.341],[5.2,6.121]],"o":[[-2.657,-1.109],[-3.094,8.029],[1.627,1.231],[4.009,4.212],[4.74,6.504],[6.112,-3.476],[-2.206,-8.113],[-3.124,-3.677]],"v":[[-877.585,111.21],[-887.06,110.135],[-895.416,125.614],[-878.357,132.162],[-867.94,146.486],[-852.783,165.837],[-853.223,139.886],[-865.477,119.14]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.636,1.743],[2.233,-5.179],[4.746,-6.94],[-4.06,-4.164],[-3.719,-5.084],[-6.36,-3.172],[2.315,9.663],[5.225,7.089]],"o":[[-2.219,-0.864],[-3.406,7.901],[1.577,1.294],[4.093,4.13],[4.053,5.643],[4.963,1.421],[-1.674,-6.989],[-2.909,-3.946]],"v":[[-877.436,104.101],[-884.997,104.824],[-893.266,119.739],[-878.63,125.452],[-867.691,139.011],[-855.411,155.535],[-856.203,131.916],[-865.163,112.408]]}],"t":83.832},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.753,1.431],[2.175,-5.204],[4.746,-7.084],[-3.737,-3.375],[-4.358,-5.55],[-6.572,-7.885],[2.752,10.554],[5.492,7.621]],"o":[[-1.932,-0.582],[-3.318,7.938],[1.592,1.277],[4.325,3.906],[3.785,4.82],[4.057,4.868],[-1.582,-6.069],[-2.902,-4.027]],"v":[[-877.48,97.907],[-883.617,100.325],[-891.208,115.156],[-878.136,119.602],[-866.241,132.159],[-855.387,146.009],[-857.447,124.158],[-864.753,106.006]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.872,1.106],[1.854,-5.327],[3.883,-7.581],[-3.936,-3.14],[-4.689,-5.274],[-8.102,-6.823],[6.547,9.84],[5.947,7.271]],"o":[[-2.217,-0.503],[-2.828,8.126],[1.667,1.177],[4.555,3.635],[4.072,4.58],[4.794,4.077],[-3.205,-5.149],[-3.142,-3.842]],"v":[[-871.922,86.243],[-877.808,89.978],[-883.975,105.193],[-869.663,108.98],[-857.829,120.318],[-845.06,131.268],[-847.556,112.028],[-858.128,94.446]]}],"t":103.791},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.028,-5.263],[3.656,-7.718],[-3.83,-3.268],[-4.513,-5.425],[-9.109,-6.387],[9.844,9.566],[5.704,7.463]],"o":[[0,0],[-3.094,8.029],[1.627,1.231],[4.433,3.782],[3.919,4.711],[5.188,3.638],[-4.498,-4.371],[-3.014,-3.944]],"v":[[-867.865,84.454],[-874.752,86.247],[-880.838,101.211],[-866.986,106.765],[-857.051,116.633],[-841.247,125.705],[-842.18,109.22],[-854.651,91.32]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,1.328],[1.674,-5.433],[3.656,-7.718],[-3.953,-3.022],[-4.074,-3.552],[-4.554,-3.193],[5.753,7.978],[5.007,6.654]],"o":[[-1.055,-0.479],[-2.552,8.134],[3.442,0.999],[5.02,3.839],[4.246,3.702],[2.594,1.819],[-3.036,-5.214],[-2.964,-3.947]],"v":[[-869.614,85.537],[-876.369,87.49],[-881.924,102.83],[-869.736,106.41],[-855.721,119.217],[-843.252,130.308],[-845.905,112.313],[-855.909,94.886]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.224,2.416],[1.731,-5.469],[4.1,-7.491],[-2.985,-3.958],[-2.806,-3.411],[-1.09,-0.863],[2.284,6.932],[4.121,6.3]],"o":[[-1.794,-0.944],[-2.621,8.074],[4.748,1.103],[2.875,3.812],[3.767,4.579],[0.621,0.492],[-1.596,-5.949],[-2.69,-4.113]],"v":[[-870.783,87.645],[-877.548,89.326],[-883.609,104.621],[-871.487,112.015],[-861.162,123.927],[-848.771,138.252],[-850.242,117.175],[-857.386,99.657]]}],"t":133.73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.157,2.494],[1.457,-5.569],[3.843,-7.626],[-4.36,-2.557],[-2.695,-3.01],[0,0],[1.505,6.428],[4.166,5.948]],"o":[[-2.086,-1.009],[-2.211,8.188],[5.237,0.894],[3.756,2.203],[3.937,4.398],[0,0],[-1.426,-6.093],[-2.816,-4.02]],"v":[[-871.915,88.622],[-878.588,90.573],[-883.279,106.515],[-869.152,113.374],[-859.952,121.858],[-844.285,135.856],[-850.174,118.281],[-857.295,101.149]]}],"t":135.729},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.125,1.61],[1.064,-5.637],[3.258,-7.386],[-4.697,-1.851],[-3.49,-2.122],[0.609,0.091],[2.822,5.416],[4.858,5.064]],"o":[[-2.191,-0.65],[-1.633,8.319],[4.396,0.682],[4.122,1.573],[5.664,3.275],[-1.838,-0.273],[-2.917,-5.252],[-3.3,-3.435]],"v":[[-873.82,89.978],[-879.654,92.845],[-884.732,108.41],[-869.741,111.822],[-858.514,118.322],[-840.459,129.933],[-849.436,113.161],[-859.375,99.242]]}],"t":139.721},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.033,0.853],[0.807,-5.671],[2.859,-7.054],[-4.973,-1.252],[-3.992,-1.87],[1.219,0.181],[3.983,4.443],[5.406,4.284]],"o":[[-2.271,-0.342],[-1.256,8.4],[3.534,0.599],[4.435,1.036],[8.322,3.898],[-3.675,-0.546],[-4.259,-4.447],[-3.686,-2.921]],"v":[[-875.997,91.357],[-881.04,94.977],[-886.171,110.392],[-871.592,113.359],[-858.915,117.602],[-837.692,125.918],[-850.035,110.121],[-861.302,98.053]]}],"t":143.711},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.565,0.666],[1.803,-5.41],[3.972,-7.56],[-5.122,-1.387],[-5.485,-0.358],[2.351,0.736],[5.094,3.561],[5.272,4.138]],"o":[[-2.312,-0.337],[-2.739,8.057],[1.575,1.298],[4.722,1.157],[8.045,0.525],[-7.091,-2.22],[-5.712,-3.993],[-3.629,-2.848]],"v":[[-877.732,99.674],[-884.667,102.091],[-891.366,116.791],[-877.491,120.081],[-861.135,122.011],[-836.998,124.6],[-852.786,115.148],[-864.472,105.057]]}],"t":151.693},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.984,0.38],[2.375,-5.144],[4.446,-7.291],[-5.795,-0.67],[-4.92,-0.016],[6.98,6.44],[8.308,0.844],[4.679,2.853]],"o":[[-2.484,-0.237],[-3.584,7.763],[1.489,1.395],[5.576,0.544],[9.371,-0.308],[-4.379,-4.04],[-5.574,-0.567],[-3.417,-2.083]],"v":[[-880.24,110.098],[-887.263,112.684],[-894.887,126.927],[-880.554,129.777],[-861.962,129.924],[-832.407,123.339],[-854.008,119.081],[-869.039,114.422]]}],"t":165.666},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.397,1.116],[2.535,-5.038],[4.397,-7.321],[-4.4,-2.448],[-5.433,-4.672],[-3.613,9.541],[3.105,5.962],[4.314,4.552]],"o":[[-3.146,-0.651],[-3.868,7.686],[1.498,1.385],[5.892,3.277],[4.646,3.995],[2.414,-6.376],[-2.897,-5.563],[-3.414,-3.603]],"v":[[-878.291,115.102],[-887.793,116.723],[-895.009,130.282],[-878.387,136.824],[-864.225,146.989],[-843.18,154.811],[-855.942,139.418],[-866.15,123.612]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.617,1.822],[1.76,-4.225],[5.137,-6.081],[-4.048,-3.443],[-3.1,-4.432],[-8.892,2.329],[2.555,7.901],[4.698,6.349]],"o":[[-1.656,-0.653],[-3.309,7.943],[1.509,1.374],[4.04,3.436],[4.246,6.07],[6.802,-1.781],[-2.161,-6.683],[-3.016,-3.909]],"v":[[-881.012,110.281],[-886.815,110.988],[-896.013,125.478],[-882.488,130.514],[-873.063,144.997],[-857.731,162.515],[-856.734,140.021],[-869.037,118.002]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.785,2.52],[1.429,-4.179],[4.74,-6.769],[-3.703,-3.578],[-3.576,-5.248],[-7.245,-3.795],[2.207,9.523],[4.812,7.304]],"o":[[-0.707,-0.286],[-2.9,8.481],[1.497,1.387],[4.026,3.889],[3.759,5.517],[5.037,2.201],[-1.558,-6.395],[-2.769,-4.099]],"v":[[-879.802,104.761],[-886.308,105.673],[-894.61,120.014],[-881.651,125.188],[-871.188,139.709],[-859.174,155.064],[-858.952,132.889],[-867.563,113.286]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.703,2.946],[1.141,-4.158],[4.327,-7.362],[-3.525,-3.595],[-4.013,-5.805],[-6.081,-8.27],[2.106,10.702],[5.019,7.94]],"o":[[0,0],[-2.451,8.932],[1.511,1.371],[4.08,4.161],[3.485,5.041],[3.754,5.105],[-1.211,-6.154],[-2.652,-4.196]],"v":[[-877.896,98.756],[-884.915,99.93],[-892.306,114.295],[-879.684,119.357],[-868.203,133.73],[-858.425,147.266],[-859.154,125.33],[-865.317,107.678]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.809,1.725],[1.112,-4.436],[4.03,-6.827],[-3.838,-3.259],[-5.137,-4.767],[-8.044,-6.979],[6.697,9.973],[5.722,7.449]],"o":[[-1.227,-0.307],[-2.113,8.64],[1.63,1.227],[4.442,3.772],[4.179,3.932],[4.734,4.146],[-3.229,-5.134],[-3.024,-3.936]],"v":[[-872.802,87.265],[-878.361,89.643],[-884.901,104.329],[-871.517,108.096],[-858.57,120.923],[-846.116,131.515],[-847.907,112.561],[-858.196,95.645]]}],"t":225.547},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.705,1.58],[1.782,-4.477],[4.837,-5.676],[-3.568,-3.553],[-5.32,-4.637],[-8.592,-7.067],[9.081,10.294],[5.115,7.879]],"o":[[-2.249,-0.755],[-3.183,7.994],[1.528,1.353],[4.13,4.112],[4.125,3.595],[4.894,4.026],[-4.149,-4.703],[-2.703,-4.163]],"v":[[-869.875,82.415],[-874.489,84.934],[-882.231,101.343],[-868.87,106.075],[-856.773,119.518],[-843.765,129.424],[-843.429,112.916],[-854.57,95.149]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-3.071,-2.626],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[5.036,4.306],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-873.345,88.37],[-879.969,90.483],[-886.055,105.447],[-874.971,109.629],[-863.443,120.007],[-844.56,136.594],[-852.496,115.332],[-860.209,99.45]]}],"t":255.486},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.084,1.698],[2.084,-5.308],[4.363,-7.341],[-5.042,-1.654],[-5.459,-0.645],[2.31,0.858],[4.497,4.416],[5.522,3.798]],"o":[[-2.216,-0.74],[-3.158,7.902],[1.505,1.378],[4.654,1.403],[8.006,0.946],[-6.965,-2.589],[-4.973,-4.883],[-4.62,-3.178]],"v":[[-880.406,100.987],[-888.399,104.503],[-895.859,118.831],[-882.176,122.844],[-865.944,125.63],[-841.743,131.588],[-855.402,116.69],[-868.097,106.548]]}],"t":271.453},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.776,0.32],[1.438,-3.57],[4.362,-7.341],[-4.826,-1.058],[-4.92,0.04],[4.244,8.496],[7.997,5.014],[5.749,2.659]],"o":[[-3.262,-0.181],[-3.195,7.93],[1.505,1.378],[5.966,1.308],[9.367,-0.415],[-2.633,-5.271],[-4.747,-2.976],[-4.323,-2]],"v":[[-887.35,114.168],[-893.294,119.551],[-902.209,133.652],[-888.013,138.459],[-869.836,140.752],[-838.634,138.719],[-857.779,127.39],[-874.162,117.621]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.538,2.011],[2.889,-4.844],[4.909,-6.988],[-4.214,-2.756],[-5.085,-5.049],[-4.286,9.258],[2.671,6.169],[3.977,4.849]],"o":[[-2.169,-0.961],[-4.408,7.389],[1.395,1.489],[5.642,3.69],[4.349,4.318],[2.864,-6.187],[-2.492,-5.756],[-3.148,-3.838]],"v":[[-884.762,124.356],[-892.198,126.033],[-900.728,139.751],[-887.13,144.959],[-872.978,159.674],[-853.599,170.779],[-864.194,150.929],[-873.246,134.434]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.436,2.227],[1.673,-3.209],[5.239,-6.744],[-3.52,-3.523],[-3.702,-6.399],[-7.32,5.56],[1.531,8.161],[3.855,6.894]],"o":[[-2.12,-1.064],[-3.977,7.63],[1.322,1.554],[4.419,4.328],[3.042,5.258],[4.805,-3.65],[-1.295,-6.903],[-2.496,-4.261]],"v":[[-886.776,118.064],[-893.911,117.969],[-903.008,132.509],[-889.028,140.174],[-880.222,153.912],[-864.864,172.491],[-865.892,151.919],[-875.302,128.516]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.568,1.941],[2.141,-5.218],[4.823,-6.261],[-3.281,-3.819],[-3.624,-6.056],[-5.525,-8.651],[1.4,10.817],[4.487,8.252]],"o":[[-2.183,-0.928],[-2.234,5.444],[1.418,1.467],[3.798,4.42],[3.147,5.258],[3.411,5.34],[-0.805,-6.22],[-2.371,-4.361]],"v":[[-882.26,103.749],[-889.868,105.459],[-898.185,119.307],[-885.95,125.162],[-875.654,139.159],[-866.54,154.43],[-865.829,132.493],[-871.14,114.593]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.486,0.901],[1.787,-5.345],[3.907,-7.193],[-3.743,-3.364],[-4.37,-5.538],[-7.666,-7.248],[5.945,10.1],[5.508,7.604]],"o":[[-1.208,-0.375],[-2.313,6.764],[1.594,1.272],[4.332,3.894],[3.794,4.808],[4.528,4.333],[-2.873,-5.284],[-2.91,-4.018]],"v":[[-878.128,92.455],[-885.282,94.627],[-891.748,109.423],[-877.785,113.909],[-866.614,125.959],[-854.525,137.676],[-855.808,118.307],[-865.459,100.777]]}],"t":343.309},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.235,1.165],[2.738,-4.931],[4.69,-7.136],[-3.34,-3.768],[-4.986,-4.994],[-8.136,-7.588],[8.423,10.838],[4.615,8.182]],"o":[[0,0],[-4.176,7.523],[1.441,1.445],[3.866,4.36],[4.463,4.469],[4.634,4.322],[-3.849,-4.952],[-2.439,-4.323]],"v":[[-873.287,90.33],[-880.355,91.151],[-888.456,105.128],[-875.628,111.27],[-865.01,124.177],[-852.643,134.872],[-851.282,118.417],[-861.152,98.961]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.216,2.367],[1.321,-5.603],[3.656,-7.718],[-4.421,-2.45],[-2.89,-2.824],[0,0],[1.661,6.389],[4.31,5.844]],"o":[[-2.11,-0.958],[-2.01,8.239],[1.627,1.231],[3.809,2.11],[6.63,6.48],[0,0],[-1.575,-6.056],[-2.913,-3.95]],"v":[[-879.624,91.614],[-886.247,93.727],[-892.333,108.691],[-878.966,112.986],[-869.825,120.733],[-850.148,139.907],[-858.775,118.575],[-866.488,102.693]]}],"t":375.246},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.087,1.688],[2.074,-5.312],[4.348,-7.35],[-5.045,-1.644],[-5.287,-1.504],[2.311,0.854],[6.394,7.64],[5.53,3.787]],"o":[[-2.218,-0.736],[-3.142,7.908],[1.507,1.375],[4.657,1.394],[8.818,2.509],[-6.97,-2.575],[-4.473,-5.345],[-4.627,-3.169]],"v":[[-884.609,102.06],[-892.734,105.935],[-900.166,120.278],[-886.475,124.264],[-871.517,127.158],[-843.682,140.946],[-859.335,121.055],[-872.956,108.08]]}],"t":391.213},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.828,1.167],[1.234,-3.646],[3.939,-7.577],[-4.798,-0.715],[-4.91,0.319],[1.331,9.403],[10.166,1.66],[4.863,2.527]],"o":[[-3.125,-0.953],[-2.74,8.099],[1.58,1.291],[6.508,0.969],[9.328,-0.946],[-0.94,-6.643],[-5.529,-0.903],[-3.551,-1.846]],"v":[[-889.385,112.483],[-894.823,116.419],[-902.924,131.003],[-888.82,134.592],[-869.135,136.036],[-842.719,131.381],[-862.674,120.392],[-877.988,116.767]]}],"t":405.184},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.336,0.289],[2.481,-5.673],[3.656,-7.718],[-7.571,-6.481],[-3.118,-3.162],[-4.545,-2.559],[1.241,5.726],[3.206,1.465]],"o":[[0,0],[-3.877,8.865],[1.627,1.231],[4.956,4.243],[2.555,2.591],[5.227,2.944],[-0.323,-1.491],[-2.1,-0.96]],"v":[[-887.941,117.822],[-894.111,120.487],[-901.964,135.89],[-883.837,142.71],[-871.559,160.47],[-863.841,169.224],[-865.685,147.466],[-877.879,124.509]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.046,1.808],[0.622,-6.073],[4.047,-7.52],[-4.811,-7.814],[-2.957,-3.476],[-2.761,3.948],[1.22,6.36],[3.289,2.864]],"o":[[-0.588,-0.205],[-0.872,8.512],[1.562,1.313],[1.842,2.992],[2.679,3.149],[4.715,-6.74],[-0.585,-2.74],[-2.079,-1.81]],"v":[[-890.089,112.861],[-896.453,115.116],[-904.32,130.711],[-887.402,138.919],[-878.784,153.753],[-868.981,163.895],[-870.409,141.781],[-878.961,120.621]]}],"t":431.133},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.959,2.502],[0.454,-6.021],[3.656,-7.718],[-6.601,-5.385],[-3.168,-3.428],[-3.502,4.709],[3.765,9.514],[3.595,3.746]],"o":[[-1.095,-0.319],[-3.661,7.628],[1.627,1.231],[4.546,3.696],[3.071,3.354],[5.316,-7.15],[-2.441,-6.168],[-2.226,-2.32]],"v":[[-887.439,103.592],[-891.69,105.733],[-901.608,122.921],[-884.968,130.677],[-874.839,140.755],[-862.625,153.672],[-865.692,128.452],[-876.195,111.55]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.595,1.339],[0.807,-5.851],[3.656,-7.718],[-5.631,-4.288],[-2.57,-1.979],[-5.771,5.288],[4.042,5.397],[4.791,3.166]],"o":[[-2.191,-0.639],[-1.223,8.392],[1.627,1.231],[4.136,3.15],[5.52,4.25],[6.22,-5.7],[-3.42,-4.565],[-3.993,-2.639]],"v":[[-874.674,84.871],[-879.518,89.709],[-884.248,100.879],[-869.707,106.45],[-860.198,114.556],[-840.371,126.784],[-848.709,102.885],[-862.597,89.643]]}],"t":463.068},{"s":[{"c":true,"i":[[4.906,1.853],[1.064,-5.727],[3.656,-7.718],[-5.026,-3.369],[-3.884,-3.042],[-1.39,-1.074],[8.124,9.252],[4.287,5.057]],"o":[[-2.151,-0.798],[-1.616,8.316],[1.627,1.231],[3.973,2.63],[5.131,4.018],[0.557,1],[-4.113,-4.684],[-2.947,-3.466]],"v":[[-865.495,81.358],[-872.023,83.587],[-878.109,98.551],[-864.094,103.369],[-852.713,112.829],[-837.057,124.541],[-844.696,105.847],[-852.882,90.77]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":3}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.68235296011,0.658823549747,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Front fin top","np":3,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.158,1.019],[3.431,9.602],[8.969,19.033],[4.472,10.733],[20.656,1.218],[0,0],[2.145,-10.296],[4.05,-4.683],[-5.203,-6.766],[-3.87,-6.281],[-3.693,-10.053],[-2.456,-11.66],[-6.719,-2.886]],"o":[[10.011,-0.805],[-6.46,-18.081],[-5.389,-11.216],[-6.545,-16.129],[-8.921,-0.526],[4.113,7.436],[-0.966,4.637],[5.79,1.866],[7.232,9.406],[6.786,11.129],[3.578,9.739],[1.399,6.639],[6.364,2.733]],"v":[[-794.524,222.695],[-794.83,188.816],[-823.464,138.836],[-837.033,104.682],[-863.242,71.567],[-880.185,76.361],[-879.656,102.432],[-887.494,117.578],[-870.533,125.762],[-854.416,147.446],[-839.332,175.815],[-832.847,202.257],[-814.975,219.017]]}],"t":-19},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.007,-1.863],[-2.601,21.847],[9.255,21.688],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-4.009,-6.213],[1.973,-11.54],[-5.904,-12.722],[-6.408,-6.237]],"o":[[13.75,2.844],[3.026,-25.421],[-5.145,-12.056],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[7.37,11.422],[-3.468,20.282],[3.21,6.918],[4.74,4.613]],"v":[[-823.342,226.507],[-805.503,189.548],[-817.853,128.155],[-834.021,94.098],[-865.187,62.275],[-880.847,66.829],[-878.149,95.818],[-885.032,111.421],[-867.597,118.537],[-849.625,139.964],[-838.815,169.257],[-853.438,203.188],[-841.768,217.818]]}],"t":-15},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.173,-0.307],[-0.292,20.456],[12.833,18.632],[6.944,9.653],[20.56,-2.336],[0,0],[0.351,-10.511],[3.188,-5.308],[-6.284,-5.775],[-5.113,-5.3],[0.694,-11.687],[-6.003,-10.862],[-6.632,-3.389]],"o":[[13.08,0.502],[0.365,-25.597],[-7.783,-11.107],[-9.824,-13.657],[-8.879,1.009],[5.325,6.622],[-0.158,4.734],[6.024,0.847],[8.736,8.029],[10.089,10.333],[-1.22,20.54],[4.157,7.523],[5.697,2.633]],"v":[[-810.961,203.449],[-790.205,171.167],[-810.462,110.241],[-832.201,79.712],[-866.672,51.503],[-880.017,56.34],[-874.153,84.858],[-879.282,101.122],[-861.171,106.281],[-838.635,124.239],[-822.786,152.996],[-844.395,182.368],[-826.083,199.328]]}],"t":-8},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-812.7,208.673],[-794.269,182.301],[-811.792,115.203],[-832.435,83.988],[-863.601,52.165],[-875.265,54.124],[-872.567,83.113],[-879.451,98.716],[-862.015,105.832],[-838.78,124.894],[-822.531,161.922],[-844.855,196.789],[-823.956,206.411]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.89,2.029],[8.663,12.792],[15.292,14.622],[6.578,9.906],[20.633,-1.567],[0,0],[0.744,-10.491],[3.385,-5.185],[-6.064,-6.006],[-5.439,-5.009],[-13.943,-17.582],[-9.938,1.212],[-3.61,0.603]],"o":[[7.576,-3.952],[-13.25,-15.548],[-10.238,-9.746],[-9.307,-14.015],[-8.911,0.677],[5.074,6.817],[-0.335,4.725],[5.988,1.071],[8.43,8.35],[11.429,10.525],[13.094,16.511],[7.318,-0.893],[4.328,-0.723]],"v":[[-763.524,181.686],[-765.566,155.136],[-809.99,109.982],[-832.845,80.347],[-866.237,50.87],[-877.728,53.669],[-872.934,82.387],[-878.667,98.448],[-861.269,105.413],[-837.955,124.608],[-802.512,151.864],[-796.425,190.349],[-785.619,188.405]]}],"t":7.984},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.296,4.464],[10.982,5.579],[11.967,14.426],[5.084,10.749],[20.55,-2.419],[0,0],[0.309,-10.513],[3.167,-5.32],[-6.307,-5.75],[-5.642,-4.78],[-10.522,-5.134],[-12.44,-2.874],[-2.337,2.185]],"o":[[4.53,-6.136],[-22.823,-11.595],[-8.812,-10.623],[-7.191,-15.204],[-8.875,1.045],[5.352,6.601],[-0.139,4.734],[6.027,0.823],[8.768,7.993],[11.855,10.043],[10.194,4.974],[6.467,1.494],[5.578,-5.214]],"v":[[-743.782,164.877],[-779.488,148.365],[-820.685,110.863],[-835.426,79.917],[-870.01,51.847],[-881.375,55.12],[-875.397,83.614],[-880.46,99.899],[-863.135,107.002],[-839.919,126.656],[-796.797,154.702],[-757.654,167.969],[-744.989,167.114]]}],"t":13.971},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.402,4.036],[10.008,-1.427],[14.217,10.782],[8.582,9.116],[19.203,-3.47],[0,0],[-0.105,-10.517],[2.955,-5.441],[-6.65,-2.551],[-7.612,-2.689],[-15.628,-2.233],[-10.783,2.975],[-0.778,3.07]],"o":[[1.27,-12.753],[-16.413,2.34],[-9.154,-6.858],[-9.652,-11.231],[-8.755,1.667],[5.608,6.385],[0.047,4.736],[6.055,0.585],[10.619,3.227],[16.169,4.826],[18.942,2.707],[5.72,-0.894],[0.458,-4.626]],"v":[[-737.576,104.15],[-767.578,108.572],[-818.753,96.357],[-839.319,73.254],[-874.29,55.142],[-885.74,59.377],[-878.645,87.614],[-883.063,104.086],[-862.93,107.386],[-837.5,115.892],[-791.62,127.641],[-745.342,122.895],[-737.736,116.316]]}],"t":21.955},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.944,6.464],[13.571,-7.716],[13.942,10.804],[9.775,9.978],[18.347,0.16],[0,0],[2.116,-10.302],[4.036,-4.695],[-6.702,-1.041],[-9.014,-2.789],[-15.84,-2.29],[-10.578,6.241],[-0.138,3.924]],"o":[[-1.103,-9.116],[-16.59,9.433],[-8.154,-5.287],[-9.667,-9.814],[-8.897,0.065],[4.134,7.425],[-0.953,4.64],[5.795,1.849],[12.138,1.405],[19.628,4.321],[25.519,1.46],[5.446,-1.921],[-0.161,-5.662]],"v":[[-735.707,91.387],[-757.985,103.882],[-818.761,102.45],[-840.032,81.631],[-867.701,66.473],[-883.38,72.032],[-882.962,96.358],[-890.756,111.526],[-868.63,116.492],[-841.986,120.49],[-794.891,127.758],[-738.687,118.193],[-733.663,107.201]]}],"t":29.939},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.052,6.512],[14.417,-9.682],[12.293,8.157],[8.629,7.928],[9.682,0.843],[0,0],[3.307,-9.984],[4.558,-4.191],[-7.232,-0.733],[-8.057,-1.635],[-13.506,0.02],[-14.983,11.8],[0.399,3.96]],"o":[[-3.925,-8.95],[-16.771,11.263],[-8.587,-4.208],[-8.746,-7.864],[-5.796,-0.505],[3.237,7.857],[-1.489,4.496],[5.539,2.514],[14.22,0.875],[20.323,1.629],[28.507,-4.155],[5.605,-4.111],[-1.023,-6.439]],"v":[[-744.998,80.924],[-764.37,105.153],[-824.05,110.429],[-844.23,93.454],[-868.543,81.369],[-885.715,84.496],[-887.519,110.357],[-897.034,124.51],[-871.32,130.021],[-842.577,131.541],[-795.615,130.871],[-742.789,113.869],[-738.875,98.019]]}],"t":45.906},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.902,4.872],[8.322,-2.224],[12.785,10.871],[6.171,9.353],[18.608,1.344],[0,0],[2.608,-10.189],[4.257,-4.496],[-6.725,-3.119],[-7.379,-3.404],[-11.374,-2.012],[-19.659,2.886],[-2.976,2.932]],"o":[[1.334,-6.166],[-20.034,5.354],[-8.254,-6.171],[-6.813,-10.965],[-8.89,-0.504],[3.773,7.614],[-1.174,4.589],[5.7,2.125],[12.152,4.625],[13.341,4.439],[17.13,3.03],[4.657,-0.684],[2.915,-4.613]],"v":[[-735.604,127.886],[-758.791,134.377],[-827.949,128.154],[-845.962,103.756],[-873.521,82.237],[-888.804,84.776],[-888.483,113.588],[-896.996,128.365],[-874.568,135.153],[-849.45,145.062],[-815.946,153.906],[-756.441,150.411],[-744.199,143.375]]}],"t":53.891},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.174,3.841],[8.538,1.708],[12.848,13.468],[4.008,10.856],[20.595,2.005],[0,0],[2.537,-10.207],[4.226,-4.526],[-6.357,-5.241],[-6.836,-5.103],[-8.558,-5.687],[-11.847,-3.196],[-5.696,2.228]],"o":[[5.705,-4.338],[-19.613,-3.925],[-7.858,-8.041],[-5.066,-13.724],[-8.894,-0.866],[3.826,7.588],[-1.142,4.597],[5.715,2.085],[10.639,8.102],[8.109,7.547],[9.3,5.596],[6.047,1.631],[6.177,-3.351]],"v":[[-754.735,174.215],[-772.787,165.629],[-829.317,143.001],[-845.077,112.066],[-872.099,83.249],[-887.786,87.351],[-887.958,114.68],[-896.368,129.516],[-876.582,138.468],[-854.086,156.005],[-830.429,174.256],[-794.457,189.376],[-775.142,188.991]]}],"t":59.881},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.556,6.098],[10.589,5.962],[10.657,16.34],[4.11,10.847],[20.608,1.86],[0,0],[2.465,-10.224],[4.194,-4.555],[-5.86,-5.808],[-5.272,-5.727],[-5.988,-7.895],[-7.872,-5.853],[-6.153,-0.413]],"o":[[4.716,-5.176],[-16.142,-9.09],[-6.476,-9.682],[-5.602,-15.007],[-8.9,-0.803],[3.879,7.561],[-1.11,4.605],[5.729,2.045],[8.528,7.848],[7.299,9.412],[6.306,7.688],[5.392,4.009],[6.215,-0.232]],"v":[[-776.005,200.032],[-789.714,183.355],[-831.59,146.816],[-845.828,114.124],[-872.694,81.927],[-888.514,84.679],[-888.525,113.794],[-896.831,128.689],[-878.229,136.895],[-859.531,157.226],[-840.542,180.68],[-819.673,201.429],[-801.346,209.823]]}],"t":67.863},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.177,0.874],[3.236,9.669],[8.584,19.21],[4.255,10.821],[20.628,1.634],[0,0],[2.353,-10.251],[4.144,-4.601],[-5.396,-6.361],[-3.742,-6.358],[-3.49,-10.126],[-2.221,-11.707],[-6.659,-3.021]],"o":[[10.025,-0.603],[-6.094,-18.208],[-5.162,-11.322],[-6.219,-16.258],[-8.908,-0.706],[3.962,7.518],[-1.059,4.616],[5.751,1.982],[6.445,7.598],[6.56,11.263],[3.38,9.809],[1.264,6.666],[6.308,2.861]],"v":[[-805.178,231.838],[-804.8,197.96],[-832.421,147.413],[-845.299,112.992],[-872.196,77.517],[-888.176,80.77],[-887.868,109.883],[-896.009,124.868],[-878.573,132.277],[-863.54,155.397],[-849.031,184.064],[-843.081,210.632],[-825.55,227.749]]}],"t":75.848},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.868,-2.441],[-4.005,21.634],[7.836,22.24],[5.161,10.712],[20.653,1.27],[0,0],[2.172,-10.29],[4.062,-4.673],[-5.185,-6.779],[-3.599,-6.459],[2.714,-11.389],[-5.071,-13.076],[-5.992,-6.637]],"o":[[13.538,3.726],[4.66,-25.172],[-4.356,-12.363],[-7.303,-15.156],[-8.919,-0.549],[4.094,7.447],[-0.978,4.634],[5.785,1.88],[7.208,9.424],[6.617,11.874],[-4.769,20.016],[2.757,7.11],[4.432,4.909]],"v":[[-839.302,239.051],[-819.115,203.32],[-827.478,141.258],[-841.415,106.229],[-870.462,72.461],[-886.383,75.995],[-885.562,105.098],[-893.437,120.224],[-876.498,128.45],[-859.946,150.993],[-851.048,180.922],[-867.831,213.838],[-857.129,229.191]]}],"t":83.832},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.9,-2.32],[-3.712,21.686],[8.137,22.132],[5.306,10.641],[20.668,0.99],[0,0],[2.032,-10.319],[3.998,-4.728],[-5.277,-6.708],[-3.687,-6.41],[2.559,-11.424],[-5.247,-13.007],[-6.081,-6.555]],"o":[[13.587,3.542],[4.319,-25.233],[-4.523,-12.303],[-7.507,-15.056],[-8.926,-0.428],[4.194,7.391],[-0.915,4.647],[5.81,1.802],[7.335,9.326],[6.777,11.783],[-4.498,20.078],[2.853,7.072],[4.498,4.849]],"v":[[-835.394,233.194],[-815.693,197.194],[-824.896,135.251],[-839.305,100.413],[-868.807,67.042],[-884.678,70.791],[-883.463,99.88],[-891.134,115.112],[-874.084,123.108],[-857.228,145.424],[-847.927,175.23],[-864.262,208.37],[-853.353,223.577]]}],"t":89.818},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.121,-1.021],[-1.884,20.371],[11.343,19.575],[6.171,10.164],[20.68,-0.728],[0,0],[1.169,-10.452],[3.592,-5.043],[-5.815,-6.247],[-4.684,-5.682],[1.603,-11.597],[-5.139,-11.297],[-6.348,-3.896]],"o":[[13.001,1.519],[2.357,-25.491],[-6.895,-11.679],[-8.731,-14.381],[-8.93,0.314],[4.793,7.017],[-0.526,4.707],[5.94,1.313],[8.084,8.685],[9.253,11.087],[-2.817,20.383],[3.559,7.824],[5.475,3.069]],"v":[[-824.179,212.678],[-800.972,182.111],[-816.422,119.792],[-835.717,87.662],[-867.887,56.854],[-881.567,60.637],[-877.942,89.525],[-884.322,105.34],[-866.668,111.894],[-845.6,131.553],[-832.038,161.456],[-855.87,189.056],[-838.934,207.391]]}],"t":103.791},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.34,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-815.254,211.782],[-796.823,185.411],[-814.345,118.313],[-834.99,87.098],[-866.155,55.275],[-877.819,57.233],[-875.121,86.222],[-882.005,101.825],[-864.569,108.941],[-841.334,128.004],[-825.085,165.031],[-847.409,199.899],[-826.51,209.52]]}],"t":119.76},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.982,1.842],[8.045,13.19],[14.578,15.334],[6.099,10.208],[20.684,-0.582],[0,0],[1.242,-10.443],[3.628,-5.018],[-5.771,-6.288],[-5.195,-5.263],[-13.09,-18.226],[-9.985,0.738],[-3.634,0.431]],"o":[[7.755,-3.587],[-12.494,-16.161],[-9.762,-10.222],[-8.629,-14.442],[-8.932,0.252],[4.744,7.051],[-0.559,4.703],[5.93,1.355],[8.023,8.741],[10.915,11.058],[12.293,17.116],[7.352,-0.543],[4.357,-0.516]],"v":[[-772.585,190.019],[-773.361,163.402],[-815.584,116.184],[-837.003,85.495],[-868.954,54.462],[-880.565,56.711],[-876.072,84.151],[-882.785,102.965],[-866.588,109.179],[-844.214,129.463],[-810.109,158.375],[-805.861,197.106],[-794.975,195.679]]}],"t":127.744},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.912,3.935],[10.05,7.122],[9.734,16.018],[3.461,11.376],[20.683,0.606],[0,0],[1.839,-10.355],[3.91,-4.801],[-5.401,-6.609],[-4.884,-5.552],[-9.66,-6.615],[-11.887,-4.659],[-2.631,1.82]],"o":[[5.377,-5.41],[-20.887,-14.802],[-7.167,-11.795],[-4.895,-16.091],[-8.932,-0.262],[4.331,7.311],[-0.828,4.663],[5.843,1.693],[7.508,9.187],[10.262,11.666],[9.359,6.408],[6.18,2.422],[6.28,-4.344]],"v":[[-761.76,187.149],[-794.674,165.603],[-829.958,122.491],[-840.025,89.725],[-870.142,56.909],[-881.863,58.487],[-877.765,86.605],[-883.738,104.13],[-871.389,112.476],[-851.29,135.308],[-812.722,169.347],[-775.934,188.184],[-763.281,189.186]]}],"t":133.73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.819,3.972],[10.102,-0.378],[13.018,12.202],[7.587,9.959],[19.46,-1.454],[0,0],[0.989,-10.47],[3.505,-5.104],[-6.348,-3.228],[-7.291,-3.467],[-15.311,-3.847],[-11.034,1.837],[-1.093,2.972]],"o":[[2.589,-12.552],[-16.568,0.62],[-8.392,-7.772],[-8.432,-12.174],[-8.881,0.747],[4.913,6.934],[-0.445,4.715],[5.961,1.211],[10.225,4.314],[15.58,6.482],[18.558,4.663],[5.781,-0.294],[0.937,-4.553]],"v":[[-741.51,123.882],[-771.809,125.16],[-821.436,107.688],[-839.488,82.572],[-872.385,60.921],[-884.214,63.942],[-880.094,92.764],[-886.202,108.686],[-866.52,114.063],[-842.113,125.168],[-797.703,141.625],[-751.183,141.718],[-742.934,135.966]]}],"t":141.715},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.016,6.453],[13.483,-7.868],[14.062,10.647],[9.886,9.868],[18.347,-0.046],[0,0],[2,-10.325],[3.984,-4.74],[-6.713,-0.966],[-9.044,-2.688],[-15.865,-2.113],[-10.507,6.359],[-0.094,3.925]],"o":[[-1.205,-9.103],[-16.483,9.618],[-8.213,-5.195],[-9.777,-9.705],[-8.895,0.165],[4.217,7.378],[-0.901,4.65],[5.816,1.784],[12.153,1.269],[19.675,4.101],[25.534,1.174],[5.424,-1.982],[-0.225,-5.66]],"v":[[-737.037,93.175],[-759.173,105.919],[-819.962,105.168],[-841.464,84.588],[-873.143,68.389],[-885.532,70.71],[-884.227,99.796],[-891.851,115.051],[-869.67,119.768],[-842.983,123.467],[-795.809,130.207],[-739.716,120.012],[-734.816,108.964]]}],"t":149.699},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.466,6.302],[13.763,-10.592],[12.794,7.348],[9.122,7.355],[15.977,0.347],[0,0],[2.656,-10.176],[4.278,-4.476],[-7.265,-0.266],[-8.145,-1.112],[-13.477,0.891],[-14.191,12.741],[0.653,3.926]],"o":[[-4.494,-8.679],[-16.01,12.321],[-8.84,-3.646],[-9.234,-7.284],[-8.893,0.02],[3.737,7.632],[-1.196,4.583],[5.69,2.152],[14.247,-0.043],[20.386,0.315],[28.179,-5.983],[5.328,-4.463],[-1.436,-6.36]],"v":[[-746.873,73.364],[-764.642,98.791],[-823.859,107.902],[-845.091,92.264],[-873.578,80.592],[-886.643,82.812],[-887.2,111.922],[-895.783,126.658],[-869.767,130.501],[-840.986,130.165],[-794.164,126.469],[-742.544,106.098],[-739.661,90.029]]}],"t":165.666},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.947,4.863],[8.342,-2.148],[12.685,10.987],[6.085,9.409],[18.595,1.514],[0,0],[2.701,-10.164],[4.298,-4.457],[-6.697,-3.181],[-7.347,-3.471],[-11.355,-2.116],[-19.684,2.706],[-3.002,2.905]],"o":[[1.39,-6.154],[-20.082,5.171],[-8.198,-6.246],[-6.712,-11.027],[-8.885,-0.585],[3.703,7.649],[-1.216,4.578],[5.68,2.177],[12.11,4.736],[13.3,4.56],[17.101,3.186],[4.663,-0.641],[2.957,-4.586]],"v":[[-734.405,130.931],[-757.651,137.209],[-826.749,130.355],[-844.538,105.793],[-871.899,84.023],[-886.462,86.13],[-887.147,115.236],[-895.795,129.935],[-873.43,136.928],[-848.403,147.065],[-814.982,156.216],[-755.447,153.264],[-743.141,146.341]]}],"t":173.65},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.006,4.016],[8.603,1.342],[13.412,12.907],[4.468,10.675],[20.662,1.122],[0,0],[2.098,-10.306],[4.028,-4.702],[-6.575,-4.965],[-7.048,-4.806],[-8.793,-5.316],[-11.973,-2.687],[-5.595,2.47]],"o":[[5.515,-4.578],[-19.763,-3.083],[-8.194,-7.697],[-5.649,-13.495],[-8.923,-0.485],[4.147,7.417],[-0.945,4.641],[5.799,1.839],[10.975,7.64],[8.425,7.193],[9.531,5.193],[6.111,1.371],[6.028,-3.612]],"v":[[-752.4,169.727],[-770.803,161.922],[-828.248,141.73],[-845.316,111.498],[-873.546,83.862],[-889.076,86.846],[-888.047,115.942],[-895.814,131.125],[-875.664,139.222],[-852.439,155.781],[-828.023,173.005],[-791.438,186.573],[-772.157,185.362]]}],"t":179.637},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.941,5.724],[10.178,6.639],[9.572,16.999],[3.395,11.092],[20.444,3.197],[0,0],[3.125,-10.042],[4.481,-4.273],[-5.47,-6.177],[-4.888,-6.057],[-5.462,-8.268],[-7.474,-6.353],[-6.113,-0.812]],"o":[[5.043,-4.858],[-15.516,-10.121],[-5.832,-10.083],[-4.613,-15.339],[-8.829,-1.381],[3.379,7.797],[-1.407,4.523],[5.584,2.413],[8,8.386],[6.672,9.867],[5.792,8.082],[5.12,4.351],[6.216,0.173]],"v":[[-781.868,209.196],[-794.463,191.661],[-833.872,152.475],[-845.954,118.926],[-870.667,85.05],[-886.608,84.981],[-888.539,115.819],[-897.796,130.142],[-879.768,139.54],[-862.432,161.045],[-845.009,185.686],[-825.535,207.748],[-807.793,217.317]]}],"t":187.621},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.221,0.349],[2.523,9.88],[7.161,19.785],[3.455,11.102],[20.454,3.133],[0,0],[3.093,-10.052],[4.468,-4.287],[-4.917,-6.737],[-3.269,-6.613],[-2.742,-10.353],[-1.361,-11.838],[-6.421,-3.498]],"o":[[10.042,0.129],[-4.75,-18.604],[-4.323,-11.668],[-5.017,-16.668],[-8.833,-1.353],[3.404,7.786],[-1.393,4.527],[5.592,2.396],[5.874,8.048],[5.722,11.712],[2.656,10.029],[0.775,6.74],[6.082,3.313]],"v":[[-813.778,238.82],[-810.932,205.06],[-834.795,152.634],[-845.13,117.366],[-869.369,80.025],[-885.545,82.104],[-887.359,111.162],[-896.571,125.514],[-879.721,134.174],[-866.413,158.328],[-854.033,187.977],[-850.035,214.908],[-833.798,233.257]]}],"t":195.605},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.725,-2.91],[-5.153,21.389],[6.639,22.627],[4.583,10.972],[20.556,2.37],[0,0],[2.717,-10.16],[4.305,-4.45],[-4.816,-7.046],[-3.25,-6.642],[3.318,-11.228],[-4.366,-13.328],[-5.629,-6.947]],"o":[[13.32,4.443],[5.996,-24.888],[-3.69,-12.578],[-6.484,-15.524],[-8.877,-1.024],[3.691,7.655],[-1.224,4.576],[5.677,2.186],[6.695,9.795],[5.974,12.21],[-5.831,19.733],[2.374,7.247],[4.164,5.139]],"v":[[-847.091,241.594],[-825.026,206.991],[-830.067,144.572],[-842.115,108.848],[-869.319,73.579],[-885.406,76.258],[-886.138,105.363],[-894.81,120.048],[-878.333,129.166],[-863.007,152.56],[-855.719,182.921],[-874.234,214.895],[-864.366,230.797]]}],"t":203.59},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.763,-2.795],[-4.871,21.455],[6.936,22.537],[4.727,10.911],[20.585,2.099],[0,0],[2.583,-10.195],[4.246,-4.506],[-4.909,-6.982],[-3.337,-6.599],[3.169,-11.27],[-4.541,-13.27],[-5.72,-6.873]],"o":[[13.377,4.267],[5.668,-24.965],[-3.856,-12.528],[-6.688,-15.437],[-8.89,-0.907],[3.791,7.605],[-1.164,4.591],[5.705,2.111],[6.824,9.706],[6.135,12.13],[-5.57,19.808],[2.469,7.216],[4.231,5.083]],"v":[[-843.152,235.327],[-821.545,200.437],[-827.407,138.089],[-839.924,102.527],[-867.59,67.619],[-883.64,70.51],[-883.989,99.623],[-892.467,114.42],[-875.872,123.321],[-860.239,146.51],[-852.552,176.773],[-870.644,208.988],[-860.568,224.758]]}],"t":209.578},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.089,-1.277],[-2.457,20.31],[10.787,19.887],[5.882,10.334],[20.692,-0.145],[0,0],[1.463,-10.415],[3.733,-4.94],[-5.637,-6.409],[-4.523,-5.812],[1.929,-11.548],[-4.818,-11.437],[-6.235,-4.073]],"o":[[12.953,1.885],[3.075,-25.414],[-6.563,-11.869],[-8.322,-14.621],[-8.936,0.063],[4.594,7.149],[-0.659,4.69],[5.901,1.48],[7.836,8.909],[8.937,11.343],[-3.39,20.295],[3.337,7.921],[5.386,3.222]],"v":[[-829.051,213.527],[-804.992,183.626],[-818.68,120.897],[-837.062,88.236],[-868.35,56.534],[-882.132,59.929],[-879.323,88.908],[-886.146,104.537],[-868.684,111.586],[-848.177,131.831],[-835.464,162.105],[-860.064,189.022],[-843.652,207.827]]}],"t":223.549},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.117,-1.215],[-3.513,18.363],[11.31,18.607],[5.23,10.679],[20.661,1.138],[0,0],[2.105,-10.304],[4.032,-4.699],[-5.229,-6.746],[-4.739,-5.676],[2.641,-11.406],[-10.18,-9.647],[-5.898,-1.998]],"o":[[11.954,1.593],[4.81,-25.144],[-7.391,-12.159],[-7.4,-15.109],[-8.923,-0.491],[4.142,7.42],[-0.948,4.641],[5.797,1.843],[7.269,9.378],[9.958,11.926],[-4.641,20.046],[9.574,9.073],[5.99,2.029]],"v":[[-822.778,214.701],[-802.845,189.446],[-816.438,121.443],[-835.233,89.08],[-864.496,55.5],[-876.254,56.777],[-875.246,85.874],[-883.025,101.051],[-866.033,109.168],[-843.945,129.549],[-829.875,167.458],[-854.188,200.969],[-833.883,211.789]]}],"t":239.518},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.067,1.645],[7.392,13.567],[13.813,16.027],[5.594,10.493],[20.688,0.427],[0,0],[1.75,-10.37],[3.868,-4.835],[-5.457,-6.562],[-4.932,-5.51],[-12.186,-18.843],[-10.009,0.25],[-3.651,0.253]],"o":[[7.921,-3.204],[-11.691,-16.751],[-9.252,-10.686],[-7.914,-14.846],[-8.934,-0.185],[4.394,7.274],[-0.788,4.67],[5.857,1.643],[7.587,9.122],[10.362,11.577],[11.444,17.695],[7.37,-0.184],[4.377,-0.303]],"v":[[-777.898,196.047],[-777.375,169.423],[-817.244,120.202],[-837.14,88.504],[-867.539,55.949],[-879.246,57.629],[-877.239,86.674],[-884.492,102.109],[-867.845,110.716],[-846.488,132.067],[-813.834,162.609],[-811.481,201.501],[-800.538,200.607]]}],"t":247.502},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.746,4.093],[10.335,6.702],[10.386,15.603],[3.927,11.224],[20.691,-0.247],[0,0],[1.411,-10.422],[3.708,-4.958],[-5.668,-6.381],[-5.109,-5.346],[-9.924,-6.211],[-12.069,-4.165],[-2.554,1.927]],"o":[[5.15,-5.627],[-21.479,-13.928],[-7.648,-11.49],[-5.555,-15.875],[-8.935,0.107],[4.629,7.127],[-0.635,4.694],[5.908,1.451],[7.88,8.87],[10.734,11.233],[9.615,6.017],[6.275,2.165],[6.095,-4.6]],"v":[[-757.221,183.138],[-790.996,162.967],[-828.026,121.346],[-839.436,89.023],[-870.88,57.476],[-882.526,59.536],[-879.573,88.501],[-886.319,104.164],[-869.835,113.048],[-848.812,135.031],[-808.874,167.451],[-771.341,184.756],[-758.657,185.235]]}],"t":253.49},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.137,3.893],[10.099,0.437],[11.992,13.211],[6.76,10.538],[19.514,0.119],[0,0],[1.83,-10.357],[3.905,-4.805],[-6.067,-3.729],[-6.988,-4.043],[-14.951,-5.068],[-11.146,0.942],[-1.329,2.875]],"o":[[3.593,-12.302],[-16.564,-0.717],[-7.738,-8.423],[-7.423,-12.814],[-8.912,0.029],[4.338,7.307],[-0.824,4.664],[5.844,1.688],[9.844,5.124],[15.007,7.716],[18.122,6.143],[5.786,0.173],[1.301,-4.463]],"v":[[-747.695,136.307],[-777.998,135.139],[-826.056,113.724],[-842.025,87.235],[-873.07,63.004],[-885.104,65.061],[-883.32,94.121],[-890.691,109.5],[-871.507,116.445],[-848.075,129.481],[-805.136,149.463],[-758.774,153.305],[-750.088,148.237]]}],"t":261.475},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.652,6.5],[13.904,-7.097],[13.441,11.421],[9.316,10.408],[18.321,0.986],[0,0],[2.578,-10.196],[4.244,-4.508],[-6.648,-1.342],[-8.879,-3.193],[-15.721,-3.002],[-10.848,5.758],[-0.315,3.914]],"o":[[-0.691,-9.157],[-16.998,8.676],[-7.907,-5.649],[-9.215,-10.239],[-8.891,-0.336],[3.795,7.603],[-1.161,4.592],[5.706,2.108],[12.062,1.951],[19.414,5.201],[25.427,2.608],[5.527,-1.674],[0.094,-5.663]],"v":[[-740.547,104.111],[-763.365,115.59],[-824.015,111.42],[-844.326,89.664],[-875.043,71.708],[-887.543,73.329],[-887.876,102.442],[-896.346,117.244],[-874.466,123.201],[-848.029,128.396],[-801.309,137.779],[-744.732,130.755],[-739.218,120.001]]}],"t":269.459},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.754,6.644],[14.841,-9.019],[11.911,8.706],[8.261,8.311],[15.843,2.097],[0,0],[3.756,-9.824],[4.743,-3.98],[-7.192,-1.06],[-7.974,-1.999],[-13.493,-0.592],[-15.503,11.108],[0.219,3.974]],"o":[[-3.515,-9.119],[-17.264,10.491],[-8.387,-4.594],[-8.38,-8.253],[-8.842,-0.955],[2.878,7.996],[-1.691,4.424],[5.42,2.763],[14.166,1.519],[20.228,2.548],[28.666,-2.858],[5.785,-3.852],[-0.73,-6.479]],"v":[[-749.701,96.975],[-770.151,120.3],[-830.009,122.865],[-849.399,104.993],[-873.502,87.857],[-888.432,90.16],[-893.409,119.915],[-903.556,133.622],[-878.118,140.294],[-849.474,143.116],[-802.529,144.575],[-748.987,129.987],[-744.359,114.33]]}],"t":285.426},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1,4.853],[8.364,-2.057],[12.565,11.124],[5.983,9.475],[18.578,1.717],[0,0],[2.812,-10.134],[4.346,-4.41],[-6.662,-3.253],[-7.309,-3.551],[-11.331,-2.239],[-19.713,2.491],[-3.034,2.872]],"o":[[1.457,-6.138],[-20.137,4.952],[-8.129,-6.335],[-4.038,-12.389],[-8.878,-0.682],[3.62,7.688],[-1.266,4.564],[5.656,2.239],[12.057,4.867],[13.249,4.705],[17.066,3.372],[4.669,-0.59],[3.006,-4.553]],"v":[[-741.669,140.889],[-764.981,146.914],[-834.001,139.308],[-850.013,112.835],[-875.692,90.477],[-890.277,92.425],[-894.231,123.532],[-903.038,138.136],[-880.751,145.372],[-855.836,155.781],[-822.516,165.295],[-762.952,162.992],[-750.572,156.203]]}],"t":293.41},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.259,3.747],[8.498,1.898],[12.545,13.751],[3.765,10.943],[20.545,2.463],[0,0],[2.764,-10.147],[4.326,-4.43],[-4.426,-7.152],[-6.72,-5.254],[-10.121,-4.789],[-11.773,-3.459],[-5.744,2.101]],"o":[[5.801,-4.21],[-19.521,-4.361],[-7.677,-8.214],[-4.76,-13.833],[-8.873,-1.064],[3.656,7.671],[-1.245,4.57],[5.667,2.212],[4.793,7.746],[7.939,7.726],[11.757,5.563],[6.009,1.766],[6.25,-3.212]],"v":[[-757.947,186.122],[-775.803,177.136],[-836.407,157.946],[-846.881,121.975],[-873.254,92.563],[-888.946,94.531],[-891.964,122.584],[-902.818,139.753],[-880.007,150.537],[-863.613,169.347],[-834.318,186.269],[-797.997,200.394],[-778.678,200.439]]}],"t":299.396},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.138,5.512],[9.939,6.991],[8.971,17.324],[3.005,11.204],[20.319,3.911],[0,0],[3.474,-9.927],[4.628,-4.113],[-5.25,-6.364],[-4.673,-6.225],[-5.169,-8.454],[-7.247,-6.61],[-6.081,-1.026]],"o":[[5.21,-4.679],[-15.153,-10.658],[-5.476,-10.28],[-4.073,-15.491],[-8.775,-1.689],[3.104,7.911],[-1.565,4.471],[5.496,2.607],[7.701,8.661],[6.322,10.095],[5.506,8.28],[4.964,4.528],[6.207,0.39]],"v":[[-789.748,220.85],[-801.721,202.885],[-839.735,162.344],[-850.634,128.393],[-873.317,91.937],[-889.334,93.094],[-893.301,121.635],[-904.975,137.647],[-885.149,147.811],[-868.576,169.909],[-852.027,195.144],[-833.337,217.875],[-815.941,228.058]]}],"t":307.381},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.227,0.188],[2.302,9.933],[6.718,19.939],[3.206,11.176],[20.379,3.588],[0,0],[3.317,-9.98],[4.562,-4.186],[-4.766,-6.845],[-3.121,-6.685],[-2.511,-10.411],[-1.097,-11.865],[-6.342,-3.64]],"o":[[10.037,0.353],[-4.335,-18.705],[-4.062,-11.762],[-4.645,-16.776],[-8.801,-1.55],[3.229,7.86],[-1.494,4.495],[5.537,2.52],[5.693,8.177],[5.459,11.836],[2.432,10.086],[0.625,6.756],[6.007,3.448]],"v":[[-823.623,247.89],[-820.025,214.202],[-842.713,161.257],[-852.26,125.767],[-873.429,85.784],[-889.997,87.434],[-894.34,118.624],[-903.87,132.767],[-887.217,141.8],[-874.451,166.245],[-862.734,196.162],[-859.337,223.175],[-843.514,241.882]]}],"t":315.365},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.497,-3.521],[-6.656,20.97],[5.019,23.04],[3.794,11.269],[20.336,3.821],[0,0],[3.431,-9.942],[4.61,-4.134],[-4.305,-7.37],[-2.771,-6.856],[4.105,-10.964],[-3.41,-13.604],[-5.123,-7.329]],"o":[[12.972,5.375],[7.745,-24.4],[-2.79,-12.808],[-5.367,-15.945],[-8.782,-1.65],[3.139,7.897],[-1.545,4.477],[5.508,2.583],[5.984,10.245],[5.094,12.602],[-7.214,19.27],[1.854,7.397],[3.789,5.421]],"v":[[-863.282,250.728],[-838.821,217.776],[-839.426,155.156],[-848.912,118.669],[-871.291,79.774],[-888.125,81.836],[-892.578,112.074],[-902.268,126.107],[-886.479,136.37],[-872.85,160.79],[-867.731,191.592],[-888.465,222.173],[-879.749,238.734]]}],"t":323.35},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.729,-2.899],[-5.127,21.396],[6.667,22.618],[4.596,10.967],[20.559,2.345],[0,0],[2.705,-10.163],[4.3,-4.455],[-4.825,-7.04],[-3.258,-6.638],[3.303,-11.232],[-4.383,-13.323],[-5.638,-6.94]],"o":[[13.326,4.426],[5.965,-24.895],[-3.706,-12.573],[-6.503,-15.516],[-8.879,-1.013],[3.7,7.65],[-1.218,4.577],[5.68,2.179],[6.708,9.787],[5.99,12.202],[-5.806,19.74],[2.383,7.244],[4.17,5.133]],"v":[[-851.464,241.363],[-829.442,206.733],[-834.561,144.319],[-846.653,108.611],[-873.902,73.376],[-889.985,76.075],[-890.681,105.182],[-899.335,119.877],[-882.846,128.975],[-867.492,152.349],[-860.165,182.701],[-878.64,214.698],[-868.752,230.588]]}],"t":329.336},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.039,-1.597],[-3.171,20.211],[10.08,20.255],[5.515,10.535],[20.684,0.584],[0,0],[1.828,-10.357],[3.904,-4.806],[-5.408,-6.603],[-4.315,-5.968],[2.334,-11.473],[-4.413,-11.599],[-6.088,-4.29]],"o":[[12.879,2.34],[3.968,-25.29],[-6.141,-12.093],[-7.802,-14.905],[-8.933,-0.252],[4.339,7.307],[-0.823,4.664],[5.845,1.687],[7.517,9.179],[8.533,11.651],[-4.102,20.163],[3.056,8.033],[5.269,3.41]],"v":[[-839.874,219.599],[-814.778,190.563],[-826.249,127.391],[-843.471,94.104],[-873.624,61.32],[-887.517,64.228],[-885.729,93.288],[-893.098,108.668],[-875.895,116.327],[-856.114,137.28],[-844.474,167.983],[-870.006,194.018],[-854.266,213.389]]}],"t":343.309},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.047,-1.655],[-4.399,18.171],[10.395,19.133],[4.706,10.92],[20.582,2.138],[0,0],[2.603,-10.19],[4.255,-4.498],[-4.896,-6.991],[-4.459,-5.899],[3.19,-11.264],[-9.701,-10.13],[-5.794,-2.281]],"o":[[11.863,2.17],[6.023,-24.881],[-6.793,-12.503],[-6.659,-15.45],[-8.888,-0.923],[3.777,7.612],[-1.172,4.589],[5.701,2.122],[6.806,9.719],[9.369,12.395],[-5.607,19.798],[9.123,9.526],[5.885,2.317]],"v":[[-835.363,221.847],[-814.229,197.587],[-824.51,129.005],[-841.714,95.77],[-868.504,60.025],[-880.76,58.966],[-881.525,90.628],[-890.03,105.41],[-873.451,114.341],[-852.377,135.768],[-840.162,174.315],[-866.07,206.608],[-846.313,218.4]]}],"t":359.277},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.087,1.596],[7.226,13.655],[13.617,16.194],[5.466,10.56],[20.681,0.679],[0,0],[1.876,-10.348],[3.926,-4.787],[-5.377,-6.628],[-4.864,-5.569],[-11.956,-18.989],[-10.011,0.128],[-3.654,0.209]],"o":[[7.959,-3.108],[-11.486,-16.892],[-9.121,-10.798],[-7.733,-14.941],[-8.931,-0.293],[4.305,7.327],[-0.845,4.661],[5.837,1.714],[7.475,9.214],[10.221,11.702],[11.228,17.833],[7.371,-0.094],[4.38,-0.25]],"v":[[-784.821,200.445],[-783.975,173.83],[-823.243,124.127],[-842.751,92.19],[-872.752,59.268],[-884.479,60.805],[-882.825,89.873],[-891.933,106.61],[-873.725,114.028],[-852.628,135.637],[-820.348,166.573],[-818.468,205.491],[-807.515,204.73]]}],"t":367.262},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.791,4.051],[10.26,6.816],[10.212,15.717],[3.802,11.266],[20.692,-0.018],[0,0],[1.527,-10.406],[3.763,-4.917],[-5.597,-6.443],[-5.049,-5.402],[-9.855,-6.32],[-12.022,-4.298],[-2.575,1.899]],"o":[[5.212,-5.569],[-21.324,-14.165],[-7.52,-11.574],[-5.378,-15.936],[-8.936,0.008],[4.55,7.177],[-0.688,4.686],[5.891,1.516],[7.781,8.957],[10.609,11.351],[9.548,6.123],[6.25,2.235],[6.146,-4.532]],"v":[[-763.411,187.239],[-796.96,166.696],[-833.528,124.667],[-844.578,92.219],[-875.671,60.326],[-887.339,62.258],[-884.707,91.253],[-892.368,108.255],[-875.242,115.906],[-854.464,138.121],[-814.887,170.982],[-777.548,188.701],[-764.87,189.321]]}],"t":373.248},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.163,3.885],[10.096,0.505],[11.903,13.292],[6.688,10.584],[19.513,0.251],[0,0],[1.9,-10.344],[3.937,-4.778],[-6.042,-3.77],[-6.961,-4.09],[-14.917,-5.169],[-11.152,0.866],[-1.349,2.865]],"o":[[3.676,-12.278],[-16.559,-0.829],[-7.681,-8.476],[-7.336,-12.864],[-8.912,-0.031],[4.289,7.336],[-0.856,4.659],[5.833,1.727],[9.809,5.191],[14.954,7.817],[18.08,6.265],[5.785,0.212],[1.331,-4.454]],"v":[[-752.743,139.144],[-783.038,137.771],[-830.95,116.032],[-846.739,89.435],[-877.62,64.994],[-889.667,66.97],[-888.08,96.042],[-895.555,111.37],[-876.418,118.445],[-853.075,131.639],[-810.272,151.911],[-763.937,156.067],[-755.217,151.057]]}],"t":381.232},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.685,6.496],[13.868,-7.169],[13.5,11.351],[9.369,10.36],[18.326,0.892],[0,0],[2.525,-10.209],[4.221,-4.53],[-6.655,-1.308],[-7.369,-4.343],[-16.886,0.678],[-10.818,5.814],[-0.294,3.915]],"o":[[-0.738,-9.153],[-16.953,8.763],[-7.937,-5.608],[-9.268,-10.192],[-8.892,-0.29],[3.835,7.584],[-1.137,4.598],[5.717,2.079],[12.072,1.888],[16.591,9.779],[19.784,-0.795],[5.518,-1.702],[0.065,-5.664]],"v":[[-744.376,104.171],[-767.135,115.768],[-827.806,111.912],[-848.229,90.26],[-876.346,70.744],[-891.53,74.148],[-891.713,103.263],[-900.106,118.108],[-878.195,123.952],[-855.764,135.754],[-807.398,149.181],[-748.424,130.837],[-742.966,120.054]]}],"t":389.217},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.196,6.443],[14.199,-9.999],[12.471,7.884],[8.802,7.735],[15.948,1.024],[0,0],[3.085,-10.055],[4.464,-4.29],[-7.247,-0.573],[-8.091,-1.456],[-13.502,0.319],[-14.718,12.128],[0.486,3.951]],"o":[[-4.122,-8.861],[-16.518,11.631],[-8.678,-4.018],[-8.917,-7.669],[-8.886,-0.357],[3.41,7.784],[-1.389,4.528],[5.594,2.391],[14.236,0.56],[20.354,1.179],[28.408,-4.784],[5.512,-4.234],[-1.165,-6.415]],"v":[[-753.182,84.09],[-772.013,108.741],[-831.562,115.335],[-852.112,98.811],[-879.846,84.173],[-892.993,85.837],[-895.017,116.667],[-904.216,131.027],[-878.386,135.968],[-849.617,136.852],[-802.681,135.143],[-750.244,116.978],[-746.682,101.045]]}],"t":405.184},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.003,4.852],[8.366,-2.052],[12.559,11.132],[5.977,9.478],[18.577,1.727],[0,0],[2.817,-10.133],[4.349,-4.407],[-6.66,-3.257],[-7.307,-3.555],[-11.461,-1.435],[-20.331,4.854],[-3.036,2.87]],"o":[[1.46,-6.137],[-20.14,4.94],[-8.125,-6.339],[-6.586,-11.103],[-8.878,-0.687],[3.616,7.69],[-1.269,4.563],[5.655,2.242],[12.055,4.874],[13.247,4.712],[24.941,3.122],[4.578,-1.093],[3.009,-4.552]],"v":[[-742.792,137.474],[-766.108,143.486],[-835.124,135.841],[-852.63,111.077],[-878.289,87.227],[-892.875,89.166],[-895.344,120.031],[-904.16,134.63],[-881.877,141.878],[-856.968,152.302],[-823.654,161.835],[-764.088,159.565],[-751.704,152.783]]}],"t":413.168},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.027,8.423],[16.173,-5.024],[14.885,11.866],[2.353,10.858],[20.638,1.499],[0,0],[2.286,-10.266],[4.113,-4.628],[-5.11,-6.836],[-4.487,-5.877],[-6.964,-4.569],[-13.924,-1.688],[-10.922,6.918]],"o":[[13.415,-14.076],[-28.095,8.727],[-9.811,-7.822],[-4.099,-18.914],[-8.913,-0.647],[4.011,7.492],[-1.029,4.623],[5.764,1.944],[7.104,9.503],[7.042,9.224],[18.037,11.835],[12.668,1.536],[11.134,-7.053]],"v":[[-755.993,176.283],[-775.073,165.58],[-842.789,156.298],[-855.609,124.91],[-878.494,86.284],[-894.453,89.641],[-893.955,118.751],[-902.97,135.979],[-885.15,142.203],[-870.651,161.844],[-849.751,184.663],[-807.75,203.113],[-783.064,196.889]]}],"t":419.156},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.892,3.84],[7.852,3.556],[8.268,16.842],[2.566,11.11],[20.402,3.451],[0,0],[3.249,-10.003],[4.534,-4.217],[-4.438,-7.29],[-3.436,-6.523],[-9.07,-13.026],[-8.837,-7.242],[-8.834,1.611]],"o":[[7.01,-4.568],[-16.498,-7.472],[-5.259,-10.713],[-3.859,-17.643],[-8.811,-1.49],[3.282,7.838],[-1.463,4.505],[5.554,2.482],[6.17,10.134],[5.755,11.09],[4.836,6.945],[7.034,5.764],[11.251,-2.051]],"v":[[-783.11,217.048],[-801.341,199.79],[-845.689,156.808],[-855.112,122.268],[-877.117,83.497],[-893.323,85.324],[-895.589,114.351],[-906.047,130.571],[-889.049,138.532],[-875.779,160.972],[-857.62,189.944],[-831.087,220.915],[-804.835,224.844]]}],"t":433.129},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.194,0.716],[3.023,9.738],[8.16,19.394],[4.016,10.911],[20.587,2.087],[0,0],[2.577,-10.196],[4.244,-4.509],[-4.913,-6.979],[-3.602,-6.438],[-3.266,-10.2],[-1.963,-11.753],[-6.591,-3.166]],"o":[[10.036,-0.383],[-5.692,-18.337],[-4.911,-11.433],[-5.86,-16.391],[-8.891,-0.901],[3.796,7.603],[-1.161,4.592],[5.706,2.108],[6.83,9.702],[6.311,11.405],[3.164,9.881],[1.118,6.692],[6.243,2.999]],"v":[[-810.709,230.026],[-809.587,196.165],[-836.09,145.023],[-848.208,110.327],[-872.998,76.137],[-889.99,78.746],[-892.145,105.015],[-902.138,123.067],[-879.474,134.096],[-867.377,152.32],[-853.502,181.3],[-848.137,207.992],[-830.987,225.49]]}],"t":441.111},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.746,-2.846],[-4.997,21.426],[6.804,22.577],[4.663,10.939],[20.573,2.22],[0,0],[2.643,-10.18],[4.273,-4.481],[-4.868,-7.011],[-3.298,-6.618],[3.235,-11.252],[-4.463,-13.296],[-5.68,-6.906]],"o":[[13.352,4.345],[5.814,-24.931],[-3.782,-12.551],[-6.597,-15.476],[-8.885,-0.959],[3.747,7.627],[-1.19,4.584],[5.693,2.145],[6.767,9.746],[6.063,12.166],[-5.686,19.775],[2.427,7.23],[4.201,5.108]],"v":[[-849.967,235.477],[-828.156,200.715],[-833.652,138.334],[-845.961,102.699],[-873.423,67.63],[-889.489,70.426],[-890.009,99.537],[-898.573,114.284],[-882.03,123.282],[-866.534,146.562],[-859.024,176.87],[-877.304,208.978],[-867.32,224.807]]}],"t":449.096},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.148,-0.746],[-1.272,20.419],[11.925,19.226],[6.473,9.975],[20.648,-1.348],[0,0],[0.855,-10.482],[3.439,-5.149],[-6,-6.07],[-4.853,-5.539],[1.254,-11.64],[-5.475,-11.137],[-6.462,-3.703]],"o":[[13.041,1.128],[1.591,-25.55],[-7.242,-11.467],[-9.158,-14.112],[-8.917,0.582],[5.002,6.87],[-0.385,4.721],[5.976,1.135],[8.341,8.438],[9.582,10.804],[-2.203,20.458],[3.792,7.713],[5.564,2.903]],"v":[[-822.473,207.644],[-800.194,176.394],[-817.508,114.567],[-837.759,83.031],[-870.839,53.203],[-884.4,57.394],[-879.909,86.16],[-885.812,102.16],[-867.969,108.181],[-846.319,127.199],[-831.867,156.682],[-854.859,184.985],[-837.381,202.803]]}],"t":463.068},{"s":[{"c":true,"i":[[-9.172,-0.683],[-2.44,18.536],[12.373,17.918],[5.842,10.357],[20.692,-0.065],[0,0],[1.503,-10.409],[3.752,-4.926],[-5.612,-6.43],[-5.061,-5.391],[1.973,-11.54],[-10.724,-9.039],[-6.004,-1.652]],"o":[[12.026,0.895],[3.341,-25.381],[-8.085,-11.709],[-8.266,-14.653],[-8.936,0.028],[4.566,7.167],[-0.677,4.688],[5.895,1.503],[7.802,8.939],[10.635,11.327],[-3.468,20.282],[10.085,8.501],[6.098,1.678]],"v":[[-812.7,208.673],[-794.269,182.301],[-811.792,115.203],[-832.435,83.988],[-863.601,52.165],[-875.265,54.124],[-872.567,83.113],[-879.451,98.716],[-862.015,105.832],[-838.78,124.894],[-822.531,161.922],[-844.855,196.789],[-823.956,206.411]]}],"t":479.037109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0,0.831372559071,0.709803938866,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0.075,0.089]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Front fin bottom","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":33,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1042.089,166.545,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[-1070.661,116.187,0]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[18],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[61],"t":59.754},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[63],"t":179.264},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[56],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[15],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[55],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[18],"t":479},{"s":[14],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back leg","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.43,-1.058],[7.906,-10.49],[12.734,-10.672],[14.247,-7.798],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-5.963,17.173],[2.357,1.507],[8.29,2.032]],"o":[[-3.265,10.739],[-9.743,12.928],[-9.486,7.95],[-17.304,9.471],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[5.261,-15.152],[-7.068,-4.518],[-8.506,-2.085]],"v":[[-966.566,42.779],[-982.43,74.206],[-1007.796,99.802],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-938.577,100.937],[-927.397,51.506],[-946.166,42.903]]}],"t":0},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.396,1.189],[11.39,-6.542],[12.781,-8.108],[10.101,-6.863],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-12.228,13.451],[1.35,2.45],[6.309,5.748]],"o":[[-10.021,5.672],[-14.037,8.062],[-10.368,6.577],[-16.317,11.085],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[10.789,-11.868],[-4.047,-7.347],[-6.473,-5.898]],"v":[[-934.252,54.878],[-966.86,73.386],[-1008.008,97.993],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-934.795,118.262],[-904.022,81.271],[-916.393,64.741]]}],"t":59.881},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.513,-0.613],[7.118,-8.877],[12.781,-8.108],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-10.2,11.999],[-8.231,16.208],[2.196,1.733],[8.047,2.844]],"o":[[-2.346,12.532],[-10.127,12.629],[-10.368,6.577],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[13.094,-15.404],[7.304,-14.384],[-6.585,-5.197],[-8.257,-2.918]],"v":[[-965.101,41.775],[-978.396,72.344],[-1007.891,99.81],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-937.004,103.315],[-922.794,55.526],[-940.617,45.103]]}],"t":119.76},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.309,1.476],[9.65,-6.563],[12.781,-8.108],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.568,13.961],[-13.047,13.947],[1.185,2.534],[5.917,6.151]],"o":[[-11.006,8.562],[-13.385,9.104],[-10.368,6.577],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[14.597,-13.988],[14.539,-15.541],[-3.555,-7.598],[-6.071,-6.311]],"v":[[-935.511,51.875],[-962.904,70.781],[-1007.891,99.81],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-933.909,118.671],[-903.222,82.665],[-915.12,65.83]]}],"t":179.637},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.541,-0.343],[6.13,-9.058],[13.157,-9.352],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-13.748,14.77],[-8.655,17.024],[2.089,1.861],[7.863,3.319]],"o":[[-3.187,13.629],[-9.073,13.406],[-10.007,7.113],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.669,-16.833],[9.644,-18.971],[-6.263,-5.58],[-8.068,-3.406]],"v":[[-965.295,40.955],[-977.526,70.708],[-1007.866,101.283],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-937.67,107.89],[-923.48,56.516],[-941.053,45.738]]}],"t":239.518},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.116,1.95],[10.762,-6.77],[15.507,-8.124],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.952,13.55],[-14.334,12.62],[0.894,2.651],[5.189,6.776]],"o":[[-11.52,8.362],[-13.702,8.62],[-10.876,5.697],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[18.239,-16.53],[16.621,-14.633],[-2.68,-7.949],[-5.324,-6.953]],"v":[[-931.061,57.799],[-962.382,76.575],[-1007.866,101.283],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-972.928,159.222],[-932.891,123.359],[-901.905,94.244],[-912.366,73.955]]}],"t":299.396},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.554,-0.081],[7.449,-9.873],[13.847,-9.537],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-13.546,14.955],[-11.326,20.908],[1.978,1.978],[7.659,3.766]],"o":[[-5.37,14.103],[-9.75,12.922],[-10.112,6.964],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[19.362,-21.375],[10.547,-19.471],[-5.931,-5.931],[-7.859,-3.864]],"v":[[-962.601,45.151],[-977.095,72.533],[-1009.061,102.342],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-972.928,159.222],[-935.373,108.073],[-920.29,64.852],[-938.674,51.32]]}],"t":359.277},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[4.114,1.954],[10.749,-6.905],[16.015,-9.241],[10.836,-6.564],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-14.519,14.013],[-17.771,15.799],[0.891,2.652],[5.183,6.781]],"o":[[-12.044,7.494],[-13.62,8.749],[-10.635,6.136],[-16.872,10.221],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[19.725,-19.038],[15.72,-13.976],[-2.672,-7.951],[-5.318,-6.958]],"v":[[-936.262,57.204],[-965.99,75.902],[-1009.061,102.342],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1010.154,192.767],[-977.669,162.878],[-933.809,122.068],[-907.139,93.675],[-917.581,73.376]]}],"t":419.156},{"s":[{"c":true,"i":[[4.43,-1.058],[7.906,-10.49],[12.734,-10.672],[14.247,-7.798],[-0.583,-3.38],[-3.396,-7.33],[-11.429,9.554],[-11.171,11.101],[-5.963,17.173],[2.357,1.507],[8.29,2.032]],"o":[[-3.265,10.739],[-9.743,12.928],[-9.486,7.95],[-17.304,9.471],[2.363,13.687],[5.477,11.822],[6.578,-5.499],[15.06,-14.966],[5.261,-15.152],[-7.068,-4.518],[-8.506,-2.085]],"v":[[-966.566,42.779],[-982.43,74.206],[-1007.796,99.802],[-1044.397,121.846],[-1045.575,142.755],[-1036.241,166.163],[-1009.071,193.089],[-974.016,158.919],[-938.577,100.937],[-927.397,51.506],[-946.166,42.903]]}],"t":479}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back leg","np":3,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":34,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-1317.804,73.33,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":1,"ix":2,"k":[{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1261.998,119.472,0],"t":0,"ti":[0.128,-0.333,0],"to":[-0.427,1.111,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.557,126.141,0],"t":59.881,"ti":[-0.085,0.222,0],"to":[-0.128,0.333,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1262.766,121.473,0],"t":119.76,"ti":[-0.341,0.889,0],"to":[0.085,-0.222,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.045,124.807,0],"t":179.637,"ti":[-0.231,-0.726,0],"to":[0.341,-0.889,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1260.718,116.138,0],"t":239.518,"ti":[0.564,-0.804,0],"to":[0.231,0.726,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1262.658,129.165,0],"t":299.396,"ti":[0.068,0.154,0],"to":[-0.564,0.804,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1264.099,120.961,0],"t":359.277,"ti":[-0.35,0.248,0],"to":[-0.068,-0.154,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.48,"y":0},"s":[-1263.069,128.242,0],"t":419.156,"ti":[0.172,1.214,0],"to":[0.35,-0.248,0]},{"i":{"x":0.52,"y":1},"o":{"x":0.48,"y":0},"s":[-1261.998,119.472,0],"t":479,"ti":[0.35,-0.248,0],"to":[-0.172,-1.214,0]},{"s":[-1264.099,120.961,0],"t":479.037109375}]},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-126],"t":0},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-120],"t":59.881},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-125.5],"t":119.76},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-121],"t":179.637},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-127],"t":239.518},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-119.5],"t":299.396},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-125],"t":359.277},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-120.5],"t":419.156},{"i":{"x":[0.52],"y":[1]},"o":{"x":[0.48],"y":[0]},"s":[-126],"t":479},{"s":[-126],"t":479.037109375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Back arm","op":480,"parent":30,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[21.814,-4.558],[12.143,-1.898],[17.84,-4.69],[-0.514,-7.034],[-7.04,-1.792],[-11.588,-1.028],[-19.889,1.3],[-18.276,1.474],[-1.349,8.767],[2.43,3.536],[3.497,2.459],[4.261,0.348]],"o":[[-16.184,3.382],[-13.494,2.11],[-12.611,3.316],[0.8,10.961],[11.716,2.982],[11.909,1.057],[17.176,-1.123],[13.818,-1.114],[0.395,-2.565],[-2.421,-3.523],[-3.497,-2.459],[-8.855,-0.723]],"v":[[-1374.915,63.68],[-1416.275,69.233],[-1459.113,76.912],[-1474,94.406],[-1452.362,110.958],[-1421.002,115.305],[-1383.65,115.109],[-1296.239,107.281],[-1284.742,89.252],[-1291.818,73.781],[-1301.603,65.43],[-1328.18,55.741]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.180392161012,0.372549027205,0.847058832645,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"bm":0,"c":{"a":0,"ix":4,"k":[0.980392158031,0.674509823322,0.282352954149,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back arm","np":3,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-1385.801,84.442]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-1385.801,84.442]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Back arm","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":35,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-419,819,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.696],"y":[0.637]},"o":{"x":[0.326],"y":[0.279]},"s":[144.166],"t":30},{"i":{"x":[0.814],"y":[0.723]},"o":{"x":[0.429],"y":[0.303]},"s":[352.279],"t":344},{"i":{"x":[0.983],"y":[0.868]},"o":{"x":[0.584],"y":[0.324]},"s":[452],"t":433},{"s":[545],"t":464}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.801],"y":[-0.511]},"o":{"x":[0.418],"y":[0.109]},"s":[418],"t":30},{"i":{"x":[0.781],"y":[0.546]},"o":{"x":[0.504],"y":[0.19]},"s":[429],"t":342},{"i":{"x":[0.983],"y":[0.865]},"o":{"x":[0.456],"y":[0.17]},"s":[493.659],"t":433},{"s":[616],"t":464}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.701],"y":[0.014]},"o":{"x":[0.361],"y":[0.129]},"s":[0],"t":30},{"i":{"x":[0.9],"y":[0.679]},"o":{"x":[0.605],"y":[0.068]},"s":[2.414],"t":342},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.362],"y":[0.223]},"s":[23.192],"t":433},{"s":[60],"t":464}]},"s":{"a":0,"ix":6,"k":[20,20,100]}},"nm":"Angler fish 2","op":480,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":155},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":190.912},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.325,25.294],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.665,6.973]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-602.535,812.235],[-579.565,813.423],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-605.064,861.17]]}],"t":236},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-10.821,26.98],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.429,4.419]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-600.336,817.891],[-577.413,816.002],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-596.311,866.725]]}],"t":271},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.31,25.303],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.669,6.962]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-598.873,811.928],[-575.903,813.102],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.373,860.865]]}],"t":303},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-10.473,27.117],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.484,4.169]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-606.141,817.304],[-583.245,815.12],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.488,866.083]]}],"t":333},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.177,25.377],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.705,6.864]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-603.958,806.032],[-580.982,807.085],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-606.202,854.981]]}],"t":360},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-9.947,27.314],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.561,3.791]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-614.819,809.549],[-591.969,806.923],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-609.224,858.229]]}],"t":381},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-14.31,25.303],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[18.669,6.962]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-598.873,811.928],[-575.903,813.102],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-601.373,860.865]]}],"t":402},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":421},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":434},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":443},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":451},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[-7.905,27.974],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.787,2.338]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-608.476,814.087],[-585.882,809.783],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-599.306,862.222]]}],"t":455},{"s":[{"c":true,"i":[[-12.901,26.049],[0,0],[-61.901,26.235],[-1.611,-160.995],[179.048,12.32],[34.243,63.87],[19.023,5.928]],"o":[[0,0],[0,0],[61.901,-26.235],[0,0],[0,0],[-34.243,-63.87],[0,0]],"v":[[-605.035,808.5],[-582.035,808.413],[-466.45,698.973],[-277.919,838.258],[-437.36,985.865],[-554.594,924.309],[-604.849,857.5]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body fiill","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[5.817,1.697],[5.621,2.263],[-1.551,5.857],[-1.458,1.732],[-17.965,8.403],[-13.698,2.968],[-13.227,-4.634],[-4.013,-4.383],[4.455,-13.052],[0.782,-0.839],[1.404,-0.449],[18.675,-5.969],[17.926,-1.873]],"o":[[-0.229,-6.055],[-5.817,-1.697],[-5.621,-2.263],[0.58,-2.188],[12.771,-15.174],[12.695,-5.938],[13.698,-2.968],[5.608,1.965],[9.313,10.172],[-0.37,1.085],[-1.005,1.079],[-18.675,5.969],[-17.168,5.487],[0,0]],"v":[[-496.897,718.062],[-508.825,705.95],[-526.531,701.972],[-535.65,688.084],[-532.199,682.301],[-483.369,649.16],[-443.995,634.668],[-402.505,636.099],[-387.475,645.343],[-382.804,684.465],[-384.371,687.498],[-388.25,689.515],[-444.274,707.422],[-496.685,720.302]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-457.885,676.408]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-457.885,676.408]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"top fin","np":1,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[8.283,1.812],[4.205,-2.799],[-1.505,-4.144],[-3.346,-2.87],[-19.01,-3.887],[-17.836,7.641],[-2.733,7.173]],"o":[[-7.675,3.604],[-4.934,-1.079],[-3.67,2.443],[1.505,4.144],[14.728,12.633],[19.01,3.887],[7.056,-3.023],[0,0]],"v":[[-529.005,955.744],[-553.833,958.533],[-568.524,958.312],[-571.525,970.203],[-563.368,980.422],[-511.86,1006.175],[-454.787,1000.84],[-437.864,986.166]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-505.049,982.233]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-505.049,982.233]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"bottom fin","np":1,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.44,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-7.426,-11.677],[0.62,-14.527],[3.327,-16.385]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[7.802,12.27],[-0.823,19.28],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-214.768,627.475],[-181.273,650.286],[-171.177,692.22],[-177.327,739.385]]}],"t":45},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":77},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[2.51,-14.322],[5.436,-15.81]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[-3.331,19.008],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-219.753,632.489],[-193.737,662.822],[-194.969,715.842],[-208.476,759.305]]}],"t":108},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":127},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":false,"i":[[0,0],[-41.861,-0.423],[-9.041,-10.477],[-2.324,-8.872],[2.405,-14.34],[5.32,-15.85]],"o":[[22.394,-35.37],[13.838,0.14],[12.115,14.039],[3.685,14.066],[-3.191,19.032],[0,0]],"v":[[-356.957,696.004],[-259.26,641.159],[-216.329,660.562],[-201.823,695.973],[-199.219,738.048],[-211.132,784.096]]}],"t":159},{"i":{"x":0.48,"y":0.48},"o":{"x":0.44,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-12.575,-15.463],[-2.37,-16.893]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[12.175,14.972],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-199.461,614.045],[-169.868,643.1],[-153.497,684.314]]}],"t":195},{"i":{"x":0.44,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-7.426,-11.677],[0.62,-14.527],[3.327,-16.385]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[7.802,12.27],[-0.823,19.28],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-214.768,627.475],[-181.273,650.286],[-171.177,692.22],[-177.327,739.385]]}],"t":223},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":255},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[2.51,-14.322],[5.436,-15.81]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[-3.331,19.008],[0,0]],"v":[[-356.957,696.004],[-255.956,627.381],[-219.753,632.489],[-193.737,662.822],[-194.969,715.842],[-208.476,759.305]]}],"t":286},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":305},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":false,"i":[[0,0],[-41.861,-0.423],[-9.041,-10.477],[-2.324,-8.872],[2.405,-14.34],[5.32,-15.85]],"o":[[22.394,-35.37],[13.838,0.14],[12.115,14.039],[3.685,14.066],[-3.191,19.032],[0,0]],"v":[[-356.957,696.004],[-259.26,641.159],[-216.329,660.562],[-201.823,695.973],[-199.219,738.048],[-211.132,784.096]]}],"t":337},{"i":{"x":0.35,"y":1},"o":{"x":0.44,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-12.575,-15.463],[-2.37,-16.893]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[12.175,14.972],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-199.461,614.045],[-169.868,643.1],[-153.497,684.314]]}],"t":382},{"i":{"x":0.44,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":false,"i":[[0,0],[-41.132,7.791],[-13.421,-3.371],[-3.51,-13.386],[-1.355,-14.477],[1.075,-16.684]],"o":[[22.394,-35.37],[13.597,-2.575],[13.421,3.371],[5.05,19.26],[1.799,19.214],[0,0]],"v":[[-356.957,696.004],[-273.583,616.332],[-237.381,621.44],[-211.364,651.772],[-203.966,709.295],[-205.535,754.781]]}],"t":410},{"i":{"x":0.46,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-5.111,-13.612],[-5.403,-15.822]],"o":[[22.394,-35.37],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[6.783,18.066],[0,0]],"v":[[-356.957,696.004],[-278.523,613.736],[-238.417,604.354],[-198.19,616.535],[-166.036,653.069],[-147.104,701.762]]}],"t":438},{"s":[{"c":false,"i":[[0,0],[-38.237,17.043],[-13.837,-0.194],[-11.402,-7.843],[-2.897,-14.249],[-2.836,-16.477]],"o":[[10.314,-40.232],[12.64,-5.634],[13.837,0.194],[11.98,8.24],[3.845,18.911],[0,0]],"v":[[-356.957,696.004],[-301.032,611.321],[-260.927,601.939],[-220.699,614.119],[-197.013,648.169],[-186.01,699.242]]}],"t":463}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":3,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"lc":1,"lj":1,"ml":10,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"angler line","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.44,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[7.625,1.085],[5.118,-2.109],[-7.151,-10.802],[-9.574,0.424],[-0.479,5.565],[5.282,5.285]],"o":[[-5.716,-0.813],[-10.031,4.134],[4.193,6.334],[13.164,-0.583],[0.835,-9.696],[-5.282,-5.285]],"v":[[-175.888,736.998],[-192.969,739.866],[-198.193,773.416],[-172.426,782.076],[-148.835,765.946],[-154.348,745.363]]}],"t":45},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":77},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":true,"i":[[7.419,2.071],[5.35,-1.423],[-5.681,-11.642],[-9.548,-0.829],[-1.201,5.455],[4.547,5.929]],"o":[[-5.561,-1.552],[-10.485,2.79],[3.331,6.827],[13.128,1.14],[2.093,-9.504],[-4.547,-5.929]],"v":[[-206.737,757.127],[-224.046,757.743],[-233.602,790.324],[-209.185,802.272],[-183.692,789.356],[-186.473,768.23]]}],"t":108},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":127},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":true,"i":[[7.434,2.016],[5.339,-1.463],[-5.766,-11.6],[-9.553,-0.759],[-1.161,5.464],[4.591,5.896]],"o":[[-5.572,-1.511],[-10.464,2.867],[3.381,6.803],[13.136,1.043],[2.023,-9.519],[-4.591,-5.896]],"v":[[-209.409,781.905],[-226.713,782.648],[-236.03,815.298],[-211.526,827.066],[-186.128,813.964],[-189.064,792.859]]}],"t":159},{"i":{"x":0.48,"y":0.48},"o":{"x":0.44,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-153.459,681.527],[-166.753,692.63],[-154.317,724.224],[-127.704,718.685],[-115.49,692.848],[-130.644,677.868]]}],"t":195},{"i":{"x":0.44,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.625,1.085],[5.118,-2.109],[-7.151,-10.802],[-9.574,0.424],[-0.479,5.565],[5.282,5.285]],"o":[[-5.716,-0.813],[-10.031,4.134],[4.193,6.334],[13.164,-0.583],[0.835,-9.696],[-5.282,-5.285]],"v":[[-175.888,736.998],[-192.969,739.866],[-198.193,773.416],[-172.426,782.076],[-148.835,765.946],[-154.348,745.363]]}],"t":223},{"i":{"x":0.55,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":255},{"i":{"x":0.46,"y":1},"o":{"x":0.39,"y":0},"s":[{"c":true,"i":[[7.419,2.071],[5.35,-1.423],[-5.681,-11.642],[-9.548,-0.829],[-1.201,5.455],[4.547,5.929]],"o":[[-5.561,-1.552],[-10.485,2.79],[3.331,6.827],[13.128,1.14],[2.093,-9.504],[-4.547,-5.929]],"v":[[-206.737,757.127],[-224.046,757.743],[-233.602,790.324],[-209.185,802.272],[-183.692,789.356],[-186.473,768.23]]}],"t":286},{"i":{"x":0.61,"y":1},"o":{"x":0.47,"y":0},"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":305},{"i":{"x":0.52,"y":1},"o":{"x":0.42,"y":0},"s":[{"c":true,"i":[[7.434,2.016],[5.339,-1.463],[-5.766,-11.6],[-9.553,-0.759],[-1.161,5.464],[4.591,5.896]],"o":[[-5.572,-1.511],[-10.464,2.867],[3.381,6.803],[13.136,1.043],[2.023,-9.519],[-4.591,-5.896]],"v":[[-209.409,781.905],[-226.713,782.648],[-236.03,815.298],[-211.526,827.066],[-186.128,813.964],[-189.064,792.859]]}],"t":337},{"i":{"x":0.35,"y":1},"o":{"x":0.44,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-153.459,681.527],[-166.753,692.63],[-154.317,724.224],[-127.704,718.685],[-115.49,692.848],[-130.644,677.868]]}],"t":382},{"i":{"x":0.44,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[7.702,0.041],[4.785,-2.784],[-8.55,-9.732],[-9.428,1.718],[0.28,5.579],[5.95,4.52]],"o":[[-5.773,-0.031],[-9.378,5.456],[5.014,5.707],[12.964,-2.362],[-0.487,-9.72],[-5.95,-4.52]],"v":[[-204.432,752.222],[-220.966,757.38],[-221.593,791.328],[-194.889,796.414],[-173.704,777.234],[-181.957,757.589]]}],"t":410},{"i":{"x":0.46,"y":1},"o":{"x":0.48,"y":0},"s":[{"c":true,"i":[[7.129,-2.915],[3.352,-4.405],[-11.628,-5.711],[-8.049,5.201],[2.397,5.045],[7.228,1.894]],"o":[[-5.344,2.185],[-6.57,8.634],[6.818,3.349],[11.068,-7.152],[-4.176,-8.79],[-7.228,-1.894]],"v":[[-147.067,698.976],[-160.36,710.078],[-147.925,741.673],[-121.311,736.133],[-109.098,710.296],[-124.251,695.316]]}],"t":438},{"s":[{"c":true,"i":[[7.5,-1.752],[4.006,-3.821],[-10.579,-7.476],[-8.77,3.865],[1.57,5.361],[6.838,3.012]],"o":[[-5.622,1.313],[-7.852,7.488],[6.204,4.384],[12.058,-5.314],[-2.735,-9.34],[-6.838,-3.012]],"v":[[-185.533,696.496],[-200.413,705.359],[-193.125,738.521],[-165.97,737.255],[-149.829,713.672],[-162.426,696.486]]}],"t":463}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"angler ball","np":2,"ty":"gr"},{"bm":0,"cix":2,"hd":false,"it":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":155},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":190.912},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[31.239,6.303],[-1.827,12.671],[-18.543,9.072],[-18.556,-2.152]],"o":[[0,0],[-26.419,-5.33],[1.827,-12.671],[18.649,-9.124],[0,0]],"v":[[-603.963,859.224],[-651.268,858.322],[-662.089,825.719],[-642.113,780.482],[-602.535,812.235]]}],"t":236},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.097,-13.46],[-0.093,9.992],[-13.398,8.949],[-18.677,0.344]],"o":[[0,0],[-17.734,11.314],[0.093,-9.992],[13.475,-9],[0,0]],"v":[[-595.479,864.65],[-624.899,892.777],[-646.229,872.53],[-639.89,831.018],[-600.336,817.891]]}],"t":271},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[26.593,-12.344],[-1.664,11.587],[-15.203,-11.186],[-18.557,-2.141]],"o":[[0,0],[-22.353,10.376],[1.664,-11.587],[18.963,13.953],[0,0]],"v":[[-600.273,858.918],[-636.13,867.924],[-657.745,841.094],[-641.556,785.364],[-598.873,811.928]]}],"t":303},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[16.639,-18.313],[2.502,9.557],[-13.429,8.569],[-18.671,0.585]],"o":[[0,0],[-13.986,15.393],[-2.502,-9.557],[14.062,-8.974],[0,0]],"v":[[-600.683,863.997],[-617.424,889.99],[-649.742,866.838],[-648.692,827.553],[-606.141,817.304]]}],"t":333},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[23.331,-3.752],[1.295,11.201],[-16.547,7.531],[-18.568,-2.043]],"o":[[0,0],[-21.003,3.378],[-1.295,-11.2],[17.328,-7.886],[0,0]],"v":[[-605.111,853.029],[-632.248,870.059],[-657.365,848.727],[-660.307,785.817],[-603.958,806.032]]}],"t":360},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[14.107,-17.621],[4.321,7.366],[-9.167,10.277],[-18.656,0.945]],"o":[[0,0],[-11.236,14.035],[-4.321,-7.366],[9.599,-10.762],[0,0]],"v":[[-608.459,856.128],[-621.861,888.122],[-649.5,874.921],[-666.466,827.685],[-614.819,809.549]]}],"t":381},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[26.593,-12.344],[-1.664,11.587],[-15.203,-11.186],[-18.557,-2.141]],"o":[[0,0],[-22.353,10.376],[1.664,-11.587],[18.963,13.953],[0,0]],"v":[[-600.273,858.918],[-636.13,867.924],[-657.745,841.094],[-641.556,785.364],[-598.873,811.928]]}],"t":402},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":421},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":434},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":443},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":451},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"s":[{"c":true,"i":[[0,0],[21.451,-27.928],[4.023,10.431],[-10.246,14.833],[-18.536,2.319]],"o":[[0,0],[-14.338,18.666],[-4.023,-10.431],[10.305,-14.918],[0,0]],"v":[[-598.698,860.07],[-634.892,883.503],[-657.066,863.295],[-661.183,820.306],[-608.476,814.087]]}],"t":455},{"s":[{"c":true,"i":[[0,0],[27.424,5.853],[2.432,13.096],[-20.226,7.225],[-18.034,-8.932]],"o":[[0,0],[-27.424,-5.853],[-2.432,-13.096],[13.649,-4.876],[0,0]],"v":[[-603.856,855.496],[-644.245,862.097],[-665.798,833.586],[-661.228,782.34],[-605.035,808.5]]}],"t":457}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.023529414088,0.180392161012,0.564705908298,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fill","np":2,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-633.617,826.699]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-633.617,826.699]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"rear fin","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":36,"ip":382,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.167]},"s":[226.748],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.141]},"s":[548.586],"t":535},{"s":[796.748],"t":624}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[343.038],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.08]},"s":[324.433],"t":535},{"s":[336.038],"t":624}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-6],"t":382},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-3],"t":535},{"s":[8],"t":624}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 28","op":625,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":255,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":37,"ip":409,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.851]},"o":{"x":[0.167],"y":[0.167]},"s":[239.686],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.291]},"s":[655.292],"t":548},{"s":[809.686],"t":624}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.066]},"o":{"x":[0.167],"y":[0.167]},"s":[323.142],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.074]},"s":[293.391],"t":548},{"s":[314.142],"t":624}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":409},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":548},{"s":[15],"t":624}]},"s":{"a":0,"ix":6,"k":[-29,29,100]}},"nm":"skinny fish 27","op":625,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":382,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":38,"ip":364,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.167]},"s":[230.769],"t":364},{"i":{"x":[0.688],"y":[0.712]},"o":{"x":[0.167],"y":[0.168]},"s":[429.769],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.379],"y":[0.385]},"s":[650.769],"t":528},{"s":[770.769],"t":580}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.55],"y":[1.033]},"o":{"x":[0.167],"y":[0.167]},"s":[353.463],"t":364},{"i":{"x":[0.652],"y":[-0.359]},"o":{"x":[0.405],"y":[1.216]},"s":[335.463],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.506],"y":[-0.021]},"s":[335.963],"t":528},{"s":[307.963],"t":580}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11.513],"t":364},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":441},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":528},{"s":[-21.513],"t":580}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 26","op":581,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":266,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":39,"ip":94,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.843]},"o":{"x":[0.167],"y":[0.167]},"s":[223.748],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.176]},"s":[497.259],"t":240.326},{"s":[766.748],"t":413}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[427.038],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.075]},"s":[413.433],"t":240.326},{"s":[431.038],"t":413}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-8],"t":84},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":240},{"s":[9],"t":413}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 25","op":414,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":-43,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":40,"ip":121,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.795]},"o":{"x":[0.167],"y":[0.167]},"s":[236.686],"t":120.707},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.205]},"s":[456.292],"t":258},{"s":[784.686],"t":413}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.096]},"o":{"x":[0.167],"y":[0.167]},"s":[407.142],"t":120.707},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.215]},"s":[392.391],"t":258},{"s":[403.142],"t":413}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-5],"t":121},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[1],"t":258},{"s":[3],"t":413}]},"s":{"a":0,"ix":6,"k":[-23,23,100]}},"nm":"skinny fish 24","op":414,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":84,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":41,"ip":-98,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.813]},"o":{"x":[0.167],"y":[0.167]},"s":[226.748],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.141]},"s":[548.586],"t":55},{"s":[796.748],"t":144}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.778],"y":[0.971]},"o":{"x":[0.167],"y":[0.167]},"s":[343.038],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.67],"y":[-0.08]},"s":[324.433],"t":55},{"s":[336.038],"t":144}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-6],"t":-98},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-3],"t":55},{"s":[8],"t":144}]},"s":{"a":0,"ix":6,"k":[-14,14,100]}},"nm":"skinny fish 18","op":144,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[13.747,14.156],[48.014,5.637],[8.11,-43.35],[-49,21],[-24.346,-6.76],[-2.343,9.762]],"o":[[-12.769,-0.468],[-50.652,-5.946],[-8.11,43.35],[47.498,-20.356],[4.998,-8.401],[5.544,-20.327]],"v":[[950.912,-927.04],[771.386,-942.903],[653.742,-884.219],[817,-842],[959.831,-849.643],[971.5,-876.5]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[4.085,2.192],[12.552,-5.891],[13.336,-6.589],[-26.641,-0.837],[-0.164,1.112],[1.694,12.859]],"o":[[-7.985,-4.284],[-22.297,10.465],[0,0],[1.033,0.032],[1.297,-8.801],[-0.605,-4.596]],"v":[[861.485,-970.966],[823.948,-966.859],[787.664,-941.411],[862.382,-927.682],[867.203,-930.949],[868.964,-958.995]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-12.303,-10.072],[-2.637,1.451],[-16.645,13.123],[-0.744,10.463],[33.849,-8.167]],"o":[[12.303,10.072],[1.45,1.187],[18.865,-10.381],[8.017,-6.321],[-34.624,-3.694],[0,0]],"v":[[824.518,-846.771],[853.425,-823.805],[866.711,-823.434],[922.584,-835.549],[927.136,-857.517],[823.926,-845.378]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-11.896,-3.394],[-0.703,5.898],[2.616,3.135],[5.418,-0.657],[4.597,-0.557]],"o":[[5.855,10.897],[3.104,0.886],[0.455,-3.817],[-0.461,-0.553],[-4.597,0.557],[0,0]],"v":[[761.339,-841.698],[797.453,-809.184],[813.703,-814.648],[800.737,-836.049],[775.541,-843.101],[761.751,-841.429]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-11,53],[9,-14],[0.702,0.026],[5.544,-20.327],[4.998,-8.401],[-0.674,-0.215],[9.099,33.797],[17,12]],"o":[[11,-53],[0,0],[13.747,14.156],[-2.343,9.762],[0.77,0.214],[22,7],[-5.25,-19.5],[-17,-12]],"v":[[1028,-928],[952,-927],[950.912,-927.04],[971.5,-876.5],[959.831,-849.643],[962,-849],[1032.75,-844.25],[1006,-885]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"body","np":6,"ty":"gr"}],"sr":1,"st":-225,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":42,"ip":-71,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.811],"y":[0.851]},"o":{"x":[0.167],"y":[0.167]},"s":[239.686],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.25],"y":[0.291]},"s":[655.292],"t":68},{"s":[809.686],"t":144}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.704],"y":[1.066]},"o":{"x":[0.167],"y":[0.167]},"s":[323.142],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.428],"y":[0.074]},"s":[293.391],"t":68},{"s":[314.142],"t":144}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-4],"t":-71},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":68},{"s":[15],"t":144}]},"s":{"a":0,"ix":6,"k":[-29,29,100]}},"nm":"skinny fish 7","op":144,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-98,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":43,"ip":-116,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.833],"y":[0.835]},"o":{"x":[0.167],"y":[0.167]},"s":[230.769],"t":-116},{"i":{"x":[0.688],"y":[0.712]},"o":{"x":[0.167],"y":[0.168]},"s":[429.769],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.379],"y":[0.385]},"s":[650.769],"t":48},{"s":[770.769],"t":100}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.55],"y":[1.033]},"o":{"x":[0.167],"y":[0.167]},"s":[353.463],"t":-116},{"i":{"x":[0.652],"y":[-0.359]},"o":{"x":[0.405],"y":[1.216]},"s":[335.463],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.506],"y":[-0.021]},"s":[335.963],"t":48},{"s":[307.963],"t":100}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-11.513],"t":-116},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":-39},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":48},{"s":[-21.513],"t":100}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 8","op":101,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-214,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":44,"ip":-75,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.81],"y":[0.754]},"o":{"x":[0.167],"y":[0.167]},"s":[241.769],"t":-75},{"i":{"x":[0.736],"y":[0.685]},"o":{"x":[0.32],"y":[0.197]},"s":[383.747],"t":42.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.169],"y":[0.259]},"s":[577.032],"t":118},{"s":[752.769],"t":206}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.617],"y":[-0.25]},"o":{"x":[0.167],"y":[0.167]},"s":[186.463],"t":-75},{"i":{"x":[0.564],"y":[0.972]},"o":{"x":[0.443],"y":[0.973]},"s":[160.463],"t":42.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.37],"y":[-0.036]},"s":[135.463],"t":118},{"s":[154.463],"t":206}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":-75},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-7.513],"t":-5},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24.513],"t":42},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-1.513],"t":82},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":118},{"s":[9.487],"t":206}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 14","op":205,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-173,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":45,"ip":-105,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.815],"y":[0.777]},"o":{"x":[0.167],"y":[0.167]},"s":[261.686],"t":-105},{"i":{"x":[0.736],"y":[0.751]},"o":{"x":[0.257],"y":[0.162]},"s":[366.573],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.293],"y":[0.185]},"s":[601.417],"t":105},{"s":[787.686],"t":165}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.762],"y":[1.172]},"o":{"x":[0.298],"y":[-0.456]},"s":[174.219],"t":-105},{"i":{"x":[0.635],"y":[-1.279]},"o":{"x":[0.181],"y":[3.579]},"s":[150.9],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.598],"y":[0.085]},"s":[151.896],"t":105},{"s":[175.142],"t":165}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[10],"t":-105},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-23],"t":-26},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[3],"t":-8},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":21},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2],"t":105},{"s":[13],"t":165}]},"s":{"a":0,"ix":6,"k":[-26,26,100]}},"nm":"skinny fish 12","op":161,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":-105,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":46,"ip":403,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.81],"y":[0.754]},"o":{"x":[0.167],"y":[0.167]},"s":[241.769],"t":403},{"i":{"x":[0.736],"y":[0.685]},"o":{"x":[0.32],"y":[0.197]},"s":[383.747],"t":520.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.169],"y":[0.259]},"s":[577.032],"t":596},{"s":[752.769],"t":684}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.617],"y":[-0.25]},"o":{"x":[0.167],"y":[0.167]},"s":[186.463],"t":403},{"i":{"x":[0.564],"y":[0.972]},"o":{"x":[0.443],"y":[0.973]},"s":[160.463],"t":520.219},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.37],"y":[-0.036]},"s":[135.463],"t":596},{"s":[154.463],"t":684}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":403},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-7.513],"t":473},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-24.513],"t":520},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-1.513],"t":560},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2.487],"t":596},{"s":[9.487],"t":684}]},"s":{"a":0,"ix":6,"k":[-12,12,100]}},"nm":"skinny fish 30","op":785,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":305,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":47,"ip":373,"ks":{"a":{"a":0,"ix":1,"k":[804,-884,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":1,"ix":3,"k":[{"i":{"x":[0.815],"y":[0.777]},"o":{"x":[0.167],"y":[0.167]},"s":[261.686],"t":373},{"i":{"x":[0.736],"y":[0.751]},"o":{"x":[0.257],"y":[0.162]},"s":[366.573],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.293],"y":[0.185]},"s":[601.417],"t":583},{"s":[787.686],"t":643}]},"y":{"a":1,"ix":4,"k":[{"i":{"x":[0.762],"y":[1.172]},"o":{"x":[0.298],"y":[-0.456]},"s":[174.219],"t":373},{"i":{"x":[0.635],"y":[-1.279]},"o":{"x":[0.181],"y":[3.579]},"s":[150.9],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.598],"y":[0.085]},"s":[151.896],"t":583},{"s":[175.142],"t":643}]}},"r":{"a":1,"ix":10,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[10],"t":373},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-23],"t":452},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[3],"t":470},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[-2],"t":499},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"s":[2],"t":583},{"s":[13],"t":643}]},"s":{"a":0,"ix":6,"k":[-26,26,100]}},"nm":"skinny fish 29","op":853,"shapes":[{"bm":0,"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[2.438,1.308],[7.493,-3.517],[7.961,-3.933],[-0.098,0.664],[1.011,7.676]],"o":[[-4.767,-2.557],[-13.31,6.247],[0,0],[0.774,-5.254],[-0.361,-2.743]],"v":[[869.333,-938.206],[831.926,-937.754],[810.266,-922.563],[872.746,-914.318],[873.798,-931.06]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[8.206,8.451],[28.661,3.365],[4.841,-25.877],[-29.25,12.536],[-14.533,-4.035],[-1.398,5.827]],"o":[[-7.622,-0.279],[-30.236,-3.55],[-4.841,25.877],[28.354,-12.151],[2.983,-5.015],[3.309,-12.134]],"v":[[907.716,-913.985],[800.549,-923.454],[730.322,-888.423],[827.778,-863.221],[913.04,-867.783],[920.006,-883.815]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[0,0],[-7.344,-6.012],[-1.574,0.866],[-9.936,7.834],[-0.444,6.246],[20.206,-4.875]],"o":[[7.344,6.012],[0.865,0.709],[11.262,-6.197],[4.786,-3.773],[-20.668,-2.205],[0,0]],"v":[[832.266,-866.069],[849.522,-852.36],[857.452,-852.138],[890.805,-859.37],[893.523,-872.483],[831.912,-865.237]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":3,"ix":4,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0,0],[-7.101,-2.026],[-0.419,3.521],[1.562,1.872]],"o":[[3.495,6.505],[1.853,0.529],[0.271,-2.279],[-0.276,-0.33]],"v":[[771.551,-861.04],[804.61,-843.132],[825.81,-846.893],[818.07,-859.668]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 4","ty":"sh"},{"hd":false,"ind":4,"ix":5,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-6.566,31.638],[5.372,-8.357],[0.419,0.015],[3.309,-12.134],[2.983,-5.015],[-0.403,-0.128],[5.432,20.175],[3.9,9.389]],"o":[[6.566,-31.638],[0,0],[8.206,8.451],[-1.398,5.827],[0.46,0.128],[13.133,4.179],[-3.134,-11.64],[-4.765,-11.471]],"v":[[943.733,-919.058],[908.365,-913.961],[907.716,-913.985],[920.006,-883.815],[913.04,-867.783],[914.335,-867.399],[948.568,-862.064],[940.6,-888.889]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 5","ty":"sh"},{"bm":0,"c":{"a":0,"ix":4,"k":[0.06274510175,0.254901975393,0.72549021244,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"fish","np":6,"ty":"gr"}],"sr":1,"st":373,"ty":4},{"ao":0,"bm":0,"ddd":0,"hasMask":true,"ind":48,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"masksProperties":[{"inv":false,"mode":"a","nm":"Mask 1","o":{"a":0,"ix":3,"k":100},"pt":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[88.137,-12.962],[12.805,-45.665],[-38.866,-42.123],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-71.021,10.445],[-17.005,60.643],[55.351,59.99],[95.359,-3.092],[34.698,-67.681],[-67.763,-84.518]],"v":[[370.863,114.962],[244.005,217.498],[269.773,440.293],[508.4,522.256],[727.627,418.208],[731.058,183.362]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.046,-20.379],[10.42,-46.268],[-30.051,-48.804],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-69.808,16.728],[-17.005,75.502],[39.227,63.707],[95.359,-3.092],[34.698,-67.681],[-67.764,-84.518]],"v":[[383.863,122.962],[258.005,233.498],[278.773,455.293],[481.4,523.256],[741.627,414.208],[740.058,184.362]]}],"t":73},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.046,-20.379],[10.42,-46.268],[-35.044,-45.352],[-83.026,2.692],[-34.698,67.681],[67.942,51.638]],"o":[[-69.808,16.728],[-17.005,75.502],[49.227,63.707],[95.359,-3.092],[34.698,-67.681],[-86.246,-65.55]],"v":[[371.92,120.962],[258.005,233.498],[278.773,455.293],[503.4,529.256],[741.627,414.208],[701.115,163.362]]}],"t":126},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[84.137,-33.962],[14.995,-65.498],[-46.267,-51.524],[-82.802,6.663],[-34.697,67.681],[67.942,51.638]],"o":[[-66.566,26.869],[-17.272,75.441],[48.227,53.707],[102.6,-8.256],[34.698,-67.681],[-86.246,-65.55]],"v":[[356.863,114.962],[252.005,229.498],[278.773,455.293],[529.4,520.256],[741.627,414.208],[717.058,144.362]]}],"t":209},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[84.137,-33.962],[9.995,-61.498],[-51.671,-46.103],[-82.892,5.424],[-34.697,67.681],[74.942,48.638]],"o":[[-66.566,26.869],[-15.042,92.549],[51.227,45.707],[95.6,-6.256],[34.698,-67.681],[-90.869,-58.975]],"v":[[339.863,122.962],[247.005,243.498],[301.773,466.293],[542.4,517.256],[735.627,404.208],[710.058,147.362]]}],"t":307},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[104.137,-40.962],[0.63,-58.048],[-43.773,-49.293],[-82.892,5.424],[-34.697,67.681],[84.65,31.073]],"o":[[-66.802,26.276],[-1.005,92.502],[45.586,51.335],[95.6,-6.256],[34.698,-67.681],[-99.058,-36.362]],"v":[[333.863,133.962],[251.005,274.498],[301.773,466.293],[558.4,522.256],[735.627,411.208],[701.058,133.362]]}],"t":401},{"s":[{"c":true,"i":[[88.137,-12.962],[12.805,-45.665],[-38.866,-42.123],[-83.026,2.692],[-34.698,67.681],[48.329,60.278]],"o":[[-71.021,10.445],[-17.005,60.643],[55.351,59.99],[95.359,-3.092],[34.698,-67.681],[-67.763,-84.518]],"v":[[370.863,114.962],[244.005,217.498],[269.773,440.293],[508.4,522.256],[727.627,418.208],[731.058,183.362]]}],"t":479}]},"x":{"a":0,"ix":4,"k":0}}],"nm":"Royal Blue Solid 2","op":480,"sc":"#295bd6","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"hasMask":true,"ind":49,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"masksProperties":[{"inv":false,"mode":"a","nm":"Mask 1","o":{"a":0,"ix":3,"k":100},"pt":{"a":1,"ix":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.051,-16.552],[24.831,-57.178],[-41.731,-39.461],[-106.322,-2.671],[-35.963,66.206],[59.082,45.141]],"o":[[-89.051,16.552],[-24.876,57.282],[65.309,61.757],[102.883,2.585],[35.963,-66.207],[-99.87,-76.304]],"v":[[366.083,103.552],[203.585,205.293],[219.691,460.243],[500.411,539.857],[774.655,428.712],[770.918,163.505]]}],"t":0},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.864,-16.103],[25.058,-55.629],[-32.435,-46.308],[-107.324,0.385],[-36.291,64.412],[59.622,43.917]],"o":[[-89.864,16.103],[-25.104,55.729],[49.797,71.097],[135.123,-0.485],[36.291,-64.412],[-100.782,-74.236]],"v":[[370.69,100.545],[212.076,202.73],[225.346,451.719],[493.877,535.485],[769.393,410.125],[765.378,149.695]]}],"t":47},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[91.89,-16.153],[25.623,-55.802],[-33.166,-46.453],[-109.712,-2.607],[-37.109,64.613],[72.416,64.339]],"o":[[-91.89,16.153],[-25.669,55.903],[50.919,71.319],[106.164,2.523],[37.109,-64.613],[-94.344,-83.821]],"v":[[360.46,101.811],[205.318,206.979],[212.813,458.552],[485.25,551.81],[809.244,445.989],[774.81,168.887]]}],"t":143},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[92.876,-16.153],[25.898,-55.802],[-37.94,-42.92],[-110.889,-2.607],[-37.507,64.613],[73.193,64.339]],"o":[[-92.876,16.153],[-25.945,55.903],[59.508,67.319],[107.303,2.523],[37.507,-64.613],[-95.356,-83.821]],"v":[[387.814,96.295],[215.025,178.915],[213.492,454.681],[510.182,539.777],[798.645,446.957],[790.807,167.661]]}],"t":173},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[88.992,-15.833],[24.815,-54.696],[-44.612,-60.458],[-101.813,-5.663],[-35.939,63.332],[70.132,63.063]],"o":[[-88.992,15.833],[-24.86,54.794],[50.857,68.922],[105.291,5.856],[35.939,-63.332],[-91.368,-82.158]],"v":[[377.077,96.151],[189.86,190.239],[214.481,446.815],[460.575,534.144],[779.335,442.142],[777.868,157.158]]}],"t":269},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[89.624,-16.429],[18.389,-58.95],[-32.317,-58.667],[-102.537,-5.876],[-44.086,61.037],[70.631,65.438]],"o":[[-89.624,16.429],[-27.674,88.714],[42.298,76.786],[106.04,6.077],[46.251,-64.033],[-92.018,-85.253]],"v":[[383.888,98.571],[196.674,202.286],[215.317,457.202],[467.213,545.923],[766.167,463.722],[776.369,158.225]]}],"t":315},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[85.272,-16.153],[25.844,-61.915],[-45.261,-47.159],[-97.558,-5.777],[-41.946,60.011],[67.201,64.339]],"o":[[-85.272,16.153],[-23.474,56.235],[49.252,51.319],[100.891,5.975],[44.005,-62.957],[-87.55,-83.821]],"v":[[371.716,98.295],[210.156,184.915],[224.748,457.681],[484.558,533.777],[778.995,468.957],[768.799,153.661]]}],"t":413},{"s":[{"c":true,"i":[[89.051,-16.552],[24.831,-57.178],[-41.731,-39.461],[-106.322,-2.671],[-35.963,66.206],[59.082,45.141]],"o":[[-89.051,16.552],[-24.876,57.282],[65.309,61.757],[102.883,2.585],[35.963,-66.207],[-99.87,-76.304]],"v":[[366.083,103.552],[203.585,205.293],[219.691,460.243],[500.411,539.857],[774.655,428.712],[770.918,163.505]]}],"t":479}]},"x":{"a":0,"ix":4,"k":0}}],"nm":"Deep Royal Blue Solid 2","op":480,"sc":"#1041b9","sh":768,"sr":1,"st":0,"sw":1024,"ty":1},{"ao":0,"bm":0,"ddd":0,"ind":50,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[512,384,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[512,384,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Deep Royal Blue Solid 1","op":480,"sc":"#062e90","sh":768,"sr":1,"st":0,"sw":1024,"ty":1}],"markers":[],"nm":"Hunter gone too deep","op":480,"v":"5.5.9","w":1024}
diff --git a/cobalt/renderer/rasterizer/testdata/white_material_wave_loading.json b/cobalt/renderer/rasterizer/testdata/white_material_wave_loading.json
index cafcccf..b62abd4 100644
--- a/cobalt/renderer/rasterizer/testdata/white_material_wave_loading.json
+++ b/cobalt/renderer/rasterizer/testdata/white_material_wave_loading.json
@@ -1 +1 @@
-{"v":"4.6.8","fr":29.9700012207031,"ip":0,"op":40.0000016292334,"w":256,"h":256,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[208.6,127.969,0],"e":[208.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":30,"s":[208.6,88,0],"e":[208.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":40.0000016292334}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9843137,0.5490196,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[168.6,128,0],"e":[168.6,88,0],"to":[0,-6.66666650772095,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":25,"s":[168.6,88,0],"e":[168.6,128,0],"to":[0,0,0],"ti":[0,-6.66666650772095,0]},{"t":35.0000014255792}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9921569,0.8470588,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[128.594,127.969,0],"e":[128.594,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[128.594,88,0],"e":[128.594,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":30.0000012219251}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.2627451,0.627451,0.2784314,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":5,"s":[88.6,127.969,0],"e":[88.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[88.6,88,0],"e":[88.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":25.0000010182709}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.1176471,0.5333334,0.8980392,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[48.6,127.969,0],"e":[48.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[48.6,88,0],"e":[48.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":20.0000008146167}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.8980392,0.2235294,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1}]}
\ No newline at end of file
+{"v":"4.6.8","fr":29.9700012207031,"ip":0,"op":40.0000016292334,"w":256,"h":256,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[208.6,127.969,0],"e":[208.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":30,"s":[208.6,88,0],"e":[208.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":40.0000016292334}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9843137,0.5490196,0,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[168.6,128,0],"e":[168.6,88,0],"to":[0,-6.66666650772095,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":25,"s":[168.6,88,0],"e":[168.6,128,0],"to":[0,0,0],"ti":[0,-6.66666650772095,0]},{"t":35.0000014255792}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.9921569,0.8470588,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[128.594,127.969,0],"e":[128.594,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[128.594,88,0],"e":[128.594,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":30.0000012219251}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.2627451,0.627451,0.2784314,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":5,"s":[88.6,127.969,0],"e":[88.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":15,"s":[88.6,88,0],"e":[88.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":25.0000010182709}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.1176471,0.5333334,0.8980392,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[48.6,127.969,0],"e":[48.6,88,0],"to":[0,-6.66145849227905,0],"ti":[0,-0.00520833348855,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":10,"s":[48.6,88,0],"e":[48.6,128,0],"to":[0,0.00520833348855,0],"ti":[0,-6.66666650772095,0]},{"t":20.0000008146167}]},"a":{"a":0,"k":[-70,-0.5,0]},"s":{"a":0,"k":[75,75,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[33.75,34.5]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"fl","c":{"a":0,"k":[0.8980392,0.2235294,0.2078431,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[-70.125,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":300.00001221925,"st":0,"bm":0,"sr":1}]}
diff --git a/cobalt/renderer/rasterizer/testdata/ytk_ink_logo_rotate.json b/cobalt/renderer/rasterizer/testdata/ytk_ink_logo_rotate.json
index 0c4889e..43412ee 100644
--- a/cobalt/renderer/rasterizer/testdata/ytk_ink_logo_rotate.json
+++ b/cobalt/renderer/rasterizer/testdata/ytk_ink_logo_rotate.json
@@ -1 +1 @@
-{"assets":[],"ddd":0,"fr":60,"h":800,"ip":0,"layers":[{"ao":0,"bm":0,"ddd":0,"ind":1,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":0},"p":{"a":0,"ix":2,"k":[450,400,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":1,"ix":6,"k":[{"e":[90.314,90.314,100],"i":{"x":[0.644,0.644,0.833],"y":[1.071,1.071,1]},"n":["0p644_1p071_0p168_0p602","0p644_1p071_0p168_0p602","0p833_1_0p167_0"],"o":{"x":[0.168,0.168,0.167],"y":[0.602,0.602,0]},"s":[100,100,100],"t":60},{"e":[104.536,104.536,100],"i":{"x":[0.565,0.565,0.75],"y":[0.913,0.913,1]},"n":["0p565_0p913_0p443_0p07","0p565_0p913_0p443_0p07","0p75_1_0p313_0"],"o":{"x":[0.443,0.443,0.313],"y":[0.07,0.07,0]},"s":[90.314,90.314,100],"t":74},{"e":[97.517,97.517,100],"i":{"x":[0.583,0.583,0.75],"y":[0.95,0.95,1]},"n":["0p583_0p95_0p36_-0p167","0p583_0p95_0p36_-0p167","0p75_1_0p167_0"],"o":{"x":[0.36,0.36,0.167],"y":[-0.167,-0.167,0]},"s":[104.536,104.536,100],"t":90.334},{"e":[100,100,100],"i":{"x":[0.41,0.41,0.833],"y":[1,1,1]},"n":["0p41_1_0p345_-0p133","0p41_1_0p345_-0p133","0p833_1_0p167_0"],"o":{"x":[0.345,0.345,0.167],"y":[-0.133,-0.133,0]},"s":[97.517,97.517,100],"t":109},{"t":130}]}},"nm":"Null 5","op":794,"sr":1,"st":0,"ty":3},{"ao":0,"bm":0,"ddd":0,"ind":2,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-55.427,-3.31,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":0,"ix":3,"k":12.573},"y":{"a":0,"ix":4,"k":-4.31}},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"logo 2","op":77,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[7.73,2.568],[2.362,12.462],[0.891,6.298],[0.935,5.344],[-2.77,4.114],[-10.821,-0.352],[-13.732,-7.376],[-4.859,-2.502],[-0.133,-2.44]],"o":[[-8.878,7.33],[-6.114,3.949],[-3.087,-1.025],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[3.936,-5.845],[8.204,0.267],[16.024,8.607],[8.662,4.46],[0.675,12.422]],"v":[[-20.042,19.432],[-66.66,49.812],[-83.142,54.307],[-100.622,31.626],[-110.605,-13.055],[-110.541,-25.505],[-110.309,-40.383],[-92.674,-52.038],[-53.267,-40.8],[-13.254,-20.92],[2.317,-2.15]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.502,-8.233],[18.153,-11.851],[4.093,0.399],[2.362,12.462],[2.659,14.953],[3.273,9.178],[-6.936,4.182],[-7.532,-2.115],[-14.661,-5.294],[-10.786,-3.588],[-4.452,-5.876]],"o":[[-8.271,8.009],[-6.094,3.979],[-3.238,-0.316],[-1.526,-8.052],[-2.659,-14.953],[-1.996,-5.597],[5.667,-3.416],[10.998,3.088],[13.081,4.724],[12.999,4.324],[5.555,7.331]],"v":[[-22.677,24.708],[-61.809,47.252],[-76.375,54.876],[-99.506,41.478],[-106.845,6.036],[-110.435,-19.767],[-108.993,-45.253],[-88.812,-54.248],[-56.223,-43.346],[-23.019,-29.185],[5.606,-5.041]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.125,-8.386],[20.489,-7.4],[6.842,2.815],[5.392,12.432],[3.345,15.71],[0.858,9.371],[-6.936,4.182],[-7.532,-2.115],[-14.661,-5.294],[-9.337,-6.482],[-1.511,-8.904]],"o":[[-9.469,6.549],[-6.845,2.472],[-3.008,-1.238],[-4.226,-9.745],[-2.745,-12.892],[-0.648,-7.082],[5.667,-3.416],[10.998,3.088],[13.081,4.724],[10.991,7.63],[2.229,13.136]],"v":[[-21.182,25.528],[-65.108,52.487],[-85.645,57.105],[-99.311,36.5],[-110.414,3.372],[-114.205,-25.134],[-105.755,-49.722],[-84.247,-54.354],[-52.911,-45.114],[-19.078,-27.014],[0.932,-6.923]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"e":{"a":0,"ix":2,"k":0},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":1,"ix":3,"k":[{"e":[-358],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[5],"t":40.322},{"t":62.09765625}]},"s":{"a":1,"ix":1,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.322},{"t":62.09765625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":2,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":13}},{"a":{"a":0,"ix":1,"k":[-52.527,0.805]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.516},{"t":40.322265625}]},"p":{"a":1,"ix":2,"k":[{"e":[-53.264,1.523],"i":{"x":0.25,"y":1},"n":"0p25_1_0p333_0","o":{"x":0.333,"y":0},"s":[-73.527,0.621],"t":40.322,"ti":[-3.37727856636047,-0.150390625],"to":[3.37727856636047,0.150390625]},{"t":62.09765625}]},"r":{"a":1,"ix":6,"k":[{"e":[0],"i":{"x":[0.25],"y":[1]},"n":["0p25_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[125],"t":40.322},{"t":62}]},"s":{"a":1,"ix":3,"k":[{"e":[95,95],"i":{"x":[0.25,0.25],"y":[1,1]},"n":["0p25_1_0p333_0","0p25_1_0p333_0"],"o":{"x":[0.333,0.333],"y":[0,0]},"s":[551,551],"t":40.322},{"t":62.09765625}]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"logo play outline 5","np":5,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-63.528,3.54]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-63.528,3.54]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"logo 1","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":3,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[4,-65,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[4,-1,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[150],"t":16.936},{"t":74.193359375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Shape Layer 9","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-6.888,-1.034],[-5.036,6.058],[5.18,-3.551],[3.786,-1.13]],"o":[[7.985,1.199],[5.983,-7.197],[-5.183,3.553],[-8.695,2.595]],"v":[[85.762,-6.982],[111.589,-17.862],[104.009,-29.738],[93.608,-17.684]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.491,-7.081],[-30.966,7.045],[13.73,-0.407],[8.207,-2.711]],"o":[[15.358,8.06],[19.962,-4.541],[-13.74,0.407],[-8.207,2.711]],"v":[[18.642,30.94],[70.374,17.651],[75.878,-7.444],[39.26,4.727]]}],"t":52.42},{"e":[{"c":true,"i":[[0.148,-2.047],[-1.234,1.389],[2.312,-1.938],[-0.04,-1.898]],"o":[[-0.183,2.525],[2.986,-3.362],[-1.268,1.063],[0.038,1.779]],"v":[[108.335,-24.141],[112.716,-26.264],[110.65,-31.377],[109.478,-27.98]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.888,-1.034],[-5.036,6.058],[5.18,-3.551],[3.786,-1.13]],"o":[[7.985,1.199],[5.983,-7.197],[-5.183,3.553],[-8.695,2.595]],"v":[[85.762,-6.982],[111.589,-17.862],[104.009,-29.738],[93.608,-17.684]]}],"t":55.645},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[242.859,-52.375]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[88.859,-229.375]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[7.177,6.544],[-8.738,-13.309],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-9.405,-8.575],[6.707,10.215],[4.565,9.006]],"v":[[401.129,15.626],[400.019,-2.962],[382.828,-20.875],[372.805,-16.537],[386.244,6.961]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[12.068,6.226],[-14.285,-12.581],[-12.849,-16.454]],"o":[[5.007,-5.512],[-12.952,-15.923],[-13.523,-6.976],[10.964,9.656],[8.692,11.131]],"v":[[387.993,-7.418],[383.362,-26.673],[341.474,-60.529],[327.67,-49.276],[366.851,-16.461]]}],"t":48.248},{"e":[{"c":true,"i":[[-0.993,1.489],[1.909,4.171],[2.276,1.629],[-5.541,-5.222],[-5.129,-9.53]],"o":[[2.399,-3.598],[-3.39,-7.407],[-3.667,-2.625],[2.433,2.293],[3.323,6.174]],"v":[[410.755,26.976],[412.085,18.426],[399.222,5.427],[394.157,11.071],[401.517,23.807]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[7.177,6.544],[-8.738,-13.309],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-9.405,-8.575],[6.707,10.215],[4.565,9.006]],"v":[[401.129,15.626],[400.019,-2.962],[382.828,-20.875],[372.805,-16.537],[386.244,6.961]]}],"t":51.252},{"e":[{"c":true,"i":[[-0.763,0.687],[0.18,1.155],[1.359,0.876],[-1.28,-2.687],[-4.111,-4.715]],"o":[[1.39,-1.252],[-0.339,-2.167],[-2.19,-1.41],[0.788,1.738],[0.894,1.025]],"v":[[428.895,47.993],[429.758,45.148],[426.433,40.728],[422.604,43.105],[425.772,47.866]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.993,1.489],[1.909,4.171],[2.276,1.629],[-5.541,-5.222],[-5.129,-9.53]],"o":[[2.399,-3.598],[-3.39,-7.407],[-3.667,-2.625],[2.433,2.293],[3.323,6.174]],"v":[[410.755,26.976],[412.085,18.426],[399.222,5.427],[394.157,11.071],[401.517,23.807]]}],"t":54.479},{"t":58.509765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[365.484,-29.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.51},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[200.484,-121.633]},"r":{"a":0,"ix":6,"k":29},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[408.596,154.877],[412.745,139.088],[405.995,115.788],[392.444,111.262],[392.729,141.753]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.751,1.764],[-2.424,7.903],[-1.784,10.117],[3.062,-19.823],[1.437,-9.478]],"o":[[9.229,-1.86],[7.139,-22.852],[2.052,-11.633],[-2.826,18.292],[-1.437,9.478]],"v":[[399.835,114.727],[409.4,88.963],[419.255,58.246],[399.474,62.446],[388.936,99.323]]}],"t":47.58},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[408.596,154.877],[412.745,139.088],[405.995,115.788],[392.444,111.262],[392.729,141.753]]}],"t":52.42},{"e":[{"c":true,"i":[[-0.01,4.04],[3.092,0.708],[3.262,1.803],[-0.596,-5.742],[-3.992,-1.697]],"o":[[0.013,-5.454],[-2.523,-0.578],[-1.65,-0.912],[0.528,5.09],[3.469,1.475]],"v":[[471.142,229.879],[466.566,225.043],[461.652,221.472],[456.102,227.307],[462.974,232.818]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"t":59.26},{"t":64.654296875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[402.877,73.469]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.1},{"t":66.267578125}]},"p":{"a":0,"ix":2,"k":[207.867,-67.961]},"r":{"a":0,"ix":6,"k":-20},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[11.29,3.117],[0.197,-12.283],[-3.081,-1.171],[-3.113,5.869]],"o":[[-11.144,-3.077],[-0.159,9.887],[3.081,1.171],[3.113,-5.869]],"v":[[329.72,193.61],[313.54,215.066],[329.213,221.643],[337.598,210.68]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.995,10.819],[10.117,-17.436],[-3.55,-1.349],[-3.586,6.762]],"o":[[-12.838,-17.494],[-5.717,9.853],[3.549,1.349],[3.586,-6.762]],"v":[[352.151,161.509],[314.797,197.956],[325.389,210.461],[345.809,187.782]]}],"t":46.773},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[317.816,242.457],[313.756,247.84],[317.689,249.49],[319.792,246.74]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[11.29,3.117],[0.197,-12.283],[-3.081,-1.171],[-3.113,5.869]],"o":[[-11.144,-3.077],[-0.159,9.887],[3.081,1.171],[3.113,-5.869]],"v":[[329.72,193.61],[313.54,215.066],[329.213,221.643],[337.598,210.68]]}],"t":50.807},{"t":56.0625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[330.678,195.95]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.551},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":56.062},{"t":57.23046875}]},"p":{"a":0,"ix":2,"k":[141.52,80.707]},"r":{"a":0,"ix":6,"k":60},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.299,1.799],[-0.469,6.534],[1.52,8.173],[3.406,-8.013],[-0.07,-4.265]],"o":[[6.299,-1.799],[0.402,-9.84],[-1.909,-6.473],[-3.406,8.013],[-0.304,13.4]],"v":[[314.217,264.219],[321.753,251.593],[313.307,209.217],[300.113,205.547],[305.614,250.119]]}],"t":45.967},{"e":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[1.571,-5.041],[-6.029,-1.983]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-3.101,9.947],[6.918,2.275]],"v":[[356.925,279.698],[355.495,268.51],[342.563,265.246],[330.417,264.86],[343.974,280.417]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"t":50.807},{"e":[{"c":true,"i":[[-2.09,1.074],[0.323,2.58],[2.378,0.334],[0.937,-1.676],[-3.779,-0.758]],"o":[[2.69,-1.352],[0.061,-2.472],[-2.862,-0.104],[-1.245,2.227],[2.121,0.425]],"v":[[360.895,277.772],[363.141,274.149],[359.535,270.209],[353.456,272.24],[355.594,278.428]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[1.571,-5.041],[-6.029,-1.983]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-3.101,9.947],[6.918,2.275]],"v":[[356.925,279.698],[355.495,268.51],[342.563,265.246],[330.417,264.86],[343.974,280.417]]}],"t":54.838},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.207,234.285]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.801},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[-24.793,-187.715]},"r":{"a":0,"ix":6,"k":-92},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[1.302,2.193],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-1.302,-2.193],[-4.712,2.057]],"v":[[170.108,388.834],[193.266,376.795],[186.938,365.264],[171.13,371.429]]}],"t":40.879},{"e":[{"c":true,"i":[[-1.749,-2.192],[-3.165,2.925],[2.295,0.333],[2.23,-0.677]],"o":[[0.462,0.578],[1.126,-1.041],[-1.144,-0.166],[-0.852,0.259]],"v":[[116.499,391.697],[122.124,391.566],[120.615,389.285],[117.416,388.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"t":46.719},{"t":52.55859375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[180.867,376.203]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-196.133,54.203]},"r":{"a":0,"ix":6,"k":90},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.291,-2.98],[-7.25,4.085],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[-3.119,7.2],[12.7,-7.156],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[177.733,375.065],[190.522,382.514],[211.268,337.566],[194.441,338.289],[188.129,352.386]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-3.431,7.581],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[1.742,7.65],[6.011,-13.28],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[197.421,355.676],[212.139,354.121],[213.768,307.566],[196.941,308.289],[197.129,333.886]]}],"t":40.1},{"e":[{"c":true,"i":[[1.788,-1.432],[-5.868,0.123],[-2.518,5.434],[5.114,1.499],[2.58,-1.872]],"o":[[-4.319,3.46],[5.414,-0.113],[1.711,-3.692],[-2.691,-0.789],[-1.879,1.364]],"v":[[156.319,384.501],[161.836,393.363],[189.018,380.316],[183.941,372.039],[160.879,381.386]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.291,-2.98],[-7.25,4.085],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[-3.119,7.2],[12.7,-7.156],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[177.733,375.065],[190.522,382.514],[211.268,337.566],[194.441,338.289],[188.129,352.386]]}],"t":45.941},{"e":[{"c":true,"i":[[0.744,-0.596],[-2.442,0.051],[-1.048,2.261],[2.128,0.624],[1.074,-0.779]],"o":[[-1.797,1.44],[2.253,-0.047],[0.712,-1.537],[-1.12,-0.328],[-0.782,0.568]],"v":[[152.797,387.943],[155.093,391.631],[160.788,389.739],[158.675,386.294],[154.695,386.646]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.788,-1.432],[-5.868,0.123],[-2.518,5.434],[5.114,1.499],[2.58,-1.872]],"o":[[-4.319,3.46],[5.414,-0.113],[1.711,-3.692],[-2.691,-0.789],[-1.879,1.364]],"v":[[156.319,384.501],[161.836,393.363],[189.018,380.316],[183.941,372.039],[160.879,381.386]]}],"t":51.779},{"t":55.28515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[206.104,331.532]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":38.934},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.1},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":55.285},{"t":56.451171875}]},"p":{"a":0,"ix":2,"k":[-152.656,92.957]},"r":{"a":0,"ix":6,"k":112},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[206,54],[67.338,89.195],[-84.273,114.458],[-211.2,12.815]]}],"t":31.451},{"e":[{"c":false,"i":[[-15,1.5],[-37.578,-19.583],[-3,-44],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[3.794,40.79],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[37.578,19.583],[3,44],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[-2.589,-29.677],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-184.621],[166,-45],[114.252,37.17],[-70.811,67.607],[-143.612,8.888],[-158.621,-101.461],[-73.592,-173.641],[44.435,-197.29],[172,-174],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[46.834,83.683],[-97.661,104.004],[-210.313,28.794]]}],"t":31.451},{"e":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[5,22],[5.969,43.216],[-27.724,1.98],[-27.292,5.304],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-63.325,10.796],[-23,-9],[-5,-22],[-5.969,-43.217],[0,0],[61.979,-12.046],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[130,-182],[165.417,-61],[147,23],[41.024,50.471],[-110.796,62.374],[-144.029,10.602],[-160.029,-98.481],[-73.898,-173.345],[43.847,-197.384],[176.5,-168.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-211.339,12.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[51.334,86.68],[-84.272,116.49],[-211.339,12.146]]}],"t":31.451},{"e":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[8.582,29.856]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[-8.582,-29.856]],"v":[[-2.5,-188.5],[94,-191],[166.432,-76.005],[119.903,36.752],[-15.985,60.262],[-120.01,60.019],[-155.66,-43.5],[-156.631,-116.131],[-90.5,-169.67],[44.376,-199.521],[168,-181],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-212.339,23.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-211.339,12.146]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":31.535},{"t":54.89453125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":40.87890625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":4,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[6.5,-5.5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0.3],"y":[1]},"n":["0p3_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[23],"t":40.322},{"t":75}]},"s":{"a":0,"ix":6,"k":[325,325,100]}},"nm":"New YT Logo","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-0.326,-1.86],[-0.255,-1.494],[-1.767,1.07],[-1.963,1.265],[1.747,0.851],[1.85,0.446]],"o":[[0.282,1.61],[0.326,1.907],[4.66,-2.82],[2.093,-1.349],[-3.535,-1.721],[-1.349,-0.326]],"v":[[-11.952,-10.404],[-8.696,15.782],[-6.743,16.572],[16.792,0.852],[16.191,-1.472],[-10.836,-11.474]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":1,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":61.291},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Play outline","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.953,-1.488],[0,0],[0.372,3.814],[0.27,2.158],[-1.767,-0.651],[-5.94,-2.599]],"o":[[-0.145,0.11],[-2.233,1.674],[0,0],[-0.186,-1.488],[3.665,1.35],[2.977,1.302]],"v":[[17.908,1.828],[-5.626,17.549],[-10.092,15.596],[-13.347,-11.102],[-10.65,-12.869],[17.722,-2.358]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Play fill","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[11.851,-1.581],[3.54,-1.275],[3.086,-2.989],[-0.716,-7.44],[-1.804,-5.198],[-5.767,-0.279],[-7.298,2.017],[-15.482,0.075],[-5.023,9.116],[0.102,3.841],[0.005,0.359],[0.683,4.399],[2.974,2.189],[4.279,-0.465]],"o":[[-11.854,1.582],[-4.894,1.761],[-5.673,5.493],[0.556,5.771],[2.434,7.014],[5.316,0.257],[10.074,-2.784],[7.07,-0.034],[2.936,-5.297],[-0.011,-0.424],[-0.063,-4.579],[-0.837,-5.395],[-4.847,-3.567],[-5.475,0.595]],"v":[[-3.238,-34.06],[-33.505,-29.05],[-45.533,-21.986],[-50.743,-3.474],[-45.254,31.317],[-32.324,42.572],[-12.991,40.032],[24.699,35.317],[47.862,24.805],[50.462,8.871],[50.435,7.694],[47.118,-19.567],[39.676,-32.962],[24.699,-37.427]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":1,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":41.129},{"t":41.935546875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Logo outline","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.051,3.677],[1.339,3.555],[3.406,2.55],[4.532,0.087],[6.159,-2.255],[2.827,-2.784],[-0.733,-7.747],[-1.644,-4.818],[-5.513,-0.59],[-39.125,-0.085],[-2.451,4.497]],"o":[[-0.066,-4.824],[-0.864,-2.295],[-4.355,-3.26],[-3.16,-0.06],[-4.595,1.682],[-4.6,4.531],[0.665,7.025],[1.817,5.326],[16.83,1.8],[11.852,0.026],[2.882,-5.289]],"v":[[49.159,8.134],[44.959,-23.102],[38.853,-32.13],[26.415,-36.073],[-33.735,-27.452],[-44.765,-20.814],[-49.523,-4.122],[-43.917,31.02],[-33.246,41.022],[26.681,33.696],[46.878,24.062]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":58.871},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Red fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":6,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[8,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[8,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[120],"t":31.451},{"t":63.708984375}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p167_0p167","0_1_0p167_0p167","0p667_1_0p167_-1p171"],"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-1.171]},"s":[198,198,100],"t":31.451},{"t":60.484375}]}},"nm":"Shape Layer 11","op":83,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-4.179,5.573],[2.943,7.307],[-0.668,-6.244],[0.802,-3.869]],"o":[[4.844,-6.46],[-3.496,-8.681],[0.668,6.249],[-1.841,8.885]],"v":[[69.296,-33.328],[71.973,-61.224],[57.924,-60.187],[63.598,-45.312]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.203,-5.516],[-22.893,20.519],[11.802,-7.029],[6.815,-4.688]],"o":[[9.672,3.756],[15.233,-13.653],[-13.384,7.971],[-7.121,4.898]],"v":[[6.66,49.627],[54.714,17.911],[45.779,4.127],[20.757,20.39]]}],"t":52.42},{"e":[{"c":true,"i":[[-1.603,-1.281],[0.446,1.804],[-0.288,-3.003],[-1.587,-1.042]],"o":[[1.977,1.581],[-1.08,-4.365],[0.158,1.647],[1.487,0.976]],"v":[[50.032,-58.071],[50.764,-62.884],[45.38,-64.077],[47.515,-61.187]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.179,5.573],[2.943,7.307],[-0.668,-6.244],[0.802,-3.869]],"o":[[4.844,-6.46],[-3.496,-8.681],[0.668,6.249],[-1.841,8.885]],"v":[[69.296,-33.328],[71.973,-61.224],[57.924,-60.187],[63.598,-45.312]]}],"t":57.258},{"t":61.845703125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[49.414,12.564]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.734},{"t":62.90234375}]},"p":{"a":0,"ix":2,"k":[-129.586,-94.436]},"r":{"a":0,"ix":6,"k":-58},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.247,2.256],[5.565,3.559],[7.177,6.544],[-8.738,-13.309],[-8.848,-4.831]],"o":[[3.411,-6.173],[-8.295,-5.304],[-9.405,-8.575],[6.707,10.215],[8.862,4.839]],"v":[[397.21,-7.242],[385.77,-21.935],[368.596,-35.393],[358.574,-31.055],[380.034,-5.956]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[12.068,6.226],[-14.285,-12.581],[-12.849,-16.454]],"o":[[5.007,-5.512],[-12.952,-15.923],[-13.523,-6.976],[10.964,9.656],[8.692,11.131]],"v":[[387.993,-7.418],[383.362,-26.673],[341.474,-60.529],[327.67,-49.276],[366.851,-16.461]]}],"t":48.248},{"e":[{"c":true,"i":[[1.094,1.417],[4.464,-1.056],[2.587,1.069],[-6.583,-3.825],[-8.918,0.515]],"o":[[-2.643,-3.424],[-5.755,1.361],[-4.168,-1.722],[2.89,1.679],[7,-0.404]],"v":[[449.504,-13.056],[441.828,-17.05],[429.998,-17.645],[426.349,-10.997],[443.548,-5.316]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.247,2.256],[5.565,3.559],[7.177,6.544],[-8.738,-13.309],[-8.848,-4.831]],"o":[[3.411,-6.173],[-8.295,-5.304],[-9.405,-8.575],[6.707,10.215],[8.862,4.839]],"v":[[397.21,-7.242],[385.77,-21.935],[368.596,-35.393],[358.574,-31.055],[380.034,-5.956]]}],"t":51.613},{"e":[{"c":true,"i":[[0.478,0.909],[1.164,0.11],[1.184,-1.101],[-2.92,0.578],[-5.583,2.822]],"o":[[-0.871,-1.656],[-2.183,-0.206],[-1.907,1.774],[1.879,-0.335],[1.214,-0.614]],"v":[[462.507,-22.141],[459.963,-23.678],[454.859,-21.546],[456.219,-17.25],[461.614,-19.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.094,1.417],[4.464,-1.056],[2.587,1.069],[-6.583,-3.825],[-8.918,0.515]],"o":[[-2.643,-3.424],[-5.755,1.361],[-4.168,-1.722],[2.89,1.679],[7,-0.404]],"v":[[449.504,-13.056],[441.828,-17.05],[429.998,-17.645],[426.349,-10.997],[443.548,-5.316]]}],"t":54.838},{"t":58.064453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[365.484,-29.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.51},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[-64.516,-139.633]},"r":{"a":0,"ix":6,"k":-62},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[424.126,161.791],[428.275,146.003],[421.525,122.702],[407.975,118.177],[408.259,148.668]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.751,1.764],[-2.424,7.903],[-1.784,10.117],[3.062,-19.823],[1.437,-9.478]],"o":[[9.229,-1.86],[7.139,-22.852],[2.052,-11.633],[-2.826,18.292],[-1.437,9.478]],"v":[[399.835,114.727],[409.4,88.963],[419.255,58.246],[399.474,62.446],[388.936,99.323]]}],"t":47.58},{"e":[{"c":true,"i":[[-1.813,2.694],[6.968,4.55],[6.71,7.148],[-0.949,-20.035],[-5.456,-3.029]],"o":[[4.38,-6.51],[-14.412,-9.411],[-7.498,-7.987],[0.731,15.444],[11.121,6.175]],"v":[[474.569,195.314],[467.455,181.75],[441.057,168.149],[423.747,163.148],[455.811,199.69]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[424.126,161.791],[428.275,146.003],[421.525,122.702],[407.975,118.177],[408.259,148.668]]}],"t":52.42},{"e":[{"c":true,"i":[[-0.063,4],[3.165,0.826],[3.315,1.955],[-0.527,-6.082],[-4.013,-1.749]],"o":[[0.142,-5.46],[-2.767,-0.842],[-1.757,-1.108],[0.473,5.337],[3.625,1.628]],"v":[[499.512,207.038],[494.93,201.97],[489.562,198.061],[483.755,203.571],[491.079,209.938]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.813,2.694],[6.968,4.55],[6.71,7.148],[-0.949,-20.035],[-5.456,-3.029]],"o":[[4.38,-6.51],[-14.412,-9.411],[-7.498,-7.987],[0.731,15.444],[11.121,6.175]],"v":[[474.569,195.314],[467.455,181.75],[441.057,168.149],[423.747,163.148],[455.811,199.69]]}],"t":58.871},{"t":64.515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[402.877,73.469]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.773},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":64.516},{"t":65.322265625}]},"p":{"a":0,"ix":2,"k":[86.867,13.039]},"r":{"a":0,"ix":6,"k":66},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[8.982,-7.476],[-0.935,-10.09],[-4.858,5.024],[-0.897,6.59]],"o":[[-7.958,6.624],[0.913,9.847],[2.294,-2.372],[0.897,-6.59]],"v":[[320.817,237.519],[312.93,263.37],[329.853,264.192],[333.974,250.904]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.186,0.552],[10.117,-17.436],[-3.55,-1.349],[-3.586,6.762]],"o":[[-17.701,-1.194],[-5.717,9.853],[3.549,1.349],[3.586,-6.762]],"v":[[355.736,164.275],[319.039,197.882],[324.31,209.419],[342.597,186.07]]}],"t":50.029},{"e":[{"c":true,"i":[[2.898,-0.485],[-1.255,-2.815],[-0.825,0.059],[-0.087,1.665]],"o":[[-2.861,0.479],[1.01,2.266],[0.825,-0.059],[0.087,-1.665]],"v":[[320.288,285.341],[318.877,291.934],[323.139,291.772],[323.886,288.391]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.982,-7.476],[-0.935,-10.09],[-4.858,5.024],[-0.897,6.59]],"o":[[-7.958,6.624],[0.913,9.847],[2.294,-2.372],[0.897,-6.59]],"v":[[320.817,237.519],[312.93,263.37],[329.853,264.192],[333.974,250.904]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[330.678,195.95]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.193},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.973},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[46.52,23.707]},"r":{"a":0,"ix":6,"k":46},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.299,1.799],[-1.918,9.765],[12.822,9.564],[-5.616,-6.653],[3.778,-10.959]],"o":[[6.299,-1.799],[3.006,-15.305],[-9.84,-7.34],[5.616,6.653],[-2.216,6.43]],"v":[[308.007,264.208],[318.391,251.476],[304.753,206.716],[295.528,216.838],[302.858,249.168]]}],"t":45.967},{"e":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[0.702,-5.233],[-8.082,-3.812]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-0.694,5.172],[6.587,3.107]],"v":[[391.939,297.312],[390.509,286.124],[377.293,284.078],[365.431,282.474],[378.988,298.031]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"t":50.807},{"e":[{"c":true,"i":[[-1.752,1.566],[0.984,2.406],[2.382,-0.297],[0.468,-1.862],[-3.846,0.253]],"o":[[2.245,-2.007],[-0.586,-2.402],[-2.79,0.645],[-0.622,2.474],[2.159,-0.142]],"v":[[414.396,291.543],[415.621,287.461],[411.113,284.597],[405.773,288.142],[409.449,293.558]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[0.702,-5.233],[-8.082,-3.812]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-0.694,5.172],[6.587,3.107]],"v":[[391.939,297.312],[390.509,286.124],[377.293,284.078],[365.431,282.474],[378.988,298.031]]}],"t":54.838},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.207,234.285]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.801},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[-122.793,-107.715]},"r":{"a":0,"ix":6,"k":-140},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.824,-6.867],[-6.007,7.305],[5.035,0.732],[4.689,-2.044]],"o":[[6.376,7.517],[4.822,-5.867],[-2.511,-0.365],[-4.676,2.04]],"v":[[106.204,397.059],[137.121,390.333],[130.591,381.861],[110.692,383.747]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-9.829,7.087],[14.414,-5.073],[4.712,-2.057]],"o":[[6.432,7.583],[6.207,-4.475],[-2.406,0.847],[-4.712,2.057]],"v":[[170.108,388.834],[201.326,373.436],[192.525,360.361],[171.13,371.429]]}],"t":41.129},{"e":[{"c":true,"i":[[-1.181,-2.706],[-3.896,2.111],[2.189,0.947],[2.395,-0.087]],"o":[[0.388,0.876],[1.474,-0.799],[-1.092,-0.472],[-0.99,0.044]],"v":[[83.098,390.291],[89.189,391.639],[88.251,388.869],[85.063,386.868]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.824,-6.867],[-6.007,7.305],[5.035,0.732],[4.689,-2.044]],"o":[[6.376,7.517],[4.822,-5.867],[-2.511,-0.365],[-4.676,2.04]],"v":[[106.204,397.059],[137.121,390.333],[130.591,381.861],[110.692,383.747]]}],"t":46.773},{"t":52.419921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[180.867,376.203]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.961},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.129},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-106.133,25.203]},"r":{"a":0,"ix":6,"k":269},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.674,-12.115],[-2.46,13.816],[-5.666,13.221],[6.491,-9.451],[1.871,-8.886]],"o":[[1.691,7.662],[2.556,-14.352],[4.249,-9.913],[-6.787,9.881],[-2.621,12.448]],"v":[[181.686,425.644],[200.612,420.55],[206.614,374.991],[194.321,373.792],[182.362,396.293]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-3.431,7.581],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[1.742,7.65],[6.011,-13.28],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[197.421,355.676],[212.139,354.121],[213.768,307.566],[196.941,308.289],[197.129,333.886]]}],"t":50},{"e":[{"c":true,"i":[[-1.661,-0.889],[7.605,8.008],[3.898,4.931],[2.238,-3.77],[-2.25,-1.347]],"o":[[4.014,2.149],[-6.131,-6.456],[-2.076,-2.626],[-1.178,1.984],[1.639,0.981]],"v":[[202.636,450.926],[207.156,440.915],[198.577,429.175],[193.356,430.703],[198.806,448.482]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.674,-12.115],[-2.46,13.816],[-5.666,13.221],[6.491,-9.451],[1.871,-8.886]],"o":[[1.691,7.662],[2.556,-14.352],[4.249,-9.913],[-6.787,9.881],[-2.621,12.448]],"v":[[181.686,425.644],[200.612,420.55],[206.614,374.991],[194.321,373.792],[182.362,396.293]]}],"t":55.645},{"e":[{"c":true,"i":[[-0.824,-0.48],[0.926,2.26],[2.487,0.165],[-0.183,-2.21],[-1.113,-0.722]],"o":[[1.99,1.159],[-0.854,-2.086],[-1.69,-0.112],[0.096,1.163],[0.811,0.526]],"v":[[218.314,466.062],[220.93,462.594],[217.117,457.961],[214.662,461.171],[216.422,464.757]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.661,-0.889],[7.605,8.008],[3.898,4.931],[2.238,-3.77],[-2.25,-1.347]],"o":[[4.014,2.149],[-6.131,-6.456],[-2.076,-2.626],[-1.178,1.984],[1.639,0.981]],"v":[[202.636,450.926],[207.156,440.915],[198.577,429.175],[193.356,430.703],[198.806,448.482]]}],"t":61.291},{"t":65.322265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[206.104,331.532]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.193},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.322},{"t":66.12890625}]},"p":{"a":0,"ix":2,"k":[-130.656,-76.043]},"r":{"a":0,"ix":6,"k":179},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.754,12.928],[-40.461,12.59],[-25,-15.5],[24.039,-24.094],[35.107,2.652],[15.446,18.576],[-7.383,16.86],[-22.777,7.448],[-51.613,-0.608],[-22.098,-8.756],[-3.697,-60.633],[9.5,-28],[29.148,-4.094],[25.741,-1.055],[7.928,-6.519]],"o":[[-7.754,-12.928],[26.927,-8.379],[37.482,23.239],[-37.888,37.974],[-23.963,-1.81],[-18.629,-22.404],[11.621,-26.539],[27.092,-8.859],[24.63,0.29],[26.5,10.5],[2.5,41],[-12.547,36.981],[-49.897,7.009],[-68.234,2.795],[-25.536,20.999]],"v":[[-48.56,-22.68],[-42.427,-135.121],[59,-106],[90.253,-37.83],[-42.037,16.31],[-110.224,-27.845],[-128.121,-105.461],[-75.092,-138.641],[28.37,-157.79],[100,-155.5],[140,-89.5],[135,-13],[49.338,20.195],[-65.931,39.444],[-127.828,-42.812]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.261,9.762],[-46.909,-3.086],[-15.089,-1.824],[24.5,-7],[26.126,-7.296],[14.707,9.493],[14.602,17.198],[-0.471,25.981],[-27.724,1.98],[-27.554,3.71],[-26.5,-14.5],[-4.182,-46.388],[31.357,-17.797],[54.382,-2.978],[47.132,-5.727],[3.608,30.754]],"o":[[-6.261,-9.762],[38,2.5],[33.083,4],[-23.234,6.638],[-26.886,7.508],[-20.751,-13.394],[-14.602,-17.198],[0.49,-27.019],[0,0],[15.718,-2.116],[10.098,5.525],[2.75,30.5],[-18.5,10.5],[-49.626,2.718],[-23.428,2.846],[-3.247,-27.676]],"v":[[-60.292,-34.68],[-45.5,-137],[70.917,-119.5],[84.5,-31.5],[8.524,5.971],[-67.707,11.007],[-109.802,-26.132],[-130.529,-76.481],[-67.398,-135.845],[28.282,-156.384],[105.5,-157.5],[139.25,-83.5],[126.5,6.5],[45.334,21.183],[-72.132,42.02],[-127.416,-38.265]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[20.604,33.418],[-11.115,34.42],[-23.381,-5.19],[31.597,-21.252],[19.985,-12.762],[19.025,11.239],[19.299,30.538],[-5.427,20.845],[-16.145,4.473],[-43.291,3.334],[-29.206,-5.96],[-1.596,-44.693],[15,-15.5],[68.183,-6.429],[38.991,-8.659],[5.403,30.591]],"o":[[-12.097,-19.62],[15.5,-48],[40.568,9.005],[-15.853,10.663],[-22.585,14.422],[-25.322,-14.959],[-19.299,-30.538],[7.619,-30.98],[22.471,-6.384],[32.189,-2.479],[24.5,5],[1.5,42],[-27.609,28.53],[-72.334,6.82],[-55.273,12.275],[-5.403,-30.591]],"v":[[-57.869,-33.058],[-72.5,-112],[79.932,-121.505],[71.403,-38.748],[22.015,-1.238],[-53.525,11.261],[-110.659,-27.492],[-127.131,-94.131],[-82,-135.17],[28.311,-158.521],[100.5,-157.5],[140.5,-86.5],[134.5,-4],[48.834,20.68],[-70.491,40.659],[-128.838,-44.094]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":0,"ix":2,"k":100},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":33.094},{"t":56.451171875}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[1,0,0,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":1,"ix":5,"k":[{"e":[55],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[10],"t":43.799},{"t":59.927734375}]}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":7,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[2,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[2,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[100],"t":0},{"t":34.677734375}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[122,122,100],"t":0},{"t":21.7734375}]}},"nm":"Shape Layer 2","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.262,-4.305],[-12.876,5.92],[6.129,0.108],[2.884,-2.561]],"o":[[6.764,5.534],[8.3,-3.816],[-6.832,-0.121],[-2.884,2.561]],"v":[[296.894,-71.052],[322.675,-70.696],[321.32,-84.046],[307.607,-76.438]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-17.617,-1.445],[5.339,6.185],[4.827,1.769]],"o":[[1.364,12.913],[12.137,0.995],[-5.297,-6.136],[-7.87,-2.883]],"v":[[238.44,-77.181],[268.195,-58.946],[280.942,-74.556],[258.182,-75.951]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.091,0.861],[-1.098,1.48],[2.439,-1.733],[0.842,-1.684]],"o":[[3.944,-1.625],[2.657,-3.581],[-2.441,1.734],[-0.842,1.684]],"v":[[340.646,-81.155],[344.788,-83.634],[342.294,-87.688],[340.798,-86.199]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.262,-4.305],[-12.876,5.92],[6.129,0.108],[2.884,-2.561]],"o":[[6.764,5.534],[8.3,-3.816],[-6.832,-0.121],[-2.884,2.561]],"v":[[296.894,-71.052],[322.675,-70.696],[321.32,-84.046],[307.607,-76.438]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[262.625,-67.013]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-5.207,67]},"r":{"a":0,"ix":6,"k":155},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.76,1.884],[4.168,5.124],[7.914,1.98],[-11.948,-10.523],[-12.498,-10.86]],"o":[[4.251,-4.551],[-10.833,-13.319],[-12.347,-3.088],[9.171,8.077],[7.622,6.623]],"v":[[381.443,-19.093],[379.333,-33.681],[340.847,-63.912],[333.202,-51.464],[365.466,-20.77]]}],"t":33.871},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":37.375},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[398.107,20.813],[399.524,18.443],[397.583,13.78],[393.392,15.175],[395.33,20.165]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":39.711},{"t":44.3828125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[357.25,-40.916]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"t":45.55078125}]},"p":{"a":0,"ix":2,"k":[-71.738,94.699]},"r":{"a":0,"ix":6,"k":110},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.767,2.886],[2.412,7.964],[0.005,10.277],[4.369,-19.576],[-7.882,-15.169]],"o":[[6.803,-2.24],[-5.719,-18.882],[-0.009,-17.469],[-3.237,14.505],[6.069,11.679]],"v":[[405.381,147.864],[410.436,129.873],[401.932,95.285],[387.647,89.427],[389.579,135.789]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-1.416,8.2],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[3.118,-18.056],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[402.535,98.681],[404.538,36.778],[390.847,35.98],[385.378,84.251]]}],"t":30.367},{"e":[{"c":true,"i":[[-1.949,1.473],[4.632,4.209],[3.063,3.978],[0.417,-15.081],[-3.139,-3.489]],"o":[[4.708,-3.559],[-9.791,-8.897],[-3.476,-4.514],[-0.288,10.403],[6.399,7.113]],"v":[[430.171,173.641],[428.989,161.828],[414.504,149.442],[405.469,143.355],[413.855,165.776]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.767,2.886],[2.412,7.964],[0.005,10.277],[4.369,-19.576],[-7.882,-15.169]],"o":[[6.803,-2.24],[-5.719,-18.882],[-0.009,-17.469],[-3.237,14.505],[6.069,11.679]],"v":[[405.381,147.864],[410.436,129.873],[401.932,95.285],[387.647,89.427],[389.579,135.789]]}],"t":35.039},{"e":[{"c":true,"i":[[-0.827,2.371],[1.971,0.028],[1.832,1.417],[-0.085,-1.211],[-2.476,-0.82]],"o":[[0.68,-1.95],[-1.037,-0.015],[-0.927,-0.717],[0.179,2.56],[2.224,0.736]],"v":[[435.541,174.127],[432.651,171.009],[428.188,169.385],[426.205,169.659],[430.762,175.314]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.949,1.473],[4.632,4.209],[3.063,3.978],[0.417,-15.081],[-3.139,-3.489]],"o":[[4.708,-3.559],[-9.791,-8.897],[-3.476,-4.514],[-0.288,10.403],[6.399,7.113]],"v":[[430.171,173.641],[428.989,161.828],[414.504,149.442],[405.469,143.355],[413.855,165.776]]}],"t":40.879},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[396.535,67.065]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":29.199},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":30.367},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-200.816,51.801]},"r":{"a":0,"ix":6,"k":154},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[332.765,203.855],[323.535,216.095],[332.476,219.847],[337.259,213.593]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.324,7.335],[0.152,-9.506],[-2.384,-0.906],[-2.409,4.542]],"o":[[-8.624,-11.881],[-0.123,7.651],[2.384,0.906],[2.409,-4.542]],"v":[[349.124,166.381],[325.603,197.485],[337.731,202.574],[344.72,184.091]]}],"t":29.199},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[329.913,234.119],[325.853,239.503],[329.785,241.153],[331.889,238.402]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[332.765,203.855],[323.535,216.095],[332.476,219.847],[337.259,213.593]]}],"t":32.703},{"t":35.0390625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[336.243,183.537]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":28.031},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":29.199},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":35.039},{"t":36.20703125}]},"p":{"a":0,"ix":2,"k":[-273.617,-102.945]},"r":{"a":0,"ix":6,"k":124},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":28.031},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[317.396,295.449],[321.103,284.053],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":32.703},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[317.814,303.274],[321.644,303.175],[322.014,298.568],[317.877,296.455],[315.04,300.655]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[317.396,295.449],[321.103,284.053],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[320.584,230.135]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.863},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":28.031},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-290.578,-156.98]},"r":{"a":0,"ix":6,"k":161},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.112,-0.542],[-0.226,-0.603],[-0.466,0.032],[0.034,0.41]],"o":[[-1.112,0.542],[0.226,0.603],[0.466,-0.032],[-0.034,-0.41]],"v":[[-428.545,-130.894],[-428.976,-128.853],[-427.581,-128.641],[-427.259,-129.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.712,-5.32],[-0.957,-5.923],[-1.974,0.319],[0.145,4.029]],"o":[[-4.712,5.32],[0.957,5.923],[1.974,-0.319],[-0.145,-4.029]],"v":[[-428.675,-113.866],[-430.5,-93.818],[-424.592,-91.733],[-423.226,-102.084]]}],"t":25.807},{"t":31.451171875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-428.254,-104.227]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":24.639},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":25.807},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":31.34},{"t":32.5078125}]},"p":{"a":0,"ix":2,"k":[-225.254,-269.227]},"r":{"a":0,"ix":6,"k":64},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.096,0.981],[5.205,5.598],[2.75,8.25],[-3.466,-19.756],[-0.989,-2.42]],"o":[[5.282,-1.674],[-6.328,-6.806],[-1.287,-3.861],[2.5,14.25],[3.567,8.726]],"v":[[-411.44,-60.246],[-412.863,-72.518],[-419.158,-95.92],[-427.658,-87.17],[-422.975,-68.646]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.139,0.835],[7.7,3.156],[2.5,8.329],[-9.602,-16.436],[-4.305,-2.661]],"o":[[7.583,-2.017],[-13.488,-5.529],[-1.945,-6.481],[3.731,6.387],[10.69,6.609]],"v":[[-391.63,-32.099],[-393.714,-46.753],[-417.058,-67.729],[-427.5,-58.75],[-413.083,-40.715]]}],"t":27.42},{"e":[{"c":true,"i":[[-2.44,-0.355],[0.394,3.277],[0.869,6.544],[-0.603,-15.215],[-0.48,-1.926]],"o":[[4.163,0.606],[-0.842,-7.004],[-0.406,-3.063],[0.151,3.821],[1.182,4.74]],"v":[[-423.585,-93.044],[-420.682,-99.811],[-421.011,-111.355],[-428.601,-106.049],[-427.733,-98.237]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.096,0.981],[5.205,5.598],[2.75,8.25],[-3.466,-19.756],[-0.989,-2.42]],"o":[[5.282,-1.674],[-6.328,-6.806],[-1.287,-3.861],[2.5,14.25],[3.567,8.726]],"v":[[-411.44,-60.246],[-412.863,-72.518],[-419.158,-95.92],[-427.658,-87.17],[-422.975,-68.646]]}],"t":32.258},{"e":[{"c":true,"i":[[-0.408,-0.059],[0.066,0.549],[0.145,1.096],[-0.101,-2.547],[-0.08,-0.322]],"o":[[0.697,0.101],[-0.141,-1.173],[-0.068,-0.513],[0.025,0.64],[0.198,0.794]],"v":[[-427.053,-117.101],[-426.567,-118.234],[-426.622,-120.167],[-427.893,-119.279],[-427.748,-117.971]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.44,-0.355],[0.394,3.277],[0.869,6.544],[-0.603,-15.215],[-0.48,-1.926]],"o":[[4.163,0.606],[-0.842,-7.004],[-0.406,-3.063],[0.151,3.821],[1.182,4.74]],"v":[[-423.585,-93.044],[-420.682,-99.811],[-421.011,-111.355],[-428.601,-106.049],[-427.733,-98.237]]}],"t":38.709},{"t":44.103515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-414.207,-48.82]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.25},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":27.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.104},{"t":45.2734375}]},"p":{"a":0,"ix":2,"k":[-262.207,-239.82]},"r":{"a":0,"ix":6,"k":88},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[10.786,-16.436],[36.698,-5.592],[51.5,1],[9,32],[15.916,31.57],[-1.093,53.88],[-56.534,10.139],[-48.62,14.681]],"o":[[-21,32],[-52.5,8],[-35.462,-0.689],[-8.036,-28.573],[-12.709,-25.209],[1.052,-51.855],[33.944,-6.088],[11.102,-3.352]],"v":[[154,7],[10.5,64],[-121,115.5],[-201,48],[-241.111,-47.775],[-291.407,-153.38],[-193.944,-279.912],[-57.38,-284.681]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[1.135,-32.538],[58,-8],[29.476,3.871],[6.943,26.458],[16.354,30.051],[-4.357,41.835],[-55.585,23.176],[-12.678,8.973]],"o":[[-1.5,43],[-36.773,5.072],[-49.5,-6.5],[-9.25,-35.25],[-22.994,-42.252],[3.538,-33.97],[22.176,-9.246],[12.678,-8.973]],"v":[[158.5,10.5],[8,70],[-134.5,113.5],[-209.75,34.5],[-239.695,-49.836],[-295.643,-167.835],[-198.915,-279.176],[-59.772,-283.797]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.725,-31.855],[58.724,-9.787],[29.512,3.586],[8.5,26],[18.327,29.502],[-2.717,47.431],[-27.557,6.484],[-6.782,7.107]],"o":[[-9.5,45],[-51,8.5],[-29.512,-3.587],[-9.223,-28.212],[-20.5,-33],[2.217,-38.701],[27.557,-6.484],[6.782,-7.107]],"v":[[157.5,7.5],[-1.5,64],[-143,113],[-205,49.5],[-251,-61],[-296.283,-170.931],[-204.122,-275.286],[-59.608,-284.485]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":0},{"t":23.359375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":8,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[8,-61,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[8,3,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[130],"t":6.451},{"t":38.708984375}]},"s":{"a":1,"ix":6,"k":[{"e":[128,128,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[150,150,100],"t":6.451},{"t":25.806640625}]}},"nm":"Shape Layer 8","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.407,-9.045],[-24.08,12.646],[11.275,-3.359],[6.196,-4.05]],"o":[[13.477,12.958],[15.523,-8.152],[-11.283,3.361],[-6.196,4.05]],"v":[[231.694,-24.814],[277.822,-47.084],[271.175,-73.761],[244.812,-54.192]]}],"t":44.383},{"e":[{"c":true,"i":[[-2.784,-3.375],[-3.362,-1.186],[4.594,3.521],[3.593,0.597]],"o":[[5.252,6.366],[8.135,2.87],[-4.597,-3.524],[-3.593,-0.597]],"v":[[331.516,-54.519],[338.459,-48.273],[344.534,-55.195],[340.927,-57.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"t":47.887},{"t":51.390625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[257.377,-47.334]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":51.391},{"t":52.55859375}]},"p":{"a":0,"ix":2,"k":[-214.578,-131.191]},"r":{"a":0,"ix":6,"k":274},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.364,-1.029],[-3.018,5.876],[2.165,9.468],[0.41,-15.916],[3.976,-9.264]],"o":[[6.467,2.814],[4.499,-8.758],[-2.837,-12.407],[-0.315,12.216],[-3.982,9.279]],"v":[[316.822,40.131],[330.371,27.358],[333.75,1.416],[323.043,-0.735],[313.922,23.153]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-11.421,0.903],[0.255,7.893],[5.273,8.205],[-1.791,-18.951],[1.478,-21.761]],"o":[[7.423,-0.587],[-0.783,-24.217],[-8.227,-12.801],[1.374,14.545],[-0.818,12.044]],"v":[[325.378,-3.841],[340.783,-24.783],[320.013,-81.633],[298.25,-89.886],[308.522,-23.239]]}],"t":44.383},{"e":[{"c":true,"i":[[-1.782,0.165],[-2.041,4.108],[0.166,2.795],[0.573,-7.592],[4.181,-9.982]],"o":[[4.306,-0.399],[3.625,-7.295],[-0.267,-4.502],[-0.251,3.333],[-2.709,6.467]],"v":[[306.995,78.534],[314.478,74.189],[316.489,56.012],[308.915,55.627],[303.647,69.36]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.364,-1.029],[-3.018,5.876],[2.165,9.468],[0.41,-15.916],[3.976,-9.264]],"o":[[6.467,2.814],[4.499,-8.758],[-2.837,-12.407],[-0.315,12.216],[-3.982,9.279]],"v":[[316.822,40.131],[330.371,27.358],[333.75,1.416],[323.043,-0.735],[313.922,23.153]]}],"t":47.887},{"e":[{"c":true,"i":[[-0.951,-0.319],[-0.847,0.624],[-0.04,1.569],[1.67,-2.297],[1.735,-5.813]],"o":[[1.696,0.568],[1.602,-1.181],[0.065,-2.527],[-1.102,1.516],[-0.322,1.079]],"v":[[304.127,98.096],[306.822,97.493],[308.87,92.876],[304.974,90.795],[302.686,95.634]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.782,0.165],[-2.041,4.108],[0.166,2.795],[0.573,-7.592],[4.181,-9.982]],"o":[[4.306,-0.399],[3.625,-7.295],[-0.267,-4.502],[-0.251,3.333],[-2.709,6.467]],"v":[[306.995,78.534],[314.478,74.189],[316.489,56.012],[308.915,55.627],[303.647,69.36]]}],"t":50.223},{"t":54.89453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[321.066,-50.164]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.895},{"t":56.0625}]},"p":{"a":0,"ix":2,"k":[-219.066,-213.836]},"r":{"a":0,"ix":6,"k":223},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.833,-3.87],[-5.637,6.122],[-2.016,10.078],[3.414,-19.765],[13.176,-28.168]],"o":[[7.146,3.53],[16.659,-18.093],[3.427,-17.13],[-2.632,15.235],[-5.39,11.522]],"v":[[379.999,178.335],[396.982,174.133],[416.912,113.469],[399.58,101.812],[380.14,151.363]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.613,0.737],[-2.424,7.903],[4.317,15.554],[-0.539,-20.051],[6.085,-25.403]],"o":[[9.399,-0.533],[7.139,-22.852],[-3.819,-13.762],[0.416,15.456],[-6.085,25.403]],"v":[[403.508,119.257],[418.174,93.773],[419.944,41.7],[395.677,45.267],[389.164,96.504]]}],"t":42.742},{"e":[{"c":true,"i":[[-2.497,-2.077],[-5.234,6.47],[-1.469,9.693],[9.39,-17.724],[3.567,-5.12]],"o":[[6.032,5.018],[10.825,-13.382],[1.641,-10.831],[-8.109,15.306],[-7.272,10.437]],"v":[[369.595,227.212],[383.812,221.512],[397.435,185.945],[390.663,169.248],[367.146,208.106]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.833,-3.87],[-5.637,6.122],[-2.016,10.078],[3.414,-19.765],[13.176,-28.168]],"o":[[7.146,3.53],[16.659,-18.093],[3.427,-17.13],[-2.632,15.235],[-5.39,11.522]],"v":[[379.999,178.335],[396.982,174.133],[416.912,113.469],[399.58,101.812],[380.14,151.363]]}],"t":47.58},{"e":[{"c":true,"i":[[-3.832,-1.279],[-1.644,2.713],[-2.737,2.53],[5.638,1.238],[2.865,-3.256]],"o":[[5.173,1.726],[1.341,-2.214],[1.384,-1.28],[-4.999,-1.098],[-2.49,2.83]],"v":[[356.714,245.601],[362.742,242.776],[367.676,239.233],[363.88,232.13],[356.49,236.923]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.497,-2.077],[-5.234,6.47],[-1.469,9.693],[9.39,-17.724],[3.567,-5.12]],"o":[[6.032,5.018],[10.825,-13.382],[1.641,-10.831],[-8.109,15.306],[-7.272,10.437]],"v":[[369.595,227.212],[383.812,221.512],[397.435,185.945],[390.663,169.248],[367.146,208.106]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[404.93,83.625]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":41.129},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.604},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[-138.93,-276.625]},"r":{"a":0,"ix":6,"k":245},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[12.98,-6.184],[11.111,-16.056],[-3.914,3.539],[-5.98,1.979]],"o":[[-12.128,5.778],[-10.545,15.238],[10.106,-9.138],[19.279,-6.38]],"v":[[318.902,206.219],[279.794,228.558],[288.654,243.523],[317.301,222.249]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.927,-3.963],[19.952,-8.646],[-19.611,8.534],[-3.594,6.776]],"o":[[-21.701,6.652],[-23.559,10.21],[16.263,-7.077],[3.594,-6.776]],"v":[[354.921,151.162],[313.901,203.075],[317.224,218.145],[354.174,177.892]]}],"t":45.162},{"e":[{"c":true,"i":[[5.747,-1.951],[1.698,-9.872],[-1.334,1.718],[-4.992,1.049]],"o":[[-3.722,1.458],[-1.424,8.281],[4.426,-5.222],[2.361,-4.244]],"v":[[281.169,235.826],[264.082,251.171],[272.645,255.497],[285.355,241.514]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.98,-6.184],[11.111,-16.056],[-3.914,3.539],[-5.98,1.979]],"o":[[-12.128,5.778],[-10.545,15.238],[10.106,-9.138],[19.279,-6.38]],"v":[[318.902,206.219],[279.794,228.558],[288.654,243.523],[317.301,222.249]]}],"t":49.193},{"e":[{"c":true,"i":[[2.954,0.333],[-0.331,-3.154],[-0.805,-0.138],[-0.577,1.611]],"o":[[-2.881,-0.324],[0.272,2.595],[0.87,0.035],[0.586,-1.635]],"v":[[260.378,262.174],[256.889,268.362],[261.127,269.48],[262.984,266.158]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.747,-1.951],[1.698,-9.872],[-1.334,1.718],[-4.992,1.049]],"o":[[-3.722,1.458],[-1.424,8.281],[4.426,-5.222],[2.361,-4.244]],"v":[[281.169,235.826],[264.082,251.171],[272.645,255.497],[285.355,241.514]]}],"t":52.42},{"t":54.837890625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.994},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.162},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.838},{"t":55.64453125}]},"p":{"a":0,"ix":2,"k":[-119,-323]},"r":{"a":0,"ix":6,"k":56},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.21,-0.491],[2.35,6.095],[6.113,12.778],[-1.155,-14.158],[-8.147,-5.86]],"o":[[6.671,1.021],[-1.767,-4.583],[-1.756,-3.671],[1.045,12.807],[5.922,4.26]],"v":[[339.738,271.778],[345.218,260.984],[324.915,239.78],[315.011,238.392],[330.54,268.187]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[10.791,-8.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-8.846,7.127],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[319.127,198.585],[298.155,181.521],[302.945,244.529]]}],"t":45.162},{"e":[{"c":true,"i":[[-1.634,2.936],[5.475,3.562],[6.311,1.676],[1.373,-8.599],[-6.282,-1.072]],"o":[[1.936,-3.478],[-3.21,-2.088],[-3.933,-1.044],[-1.635,10.241],[7.191,1.227]],"v":[[367.527,262.648],[362.997,251.553],[351.283,250.625],[339.585,248.172],[354.764,265.266]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.21,-0.491],[2.35,6.095],[6.113,12.778],[-1.155,-14.158],[-8.147,-5.86]],"o":[[6.671,1.021],[-1.767,-4.583],[-1.756,-3.671],[1.045,12.807],[5.922,4.26]],"v":[[339.738,271.778],[345.218,260.984],[324.915,239.78],[315.011,238.392],[330.54,268.187]]}],"t":50},{"e":[{"c":true,"i":[[-1.924,1.124],[-0.182,2.297],[1.608,-0.414],[1.239,-0.251],[-3.328,-0.436]],"o":[[2.515,-1.469],[0.201,-2.532],[-2.614,0.673],[-3.225,0.653],[2.509,0.329]],"v":[[384.796,256.439],[387.639,253.871],[384.922,250.133],[380.406,251.22],[380.984,256.255]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.634,2.936],[5.475,3.562],[6.311,1.676],[1.373,-8.599],[-6.282,-1.072]],"o":[[1.936,-3.478],[-3.21,-2.088],[-3.933,-1.044],[-1.635,10.241],[7.191,1.227]],"v":[[367.527,262.648],[362.997,251.553],[351.283,250.625],[339.585,248.172],[354.764,265.266]]}],"t":54.838},{"t":59.56640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[310.24,218.951]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.994},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.162},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[-161.211,-7.059]},"r":{"a":0,"ix":6,"k":171},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.141,0.827],[-0.338,-8.315],[-8.896,-10.141],[1.932,9.396],[-2.499,13.574]],"o":[[-8.094,-2.131],[0.593,14.565],[6.7,7.638],[-3.243,-15.772],[2.303,-12.51]],"v":[[-337.984,-433.641],[-349.504,-420.507],[-335.35,-382.508],[-319.857,-381.226],[-332.44,-416.538]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.072,-1.054],[-6.069,-9.317],[-8.059,-7.336],[0.738,14.37],[2.909,4.142]],"o":[[-7.422,2.545],[7.957,12.214],[3.01,2.74],[-0.734,-14.293],[-7.311,-10.409]],"v":[[-331.366,-387.145],[-326.659,-368.439],[-299.172,-340.202],[-282.749,-338.843],[-310.736,-374.277]]}],"t":38.709},{"e":[{"c":true,"i":[[1.664,1.849],[3.345,-6.351],[-5.055,-9.568],[-0.373,9.173],[-6.196,8.297]],"o":[[-4.289,-4.764],[-3.694,9.513],[3.974,7.71],[0.008,-11.58],[6.441,-7.959]],"v":[[-329.595,-451.856],[-343.553,-445.711],[-344.119,-413.456],[-332.261,-413.47],[-332.365,-437.17]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.141,0.827],[-0.338,-8.315],[-8.896,-10.141],[1.932,9.396],[-2.499,13.574]],"o":[[-8.094,-2.131],[0.593,14.565],[6.7,7.638],[-3.243,-15.772],[2.303,-12.51]],"v":[[-337.984,-433.641],[-349.504,-420.507],[-335.35,-382.508],[-319.857,-381.226],[-332.44,-416.538]]}],"t":43.549},{"e":[{"c":true,"i":[[0.647,2.399],[5.295,-5.158],[-3.648,-7.495],[-0.253,8.888],[-7.597,4.51]],"o":[[-1.666,-6.182],[-5.408,5.268],[3.212,6.6],[0.205,-7.188],[8.368,-4.968]],"v":[[-315.591,-472.782],[-330.122,-470.056],[-336.895,-443.958],[-328.882,-448.394],[-322.754,-460.041]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.664,1.849],[3.345,-6.351],[-5.055,-9.568],[-0.373,9.173],[-6.196,8.297]],"o":[[-4.289,-4.764],[-3.694,9.513],[3.974,7.71],[0.008,-11.58],[6.441,-7.959]],"v":[[-329.595,-451.856],[-343.553,-445.711],[-344.119,-413.456],[-332.261,-413.47],[-332.365,-437.17]]}],"t":45.967},{"e":[{"c":true,"i":[[1.068,0.325],[1.382,-3.02],[1.651,-2.396],[-2.55,1.625],[0.024,1.608]],"o":[[-1.501,-0.456],[-0.89,1.944],[-1.872,2.716],[1.578,-1.005],[-0.023,-1.589]],"v":[[-311.698,-481.914],[-315.538,-479.478],[-316.946,-475.353],[-313.345,-473.814],[-310.261,-478.673]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.647,2.399],[5.295,-5.158],[-3.648,-7.495],[-0.253,8.888],[-7.597,4.51]],"o":[[-1.666,-6.182],[-5.408,5.268],[3.212,6.6],[0.205,-7.188],[8.368,-4.968]],"v":[[-315.591,-472.782],[-330.122,-470.056],[-336.895,-443.958],[-328.882,-448.394],[-322.754,-460.041]]}],"t":48.387},{"t":53.2265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-304.289,-360.496]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":37.375},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":38.543},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.227},{"t":54.392578125}]},"p":{"a":0,"ix":2,"k":[96.711,-284.496]},"r":{"a":0,"ix":6,"k":117},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[19.514,-2.379],[94.782,15.632],[32.746,74.677],[-24.104,91.314],[-43.342,12.292],[-55.734,7.067],[-12.958,4.282],[-15.368,1.444],[-5.901,-12.316]],"o":[[-99.548,12.137],[-55.52,-9.157],[-26.168,-59.677],[9.262,-35.088],[68.046,-19.298],[48.989,-6.212],[28.248,-9.335],[35.867,-3.37],[5.901,12.316]],"v":[[103.934,36.653],[-110.782,59.368],[-176.678,-72.703],[-215.177,-209.012],[-133.845,-270.579],[-1.857,-267.213],[77.752,-281.665],[130.133,-295.63],[187.79,-273.42]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-6.081,-31.985],[24.757,12.653],[29.356,58.811],[-19.949,34.363],[-41.604,2.715],[-49.623,5.236],[-12.21,4.49],[-23.206,1.791],[-4.437,-11.718]],"o":[[3.738,19.66],[-52.987,-27.082],[-31.952,-64.012],[34.962,-60.224],[48.707,-3.178],[49.623,-5.236],[19.505,-7.172],[12.739,-0.983],[4.437,11.718]],"v":[[107.412,37.288],[-109.918,61.076],[-179.259,-74.059],[-228.303,-206.233],[-121.83,-288.659],[2.406,-267.49],[93.495,-286.828],[132.206,-295.791],[188.763,-269.948]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[30.906,10.239],[26.258,11.48],[18.527,60.223],[-53.765,63.702],[-34.731,0.011],[-34.854,4.38],[-24.683,0.853],[-15.663,0.963],[-5.142,-11.664]],"o":[[-47.919,-15.876],[-70.357,-30.76],[-11.618,-37.767],[23.033,-27.29],[52.229,-0.017],[42.963,-5.399],[24.007,-0.83],[36.19,-2.225],[5.142,11.664]],"v":[[107.315,39.786],[-111.261,57.02],[-178.386,-71.664],[-215.594,-209.237],[-125.189,-282.314],[-3.008,-265.22],[81.1,-281.477],[127.81,-296.775],[190.767,-266.91]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":25.695},{"t":49.0546875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":9,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[3,-60,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[3,4,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[115],"t":4.838},{"t":34.677734375}]},"s":{"a":1,"ix":6,"k":[{"e":[129,129,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[151,151,100],"t":4.838},{"t":26.61328125}]}},"nm":"Shape Layer 7","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.673,-4.762],[-18.144,-8.136],[6.413,4.394],[5.067,0.196]],"o":[[6.889,6.254],[11.904,5.215],[-11.294,-7.739],[-6.612,1.03]],"v":[[281.484,-56.197],[316.648,-47.061],[328.35,-59.478],[295.503,-66.743]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-12.396,4.078],[-26.919,3.894],[11.275,-3.359],[5.797,-4.603]],"o":[[14.726,-4.845],[17.976,-2.6],[-11.283,3.361],[-10.431,8.283]],"v":[[231.694,-24.814],[274.564,-52.147],[273.316,-68.67],[244.55,-55.751]]}],"t":43.549},{"e":[{"c":true,"i":[[-2.311,-9.183],[-13.757,-14.151],[4.658,7.154],[4.703,2.596]],"o":[[2.97,11.804],[8.868,9.122],[-4.661,-7.159],[-4.703,-2.596]],"v":[[314.956,-50.966],[337.715,-30.091],[354.611,-38.075],[338.249,-52.541]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.673,-4.762],[-18.144,-8.136],[6.413,4.394],[5.067,0.196]],"o":[[6.889,6.254],[11.904,5.215],[-11.294,-7.739],[-6.612,1.03]],"v":[[281.484,-56.197],[316.648,-47.061],[328.35,-59.478],[295.503,-66.743]]}],"t":47.887},{"e":[{"c":true,"i":[[0.325,-4.363],[-1.606,-3.182],[0.88,5.721],[2.181,2.917]],"o":[[-0.612,8.23],[3.887,7.701],[-0.881,-5.725],[-2.181,-2.917]],"v":[[356.132,-20.162],[356.824,-10.849],[365.998,-11.643],[364.721,-15.523]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.311,-9.183],[-13.757,-14.151],[4.658,7.154],[4.703,2.596]],"o":[[2.97,11.804],[8.868,9.122],[-4.661,-7.159],[-4.703,-2.596]],"v":[[314.956,-50.966],[337.715,-30.091],[354.611,-38.075],[338.249,-52.541]]}],"t":49.055},{"t":52.55859375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-319,-12]},"r":{"a":0,"ix":6,"k":298},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.078,-1.526],[-4.242,5.063],[0.019,9.713],[3.918,-15.432],[5.925,-8.156]],"o":[[5.685,4.174],[6.323,-7.547],[-0.025,-12.727],[-3.007,11.844],[-5.934,8.169]],"v":[[298.689,40.643],[314.727,31.18],[323.755,6.626],[313.788,2.162],[299.614,23.444]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-11.421,0.903],[0.255,7.893],[5.273,8.205],[-1.791,-18.951],[1.478,-21.761]],"o":[[7.423,-0.587],[-0.783,-24.217],[-8.227,-12.801],[1.374,14.545],[-0.818,12.044]],"v":[[325.378,-3.841],[336.438,-31.273],[320.013,-81.633],[298.25,-89.886],[317.655,-28.815]]}],"t":43.549},{"e":[{"c":true,"i":[[-1.599,-0.805],[-3.908,2.402],[-1.341,2.458],[4.509,-6.135],[8.836,-6.249]],"o":[[3.863,1.944],[6.94,-4.265],[2.16,-3.959],[-1.98,2.694],[-5.724,4.049]],"v":[[276.962,51.013],[285.61,51.293],[296.948,36.945],[290.73,32.604],[278.984,41.458]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.078,-1.526],[-4.242,5.063],[0.019,9.713],[3.918,-15.432],[5.925,-8.156]],"o":[[5.685,4.174],[6.323,-7.547],[-0.025,-12.727],[-3.007,11.844],[-5.934,8.169]],"v":[[298.689,40.643],[314.727,31.18],[323.755,6.626],[313.788,2.162],[299.614,23.444]]}],"t":46.719},{"e":[{"c":true,"i":[[-0.732,-0.686],[-1.03,0.214],[-0.69,1.409],[2.475,-1.392],[4,-4.561]],"o":[[1.305,1.223],[1.948,-0.406],[1.112,-2.271],[-1.633,0.919],[-0.743,0.847]],"v":[[258.72,53.175],[261.421,53.75],[265.207,50.407],[262.532,46.891],[258.436,50.337]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.599,-0.805],[-3.908,2.402],[-1.341,2.458],[4.509,-6.135],[8.836,-6.249]],"o":[[3.863,1.944],[6.94,-4.265],[2.16,-3.959],[-1.98,2.694],[-5.724,4.049]],"v":[[276.962,51.013],[285.61,51.293],[296.948,36.945],[290.73,32.604],[278.984,41.458]]}],"t":49.055},{"t":53.7265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.727},{"t":54.89453125}]},"p":{"a":0,"ix":2,"k":[-110,-15]},"r":{"a":0,"ix":6,"k":264},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[423.143,176.84],[429.606,159.901],[408.185,109.611],[393.012,101.88],[401.394,160.886]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.468,0.819],[-2.289,7.899],[-1.216,9.918],[-0.539,-20.051],[3.895,-17.689]],"o":[[9.341,-0.612],[6.804,-22.692],[1.748,-14.248],[0.416,15.456],[-2.222,10.089]],"v":[[400.264,121.335],[407.277,89.064],[415.34,40.943],[396.726,46.079],[387.633,99.652]]}],"t":41.129},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[423.143,176.84],[429.606,159.901],[408.185,109.611],[393.012,101.88],[401.394,160.886]]}],"t":45.551},{"e":[{"c":true,"i":[[-0.627,3.991],[2.948,1.173],[2.948,2.281],[0.289,-5.765],[-3.685,-2.287]],"o":[[0.847,-5.388],[-2.405,-0.957],[-1.491,-1.154],[-0.256,5.111],[3.202,1.988]],"v":[[470.684,231.038],[466.901,225.56],[462.591,221.28],[456.214,226.198],[462.163,232.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"t":52.559},{"t":58.3984375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.398},{"t":59.56640625}]},"p":{"a":0,"ix":2,"k":[-235,62]},"r":{"a":0,"ix":6,"k":280},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.179,-0.665],[2.016,6.213],[3.142,17.876],[0.728,-14.187],[-3.41,-3.739]],"o":[[6.605,1.381],[-1.516,-4.672],[-2.326,-13.23],[-0.808,15.745],[4.916,5.39]],"v":[[321.216,291.57],[330.689,279.935],[319.139,243.191],[305.259,238.136],[312.226,287.486]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[3.434,14.705],[0.553,10.13],[5.503,-12.718],[-3.126,-13.881]],"o":[[5.497,2.929],[-2.647,-11.338],[-1.031,-18.877],[-7.856,18.155],[3.434,15.251]],"v":[[312.302,269.756],[324.661,257.524],[317.784,199.402],[301.971,183.906],[306.246,249.272]]}],"t":44.355},{"e":[{"c":true,"i":[[-3.271,0.769],[1.054,6.446],[3.012,5.794],[7.281,-4.776],[-3.438,-5.365]],"o":[[3.875,-0.911],[-0.618,-3.779],[-1.877,-3.611],[-8.672,5.688],[3.936,6.142]],"v":[[331.954,312.336],[337.105,301.515],[329.902,292.232],[319.278,281.248],[321.423,304.665]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.179,-0.665],[2.016,6.213],[3.142,17.876],[0.728,-14.187],[-3.41,-3.739]],"o":[[6.605,1.381],[-1.516,-4.672],[-2.326,-13.23],[-0.808,15.745],[4.916,5.39]],"v":[[321.216,291.57],[330.689,279.935],[319.139,243.191],[305.259,238.136],[312.226,287.486]]}],"t":49.027},{"e":[{"c":true,"i":[[-2.218,-0.219],[-1.495,1.753],[1.545,0.609],[1.15,0.524],[-2.438,-2.306]],"o":[[2.899,0.286],[1.648,-1.932],[-2.511,-0.99],[-2.994,-1.365],[1.838,1.739]],"v":[[339.992,318.322],[343.801,317.912],[343.795,313.291],[339.501,311.52],[337.014,315.936]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.271,0.769],[1.054,6.446],[3.012,5.794],[7.281,-4.776],[-3.438,-5.365]],"o":[[3.875,-0.911],[-0.618,-3.779],[-1.877,-3.611],[-8.672,5.688],[3.936,6.142]],"v":[[331.954,312.336],[337.105,301.515],[329.902,292.232],[319.278,281.248],[321.423,304.665]]}],"t":53.699},{"t":58.369140625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.604},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.355},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.119},{"t":58.92578125}]},"p":{"a":0,"ix":2,"k":[189,-160]},"r":{"a":0,"ix":6,"k":148},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.659,1.767],[2.042,-0.139],[-0.046,-0.681],[-1.373,-0.077]],"o":[[-1.659,-1.767],[-2.042,0.139],[0.046,0.681],[1.373,0.077]],"v":[[297.337,-363.857],[290.584,-365.106],[289.691,-363.164],[293.164,-362.375]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.573,6.143],[5.924,0.949],[0.316,-1.975],[-3.87,-1.127]],"o":[[-3.573,-6.143],[-5.924,-0.949],[-0.316,1.975],[3.87,1.127]],"v":[[266.466,-363.092],[248.002,-371.115],[244.17,-366.159],[253.569,-361.614]]}],"t":31.535},{"t":37.375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":30.367},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":31.535},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":37.375},{"t":38.54296875}]},"p":{"a":0,"ix":2,"k":[0,89]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[5.412,-4.886],[-8.316,0.301],[-8.696,0.023],[19.846,2.907],[5.025,-0.604]],"o":[[-5.824,5.258],[16.754,-0.606],[4.07,-0.011],[-14.315,-2.097],[-7.321,0.88]],"v":[[188.396,-372.408],[202.595,-365.629],[235.029,-365.913],[234.764,-376.269],[207.821,-377.38]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.206,-3.241],[-7.759,3.008],[-8.696,0.023],[19.846,2.907],[4.671,-1.948]],"o":[[0.499,7.83],[12.336,-4.783],[4.07,-0.011],[-14.315,-2.097],[-7.637,3.186]],"v":[[176.071,-367.658],[190.849,-366.843],[214.029,-368.913],[213.764,-379.269],[191.544,-378.666]]}],"t":33.871},{"e":[{"c":true,"i":[[0.7,-2.166],[-5.35,-1.792],[-6.171,-0.15],[14.241,0.353],[3.585,-0.214]],"o":[[-0.706,2.186],[8.455,2.77],[6.613,0.161],[-10.272,-0.255],[-6.384,0.381]],"v":[[223.108,-372.022],[231.508,-368.437],[247.014,-365.732],[244.812,-373.896],[233.202,-375.328]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.412,-4.886],[-8.316,0.301],[-8.696,0.023],[19.846,2.907],[5.025,-0.604]],"o":[[-5.824,5.258],[16.754,-0.606],[4.07,-0.011],[-14.315,-2.097],[-7.321,0.88]],"v":[[188.396,-372.408],[202.595,-365.629],[235.029,-365.913],[234.764,-376.269],[207.821,-377.38]]}],"t":38.709},{"e":[{"c":true,"i":[[-0.174,-0.783],[-1.859,0.883],[-0.719,0.551],[2.412,-0.802],[0.965,-0.712]],"o":[[0.314,1.41],[2.656,-1.262],[1.801,-1.379],[-1.264,0.421],[-1.803,1.33]],"v":[[267.812,-373.158],[270.939,-373.029],[273.177,-375.201],[272.191,-377.205],[269.581,-375.541]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.7,-2.166],[-5.35,-1.792],[-6.171,-0.15],[14.241,0.353],[3.585,-0.214]],"o":[[-0.706,2.186],[8.455,2.77],[6.613,0.161],[-10.272,-0.255],[-6.384,0.381]],"v":[[223.108,-372.022],[231.508,-368.437],[247.014,-365.732],[244.812,-373.896],[233.202,-375.328]]}],"t":41.936},{"t":46.7734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[198.41,-369.918]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"t":47.88671875}]},"p":{"a":0,"ix":2,"k":[281.463,-243.895]},"r":{"a":0,"ix":6,"k":86},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[3.112,19.412],[10.674,35.553],[17.968,31.767],[-30.425,13.391],[-28.972,-20.264],[-65.185,-11.41],[-12.448,-15.094],[-3.625,-8.609]],"o":[[-6.059,-37.793],[-15.271,-50.864],[-38.098,-67.356],[27.167,-11.957],[24.968,17.464],[31.565,5.525],[21.536,26.113],[3.625,8.609]],"v":[[-144.234,12.644],[-163.892,-135.328],[-233.902,-223.644],[-184.553,-335.632],[13.435,-282.458],[207.518,-281.588],[278.464,-263.113],[287.711,-177.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[21.095,24.799],[16.041,56.309],[6.528,29.004],[-60.825,1.267],[-28.794,-18.478],[-51.085,-10.087],[-13.359,-20.562],[-3.682,-7.089]],"o":[[-27.877,-32.773],[-10.17,-35.701],[-15.075,-66.979],[36.436,-0.759],[42.169,27.061],[37.502,7.405],[11.291,17.378],[3.682,7.089]],"v":[[-149.917,13.092],[-170.183,-136.964],[-239.925,-242.521],[-159.175,-341.267],[13.576,-279.962],[210.364,-290.231],[279.209,-253.378],[286.649,-180.337]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[13.732,29.52],[11.815,58.349],[10.077,29.724],[-48.147,12.056],[-32.713,-11.666],[-51.744,-7.909],[-9.299,-14.759],[-4.642,-6.714]],"o":[[-19.529,-41.981],[-10.04,-49.583],[-10.077,-29.724],[28.793,-7.21],[49.243,17.561],[30.359,4.64],[8.228,13.059],[3.517,5.087]],"v":[[-145.471,16.481],[-165.572,-147.211],[-241.62,-241.508],[-173.362,-334.464],[27.008,-272.711],[209.201,-286.814],[276.373,-257.803],[288.003,-173.706]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":23.359},{"t":46.71875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":10.512},{"t":33.87109375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":8}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":10,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[1,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[1,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[140],"t":10.484},{"t":47.580078125}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[147,147,100],"t":10.484},{"t":27.419921875}]}},"nm":"Shape Layer 4","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-18.451,-4.052],[7.493,3.259],[5.104,0.62]],"o":[[1.364,12.913],[11.894,2.612],[-7.498,-3.261],[-5.104,-0.62]],"v":[[270.136,-60.913],[304.606,-52.112],[313.007,-69.259],[290.247,-70.654]]}],"t":48.387},{"e":[{"c":true,"i":[[-2.93,-3.249],[-3.411,-1.038],[4.744,3.316],[3.615,0.439]],"o":[[5.527,6.129],[8.253,2.511],[-4.747,-3.319],[-3.615,-0.439]],"v":[[344.43,-43.937],[351.64,-38.002],[357.405,-45.184],[353.718,-46.941]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"t":52.143},{"t":54.478515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[293,-62.359]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.479},{"t":55.64453125}]},"p":{"a":0,"ix":2,"k":[108,-185.359]},"r":{"a":0,"ix":6,"k":8},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.76,1.884],[4.168,5.124],[7.914,1.98],[-11.948,-10.523],[-7.558,-15.742]],"o":[[4.251,-4.551],[-10.833,-13.319],[-12.347,-3.088],[9.171,8.077],[4.37,9.103]],"v":[[381.443,-19.093],[379.333,-33.681],[340.847,-63.912],[324.829,-51.077],[359.058,-23.758]]}],"t":47.58},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":51.084},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[394.302,8.896],[395.719,6.526],[393.778,1.863],[389.586,3.258],[391.524,8.248]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":53.42},{"t":58.091796875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[353.641,-44.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.092},{"t":59.259765625}]},"p":{"a":0,"ix":2,"k":[157.641,-152.633]},"r":{"a":0,"ix":6,"k":16},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-1.312,8.218],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[3.153,-19.75],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[404.847,96.25],[405.009,37.969],[388.084,33.044],[388.378,84.251]]}],"t":45.885},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"t":50.584},{"e":[{"c":true,"i":[[-0.903,5.742],[4.241,1.687],[4.241,3.281],[0.416,-8.294],[-5.302,-3.291]],"o":[[1.218,-7.751],[-3.46,-1.376],[-2.145,-1.66],[-0.368,7.354],[4.607,2.86]],"v":[[443.903,153.258],[438.46,145.376],[432.259,139.219],[423.084,146.294],[431.643,155.64]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"t":56.424},{"t":65.767578125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[398.555,63.389]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.744},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.912},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.768},{"t":66.935546875}]},"p":{"a":0,"ix":2,"k":[247.555,63.389]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.324,7.335],[0.152,-9.506],[-2.384,-0.906],[-2.409,4.542]],"o":[[-8.624,-11.881],[-0.123,7.651],[2.384,0.906],[2.409,-4.542]],"v":[[349.124,166.381],[325.603,197.485],[337.731,202.574],[344.72,184.091]]}],"t":42.047},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[319.08,229.772],[315.02,235.155],[318.952,236.806],[321.056,234.055]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"t":45.551},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[337.186,183.275]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.879},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[104.186,180.275]},"r":{"a":0,"ix":6,"k":79},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":40.879},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":45.551},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":50.223},{"t":54.89453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[323.852,221.168]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.895},{"t":56.0625}]},"p":{"a":0,"ix":2,"k":[54.852,164.168]},"r":{"a":0,"ix":6,"k":97},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.679,-3.237],[-0.517,4.848],[1.969,-0.558],[0.664,-2.606]],"o":[[8.09,10.017],[0.417,-3.897],[-1.969,0.558],[-0.969,3.802]],"v":[[405.614,313.083],[414.667,298.965],[410.333,294.572],[404.595,302.826]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.795,-5.998],[-6.373,12.088],[4.518,-1.6],[3.021,-4.16]],"o":[[13.088,11.553],[3.569,-6.769],[-3.223,1.142],[-3.021,4.16]],"v":[[385.32,338.854],[419.885,311.036],[406.184,302.873],[394.003,314.89]]}],"t":36.291},{"e":[{"c":true,"i":[[-0.988,-0.454],[0.126,1.819],[1.409,0.146],[0.852,-0.91]],"o":[[2.559,1.176],[-0.101,-1.455],[-0.32,-0.174],[-1.643,1.754]],"v":[[412.365,292.824],[414.874,290.201],[413.099,289.039],[411.343,289.658]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.679,-3.237],[-0.517,4.848],[1.969,-0.558],[0.664,-2.606]],"o":[[8.09,10.017],[0.417,-3.897],[-1.969,0.558],[-0.969,3.802]],"v":[[405.614,313.083],[414.667,298.965],[410.333,294.572],[404.595,302.826]]}],"t":40.322},{"t":43.1875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[407.156,310.85]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":35.039},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":36.207},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.188},{"t":44.35546875}]},"p":{"a":0,"ix":2,"k":[-131.844,173.85]},"r":{"a":0,"ix":6,"k":229},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-4.532,12.868],[10.898,-0.052],[5.649,8.585],[-4.064,-19.622],[-3.802,-3.34]],"o":[[2.607,-7.401],[-14.767,0.07],[-2.261,-3.445],[2.358,11.386],[11.289,9.917]],"v":[[385.463,348.975],[368.239,333.893],[335.471,309.489],[328.706,316.715],[346.925,345.112]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[5.5,6.245],[4.887,9.041],[-7.602,-18.562],[-3.068,-4.025]],"o":[[7.317,-2.832],[-9.238,-10.49],[-6.119,-11.321],[5.184,12.658],[7.711,10.117]],"v":[[347.016,347.734],[352.084,327.928],[327.391,296.339],[308.941,297.289],[331.78,336.989]]}],"t":39.516},{"e":[{"c":true,"i":[[-8.094,2.97],[11.386,-1.475],[7.828,0.358],[-6.48,-3.777],[-4.068,-0.501]],"o":[[5.296,-1.944],[-9.486,4.744],[-2.961,0.265],[6.594,3.735],[10.126,1.246]],"v":[[400.442,345.247],[396.945,331.977],[375.01,335.171],[369.236,342.852],[382.771,346.994]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.532,12.868],[10.898,-0.052],[5.649,8.585],[-4.064,-19.622],[-3.802,-3.34]],"o":[[2.607,-7.401],[-14.767,0.07],[-2.261,-3.445],[2.358,11.386],[11.289,9.917]],"v":[[385.463,348.975],[368.239,333.893],[335.471,309.489],[328.706,316.715],[346.925,345.112]]}],"t":44.355},{"e":[{"c":true,"i":[[-1.227,0.43],[1.803,0.107],[2.109,0.356],[0.189,-1.037],[-2.011,-0.254]],"o":[[2.912,-1.02],[-1.289,-0.076],[-1.607,-0.272],[-0.125,0.685],[2.567,0.324]],"v":[[408.639,336.559],[408.766,332.761],[404.083,333.618],[401.638,334.535],[403.674,336.207]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.094,2.97],[11.386,-1.475],[7.828,0.358],[-6.48,-3.777],[-4.068,-0.501]],"o":[[5.296,-1.944],[-9.486,4.744],[-2.961,0.265],[6.594,3.735],[10.126,1.246]],"v":[[400.442,345.247],[396.945,331.977],[375.01,335.171],[369.236,342.852],[382.771,346.994]]}],"t":49.193},{"e":[{"c":true,"i":[[-0.997,0.637],[2.053,0.116],[0.765,-0.196],[-1.074,-1.941],[-1.524,1.037]],"o":[[1.081,-0.69],[-1.172,-0.066],[-1.436,0.367],[0.307,0.554],[0.686,-0.467]],"v":[[418.342,330.83],[417.401,328.631],[416.032,328.723],[414.592,331.789],[416.978,331.8]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.227,0.43],[1.803,0.107],[2.109,0.356],[0.189,-1.037],[-2.011,-0.254]],"o":[[2.912,-1.02],[-1.289,-0.076],[-1.607,-0.272],[-0.125,0.685],[2.567,0.324]],"v":[[408.639,336.559],[408.766,332.761],[404.083,333.618],[401.638,334.535],[403.674,336.207]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[328.814,317.986]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":38.543},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":39.711},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[-60.186,155.986]},"r":{"a":0,"ix":6,"k":108},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-19.408,3.137],[-19.5,-21],[-46.37,-67.073],[49.191,-113.654],[47.576,19.36],[54.339,-14.267],[23.774,17.431],[32.642,42.74]],"o":[[99,-16],[38.289,41.234],[32.013,46.306],[-14.415,33.304],[-65.513,-26.659],[-47.762,12.54],[-35.67,-26.152],[-33.953,-44.457]],"v":[[32,-184],[142.5,-166],[204.373,-56.72],[223.746,148.873],[69.527,166.82],[-56.312,159.032],[-196.774,161.569],[-256.642,8.26]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.321,31.724],[-25.23,-11.681],[-44.123,-48.72],[32.583,-56.711],[37.658,17.892],[48.518,-11.655],[18.476,12.879],[34.214,46.676]],"o":[[-4.5,-19.5],[54,25],[48.026,53.029],[-34.691,60.381],[-44.087,-20.946],[-48.518,11.655],[-35.723,-24.902],[-30.244,-41.259]],"v":[[28.5,-184.5],[124,-182],[207.225,-56.11],[229.302,145.073],[73.942,176.399],[-65.398,154.268],[-206.927,155.694],[-260.214,4.324]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-31.28,-9.029],[-26.684,-10.45],[-46.732,-42.263],[61.896,-78.899],[30.339,16.905],[26.961,-22.519],[17.029,21.172],[12.787,36.703]],"o":[[48.5,14],[71.5,28],[22.05,19.941],[-22.042,28.097],[-45.625,-25.423],[-40.175,33.556],[-30.84,-38.342],[-11.284,-32.387]],"v":[[28.5,-187],[125.5,-178],[205.738,-58.182],[222.096,154.749],[75.499,174.794],[-60.914,157.995],[-202.724,155.315],[-258.787,0.297]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":25.695},{"t":49.0546875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":11}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":11,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[110],"t":4.033},{"t":36.291015625}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[162,162,100],"t":4.033},{"t":29.033203125}]}},"nm":"Shape Layer 3","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[421.051,218.79],[427.182,171.638],[410.614,174.093],[398.87,211.585]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[419.019,214.743],[427.182,171.638],[410.614,174.093],[402.747,212.047]]}],"t":33.871},{"e":[{"c":true,"i":[[-7.901,-5.866],[-5.204,5.248],[0.552,15.963],[2.497,-10.999],[16.333,-11.642]],"o":[[6.138,4.708],[10.993,-11.085],[-0.312,-9.012],[-3.273,14.414],[-6.691,9.19]],"v":[[382.683,247.373],[403.219,239.01],[422.998,195.364],[410.31,188.564],[383.558,225.318]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[421.051,218.79],[427.182,171.638],[410.614,174.093],[398.87,211.585]]}],"t":44.355},{"e":[{"c":true,"i":[[-6.324,-6.028],[-5.645,6.114],[-6.999,14.134],[9.853,-17.471],[23.111,-19.238]],"o":[[5.769,5.499],[22.604,-24.479],[7.752,-15.655],[-10.82,19.184],[-9.777,8.138]],"v":[[363.983,263.669],[385.386,259.231],[418.815,219.091],[408.306,205.927],[371.285,240.06]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.901,-5.866],[-5.204,5.248],[0.552,15.963],[2.497,-10.999],[16.333,-11.642]],"o":[[6.138,4.708],[10.993,-11.085],[-0.312,-9.012],[-3.273,14.414],[-6.691,9.19]],"v":[[382.683,247.373],[403.219,239.01],[422.998,195.364],[410.31,188.564],[383.558,225.318]]}],"t":46.773},{"e":[{"c":true,"i":[[-7.27,-0.812],[-1.416,8.2],[-6.694,8.68],[18.019,-8.81],[3.481,-19.9]],"o":[[7.798,0.871],[2.93,-16.961],[6.69,-8.675],[-13.89,6.791],[-2.192,12.53]],"v":[[357.253,291.519],[373.936,278.357],[384.557,249.111],[382.687,232.767],[348.497,273.634]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.324,-6.028],[-5.645,6.114],[-6.999,14.134],[9.853,-17.471],[23.111,-19.238]],"o":[[5.769,5.499],[22.604,-24.479],[7.752,-15.655],[-10.82,19.184],[-9.777,8.138]],"v":[[363.983,263.669],[385.386,259.231],[418.815,219.091],[408.306,205.927],[371.285,240.06]]}],"t":49.193},{"e":[{"c":true,"i":[[-2.752,2.958],[1.788,2.62],[0.924,3.673],[1.499,-4.39],[-1.288,-4.509]],"o":[[3.714,-3.993],[-1.459,-2.138],[-0.623,-2.477],[-1.193,3.495],[1.036,3.624]],"v":[[359.979,298.683],[359.906,292.026],[357.126,286.36],[352.062,284.793],[351.988,295.291]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.27,-0.812],[-1.416,8.2],[-6.694,8.68],[18.019,-8.81],[3.481,-19.9]],"o":[[7.798,0.871],[2.93,-16.961],[6.69,-8.675],[-13.89,6.791],[-2.192,12.53]],"v":[[357.253,291.519],[373.936,278.357],[384.557,249.111],[382.687,232.767],[348.497,273.634]]}],"t":55.645},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.902},{"t":63.0703125}]},"p":{"a":0,"ix":2,"k":[-133,-292]},"r":{"a":0,"ix":6,"k":33},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.901,178.052],[211.47,186.061]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.051,175.701],[211.47,186.061]]}],"t":33.871},{"e":[{"c":true,"i":[[-0.481,11.702],[12.009,-2.588],[-3.21,-0.747],[-6.422,-1.703]],"o":[[0.475,-11.551],[-9.667,2.084],[8.655,2.014],[6.422,1.703]],"v":[[177.664,166.721],[142.409,158.299],[139.551,175.054],[162.819,178.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.901,178.052],[211.47,186.061]]}],"t":40.879},{"e":[{"c":true,"i":[[0.227,2.93],[2.915,-1.001],[0.014,-0.827],[-1.65,-0.234]],"o":[[-0.225,-2.892],[-2.347,0.806],[-0.014,0.827],[1.65,0.234]],"v":[[130.301,172.278],[123.858,170.29],[123.643,174.549],[126.945,175.592]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.481,11.702],[12.009,-2.588],[-3.21,-0.747],[-6.422,-1.703]],"o":[[0.475,-11.551],[-9.667,2.084],[8.655,2.014],[6.422,1.703]],"v":[[177.664,166.721],[142.409,158.299],[139.551,175.054],[162.819,178.258]]}],"t":44.383},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-215,10]},"r":{"a":0,"ix":6,"k":-17},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.795,-1.654],[-0.094,6.531],[2.11,10.058],[2.206,-14.033],[-2.023,-4.639]],"o":[[5.808,3.437],[0.071,-4.912],[-0.836,-3.983],[-1.581,10.057],[2.916,6.687]],"v":[[323.226,281.826],[332.338,273.857],[322.17,243.788],[309.081,236.943],[316.032,275.062]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[1.291,-5.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-2.513,11.079],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[312.98,196.381],[299.709,202.194],[307.371,241.392]]}],"t":36.207},{"e":[{"c":true,"i":[[-2.205,1.491],[2.596,4.475],[3.862,3.441],[4.045,-5.587],[-3.484,-3.652]],"o":[[2.612,-1.766],[-1.522,-2.624],[-2.407,-2.145],[-4.817,6.654],[6.383,6.69]],"v":[[331.075,291.106],[331.84,281.644],[326.268,274.029],[315.877,263.087],[319.117,287.31]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.795,-1.654],[-0.094,6.531],[2.11,10.058],[2.206,-14.033],[-2.023,-4.639]],"o":[[5.808,3.437],[0.071,-4.912],[-0.836,-3.983],[-1.581,10.057],[2.916,6.687]],"v":[[323.226,281.826],[332.338,273.857],[322.17,243.788],[309.081,236.943],[316.032,275.062]]}],"t":40.879},{"e":[{"c":true,"i":[[-2.219,0.206],[-1.135,2.005],[1.633,0.304],[1.229,0.296],[-2.832,-1.801]],"o":[[2.9,-0.269],[1.252,-2.21],[-2.653,-0.495],[-3.199,-0.771],[2.135,1.358]],"v":[[330.207,293.678],[333.87,292.552],[332.987,288.016],[328.434,287.093],[326.831,291.901]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.205,1.491],[2.596,4.475],[3.862,3.441],[4.045,-5.587],[-3.484,-3.652]],"o":[[2.612,-1.766],[-1.522,-2.624],[-2.407,-2.145],[-4.817,6.654],[6.383,6.69]],"v":[[331.075,291.106],[331.84,281.644],[326.268,274.029],[315.877,263.087],[319.117,287.31]]}],"t":45.551},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.738,226.23]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":35.039},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":36.207},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-155.262,151.23]},"r":{"a":0,"ix":6,"k":123},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[4.248,3.123],[2,-4.932],[-1.974,0.319],[-2.787,2.913]],"o":[[-7.325,-5.384],[-2.255,5.56],[1.974,-0.319],[4.226,-4.416]],"v":[[-179.774,265.316],[-193.599,273.114],[-189.441,280.448],[-184.075,275.347]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.478,-2.921],[2.11,-8.245],[-1.668,1.103],[-0.976,3.911]],"o":[[-9.641,4.347],[-1.488,5.813],[4.132,-2.733],[1.617,-6.481]],"v":[[-200.047,280.328],[-209.579,310.509],[-203.3,317.556],[-197.226,301.916]]}],"t":33.871},{"e":[{"c":true,"i":[[1.183,0.665],[0,-1.37],[-0.508,0.082],[-0.511,0.903]],"o":[[-0.405,-0.228],[0,1.112],[0.508,-0.082],[0.316,-0.558]],"v":[[-177.262,258.624],[-178.89,259.73],[-178.206,261.168],[-176.567,260.048]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.248,3.123],[2,-4.932],[-1.974,0.319],[-2.787,2.913]],"o":[[-7.325,-5.384],[-2.255,5.56],[1.974,-0.319],[4.226,-4.416]],"v":[[-179.774,265.316],[-193.599,273.114],[-189.441,280.448],[-184.075,275.347]]}],"t":37.902},{"e":[{"c":true,"i":[[0.836,1.069],[0.528,-1.265],[-0.501,-0.12],[-0.82,0.637]],"o":[[-0.286,-0.366],[-0.428,1.026],[0.501,0.12],[0.506,-0.393]],"v":[[-176.806,258.966],[-178.735,259.36],[-178.657,260.95],[-176.713,260.548]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.183,0.665],[0,-1.37],[-0.508,0.082],[-0.511,0.903]],"o":[[-0.405,-0.228],[0,1.112],[0.508,-0.082],[0.316,-0.558]],"v":[[-177.262,258.624],[-178.89,259.73],[-178.206,261.168],[-176.567,260.048]]}],"t":41.045},{"t":41.12890625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-201.517,300.108]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.869},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":34.037},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.045},{"t":42.21484375}]},"p":{"a":0,"ix":2,"k":[-223.284,-41.979]},"r":{"a":0,"ix":6,"k":-20},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.656,2.794],[7.194,0.91],[5.037,6.761],[0.877,-7.851],[-5.98,-1.554]],"o":[[4,-6.75],[-12.603,-1.594],[-1.994,-2.677],[-1.303,11.668],[10.729,2.788]],"v":[[-144.875,343.375],[-156.511,333.024],[-191.674,311.069],[-199.377,315.851],[-169.77,342.804]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.656,2.794],[7.707,-3.14],[9.75,3.25],[-9.11,-17.87],[-4.9,-1.267]],"o":[[4,-6.75],[-13.5,5.5],[-3.861,-1.287],[6.5,12.75],[12.316,3.184]],"v":[[-124.5,346.25],[-136.25,337.25],[-179.75,327.75],[-189.5,331.25],[-149.6,347.767]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.466,2.114],[6.682,4.96],[0.323,10.272],[6.254,-6.701],[-2.722,-4.266]],"o":[[5.25,-4.5],[-11.706,-8.688],[-0.128,-4.068],[-9.764,10.463],[7.439,11.659]],"v":[[-176.75,335.5],[-180.772,323.048],[-195.097,297.389],[-201.754,289.451],[-199.939,319.091]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.656,2.794],[7.194,0.91],[5.037,6.761],[0.877,-7.851],[-5.98,-1.554]],"o":[[4,-6.75],[-12.603,-1.594],[-1.994,-2.677],[-1.303,11.668],[10.729,2.788]],"v":[[-144.875,343.375],[-156.511,333.024],[-191.674,311.069],[-199.377,315.851],[-169.77,342.804]]}],"t":37.375},{"e":[{"c":true,"i":[[-3,-0.5],[0.128,4.198],[-0.802,5.812],[7.132,-5.649],[0.411,-5.359]],"o":[[3,0.5],[-0.128,-4.198],[1.118,-3.763],[-5.843,5.427],[-0.411,5.359]],"v":[[-199,310.25],[-192.622,303.198],[-190.057,288.853],[-196.364,282.839],[-204.089,300.391]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.466,2.114],[6.682,4.96],[0.323,10.272],[6.254,-6.701],[-2.722,-4.266]],"o":[[5.25,-4.5],[-11.706,-8.688],[-0.128,-4.068],[-9.764,10.463],[7.439,11.659]],"v":[[-176.75,335.5],[-180.772,323.048],[-195.097,297.389],[-201.754,289.451],[-199.939,319.091]]}],"t":40.879},{"e":[{"c":true,"i":[[-1.144,0],[-1.307,2.623],[-0.547,0.999],[2.718,-1.742],[0.525,-1.315]],"o":[[0.968,0],[0.184,-0.369],[0.686,-1.254],[-1.137,0.729],[-0.374,0.936]],"v":[[-189.856,280.797],[-186.342,279.141],[-185.436,276.892],[-187.574,275.225],[-190.187,277.835]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3,-0.5],[0.128,4.198],[-0.802,5.812],[7.132,-5.649],[0.411,-5.359]],"o":[[3,0.5],[-0.128,-4.198],[1.118,-3.763],[-5.843,5.427],[-0.411,5.359]],"v":[[-199,310.25],[-192.622,303.198],[-190.057,288.853],[-196.364,282.839],[-204.089,300.391]]}],"t":44.383},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-158.706,337.807]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[-206.637,100.803]},"r":{"a":0,"ix":6,"k":52},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-5.885,-18.758],[27.378,-25.069],[32,-25],[43.701,-23.415],[29.194,-19.942],[19.717,46.737],[0.948,16.073],[-2.882,19.018],[-17.763,21.089]],"o":[[16,51],[-41.5,38],[-44.473,34.744],[-26.163,14.018],[-43.249,29.543],[-12.61,-29.891],[-0.948,-16.073],[7.193,-47.469],[17.763,-21.089]],"v":[[160,-121],[159.5,18],[101,106],[-27.584,128.335],[-95.515,150.94],[-207.717,102.263],[-217.944,14.161],[-232.193,-106.531],[-185.004,-197.671]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[1.135,-32.538],[40.581,-42.204],[59.5,-4.5],[57.859,-13.541],[35.181,-22.373],[19.405,41.321],[0.434,29.526],[-0.99,13.305],[-10.765,15.342]],"o":[[-1.5,43],[-25,26],[-71.34,5.395],[-40.448,9.466],[-40.591,25.814],[-14.518,-30.915],[-0.434,-29.527],[4.118,-55.326],[10.765,-15.342]],"v":[[161.5,-121.5],[153,28],[73.5,117],[-27.859,122.041],[-93.917,153.889],[-213.195,93.897],[-219.069,9.063],[-233.118,-108.674],[-191.644,-191.575]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.725,-31.855],[43.5,-41],[35,-35],[64.433,-24.076],[29.307,-18.638],[20.481,33.129],[-3.033,17.148],[-3.437,16.453],[-14.649,15.745]],"o":[[-9.5,45],[-36.814,34.698],[-21.022,21.022],[-33.451,12.5],[-35.181,22.373],[-22.251,-35.992],[3.033,-17.148],[11.33,-54.236],[14.649,-15.745]],"v":[[162.5,-116],[145,25.5],[101,104],[-14.431,120.704],[-93.59,151.677],[-209.182,101.669],[-219.707,4.839],[-230.33,-112.764],[-185.666,-194.127]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":18.688},{"t":45.55078125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":4.672},{"t":28.03125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":8}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":12,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[2,-61,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[2,3,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[145],"t":4.033},{"t":41.935546875}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[165,165,100],"t":4.033},{"t":25.806640625}]}},"nm":"Shape Layer 1","op":794,"parent":1,"shapes":[{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.361,6.661],[9.412,10.595],[-3.111,-5.282],[-3.29,-2.014]],"o":[[-1.75,-8.563],[-6.067,-6.83],[3.113,5.286],[3.29,2.014]],"v":[[312.912,-55.962],[297.26,-71.67],[284.883,-66.488],[296.153,-55.583]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.549,10.146],[19.703,7.766],[-7.715,-4.94],[-5.539,-1.593]],"o":[[0.786,-14.537],[-12.701,-5.006],[7.72,4.943],[5.539,1.593]],"v":[[357.714,-44.424],[321.123,-60.295],[308.775,-42.809],[333.721,-37.218]]}],"t":42.047},{"e":[{"c":true,"i":[[0.541,4.341],[2.202,2.804],[-1.99,-5.435],[-2.712,-2.43]],"o":[[-1.02,-8.19],[-5.328,-6.785],[1.991,5.439],[2.712,2.43]],"v":[[291.516,-70.561],[289.004,-79.556],[280.166,-76.97],[282.182,-73.418]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.361,6.661],[9.412,10.595],[-3.111,-5.282],[-3.29,-2.014]],"o":[[-1.75,-8.563],[-6.067,-6.83],[3.113,5.286],[3.29,2.014]],"v":[[312.912,-55.962],[297.26,-71.67],[284.883,-66.488],[296.153,-55.583]]}],"t":45.551},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.879},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[-559,161]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[0.295,2.561],[6.597,-0.334],[9.416,-2.383],[-12.552,-3.048],[-9.548,3.233]],"o":[[-0.807,-7.006],[-9.833,0.497],[-11.045,2.795],[11.875,2.883],[11.707,-3.964]],"v":[[-175.469,106.444],[-193.814,106.123],[-222.955,104.205],[-220.948,123.048],[-189.707,120.464]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.223,1.907],[4.317,-3.88],[4.344,-5.703],[-12.641,5.995],[-11.776,9.837]],"o":[[-2.955,-4.606],[-14.334,12.885],[-6.777,8.897],[9.702,-4.602],[12.608,-10.531]],"v":[[-132.286,80.478],[-150.666,79.115],[-190.95,104.669],[-179.645,115.553],[-146.608,98.531]]}],"t":43.215},{"e":[{"c":true,"i":[[-0.178,2.15],[5.427,0.92],[6.446,1.2],[-7.449,-5.526],[-10.039,-0.321]],"o":[[0.41,-5.607],[-8.68,-1.612],[-7.02,-0.735],[6.848,4.674],[9.559,-0.463]],"v":[[-211.051,113.151],[-220.9,108.102],[-242.142,100.216],[-246.327,113.453],[-223.511,119.606]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.295,2.561],[6.597,-0.334],[9.416,-2.383],[-12.552,-3.048],[-9.548,3.233]],"o":[[-0.807,-7.006],[-9.833,0.497],[-11.045,2.795],[11.875,2.883],[11.707,-3.964]],"v":[[-175.469,106.444],[-193.814,106.123],[-222.955,104.205],[-220.948,123.048],[-189.707,120.464]]}],"t":46.719},{"e":[{"c":true,"i":[[-0.359,1.754],[4.357,1.435],[3.609,3.904],[-3.061,-6.971],[-10.526,-2.514]],"o":[[0.866,-4.237],[-7.705,-2.538],[-3.061,-3.312],[2.422,5.517],[7.305,1.745]],"v":[[-242.804,109.709],[-244.795,101.288],[-259.109,90.346],[-267.672,98.483],[-252.555,110.255]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.178,2.15],[5.427,0.92],[6.446,1.2],[-7.449,-5.526],[-10.039,-0.321]],"o":[[0.41,-5.607],[-8.68,-1.612],[-7.02,-0.735],[6.848,4.674],[9.559,-0.463]],"v":[[-211.051,113.151],[-220.9,108.102],[-242.142,100.216],[-246.327,113.453],[-223.511,119.606]]}],"t":49.055},{"e":[{"c":true,"i":[[-0.66,0.756],[0.251,1.021],[1.433,0.64],[-1.479,-2.424],[-1.953,-0.893]],"o":[[1.176,-1.347],[-0.475,-1.933],[-2.309,-1.031],[0.976,1.6],[1.024,0.469]],"v":[[-266.971,91.259],[-267.117,88.039],[-270.218,85.624],[-273.387,88.797],[-270.547,91.768]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.359,1.754],[4.357,1.435],[3.609,3.904],[-3.061,-6.971],[-10.526,-2.514]],"o":[[0.866,-4.237],[-7.705,-2.538],[-3.061,-3.312],[2.422,5.517],[7.305,1.745]],"v":[[-242.804,109.709],[-244.795,101.288],[-259.109,90.346],[-267.672,98.483],[-252.555,110.255]]}],"t":51.391},{"t":53.7265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.047},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.215},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.727},{"t":54.89453125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.442,-2.91],[-5.045,6.618],[-8.843,5.238],[19.731,-3.608],[11.564,-12.167]],"o":[[2.661,5.368],[10.435,-13.688],[8.338,-4.938],[-16.451,3.008],[-7.711,8.114]],"v":[[-49.911,85.632],[-30.934,79.381],[5.662,61.938],[-3.549,45.992],[-42.314,67.417]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.417,-2.922],[-8.084,1.975],[-8.679,-0.998],[19.717,-3.683],[15.906,-1.755]],"o":[[-3.423,7.06],[20.948,-5.118],[14.1,1.621],[-15.198,2.839],[-12.644,1.395]],"v":[[-22.2,53.363],[-5.198,62.868],[38.929,56.248],[40.089,39.882],[3.594,44.755]]}],"t":46.719},{"e":[{"c":true,"i":[[-3.124,-0.889],[-2.166,8.035],[-4.364,9.305],[8.677,-7.912],[1.189,-6.126]],"o":[[7.547,2.147],[4.481,-16.619],[4.651,-9.918],[-11.425,10.417],[-2.424,12.487]],"v":[[-59.331,139.22],[-52.229,126.417],[-44.784,102.206],[-52.927,81.787],[-64.055,109.753]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.442,-2.91],[-5.045,6.618],[-8.843,5.238],[19.731,-3.608],[11.564,-12.167]],"o":[[2.661,5.368],[10.435,-13.688],[8.338,-4.938],[-16.451,3.008],[-7.711,8.114]],"v":[[-49.911,85.632],[-30.934,79.381],[5.662,61.938],[-3.549,45.992],[-42.314,67.417]]}],"t":52.559},{"e":[{"c":true,"i":[[-2.424,1.108],[0.428,2.048],[0.664,2.367],[0.439,-3.782],[-0.471,-1.952]],"o":[[3.272,-1.496],[-0.349,-1.671],[-0.78,-2.782],[-0.253,2.185],[0.583,2.417]],"v":[[-61.64,148.162],[-60.004,144.086],[-61.22,140.032],[-66.247,138.315],[-65.654,144.077]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.124,-0.889],[-2.166,8.035],[-4.364,9.305],[8.677,-7.912],[1.189,-6.126]],"o":[[7.547,2.147],[4.481,-16.619],[4.651,-9.918],[-11.425,10.417],[-2.424,12.487]],"v":[[-59.331,139.22],[-52.229,126.417],[-44.784,102.206],[-52.927,81.787],[-64.055,109.753]]}],"t":59.566},{"t":65.40625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.551},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":66.572},{"t":67.7421875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.973,-1.051],[-0.058,5.729],[-1.931,6.807],[12.005,-6.824],[0.718,-3.41]],"o":[[4.767,2.54],[0.102,-10.098],[0.764,-2.696],[-8.566,4.869],[-1.805,8.57]],"v":[[317.96,240.543],[325.848,231.148],[331.302,212.189],[324.995,198.15],[315.595,227.811]]}],"t":28.031},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":32.703},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.863},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":28.031},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-750,-113]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.628,-2.167],[-0.46,-1.816],[-0.691,0.323],[0.473,1.463]],"o":[[-0.536,0.714],[0.561,2.218],[0.691,-0.323],[-0.473,-1.463]],"v":[[-428.61,106.531],[-429.644,110.032],[-426.919,110.33],[-426.223,106.575]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.596,-4.38],[0.25,-4.125],[-2,0],[-0.5,4]],"o":[[-2.875,2.25],[-0.363,5.989],[2,0],[0.5,-4]],"v":[[-410.5,67.375],[-415.5,74.5],[-410,80],[-401.875,71.25]]}],"t":33.871},{"t":39.7109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.6,0.333333333333,0.984313785329,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":39.711},{"t":40.87890625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-0.96,3.103],[7.296,-4.219],[-0.476,-4.042],[-7.741,3.727],[-7.442,9.586]],"o":[[2.869,-9.275],[-12.619,7.297],[0.476,4.042],[2.506,-1.206],[7.572,-9.753]],"v":[[-371.718,45.678],[-389.895,46.753],[-413.098,71.506],[-403.921,77.414],[-389.897,60.579]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.24,3.239],[7.707,-3.14],[0.75,-4],[-8.5,1.25],[-5.43,2.334]],"o":[[1,-13.5],[-13.5,5.5],[-0.75,4],[2.752,-0.405],[11.344,-4.876]],"v":[[-355,42.25],[-375.25,36.75],[-400.25,57.25],[-393,62.75],[-378.6,52.767]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.713,4.211],[3.088,-3.743],[-0.635,-2.98],[-5.512,3.313],[-2.768,8.653]],"o":[[3.937,-6.108],[-6.944,8.417],[0.635,2.98],[1.784,-1.073],[0.543,-1.697]],"v":[[-402.446,71.108],[-408.746,69.388],[-417.03,85.045],[-409.782,88.814],[-406.45,77.669]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.96,3.103],[7.296,-4.219],[-0.476,-4.042],[-7.741,3.727],[-7.442,9.586]],"o":[[2.869,-9.275],[-12.619,7.297],[0.476,4.042],[2.506,-1.206],[7.572,-9.753]],"v":[[-371.718,45.678],[-389.895,46.753],[-413.098,71.506],[-403.921,77.414],[-389.897,60.579]]}],"t":38.543},{"e":[{"c":true,"i":[[0.561,1.74],[0.093,-1.247],[-0.579,-0.949],[-0.806,0.839],[0.024,1.087]],"o":[[-0.306,-0.95],[-0.067,0.907],[0.579,0.949],[0.332,-0.346],[-0.014,-0.65]],"v":[[-418.312,92.219],[-420.136,94.516],[-419.871,96.273],[-418.145,95.819],[-417.925,94.428]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.713,4.211],[3.088,-3.743],[-0.635,-2.98],[-5.512,3.313],[-2.768,8.653]],"o":[[3.937,-6.108],[-6.944,8.417],[0.635,2.98],[1.784,-1.073],[0.543,-1.697]],"v":[[-402.446,71.108],[-408.746,69.388],[-417.03,85.045],[-409.782,88.814],[-406.45,77.669]]}],"t":43.215},{"t":49.0546875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.055},{"t":50.22265625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-1,22],[123.5,-13],[33,-17],[29,0],[17,19],[-9.499,24.13],[0.729,36.777],[-32.887,6.622],[-8.011,3.213]],"o":[[0.747,-16.43],[-30.398,3.2],[-33,17],[-29,0],[-19.792,-22.12],[9.089,-23.087],[-1.43,-72.116],[45.69,-9.199],[8.011,-3.213]],"v":[[156,18.5],[-15,54],[-134.5,86],[-209,103],[-270,52],[-267.74,-21.23],[-243.729,-110.777],[-162.559,-228.388],[-57.069,-230.979]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-34.711,-31.625],[16.377,-0.224],[49,-12.5],[29.512,3.587],[6.943,26.458],[-3.669,11.469],[0.093,10.659],[-49.053,-0.468],[-9.838,1.808]],"o":[[22.5,20.5],[-36.5,0.5],[-35.969,9.176],[-29.512,-3.586],[-9.25,-35.25],[7.304,-22.831],[-0.591,-67.706],[9.37,0.089],[9.838,-1.808]],"v":[[154.5,18],[-13.5,57.5],[-128,83],[-203.5,95.5],[-275.75,49.5],[-263.084,-23.438],[-248.409,-113.294],[-156.915,-236.114],[-54.184,-231.84]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[24,-22],[50.828,-3.279],[58.5,-25.5],[29.512,3.586],[8.5,26],[-8.802,24.037],[-1.102,8.68],[-52.994,14.316],[-11.989,2.514]],"o":[[-24,22],[-46.5,3],[-34.029,14.833],[-29.512,-3.587],[-9.223,-28.212],[11.83,-32.306],[12.236,-96.423],[34.114,-9.216],[11.989,-2.514]],"v":[[155.5,15],[-15.5,53],[-134.5,78],[-210,102],[-267,57.5],[-267.38,-26.045],[-254.236,-107.577],[-160.181,-236.934],[-52.471,-232.199]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":50.22265625}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":4.672},{"t":37.375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":13,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-60,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,4,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[120],"t":9.678},{"t":45.966796875}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[135,135,100],"t":9.678},{"t":28.2265625}]}},"nm":"Shape Layer 6","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-18.451,-4.052],[7.493,3.259],[5.104,0.62]],"o":[[1.364,12.913],[11.894,2.612],[-7.498,-3.261],[-5.104,-0.62]],"v":[[270.136,-60.913],[304.606,-52.112],[313.007,-69.259],[290.247,-70.654]]}],"t":50.807},{"e":[{"c":true,"i":[[-2.93,-3.249],[-3.411,-1.038],[4.744,3.316],[3.615,0.439]],"o":[[5.527,6.129],[8.253,2.511],[-4.747,-3.319],[-3.615,-0.439]],"v":[[344.43,-43.937],[351.64,-38.002],[357.405,-45.184],[353.718,-46.941]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"t":54.561},{"t":56.896484375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[292.434,-60.719]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.639},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.807},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":56.896},{"t":58.064453125}]},"p":{"a":0,"ix":2,"k":[17.434,-251.719]},"r":{"a":0,"ix":6,"k":-29},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-4.667,6.89],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[9.653,-14.25],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[404.847,96.25],[408.509,37.469],[388.084,33.044],[385.378,84.251]]}],"t":49.945},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"t":54.617},{"e":[{"c":true,"i":[[-0.903,5.742],[4.241,1.687],[4.241,3.281],[0.416,-8.294],[-5.302,-3.291]],"o":[[1.218,-7.751],[-3.46,-1.376],[-2.145,-1.66],[-0.368,7.354],[4.607,2.86]],"v":[[443.903,153.258],[438.46,145.376],[432.259,139.219],[423.084,146.294],[431.643,155.64]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"t":60.455},{"t":69.798828125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[396.555,65.137]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":48.775},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.945},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":69.799},{"t":70.966796875}]},"p":{"a":0,"ix":2,"k":[79.555,-281.863]},"r":{"a":0,"ix":6,"k":-114},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.51,0.798],[2.848,-11.949],[-3.735,7.145],[0.01,5.141]],"o":[[-14.529,-2.104],[-1.774,7.444],[4.86,-9.297],[-0.018,-8.885]],"v":[[329.808,160.641],[322.057,196.166],[335.144,203.18],[339.526,181.612]]}],"t":47.58},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[319.08,229.772],[315.02,235.155],[318.952,236.806],[321.056,234.055]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"t":51.334},{"t":53.669921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[334.293,183.16]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.67},{"t":54.837890625}]},"p":{"a":0,"ix":2,"k":[267.293,-247.84]},"r":{"a":0,"ix":6,"k":-28},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":46.912},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":51.584},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":56.256},{"t":60.927734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[322.121,224.023]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.746},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.912},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.928},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[271.121,-187.977]},"r":{"a":0,"ix":6,"k":346},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.029,1.172],[10.666,-2.428],[5.654,8.583],[3.888,-19.677],[-3.068,-4.025]],"o":[[7.317,-2.832],[-14.214,3.235],[-2.239,-3.399],[-2.774,14.04],[7.711,10.117]],"v":[[387.004,343.266],[368.334,333.928],[335.518,309.566],[323.441,313.289],[347.839,341.19]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[8.824,9.246],[5.654,8.583],[-7.246,-18.703],[-3.068,-4.025]],"o":[[7.317,-2.832],[-10.064,-10.546],[-2.239,-3.399],[6.33,16.34],[7.711,10.117]],"v":[[355.754,342.266],[352.084,327.928],[329.768,295.566],[310.599,298.407],[334.885,333.794]]}],"t":45.551},{"e":[{"c":true,"i":[[-2.948,-1.363],[14.416,6.822],[15.482,-1.566],[-9.209,-5.155],[-5.059,0.157]],"o":[[6.996,3.234],[-13.176,-6.235],[-4.049,0.41],[9.309,5.211],[14.161,-0.44]],"v":[[397.754,346.766],[399.334,338.678],[367.268,330.816],[359.441,341.539],[376.839,344.44]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[10.666,-2.428],[5.654,8.583],[3.888,-19.677],[-3.068,-4.025]],"o":[[7.317,-2.832],[-14.214,3.235],[-2.239,-3.399],[-2.774,14.04],[7.711,10.117]],"v":[[387.004,343.266],[368.334,333.928],[335.518,309.566],[323.441,313.289],[347.839,341.19]]}],"t":49.777},{"e":[{"c":true,"i":[[-2.948,-1.363],[4.166,7.572],[6.982,2.184],[2.809,-5.289],[-5.021,-0.635]],"o":[[6.996,3.234],[-1.554,-2.824],[-3.884,-1.215],[-0.816,1.536],[6.411,0.81]],"v":[[403.754,348.766],[410.584,342.178],[400.518,336.316],[390.691,339.289],[397.589,344.19]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.948,-1.363],[14.416,6.822],[15.482,-1.566],[-9.209,-5.155],[-5.059,0.157]],"o":[[6.996,3.234],[-13.176,-6.235],[-4.049,0.41],[9.309,5.211],[14.161,-0.44]],"v":[[397.754,346.766],[399.334,338.678],[367.268,330.816],[359.441,341.539],[376.839,344.44]]}],"t":54.449},{"e":[{"c":true,"i":[[-1.552,-1.544],[0.618,3.756],[0.662,1.304],[3.073,-2.723],[-2.487,-2.336]],"o":[[1.682,1.674],[-0.353,-2.144],[-1.242,-2.446],[-0.877,0.777],[1.12,1.052]],"v":[[408.79,349.826],[412.382,347.238],[411.664,344.803],[405.545,343.437],[406.487,347.752]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.948,-1.363],[4.166,7.572],[6.982,2.184],[2.809,-5.289],[-5.021,-0.635]],"o":[[6.996,3.234],[-1.554,-2.824],[-3.884,-1.215],[-0.816,1.536],[6.411,0.81]],"v":[[403.754,348.766],[410.584,342.178],[400.518,336.316],[390.691,339.289],[397.589,344.19]]}],"t":59.121},{"t":64.9609375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[328.254,317.867]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.551},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":64.961},{"t":66.12890625}]},"p":{"a":0,"ix":2,"k":[276.254,-124.133]},"r":{"a":0,"ix":6,"k":24},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 9","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.655,-2.672],[-1.957,-1.793],[-0.597,0.652],[1.155,1.358]],"o":[[-3.672,5.929],[1.957,1.793],[0.597,-0.652],[-1.155,-1.358]],"v":[[309.793,-274.248],[313.365,-263.794],[315.987,-264.692],[313.621,-268.658]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.97,1.386],[0.112,-7.555],[-1.974,0.319],[0.145,4.029]],"o":[[-11.153,-2.218],[-0.089,5.999],[1.974,-0.319],[-0.145,-4.029]],"v":[[304.825,-314.366],[294.698,-290.204],[300.718,-283.511],[307.158,-292.711]]}],"t":41.129},{"t":45.966796875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[299.937,-302.805]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.322},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.129},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"t":46.7734375}]},"p":{"a":0,"ix":2,"k":[274.688,71.682]},"r":{"a":0,"ix":6,"k":402},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.085,-2.593],[-7.2,0.179],[-7.392,-1.934],[1.588,4.551],[9.608,1.982]],"o":[[-2.621,6.265],[12.072,-0.3],[6.079,1.591],[-2.552,-7.31],[-10.783,-2.224]],"v":[[305.392,-348.662],[316.542,-342.354],[337.821,-336.969],[345.879,-341.41],[326.727,-352.967]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.992,-1.263],[-6.903,-4.647],[-8.561,-5.687],[18.988,6.146],[8.432,7.621]],"o":[[-7.228,3.052],[11.966,8.056],[9.406,6.248],[-19.319,-6.253],[-9.437,-8.53]],"v":[[326.479,-355.408],[332.703,-337.094],[381.356,-316.88],[385.461,-332.541],[345.28,-348.584]]}],"t":43.549},{"e":[{"c":true,"i":[[-0.536,-1.572],[-3.113,0.999],[-3.212,1.593],[1.299,0.115],[1.688,-1.035]],"o":[[0.699,2.048],[1.594,-0.511],[2.799,-1.388],[-3.076,-0.273],[-2.696,1.652]],"v":[[296.62,-347.231],[301.407,-345.869],[305.998,-349.185],[306.733,-352.77],[299.423,-351.803]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.085,-2.593],[-7.2,0.179],[-7.392,-1.934],[1.588,4.551],[9.608,1.982]],"o":[[-2.621,6.265],[12.072,-0.3],[6.079,1.591],[-2.552,-7.31],[-10.783,-2.224]],"v":[[305.392,-348.662],[316.542,-342.354],[337.821,-336.969],[345.879,-341.41],[326.727,-352.967]]}],"t":48.387},{"t":53.2265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[357.286,-335.878]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.742},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.227},{"t":54.033203125}]},"p":{"a":0,"ix":2,"k":[298.375,20.281]},"r":{"a":0,"ix":6,"k":-112},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-15.718,-11.808],[-110.853,29.695],[-69.097,16.681],[-31.437,-38.337],[-13.834,-32.537],[17.145,-31.611],[52.916,-11.439]],"o":[[10.618,7.977],[54.353,-14.56],[83.852,-20.243],[48.953,59.697],[30.413,71.53],[-21.288,39.249],[-13.519,2.922]],"v":[[-151.067,-71.884],[-73.667,-179.774],[72.148,-283.257],[251.047,-259.697],[271.587,-153.53],[292.804,53.08],[137.92,149.235]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[3.81,32.334],[-37.912,24.295],[-60.961,4.723],[-28.674,-27.507],[-4.719,-44.918],[17.132,-35.418],[38.689,-10.071]],"o":[[-5.87,-49.813],[30.369,-19.461],[71.33,-5.527],[42.049,40.338],[5.026,47.841],[-14.872,30.746],[-13.327,3.469]],"v":[[-152.648,-71.897],[-68.844,-183.778],[89.56,-289.113],[249.899,-265.495],[274.719,-157.082],[291.508,54.754],[141.199,150.134]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[5.886,32.021],[-48.758,34.583],[-77.872,27.27],[-49.259,-48.008],[-4.511,-39.569],[28.818,-50.831],[56.767,-19.398]],"o":[[-12.5,-68],[41.263,-29.267],[73.631,-25.785],[25.574,24.924],[4.722,41.424],[-22.003,38.811],[-17.993,6.149]],"v":[[-157.5,-70],[-69.87,-176.215],[70.372,-273.27],[248.534,-273.339],[275.511,-149.431],[293.182,51.831],[136.634,147.529]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":26.863},{"t":53.7265625}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":11.68},{"t":38.54296875}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":14,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-63,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,1,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[115],"t":16.129},{"t":51.61328125}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[122,122,100],"t":16.129},{"t":37.90234375}]}},"nm":"Shape Layer 5","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-10.261,-11.263],[-30.338,9.388],[13.659,-1.454],[7.976,-3.33]],"o":[[11.756,12.904],[19.557,-6.052],[-13.669,1.455],[-7.976,3.33]],"v":[[208.744,-31.404],[266.443,-47.143],[266.495,-72.184],[230.562,-58.335]]}],"t":53.227},{"e":[{"c":true,"i":[[-2.784,-3.375],[-3.362,-1.186],[4.594,3.521],[3.593,0.597]],"o":[[5.252,6.366],[8.135,2.87],[-4.597,-3.524],[-3.593,-0.597]],"v":[[331.516,-54.519],[338.459,-48.273],[344.534,-55.195],[340.927,-57.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"t":56.619},{"t":60.12109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.947},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.113},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.121},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[-154,-177]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[9.462,2.367],[-17.377,-7.771],[-12.209,-16.935]],"o":[[5.007,-5.512],[-12.952,-15.923],[-14.762,-3.692],[14.203,6.352],[7.574,10.506]],"v":[[387.993,-7.418],[381.373,-32.728],[336.86,-64.37],[322.797,-44.352],[366.426,-12.506]]}],"t":52.42},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":55.924},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[394.302,8.896],[395.719,6.526],[393.778,1.863],[389.586,3.258],[391.524,8.248]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":58.26},{"t":62.931640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":62.932},{"t":64.099609375}]},"p":{"a":0,"ix":2,"k":[-161,-181]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-9.865,-24.335]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[4.779,11.789]],"v":[[423.143,176.84],[427.81,161.233],[413.218,124.084],[393.932,116.063],[403.124,162.008]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.793,0.635],[-2.591,7.908],[-0.543,12.547],[-0.539,-20.051],[2.644,-8.677]],"o":[[9.471,-0.436],[7.553,-23.05],[0.613,-14.179],[0.416,15.456],[-4.252,13.954]],"v":[[396.137,108.769],[412.71,88.163],[421.793,32.708],[400.087,44.503],[391.337,87.772]]}],"t":51.613},{"e":[{"c":true,"i":[[-1.936,1.463],[3.818,4.909],[3.004,6.682],[4.199,-14.388],[-3.119,-3.467]],"o":[[4.677,-3.535],[-7.896,-10.153],[-3.357,-7.466],[-3.237,11.091],[6.358,7.067]],"v":[[444.226,208.388],[442.495,197.074],[427.147,181.047],[416.131,173.306],[429.906,206.921]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-9.865,-24.335]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[4.779,11.789]],"v":[[423.143,176.84],[427.81,161.233],[413.218,124.084],[393.932,116.063],[403.124,162.008]]}],"t":56.451},{"e":[{"c":true,"i":[[-0.627,3.991],[2.948,1.173],[2.948,2.281],[0.289,-5.765],[-3.685,-2.287]],"o":[[0.847,-5.388],[-2.405,-0.957],[-1.491,-1.154],[-0.256,5.111],[3.202,1.988]],"v":[[470.684,231.038],[466.901,225.56],[462.591,221.28],[456.214,226.198],[462.163,232.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.936,1.463],[3.818,4.909],[3.004,6.682],[4.199,-14.388],[-3.119,-3.467]],"o":[[4.677,-3.535],[-7.896,-10.153],[-3.357,-7.466],[-3.237,11.091],[6.358,7.067]],"v":[[444.226,208.388],[442.495,197.074],[427.147,181.047],[416.131,173.306],[429.906,206.921]]}],"t":62.902},{"t":68.9921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[404.213,73.056]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":50.305},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":51.475},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":68.992},{"t":70.162109375}]},"p":{"a":0,"ix":2,"k":[271.213,-71.58]},"r":{"a":0,"ix":6,"k":-47},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.525,3.745],[0.197,-12.283],[-2.566,2.068],[0.177,6.641]],"o":[[-7.924,-8.418],[-0.159,9.887],[6.605,-5.324],[-0.187,-7.009]],"v":[[328.406,207.34],[312.226,228.796],[325.289,242.279],[331.346,224.065]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9.055,6.442],[9.961,-17.416],[-8.692,7.913],[-11.235,9.332]],"o":[[-11.197,-7.967],[-7.42,12.974],[7.127,-6.488],[5.9,-4.901]],"v":[[352.51,160.995],[310.164,199.677],[323.183,214.358],[347.728,187.186]]}],"t":50.807},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[317.816,242.457],[313.756,247.84],[317.689,249.49],[319.792,246.74]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.525,3.745],[0.197,-12.283],[-2.566,2.068],[0.177,6.641]],"o":[[-7.924,-8.418],[-0.159,9.887],[6.605,-5.324],[-0.187,-7.009]],"v":[[328.406,207.34],[312.226,228.796],[325.289,242.279],[331.346,224.065]]}],"t":54.838},{"t":60.123046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[334.533,186.047]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":50},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.779},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.123},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[301.311,-1.891]},"r":{"a":0,"ix":6,"k":-49},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.337,-2.255],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[4.856,4.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[313.144,277.314],[323.852,271.667],[319.523,242.63],[311.113,230.488],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[10.791,-8.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-8.846,7.127],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[321.98,196.381],[296.209,196.694],[304.871,243.392]]}],"t":48.387},{"e":[{"c":true,"i":[[-2.784,1.882],[3.278,5.65],[4.875,4.344],[5.106,-7.053],[-5.122,-3.792]],"o":[[3.297,-2.23],[-1.921,-3.312],[-3.039,-2.707],[-6.082,8.4],[5.863,4.34]],"v":[[330.193,290.216],[331.159,278.271],[321.125,272.156],[311.793,264.686],[317.622,286.792]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.337,-2.255],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[4.856,4.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[313.144,277.314],[323.852,271.667],[319.523,242.63],[311.113,230.488],[307.709,269.07]]}],"t":53.059},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[337.768,292.215],[341.598,292.115],[341.967,287.509],[337.83,285.396],[334.993,289.595]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.784,1.882],[3.278,5.65],[4.875,4.344],[5.106,-7.053],[-5.122,-3.792]],"o":[[3.297,-2.23],[-1.921,-3.312],[-3.039,-2.707],[-6.082,8.4],[5.863,4.34]],"v":[[330.193,290.216],[331.159,278.271],[321.125,272.156],[311.793,264.686],[317.622,286.792]]}],"t":57.73},{"t":62.40234375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[310.299,226.027]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.58},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":62.402},{"t":63.5703125}]},"p":{"a":0,"ix":2,"k":[197.299,147.027]},"r":{"a":0,"ix":6,"k":84},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.312,-0.514],[4.12,-3.429]],"o":[[6.432,7.583],[4.857,-5.913],[-2.539,0.246],[-3.951,3.289]],"v":[[170.108,388.834],[193.266,376.795],[186.938,365.264],[171.13,371.429]]}],"t":46.773},{"e":[{"c":true,"i":[[-1.749,-2.192],[-3.165,2.925],[2.295,0.333],[2.23,-0.677]],"o":[[0.462,0.578],[1.126,-1.041],[-1.144,-0.166],[-0.852,0.259]],"v":[[116.499,391.697],[122.124,391.566],[120.615,389.285],[117.416,388.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"t":52.67},{"t":58.5078125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[179.853,376.812]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.662},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.83},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.508},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[104.853,154.812]},"r":{"a":0,"ix":6,"k":31},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-0.664,-3.179],[-0.686,10.48],[0.693,14.372],[2.402,-11.211],[1.871,-8.886]],"o":[[1.604,7.681],[0.998,-15.252],[-0.196,-4.065],[-1.349,6.295],[-2.621,12.448]],"v":[[191.927,378.89],[206.672,377.602],[205.567,334.993],[194.441,338.289],[191.468,353.466]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-0.992,8.262],[-2.952,13.171],[2.926,-11.086],[0.442,-9.063]],"o":[[1.742,7.65],[1.816,-15.128],[0.89,-3.971],[-2.597,9.838],[-0.619,12.706]],"v":[[197.421,355.676],[208.618,352.159],[213.768,307.566],[199.584,309.087],[194.949,333.275]]}],"t":45.967},{"e":[{"c":true,"i":[[-1.959,-1.143],[1.762,4.669],[-0.707,8.692],[1.735,-5.805],[-2.148,-2.498]],"o":[[5.594,3.264],[-2.913,-7.718],[0.353,-4.338],[-2.357,7.887],[1.737,1.85]],"v":[[203.799,406.417],[212.197,400.386],[202.76,377.508],[196.606,377.88],[199.916,402.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.664,-3.179],[-0.686,10.48],[0.693,14.372],[2.402,-11.211],[1.871,-8.886]],"o":[[1.604,7.681],[0.998,-15.252],[-0.196,-4.065],[-1.349,6.295],[-2.621,12.448]],"v":[[191.927,378.89],[206.672,377.602],[205.567,334.993],[194.441,338.289],[191.468,353.466]]}],"t":51.613},{"e":[{"c":true,"i":[[-0.872,-0.385],[1.171,2.143],[2.49,-0.113],[-0.428,-2.176],[-1.187,-0.594]],"o":[[2.107,0.931],[-1.081,-1.978],[-1.692,0.077],[0.225,1.145],[0.864,0.432]],"v":[[210.857,414.203],[213.072,410.465],[208.767,406.285],[206.684,409.748],[208.832,413.117]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.959,-1.143],[1.762,4.669],[-0.707,8.692],[1.735,-5.805],[-2.148,-2.498]],"o":[[5.594,3.264],[-2.913,-7.718],[0.353,-4.338],[-2.357,7.887],[1.737,1.85]],"v":[[203.799,406.417],[212.197,400.386],[202.76,377.508],[196.606,377.88],[199.916,402.113]]}],"t":57.258},{"t":61.291015625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[201.186,347.654]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.162},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.291},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[41.186,165.654]},"r":{"a":0,"ix":6,"k":68},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-17.442,9.07],[-45.407,24.545],[-67.999,-45],[-46.425,-39.176],[24.284,-37.946],[19.131,-3.317],[16.851,-7.636],[22.338,24.372]],"o":[[50,-26],[55.5,-30],[47.064,31.145],[28.534,24.079],[-38.125,59.574],[-48.655,8.437],[-16.851,7.636],[-22.338,-24.372]],"v":[[-70,-168],[37.5,-189],[193,-226],[274.625,-74.287],[287,104],[96.104,154.527],[-65.51,204.464],[-199.186,161.156]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.321,31.724],[-20.78,18.471],[-46.284,-46.673],[-33.945,-31.892],[29.336,-29.625],[49.431,6.815],[14.746,-2.969],[16.646,22.348]],"o":[[-4.5,-19.5],[54,-48],[59.5,60],[50.752,47.682],[-34.344,34.683],[-49.431,-6.815],[-39.238,7.9],[-16.646,-22.348]],"v":[[-83.5,-166.5],[32,-198],[195.5,-213.5],[250.82,-92.388],[292,97.5],[94.587,154.973],[-65.432,208.271],[-203.524,155.572]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-32.033,5.824],[-10.696,26.586],[-58.097,-32.713],[-39.01,-52.929],[60.246,-75.012],[39.072,-1.851],[15.451,-2.501],[20.9,22.982]],"o":[[16.5,-3],[9.127,-22.687],[45.286,25.5],[30.172,40.938],[-51,63.5],[-30.07,1.424],[-35.801,5.794],[-20.9,-22.982]],"v":[[-82.5,-164],[35.5,-197],[197,-217],[268.53,-66.797],[283,108.5],[94.087,154.955],[-66.421,204.876],[-207.839,151.402]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":31.535},{"t":54.89453125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":40.87890625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":15,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[450,400,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[450,400,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"White Solid 2","op":794,"sc":"#ffffff","sh":800,"sr":1,"st":0,"sw":900,"ty":1}],"markers":[],"nm":"YTK Logo Bump Drawn v5","op":181,"v":"5.3.4","w":900}
\ No newline at end of file
+{"assets":[],"ddd":0,"fr":60,"h":800,"ip":0,"layers":[{"ao":0,"bm":0,"ddd":0,"ind":1,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":0},"p":{"a":0,"ix":2,"k":[450,400,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":1,"ix":6,"k":[{"e":[90.314,90.314,100],"i":{"x":[0.644,0.644,0.833],"y":[1.071,1.071,1]},"n":["0p644_1p071_0p168_0p602","0p644_1p071_0p168_0p602","0p833_1_0p167_0"],"o":{"x":[0.168,0.168,0.167],"y":[0.602,0.602,0]},"s":[100,100,100],"t":60},{"e":[104.536,104.536,100],"i":{"x":[0.565,0.565,0.75],"y":[0.913,0.913,1]},"n":["0p565_0p913_0p443_0p07","0p565_0p913_0p443_0p07","0p75_1_0p313_0"],"o":{"x":[0.443,0.443,0.313],"y":[0.07,0.07,0]},"s":[90.314,90.314,100],"t":74},{"e":[97.517,97.517,100],"i":{"x":[0.583,0.583,0.75],"y":[0.95,0.95,1]},"n":["0p583_0p95_0p36_-0p167","0p583_0p95_0p36_-0p167","0p75_1_0p167_0"],"o":{"x":[0.36,0.36,0.167],"y":[-0.167,-0.167,0]},"s":[104.536,104.536,100],"t":90.334},{"e":[100,100,100],"i":{"x":[0.41,0.41,0.833],"y":[1,1,1]},"n":["0p41_1_0p345_-0p133","0p41_1_0p345_-0p133","0p833_1_0p167_0"],"o":{"x":[0.345,0.345,0.167],"y":[-0.133,-0.133,0]},"s":[97.517,97.517,100],"t":109},{"t":130}]}},"nm":"Null 5","op":794,"sr":1,"st":0,"ty":3},{"ao":0,"bm":0,"ddd":0,"ind":2,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[-55.427,-3.31,0]},"o":{"a":0,"ix":11,"k":100},"p":{"s":true,"x":{"a":0,"ix":3,"k":12.573},"y":{"a":0,"ix":4,"k":-4.31}},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"logo 2","op":77,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[7.73,2.568],[2.362,12.462],[0.891,6.298],[0.935,5.344],[-2.77,4.114],[-10.821,-0.352],[-13.732,-7.376],[-4.859,-2.502],[-0.133,-2.44]],"o":[[-8.878,7.33],[-6.114,3.949],[-3.087,-1.025],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[3.936,-5.845],[8.204,0.267],[16.024,8.607],[8.662,4.46],[0.675,12.422]],"v":[[-20.042,19.432],[-66.66,49.812],[-83.142,54.307],[-100.622,31.626],[-110.605,-13.055],[-110.541,-25.505],[-110.309,-40.383],[-92.674,-52.038],[-53.267,-40.8],[-13.254,-20.92],[2.317,-2.15]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.502,-8.233],[18.153,-11.851],[4.093,0.399],[2.362,12.462],[2.659,14.953],[3.273,9.178],[-6.936,4.182],[-7.532,-2.115],[-14.661,-5.294],[-10.786,-3.588],[-4.452,-5.876]],"o":[[-8.271,8.009],[-6.094,3.979],[-3.238,-0.316],[-1.526,-8.052],[-2.659,-14.953],[-1.996,-5.597],[5.667,-3.416],[10.998,3.088],[13.081,4.724],[12.999,4.324],[5.555,7.331]],"v":[[-22.677,24.708],[-61.809,47.252],[-76.375,54.876],[-99.506,41.478],[-106.845,6.036],[-110.435,-19.767],[-108.993,-45.253],[-88.812,-54.248],[-56.223,-43.346],[-23.019,-29.185],[5.606,-5.041]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.269,-2.699],[11.728,-7.575],[3.91,-1.71],[2.362,12.462],[0.891,6.298],[0.935,5.344],[0.196,0.685],[-7.532,-2.115],[-14.661,-5.294],[-0.548,-0.22],[1.882,-1.558]],"o":[[-8.878,7.33],[-6.114,3.949],[-2.98,1.304],[-1.526,-8.052],[-0.252,-1.785],[-0.214,-1.222],[-0.977,-3.421],[10.998,3.088],[13.081,4.724],[2.444,0.976],[-7.086,5.864]],"v":[[-19.954,7.456],[-70.218,43.014],[-87.507,54.154],[-92.801,32.407],[-99.643,-16.461],[-102.494,-38.045],[-103.471,-43.258],[-91.58,-41.954],[-51.038,-27.617],[-8.249,-12.35],[0.435,-7.006]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.125,-8.386],[20.489,-7.4],[6.842,2.815],[5.392,12.432],[3.345,15.71],[0.858,9.371],[-6.936,4.182],[-7.532,-2.115],[-14.661,-5.294],[-9.337,-6.482],[-1.511,-8.904]],"o":[[-9.469,6.549],[-6.845,2.472],[-3.008,-1.238],[-4.226,-9.745],[-2.745,-12.892],[-0.648,-7.082],[5.667,-3.416],[10.998,3.088],[13.081,4.724],[10.991,7.63],[2.229,13.136]],"v":[[-21.182,25.528],[-65.108,52.487],[-85.645,57.105],[-99.311,36.5],[-110.414,3.372],[-114.205,-25.134],[-105.755,-49.722],[-84.247,-54.354],[-52.911,-45.114],[-19.078,-27.014],[0.932,-6.923]]}],"t":40.322},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"e":{"a":0,"ix":2,"k":0},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":1,"ix":3,"k":[{"e":[-358],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[5],"t":40.322},{"t":62.09765625}]},"s":{"a":1,"ix":1,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.322},{"t":62.09765625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":2,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":13}},{"a":{"a":0,"ix":1,"k":[-52.527,0.805]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.516},{"t":40.322265625}]},"p":{"a":1,"ix":2,"k":[{"e":[-53.264,1.523],"i":{"x":0.25,"y":1},"n":"0p25_1_0p333_0","o":{"x":0.333,"y":0},"s":[-73.527,0.621],"t":40.322,"ti":[-3.37727856636047,-0.150390625],"to":[3.37727856636047,0.150390625]},{"t":62.09765625}]},"r":{"a":1,"ix":6,"k":[{"e":[0],"i":{"x":[0.25],"y":[1]},"n":["0p25_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[125],"t":40.322},{"t":62}]},"s":{"a":1,"ix":3,"k":[{"e":[95,95],"i":{"x":[0.25,0.25],"y":[1,1]},"n":["0p25_1_0p333_0","0p25_1_0p333_0"],"o":{"x":[0.333,0.333],"y":[0,0]},"s":[551,551],"t":40.322},{"t":62.09765625}]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"logo play outline 5","np":5,"ty":"gr"},{"a":{"a":0,"ix":1,"k":[-63.528,3.54]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[-63.528,3.54]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"logo 1","np":1,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":3,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[4,-65,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[4,-1,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[150],"t":16.936},{"t":74.193359375}]},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"Shape Layer 9","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-6.888,-1.034],[-5.036,6.058],[5.18,-3.551],[3.786,-1.13]],"o":[[7.985,1.199],[5.983,-7.197],[-5.183,3.553],[-8.695,2.595]],"v":[[85.762,-6.982],[111.589,-17.862],[104.009,-29.738],[93.608,-17.684]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.491,-7.081],[-30.966,7.045],[13.73,-0.407],[8.207,-2.711]],"o":[[15.358,8.06],[19.962,-4.541],[-13.74,0.407],[-8.207,2.711]],"v":[[18.642,30.94],[70.374,17.651],[75.878,-7.444],[39.26,4.727]]}],"t":52.42},{"e":[{"c":true,"i":[[0.148,-2.047],[-1.234,1.389],[2.312,-1.938],[-0.04,-1.898]],"o":[[-0.183,2.525],[2.986,-3.362],[-1.268,1.063],[0.038,1.779]],"v":[[108.335,-24.141],[112.716,-26.264],[110.65,-31.377],[109.478,-27.98]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.888,-1.034],[-5.036,6.058],[5.18,-3.551],[3.786,-1.13]],"o":[[7.985,1.199],[5.983,-7.197],[-5.183,3.553],[-8.695,2.595]],"v":[[85.762,-6.982],[111.589,-17.862],[104.009,-29.738],[93.608,-17.684]]}],"t":55.645},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[242.859,-52.375]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[88.859,-229.375]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[7.177,6.544],[-8.738,-13.309],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-9.405,-8.575],[6.707,10.215],[4.565,9.006]],"v":[[401.129,15.626],[400.019,-2.962],[382.828,-20.875],[372.805,-16.537],[386.244,6.961]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[12.068,6.226],[-14.285,-12.581],[-12.849,-16.454]],"o":[[5.007,-5.512],[-12.952,-15.923],[-13.523,-6.976],[10.964,9.656],[8.692,11.131]],"v":[[387.993,-7.418],[383.362,-26.673],[341.474,-60.529],[327.67,-49.276],[366.851,-16.461]]}],"t":48.248},{"e":[{"c":true,"i":[[-0.993,1.489],[1.909,4.171],[2.276,1.629],[-5.541,-5.222],[-5.129,-9.53]],"o":[[2.399,-3.598],[-3.39,-7.407],[-3.667,-2.625],[2.433,2.293],[3.323,6.174]],"v":[[410.755,26.976],[412.085,18.426],[399.222,5.427],[394.157,11.071],[401.517,23.807]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[7.177,6.544],[-8.738,-13.309],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-9.405,-8.575],[6.707,10.215],[4.565,9.006]],"v":[[401.129,15.626],[400.019,-2.962],[382.828,-20.875],[372.805,-16.537],[386.244,6.961]]}],"t":51.252},{"e":[{"c":true,"i":[[-0.763,0.687],[0.18,1.155],[1.359,0.876],[-1.28,-2.687],[-4.111,-4.715]],"o":[[1.39,-1.252],[-0.339,-2.167],[-2.19,-1.41],[0.788,1.738],[0.894,1.025]],"v":[[428.895,47.993],[429.758,45.148],[426.433,40.728],[422.604,43.105],[425.772,47.866]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.993,1.489],[1.909,4.171],[2.276,1.629],[-5.541,-5.222],[-5.129,-9.53]],"o":[[2.399,-3.598],[-3.39,-7.407],[-3.667,-2.625],[2.433,2.293],[3.323,6.174]],"v":[[410.755,26.976],[412.085,18.426],[399.222,5.427],[394.157,11.071],[401.517,23.807]]}],"t":54.479},{"t":58.509765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[365.484,-29.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.51},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[200.484,-121.633]},"r":{"a":0,"ix":6,"k":29},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[408.596,154.877],[412.745,139.088],[405.995,115.788],[392.444,111.262],[392.729,141.753]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.751,1.764],[-2.424,7.903],[-1.784,10.117],[3.062,-19.823],[1.437,-9.478]],"o":[[9.229,-1.86],[7.139,-22.852],[2.052,-11.633],[-2.826,18.292],[-1.437,9.478]],"v":[[399.835,114.727],[409.4,88.963],[419.255,58.246],[399.474,62.446],[388.936,99.323]]}],"t":47.58},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[408.596,154.877],[412.745,139.088],[405.995,115.788],[392.444,111.262],[392.729,141.753]]}],"t":52.42},{"e":[{"c":true,"i":[[-0.01,4.04],[3.092,0.708],[3.262,1.803],[-0.596,-5.742],[-3.992,-1.697]],"o":[[0.013,-5.454],[-2.523,-0.578],[-1.65,-0.912],[0.528,5.09],[3.469,1.475]],"v":[[471.142,229.879],[466.566,225.043],[461.652,221.472],[456.102,227.307],[462.974,232.818]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"t":59.26},{"t":64.654296875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[402.877,73.469]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.1},{"t":66.267578125}]},"p":{"a":0,"ix":2,"k":[207.867,-67.961]},"r":{"a":0,"ix":6,"k":-20},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[11.29,3.117],[0.197,-12.283],[-3.081,-1.171],[-3.113,5.869]],"o":[[-11.144,-3.077],[-0.159,9.887],[3.081,1.171],[3.113,-5.869]],"v":[[329.72,193.61],[313.54,215.066],[329.213,221.643],[337.598,210.68]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[7.995,10.819],[10.117,-17.436],[-3.55,-1.349],[-3.586,6.762]],"o":[[-12.838,-17.494],[-5.717,9.853],[3.549,1.349],[3.586,-6.762]],"v":[[352.151,161.509],[314.797,197.956],[325.389,210.461],[345.809,187.782]]}],"t":46.773},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[317.816,242.457],[313.756,247.84],[317.689,249.49],[319.792,246.74]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[11.29,3.117],[0.197,-12.283],[-3.081,-1.171],[-3.113,5.869]],"o":[[-11.144,-3.077],[-0.159,9.887],[3.081,1.171],[3.113,-5.869]],"v":[[329.72,193.61],[313.54,215.066],[329.213,221.643],[337.598,210.68]]}],"t":50.807},{"t":56.0625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[330.678,195.95]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.551},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":56.062},{"t":57.23046875}]},"p":{"a":0,"ix":2,"k":[141.52,80.707]},"r":{"a":0,"ix":6,"k":60},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.299,1.799],[-0.469,6.534],[1.52,8.173],[3.406,-8.013],[-0.07,-4.265]],"o":[[6.299,-1.799],[0.402,-9.84],[-1.909,-6.473],[-3.406,8.013],[-0.304,13.4]],"v":[[314.217,264.219],[321.753,251.593],[313.307,209.217],[300.113,205.547],[305.614,250.119]]}],"t":45.967},{"e":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[1.571,-5.041],[-6.029,-1.983]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-3.101,9.947],[6.918,2.275]],"v":[[356.925,279.698],[355.495,268.51],[342.563,265.246],[330.417,264.86],[343.974,280.417]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"t":50.807},{"e":[{"c":true,"i":[[-2.09,1.074],[0.323,2.58],[2.378,0.334],[0.937,-1.676],[-3.779,-0.758]],"o":[[2.69,-1.352],[0.061,-2.472],[-2.862,-0.104],[-1.245,2.227],[2.121,0.425]],"v":[[360.895,277.772],[363.141,274.149],[359.535,270.209],[353.456,272.24],[355.594,278.428]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[1.571,-5.041],[-6.029,-1.983]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-3.101,9.947],[6.918,2.275]],"v":[[356.925,279.698],[355.495,268.51],[342.563,265.246],[330.417,264.86],[343.974,280.417]]}],"t":54.838},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.207,234.285]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.801},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[-24.793,-187.715]},"r":{"a":0,"ix":6,"k":-92},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[1.302,2.193],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-1.302,-2.193],[-4.712,2.057]],"v":[[170.108,388.834],[193.266,376.795],[186.938,365.264],[171.13,371.429]]}],"t":40.879},{"e":[{"c":true,"i":[[-1.749,-2.192],[-3.165,2.925],[2.295,0.333],[2.23,-0.677]],"o":[[0.462,0.578],[1.126,-1.041],[-1.144,-0.166],[-0.852,0.259]],"v":[[116.499,391.697],[122.124,391.566],[120.615,389.285],[117.416,388.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"t":46.719},{"t":52.55859375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[180.867,376.203]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-196.133,54.203]},"r":{"a":0,"ix":6,"k":90},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.291,-2.98],[-7.25,4.085],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[-3.119,7.2],[12.7,-7.156],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[177.733,375.065],[190.522,382.514],[211.268,337.566],[194.441,338.289],[188.129,352.386]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-3.431,7.581],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[1.742,7.65],[6.011,-13.28],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[197.421,355.676],[212.139,354.121],[213.768,307.566],[196.941,308.289],[197.129,333.886]]}],"t":40.1},{"e":[{"c":true,"i":[[1.788,-1.432],[-5.868,0.123],[-2.518,5.434],[5.114,1.499],[2.58,-1.872]],"o":[[-4.319,3.46],[5.414,-0.113],[1.711,-3.692],[-2.691,-0.789],[-1.879,1.364]],"v":[[156.319,384.501],[161.836,393.363],[189.018,380.316],[183.941,372.039],[160.879,381.386]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.291,-2.98],[-7.25,4.085],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[-3.119,7.2],[12.7,-7.156],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[177.733,375.065],[190.522,382.514],[211.268,337.566],[194.441,338.289],[188.129,352.386]]}],"t":45.941},{"e":[{"c":true,"i":[[0.744,-0.596],[-2.442,0.051],[-1.048,2.261],[2.128,0.624],[1.074,-0.779]],"o":[[-1.797,1.44],[2.253,-0.047],[0.712,-1.537],[-1.12,-0.328],[-0.782,0.568]],"v":[[152.797,387.943],[155.093,391.631],[160.788,389.739],[158.675,386.294],[154.695,386.646]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.788,-1.432],[-5.868,0.123],[-2.518,5.434],[5.114,1.499],[2.58,-1.872]],"o":[[-4.319,3.46],[5.414,-0.113],[1.711,-3.692],[-2.691,-0.789],[-1.879,1.364]],"v":[[156.319,384.501],[161.836,393.363],[189.018,380.316],[183.941,372.039],[160.879,381.386]]}],"t":51.779},{"t":55.28515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[206.104,331.532]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":38.934},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.1},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":55.285},{"t":56.451171875}]},"p":{"a":0,"ix":2,"k":[-152.656,92.957]},"r":{"a":0,"ix":6,"k":112},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[206,54],[67.338,89.195],[-84.273,114.458],[-211.2,12.815]]}],"t":31.451},{"e":[{"c":false,"i":[[-15,1.5],[-37.578,-19.583],[-3,-44],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[3.794,40.79],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[37.578,19.583],[3,44],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[-2.589,-29.677],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-184.621],[166,-45],[114.252,37.17],[-70.811,67.607],[-143.612,8.888],[-158.621,-101.461],[-73.592,-173.641],[44.435,-197.29],[172,-174],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-15,1.5],[-38.315,-17.37],[-0.928,-50.216],[37.712,-6.486],[51.829,-5.767],[6.015,29.791],[-3.621,45.539],[-56.949,14.763],[-50.194,12.034],[-38,-44],[-21,-57],[28.841,-34.61],[69.662,-3.195],[43.026,5.819],[12.296,65.237]],"o":[[15,-1.5],[38.315,17.37],[0.928,50.216],[-58.651,8.258],[-56.8,6.29],[-5.8,-28.554],[3.621,-45.539],[63.535,-16.365],[61.351,-14.708],[36.888,42.712],[12.907,35.034],[-25,30],[-49.329,2.263],[-84.727,-11.458],[-6.123,-32.489]],"v":[[-3,-189.5],[123.573,-191.621],[183,-28],[130.252,43.17],[-80.811,95.607],[-193.612,2.888],[-197.621,-94.461],[-86.592,-209.641],[36.435,-224.29],[180,-195],[221,-33],[199,66],[65.338,77.195],[-84.273,114.458],[-211.2,12.815]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[46.834,83.683],[-97.661,104.004],[-210.313,28.794]]}],"t":31.451},{"e":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[5,22],[5.969,43.216],[-27.724,1.98],[-27.292,5.304],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-63.325,10.796],[-23,-9],[-5,-22],[-5.969,-43.217],[0,0],[61.979,-12.046],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[130,-182],[165.417,-61],[147,23],[41.024,50.471],[-110.796,62.374],[-144.029,10.602],[-160.029,-98.481],[-73.898,-173.345],[43.847,-197.384],[176.5,-168.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-11.5,1.5],[-41,-23],[-3,-56],[13.087,-9.063],[51.205,-8.814],[23,9],[19.081,46.266],[-11.971,51.481],[-45.803,14.665],[-27.796,-0.619],[-45.79,-47.157],[-13.75,-44.5],[29.336,-29.626],[54.166,-5.683],[66.818,2.018],[5.047,27.405]],"o":[[11.5,-1.5],[25.845,14.499],[3,56],[-21.772,16.534],[-62.024,13.529],[-23,-9],[-10.971,-26.602],[9.881,-42.493],[48.898,-15.655],[62.153,1.384],[33.5,34.5],[20.558,66.533],[-34.344,34.683],[-49.626,5.207],[-66.339,-2.004],[-5.047,-27.405]],"v":[[0,-190],[138,-184],[185.417,-56],[148,46],[40.024,60.471],[-121.796,90.374],[-189.029,8.602],[-185.029,-120.481],[-82.898,-206.345],[59.847,-232.384],[178.5,-180.5],[209.25,-60.5],[189,59.5],[44.834,71.683],[-97.661,104.004],[-210.313,28.794]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-211.339,12.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[51.334,86.68],[-84.272,116.49],[-211.339,12.146]]}],"t":31.451},{"e":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[8.582,29.856]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[-8.582,-29.856]],"v":[[-2.5,-188.5],[94,-191],[166.432,-76.005],[119.903,36.752],[-15.985,60.262],[-120.01,60.019],[-155.66,-43.5],[-156.631,-116.131],[-90.5,-169.67],[44.376,-199.521],[168,-181],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-212.339,23.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":false,"i":[[-39,4.5],[-36,-3.5],[-7.408,-63.209],[31.359,-3.447],[28.632,-5.363],[24,17],[3,36],[-5.427,20.845],[-16.145,4.473],[-36.409,8.115],[-37,-25],[-7.758,-65.292],[30,-16.5],[66.602,-15.948],[68.619,-4.96],[-18.161,27.854]],"o":[[39,-4.5],[49.358,4.799],[8.554,73.485],[-23.792,3.221],[-36.364,6.981],[-24,-17],[-3,-36],[7.619,-30.98],[22.471,-6.384],[53.482,-12.12],[50.51,34.128],[6,50.5],[-34.787,19.133],[-72.334,17.32],[-76.228,5.51],[16.967,-26.022]],"v":[[-2.5,-188.5],[120,-196],[182.432,-74.005],[142.903,44.752],[-29.985,76.262],[-139.01,86.019],[-195.66,-60.5],[-179.631,-121.131],[-110.5,-178.67],[45.376,-215.521],[170,-193],[212,-29.5],[195,70.5],[49.334,74.68],[-84.272,116.49],[-211.339,12.146]]}],"t":33.064},{"t":50.806640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":31.535},{"t":54.89453125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":40.87890625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":4,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,0,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[6.5,-5.5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0.3],"y":[1]},"n":["0p3_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[23],"t":40.322},{"t":75}]},"s":{"a":0,"ix":6,"k":[325,325,100]}},"nm":"New YT Logo","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[-0.326,-1.86],[-0.255,-1.494],[-1.767,1.07],[-1.963,1.265],[1.747,0.851],[1.85,0.446]],"o":[[0.282,1.61],[0.326,1.907],[4.66,-2.82],[2.093,-1.349],[-3.535,-1.721],[-1.349,-0.326]],"v":[[-11.952,-10.404],[-8.696,15.782],[-6.743,16.572],[16.792,0.852],[16.191,-1.472],[-10.836,-11.474]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":1,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":61.291},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Play outline","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[1.953,-1.488],[0,0],[0.372,3.814],[0.27,2.158],[-1.767,-0.651],[-5.94,-2.599]],"o":[[-0.145,0.11],[-2.233,1.674],[0,0],[-0.186,-1.488],[3.665,1.35],[2.977,1.302]],"v":[[17.908,1.828],[-5.626,17.549],[-10.092,15.596],[-13.347,-11.102],[-10.65,-12.869],[17.722,-2.358]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,1,1,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Play fill","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[11.851,-1.581],[3.54,-1.275],[3.086,-2.989],[-0.716,-7.44],[-1.804,-5.198],[-5.767,-0.279],[-7.298,2.017],[-15.482,0.075],[-5.023,9.116],[0.102,3.841],[0.005,0.359],[0.683,4.399],[2.974,2.189],[4.279,-0.465]],"o":[[-11.854,1.582],[-4.894,1.761],[-5.673,5.493],[0.556,5.771],[2.434,7.014],[5.316,0.257],[10.074,-2.784],[7.07,-0.034],[2.936,-5.297],[-0.011,-0.424],[-0.063,-4.579],[-0.837,-5.395],[-4.847,-3.567],[-5.475,0.595]],"v":[[-3.238,-34.06],[-33.505,-29.05],[-45.533,-21.986],[-50.743,-3.474],[-45.254,31.317],[-32.324,42.572],[-12.991,40.032],[24.699,35.317],[47.862,24.805],[50.462,8.871],[50.435,7.694],[47.118,-19.567],[39.676,-32.962],[24.699,-37.427]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.156862750649,0.156862750649,1]},"hd":false,"lc":1,"lj":1,"ml":10,"ml2":{"a":0,"ix":8,"k":10},"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":4}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":41.129},{"t":41.935546875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Logo outline","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":true,"i":[[0.051,3.677],[1.339,3.555],[3.406,2.55],[4.532,0.087],[6.159,-2.255],[2.827,-2.784],[-0.733,-7.747],[-1.644,-4.818],[-5.513,-0.59],[-39.125,-0.085],[-2.451,4.497]],"o":[[-0.066,-4.824],[-0.864,-2.295],[-4.355,-3.26],[-3.16,-0.06],[-4.595,1.682],[-4.6,4.531],[0.665,7.025],[1.817,5.326],[16.83,1.8],[11.852,0.026],[2.882,-5.289]],"v":[[49.159,8.134],[44.959,-23.102],[38.853,-32.13],[26.415,-36.073],[-33.735,-27.452],[-44.765,-20.814],[-49.523,-4.122],[-43.917,31.02],[-33.246,41.022],[26.681,33.696],[46.878,24.062]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":58.871},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Red fill","np":2,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":6,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[8,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[8,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[120],"t":31.451},{"t":63.708984375}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p167_0p167","0_1_0p167_0p167","0p667_1_0p167_-1p171"],"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-1.171]},"s":[198,198,100],"t":31.451},{"t":60.484375}]}},"nm":"Shape Layer 11","op":83,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-4.179,5.573],[2.943,7.307],[-0.668,-6.244],[0.802,-3.869]],"o":[[4.844,-6.46],[-3.496,-8.681],[0.668,6.249],[-1.841,8.885]],"v":[[69.296,-33.328],[71.973,-61.224],[57.924,-60.187],[63.598,-45.312]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-14.203,-5.516],[-22.893,20.519],[11.802,-7.029],[6.815,-4.688]],"o":[[9.672,3.756],[15.233,-13.653],[-13.384,7.971],[-7.121,4.898]],"v":[[6.66,49.627],[54.714,17.911],[45.779,4.127],[20.757,20.39]]}],"t":52.42},{"e":[{"c":true,"i":[[-1.603,-1.281],[0.446,1.804],[-0.288,-3.003],[-1.587,-1.042]],"o":[[1.977,1.581],[-1.08,-4.365],[0.158,1.647],[1.487,0.976]],"v":[[50.032,-58.071],[50.764,-62.884],[45.38,-64.077],[47.515,-61.187]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.179,5.573],[2.943,7.307],[-0.668,-6.244],[0.802,-3.869]],"o":[[4.844,-6.46],[-3.496,-8.681],[0.668,6.249],[-1.841,8.885]],"v":[[69.296,-33.328],[71.973,-61.224],[57.924,-60.187],[63.598,-45.312]]}],"t":57.258},{"t":61.845703125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[49.414,12.564]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.734},{"t":62.90234375}]},"p":{"a":0,"ix":2,"k":[-129.586,-94.436]},"r":{"a":0,"ix":6,"k":-58},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.247,2.256],[5.565,3.559],[7.177,6.544],[-8.738,-13.309],[-8.848,-4.831]],"o":[[3.411,-6.173],[-8.295,-5.304],[-9.405,-8.575],[6.707,10.215],[8.862,4.839]],"v":[[397.21,-7.242],[385.77,-21.935],[368.596,-35.393],[358.574,-31.055],[380.034,-5.956]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[12.068,6.226],[-14.285,-12.581],[-12.849,-16.454]],"o":[[5.007,-5.512],[-12.952,-15.923],[-13.523,-6.976],[10.964,9.656],[8.692,11.131]],"v":[[387.993,-7.418],[383.362,-26.673],[341.474,-60.529],[327.67,-49.276],[366.851,-16.461]]}],"t":48.248},{"e":[{"c":true,"i":[[1.094,1.417],[4.464,-1.056],[2.587,1.069],[-6.583,-3.825],[-8.918,0.515]],"o":[[-2.643,-3.424],[-5.755,1.361],[-4.168,-1.722],[2.89,1.679],[7,-0.404]],"v":[[449.504,-13.056],[441.828,-17.05],[429.998,-17.645],[426.349,-10.997],[443.548,-5.316]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.247,2.256],[5.565,3.559],[7.177,6.544],[-8.738,-13.309],[-8.848,-4.831]],"o":[[3.411,-6.173],[-8.295,-5.304],[-9.405,-8.575],[6.707,10.215],[8.862,4.839]],"v":[[397.21,-7.242],[385.77,-21.935],[368.596,-35.393],[358.574,-31.055],[380.034,-5.956]]}],"t":51.613},{"e":[{"c":true,"i":[[0.478,0.909],[1.164,0.11],[1.184,-1.101],[-2.92,0.578],[-5.583,2.822]],"o":[[-0.871,-1.656],[-2.183,-0.206],[-1.907,1.774],[1.879,-0.335],[1.214,-0.614]],"v":[[462.507,-22.141],[459.963,-23.678],[454.859,-21.546],[456.219,-17.25],[461.614,-19.146]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.094,1.417],[4.464,-1.056],[2.587,1.069],[-6.583,-3.825],[-8.918,0.515]],"o":[[-2.643,-3.424],[-5.755,1.361],[-4.168,-1.722],[2.89,1.679],[7,-0.404]],"v":[[449.504,-13.056],[441.828,-17.05],[429.998,-17.645],[426.349,-10.997],[443.548,-5.316]]}],"t":54.838},{"t":58.064453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[365.484,-29.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.51},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[-64.516,-139.633]},"r":{"a":0,"ix":6,"k":-62},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[424.126,161.791],[428.275,146.003],[421.525,122.702],[407.975,118.177],[408.259,148.668]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.751,1.764],[-2.424,7.903],[-1.784,10.117],[3.062,-19.823],[1.437,-9.478]],"o":[[9.229,-1.86],[7.139,-22.852],[2.052,-11.633],[-2.826,18.292],[-1.437,9.478]],"v":[[399.835,114.727],[409.4,88.963],[419.255,58.246],[399.474,62.446],[388.936,99.323]]}],"t":47.58},{"e":[{"c":true,"i":[[-1.813,2.694],[6.968,4.55],[6.71,7.148],[-0.949,-20.035],[-5.456,-3.029]],"o":[[4.38,-6.51],[-14.412,-9.411],[-7.498,-7.987],[0.731,15.444],[11.121,6.175]],"v":[[474.569,195.314],[467.455,181.75],[441.057,168.149],[423.747,163.148],[455.811,199.69]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.917,2.196],[3.207,6.958],[-0.844,10.734],[4.459,-19.392],[-2.119,-7.876]],"o":[[7.833,-2.141],[-4.918,-10.119],[-0.503,-16.492],[-3.761,16.118],[3.666,11.898]],"v":[[424.126,161.791],[428.275,146.003],[421.525,122.702],[407.975,118.177],[408.259,148.668]]}],"t":52.42},{"e":[{"c":true,"i":[[-0.063,4],[3.165,0.826],[3.315,1.955],[-0.527,-6.082],[-4.013,-1.749]],"o":[[0.142,-5.46],[-2.767,-0.842],[-1.757,-1.108],[0.473,5.337],[3.625,1.628]],"v":[[499.512,207.038],[494.93,201.97],[489.562,198.061],[483.755,203.571],[491.079,209.938]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.813,2.694],[6.968,4.55],[6.71,7.148],[-0.949,-20.035],[-5.456,-3.029]],"o":[[4.38,-6.51],[-14.412,-9.411],[-7.498,-7.987],[0.731,15.444],[11.121,6.175]],"v":[[474.569,195.314],[467.455,181.75],[441.057,168.149],[423.747,163.148],[455.811,199.69]]}],"t":58.871},{"t":64.515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[402.877,73.469]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.773},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":64.516},{"t":65.322265625}]},"p":{"a":0,"ix":2,"k":[86.867,13.039]},"r":{"a":0,"ix":6,"k":66},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[8.982,-7.476],[-0.935,-10.09],[-4.858,5.024],[-0.897,6.59]],"o":[[-7.958,6.624],[0.913,9.847],[2.294,-2.372],[0.897,-6.59]],"v":[[320.817,237.519],[312.93,263.37],[329.853,264.192],[333.974,250.904]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.186,0.552],[10.117,-17.436],[-3.55,-1.349],[-3.586,6.762]],"o":[[-17.701,-1.194],[-5.717,9.853],[3.549,1.349],[3.586,-6.762]],"v":[[355.736,164.275],[319.039,197.882],[324.31,209.419],[342.597,186.07]]}],"t":50.029},{"e":[{"c":true,"i":[[2.898,-0.485],[-1.255,-2.815],[-0.825,0.059],[-0.087,1.665]],"o":[[-2.861,0.479],[1.01,2.266],[0.825,-0.059],[0.087,-1.665]],"v":[[320.288,285.341],[318.877,291.934],[323.139,291.772],[323.886,288.391]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[8.982,-7.476],[-0.935,-10.09],[-4.858,5.024],[-0.897,6.59]],"o":[[-7.958,6.624],[0.913,9.847],[2.294,-2.372],[0.897,-6.59]],"v":[[320.817,237.519],[312.93,263.37],[329.853,264.192],[333.974,250.904]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[330.678,195.95]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.193},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.973},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[46.52,23.707]},"r":{"a":0,"ix":6,"k":46},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.299,1.799],[-1.918,9.765],[12.822,9.564],[-5.616,-6.653],[3.778,-10.959]],"o":[[6.299,-1.799],[3.006,-15.305],[-9.84,-7.34],[5.616,6.653],[-2.216,6.43]],"v":[[308.007,264.208],[318.391,251.476],[304.753,206.716],[295.528,216.838],[302.858,249.168]]}],"t":45.967},{"e":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[0.702,-5.233],[-8.082,-3.812]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-0.694,5.172],[6.587,3.107]],"v":[[391.939,297.312],[390.509,286.124],[377.293,284.078],[365.431,282.474],[378.988,298.031]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.957,-1.342],[0.612,6.503],[4.065,10.522],[7.951,-6.908],[-2.512,-4.393]],"o":[[6.145,2.789],[-0.46,-4.89],[-1.467,-3.796],[-10.803,9.386],[3.621,6.333]],"v":[[337.702,278.815],[347.336,268.819],[332.095,243.999],[316.172,236.617],[328.291,272.461]]}],"t":50.807},{"e":[{"c":true,"i":[[-1.752,1.566],[0.984,2.406],[2.382,-0.297],[0.468,-1.862],[-3.846,0.253]],"o":[[2.245,-2.007],[-0.586,-2.402],[-2.79,0.645],[-0.622,2.474],[2.159,-0.142]],"v":[[414.396,291.543],[415.621,287.461],[411.113,284.597],[405.773,288.142],[409.449,293.558]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.073,2.612],[4.494,2.543],[5.985,2.616],[0.702,-5.233],[-8.082,-3.812]],"o":[[2.466,-3.108],[-3.338,-1.889],[-3.711,-1.622],[-0.694,5.172],[6.587,3.107]],"v":[[391.939,297.312],[390.509,286.124],[377.293,284.078],[365.431,282.474],[378.988,298.031]]}],"t":54.838},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.207,234.285]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.801},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[-122.793,-107.715]},"r":{"a":0,"ix":6,"k":-140},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.824,-6.867],[-6.007,7.305],[5.035,0.732],[4.689,-2.044]],"o":[[6.376,7.517],[4.822,-5.867],[-2.511,-0.365],[-4.676,2.04]],"v":[[106.204,397.059],[137.121,390.333],[130.591,381.861],[110.692,383.747]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-9.829,7.087],[14.414,-5.073],[4.712,-2.057]],"o":[[6.432,7.583],[6.207,-4.475],[-2.406,0.847],[-4.712,2.057]],"v":[[170.108,388.834],[201.326,373.436],[192.525,360.361],[171.13,371.429]]}],"t":41.129},{"e":[{"c":true,"i":[[-1.181,-2.706],[-3.896,2.111],[2.189,0.947],[2.395,-0.087]],"o":[[0.388,0.876],[1.474,-0.799],[-1.092,-0.472],[-0.99,0.044]],"v":[[83.098,390.291],[89.189,391.639],[88.251,388.869],[85.063,386.868]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.824,-6.867],[-6.007,7.305],[5.035,0.732],[4.689,-2.044]],"o":[[6.376,7.517],[4.822,-5.867],[-2.511,-0.365],[-4.676,2.04]],"v":[[106.204,397.059],[137.121,390.333],[130.591,381.861],[110.692,383.747]]}],"t":46.773},{"t":52.419921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[180.867,376.203]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.961},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.129},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-106.133,25.203]},"r":{"a":0,"ix":6,"k":269},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.674,-12.115],[-2.46,13.816],[-5.666,13.221],[6.491,-9.451],[1.871,-8.886]],"o":[[1.691,7.662],[2.556,-14.352],[4.249,-9.913],[-6.787,9.881],[-2.621,12.448]],"v":[[181.686,425.644],[200.612,420.55],[206.614,374.991],[194.321,373.792],[182.362,396.293]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-3.431,7.581],[5.654,8.583],[5.059,-10.289],[1.871,-8.886]],"o":[[1.742,7.65],[6.011,-13.28],[-2.239,-3.399],[-6.315,12.843],[-2.621,12.448]],"v":[[197.421,355.676],[212.139,354.121],[213.768,307.566],[196.941,308.289],[197.129,333.886]]}],"t":50},{"e":[{"c":true,"i":[[-1.661,-0.889],[7.605,8.008],[3.898,4.931],[2.238,-3.77],[-2.25,-1.347]],"o":[[4.014,2.149],[-6.131,-6.456],[-2.076,-2.626],[-1.178,1.984],[1.639,0.981]],"v":[[202.636,450.926],[207.156,440.915],[198.577,429.175],[193.356,430.703],[198.806,448.482]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.674,-12.115],[-2.46,13.816],[-5.666,13.221],[6.491,-9.451],[1.871,-8.886]],"o":[[1.691,7.662],[2.556,-14.352],[4.249,-9.913],[-6.787,9.881],[-2.621,12.448]],"v":[[181.686,425.644],[200.612,420.55],[206.614,374.991],[194.321,373.792],[182.362,396.293]]}],"t":55.645},{"e":[{"c":true,"i":[[-0.824,-0.48],[0.926,2.26],[2.487,0.165],[-0.183,-2.21],[-1.113,-0.722]],"o":[[1.99,1.159],[-0.854,-2.086],[-1.69,-0.112],[0.096,1.163],[0.811,0.526]],"v":[[218.314,466.062],[220.93,462.594],[217.117,457.961],[214.662,461.171],[216.422,464.757]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.661,-0.889],[7.605,8.008],[3.898,4.931],[2.238,-3.77],[-2.25,-1.347]],"o":[[4.014,2.149],[-6.131,-6.456],[-2.076,-2.626],[-1.178,1.984],[1.639,0.981]],"v":[[202.636,450.926],[207.156,440.915],[198.577,429.175],[193.356,430.703],[198.806,448.482]]}],"t":61.291},{"t":65.322265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[1,0,0,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[206.104,331.532]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.193},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.322},{"t":66.12890625}]},"p":{"a":0,"ix":2,"k":[-130.656,-76.043]},"r":{"a":0,"ix":6,"k":179},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.754,12.928],[-40.461,12.59],[-25,-15.5],[24.039,-24.094],[35.107,2.652],[15.446,18.576],[-7.383,16.86],[-22.777,7.448],[-51.613,-0.608],[-22.098,-8.756],[-3.697,-60.633],[9.5,-28],[29.148,-4.094],[25.741,-1.055],[7.928,-6.519]],"o":[[-7.754,-12.928],[26.927,-8.379],[37.482,23.239],[-37.888,37.974],[-23.963,-1.81],[-18.629,-22.404],[11.621,-26.539],[27.092,-8.859],[24.63,0.29],[26.5,10.5],[2.5,41],[-12.547,36.981],[-49.897,7.009],[-68.234,2.795],[-25.536,20.999]],"v":[[-48.56,-22.68],[-42.427,-135.121],[59,-106],[90.253,-37.83],[-42.037,16.31],[-110.224,-27.845],[-128.121,-105.461],[-75.092,-138.641],[28.37,-157.79],[100,-155.5],[140,-89.5],[135,-13],[49.338,20.195],[-65.931,39.444],[-127.828,-42.812]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.261,9.762],[-46.909,-3.086],[-15.089,-1.824],[24.5,-7],[26.126,-7.296],[14.707,9.493],[14.602,17.198],[-0.471,25.981],[-27.724,1.98],[-27.554,3.71],[-26.5,-14.5],[-4.182,-46.388],[31.357,-17.797],[54.382,-2.978],[47.132,-5.727],[3.608,30.754]],"o":[[-6.261,-9.762],[38,2.5],[33.083,4],[-23.234,6.638],[-26.886,7.508],[-20.751,-13.394],[-14.602,-17.198],[0.49,-27.019],[0,0],[15.718,-2.116],[10.098,5.525],[2.75,30.5],[-18.5,10.5],[-49.626,2.718],[-23.428,2.846],[-3.247,-27.676]],"v":[[-60.292,-34.68],[-45.5,-137],[70.917,-119.5],[84.5,-31.5],[8.524,5.971],[-67.707,11.007],[-109.802,-26.132],[-130.529,-76.481],[-67.398,-135.845],[28.282,-156.384],[105.5,-157.5],[139.25,-83.5],[126.5,6.5],[45.334,21.183],[-72.132,42.02],[-127.416,-38.265]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[20.604,33.418],[-11.115,34.42],[-23.381,-5.19],[31.597,-21.252],[19.985,-12.762],[19.025,11.239],[19.299,30.538],[-5.427,20.845],[-16.145,4.473],[-43.291,3.334],[-29.206,-5.96],[-1.596,-44.693],[15,-15.5],[68.183,-6.429],[38.991,-8.659],[5.403,30.591]],"o":[[-12.097,-19.62],[15.5,-48],[40.568,9.005],[-15.853,10.663],[-22.585,14.422],[-25.322,-14.959],[-19.299,-30.538],[7.619,-30.98],[22.471,-6.384],[32.189,-2.479],[24.5,5],[1.5,42],[-27.609,28.53],[-72.334,6.82],[-55.273,12.275],[-5.403,-30.591]],"v":[[-57.869,-33.058],[-72.5,-112],[79.932,-121.505],[71.403,-38.748],[22.015,-1.238],[-53.525,11.261],[-110.659,-27.492],[-127.131,-94.131],[-82,-135.17],[28.311,-158.521],[100.5,-157.5],[140.5,-86.5],[134.5,-4],[48.834,20.68],[-70.491,40.659],[-128.838,-44.094]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":0,"ix":2,"k":100},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":33.094},{"t":56.451171875}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[1,0,0,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":1,"ix":5,"k":[{"e":[55],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[10],"t":43.799},{"t":59.927734375}]}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":60.484375}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":7,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[2,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[2,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[100],"t":0},{"t":34.677734375}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[122,122,100],"t":0},{"t":21.7734375}]}},"nm":"Shape Layer 2","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.262,-4.305],[-12.876,5.92],[6.129,0.108],[2.884,-2.561]],"o":[[6.764,5.534],[8.3,-3.816],[-6.832,-0.121],[-2.884,2.561]],"v":[[296.894,-71.052],[322.675,-70.696],[321.32,-84.046],[307.607,-76.438]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-17.617,-1.445],[5.339,6.185],[4.827,1.769]],"o":[[1.364,12.913],[12.137,0.995],[-5.297,-6.136],[-7.87,-2.883]],"v":[[238.44,-77.181],[268.195,-58.946],[280.942,-74.556],[258.182,-75.951]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.091,0.861],[-1.098,1.48],[2.439,-1.733],[0.842,-1.684]],"o":[[3.944,-1.625],[2.657,-3.581],[-2.441,1.734],[-0.842,1.684]],"v":[[340.646,-81.155],[344.788,-83.634],[342.294,-87.688],[340.798,-86.199]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.262,-4.305],[-12.876,5.92],[6.129,0.108],[2.884,-2.561]],"o":[[6.764,5.534],[8.3,-3.816],[-6.832,-0.121],[-2.884,2.561]],"v":[[296.894,-71.052],[322.675,-70.696],[321.32,-84.046],[307.607,-76.438]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[262.625,-67.013]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-5.207,67]},"r":{"a":0,"ix":6,"k":155},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.76,1.884],[4.168,5.124],[7.914,1.98],[-11.948,-10.523],[-12.498,-10.86]],"o":[[4.251,-4.551],[-10.833,-13.319],[-12.347,-3.088],[9.171,8.077],[7.622,6.623]],"v":[[381.443,-19.093],[379.333,-33.681],[340.847,-63.912],[333.202,-51.464],[365.466,-20.77]]}],"t":33.871},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":37.375},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[398.107,20.813],[399.524,18.443],[397.583,13.78],[393.392,15.175],[395.33,20.165]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":39.711},{"t":44.3828125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[357.25,-40.916]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"t":45.55078125}]},"p":{"a":0,"ix":2,"k":[-71.738,94.699]},"r":{"a":0,"ix":6,"k":110},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-8.767,2.886],[2.412,7.964],[0.005,10.277],[4.369,-19.576],[-7.882,-15.169]],"o":[[6.803,-2.24],[-5.719,-18.882],[-0.009,-17.469],[-3.237,14.505],[6.069,11.679]],"v":[[405.381,147.864],[410.436,129.873],[401.932,95.285],[387.647,89.427],[389.579,135.789]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-1.416,8.2],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[3.118,-18.056],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[402.535,98.681],[404.538,36.778],[390.847,35.98],[385.378,84.251]]}],"t":30.367},{"e":[{"c":true,"i":[[-1.949,1.473],[4.632,4.209],[3.063,3.978],[0.417,-15.081],[-3.139,-3.489]],"o":[[4.708,-3.559],[-9.791,-8.897],[-3.476,-4.514],[-0.288,10.403],[6.399,7.113]],"v":[[430.171,173.641],[428.989,161.828],[414.504,149.442],[405.469,143.355],[413.855,165.776]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.767,2.886],[2.412,7.964],[0.005,10.277],[4.369,-19.576],[-7.882,-15.169]],"o":[[6.803,-2.24],[-5.719,-18.882],[-0.009,-17.469],[-3.237,14.505],[6.069,11.679]],"v":[[405.381,147.864],[410.436,129.873],[401.932,95.285],[387.647,89.427],[389.579,135.789]]}],"t":35.039},{"e":[{"c":true,"i":[[-0.827,2.371],[1.971,0.028],[1.832,1.417],[-0.085,-1.211],[-2.476,-0.82]],"o":[[0.68,-1.95],[-1.037,-0.015],[-0.927,-0.717],[0.179,2.56],[2.224,0.736]],"v":[[435.541,174.127],[432.651,171.009],[428.188,169.385],[426.205,169.659],[430.762,175.314]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.949,1.473],[4.632,4.209],[3.063,3.978],[0.417,-15.081],[-3.139,-3.489]],"o":[[4.708,-3.559],[-9.791,-8.897],[-3.476,-4.514],[-0.288,10.403],[6.399,7.113]],"v":[[430.171,173.641],[428.989,161.828],[414.504,149.442],[405.469,143.355],[413.855,165.776]]}],"t":40.879},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[396.535,67.065]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":29.199},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":30.367},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-200.816,51.801]},"r":{"a":0,"ix":6,"k":154},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[332.765,203.855],[323.535,216.095],[332.476,219.847],[337.259,213.593]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.324,7.335],[0.152,-9.506],[-2.384,-0.906],[-2.409,4.542]],"o":[[-8.624,-11.881],[-0.123,7.651],[2.384,0.906],[2.409,-4.542]],"v":[[349.124,166.381],[325.603,197.485],[337.731,202.574],[344.72,184.091]]}],"t":29.199},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[329.913,234.119],[325.853,239.503],[329.785,241.153],[331.889,238.402]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[332.765,203.855],[323.535,216.095],[332.476,219.847],[337.259,213.593]]}],"t":32.703},{"t":35.0390625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[336.243,183.537]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":28.031},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":29.199},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":35.039},{"t":36.20703125}]},"p":{"a":0,"ix":2,"k":[-273.617,-102.945]},"r":{"a":0,"ix":6,"k":124},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":28.031},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[317.396,295.449],[321.103,284.053],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":32.703},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[317.814,303.274],[321.644,303.175],[322.014,298.568],[317.877,296.455],[315.04,300.655]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[317.396,295.449],[321.103,284.053],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[320.584,230.135]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.863},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":28.031},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-290.578,-156.98]},"r":{"a":0,"ix":6,"k":161},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.112,-0.542],[-0.226,-0.603],[-0.466,0.032],[0.034,0.41]],"o":[[-1.112,0.542],[0.226,0.603],[0.466,-0.032],[-0.034,-0.41]],"v":[[-428.545,-130.894],[-428.976,-128.853],[-427.581,-128.641],[-427.259,-129.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.712,-5.32],[-0.957,-5.923],[-1.974,0.319],[0.145,4.029]],"o":[[-4.712,5.32],[0.957,5.923],[1.974,-0.319],[-0.145,-4.029]],"v":[[-428.675,-113.866],[-430.5,-93.818],[-424.592,-91.733],[-423.226,-102.084]]}],"t":25.807},{"t":31.451171875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-428.254,-104.227]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":24.639},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":25.807},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":31.34},{"t":32.5078125}]},"p":{"a":0,"ix":2,"k":[-225.254,-269.227]},"r":{"a":0,"ix":6,"k":64},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.096,0.981],[5.205,5.598],[2.75,8.25],[-3.466,-19.756],[-0.989,-2.42]],"o":[[5.282,-1.674],[-6.328,-6.806],[-1.287,-3.861],[2.5,14.25],[3.567,8.726]],"v":[[-411.44,-60.246],[-412.863,-72.518],[-419.158,-95.92],[-427.658,-87.17],[-422.975,-68.646]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.139,0.835],[7.7,3.156],[2.5,8.329],[-9.602,-16.436],[-4.305,-2.661]],"o":[[7.583,-2.017],[-13.488,-5.529],[-1.945,-6.481],[3.731,6.387],[10.69,6.609]],"v":[[-391.63,-32.099],[-393.714,-46.753],[-417.058,-67.729],[-427.5,-58.75],[-413.083,-40.715]]}],"t":27.42},{"e":[{"c":true,"i":[[-2.44,-0.355],[0.394,3.277],[0.869,6.544],[-0.603,-15.215],[-0.48,-1.926]],"o":[[4.163,0.606],[-0.842,-7.004],[-0.406,-3.063],[0.151,3.821],[1.182,4.74]],"v":[[-423.585,-93.044],[-420.682,-99.811],[-421.011,-111.355],[-428.601,-106.049],[-427.733,-98.237]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.096,0.981],[5.205,5.598],[2.75,8.25],[-3.466,-19.756],[-0.989,-2.42]],"o":[[5.282,-1.674],[-6.328,-6.806],[-1.287,-3.861],[2.5,14.25],[3.567,8.726]],"v":[[-411.44,-60.246],[-412.863,-72.518],[-419.158,-95.92],[-427.658,-87.17],[-422.975,-68.646]]}],"t":32.258},{"e":[{"c":true,"i":[[-0.408,-0.059],[0.066,0.549],[0.145,1.096],[-0.101,-2.547],[-0.08,-0.322]],"o":[[0.697,0.101],[-0.141,-1.173],[-0.068,-0.513],[0.025,0.64],[0.198,0.794]],"v":[[-427.053,-117.101],[-426.567,-118.234],[-426.622,-120.167],[-427.893,-119.279],[-427.748,-117.971]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.44,-0.355],[0.394,3.277],[0.869,6.544],[-0.603,-15.215],[-0.48,-1.926]],"o":[[4.163,0.606],[-0.842,-7.004],[-0.406,-3.063],[0.151,3.821],[1.182,4.74]],"v":[[-423.585,-93.044],[-420.682,-99.811],[-421.011,-111.355],[-428.601,-106.049],[-427.733,-98.237]]}],"t":38.709},{"t":44.103515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-414.207,-48.82]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.25},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":27.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.104},{"t":45.2734375}]},"p":{"a":0,"ix":2,"k":[-262.207,-239.82]},"r":{"a":0,"ix":6,"k":88},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[10.786,-16.436],[36.698,-5.592],[51.5,1],[9,32],[15.916,31.57],[-1.093,53.88],[-56.534,10.139],[-48.62,14.681]],"o":[[-21,32],[-52.5,8],[-35.462,-0.689],[-8.036,-28.573],[-12.709,-25.209],[1.052,-51.855],[33.944,-6.088],[11.102,-3.352]],"v":[[154,7],[10.5,64],[-121,115.5],[-201,48],[-241.111,-47.775],[-291.407,-153.38],[-193.944,-279.912],[-57.38,-284.681]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[1.135,-32.538],[58,-8],[29.476,3.871],[6.943,26.458],[16.354,30.051],[-4.357,41.835],[-55.585,23.176],[-12.678,8.973]],"o":[[-1.5,43],[-36.773,5.072],[-49.5,-6.5],[-9.25,-35.25],[-22.994,-42.252],[3.538,-33.97],[22.176,-9.246],[12.678,-8.973]],"v":[[158.5,10.5],[8,70],[-134.5,113.5],[-209.75,34.5],[-239.695,-49.836],[-295.643,-167.835],[-198.915,-279.176],[-59.772,-283.797]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.725,-31.855],[58.724,-9.787],[29.512,3.586],[8.5,26],[18.327,29.502],[-2.717,47.431],[-27.557,6.484],[-6.782,7.107]],"o":[[-9.5,45],[-51,8.5],[-29.512,-3.587],[-9.223,-28.212],[-20.5,-33],[2.217,-38.701],[27.557,-6.484],[6.782,-7.107]],"v":[[157.5,7.5],[-1.5,64],[-143,113],[-205,49.5],[-251,-61],[-296.283,-170.931],[-204.122,-275.286],[-59.608,-284.485]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":0},{"t":23.359375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.156862750649,0.937254965305,0.764705955982,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":8,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[8,-61,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[8,3,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[130],"t":6.451},{"t":38.708984375}]},"s":{"a":1,"ix":6,"k":[{"e":[128,128,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[150,150,100],"t":6.451},{"t":25.806640625}]}},"nm":"Shape Layer 8","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.407,-9.045],[-24.08,12.646],[11.275,-3.359],[6.196,-4.05]],"o":[[13.477,12.958],[15.523,-8.152],[-11.283,3.361],[-6.196,4.05]],"v":[[231.694,-24.814],[277.822,-47.084],[271.175,-73.761],[244.812,-54.192]]}],"t":44.383},{"e":[{"c":true,"i":[[-2.784,-3.375],[-3.362,-1.186],[4.594,3.521],[3.593,0.597]],"o":[[5.252,6.366],[8.135,2.87],[-4.597,-3.524],[-3.593,-0.597]],"v":[[331.516,-54.519],[338.459,-48.273],[344.534,-55.195],[340.927,-57.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"t":47.887},{"t":51.390625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[257.377,-47.334]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":51.391},{"t":52.55859375}]},"p":{"a":0,"ix":2,"k":[-214.578,-131.191]},"r":{"a":0,"ix":6,"k":274},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.364,-1.029],[-3.018,5.876],[2.165,9.468],[0.41,-15.916],[3.976,-9.264]],"o":[[6.467,2.814],[4.499,-8.758],[-2.837,-12.407],[-0.315,12.216],[-3.982,9.279]],"v":[[316.822,40.131],[330.371,27.358],[333.75,1.416],[323.043,-0.735],[313.922,23.153]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-11.421,0.903],[0.255,7.893],[5.273,8.205],[-1.791,-18.951],[1.478,-21.761]],"o":[[7.423,-0.587],[-0.783,-24.217],[-8.227,-12.801],[1.374,14.545],[-0.818,12.044]],"v":[[325.378,-3.841],[340.783,-24.783],[320.013,-81.633],[298.25,-89.886],[308.522,-23.239]]}],"t":44.383},{"e":[{"c":true,"i":[[-1.782,0.165],[-2.041,4.108],[0.166,2.795],[0.573,-7.592],[4.181,-9.982]],"o":[[4.306,-0.399],[3.625,-7.295],[-0.267,-4.502],[-0.251,3.333],[-2.709,6.467]],"v":[[306.995,78.534],[314.478,74.189],[316.489,56.012],[308.915,55.627],[303.647,69.36]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.364,-1.029],[-3.018,5.876],[2.165,9.468],[0.41,-15.916],[3.976,-9.264]],"o":[[6.467,2.814],[4.499,-8.758],[-2.837,-12.407],[-0.315,12.216],[-3.982,9.279]],"v":[[316.822,40.131],[330.371,27.358],[333.75,1.416],[323.043,-0.735],[313.922,23.153]]}],"t":47.887},{"e":[{"c":true,"i":[[-0.951,-0.319],[-0.847,0.624],[-0.04,1.569],[1.67,-2.297],[1.735,-5.813]],"o":[[1.696,0.568],[1.602,-1.181],[0.065,-2.527],[-1.102,1.516],[-0.322,1.079]],"v":[[304.127,98.096],[306.822,97.493],[308.87,92.876],[304.974,90.795],[302.686,95.634]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.782,0.165],[-2.041,4.108],[0.166,2.795],[0.573,-7.592],[4.181,-9.982]],"o":[[4.306,-0.399],[3.625,-7.295],[-0.267,-4.502],[-0.251,3.333],[-2.709,6.467]],"v":[[306.995,78.534],[314.478,74.189],[316.489,56.012],[308.915,55.627],[303.647,69.36]]}],"t":50.223},{"t":54.89453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[321.066,-50.164]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.895},{"t":56.0625}]},"p":{"a":0,"ix":2,"k":[-219.066,-213.836]},"r":{"a":0,"ix":6,"k":223},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.833,-3.87],[-5.637,6.122],[-2.016,10.078],[3.414,-19.765],[13.176,-28.168]],"o":[[7.146,3.53],[16.659,-18.093],[3.427,-17.13],[-2.632,15.235],[-5.39,11.522]],"v":[[379.999,178.335],[396.982,174.133],[416.912,113.469],[399.58,101.812],[380.14,151.363]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.613,0.737],[-2.424,7.903],[4.317,15.554],[-0.539,-20.051],[6.085,-25.403]],"o":[[9.399,-0.533],[7.139,-22.852],[-3.819,-13.762],[0.416,15.456],[-6.085,25.403]],"v":[[403.508,119.257],[418.174,93.773],[419.944,41.7],[395.677,45.267],[389.164,96.504]]}],"t":42.742},{"e":[{"c":true,"i":[[-2.497,-2.077],[-5.234,6.47],[-1.469,9.693],[9.39,-17.724],[3.567,-5.12]],"o":[[6.032,5.018],[10.825,-13.382],[1.641,-10.831],[-8.109,15.306],[-7.272,10.437]],"v":[[369.595,227.212],[383.812,221.512],[397.435,185.945],[390.663,169.248],[367.146,208.106]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.833,-3.87],[-5.637,6.122],[-2.016,10.078],[3.414,-19.765],[13.176,-28.168]],"o":[[7.146,3.53],[16.659,-18.093],[3.427,-17.13],[-2.632,15.235],[-5.39,11.522]],"v":[[379.999,178.335],[396.982,174.133],[416.912,113.469],[399.58,101.812],[380.14,151.363]]}],"t":47.58},{"e":[{"c":true,"i":[[-3.832,-1.279],[-1.644,2.713],[-2.737,2.53],[5.638,1.238],[2.865,-3.256]],"o":[[5.173,1.726],[1.341,-2.214],[1.384,-1.28],[-4.999,-1.098],[-2.49,2.83]],"v":[[356.714,245.601],[362.742,242.776],[367.676,239.233],[363.88,232.13],[356.49,236.923]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.497,-2.077],[-5.234,6.47],[-1.469,9.693],[9.39,-17.724],[3.567,-5.12]],"o":[[6.032,5.018],[10.825,-13.382],[1.641,-10.831],[-8.109,15.306],[-7.272,10.437]],"v":[[369.595,227.212],[383.812,221.512],[397.435,185.945],[390.663,169.248],[367.146,208.106]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[404.93,83.625]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":41.129},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.604},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.678},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[-138.93,-276.625]},"r":{"a":0,"ix":6,"k":245},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[12.98,-6.184],[11.111,-16.056],[-3.914,3.539],[-5.98,1.979]],"o":[[-12.128,5.778],[-10.545,15.238],[10.106,-9.138],[19.279,-6.38]],"v":[[318.902,206.219],[279.794,228.558],[288.654,243.523],[317.301,222.249]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.927,-3.963],[19.952,-8.646],[-19.611,8.534],[-3.594,6.776]],"o":[[-21.701,6.652],[-23.559,10.21],[16.263,-7.077],[3.594,-6.776]],"v":[[354.921,151.162],[313.901,203.075],[317.224,218.145],[354.174,177.892]]}],"t":45.162},{"e":[{"c":true,"i":[[5.747,-1.951],[1.698,-9.872],[-1.334,1.718],[-4.992,1.049]],"o":[[-3.722,1.458],[-1.424,8.281],[4.426,-5.222],[2.361,-4.244]],"v":[[281.169,235.826],[264.082,251.171],[272.645,255.497],[285.355,241.514]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[12.98,-6.184],[11.111,-16.056],[-3.914,3.539],[-5.98,1.979]],"o":[[-12.128,5.778],[-10.545,15.238],[10.106,-9.138],[19.279,-6.38]],"v":[[318.902,206.219],[279.794,228.558],[288.654,243.523],[317.301,222.249]]}],"t":49.193},{"e":[{"c":true,"i":[[2.954,0.333],[-0.331,-3.154],[-0.805,-0.138],[-0.577,1.611]],"o":[[-2.881,-0.324],[0.272,2.595],[0.87,0.035],[0.586,-1.635]],"v":[[260.378,262.174],[256.889,268.362],[261.127,269.48],[262.984,266.158]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.747,-1.951],[1.698,-9.872],[-1.334,1.718],[-4.992,1.049]],"o":[[-3.722,1.458],[-1.424,8.281],[4.426,-5.222],[2.361,-4.244]],"v":[[281.169,235.826],[264.082,251.171],[272.645,255.497],[285.355,241.514]]}],"t":52.42},{"t":54.837890625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.994},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.162},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.838},{"t":55.64453125}]},"p":{"a":0,"ix":2,"k":[-119,-323]},"r":{"a":0,"ix":6,"k":56},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.21,-0.491],[2.35,6.095],[6.113,12.778],[-1.155,-14.158],[-8.147,-5.86]],"o":[[6.671,1.021],[-1.767,-4.583],[-1.756,-3.671],[1.045,12.807],[5.922,4.26]],"v":[[339.738,271.778],[345.218,260.984],[324.915,239.78],[315.011,238.392],[330.54,268.187]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[10.791,-8.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-8.846,7.127],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[319.127,198.585],[298.155,181.521],[302.945,244.529]]}],"t":45.162},{"e":[{"c":true,"i":[[-1.634,2.936],[5.475,3.562],[6.311,1.676],[1.373,-8.599],[-6.282,-1.072]],"o":[[1.936,-3.478],[-3.21,-2.088],[-3.933,-1.044],[-1.635,10.241],[7.191,1.227]],"v":[[367.527,262.648],[362.997,251.553],[351.283,250.625],[339.585,248.172],[354.764,265.266]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.21,-0.491],[2.35,6.095],[6.113,12.778],[-1.155,-14.158],[-8.147,-5.86]],"o":[[6.671,1.021],[-1.767,-4.583],[-1.756,-3.671],[1.045,12.807],[5.922,4.26]],"v":[[339.738,271.778],[345.218,260.984],[324.915,239.78],[315.011,238.392],[330.54,268.187]]}],"t":50},{"e":[{"c":true,"i":[[-1.924,1.124],[-0.182,2.297],[1.608,-0.414],[1.239,-0.251],[-3.328,-0.436]],"o":[[2.515,-1.469],[0.201,-2.532],[-2.614,0.673],[-3.225,0.653],[2.509,0.329]],"v":[[384.796,256.439],[387.639,253.871],[384.922,250.133],[380.406,251.22],[380.984,256.255]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.634,2.936],[5.475,3.562],[6.311,1.676],[1.373,-8.599],[-6.282,-1.072]],"o":[[1.936,-3.478],[-3.21,-2.088],[-3.933,-1.044],[-1.635,10.241],[7.191,1.227]],"v":[[367.527,262.648],[362.997,251.553],[351.283,250.625],[339.585,248.172],[354.764,265.266]]}],"t":54.838},{"t":59.56640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[310.24,218.951]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.994},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.162},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[-161.211,-7.059]},"r":{"a":0,"ix":6,"k":171},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.141,0.827],[-0.338,-8.315],[-8.896,-10.141],[1.932,9.396],[-2.499,13.574]],"o":[[-8.094,-2.131],[0.593,14.565],[6.7,7.638],[-3.243,-15.772],[2.303,-12.51]],"v":[[-337.984,-433.641],[-349.504,-420.507],[-335.35,-382.508],[-319.857,-381.226],[-332.44,-416.538]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.072,-1.054],[-6.069,-9.317],[-8.059,-7.336],[0.738,14.37],[2.909,4.142]],"o":[[-7.422,2.545],[7.957,12.214],[3.01,2.74],[-0.734,-14.293],[-7.311,-10.409]],"v":[[-331.366,-387.145],[-326.659,-368.439],[-299.172,-340.202],[-282.749,-338.843],[-310.736,-374.277]]}],"t":38.709},{"e":[{"c":true,"i":[[1.664,1.849],[3.345,-6.351],[-5.055,-9.568],[-0.373,9.173],[-6.196,8.297]],"o":[[-4.289,-4.764],[-3.694,9.513],[3.974,7.71],[0.008,-11.58],[6.441,-7.959]],"v":[[-329.595,-451.856],[-343.553,-445.711],[-344.119,-413.456],[-332.261,-413.47],[-332.365,-437.17]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.141,0.827],[-0.338,-8.315],[-8.896,-10.141],[1.932,9.396],[-2.499,13.574]],"o":[[-8.094,-2.131],[0.593,14.565],[6.7,7.638],[-3.243,-15.772],[2.303,-12.51]],"v":[[-337.984,-433.641],[-349.504,-420.507],[-335.35,-382.508],[-319.857,-381.226],[-332.44,-416.538]]}],"t":43.549},{"e":[{"c":true,"i":[[0.647,2.399],[5.295,-5.158],[-3.648,-7.495],[-0.253,8.888],[-7.597,4.51]],"o":[[-1.666,-6.182],[-5.408,5.268],[3.212,6.6],[0.205,-7.188],[8.368,-4.968]],"v":[[-315.591,-472.782],[-330.122,-470.056],[-336.895,-443.958],[-328.882,-448.394],[-322.754,-460.041]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.664,1.849],[3.345,-6.351],[-5.055,-9.568],[-0.373,9.173],[-6.196,8.297]],"o":[[-4.289,-4.764],[-3.694,9.513],[3.974,7.71],[0.008,-11.58],[6.441,-7.959]],"v":[[-329.595,-451.856],[-343.553,-445.711],[-344.119,-413.456],[-332.261,-413.47],[-332.365,-437.17]]}],"t":45.967},{"e":[{"c":true,"i":[[1.068,0.325],[1.382,-3.02],[1.651,-2.396],[-2.55,1.625],[0.024,1.608]],"o":[[-1.501,-0.456],[-0.89,1.944],[-1.872,2.716],[1.578,-1.005],[-0.023,-1.589]],"v":[[-311.698,-481.914],[-315.538,-479.478],[-316.946,-475.353],[-313.345,-473.814],[-310.261,-478.673]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.647,2.399],[5.295,-5.158],[-3.648,-7.495],[-0.253,8.888],[-7.597,4.51]],"o":[[-1.666,-6.182],[-5.408,5.268],[3.212,6.6],[0.205,-7.188],[8.368,-4.968]],"v":[[-315.591,-472.782],[-330.122,-470.056],[-336.895,-443.958],[-328.882,-448.394],[-322.754,-460.041]]}],"t":48.387},{"t":53.2265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-304.289,-360.496]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":37.375},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":38.543},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.227},{"t":54.392578125}]},"p":{"a":0,"ix":2,"k":[96.711,-284.496]},"r":{"a":0,"ix":6,"k":117},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[19.514,-2.379],[94.782,15.632],[32.746,74.677],[-24.104,91.314],[-43.342,12.292],[-55.734,7.067],[-12.958,4.282],[-15.368,1.444],[-5.901,-12.316]],"o":[[-99.548,12.137],[-55.52,-9.157],[-26.168,-59.677],[9.262,-35.088],[68.046,-19.298],[48.989,-6.212],[28.248,-9.335],[35.867,-3.37],[5.901,12.316]],"v":[[103.934,36.653],[-110.782,59.368],[-176.678,-72.703],[-215.177,-209.012],[-133.845,-270.579],[-1.857,-267.213],[77.752,-281.665],[130.133,-295.63],[187.79,-273.42]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-6.081,-31.985],[24.757,12.653],[29.356,58.811],[-19.949,34.363],[-41.604,2.715],[-49.623,5.236],[-12.21,4.49],[-23.206,1.791],[-4.437,-11.718]],"o":[[3.738,19.66],[-52.987,-27.082],[-31.952,-64.012],[34.962,-60.224],[48.707,-3.178],[49.623,-5.236],[19.505,-7.172],[12.739,-0.983],[4.437,11.718]],"v":[[107.412,37.288],[-109.918,61.076],[-179.259,-74.059],[-228.303,-206.233],[-121.83,-288.659],[2.406,-267.49],[93.495,-286.828],[132.206,-295.791],[188.763,-269.948]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[30.906,10.239],[26.258,11.48],[18.527,60.223],[-53.765,63.702],[-34.731,0.011],[-34.854,4.38],[-24.683,0.853],[-15.663,0.963],[-5.142,-11.664]],"o":[[-47.919,-15.876],[-70.357,-30.76],[-11.618,-37.767],[23.033,-27.29],[52.229,-0.017],[42.963,-5.399],[24.007,-0.83],[36.19,-2.225],[5.142,11.664]],"v":[[107.315,39.786],[-111.261,57.02],[-178.386,-71.664],[-215.594,-209.237],[-125.189,-282.314],[-3.008,-265.22],[81.1,-281.477],[127.81,-296.775],[190.767,-266.91]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":25.695},{"t":49.0546875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.419607877731,0.756862819195,0.988235354424,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":9,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[3,-60,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[3,4,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[115],"t":4.838},{"t":34.677734375}]},"s":{"a":1,"ix":6,"k":[{"e":[129,129,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[151,151,100],"t":4.838},{"t":26.61328125}]}},"nm":"Shape Layer 7","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.673,-4.762],[-18.144,-8.136],[6.413,4.394],[5.067,0.196]],"o":[[6.889,6.254],[11.904,5.215],[-11.294,-7.739],[-6.612,1.03]],"v":[[281.484,-56.197],[316.648,-47.061],[328.35,-59.478],[295.503,-66.743]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-12.396,4.078],[-26.919,3.894],[11.275,-3.359],[5.797,-4.603]],"o":[[14.726,-4.845],[17.976,-2.6],[-11.283,3.361],[-10.431,8.283]],"v":[[231.694,-24.814],[274.564,-52.147],[273.316,-68.67],[244.55,-55.751]]}],"t":43.549},{"e":[{"c":true,"i":[[-2.311,-9.183],[-13.757,-14.151],[4.658,7.154],[4.703,2.596]],"o":[[2.97,11.804],[8.868,9.122],[-4.661,-7.159],[-4.703,-2.596]],"v":[[314.956,-50.966],[337.715,-30.091],[354.611,-38.075],[338.249,-52.541]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.673,-4.762],[-18.144,-8.136],[6.413,4.394],[5.067,0.196]],"o":[[6.889,6.254],[11.904,5.215],[-11.294,-7.739],[-6.612,1.03]],"v":[[281.484,-56.197],[316.648,-47.061],[328.35,-59.478],[295.503,-66.743]]}],"t":47.887},{"e":[{"c":true,"i":[[0.325,-4.363],[-1.606,-3.182],[0.88,5.721],[2.181,2.917]],"o":[[-0.612,8.23],[3.887,7.701],[-0.881,-5.725],[-2.181,-2.917]],"v":[[356.132,-20.162],[356.824,-10.849],[365.998,-11.643],[364.721,-15.523]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.311,-9.183],[-13.757,-14.151],[4.658,7.154],[4.703,2.596]],"o":[[2.97,11.804],[8.868,9.122],[-4.661,-7.159],[-4.703,-2.596]],"v":[[314.956,-50.966],[337.715,-30.091],[354.611,-38.075],[338.249,-52.541]]}],"t":49.055},{"t":52.55859375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.559},{"t":53.7265625}]},"p":{"a":0,"ix":2,"k":[-319,-12]},"r":{"a":0,"ix":6,"k":298},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.078,-1.526],[-4.242,5.063],[0.019,9.713],[3.918,-15.432],[5.925,-8.156]],"o":[[5.685,4.174],[6.323,-7.547],[-0.025,-12.727],[-3.007,11.844],[-5.934,8.169]],"v":[[298.689,40.643],[314.727,31.18],[323.755,6.626],[313.788,2.162],[299.614,23.444]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-11.421,0.903],[0.255,7.893],[5.273,8.205],[-1.791,-18.951],[1.478,-21.761]],"o":[[7.423,-0.587],[-0.783,-24.217],[-8.227,-12.801],[1.374,14.545],[-0.818,12.044]],"v":[[325.378,-3.841],[336.438,-31.273],[320.013,-81.633],[298.25,-89.886],[317.655,-28.815]]}],"t":43.549},{"e":[{"c":true,"i":[[-1.599,-0.805],[-3.908,2.402],[-1.341,2.458],[4.509,-6.135],[8.836,-6.249]],"o":[[3.863,1.944],[6.94,-4.265],[2.16,-3.959],[-1.98,2.694],[-5.724,4.049]],"v":[[276.962,51.013],[285.61,51.293],[296.948,36.945],[290.73,32.604],[278.984,41.458]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.078,-1.526],[-4.242,5.063],[0.019,9.713],[3.918,-15.432],[5.925,-8.156]],"o":[[5.685,4.174],[6.323,-7.547],[-0.025,-12.727],[-3.007,11.844],[-5.934,8.169]],"v":[[298.689,40.643],[314.727,31.18],[323.755,6.626],[313.788,2.162],[299.614,23.444]]}],"t":46.719},{"e":[{"c":true,"i":[[-0.732,-0.686],[-1.03,0.214],[-0.69,1.409],[2.475,-1.392],[4,-4.561]],"o":[[1.305,1.223],[1.948,-0.406],[1.112,-2.271],[-1.633,0.919],[-0.743,0.847]],"v":[[258.72,53.175],[261.421,53.75],[265.207,50.407],[262.532,46.891],[258.436,50.337]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.599,-0.805],[-3.908,2.402],[-1.341,2.458],[4.509,-6.135],[8.836,-6.249]],"o":[[3.863,1.944],[6.94,-4.265],[2.16,-3.959],[-1.98,2.694],[-5.724,4.049]],"v":[[276.962,51.013],[285.61,51.293],[296.948,36.945],[290.73,32.604],[278.984,41.458]]}],"t":49.055},{"t":53.7265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.727},{"t":54.89453125}]},"p":{"a":0,"ix":2,"k":[-110,-15]},"r":{"a":0,"ix":6,"k":264},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[423.143,176.84],[429.606,159.901],[408.185,109.611],[393.012,101.88],[401.394,160.886]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.468,0.819],[-2.289,7.899],[-1.216,9.918],[-0.539,-20.051],[3.895,-17.689]],"o":[[9.341,-0.612],[6.804,-22.692],[1.748,-14.248],[0.416,15.456],[-2.222,10.089]],"v":[[400.264,121.335],[407.277,89.064],[415.34,40.943],[396.726,46.079],[387.633,99.652]]}],"t":41.129},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[423.143,176.84],[429.606,159.901],[408.185,109.611],[393.012,101.88],[401.394,160.886]]}],"t":45.551},{"e":[{"c":true,"i":[[-0.627,3.991],[2.948,1.173],[2.948,2.281],[0.289,-5.765],[-3.685,-2.287]],"o":[[0.847,-5.388],[-2.405,-0.957],[-1.491,-1.154],[-0.256,5.111],[3.202,1.988]],"v":[[470.684,231.038],[466.901,225.56],[462.591,221.28],[456.214,226.198],[462.163,232.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[4.02,8.942],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-4.492,-9.991],[-4.331,14.842],[8.508,9.457]],"v":[[446.471,206.015],[444.156,190.874],[423.616,169.427],[408.875,159.068],[427.309,204.052]]}],"t":52.559},{"t":58.3984375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.398},{"t":59.56640625}]},"p":{"a":0,"ix":2,"k":[-235,62]},"r":{"a":0,"ix":6,"k":280},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.179,-0.665],[2.016,6.213],[3.142,17.876],[0.728,-14.187],[-3.41,-3.739]],"o":[[6.605,1.381],[-1.516,-4.672],[-2.326,-13.23],[-0.808,15.745],[4.916,5.39]],"v":[[321.216,291.57],[330.689,279.935],[319.139,243.191],[305.259,238.136],[312.226,287.486]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[3.434,14.705],[0.553,10.13],[5.503,-12.718],[-3.126,-13.881]],"o":[[5.497,2.929],[-2.647,-11.338],[-1.031,-18.877],[-7.856,18.155],[3.434,15.251]],"v":[[312.302,269.756],[324.661,257.524],[317.784,199.402],[301.971,183.906],[306.246,249.272]]}],"t":44.355},{"e":[{"c":true,"i":[[-3.271,0.769],[1.054,6.446],[3.012,5.794],[7.281,-4.776],[-3.438,-5.365]],"o":[[3.875,-0.911],[-0.618,-3.779],[-1.877,-3.611],[-8.672,5.688],[3.936,6.142]],"v":[[331.954,312.336],[337.105,301.515],[329.902,292.232],[319.278,281.248],[321.423,304.665]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.179,-0.665],[2.016,6.213],[3.142,17.876],[0.728,-14.187],[-3.41,-3.739]],"o":[[6.605,1.381],[-1.516,-4.672],[-2.326,-13.23],[-0.808,15.745],[4.916,5.39]],"v":[[321.216,291.57],[330.689,279.935],[319.139,243.191],[305.259,238.136],[312.226,287.486]]}],"t":49.027},{"e":[{"c":true,"i":[[-2.218,-0.219],[-1.495,1.753],[1.545,0.609],[1.15,0.524],[-2.438,-2.306]],"o":[[2.899,0.286],[1.648,-1.932],[-2.511,-0.99],[-2.994,-1.365],[1.838,1.739]],"v":[[339.992,318.322],[343.801,317.912],[343.795,313.291],[339.501,311.52],[337.014,315.936]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.271,0.769],[1.054,6.446],[3.012,5.794],[7.281,-4.776],[-3.438,-5.365]],"o":[[3.875,-0.911],[-0.618,-3.779],[-1.877,-3.611],[-8.672,5.688],[3.936,6.142]],"v":[[331.954,312.336],[337.105,301.515],[329.902,292.232],[319.278,281.248],[321.423,304.665]]}],"t":53.699},{"t":58.369140625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.604},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.355},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.119},{"t":58.92578125}]},"p":{"a":0,"ix":2,"k":[189,-160]},"r":{"a":0,"ix":6,"k":148},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.659,1.767],[2.042,-0.139],[-0.046,-0.681],[-1.373,-0.077]],"o":[[-1.659,-1.767],[-2.042,0.139],[0.046,0.681],[1.373,0.077]],"v":[[297.337,-363.857],[290.584,-365.106],[289.691,-363.164],[293.164,-362.375]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.573,6.143],[5.924,0.949],[0.316,-1.975],[-3.87,-1.127]],"o":[[-3.573,-6.143],[-5.924,-0.949],[-0.316,1.975],[3.87,1.127]],"v":[[266.466,-363.092],[248.002,-371.115],[244.17,-366.159],[253.569,-361.614]]}],"t":31.535},{"t":37.375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":30.367},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":31.535},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":37.375},{"t":38.54296875}]},"p":{"a":0,"ix":2,"k":[0,89]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[5.412,-4.886],[-8.316,0.301],[-8.696,0.023],[19.846,2.907],[5.025,-0.604]],"o":[[-5.824,5.258],[16.754,-0.606],[4.07,-0.011],[-14.315,-2.097],[-7.321,0.88]],"v":[[188.396,-372.408],[202.595,-365.629],[235.029,-365.913],[234.764,-376.269],[207.821,-377.38]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.206,-3.241],[-7.759,3.008],[-8.696,0.023],[19.846,2.907],[4.671,-1.948]],"o":[[0.499,7.83],[12.336,-4.783],[4.07,-0.011],[-14.315,-2.097],[-7.637,3.186]],"v":[[176.071,-367.658],[190.849,-366.843],[214.029,-368.913],[213.764,-379.269],[191.544,-378.666]]}],"t":33.871},{"e":[{"c":true,"i":[[0.7,-2.166],[-5.35,-1.792],[-6.171,-0.15],[14.241,0.353],[3.585,-0.214]],"o":[[-0.706,2.186],[8.455,2.77],[6.613,0.161],[-10.272,-0.255],[-6.384,0.381]],"v":[[223.108,-372.022],[231.508,-368.437],[247.014,-365.732],[244.812,-373.896],[233.202,-375.328]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.412,-4.886],[-8.316,0.301],[-8.696,0.023],[19.846,2.907],[5.025,-0.604]],"o":[[-5.824,5.258],[16.754,-0.606],[4.07,-0.011],[-14.315,-2.097],[-7.321,0.88]],"v":[[188.396,-372.408],[202.595,-365.629],[235.029,-365.913],[234.764,-376.269],[207.821,-377.38]]}],"t":38.709},{"e":[{"c":true,"i":[[-0.174,-0.783],[-1.859,0.883],[-0.719,0.551],[2.412,-0.802],[0.965,-0.712]],"o":[[0.314,1.41],[2.656,-1.262],[1.801,-1.379],[-1.264,0.421],[-1.803,1.33]],"v":[[267.812,-373.158],[270.939,-373.029],[273.177,-375.201],[272.191,-377.205],[269.581,-375.541]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.7,-2.166],[-5.35,-1.792],[-6.171,-0.15],[14.241,0.353],[3.585,-0.214]],"o":[[-0.706,2.186],[8.455,2.77],[6.613,0.161],[-10.272,-0.255],[-6.384,0.381]],"v":[[223.108,-372.022],[231.508,-368.437],[247.014,-365.732],[244.812,-373.896],[233.202,-375.328]]}],"t":41.936},{"t":46.7734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[198.41,-369.918]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"t":47.88671875}]},"p":{"a":0,"ix":2,"k":[281.463,-243.895]},"r":{"a":0,"ix":6,"k":86},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[3.112,19.412],[10.674,35.553],[17.968,31.767],[-30.425,13.391],[-28.972,-20.264],[-65.185,-11.41],[-12.448,-15.094],[-3.625,-8.609]],"o":[[-6.059,-37.793],[-15.271,-50.864],[-38.098,-67.356],[27.167,-11.957],[24.968,17.464],[31.565,5.525],[21.536,26.113],[3.625,8.609]],"v":[[-144.234,12.644],[-163.892,-135.328],[-233.902,-223.644],[-184.553,-335.632],[13.435,-282.458],[207.518,-281.588],[278.464,-263.113],[287.711,-177.953]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[21.095,24.799],[16.041,56.309],[6.528,29.004],[-60.825,1.267],[-28.794,-18.478],[-51.085,-10.087],[-13.359,-20.562],[-3.682,-7.089]],"o":[[-27.877,-32.773],[-10.17,-35.701],[-15.075,-66.979],[36.436,-0.759],[42.169,27.061],[37.502,7.405],[11.291,17.378],[3.682,7.089]],"v":[[-149.917,13.092],[-170.183,-136.964],[-239.925,-242.521],[-159.175,-341.267],[13.576,-279.962],[210.364,-290.231],[279.209,-253.378],[286.649,-180.337]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[13.732,29.52],[11.815,58.349],[10.077,29.724],[-48.147,12.056],[-32.713,-11.666],[-51.744,-7.909],[-9.299,-14.759],[-4.642,-6.714]],"o":[[-19.529,-41.981],[-10.04,-49.583],[-10.077,-29.724],[28.793,-7.21],[49.243,17.561],[30.359,4.64],[8.228,13.059],[3.517,5.087]],"v":[[-145.471,16.481],[-165.572,-147.211],[-241.62,-241.508],[-173.362,-334.464],[27.008,-272.711],[209.201,-286.814],[276.373,-257.803],[288.003,-173.706]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":23.359},{"t":46.71875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":10.512},{"t":33.87109375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.615686297417,0.913725554943,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":8}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":10,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[1,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[1,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[140],"t":10.484},{"t":47.580078125}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[147,147,100],"t":10.484},{"t":27.419921875}]}},"nm":"Shape Layer 4","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-18.451,-4.052],[7.493,3.259],[5.104,0.62]],"o":[[1.364,12.913],[11.894,2.612],[-7.498,-3.261],[-5.104,-0.62]],"v":[[270.136,-60.913],[304.606,-52.112],[313.007,-69.259],[290.247,-70.654]]}],"t":48.387},{"e":[{"c":true,"i":[[-2.93,-3.249],[-3.411,-1.038],[4.744,3.316],[3.615,0.439]],"o":[[5.527,6.129],[8.253,2.511],[-4.747,-3.319],[-3.615,-0.439]],"v":[[344.43,-43.937],[351.64,-38.002],[357.405,-45.184],[353.718,-46.941]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"t":52.143},{"t":54.478515625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[293,-62.359]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.221},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.479},{"t":55.64453125}]},"p":{"a":0,"ix":2,"k":[108,-185.359]},"r":{"a":0,"ix":6,"k":8},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.76,1.884],[4.168,5.124],[7.914,1.98],[-11.948,-10.523],[-7.558,-15.742]],"o":[[4.251,-4.551],[-10.833,-13.319],[-12.347,-3.088],[9.171,8.077],[4.37,9.103]],"v":[[381.443,-19.093],[379.333,-33.681],[340.847,-63.912],[324.829,-51.077],[359.058,-23.758]]}],"t":47.58},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":51.084},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[394.302,8.896],[395.719,6.526],[393.778,1.863],[389.586,3.258],[391.524,8.248]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":53.42},{"t":58.091796875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[353.641,-44.633]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.092},{"t":59.259765625}]},"p":{"a":0,"ix":2,"k":[157.641,-152.633]},"r":{"a":0,"ix":6,"k":16},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-1.312,8.218],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[3.153,-19.75],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[404.847,96.25],[405.009,37.969],[388.084,33.044],[388.378,84.251]]}],"t":45.885},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"t":50.584},{"e":[{"c":true,"i":[[-0.903,5.742],[4.241,1.687],[4.241,3.281],[0.416,-8.294],[-5.302,-3.291]],"o":[[1.218,-7.751],[-3.46,-1.376],[-2.145,-1.66],[-0.368,7.354],[4.607,2.86]],"v":[[443.903,153.258],[438.46,145.376],[432.259,139.219],[423.084,146.294],[431.643,155.64]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"t":56.424},{"t":65.767578125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[398.555,63.389]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.744},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.912},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":65.768},{"t":66.935546875}]},"p":{"a":0,"ix":2,"k":[247.555,63.389]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.324,7.335],[0.152,-9.506],[-2.384,-0.906],[-2.409,4.542]],"o":[[-8.624,-11.881],[-0.123,7.651],[2.384,0.906],[2.409,-4.542]],"v":[[349.124,166.381],[325.603,197.485],[337.731,202.574],[344.72,184.091]]}],"t":42.047},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[319.08,229.772],[315.02,235.155],[318.952,236.806],[321.056,234.055]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"t":45.551},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[337.186,183.275]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.879},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[104.186,180.275]},"r":{"a":0,"ix":6,"k":79},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":40.879},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":45.551},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":50.223},{"t":54.89453125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[323.852,221.168]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":54.895},{"t":56.0625}]},"p":{"a":0,"ix":2,"k":[54.852,164.168]},"r":{"a":0,"ix":6,"k":97},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.679,-3.237],[-0.517,4.848],[1.969,-0.558],[0.664,-2.606]],"o":[[8.09,10.017],[0.417,-3.897],[-1.969,0.558],[-0.969,3.802]],"v":[[405.614,313.083],[414.667,298.965],[410.333,294.572],[404.595,302.826]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.795,-5.998],[-6.373,12.088],[4.518,-1.6],[3.021,-4.16]],"o":[[13.088,11.553],[3.569,-6.769],[-3.223,1.142],[-3.021,4.16]],"v":[[385.32,338.854],[419.885,311.036],[406.184,302.873],[394.003,314.89]]}],"t":36.291},{"e":[{"c":true,"i":[[-0.988,-0.454],[0.126,1.819],[1.409,0.146],[0.852,-0.91]],"o":[[2.559,1.176],[-0.101,-1.455],[-0.32,-0.174],[-1.643,1.754]],"v":[[412.365,292.824],[414.874,290.201],[413.099,289.039],[411.343,289.658]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.679,-3.237],[-0.517,4.848],[1.969,-0.558],[0.664,-2.606]],"o":[[8.09,10.017],[0.417,-3.897],[-1.969,0.558],[-0.969,3.802]],"v":[[405.614,313.083],[414.667,298.965],[410.333,294.572],[404.595,302.826]]}],"t":40.322},{"t":43.1875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[407.156,310.85]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":35.039},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":36.207},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.188},{"t":44.35546875}]},"p":{"a":0,"ix":2,"k":[-131.844,173.85]},"r":{"a":0,"ix":6,"k":229},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-4.532,12.868],[10.898,-0.052],[5.649,8.585],[-4.064,-19.622],[-3.802,-3.34]],"o":[[2.607,-7.401],[-14.767,0.07],[-2.261,-3.445],[2.358,11.386],[11.289,9.917]],"v":[[385.463,348.975],[368.239,333.893],[335.471,309.489],[328.706,316.715],[346.925,345.112]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[5.5,6.245],[4.887,9.041],[-7.602,-18.562],[-3.068,-4.025]],"o":[[7.317,-2.832],[-9.238,-10.49],[-6.119,-11.321],[5.184,12.658],[7.711,10.117]],"v":[[347.016,347.734],[352.084,327.928],[327.391,296.339],[308.941,297.289],[331.78,336.989]]}],"t":39.516},{"e":[{"c":true,"i":[[-8.094,2.97],[11.386,-1.475],[7.828,0.358],[-6.48,-3.777],[-4.068,-0.501]],"o":[[5.296,-1.944],[-9.486,4.744],[-2.961,0.265],[6.594,3.735],[10.126,1.246]],"v":[[400.442,345.247],[396.945,331.977],[375.01,335.171],[369.236,342.852],[382.771,346.994]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-4.532,12.868],[10.898,-0.052],[5.649,8.585],[-4.064,-19.622],[-3.802,-3.34]],"o":[[2.607,-7.401],[-14.767,0.07],[-2.261,-3.445],[2.358,11.386],[11.289,9.917]],"v":[[385.463,348.975],[368.239,333.893],[335.471,309.489],[328.706,316.715],[346.925,345.112]]}],"t":44.355},{"e":[{"c":true,"i":[[-1.227,0.43],[1.803,0.107],[2.109,0.356],[0.189,-1.037],[-2.011,-0.254]],"o":[[2.912,-1.02],[-1.289,-0.076],[-1.607,-0.272],[-0.125,0.685],[2.567,0.324]],"v":[[408.639,336.559],[408.766,332.761],[404.083,333.618],[401.638,334.535],[403.674,336.207]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-8.094,2.97],[11.386,-1.475],[7.828,0.358],[-6.48,-3.777],[-4.068,-0.501]],"o":[[5.296,-1.944],[-9.486,4.744],[-2.961,0.265],[6.594,3.735],[10.126,1.246]],"v":[[400.442,345.247],[396.945,331.977],[375.01,335.171],[369.236,342.852],[382.771,346.994]]}],"t":49.193},{"e":[{"c":true,"i":[[-0.997,0.637],[2.053,0.116],[0.765,-0.196],[-1.074,-1.941],[-1.524,1.037]],"o":[[1.081,-0.69],[-1.172,-0.066],[-1.436,0.367],[0.307,0.554],[0.686,-0.467]],"v":[[418.342,330.83],[417.401,328.631],[416.032,328.723],[414.592,331.789],[416.978,331.8]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.227,0.43],[1.803,0.107],[2.109,0.356],[0.189,-1.037],[-2.011,-0.254]],"o":[[2.912,-1.02],[-1.289,-0.076],[-1.607,-0.272],[-0.125,0.685],[2.567,0.324]],"v":[[408.639,336.559],[408.766,332.761],[404.083,333.618],[401.638,334.535],[403.674,336.207]]}],"t":54.033},{"t":59.677734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[328.814,317.986]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":38.543},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":39.711},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":59.566},{"t":60.734375}]},"p":{"a":0,"ix":2,"k":[-60.186,155.986]},"r":{"a":0,"ix":6,"k":108},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-19.408,3.137],[-19.5,-21],[-46.37,-67.073],[49.191,-113.654],[47.576,19.36],[54.339,-14.267],[23.774,17.431],[32.642,42.74]],"o":[[99,-16],[38.289,41.234],[32.013,46.306],[-14.415,33.304],[-65.513,-26.659],[-47.762,12.54],[-35.67,-26.152],[-33.953,-44.457]],"v":[[32,-184],[142.5,-166],[204.373,-56.72],[223.746,148.873],[69.527,166.82],[-56.312,159.032],[-196.774,161.569],[-256.642,8.26]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.321,31.724],[-25.23,-11.681],[-44.123,-48.72],[32.583,-56.711],[37.658,17.892],[48.518,-11.655],[18.476,12.879],[34.214,46.676]],"o":[[-4.5,-19.5],[54,25],[48.026,53.029],[-34.691,60.381],[-44.087,-20.946],[-48.518,11.655],[-35.723,-24.902],[-30.244,-41.259]],"v":[[28.5,-184.5],[124,-182],[207.225,-56.11],[229.302,145.073],[73.942,176.399],[-65.398,154.268],[-206.927,155.694],[-260.214,4.324]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-31.28,-9.029],[-26.684,-10.45],[-46.732,-42.263],[61.896,-78.899],[30.339,16.905],[26.961,-22.519],[17.029,21.172],[12.787,36.703]],"o":[[48.5,14],[71.5,28],[22.05,19.941],[-22.042,28.097],[-45.625,-25.423],[-40.175,33.556],[-30.84,-38.342],[-11.284,-32.387]],"v":[[28.5,-187],[125.5,-178],[205.738,-58.182],[222.096,154.749],[75.499,174.794],[-60.914,157.995],[-202.724,155.315],[-258.787,0.297]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":25.695},{"t":49.0546875}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":12.848},{"t":36.20703125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.207843154669,0.521568655968,0.98431378603,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":11}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":11,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-59,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,5,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[110],"t":4.033},{"t":36.291015625}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[162,162,100],"t":4.033},{"t":29.033203125}]}},"nm":"Shape Layer 3","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[421.051,218.79],[427.182,171.638],[410.614,174.093],[398.87,211.585]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[419.019,214.743],[427.182,171.638],[410.614,174.093],[402.747,212.047]]}],"t":33.871},{"e":[{"c":true,"i":[[-7.901,-5.866],[-5.204,5.248],[0.552,15.963],[2.497,-10.999],[16.333,-11.642]],"o":[[6.138,4.708],[10.993,-11.085],[-0.312,-9.012],[-3.273,14.414],[-6.691,9.19]],"v":[[382.683,247.373],[403.219,239.01],[422.998,195.364],[410.31,188.564],[383.558,225.318]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-9.478,-5.703],[-2.937,5.985],[0.706,8.203],[1.043,-16.034],[3.425,-6.409]],"o":[[6.508,3.916],[7.707,-15.706],[-0.975,-11.327],[-0.804,12.36],[-4.803,8.987]],"v":[[401.486,233.991],[421.051,218.79],[427.182,171.638],[410.614,174.093],[398.87,211.585]]}],"t":44.355},{"e":[{"c":true,"i":[[-6.324,-6.028],[-5.645,6.114],[-6.999,14.134],[9.853,-17.471],[23.111,-19.238]],"o":[[5.769,5.499],[22.604,-24.479],[7.752,-15.655],[-10.82,19.184],[-9.777,8.138]],"v":[[363.983,263.669],[385.386,259.231],[418.815,219.091],[408.306,205.927],[371.285,240.06]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.901,-5.866],[-5.204,5.248],[0.552,15.963],[2.497,-10.999],[16.333,-11.642]],"o":[[6.138,4.708],[10.993,-11.085],[-0.312,-9.012],[-3.273,14.414],[-6.691,9.19]],"v":[[382.683,247.373],[403.219,239.01],[422.998,195.364],[410.31,188.564],[383.558,225.318]]}],"t":46.773},{"e":[{"c":true,"i":[[-7.27,-0.812],[-1.416,8.2],[-6.694,8.68],[18.019,-8.81],[3.481,-19.9]],"o":[[7.798,0.871],[2.93,-16.961],[6.69,-8.675],[-13.89,6.791],[-2.192,12.53]],"v":[[357.253,291.519],[373.936,278.357],[384.557,249.111],[382.687,232.767],[348.497,273.634]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-6.324,-6.028],[-5.645,6.114],[-6.999,14.134],[9.853,-17.471],[23.111,-19.238]],"o":[[5.769,5.499],[22.604,-24.479],[7.752,-15.655],[-10.82,19.184],[-9.777,8.138]],"v":[[363.983,263.669],[385.386,259.231],[418.815,219.091],[408.306,205.927],[371.285,240.06]]}],"t":49.193},{"e":[{"c":true,"i":[[-2.752,2.958],[1.788,2.62],[0.924,3.673],[1.499,-4.39],[-1.288,-4.509]],"o":[[3.714,-3.993],[-1.459,-2.138],[-0.623,-2.477],[-1.193,3.495],[1.036,3.624]],"v":[[359.979,298.683],[359.906,292.026],[357.126,286.36],[352.062,284.793],[351.988,295.291]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.27,-0.812],[-1.416,8.2],[-6.694,8.68],[18.019,-8.81],[3.481,-19.9]],"o":[[7.798,0.871],[2.93,-16.961],[6.69,-8.675],[-13.89,6.791],[-2.192,12.53]],"v":[[357.253,291.519],[373.936,278.357],[384.557,249.111],[382.687,232.767],[348.497,273.634]]}],"t":55.645},{"t":62.09765625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":43.215},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":44.383},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.902},{"t":63.0703125}]},"p":{"a":0,"ix":2,"k":[-133,-292]},"r":{"a":0,"ix":6,"k":33},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.901,178.052],[211.47,186.061]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.051,175.701],[211.47,186.061]]}],"t":33.871},{"e":[{"c":true,"i":[[-0.481,11.702],[12.009,-2.588],[-3.21,-0.747],[-6.422,-1.703]],"o":[[0.475,-11.551],[-9.667,2.084],[8.655,2.014],[6.422,1.703]],"v":[[177.664,166.721],[142.409,158.299],[139.551,175.054],[162.819,178.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.079,6.417],[13.804,-3.257],[-3.342,-1.821],[-7.45,-1.822]],"o":[[13.842,-6.791],[-11.111,2.621],[11.078,6.036],[7.45,1.822]],"v":[[240.86,184],[183.299,160.668],[178.901,178.052],[211.47,186.061]]}],"t":40.879},{"e":[{"c":true,"i":[[0.227,2.93],[2.915,-1.001],[0.014,-0.827],[-1.65,-0.234]],"o":[[-0.225,-2.892],[-2.347,0.806],[-0.014,0.827],[1.65,0.234]],"v":[[130.301,172.278],[123.858,170.29],[123.643,174.549],[126.945,175.592]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.481,11.702],[12.009,-2.588],[-3.21,-0.747],[-6.422,-1.703]],"o":[[0.475,-11.551],[-9.667,2.084],[8.655,2.014],[6.422,1.703]],"v":[[177.664,166.721],[142.409,158.299],[139.551,175.054],[162.819,178.258]]}],"t":44.383},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":39.711},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":40.879},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-215,10]},"r":{"a":0,"ix":6,"k":-17},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.795,-1.654],[-0.094,6.531],[2.11,10.058],[2.206,-14.033],[-2.023,-4.639]],"o":[[5.808,3.437],[0.071,-4.912],[-0.836,-3.983],[-1.581,10.057],[2.916,6.687]],"v":[[323.226,281.826],[332.338,273.857],[322.17,243.788],[309.081,236.943],[316.032,275.062]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[1.291,-5.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-2.513,11.079],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[312.98,196.381],[299.709,202.194],[307.371,241.392]]}],"t":36.207},{"e":[{"c":true,"i":[[-2.205,1.491],[2.596,4.475],[3.862,3.441],[4.045,-5.587],[-3.484,-3.652]],"o":[[2.612,-1.766],[-1.522,-2.624],[-2.407,-2.145],[-4.817,6.654],[6.383,6.69]],"v":[[331.075,291.106],[331.84,281.644],[326.268,274.029],[315.877,263.087],[319.117,287.31]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.795,-1.654],[-0.094,6.531],[2.11,10.058],[2.206,-14.033],[-2.023,-4.639]],"o":[[5.808,3.437],[0.071,-4.912],[-0.836,-3.983],[-1.581,10.057],[2.916,6.687]],"v":[[323.226,281.826],[332.338,273.857],[322.17,243.788],[309.081,236.943],[316.032,275.062]]}],"t":40.879},{"e":[{"c":true,"i":[[-2.219,0.206],[-1.135,2.005],[1.633,0.304],[1.229,0.296],[-2.832,-1.801]],"o":[[2.9,-0.269],[1.252,-2.21],[-2.653,-0.495],[-3.199,-0.771],[2.135,1.358]],"v":[[330.207,293.678],[333.87,292.552],[332.987,288.016],[328.434,287.093],[326.831,291.901]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.205,1.491],[2.596,4.475],[3.862,3.441],[4.045,-5.587],[-3.484,-3.652]],"o":[[2.612,-1.766],[-1.522,-2.624],[-2.407,-2.145],[-4.817,6.654],[6.383,6.69]],"v":[[331.075,291.106],[331.84,281.644],[326.268,274.029],[315.877,263.087],[319.117,287.31]]}],"t":45.551},{"t":50.22265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[311.738,226.23]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":35.039},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":36.207},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.223},{"t":51.390625}]},"p":{"a":0,"ix":2,"k":[-155.262,151.23]},"r":{"a":0,"ix":6,"k":123},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[4.248,3.123],[2,-4.932],[-1.974,0.319],[-2.787,2.913]],"o":[[-7.325,-5.384],[-2.255,5.56],[1.974,-0.319],[4.226,-4.416]],"v":[[-179.774,265.316],[-193.599,273.114],[-189.441,280.448],[-184.075,275.347]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.478,-2.921],[2.11,-8.245],[-1.668,1.103],[-0.976,3.911]],"o":[[-9.641,4.347],[-1.488,5.813],[4.132,-2.733],[1.617,-6.481]],"v":[[-200.047,280.328],[-209.579,310.509],[-203.3,317.556],[-197.226,301.916]]}],"t":33.871},{"e":[{"c":true,"i":[[1.183,0.665],[0,-1.37],[-0.508,0.082],[-0.511,0.903]],"o":[[-0.405,-0.228],[0,1.112],[0.508,-0.082],[0.316,-0.558]],"v":[[-177.262,258.624],[-178.89,259.73],[-178.206,261.168],[-176.567,260.048]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[4.248,3.123],[2,-4.932],[-1.974,0.319],[-2.787,2.913]],"o":[[-7.325,-5.384],[-2.255,5.56],[1.974,-0.319],[4.226,-4.416]],"v":[[-179.774,265.316],[-193.599,273.114],[-189.441,280.448],[-184.075,275.347]]}],"t":37.902},{"e":[{"c":true,"i":[[0.836,1.069],[0.528,-1.265],[-0.501,-0.12],[-0.82,0.637]],"o":[[-0.286,-0.366],[-0.428,1.026],[0.501,0.12],[0.506,-0.393]],"v":[[-176.806,258.966],[-178.735,259.36],[-178.657,260.95],[-176.713,260.548]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.183,0.665],[0,-1.37],[-0.508,0.082],[-0.511,0.903]],"o":[[-0.405,-0.228],[0,1.112],[0.508,-0.082],[0.316,-0.558]],"v":[[-177.262,258.624],[-178.89,259.73],[-178.206,261.168],[-176.567,260.048]]}],"t":41.045},{"t":41.12890625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-201.517,300.108]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.869},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":34.037},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.045},{"t":42.21484375}]},"p":{"a":0,"ix":2,"k":[-223.284,-41.979]},"r":{"a":0,"ix":6,"k":-20},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.656,2.794],[7.194,0.91],[5.037,6.761],[0.877,-7.851],[-5.98,-1.554]],"o":[[4,-6.75],[-12.603,-1.594],[-1.994,-2.677],[-1.303,11.668],[10.729,2.788]],"v":[[-144.875,343.375],[-156.511,333.024],[-191.674,311.069],[-199.377,315.851],[-169.77,342.804]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.656,2.794],[7.707,-3.14],[9.75,3.25],[-9.11,-17.87],[-4.9,-1.267]],"o":[[4,-6.75],[-13.5,5.5],[-3.861,-1.287],[6.5,12.75],[12.316,3.184]],"v":[[-124.5,346.25],[-136.25,337.25],[-179.75,327.75],[-189.5,331.25],[-149.6,347.767]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.466,2.114],[6.682,4.96],[0.323,10.272],[6.254,-6.701],[-2.722,-4.266]],"o":[[5.25,-4.5],[-11.706,-8.688],[-0.128,-4.068],[-9.764,10.463],[7.439,11.659]],"v":[[-176.75,335.5],[-180.772,323.048],[-195.097,297.389],[-201.754,289.451],[-199.939,319.091]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.656,2.794],[7.194,0.91],[5.037,6.761],[0.877,-7.851],[-5.98,-1.554]],"o":[[4,-6.75],[-12.603,-1.594],[-1.994,-2.677],[-1.303,11.668],[10.729,2.788]],"v":[[-144.875,343.375],[-156.511,333.024],[-191.674,311.069],[-199.377,315.851],[-169.77,342.804]]}],"t":37.375},{"e":[{"c":true,"i":[[-3,-0.5],[0.128,4.198],[-0.802,5.812],[7.132,-5.649],[0.411,-5.359]],"o":[[3,0.5],[-0.128,-4.198],[1.118,-3.763],[-5.843,5.427],[-0.411,5.359]],"v":[[-199,310.25],[-192.622,303.198],[-190.057,288.853],[-196.364,282.839],[-204.089,300.391]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.466,2.114],[6.682,4.96],[0.323,10.272],[6.254,-6.701],[-2.722,-4.266]],"o":[[5.25,-4.5],[-11.706,-8.688],[-0.128,-4.068],[-9.764,10.463],[7.439,11.659]],"v":[[-176.75,335.5],[-180.772,323.048],[-195.097,297.389],[-201.754,289.451],[-199.939,319.091]]}],"t":40.879},{"e":[{"c":true,"i":[[-1.144,0],[-1.307,2.623],[-0.547,0.999],[2.718,-1.742],[0.525,-1.315]],"o":[[0.968,0],[0.184,-0.369],[0.686,-1.254],[-1.137,0.729],[-0.374,0.936]],"v":[[-189.856,280.797],[-186.342,279.141],[-185.436,276.892],[-187.574,275.225],[-190.187,277.835]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3,-0.5],[0.128,4.198],[-0.802,5.812],[7.132,-5.649],[0.411,-5.359]],"o":[[3,0.5],[-0.128,-4.198],[1.118,-3.763],[-5.843,5.427],[-0.411,5.359]],"v":[[-199,310.25],[-192.622,303.198],[-190.057,288.853],[-196.364,282.839],[-204.089,300.391]]}],"t":44.383},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[-158.706,337.807]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[-206.637,100.803]},"r":{"a":0,"ix":6,"k":52},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-5.885,-18.758],[27.378,-25.069],[32,-25],[43.701,-23.415],[29.194,-19.942],[19.717,46.737],[0.948,16.073],[-2.882,19.018],[-17.763,21.089]],"o":[[16,51],[-41.5,38],[-44.473,34.744],[-26.163,14.018],[-43.249,29.543],[-12.61,-29.891],[-0.948,-16.073],[7.193,-47.469],[17.763,-21.089]],"v":[[160,-121],[159.5,18],[101,106],[-27.584,128.335],[-95.515,150.94],[-207.717,102.263],[-217.944,14.161],[-232.193,-106.531],[-185.004,-197.671]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[1.135,-32.538],[40.581,-42.204],[59.5,-4.5],[57.859,-13.541],[35.181,-22.373],[19.405,41.321],[0.434,29.526],[-0.99,13.305],[-10.765,15.342]],"o":[[-1.5,43],[-25,26],[-71.34,5.395],[-40.448,9.466],[-40.591,25.814],[-14.518,-30.915],[-0.434,-29.527],[4.118,-55.326],[10.765,-15.342]],"v":[[161.5,-121.5],[153,28],[73.5,117],[-27.859,122.041],[-93.917,153.889],[-213.195,93.897],[-219.069,9.063],[-233.118,-108.674],[-191.644,-191.575]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[6.725,-31.855],[43.5,-41],[35,-35],[64.433,-24.076],[29.307,-18.638],[20.481,33.129],[-3.033,17.148],[-3.437,16.453],[-14.649,15.745]],"o":[[-9.5,45],[-36.814,34.698],[-21.022,21.022],[-33.451,12.5],[-35.181,22.373],[-22.251,-35.992],[3.033,-17.148],[11.33,-54.236],[14.649,-15.745]],"v":[[162.5,-116],[145,25.5],[101,104],[-14.431,120.704],[-93.59,151.677],[-209.182,101.669],[-219.707,4.839],[-230.33,-112.764],[-185.666,-194.127]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":18.688},{"t":45.55078125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":4.672},{"t":28.03125}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.478431403637,0.84705889225,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":8}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":12,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[2,-61,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[2,3,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[145],"t":4.033},{"t":41.935546875}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[165,165,100],"t":4.033},{"t":25.806640625}]}},"nm":"Shape Layer 1","op":794,"parent":1,"shapes":[{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.361,6.661],[9.412,10.595],[-3.111,-5.282],[-3.29,-2.014]],"o":[[-1.75,-8.563],[-6.067,-6.83],[3.113,5.286],[3.29,2.014]],"v":[[312.912,-55.962],[297.26,-71.67],[284.883,-66.488],[296.153,-55.583]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.549,10.146],[19.703,7.766],[-7.715,-4.94],[-5.539,-1.593]],"o":[[0.786,-14.537],[-12.701,-5.006],[7.72,4.943],[5.539,1.593]],"v":[[357.714,-44.424],[321.123,-60.295],[308.775,-42.809],[333.721,-37.218]]}],"t":42.047},{"e":[{"c":true,"i":[[0.541,4.341],[2.202,2.804],[-1.99,-5.435],[-2.712,-2.43]],"o":[[-1.02,-8.19],[-5.328,-6.785],[1.991,5.439],[2.712,2.43]],"v":[[291.516,-70.561],[289.004,-79.556],[280.166,-76.97],[282.182,-73.418]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.361,6.661],[9.412,10.595],[-3.111,-5.282],[-3.29,-2.014]],"o":[[-1.75,-8.563],[-6.067,-6.83],[3.113,5.286],[3.29,2.014]],"v":[[312.912,-55.962],[297.26,-71.67],[284.883,-66.488],[296.153,-55.583]]}],"t":45.551},{"t":47.88671875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.879},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.887},{"t":49.0546875}]},"p":{"a":0,"ix":2,"k":[-559,161]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[0.295,2.561],[6.597,-0.334],[9.416,-2.383],[-12.552,-3.048],[-9.548,3.233]],"o":[[-0.807,-7.006],[-9.833,0.497],[-11.045,2.795],[11.875,2.883],[11.707,-3.964]],"v":[[-175.469,106.444],[-193.814,106.123],[-222.955,104.205],[-220.948,123.048],[-189.707,120.464]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.223,1.907],[4.317,-3.88],[4.344,-5.703],[-12.641,5.995],[-11.776,9.837]],"o":[[-2.955,-4.606],[-14.334,12.885],[-6.777,8.897],[9.702,-4.602],[12.608,-10.531]],"v":[[-132.286,80.478],[-150.666,79.115],[-190.95,104.669],[-179.645,115.553],[-146.608,98.531]]}],"t":43.215},{"e":[{"c":true,"i":[[-0.178,2.15],[5.427,0.92],[6.446,1.2],[-7.449,-5.526],[-10.039,-0.321]],"o":[[0.41,-5.607],[-8.68,-1.612],[-7.02,-0.735],[6.848,4.674],[9.559,-0.463]],"v":[[-211.051,113.151],[-220.9,108.102],[-242.142,100.216],[-246.327,113.453],[-223.511,119.606]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[0.295,2.561],[6.597,-0.334],[9.416,-2.383],[-12.552,-3.048],[-9.548,3.233]],"o":[[-0.807,-7.006],[-9.833,0.497],[-11.045,2.795],[11.875,2.883],[11.707,-3.964]],"v":[[-175.469,106.444],[-193.814,106.123],[-222.955,104.205],[-220.948,123.048],[-189.707,120.464]]}],"t":46.719},{"e":[{"c":true,"i":[[-0.359,1.754],[4.357,1.435],[3.609,3.904],[-3.061,-6.971],[-10.526,-2.514]],"o":[[0.866,-4.237],[-7.705,-2.538],[-3.061,-3.312],[2.422,5.517],[7.305,1.745]],"v":[[-242.804,109.709],[-244.795,101.288],[-259.109,90.346],[-267.672,98.483],[-252.555,110.255]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.178,2.15],[5.427,0.92],[6.446,1.2],[-7.449,-5.526],[-10.039,-0.321]],"o":[[0.41,-5.607],[-8.68,-1.612],[-7.02,-0.735],[6.848,4.674],[9.559,-0.463]],"v":[[-211.051,113.151],[-220.9,108.102],[-242.142,100.216],[-246.327,113.453],[-223.511,119.606]]}],"t":49.055},{"e":[{"c":true,"i":[[-0.66,0.756],[0.251,1.021],[1.433,0.64],[-1.479,-2.424],[-1.953,-0.893]],"o":[[1.176,-1.347],[-0.475,-1.933],[-2.309,-1.031],[0.976,1.6],[1.024,0.469]],"v":[[-266.971,91.259],[-267.117,88.039],[-270.218,85.624],[-273.387,88.797],[-270.547,91.768]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.359,1.754],[4.357,1.435],[3.609,3.904],[-3.061,-6.971],[-10.526,-2.514]],"o":[[0.866,-4.237],[-7.705,-2.538],[-3.061,-3.312],[2.422,5.517],[7.305,1.745]],"v":[[-242.804,109.709],[-244.795,101.288],[-259.109,90.346],[-267.672,98.483],[-252.555,110.255]]}],"t":51.391},{"t":53.7265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.047},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.215},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.727},{"t":54.89453125}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-1.442,-2.91],[-5.045,6.618],[-8.843,5.238],[19.731,-3.608],[11.564,-12.167]],"o":[[2.661,5.368],[10.435,-13.688],[8.338,-4.938],[-16.451,3.008],[-7.711,8.114]],"v":[[-49.911,85.632],[-30.934,79.381],[5.662,61.938],[-3.549,45.992],[-42.314,67.417]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.417,-2.922],[-8.084,1.975],[-8.679,-0.998],[19.717,-3.683],[15.906,-1.755]],"o":[[-3.423,7.06],[20.948,-5.118],[14.1,1.621],[-15.198,2.839],[-12.644,1.395]],"v":[[-22.2,53.363],[-5.198,62.868],[38.929,56.248],[40.089,39.882],[3.594,44.755]]}],"t":46.719},{"e":[{"c":true,"i":[[-3.124,-0.889],[-2.166,8.035],[-4.364,9.305],[8.677,-7.912],[1.189,-6.126]],"o":[[7.547,2.147],[4.481,-16.619],[4.651,-9.918],[-11.425,10.417],[-2.424,12.487]],"v":[[-59.331,139.22],[-52.229,126.417],[-44.784,102.206],[-52.927,81.787],[-64.055,109.753]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.442,-2.91],[-5.045,6.618],[-8.843,5.238],[19.731,-3.608],[11.564,-12.167]],"o":[[2.661,5.368],[10.435,-13.688],[8.338,-4.938],[-16.451,3.008],[-7.711,8.114]],"v":[[-49.911,85.632],[-30.934,79.381],[5.662,61.938],[-3.549,45.992],[-42.314,67.417]]}],"t":52.559},{"e":[{"c":true,"i":[[-2.424,1.108],[0.428,2.048],[0.664,2.367],[0.439,-3.782],[-0.471,-1.952]],"o":[[3.272,-1.496],[-0.349,-1.671],[-0.78,-2.782],[-0.253,2.185],[0.583,2.417]],"v":[[-61.64,148.162],[-60.004,144.086],[-61.22,140.032],[-66.247,138.315],[-65.654,144.077]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.124,-0.889],[-2.166,8.035],[-4.364,9.305],[8.677,-7.912],[1.189,-6.126]],"o":[[7.547,2.147],[4.481,-16.619],[4.651,-9.918],[-11.425,10.417],[-2.424,12.487]],"v":[[-59.331,139.22],[-52.229,126.417],[-44.784,102.206],[-52.927,81.787],[-64.055,109.753]]}],"t":59.566},{"t":65.40625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.551},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.719},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":66.572},{"t":67.7421875}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.973,-1.051],[-0.058,5.729],[-1.931,6.807],[12.005,-6.824],[0.718,-3.41]],"o":[[4.767,2.54],[0.102,-10.098],[0.764,-2.696],[-8.566,4.869],[-1.805,8.57]],"v":[[317.96,240.543],[325.848,231.148],[331.302,212.189],[324.995,198.15],[315.595,227.811]]}],"t":28.031},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":32.703},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":37.375},{"t":42.046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":26.863},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":28.031},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":42.047},{"t":43.21484375}]},"p":{"a":0,"ix":2,"k":[-750,-113]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.628,-2.167],[-0.46,-1.816],[-0.691,0.323],[0.473,1.463]],"o":[[-0.536,0.714],[0.561,2.218],[0.691,-0.323],[-0.473,-1.463]],"v":[[-428.61,106.531],[-429.644,110.032],[-426.919,110.33],[-426.223,106.575]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.596,-4.38],[0.25,-4.125],[-2,0],[-0.5,4]],"o":[[-2.875,2.25],[-0.363,5.989],[2,0],[0.5,-4]],"v":[[-410.5,67.375],[-415.5,74.5],[-410,80],[-401.875,71.25]]}],"t":33.871},{"t":39.7109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.6,0.333333333333,0.984313785329,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":39.711},{"t":40.87890625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":true,"it":[{"hd":true,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-0.96,3.103],[7.296,-4.219],[-0.476,-4.042],[-7.741,3.727],[-7.442,9.586]],"o":[[2.869,-9.275],[-12.619,7.297],[0.476,4.042],[2.506,-1.206],[7.572,-9.753]],"v":[[-371.718,45.678],[-389.895,46.753],[-413.098,71.506],[-403.921,77.414],[-389.897,60.579]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.24,3.239],[7.707,-3.14],[0.75,-4],[-8.5,1.25],[-5.43,2.334]],"o":[[1,-13.5],[-13.5,5.5],[-0.75,4],[2.752,-0.405],[11.344,-4.876]],"v":[[-355,42.25],[-375.25,36.75],[-400.25,57.25],[-393,62.75],[-378.6,52.767]]}],"t":33.871},{"e":[{"c":true,"i":[[-2.713,4.211],[3.088,-3.743],[-0.635,-2.98],[-5.512,3.313],[-2.768,8.653]],"o":[[3.937,-6.108],[-6.944,8.417],[0.635,2.98],[1.784,-1.073],[0.543,-1.697]],"v":[[-402.446,71.108],[-408.746,69.388],[-417.03,85.045],[-409.782,88.814],[-406.45,77.669]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.96,3.103],[7.296,-4.219],[-0.476,-4.042],[-7.741,3.727],[-7.442,9.586]],"o":[[2.869,-9.275],[-12.619,7.297],[0.476,4.042],[2.506,-1.206],[7.572,-9.753]],"v":[[-371.718,45.678],[-389.895,46.753],[-413.098,71.506],[-403.921,77.414],[-389.897,60.579]]}],"t":38.543},{"e":[{"c":true,"i":[[0.561,1.74],[0.093,-1.247],[-0.579,-0.949],[-0.806,0.839],[0.024,1.087]],"o":[[-0.306,-0.95],[-0.067,0.907],[0.579,0.949],[0.332,-0.346],[-0.014,-0.65]],"v":[[-418.312,92.219],[-420.136,94.516],[-419.871,96.273],[-418.145,95.819],[-417.925,94.428]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.713,4.211],[3.088,-3.743],[-0.635,-2.98],[-5.512,3.313],[-2.768,8.653]],"o":[[3.937,-6.108],[-6.944,8.417],[0.635,2.98],[1.784,-1.073],[0.543,-1.697]],"v":[[-402.446,71.108],[-408.746,69.388],[-417.03,85.045],[-409.782,88.814],[-406.45,77.669]]}],"t":43.215},{"t":49.0546875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":true,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":32.703},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":33.871},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.055},{"t":50.22265625}]},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-1,22],[123.5,-13],[33,-17],[29,0],[17,19],[-9.499,24.13],[0.729,36.777],[-32.887,6.622],[-8.011,3.213]],"o":[[0.747,-16.43],[-30.398,3.2],[-33,17],[-29,0],[-19.792,-22.12],[9.089,-23.087],[-1.43,-72.116],[45.69,-9.199],[8.011,-3.213]],"v":[[156,18.5],[-15,54],[-134.5,86],[-209,103],[-270,52],[-267.74,-21.23],[-243.729,-110.777],[-162.559,-228.388],[-57.069,-230.979]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-34.711,-31.625],[16.377,-0.224],[49,-12.5],[29.512,3.587],[6.943,26.458],[-3.669,11.469],[0.093,10.659],[-49.053,-0.468],[-9.838,1.808]],"o":[[22.5,20.5],[-36.5,0.5],[-35.969,9.176],[-29.512,-3.586],[-9.25,-35.25],[7.304,-22.831],[-0.591,-67.706],[9.37,0.089],[9.838,-1.808]],"v":[[154.5,18],[-13.5,57.5],[-128,83],[-203.5,95.5],[-275.75,49.5],[-263.084,-23.438],[-248.409,-113.294],[-156.915,-236.114],[-54.184,-231.84]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[24,-22],[50.828,-3.279],[58.5,-25.5],[29.512,3.586],[8.5,26],[-8.802,24.037],[-1.102,8.68],[-52.994,14.316],[-11.989,2.514]],"o":[[-24,22],[-46.5,3],[-34.029,14.833],[-29.512,-3.587],[-9.223,-28.212],[11.83,-32.306],[12.236,-96.423],[34.114,-9.216],[11.989,-2.514]],"v":[[155.5,15],[-15.5,53],[-134.5,78],[-210,102],[-267,57.5],[-267.38,-26.045],[-254.236,-107.577],[-160.181,-236.934],[-52.471,-232.199]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":50.22265625}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 1","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":4.672},{"t":37.375}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.600000023842,0.333333343267,0.98431378603,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":13,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-60,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,4,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[120],"t":9.678},{"t":45.966796875}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[135,135,100],"t":9.678},{"t":28.2265625}]}},"nm":"Shape Layer 6","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.952,-9.013],[-18.451,-4.052],[7.493,3.259],[5.104,0.62]],"o":[[1.364,12.913],[11.894,2.612],[-7.498,-3.261],[-5.104,-0.62]],"v":[[270.136,-60.913],[304.606,-52.112],[313.007,-69.259],[290.247,-70.654]]}],"t":50.807},{"e":[{"c":true,"i":[[-2.93,-3.249],[-3.411,-1.038],[4.744,3.316],[3.615,0.439]],"o":[[5.527,6.129],[8.253,2.511],[-4.747,-3.319],[-3.615,-0.439]],"v":[[344.43,-43.937],[351.64,-38.002],[357.405,-45.184],[353.718,-46.941]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.363,-5.909],[-12.237,-7.148],[4.597,4.054],[3.752,0.892]],"o":[[4.323,7.596],[7.888,4.608],[-4.601,-4.057],[-3.752,-0.892]],"v":[[312.812,-57.316],[332.569,-47.245],[342.724,-56.015],[328.625,-62.881]]}],"t":54.561},{"t":56.896484375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[292.434,-60.719]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":49.639},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.807},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":56.896},{"t":58.064453125}]},"p":{"a":0,"ix":2,"k":[17.434,-251.719]},"r":{"a":0,"ix":6,"k":-29},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.663,-1.858],[-4.667,6.89],[1.817,10.116],[-0.539,-20.051],[1.627,-4.792]],"o":[[6.435,4.49],[9.653,-14.25],[-2.509,-13.969],[0.416,15.456],[-4.089,12.045]],"v":[[390,106.8],[404.847,96.25],[408.509,37.469],[388.084,33.044],[385.378,84.251]]}],"t":49.945},{"e":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.752,1.725],[4.516,6.989],[0.005,10.277],[-0.539,-20.051],[-15.062,-27.206]],"o":[[6.648,-4.167],[-9.341,-14.457],[-0.009,-17.469],[0.416,15.456],[6.161,11.129]],"v":[[424.873,148.291],[420.968,130.502],[407.009,76.969],[389.084,71.044],[399.416,129.381]]}],"t":54.617},{"e":[{"c":true,"i":[[-0.903,5.742],[4.241,1.687],[4.241,3.281],[0.416,-8.294],[-5.302,-3.291]],"o":[[1.218,-7.751],[-3.46,-1.376],[-2.145,-1.66],[-0.368,7.354],[4.607,2.86]],"v":[[443.903,153.258],[438.46,145.376],[432.259,139.219],[423.084,146.294],[431.643,155.64]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.591,1.958],[5.109,6.569],[2.204,10.038],[5.619,-19.255],[-4.174,-4.639]],"o":[[6.259,-4.731],[-10.567,-13.587],[-2.349,-10.7],[-4.331,14.842],[8.508,9.457]],"v":[[435.403,157.758],[429.46,144.376],[416.698,122.052],[397.806,110.811],[409.035,143.781]]}],"t":60.455},{"t":69.798828125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[396.555,65.137]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":48.775},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":49.945},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":69.799},{"t":70.966796875}]},"p":{"a":0,"ix":2,"k":[79.555,-281.863]},"r":{"a":0,"ix":6,"k":-114},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[5.51,0.798],[2.848,-11.949],[-3.735,7.145],[0.01,5.141]],"o":[[-14.529,-2.104],[-1.774,7.444],[4.86,-9.297],[-0.018,-8.885]],"v":[[329.808,160.641],[322.057,196.166],[335.144,203.18],[339.526,181.612]]}],"t":47.58},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[319.08,229.772],[315.02,235.155],[318.952,236.806],[321.056,234.055]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.44,1.778],[0.112,-7.007],[-1.758,-0.668],[-1.776,3.348]],"o":[[-6.358,-1.755],[-0.09,5.641],[1.758,0.668],[1.776,-3.348]],"v":[[327.801,200.755],[318.571,212.996],[327.512,216.748],[332.295,210.494]]}],"t":51.334},{"t":53.669921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[334.293,183.16]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":46.412},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":47.58},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.67},{"t":54.837890625}]},"p":{"a":0,"ix":2,"k":[267.293,-247.84]},"r":{"a":0,"ix":6,"k":-28},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[-2.226,7.848],[13.842,-7.868],[0.828,-3.931]],"o":[[5.497,2.929],[0.118,-11.643],[0.881,-3.108],[-9.876,5.614],[-2.081,9.88]],"v":[[318.598,248.071],[327.692,237.239],[333.98,215.381],[326.709,199.194],[315.871,233.392]]}],"t":46.912},{"e":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.942,-1.376],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[3.606,1.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[311.144,276.814],[320.352,270.667],[322.523,242.13],[316.613,230.988],[307.709,269.07]]}],"t":51.584},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[326.268,298.715],[330.098,298.615],[330.467,294.009],[326.33,291.896],[323.493,296.095]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.144,1.186],[1.879,6.256],[0.977,8.62],[6.602,-5.678],[-0.896,-4.981]],"o":[[3.724,-1.405],[-1.102,-3.667],[-0.458,-4.044],[-7.863,6.762],[1.291,7.18]],"v":[[320.144,292.814],[323.852,281.417],[318.773,272.38],[312.863,261.238],[308.709,286.57]]}],"t":56.256},{"t":60.927734375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[322.121,224.023]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.746},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.912},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.928},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[271.121,-187.977]},"r":{"a":0,"ix":6,"k":346},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-3.029,1.172],[10.666,-2.428],[5.654,8.583],[3.888,-19.677],[-3.068,-4.025]],"o":[[7.317,-2.832],[-14.214,3.235],[-2.239,-3.399],[-2.774,14.04],[7.711,10.117]],"v":[[387.004,343.266],[368.334,333.928],[335.518,309.566],[323.441,313.289],[347.839,341.19]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[8.824,9.246],[5.654,8.583],[-7.246,-18.703],[-3.068,-4.025]],"o":[[7.317,-2.832],[-10.064,-10.546],[-2.239,-3.399],[6.33,16.34],[7.711,10.117]],"v":[[355.754,342.266],[352.084,327.928],[329.768,295.566],[310.599,298.407],[334.885,333.794]]}],"t":45.551},{"e":[{"c":true,"i":[[-2.948,-1.363],[14.416,6.822],[15.482,-1.566],[-9.209,-5.155],[-5.059,0.157]],"o":[[6.996,3.234],[-13.176,-6.235],[-4.049,0.41],[9.309,5.211],[14.161,-0.44]],"v":[[397.754,346.766],[399.334,338.678],[367.268,330.816],[359.441,341.539],[376.839,344.44]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-3.029,1.172],[10.666,-2.428],[5.654,8.583],[3.888,-19.677],[-3.068,-4.025]],"o":[[7.317,-2.832],[-14.214,3.235],[-2.239,-3.399],[-2.774,14.04],[7.711,10.117]],"v":[[387.004,343.266],[368.334,333.928],[335.518,309.566],[323.441,313.289],[347.839,341.19]]}],"t":49.777},{"e":[{"c":true,"i":[[-2.948,-1.363],[4.166,7.572],[6.982,2.184],[2.809,-5.289],[-5.021,-0.635]],"o":[[6.996,3.234],[-1.554,-2.824],[-3.884,-1.215],[-0.816,1.536],[6.411,0.81]],"v":[[403.754,348.766],[410.584,342.178],[400.518,336.316],[390.691,339.289],[397.589,344.19]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.948,-1.363],[14.416,6.822],[15.482,-1.566],[-9.209,-5.155],[-5.059,0.157]],"o":[[6.996,3.234],[-13.176,-6.235],[-4.049,0.41],[9.309,5.211],[14.161,-0.44]],"v":[[397.754,346.766],[399.334,338.678],[367.268,330.816],[359.441,341.539],[376.839,344.44]]}],"t":54.449},{"e":[{"c":true,"i":[[-1.552,-1.544],[0.618,3.756],[0.662,1.304],[3.073,-2.723],[-2.487,-2.336]],"o":[[1.682,1.674],[-0.353,-2.144],[-1.242,-2.446],[-0.877,0.777],[1.12,1.052]],"v":[[408.79,349.826],[412.382,347.238],[411.664,344.803],[405.545,343.437],[406.487,347.752]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.948,-1.363],[4.166,7.572],[6.982,2.184],[2.809,-5.289],[-5.021,-0.635]],"o":[[6.996,3.234],[-1.554,-2.824],[-3.884,-1.215],[-0.816,1.536],[6.411,0.81]],"v":[[403.754,348.766],[410.584,342.178],[400.518,336.316],[390.691,339.289],[397.589,344.19]]}],"t":59.121},{"t":64.9609375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[328.254,317.867]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":44.381},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.551},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":64.961},{"t":66.12890625}]},"p":{"a":0,"ix":2,"k":[276.254,-124.133]},"r":{"a":0,"ix":6,"k":24},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 9","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.655,-2.672],[-1.957,-1.793],[-0.597,0.652],[1.155,1.358]],"o":[[-3.672,5.929],[1.957,1.793],[0.597,-0.652],[-1.155,-1.358]],"v":[[309.793,-274.248],[313.365,-263.794],[315.987,-264.692],[313.621,-268.658]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[6.97,1.386],[0.112,-7.555],[-1.974,0.319],[0.145,4.029]],"o":[[-11.153,-2.218],[-0.089,5.999],[1.974,-0.319],[-0.145,-4.029]],"v":[[304.825,-314.366],[294.698,-290.204],[300.718,-283.511],[307.158,-292.711]]}],"t":41.129},{"t":45.966796875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[299.937,-302.805]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":40.322},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":41.129},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"t":46.7734375}]},"p":{"a":0,"ix":2,"k":[274.688,71.682]},"r":{"a":0,"ix":6,"k":402},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[1.085,-2.593],[-7.2,0.179],[-7.392,-1.934],[1.588,4.551],[9.608,1.982]],"o":[[-2.621,6.265],[12.072,-0.3],[6.079,1.591],[-2.552,-7.31],[-10.783,-2.224]],"v":[[305.392,-348.662],[316.542,-342.354],[337.821,-336.969],[345.879,-341.41],[326.727,-352.967]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[2.992,-1.263],[-6.903,-4.647],[-8.561,-5.687],[18.988,6.146],[8.432,7.621]],"o":[[-7.228,3.052],[11.966,8.056],[9.406,6.248],[-19.319,-6.253],[-9.437,-8.53]],"v":[[326.479,-355.408],[332.703,-337.094],[381.356,-316.88],[385.461,-332.541],[345.28,-348.584]]}],"t":43.549},{"e":[{"c":true,"i":[[-0.536,-1.572],[-3.113,0.999],[-3.212,1.593],[1.299,0.115],[1.688,-1.035]],"o":[[0.699,2.048],[1.594,-0.511],[2.799,-1.388],[-3.076,-0.273],[-2.696,1.652]],"v":[[296.62,-347.231],[301.407,-345.869],[305.998,-349.185],[306.733,-352.77],[299.423,-351.803]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[1.085,-2.593],[-7.2,0.179],[-7.392,-1.934],[1.588,4.551],[9.608,1.982]],"o":[[-2.621,6.265],[12.072,-0.3],[6.079,1.591],[-2.552,-7.31],[-10.783,-2.224]],"v":[[305.392,-348.662],[316.542,-342.354],[337.821,-336.969],[345.879,-341.41],[326.727,-352.967]]}],"t":48.387},{"t":53.2265625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[357.286,-335.878]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":42.742},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":43.549},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.227},{"t":54.033203125}]},"p":{"a":0,"ix":2,"k":[298.375,20.281]},"r":{"a":0,"ix":6,"k":-112},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-15.718,-11.808],[-110.853,29.695],[-69.097,16.681],[-31.437,-38.337],[-13.834,-32.537],[17.145,-31.611],[52.916,-11.439]],"o":[[10.618,7.977],[54.353,-14.56],[83.852,-20.243],[48.953,59.697],[30.413,71.53],[-21.288,39.249],[-13.519,2.922]],"v":[[-151.067,-71.884],[-73.667,-179.774],[72.148,-283.257],[251.047,-259.697],[271.587,-153.53],[292.804,53.08],[137.92,149.235]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[3.81,32.334],[-37.912,24.295],[-60.961,4.723],[-28.674,-27.507],[-4.719,-44.918],[17.132,-35.418],[38.689,-10.071]],"o":[[-5.87,-49.813],[30.369,-19.461],[71.33,-5.527],[42.049,40.338],[5.026,47.841],[-14.872,30.746],[-13.327,3.469]],"v":[[-152.648,-71.897],[-68.844,-183.778],[89.56,-289.113],[249.899,-265.495],[274.719,-157.082],[291.508,54.754],[141.199,150.134]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[5.886,32.021],[-48.758,34.583],[-77.872,27.27],[-49.259,-48.008],[-4.511,-39.569],[28.818,-50.831],[56.767,-19.398]],"o":[[-12.5,-68],[41.263,-29.267],[73.631,-25.785],[25.574,24.924],[4.722,41.424],[-22.003,38.811],[-17.993,6.149]],"v":[[-157.5,-70],[-69.87,-176.215],[70.372,-273.27],[248.534,-273.339],[275.511,-149.431],[293.182,51.831],[136.634,147.529]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":26.863},{"t":53.7265625}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":11.68},{"t":38.54296875}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.992156922817,0.552941203117,0.172549024224,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":10}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":14,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[0,-63,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[0,1,0]},"r":{"a":1,"ix":10,"k":[{"e":[0],"i":{"x":[0],"y":[1]},"n":["0_1_0p333_0"],"o":{"x":[0.333],"y":[0]},"s":[115],"t":16.129},{"t":51.61328125}]},"s":{"a":1,"ix":6,"k":[{"e":[100,100,100],"i":{"x":[0,0,0.667],"y":[1,1,1]},"n":["0_1_0p333_0","0_1_0p333_0","0p667_1_0p333_0"],"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"s":[122,122,100],"t":16.129},{"t":37.90234375}]}},"nm":"Shape Layer 5","op":794,"parent":1,"shapes":[{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-10.261,-11.263],[-30.338,9.388],[13.659,-1.454],[7.976,-3.33]],"o":[[11.756,12.904],[19.557,-6.052],[-13.669,1.455],[-7.976,3.33]],"v":[[208.744,-31.404],[266.443,-47.143],[266.495,-72.184],[230.562,-58.335]]}],"t":53.227},{"e":[{"c":true,"i":[[-2.784,-3.375],[-3.362,-1.186],[4.594,3.521],[3.593,0.597]],"o":[[5.252,6.366],[8.135,2.87],[-4.597,-3.524],[-3.593,-0.597]],"v":[[331.516,-54.519],[338.459,-48.273],[344.534,-55.195],[340.927,-57.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.106,-6.258],[-19.353,-3.869],[7.891,3.257],[5.346,-0.525]],"o":[[9.134,8.045],[12.475,2.494],[-7.897,-3.259],[-5.346,0.525]],"v":[[274.032,-55.095],[304.612,-50.784],[314.013,-66.934],[292.335,-69.588]]}],"t":56.619},{"t":60.12109375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.947},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":53.113},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.121},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[-154,-177]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":1,"mn":"ADBE Vector Group","nm":"Shape 8","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.703,8.481],[4.983,6.127],[9.462,2.367],[-17.377,-7.771],[-12.209,-16.935]],"o":[[5.007,-5.512],[-12.952,-15.923],[-14.762,-3.692],[14.203,6.352],[7.574,10.506]],"v":[[387.993,-7.418],[381.373,-32.728],[336.86,-64.37],[322.797,-44.352],[366.426,-12.506]]}],"t":52.42},{"e":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.305,1.154],[2.572,6.084],[8.653,4.412],[-11.948,-10.523],[-4.558,-8.992]],"o":[[6.307,-3.157],[-3.833,-9.069],[-11.339,-5.781],[9.171,8.077],[4.565,9.006]],"v":[[390.943,2.407],[389.833,-16.181],[372.097,-35.412],[363.579,-28.577],[376.058,-6.258]]}],"t":55.924},{"e":[{"c":true,"i":[[-0.886,0.471],[-0.13,1.044],[1.111,1.109],[-0.518,-2.792],[-3.024,-5.259]],"o":[[1.579,-0.84],[0.246,-1.975],[-1.789,-1.786],[0.341,1.842],[0.561,0.976]],"v":[[394.302,8.896],[395.719,6.526],[393.778,1.863],[389.586,3.258],[391.524,8.248]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.222,1.308],[1.206,4.426],[1.981,1.978],[-4.619,-6.053],[-3.512,-10.237]],"o":[[2.952,-3.161],[-2.141,-7.86],[-3.192,-3.186],[2.028,2.657],[2.275,6.632]],"v":[[393.913,7.789],[396.614,-0.432],[386.034,-15.348],[380.119,-10.602],[385.312,3.161]]}],"t":58.26},{"t":62.931640625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":51.252},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":52.42},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":62.932},{"t":64.099609375}]},"p":{"a":0,"ix":2,"k":[-161,-181]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":2,"mn":"ADBE Vector Group","nm":"Shape 7","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-9.865,-24.335]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[4.779,11.789]],"v":[[423.143,176.84],[427.81,161.233],[413.218,124.084],[393.932,116.063],[403.124,162.008]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-13.793,0.635],[-2.591,7.908],[-0.543,12.547],[-0.539,-20.051],[2.644,-8.677]],"o":[[9.471,-0.436],[7.553,-23.05],[0.613,-14.179],[0.416,15.456],[-4.252,13.954]],"v":[[396.137,108.769],[412.71,88.163],[421.793,32.708],[400.087,44.503],[391.337,87.772]]}],"t":51.613},{"e":[{"c":true,"i":[[-1.936,1.463],[3.818,4.909],[3.004,6.682],[4.199,-14.388],[-3.119,-3.467]],"o":[[4.677,-3.535],[-7.896,-10.153],[-3.357,-7.466],[-3.237,11.091],[6.358,7.067]],"v":[[444.226,208.388],[442.495,197.074],[427.147,181.047],[416.131,173.306],[429.906,206.921]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-7.732,4.067],[3.042,7.746],[0.005,10.277],[-0.539,-20.051],[-9.865,-24.335]],"o":[[7.054,-3.711],[-6.426,-16.363],[-0.009,-17.469],[0.416,15.456],[4.779,11.789]],"v":[[423.143,176.84],[427.81,161.233],[413.218,124.084],[393.932,116.063],[403.124,162.008]]}],"t":56.451},{"e":[{"c":true,"i":[[-0.627,3.991],[2.948,1.173],[2.948,2.281],[0.289,-5.765],[-3.685,-2.287]],"o":[[0.847,-5.388],[-2.405,-0.957],[-1.491,-1.154],[-0.256,5.111],[3.202,1.988]],"v":[[470.684,231.038],[466.901,225.56],[462.591,221.28],[456.214,226.198],[462.163,232.694]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.936,1.463],[3.818,4.909],[3.004,6.682],[4.199,-14.388],[-3.119,-3.467]],"o":[[4.677,-3.535],[-7.896,-10.153],[-3.357,-7.466],[-3.237,11.091],[6.358,7.067]],"v":[[444.226,208.388],[442.495,197.074],[427.147,181.047],[416.131,173.306],[429.906,206.921]]}],"t":62.902},{"t":68.9921875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[404.213,73.056]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":50.305},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":51.475},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":68.992},{"t":70.162109375}]},"p":{"a":0,"ix":2,"k":[271.213,-71.58]},"r":{"a":0,"ix":6,"k":-47},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":3,"mn":"ADBE Vector Group","nm":"Shape 6","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[3.525,3.745],[0.197,-12.283],[-2.566,2.068],[0.177,6.641]],"o":[[-7.924,-8.418],[-0.159,9.887],[6.605,-5.324],[-0.187,-7.009]],"v":[[328.406,207.34],[312.226,228.796],[325.289,242.279],[331.346,224.065]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[9.055,6.442],[9.961,-17.416],[-8.692,7.913],[-11.235,9.332]],"o":[[-11.197,-7.967],[-7.42,12.974],[7.127,-6.488],[5.9,-4.901]],"v":[[352.51,160.995],[310.164,199.677],[323.183,214.358],[347.728,187.186]]}],"t":50.807},{"e":[{"c":true,"i":[[2.833,0.782],[0.049,-3.082],[-0.773,-0.294],[-0.781,1.473]],"o":[[-2.796,-0.772],[-0.04,2.481],[0.773,0.294],[0.781,-1.473]],"v":[[317.816,242.457],[313.756,247.84],[317.689,249.49],[319.792,246.74]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[3.525,3.745],[0.197,-12.283],[-2.566,2.068],[0.177,6.641]],"o":[[-7.924,-8.418],[-0.159,9.887],[6.605,-5.324],[-0.187,-7.009]],"v":[[328.406,207.34],[312.226,228.796],[325.289,242.279],[331.346,224.065]]}],"t":54.838},{"t":60.123046875}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[334.533,186.047]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":50},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":50.779},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":60.123},{"t":61.291015625}]},"p":{"a":0,"ix":2,"k":[301.311,-1.891]},"r":{"a":0,"ix":6,"k":-49},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":4,"mn":"ADBE Vector Group","nm":"Shape 5","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-2.337,-2.255],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[4.856,4.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[313.144,277.314],[323.852,271.667],[319.523,242.63],[311.113,230.488],[307.709,269.07]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.275,-1.212],[-0.067,6.605],[3.054,7.565],[10.791,-8.694],[0.224,-4.011]],"o":[[5.497,2.929],[0.118,-11.643],[-2.98,-7.381],[-8.846,7.127],[-0.871,15.608]],"v":[[314.598,259.571],[323.692,245.239],[321.98,196.381],[296.209,196.694],[304.871,243.392]]}],"t":48.387},{"e":[{"c":true,"i":[[-2.784,1.882],[3.278,5.65],[4.875,4.344],[5.106,-7.053],[-5.122,-3.792]],"o":[[3.297,-2.23],[-1.921,-3.312],[-3.039,-2.707],[-6.082,8.4],[5.863,4.34]],"v":[[330.193,290.216],[331.159,278.271],[321.125,272.156],[311.793,264.686],[317.622,286.792]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.337,-2.255],[-1.602,6.333],[-2.804,9.887],[12.637,-6.488],[-0.896,-4.981]],"o":[[4.856,4.686],[1.204,-4.762],[1.11,-3.915],[-12.732,6.536],[1.291,7.18]],"v":[[313.144,277.314],[323.852,271.667],[319.523,242.63],[311.113,230.488],[307.709,269.07]]}],"t":53.059},{"e":[{"c":true,"i":[[-2.193,-0.398],[-1.633,1.625],[1.49,0.732],[1.104,0.616],[-2.243,-2.497]],"o":[[2.866,0.521],[1.8,-1.792],[-2.422,-1.19],[-2.874,-1.603],[1.691,1.882]],"v":[[337.768,292.215],[341.598,292.115],[341.967,287.509],[337.83,285.396],[334.993,289.595]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-2.784,1.882],[3.278,5.65],[4.875,4.344],[5.106,-7.053],[-5.122,-3.792]],"o":[[3.297,-2.23],[-1.921,-3.312],[-3.039,-2.707],[-6.082,8.4],[5.863,4.34]],"v":[[330.193,290.216],[331.159,278.271],[321.125,272.156],[311.793,264.686],[317.622,286.792]]}],"t":57.73},{"t":62.40234375}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[310.299,226.027]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":47.58},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":48.387},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":62.402},{"t":63.5703125}]},"p":{"a":0,"ix":2,"k":[197.299,147.027]},"r":{"a":0,"ix":6,"k":84},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":5,"mn":"ADBE Vector Group","nm":"Shape 4","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.312,-0.514],[4.12,-3.429]],"o":[[6.432,7.583],[4.857,-5.913],[-2.539,0.246],[-3.951,3.289]],"v":[[170.108,388.834],[193.266,376.795],[186.938,365.264],[171.13,371.429]]}],"t":46.773},{"e":[{"c":true,"i":[[-1.749,-2.192],[-3.165,2.925],[2.295,0.333],[2.23,-0.677]],"o":[[0.462,0.578],[1.126,-1.041],[-1.144,-0.166],[-0.852,0.259]],"v":[[116.499,391.697],[122.124,391.566],[120.615,389.285],[117.416,388.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-5.863,-6.912],[-6.034,7.346],[5.062,0.736],[4.712,-2.057]],"o":[[6.432,7.583],[4.857,-5.913],[-2.524,-0.367],[-4.712,2.057]],"v":[[144.608,394.334],[175.766,387.545],[169.188,379.014],[149.13,380.929]]}],"t":52.67},{"t":58.5078125}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[179.853,376.812]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.662},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":46.83},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":58.508},{"t":59.677734375}]},"p":{"a":0,"ix":2,"k":[104.853,154.812]},"r":{"a":0,"ix":6,"k":31},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":6,"mn":"ADBE Vector Group","nm":"Shape 3","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":1,"ix":2,"k":[{"e":[{"c":true,"i":[[-0.664,-3.179],[-0.686,10.48],[0.693,14.372],[2.402,-11.211],[1.871,-8.886]],"o":[[1.604,7.681],[0.998,-15.252],[-0.196,-4.065],[-1.349,6.295],[-2.621,12.448]],"v":[[191.927,378.89],[206.672,377.602],[205.567,334.993],[194.441,338.289],[191.468,353.466]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.721,-3.167],[-0.992,8.262],[-2.952,13.171],[2.926,-11.086],[0.442,-9.063]],"o":[[1.742,7.65],[1.816,-15.128],[0.89,-3.971],[-2.597,9.838],[-0.619,12.706]],"v":[[197.421,355.676],[208.618,352.159],[213.768,307.566],[199.584,309.087],[194.949,333.275]]}],"t":45.967},{"e":[{"c":true,"i":[[-1.959,-1.143],[1.762,4.669],[-0.707,8.692],[1.735,-5.805],[-2.148,-2.498]],"o":[[5.594,3.264],[-2.913,-7.718],[0.353,-4.338],[-2.357,7.887],[1.737,1.85]],"v":[[203.799,406.417],[212.197,400.386],[202.76,377.508],[196.606,377.88],[199.916,402.113]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-0.664,-3.179],[-0.686,10.48],[0.693,14.372],[2.402,-11.211],[1.871,-8.886]],"o":[[1.604,7.681],[0.998,-15.252],[-0.196,-4.065],[-1.349,6.295],[-2.621,12.448]],"v":[[191.927,378.89],[206.672,377.602],[205.567,334.993],[194.441,338.289],[191.468,353.466]]}],"t":51.613},{"e":[{"c":true,"i":[[-0.872,-0.385],[1.171,2.143],[2.49,-0.113],[-0.428,-2.176],[-1.187,-0.594]],"o":[[2.107,0.931],[-1.081,-1.978],[-1.692,0.077],[0.225,1.145],[0.864,0.432]],"v":[[210.857,414.203],[213.072,410.465],[208.767,406.285],[206.684,409.748],[208.832,413.117]]}],"i":{"x":0.833,"y":0.833},"n":"0p833_0p833_0p167_0p167","o":{"x":0.167,"y":0.167},"s":[{"c":true,"i":[[-1.959,-1.143],[1.762,4.669],[-0.707,8.692],[1.735,-5.805],[-2.148,-2.498]],"o":[[5.594,3.264],[-2.913,-7.718],[0.353,-4.338],[-2.357,7.887],[1.737,1.85]],"v":[[203.799,406.417],[212.197,400.386],[202.76,377.508],[196.606,377.88],[199.916,402.113]]}],"t":57.258},{"t":61.291015625}]},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"c":{"a":0,"ix":4,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","o":{"a":0,"ix":5,"k":100},"r":1,"ty":"fl"},{"a":{"a":0,"ix":1,"k":[201.186,347.654]},"nm":"Transform","o":{"a":1,"ix":7,"k":[{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[0],"t":45.162},{"e":[100],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":45.967},{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p167_0p167"],"o":{"x":[0.167],"y":[0.167]},"s":[100],"t":61.291},{"t":62.09765625}]},"p":{"a":0,"ix":2,"k":[41.186,165.654]},"r":{"a":0,"ix":6,"k":68},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":7,"mn":"ADBE Vector Group","nm":"Shape 2","np":2,"ty":"gr"},{"cix":2,"hd":false,"it":[{"hd":false,"ind":0,"ix":1,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-17.442,9.07],[-45.407,24.545],[-67.999,-45],[-46.425,-39.176],[24.284,-37.946],[19.131,-3.317],[16.851,-7.636],[22.338,24.372]],"o":[[50,-26],[55.5,-30],[47.064,31.145],[28.534,24.079],[-38.125,59.574],[-48.655,8.437],[-16.851,7.636],[-22.338,-24.372]],"v":[[-70,-168],[37.5,-189],[193,-226],[274.625,-74.287],[287,104],[96.104,154.527],[-65.51,204.464],[-199.186,161.156]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 1","ty":"sh"},{"hd":false,"ind":1,"ix":2,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[7.321,31.724],[-20.78,18.471],[-46.284,-46.673],[-33.945,-31.892],[29.336,-29.625],[49.431,6.815],[14.746,-2.969],[16.646,22.348]],"o":[[-4.5,-19.5],[54,-48],[59.5,60],[50.752,47.682],[-34.344,34.683],[-49.431,-6.815],[-39.238,7.9],[-16.646,-22.348]],"v":[[-83.5,-166.5],[32,-198],[195.5,-213.5],[250.82,-92.388],[292,97.5],[94.587,154.973],[-65.432,208.271],[-203.524,155.572]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 2","ty":"sh"},{"hd":false,"ind":2,"ix":3,"ks":{"a":0,"ix":2,"k":{"c":false,"i":[[-32.033,5.824],[-10.696,26.586],[-58.097,-32.713],[-39.01,-52.929],[60.246,-75.012],[39.072,-1.851],[15.451,-2.501],[20.9,22.982]],"o":[[16.5,-3],[9.127,-22.687],[45.286,25.5],[30.172,40.938],[-51,63.5],[-30.07,1.424],[-35.801,5.794],[-20.9,-22.982]],"v":[[-82.5,-164],[35.5,-197],[197,-217],[268.53,-66.797],[283,108.5],[94.087,154.955],[-66.421,204.876],[-207.839,151.402]]}},"mn":"ADBE Vector Shape - Group","nm":"Path 3","ty":"sh"},{"e":{"a":1,"ix":2,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":31.535},{"t":54.89453125}]},"hd":false,"ix":4,"m":1,"mn":"ADBE Vector Filter - Trim","nm":"Trim Paths 2","o":{"a":0,"ix":3,"k":0},"s":{"a":1,"ix":1,"k":[{"e":[0],"i":{"x":[0.833],"y":[0.833]},"n":["0p833_0p833_0p8_0"],"o":{"x":[0.8],"y":[0]},"s":[100],"t":17.52},{"t":40.87890625}]},"ty":"tm"},{"c":{"a":0,"ix":3,"k":[0.996078491211,0.901960849762,0.384313762188,1]},"hd":false,"lc":2,"lj":2,"mn":"ADBE Vector Graphic - Stroke","nm":"Stroke 1","o":{"a":0,"ix":4,"k":100},"ty":"st","w":{"a":0,"ix":5,"k":12}},{"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":0,"ix":6,"k":0},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"}],"ix":8,"mn":"ADBE Vector Group","nm":"Shape 1","np":5,"ty":"gr"}],"sr":1,"st":0,"ty":4},{"ao":0,"bm":0,"ddd":0,"ind":15,"ip":0,"ks":{"a":{"a":0,"ix":1,"k":[450,400,0]},"o":{"a":0,"ix":11,"k":100},"p":{"a":0,"ix":2,"k":[450,400,0]},"r":{"a":0,"ix":10,"k":0},"s":{"a":0,"ix":6,"k":[100,100,100]}},"nm":"White Solid 2","op":794,"sc":"#ffffff","sh":800,"sr":1,"st":0,"sw":900,"ty":1}],"markers":[],"nm":"YTK Logo Bump Drawn v5","op":181,"v":"5.3.4","w":900}
diff --git a/cobalt/renderer/renderer_module.cc b/cobalt/renderer/renderer_module.cc
index 3fc7a0f..c186d60 100644
--- a/cobalt/renderer/renderer_module.cc
+++ b/cobalt/renderer/renderer_module.cc
@@ -12,11 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/renderer_module.h"
+
 #include <memory>
 #include <string>
 
-#include "cobalt/renderer/renderer_module.h"
-
 #include "base/memory/ptr_util.h"
 #include "base/trace_event/trace_event.h"
 #include "cobalt/browser/memory_settings/calculations.h"
diff --git a/cobalt/renderer/renderer_module_default_options.cc b/cobalt/renderer/renderer_module_default_options.cc
index 04b688c..53b83a6 100644
--- a/cobalt/renderer/renderer_module_default_options.cc
+++ b/cobalt/renderer/renderer_module_default_options.cc
@@ -12,11 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "base/logging.h"
 #include "cobalt/renderer/get_default_rasterizer_for_platform.h"
 #include "cobalt/renderer/renderer_module.h"
 
-#include "base/logging.h"
-
 namespace cobalt {
 namespace renderer {
 
diff --git a/cobalt/renderer/resource_provider_test.cc b/cobalt/renderer/resource_provider_test.cc
index 1f73889..90c0d9a 100644
--- a/cobalt/renderer/resource_provider_test.cc
+++ b/cobalt/renderer/resource_provider_test.cc
@@ -12,20 +12,19 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
+#include "cobalt/render_tree/resource_provider.h"
 
-#include "base/threading/simple_thread.h"
+#include <memory>
 
 #include "base/message_loop/message_loop.h"
 #include "base/run_loop.h"
-#include "cobalt/render_tree/resource_provider.h"
+#include "base/threading/simple_thread.h"
 #include "cobalt/renderer/backend/default_graphics_system.h"
 #include "cobalt/renderer/backend/graphics_context.h"
 #include "cobalt/renderer/backend/graphics_system.h"
 #include "cobalt/renderer/backend/render_target.h"
 #include "cobalt/renderer/rasterizer/rasterizer.h"
 #include "cobalt/renderer/renderer_module.h"
-
 #include "testing/gtest/include/gtest/gtest.h"
 
 using cobalt::render_tree::ResourceProvider;
diff --git a/cobalt/renderer/smoothed_value_test.cc b/cobalt/renderer/smoothed_value_test.cc
index daeee61..208fb97 100644
--- a/cobalt/renderer/smoothed_value_test.cc
+++ b/cobalt/renderer/smoothed_value_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/renderer/smoothed_value.h"
+
 #include "base/time/time.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
diff --git a/cobalt/renderer/submission_queue.cc b/cobalt/renderer/submission_queue.cc
index 669ad35..40d357e 100644
--- a/cobalt/renderer/submission_queue.cc
+++ b/cobalt/renderer/submission_queue.cc
@@ -16,6 +16,7 @@
 
 #include <cmath>
 #include <memory>
+#include <utility>
 
 #include "base/logging.h"
 #include "base/strings/string_number_conversions.h"
diff --git a/cobalt/renderer/submission_queue_test.cc b/cobalt/renderer/submission_queue_test.cc
index 5db7899..6d33036 100644
--- a/cobalt/renderer/submission_queue_test.cc
+++ b/cobalt/renderer/submission_queue_test.cc
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/renderer/submission_queue.h"
+
 #include "base/time/time.h"
 #include "cobalt/render_tree/composition_node.h"
 #include "cobalt/renderer/submission.h"
diff --git a/cobalt/renderer/test/jpeg_utils/jpeg_encode.cc b/cobalt/renderer/test/jpeg_utils/jpeg_encode.cc
index b734a68..d5700bb 100644
--- a/cobalt/renderer/test/jpeg_utils/jpeg_encode.cc
+++ b/cobalt/renderer/test/jpeg_utils/jpeg_encode.cc
@@ -1,3 +1,4 @@
+// Copyright 2023 The Cobalt Authors. All Rights Reserved.
 // Copyright 2018 Google Inc. All Rights Reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,6 +16,7 @@
 #include "cobalt/renderer/test/jpeg_utils/jpeg_encode.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/trace_event/trace_event.h"
@@ -32,7 +34,7 @@
                                             size_t* out_size) {
   TRACE_EVENT0("cobalt::renderer", "jpegEncode::EncodeRGBAToBuffer()");
   unsigned char* jpeg_buffer = NULL;
-  unsigned long jpegSize = 0;
+  unsigned long jpegSize = 0;  // NOLINT(runtime/int)
 
   int flags = 0;
   // This can be a value between 1 and 100.
diff --git a/cobalt/renderer/test/png_utils/BUILD.gn b/cobalt/renderer/test/png_utils/BUILD.gn
index 28e8ac1..2e8135e 100644
--- a/cobalt/renderer/test/png_utils/BUILD.gn
+++ b/cobalt/renderer/test/png_utils/BUILD.gn
@@ -40,15 +40,18 @@
 
   deps = [
     ":png_utils",
-    ":png_utils_copy_test_data",
     "//cobalt/base",
     "//cobalt/test:run_all_unittests",
     "//testing/gmock",
     "//testing/gtest",
   ]
+
+  data_deps = [ ":png_utils_copy_test_data" ]
 }
 
 copy("png_utils_copy_test_data") {
+  install_content = true
+
   sources = [
     "png_benchmark_image.png",
     "png_premultiplied_alpha_test_image.png",
diff --git a/cobalt/renderer/test/png_utils/png_decode.cc b/cobalt/renderer/test/png_utils/png_decode.cc
index fd40861..69d5973 100644
--- a/cobalt/renderer/test/png_utils/png_decode.cc
+++ b/cobalt/renderer/test/png_utils/png_decode.cc
@@ -15,6 +15,7 @@
 #include "cobalt/renderer/test/png_utils/png_decode.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
 #include "base/files/file_util.h"
diff --git a/cobalt/renderer/test/png_utils/png_decode_test.cc b/cobalt/renderer/test/png_utils/png_decode_test.cc
index a0cd2d6..be6fb28 100644
--- a/cobalt/renderer/test/png_utils/png_decode_test.cc
+++ b/cobalt/renderer/test/png_utils/png_decode_test.cc
@@ -12,12 +12,13 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include "cobalt/renderer/test/png_utils/png_decode.h"
+
 #include <memory>
 
 #include "base/files/file_path.h"
 #include "base/path_service.h"
 #include "cobalt/base/cobalt_paths.h"
-#include "cobalt/renderer/test/png_utils/png_decode.h"
 #include "testing/gtest/include/gtest/gtest.h"
 
 using cobalt::renderer::test::png_utils::DecodePNGToPremultipliedAlphaRGBA;
diff --git a/cobalt/renderer/test/png_utils/png_encode.cc b/cobalt/renderer/test/png_utils/png_encode.cc
index 38416f4..3b4d58b 100644
--- a/cobalt/renderer/test/png_utils/png_encode.cc
+++ b/cobalt/renderer/test/png_utils/png_encode.cc
@@ -15,8 +15,10 @@
 #include "cobalt/renderer/test/png_utils/png_encode.h"
 
 #include <memory>
+#include <utility>
 #include <vector>
 
+#include "base/files/file_starboard.h"
 #include "base/files/file_util.h"
 #include "base/logging.h"
 #include "base/trace_event/trace_event.h"
@@ -58,6 +60,7 @@
   DCHECK_NE(file, kSbFileInvalid);
   int bytes_written =
       SbFileWrite(file, reinterpret_cast<char*>(buffer.get()), size);
+  base::RecordFileWriteStat(bytes_written);
   SbFileClose(file);
   DLOG_IF(ERROR, bytes_written != size) << "Error writing PNG to file.";
 }
diff --git a/cobalt/renderer/test/scenes/all_scenes_combined_scene.cc b/cobalt/renderer/test/scenes/all_scenes_combined_scene.cc
index 81b000f..8b0a0a8 100644
--- a/cobalt/renderer/test/scenes/all_scenes_combined_scene.cc
+++ b/cobalt/renderer/test/scenes/all_scenes_combined_scene.cc
@@ -14,6 +14,8 @@
 
 #include "cobalt/renderer/test/scenes/all_scenes_combined_scene.h"
 
+#include <utility>
+
 #include "base/trace_event/trace_event.h"
 #include "cobalt/math/matrix3_f.h"
 #include "cobalt/math/size_f.h"
@@ -37,8 +39,7 @@
 scoped_refptr<render_tree::Node> CreateAllScenesCombinedScene(
     ResourceProvider* resource_provider, const SizeF& output_dimensions,
     base::TimeDelta start_time) {
-  TRACE_EVENT0("cobalt::renderer_sandbox",
-               "CreateAllScenesCombinedScene()");
+  TRACE_EVENT0("cobalt::renderer_sandbox", "CreateAllScenesCombinedScene()");
   CompositionNode::Builder all_scenes_combined_scene_builder;
 
   // Compose all the render trees representing the sub-scenes through a
diff --git a/cobalt/renderer/test/scenes/growing_rect_scene.cc b/cobalt/renderer/test/scenes/growing_rect_scene.cc
index 0c483a5..a6dbd34 100644
--- a/cobalt/renderer/test/scenes/growing_rect_scene.cc
+++ b/cobalt/renderer/test/scenes/growing_rect_scene.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/test/scenes/growing_rect_scene.h"
 
+#include <memory>
+
 #include "base/bind.h"
 #include "cobalt/math/size_f.h"
 #include "cobalt/math/transform_2d.h"
@@ -27,15 +27,15 @@
 using cobalt::math::ScaleMatrix;
 using cobalt::math::SizeF;
 using cobalt::math::TranslateMatrix;
-using cobalt::render_tree::animations::AnimateNode;
-using cobalt::render_tree::animations::Animation;
-using cobalt::render_tree::animations::AnimationList;
 using cobalt::render_tree::Brush;
 using cobalt::render_tree::ColorRGBA;
 using cobalt::render_tree::MatrixTransformNode;
 using cobalt::render_tree::Node;
 using cobalt::render_tree::RectNode;
 using cobalt::render_tree::SolidColorBrush;
+using cobalt::render_tree::animations::AnimateNode;
+using cobalt::render_tree::animations::Animation;
+using cobalt::render_tree::animations::AnimationList;
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/test/scenes/image_wrap_scene.cc b/cobalt/renderer/test/scenes/image_wrap_scene.cc
index 0f1592a..70fc952 100644
--- a/cobalt/renderer/test/scenes/image_wrap_scene.cc
+++ b/cobalt/renderer/test/scenes/image_wrap_scene.cc
@@ -32,15 +32,15 @@
 
 using cobalt::math::Matrix3F;
 using cobalt::math::SizeF;
-using cobalt::render_tree::animations::AnimateNode;
-using cobalt::render_tree::animations::Animation;
-using cobalt::render_tree::animations::AnimationList;
 using cobalt::render_tree::CompositionNode;
 using cobalt::render_tree::Image;
 using cobalt::render_tree::ImageNode;
 using cobalt::render_tree::MatrixTransformNode;
 using cobalt::render_tree::Node;
 using cobalt::render_tree::ResourceProvider;
+using cobalt::render_tree::animations::AnimateNode;
+using cobalt::render_tree::animations::Animation;
+using cobalt::render_tree::animations::AnimationList;
 using cobalt::renderer::test::png_utils::DecodePNGToRenderTreeImage;
 
 namespace cobalt {
@@ -59,9 +59,9 @@
   const float kScalePeriodInSeconds = 1.5f;
   const float kScaleAmplitude = 0.4f;
   const float kScalePhaseShift = 0.55f;
-  float scale =
-      kScalePhaseShift + kScaleAmplitude *
-      sin(2 * M_PI * elapsed_time_in_seconds / kScalePeriodInSeconds);
+  float scale = kScalePhaseShift +
+                kScaleAmplitude * sin(2 * M_PI * elapsed_time_in_seconds /
+                                      kScalePeriodInSeconds);
 
   // Determine the rotation of the local transform given the current time.
   const float kRotationPeriod = 3.0f;
@@ -69,9 +69,9 @@
 
   // Combine the scale and rotation together, translating to the center to
   // use that as the origin.
-  composition_node->local_transform =
-      math::TranslateMatrix(0.5f, 0.5f) *
-      math::ScaleMatrix(scale) * math::RotateMatrix(rotation);
+  composition_node->local_transform = math::TranslateMatrix(0.5f, 0.5f) *
+                                      math::ScaleMatrix(scale) *
+                                      math::RotateMatrix(rotation);
 }
 
 scoped_refptr<Image> GetTestImage(ResourceProvider* resource_provider) {
diff --git a/cobalt/renderer/test/scenes/marquee_scene.cc b/cobalt/renderer/test/scenes/marquee_scene.cc
index 62eff90..84fb5fe 100644
--- a/cobalt/renderer/test/scenes/marquee_scene.cc
+++ b/cobalt/renderer/test/scenes/marquee_scene.cc
@@ -16,6 +16,7 @@
 
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "base/bind.h"
 #include "cobalt/math/size_f.h"
@@ -32,9 +33,6 @@
 using cobalt::math::RectF;
 using cobalt::math::SizeF;
 using cobalt::math::TranslateMatrix;
-using cobalt::render_tree::animations::AnimateNode;
-using cobalt::render_tree::animations::Animation;
-using cobalt::render_tree::animations::AnimationList;
 using cobalt::render_tree::Brush;
 using cobalt::render_tree::ColorRGBA;
 using cobalt::render_tree::CompositionNode;
@@ -47,6 +45,9 @@
 using cobalt::render_tree::ResourceProvider;
 using cobalt::render_tree::SolidColorBrush;
 using cobalt::render_tree::TextNode;
+using cobalt::render_tree::animations::AnimateNode;
+using cobalt::render_tree::animations::Animation;
+using cobalt::render_tree::animations::AnimationList;
 
 namespace cobalt {
 namespace renderer {
@@ -107,9 +108,8 @@
   // a switch from the right side to the left is not noticed.
 
   // Center the text's bounding box vertically on the screen.
-  float y_position =
-      (output_dimensions.height() / 2.0f) - text_bounds.y() -
-          (text_bounds.height() / 2.0f);
+  float y_position = (output_dimensions.height() / 2.0f) - text_bounds.y() -
+                     (text_bounds.height() / 2.0f);
 
   // Add a background rectangle to the text in order to demonstrate the
   // relationship between the text's origin and its bounding box.
diff --git a/cobalt/renderer/test/scenes/scaling_text_scene.cc b/cobalt/renderer/test/scenes/scaling_text_scene.cc
index 44c4752..5135552 100644
--- a/cobalt/renderer/test/scenes/scaling_text_scene.cc
+++ b/cobalt/renderer/test/scenes/scaling_text_scene.cc
@@ -16,6 +16,7 @@
 
 #include <cmath>
 #include <string>
+#include <utility>
 
 #include "base/bind.h"
 #include "cobalt/math/size_f.h"
@@ -30,8 +31,8 @@
 
 using cobalt::math::Matrix3F;
 using cobalt::math::RectF;
-using cobalt::math::SizeF;
 using cobalt::math::ScaleMatrix;
+using cobalt::math::SizeF;
 using cobalt::math::TranslateMatrix;
 using cobalt::render_tree::ColorRGBA;
 using cobalt::render_tree::CompositionNode;
@@ -41,9 +42,9 @@
 using cobalt::render_tree::MatrixTransformNode;
 using cobalt::render_tree::ResourceProvider;
 using cobalt::render_tree::TextNode;
+using cobalt::render_tree::animations::AnimateNode;
 using cobalt::render_tree::animations::Animation;
 using cobalt::render_tree::animations::AnimationList;
-using cobalt::render_tree::animations::AnimateNode;
 
 namespace cobalt {
 namespace renderer {
diff --git a/cobalt/renderer/test/scenes/scene_helpers.cc b/cobalt/renderer/test/scenes/scene_helpers.cc
index ea9b614..3dd9261 100644
--- a/cobalt/renderer/test/scenes/scene_helpers.cc
+++ b/cobalt/renderer/test/scenes/scene_helpers.cc
@@ -12,10 +12,11 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/renderer/test/scenes/scene_helpers.h"
 
+#include <memory>
+#include <utility>
+
 #include "cobalt/math/matrix3_f.h"
 #include "cobalt/math/size_f.h"
 #include "cobalt/render_tree/color_rgba.h"
diff --git a/cobalt/renderer/test/scenes/spinning_sprites_scene.cc b/cobalt/renderer/test/scenes/spinning_sprites_scene.cc
index f09f99a..88fc067 100644
--- a/cobalt/renderer/test/scenes/spinning_sprites_scene.cc
+++ b/cobalt/renderer/test/scenes/spinning_sprites_scene.cc
@@ -15,6 +15,7 @@
 #include "cobalt/renderer/test/scenes/spinning_sprites_scene.h"
 
 #include <cmath>
+#include <utility>
 #include <vector>
 
 #include "base/files/file_path.h"
@@ -38,15 +39,15 @@
 using cobalt::math::ScaleMatrix;
 using cobalt::math::SizeF;
 using cobalt::math::TranslateMatrix;
-using cobalt::render_tree::animations::AnimateNode;
-using cobalt::render_tree::animations::Animation;
-using cobalt::render_tree::animations::AnimationList;
 using cobalt::render_tree::CompositionNode;
 using cobalt::render_tree::Image;
 using cobalt::render_tree::ImageNode;
 using cobalt::render_tree::MatrixTransformNode;
 using cobalt::render_tree::Node;
 using cobalt::render_tree::ResourceProvider;
+using cobalt::render_tree::animations::AnimateNode;
+using cobalt::render_tree::animations::Animation;
+using cobalt::render_tree::animations::AnimationList;
 using cobalt::renderer::test::png_utils::DecodePNGToRenderTreeImage;
 
 namespace cobalt {
diff --git a/cobalt/samples/simple_example/simple_example_main.cc b/cobalt/samples/simple_example/simple_example_main.cc
index 3bf11ea..73c2364 100644
--- a/cobalt/samples/simple_example/simple_example_main.cc
+++ b/cobalt/samples/simple_example/simple_example_main.cc
@@ -12,11 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include "cobalt/samples/simple_example/simple_example.h"
-
 #include "base/logging.h"
 #include "base/strings/stringprintf.h"
 #include "cobalt/base/wrap_main.h"
+#include "cobalt/samples/simple_example/simple_example.h"
 
 namespace {
 
diff --git a/cobalt/samples/simple_example/simple_example_test.cc b/cobalt/samples/simple_example/simple_example_test.cc
index 80621a5..9a8117c 100644
--- a/cobalt/samples/simple_example/simple_example_test.cc
+++ b/cobalt/samples/simple_example/simple_example_test.cc
@@ -79,7 +79,9 @@
   ASSERT_TRUE(base::PathExists(data_dir));
 
   const char* kCaseFiles[] = {
-      "case1.txt", "case2.txt", "case3.txt",
+      "case1.txt",
+      "case2.txt",
+      "case3.txt",
   };
   const int kNumInputArgs = 3;
 
diff --git a/cobalt/script/BUILD.gn b/cobalt/script/BUILD.gn
index 1582517..55a307a 100644
--- a/cobalt/script/BUILD.gn
+++ b/cobalt/script/BUILD.gn
@@ -51,7 +51,6 @@
     "typed_arrays.h",
     "union_type.h",
     "union_type_internal.h",
-    "util/stack_trace_helpers.h",
     "value_handle.h",
     "wrappable.h",
   ]
@@ -59,7 +58,6 @@
   deps = [
     "//cobalt/base",
     "//cobalt/loader:origin",
-    "//nb",
     "//starboard:starboard_headers_only",
     "//third_party/v8",
     "//third_party/v8:v8_libplatform",
diff --git a/cobalt/script/callback_function.h b/cobalt/script/callback_function.h
index 53a70ec..0d45814 100644
--- a/cobalt/script/callback_function.h
+++ b/cobalt/script/callback_function.h
@@ -86,8 +86,7 @@
   typedef R Signature(void);
   typedef CallbackResult<R> ReturnValue;
 
-  virtual CallbackResult<R> Run()
-      const = 0;
+  virtual CallbackResult<R> Run() const = 0;
 
  protected:
   virtual ~CallbackFunction() {}
@@ -147,7 +146,7 @@
   virtual ~CallbackFunction() {}
 };
 template <typename R, typename A1, typename A2, typename A3, typename A4,
-    typename A5>
+          typename A5>
 class CallbackFunction<R(A1, A2, A3, A4, A5)> {
  public:
   typedef R Signature(A1, A2, A3, A4, A5);
@@ -164,7 +163,7 @@
   virtual ~CallbackFunction() {}
 };
 template <typename R, typename A1, typename A2, typename A3, typename A4,
-    typename A5, typename A6>
+          typename A5, typename A6>
 class CallbackFunction<R(A1, A2, A3, A4, A5, A6)> {
  public:
   typedef R Signature(A1, A2, A3, A4, A5, A6);
@@ -182,7 +181,7 @@
   virtual ~CallbackFunction() {}
 };
 template <typename R, typename A1, typename A2, typename A3, typename A4,
-    typename A5, typename A6, typename A7>
+          typename A5, typename A6, typename A7>
 class CallbackFunction<R(A1, A2, A3, A4, A5, A6, A7)> {
  public:
   typedef R Signature(A1, A2, A3, A4, A5, A6, A7);
diff --git a/cobalt/script/execution_state.cc b/cobalt/script/execution_state.cc
index 363ec34..4c737db 100644
--- a/cobalt/script/execution_state.cc
+++ b/cobalt/script/execution_state.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/script/execution_state.h"
 
+#include <memory>
+
 #include "cobalt/script/global_environment.h"
 
 namespace cobalt {
diff --git a/cobalt/script/script_runner.cc b/cobalt/script/script_runner.cc
index 8463a48..c8fb8bb 100644
--- a/cobalt/script/script_runner.cc
+++ b/cobalt/script/script_runner.cc
@@ -12,10 +12,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
 #include "cobalt/script/script_runner.h"
 
+#include <memory>
+
 #include "base/logging.h"
 #include "cobalt/script/global_environment.h"
 #include "cobalt/script/source_code.h"
diff --git a/cobalt/script/sequence.h b/cobalt/script/sequence.h
index 5c32d8d..dfed5d1 100644
--- a/cobalt/script/sequence.h
+++ b/cobalt/script/sequence.h
@@ -17,6 +17,7 @@
 
 #include <algorithm>
 #include <iosfwd>
+#include <utility>
 #include <vector>
 
 #include "base/memory/ref_counted.h"
diff --git a/cobalt/script/testing/mock_exception_state.h b/cobalt/script/testing/mock_exception_state.h
index 392c1d6..328fa7b 100644
--- a/cobalt/script/testing/mock_exception_state.h
+++ b/cobalt/script/testing/mock_exception_state.h
@@ -15,9 +15,8 @@
 #ifndef COBALT_SCRIPT_TESTING_MOCK_EXCEPTION_STATE_H_
 #define COBALT_SCRIPT_TESTING_MOCK_EXCEPTION_STATE_H_
 
-#include "cobalt/script/exception_state.h"
-
 #include "base/memory/ref_counted.h"
+#include "cobalt/script/exception_state.h"
 #include "testing/gmock/include/gmock/gmock.h"
 
 namespace cobalt {
diff --git a/cobalt/script/testing/mock_property_enumerator.h b/cobalt/script/testing/mock_property_enumerator.h
index 29d5115..67dcddc 100644
--- a/cobalt/script/testing/mock_property_enumerator.h
+++ b/cobalt/script/testing/mock_property_enumerator.h
@@ -18,7 +18,6 @@
 #include <string>
 
 #include "cobalt/script/property_enumerator.h"
-
 #include "testing/gmock/include/gmock/gmock.h"
 
 namespace cobalt {
diff --git a/cobalt/script/union_type.h b/cobalt/script/union_type.h
index 19a8562..961bd28 100644
--- a/cobalt/script/union_type.h
+++ b/cobalt/script/union_type.h
@@ -67,9 +67,7 @@
     new (storage_.void_data()) T2(arg);
   }
 
-  UnionType2(const UnionType2& other) {
-    ConstructFromOther(other);
-  }
+  UnionType2(const UnionType2& other) { ConstructFromOther(other); }
 
   UnionType2& operator=(const UnionType2& other) {
     if (&other != this) {
@@ -79,9 +77,7 @@
     return *this;
   }
 
-  ~UnionType2() {
-    Destruct();
-  }
+  ~UnionType2() { Destruct(); }
 
   // Forward these checks to the UnionTypeCheck helper class, which works around
   // being unable to do template specializations in class scope.
@@ -116,12 +112,12 @@
     static bool IsType(const UnionType2<T1, T2>* union_value) {
       return union_value->specific_type_ == kTypeT1;
     }
-    static typename internal::UnionTypeTraits<T1>::ReturnType
-        AsType(UnionType2<T1, T2>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ReturnType AsType(
+        UnionType2<T1, T2>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
-    static typename internal::UnionTypeTraits<T1>::ConstReturnType
-        AsType(const UnionType2<T1, T2>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ConstReturnType AsType(
+        const UnionType2<T1, T2>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
     friend class UnionType2<T1, T2>;
@@ -132,12 +128,12 @@
     static bool IsType(const UnionType2<T1, T2>* union_value) {
       return union_value->specific_type_ == kTypeT2;
     }
-    static typename internal::UnionTypeTraits<T2>::ReturnType
-        AsType(UnionType2<T1, T2>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ReturnType AsType(
+        UnionType2<T1, T2>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
-    static typename internal::UnionTypeTraits<T2>::ConstReturnType
-        AsType(const UnionType2<T1, T2>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ConstReturnType AsType(
+        const UnionType2<T1, T2>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
     friend class UnionType2<T1, T2>;
@@ -199,9 +195,8 @@
 
 // Needed to instantiate base::Optional<UnionTypeN>
 template <typename T1, typename T2>
-inline std::ostream& operator<<(
-    std::ostream& stream, const UnionType2<T1, T2>& union_value) {
-
+inline std::ostream& operator<<(std::ostream& stream,
+                                const UnionType2<T1, T2>& union_value) {
   if (union_value.template IsType<T1>()) {
     stream << union_value.template AsType<T1>();
   } else if (union_value.template IsType<T2>()) {
@@ -232,9 +227,7 @@
     new (storage_.void_data()) T3(arg);
   }
 
-  UnionType3(const UnionType3& other) {
-    ConstructFromOther(other);
-  }
+  UnionType3(const UnionType3& other) { ConstructFromOther(other); }
 
   UnionType3& operator=(const UnionType3& other) {
     if (&other != this) {
@@ -244,9 +237,7 @@
     return *this;
   }
 
-  ~UnionType3() {
-    Destruct();
-  }
+  ~UnionType3() { Destruct(); }
 
   // Forward these checks to the UnionTypeCheck helper class, which works around
   // being unable to do template specializations in class scope.
@@ -281,12 +272,12 @@
     static bool IsType(const UnionType3<T1, T2, T3>* union_value) {
       return union_value->specific_type_ == kTypeT1;
     }
-    static typename internal::UnionTypeTraits<T1>::ReturnType
-        AsType(UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ReturnType AsType(
+        UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
-    static typename internal::UnionTypeTraits<T1>::ConstReturnType
-        AsType(const UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ConstReturnType AsType(
+        const UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
     friend class UnionType3<T1, T2, T3>;
@@ -297,12 +288,12 @@
     static bool IsType(const UnionType3<T1, T2, T3>* union_value) {
       return union_value->specific_type_ == kTypeT2;
     }
-    static typename internal::UnionTypeTraits<T2>::ReturnType
-        AsType(UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ReturnType AsType(
+        UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
-    static typename internal::UnionTypeTraits<T2>::ConstReturnType
-        AsType(const UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ConstReturnType AsType(
+        const UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
     friend class UnionType3<T1, T2, T3>;
@@ -313,12 +304,12 @@
     static bool IsType(const UnionType3<T1, T2, T3>* union_value) {
       return union_value->specific_type_ == kTypeT3;
     }
-    static typename internal::UnionTypeTraits<T3>::ReturnType
-        AsType(UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T3>::ReturnType AsType(
+        UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T3>());
     }
-    static typename internal::UnionTypeTraits<T3>::ConstReturnType
-        AsType(const UnionType3<T1, T2, T3>* union_value) {
+    static typename internal::UnionTypeTraits<T3>::ConstReturnType AsType(
+        const UnionType3<T1, T2, T3>* union_value) {
       return *(union_value->storage_.template data_as<T3>());
     }
     friend class UnionType3<T1, T2, T3>;
@@ -389,9 +380,8 @@
 
 // Needed to instantiate base::Optional<UnionTypeN>
 template <typename T1, typename T2, typename T3>
-inline std::ostream& operator<<(
-    std::ostream& stream, const UnionType3<T1, T2, T3>& union_value) {
-
+inline std::ostream& operator<<(std::ostream& stream,
+                                const UnionType3<T1, T2, T3>& union_value) {
   if (union_value.template IsType<T1>()) {
     stream << union_value.template AsType<T1>();
   } else if (union_value.template IsType<T2>()) {
@@ -428,9 +418,7 @@
     new (storage_.void_data()) T4(arg);
   }
 
-  UnionType4(const UnionType4& other) {
-    ConstructFromOther(other);
-  }
+  UnionType4(const UnionType4& other) { ConstructFromOther(other); }
 
   UnionType4& operator=(const UnionType4& other) {
     if (&other != this) {
@@ -440,9 +428,7 @@
     return *this;
   }
 
-  ~UnionType4() {
-    Destruct();
-  }
+  ~UnionType4() { Destruct(); }
 
   // Forward these checks to the UnionTypeCheck helper class, which works around
   // being unable to do template specializations in class scope.
@@ -477,12 +463,12 @@
     static bool IsType(const UnionType4<T1, T2, T3, T4>* union_value) {
       return union_value->specific_type_ == kTypeT1;
     }
-    static typename internal::UnionTypeTraits<T1>::ReturnType
-        AsType(UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ReturnType AsType(
+        UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
-    static typename internal::UnionTypeTraits<T1>::ConstReturnType
-        AsType(const UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T1>::ConstReturnType AsType(
+        const UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T1>());
     }
     friend class UnionType4<T1, T2, T3, T4>;
@@ -493,12 +479,12 @@
     static bool IsType(const UnionType4<T1, T2, T3, T4>* union_value) {
       return union_value->specific_type_ == kTypeT2;
     }
-    static typename internal::UnionTypeTraits<T2>::ReturnType
-        AsType(UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ReturnType AsType(
+        UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
-    static typename internal::UnionTypeTraits<T2>::ConstReturnType
-        AsType(const UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T2>::ConstReturnType AsType(
+        const UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T2>());
     }
     friend class UnionType4<T1, T2, T3, T4>;
@@ -509,12 +495,12 @@
     static bool IsType(const UnionType4<T1, T2, T3, T4>* union_value) {
       return union_value->specific_type_ == kTypeT3;
     }
-    static typename internal::UnionTypeTraits<T3>::ReturnType
-        AsType(UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T3>::ReturnType AsType(
+        UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T3>());
     }
-    static typename internal::UnionTypeTraits<T3>::ConstReturnType
-        AsType(const UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T3>::ConstReturnType AsType(
+        const UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T3>());
     }
     friend class UnionType4<T1, T2, T3, T4>;
@@ -525,12 +511,12 @@
     static bool IsType(const UnionType4<T1, T2, T3, T4>* union_value) {
       return union_value->specific_type_ == kTypeT4;
     }
-    static typename internal::UnionTypeTraits<T4>::ReturnType
-        AsType(UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T4>::ReturnType AsType(
+        UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T4>());
     }
-    static typename internal::UnionTypeTraits<T4>::ConstReturnType
-        AsType(const UnionType4<T1, T2, T3, T4>* union_value) {
+    static typename internal::UnionTypeTraits<T4>::ConstReturnType AsType(
+        const UnionType4<T1, T2, T3, T4>* union_value) {
       return *(union_value->storage_.template data_as<T4>());
     }
     friend class UnionType4<T1, T2, T3, T4>;
@@ -610,9 +596,8 @@
 
 // Needed to instantiate base::Optional<UnionTypeN>
 template <typename T1, typename T2, typename T3, typename T4>
-inline std::ostream& operator<<(
-    std::ostream& stream, const UnionType4<T1, T2, T3, T4>& union_value) {
-
+inline std::ostream& operator<<(std::ostream& stream,
+                                const UnionType4<T1, T2, T3, T4>& union_value) {
   if (union_value.template IsType<T1>()) {
     stream << union_value.template AsType<T1>();
   } else if (union_value.template IsType<T2>()) {
diff --git a/cobalt/script/union_type_internal.h b/cobalt/script/union_type_internal.h
index 54f6f17..879e63e 100644
--- a/cobalt/script/union_type_internal.h
+++ b/cobalt/script/union_type_internal.h
@@ -57,8 +57,8 @@
 };
 
 template <typename T>
-struct UnionTypeTraits<scoped_refptr<T> >
-    : UnionTypeDefaultTraits<scoped_refptr<T> > {
+struct UnionTypeTraits<scoped_refptr<T>>
+    : UnionTypeDefaultTraits<scoped_refptr<T>> {
   static base::TypeId GetTypeID() { return base::GetTypeId<T>(); }
   static const bool is_interface_type = true;
 };
diff --git a/cobalt/script/util/stack_trace_helpers.h b/cobalt/script/util/stack_trace_helpers.h
deleted file mode 100644
index caebaed..0000000
--- a/cobalt/script/util/stack_trace_helpers.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2017 The Cobalt Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef COBALT_SCRIPT_UTIL_STACK_TRACE_HELPERS_H_
-#define COBALT_SCRIPT_UTIL_STACK_TRACE_HELPERS_H_
-
-#include <string>
-
-#include "cobalt/script/stack_frame.h"
-#include "nb/rewindable_vector.h"
-
-namespace cobalt {
-namespace script {
-namespace util {
-
-class StackTraceGenerator {
- public:
-  virtual ~StackTraceGenerator() {}
-
-  // Returns |true| if the current StackTraceGenerator can generate information
-  // about the stack.
-  virtual bool Valid() = 0;
-
-  // Generates stack traces in the raw form. Returns true if any stack
-  // frames were generated. False otherwise. Output vector will be
-  // unconditionally rewound to being empty.
-  virtual bool GenerateStackTrace(int depth,
-                                  nb::RewindableVector<StackFrame>* out) = 0;
-
-  // Returns true if any stack traces were written. The output vector will be
-  // re-wound to being empty.
-  // The first position is the most immediate stack frame.
-  virtual bool GenerateStackTraceLines(
-      int depth, nb::RewindableVector<std::string>* out) = 0;
-
-  // Prints stack trace. Returns true on success.
-  virtual bool GenerateStackTraceString(int depth, std::string* out) = 0;
-
-  virtual bool GenerateStackTraceString(int depth, char* buff,
-                                        size_t buff_size) = 0;
-};
-
-// Get's the thread local StackTraceGenerator.
-// Defined in engine specific implementation.
-StackTraceGenerator* GetThreadLocalStackTraceGenerator();
-
-}  // namespace util
-}  // namespace script
-}  // namespace cobalt
-
-#endif  // COBALT_SCRIPT_UTIL_STACK_TRACE_HELPERS_H_
diff --git a/cobalt/script/v8c/BUILD.gn b/cobalt/script/v8c/BUILD.gn
index 3ecb6e0..af95907 100644
--- a/cobalt/script/v8c/BUILD.gn
+++ b/cobalt/script/v8c/BUILD.gn
@@ -77,7 +77,6 @@
     "isolate_fellowship.h",
     "native_promise.h",
     "scoped_persistent.h",
-    "stack_trace_helpers.cc",
     "switches.cc",
     "switches.h",
     "type_traits.h",
@@ -132,7 +131,6 @@
     "//cobalt/cache",
     "//cobalt/configuration",
     "//cobalt/script",
-    "//nb",
     "//third_party/v8",
     "//third_party/v8:v8_libplatform",
     "//third_party/v8/third_party/inspector_protocol:crdtp",
diff --git a/cobalt/script/v8c/cobalt_platform.cc b/cobalt/script/v8c/cobalt_platform.cc
index 161d6b6..796963a 100644
--- a/cobalt/script/v8c/cobalt_platform.cc
+++ b/cobalt/script/v8c/cobalt_platform.cc
@@ -12,12 +12,12 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-#include <memory>
-
-#include "cobalt/base/polymorphic_downcast.h"
 #include "cobalt/script/v8c/cobalt_platform.h"
 
+#include <memory>
+
 #include "base/logging.h"
+#include "cobalt/base/polymorphic_downcast.h"
 
 namespace cobalt {
 namespace script {
@@ -47,13 +47,14 @@
   }
 }
 
-// Since we put these v8 tasks direclty on the message loop, all the tasks are
+// Since we put these v8 tasks directly on the message loop, all the tasks are
 // "NonNestable".
-void CobaltPlatform::CobaltV8TaskRunner::PostNonNestableTask(std::unique_ptr<v8::Task> task) {
+void CobaltPlatform::CobaltV8TaskRunner::PostNonNestableTask(
+    std::unique_ptr<v8::Task> task) {
   return PostTask(std::move(task));
 }
-void CobaltPlatform::CobaltV8TaskRunner::PostNonNestableDelayedTask(std::unique_ptr<v8::Task> task,
-                                    double delay_in_seconds) {
+void CobaltPlatform::CobaltV8TaskRunner::PostNonNestableDelayedTask(
+    std::unique_ptr<v8::Task> task, double delay_in_seconds) {
   return PostDelayedTask(std::move(task), 0);
 }
 
diff --git a/cobalt/script/v8c/conversion_helpers.cc b/cobalt/script/v8c/conversion_helpers.cc
index 08931b6..47ea07d 100644
--- a/cobalt/script/v8c/conversion_helpers.cc
+++ b/cobalt/script/v8c/conversion_helpers.cc
@@ -13,7 +13,7 @@
 // limitations under the License.
 
 #include "cobalt/script/v8c/conversion_helpers.h"
-#include "nb/memory_scope.h"
+
 #include "v8/include/v8.h"
 
 namespace cobalt {
@@ -108,7 +108,6 @@
 // base::Time -> JSValue
 void ToJSValue(v8::Isolate* isolate, const base::Time& time,
                v8::Local<v8::Value>* out_value) {
-  TRACK_MEMORY_SCOPE("Javascript");
   *out_value =
       v8::Date::New(isolate->GetCurrentContext(),
                     time.is_null() ? std::numeric_limits<double>::quiet_NaN()
@@ -120,8 +119,6 @@
 void FromJSValue(v8::Isolate* isolate, v8::Local<v8::Value> value,
                  int conversion_flags, ExceptionState* exception_state,
                  base::Time* out_time) {
-  TRACK_MEMORY_SCOPE("Javascript");
-
   if (!value->IsObject()) {
     exception_state->SetSimpleException(kNotObjectType);
     return;
@@ -142,7 +139,6 @@
 void FromJSValue(v8::Isolate* isolate, v8::Local<v8::Value> value,
                  int conversion_flags, ExceptionState* exception_state,
                  V8cValueHandleHolder* out_holder) {
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK_EQ(conversion_flags & ~kConversionFlagsValueHandle, 0)
       << "Unexpected conversion flags found.";
   // If |value| is expected to be an IDL object, then we are supposed to throw
diff --git a/cobalt/script/v8c/conversion_helpers.h b/cobalt/script/v8c/conversion_helpers.h
index d1779af..e9b2fd7 100644
--- a/cobalt/script/v8c/conversion_helpers.h
+++ b/cobalt/script/v8c/conversion_helpers.h
@@ -43,7 +43,6 @@
 #include "cobalt/script/v8c/v8c_user_object_holder.h"
 #include "cobalt/script/v8c/v8c_value_handle.h"
 #include "cobalt/script/value_handle.h"
-#include "nb/memory_scope.h"
 #include "v8/include/v8.h"
 
 namespace cobalt {
@@ -720,7 +719,6 @@
 template <typename T>
 void ToJSValue(v8::Isolate* isolate, const Handle<T>& local,
                v8::Local<v8::Value>* out_value) {
-  TRACK_MEMORY_SCOPE("Javascript");
   ToJSValue(isolate, local.GetScriptValue(), out_value);
 }
 
diff --git a/cobalt/script/v8c/isolate_fellowship.h b/cobalt/script/v8c/isolate_fellowship.h
index e90267c..ae938c0 100644
--- a/cobalt/script/v8c/isolate_fellowship.h
+++ b/cobalt/script/v8c/isolate_fellowship.h
@@ -15,6 +15,8 @@
 #ifndef COBALT_SCRIPT_V8C_ISOLATE_FELLOWSHIP_H_
 #define COBALT_SCRIPT_V8C_ISOLATE_FELLOWSHIP_H_
 
+#include <memory>
+
 #include "base/memory/singleton.h"
 #include "cobalt/configuration/configuration.h"
 #include "cobalt/script/v8c/cobalt_platform.h"
@@ -46,7 +48,6 @@
  private:
   IsolateFellowship();
   ~IsolateFellowship();
-
 };
 
 }  // namespace v8c
diff --git a/cobalt/script/v8c/v8c_callback_function.h b/cobalt/script/v8c/v8c_callback_function.h
index 6ff4d05..aefb7b9 100644
--- a/cobalt/script/v8c/v8c_callback_function.h
+++ b/cobalt/script/v8c/v8c_callback_function.h
@@ -27,7 +27,6 @@
 #include "cobalt/script/v8c/conversion_helpers.h"
 #include "cobalt/script/v8c/entry_scope.h"
 #include "cobalt/script/v8c/scoped_persistent.h"
-#include "nb/memory_scope.h"
 #include "v8/include/v8.h"
 
 namespace cobalt {
diff --git a/cobalt/script/v8c/v8c_callback_function.h.pump b/cobalt/script/v8c/v8c_callback_function.h.pump
index 325cdbb..d60339f 100644
--- a/cobalt/script/v8c/v8c_callback_function.h.pump
+++ b/cobalt/script/v8c/v8c_callback_function.h.pump
@@ -32,7 +32,6 @@
 #include "cobalt/script/v8c/conversion_helpers.h"
 #include "cobalt/script/v8c/entry_scope.h"
 #include "cobalt/script/v8c/scoped_persistent.h"
-#include "nb/memory_scope.h"
 #include "v8/include/v8.h"
 
 namespace cobalt {
diff --git a/cobalt/script/v8c/v8c_global_environment.cc b/cobalt/script/v8c/v8c_global_environment.cc
index c3df50c..9ec5c07 100644
--- a/cobalt/script/v8c/v8c_global_environment.cc
+++ b/cobalt/script/v8c/v8c_global_environment.cc
@@ -30,7 +30,6 @@
 #include "cobalt/script/v8c/v8c_source_code.h"
 #include "cobalt/script/v8c/v8c_user_object_holder.h"
 #include "cobalt/script/v8c/v8c_value_handle.h"
-#include "nb/memory_scope.h"
 #include "starboard/common/murmurhash2.h"
 
 
@@ -92,15 +91,14 @@
       destruction_helper_(isolate),
       wrapper_factory_(new WrapperFactory(isolate)),
       script_value_factory_(new V8cScriptValueFactory(isolate)) {
-  TRACK_MEMORY_SCOPE("Javascript");
   TRACE_EVENT0("cobalt::script",
                "V8cGlobalEnvironment::V8cGlobalEnvironment()");
   wrapper_factory_.reset(new WrapperFactory(isolate));
   isolate_->SetData(kIsolateDataIndex, this);
   DCHECK(isolate_->GetData(kIsolateDataIndex) == this);
 
-  isolate_->SetAllowCodeGenerationFromStringsCallback(
-      AllowCodeGenerationFromStringsCallback);
+  isolate_->SetModifyCodeGenerationFromStringsCallback(
+      ModifyCodeGenerationFromStringsCallback);
 
   isolate_->SetAllowWasmCodeGenerationCallback(
       [](v8::Local<v8::Context> context, v8::Local<v8::String> source) {
@@ -127,7 +125,6 @@
 
 void V8cGlobalEnvironment::CreateGlobalObject() {
   TRACE_EVENT0("cobalt::script", "V8cGlobalEnvironment::CreateGlobalObject()");
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
 
   // Intentionally not an |EntryScope|, since the context doesn't exist yet.
@@ -143,7 +140,6 @@
 bool V8cGlobalEnvironment::EvaluateScript(
     const scoped_refptr<SourceCode>& source_code,
     std::string* out_result_utf8) {
-  TRACK_MEMORY_SCOPE("Javascript");
   TRACE_EVENT0("cobalt::script", "V8cGlobalEnvironment::EvaluateScript()");
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
 
@@ -181,7 +177,6 @@
     const scoped_refptr<SourceCode>& source_code,
     const scoped_refptr<Wrappable>& owning_object,
     base::Optional<ValueHandleHolder::Reference>* out_value_handle) {
-  TRACK_MEMORY_SCOPE("Javascript");
   TRACE_EVENT0("cobalt::script", "V8cGlobalEnvironment::EvaluateScript()");
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
 
@@ -259,7 +254,6 @@
 }
 
 void V8cGlobalEnvironment::AllowGarbageCollection(Wrappable* wrappable) {
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
 
   RemoveRoot(wrappable);
@@ -314,7 +308,6 @@
 void V8cGlobalEnvironment::Bind(const std::string& identifier,
                                 const scoped_refptr<Wrappable>& impl) {
   TRACE_EVENT0("cobalt::script", "V8cGlobalEnvironment::Bind()");
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK(impl);
 
   EntryScope entry_scope(isolate_);
@@ -336,7 +329,6 @@
                                   const scoped_refptr<Wrappable>& impl,
                                   const std::string& local_object_name) {
   TRACE_EVENT0("cobalt::script", "V8cGlobalEnvironment::BindTo()");
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK(impl);
 
   EntryScope entry_scope(isolate_);
@@ -379,8 +371,10 @@
 }
 
 // static
-bool V8cGlobalEnvironment::AllowCodeGenerationFromStringsCallback(
-    v8::Local<v8::Context> context, v8::Local<v8::String> source) {
+v8::ModifyCodeGenerationFromStringsResult
+V8cGlobalEnvironment::ModifyCodeGenerationFromStringsCallback(
+    v8::Local<v8::Context> context, v8::Local<v8::Value> source,
+    bool is_code_like) {
   V8cGlobalEnvironment* global_environment =
       V8cGlobalEnvironment::GetFromIsolate(context->GetIsolate());
   DCHECK(global_environment);
@@ -393,7 +387,7 @@
   // WebAssembly callback has not been explicitly set, however we *have* set
   // one.
   DCHECK_EQ(context->IsCodeGenerationFromStringsAllowed(), false);
-  return context->IsCodeGenerationFromStringsAllowed();
+  return {context->IsCodeGenerationFromStringsAllowed(), {}};
 }
 
 // static
@@ -402,14 +396,14 @@
   v8::Isolate* isolate = v8::Isolate::GetCurrent();
   V8cGlobalEnvironment* global_environment =
       V8cGlobalEnvironment::GetFromIsolate(isolate);
-  if (isolate->GetEnteredContext().IsEmpty()) {
+  if (isolate->GetEnteredOrMicrotaskContext().IsEmpty()) {
     return;
   }
   if (message->ErrorLevel() != v8::Isolate::kMessageError) {
     return;
   }
 
-  v8::Local<v8::Context> context = isolate->GetEnteredContext();
+  v8::Local<v8::Context> context = isolate->GetEnteredOrMicrotaskContext();
   ErrorReport error_report;
   error_report.message = *v8::String::Utf8Value(isolate, message->Get());
   error_report.filename =
@@ -431,7 +425,6 @@
 
 v8::MaybeLocal<v8::Value> V8cGlobalEnvironment::EvaluateScriptInternal(
     const scoped_refptr<SourceCode>& source_code) {
-  TRACK_MEMORY_SCOPE("Javascript");
   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
 
   // Note that we expect an |EntryScope| and |v8::TryCatch| to have been set
@@ -553,7 +546,6 @@
                                                   const char* filename) {
   TRACE_EVENT1("cobalt::script", "V8cGlobalEnvironment::EvaluateEmbeddedScript",
                "filename", filename);
-  TRACK_MEMORY_SCOPE("Javascript");
   std::string source(reinterpret_cast<const char*>(data), size);
   scoped_refptr<SourceCode> source_code =
       new V8cSourceCode(source, base::SourceLocation(filename, 1, 1));
diff --git a/cobalt/script/v8c/v8c_global_environment.h b/cobalt/script/v8c/v8c_global_environment.h
index 265c2e1..6996e62 100644
--- a/cobalt/script/v8c/v8c_global_environment.h
+++ b/cobalt/script/v8c/v8c_global_environment.h
@@ -151,8 +151,10 @@
     v8::Isolate* isolate_;
   };
 
-  static bool AllowCodeGenerationFromStringsCallback(
-      v8::Local<v8::Context> context, v8::Local<v8::String> source);
+  static v8::ModifyCodeGenerationFromStringsResult
+  ModifyCodeGenerationFromStringsCallback(v8::Local<v8::Context> context,
+                                          v8::Local<v8::Value> source,
+                                          bool is_code_like);
 
   static void MessageHandler(v8::Local<v8::Message> message,
                              v8::Local<v8::Value> data);
diff --git a/cobalt/script/v8c/v8c_heap_tracer.cc b/cobalt/script/v8c/v8c_heap_tracer.cc
index cd20679..841ca15 100644
--- a/cobalt/script/v8c/v8c_heap_tracer.cc
+++ b/cobalt/script/v8c/v8c_heap_tracer.cc
@@ -92,7 +92,8 @@
           wrapper_factory->MaybeGetWrapperPrivate(
               static_cast<Wrappable*>(traceable));
       if (maybe_wrapper_private) {
-        RegisterEmbedderReference(maybe_wrapper_private->traced_global().As<v8::Data>());
+        RegisterEmbedderReference(
+            maybe_wrapper_private->traced_global().As<v8::Data>());
       }
     }
 
diff --git a/cobalt/script/v8c/v8c_heap_tracer.h b/cobalt/script/v8c/v8c_heap_tracer.h
index a807bfa..fb4c363 100644
--- a/cobalt/script/v8c/v8c_heap_tracer.h
+++ b/cobalt/script/v8c/v8c_heap_tracer.h
@@ -70,9 +70,7 @@
 
   // Used during shutdown to ask V8cHeapTracer do nothing so that V8 can
   // GC every embedder-created object.
-  void DisableForShutdown() {
-    disabled_ = true;
-  }
+  void DisableForShutdown() { disabled_ = true; }
 
  private:
   void MaybeAddToFrontier(Traceable* traceable);
diff --git a/cobalt/script/v8c/v8c_script_debugger.cc b/cobalt/script/v8c/v8c_script_debugger.cc
index 197f747..f9b4733 100644
--- a/cobalt/script/v8c/v8c_script_debugger.cc
+++ b/cobalt/script/v8c/v8c_script_debugger.cc
@@ -27,7 +27,6 @@
 #include "cobalt/script/v8c/conversion_helpers.h"
 #include "cobalt/script/v8c/v8c_tracing_controller.h"
 #include "include/inspector/Runtime.h"  // generated
-#include "nb/memory_scope.h"
 #include "v8/include/libplatform/v8-tracing.h"
 #include "v8/include/v8-inspector.h"
 #include "v8/third_party/inspector_protocol/crdtp/json.h"
@@ -139,8 +138,6 @@
                                sizeof(kContextName) - 1)));
 }
 
-V8cScriptDebugger::~V8cScriptDebugger() {}
-
 void V8cScriptDebugger::Attach(const std::string& state) {
   DCHECK(!inspector_session_);
   inspector_session_ =
@@ -172,7 +169,6 @@
 
 bool V8cScriptDebugger::EvaluateDebuggerScript(const std::string& js_code,
                                                std::string* out_result_utf8) {
-  TRACK_MEMORY_SCOPE("Javascript");
   TRACE_EVENT0("cobalt::script", "V8cScriptDebugger::EvaluateDebuggerScript()");
 
   v8::Isolate* isolate = global_environment_->isolate();
diff --git a/cobalt/script/v8c/v8c_script_debugger.h b/cobalt/script/v8c/v8c_script_debugger.h
index ac71e77..95c76d3 100644
--- a/cobalt/script/v8c/v8c_script_debugger.h
+++ b/cobalt/script/v8c/v8c_script_debugger.h
@@ -34,8 +34,9 @@
  public:
   V8cScriptDebugger(V8cGlobalEnvironment* v8c_global_environment,
                     Delegate* delegate);
-  ~V8cScriptDebugger() override;
+  ~V8cScriptDebugger() override {}
 
+  // From ScriptDebugger.
   void Attach(const std::string& state) override;
   std::string Detach() override;
 
@@ -60,6 +61,7 @@
   PauseOnExceptionsState SetPauseOnExceptions(
       PauseOnExceptionsState state) override;
 
+  // From base::DebuggerHooks.
   void AsyncTaskScheduled(const void* task, const std::string& name,
                           bool recurring) override;
   void AsyncTaskStarted(const void* task) override;
@@ -67,7 +69,7 @@
   void AsyncTaskCanceled(const void* task) override;
   void AllAsyncTasksCanceled() override;
 
-  // v8_inspector::V8InspectorClient implementation.
+  // From v8_inspector::V8InspectorClient.
   void runMessageLoopOnPause(int contextGroupId) override;
   void quitMessageLoopOnPause() override;
   void runIfWaitingForDebugger(int contextGroupId) override;
@@ -82,7 +84,7 @@
                          unsigned lineNumber, unsigned columnNumber,
                          v8_inspector::V8StackTrace*) override;
 
-  // v8_inspector::V8Inspector::Channel implementation.
+  // From v8_inspector::V8Inspector::Channel.
   void sendResponse(
       int callId, std::unique_ptr<v8_inspector::StringBuffer> message) override;
   void sendNotification(
diff --git a/cobalt/script/v8c/v8c_tracing_controller.h b/cobalt/script/v8c/v8c_tracing_controller.h
index c346eb6..dbd6467 100644
--- a/cobalt/script/v8c/v8c_tracing_controller.h
+++ b/cobalt/script/v8c/v8c_tracing_controller.h
@@ -15,6 +15,7 @@
 #ifndef COBALT_SCRIPT_V8C_V8C_TRACING_CONTROLLER_H_
 #define COBALT_SCRIPT_V8C_V8C_TRACING_CONTROLLER_H_
 
+#include <memory>
 #include <string>
 #include <vector>
 
diff --git a/cobalt/script/v8c/v8c_user_object_holder.h b/cobalt/script/v8c/v8c_user_object_holder.h
index 8548849..749690c 100644
--- a/cobalt/script/v8c/v8c_user_object_holder.h
+++ b/cobalt/script/v8c/v8c_user_object_holder.h
@@ -45,8 +45,7 @@
   V8cUserObjectHolder(v8::Isolate* isolate, v8::Local<v8::Value> value)
       : isolate_(isolate),
         handle_(isolate, value),
-        prevent_garbage_collection_count_(0) {
-  }
+        prevent_garbage_collection_count_(0) {}
   V8cUserObjectHolder(const V8cUserObjectHolder&) = delete;
   V8cUserObjectHolder& operator=(const V8cUserObjectHolder&) = delete;
   V8cUserObjectHolder(V8cUserObjectHolder&& other)
@@ -140,4 +139,4 @@
 }  // namespace script
 }  // namespace cobalt
 
-#endif  // COBALT_SCRIPT_V8C_V8C_USER_OBJECT_HOLDER_H_
\ No newline at end of file
+#endif  // COBALT_SCRIPT_V8C_V8C_USER_OBJECT_HOLDER_H_
diff --git a/cobalt/script/wrappable.h b/cobalt/script/wrappable.h
index 28cced8..a99d039 100644
--- a/cobalt/script/wrappable.h
+++ b/cobalt/script/wrappable.h
@@ -16,6 +16,7 @@
 #define COBALT_SCRIPT_WRAPPABLE_H_
 
 #include <memory>
+#include <utility>
 
 #include "base/bind.h"
 #include "base/logging.h"
@@ -77,7 +78,7 @@
   virtual JSObjectType GetJSObjectType() { return JSObjectType::kObject; }
 
  protected:
-  virtual ~Wrappable() { }
+  virtual ~Wrappable() {}
 
  private:
   // A cached weak reference to the interface's corresponding wrapper object.
diff --git a/cobalt/site/docs/contributors/index.md b/cobalt/site/docs/contributors/index.md
index 77811fa..3eb235f 100644
--- a/cobalt/site/docs/contributors/index.md
+++ b/cobalt/site/docs/contributors/index.md
@@ -4,61 +4,6 @@
 ---
 
 We'd love to hear about how you would like to contribute to Cobalt!
-Please read through this document first to understand the process and
-to make sure you know what to expect.
 
-## Before You Contribute
-
-### As an Individual
-
-Before Cobalt can use your code, as an unaffiliated individual, you must sign
-the [Google Individual Contributor License
-Agreement](https://cla.developers.google.com/about/google-individual) (CLA).
-You can complete that process online.
-
-### As a Company
-
-If you represent a company that wishes to have one or more employees contribute
-to Cobalt on behalf of your company, you need to agree to the
-[Software Grant and Corporate Contributor License Agreement](
-https://cla.developers.google.com/about/google-corporate).
-
-### What is a CLA?
-
-The Contributor License Agreement is necessary mainly because you own the
-copyright to your changes, even after your contribution becomes part of our
-codebase, so we need your permission to use and distribute your code. We also
-need to be sure of various other things — for instance that you‘ll tell us if
-you know that your code infringes on other people’s patents.
-
-You don‘t have to sign the CLA until after you’ve submitted your code for
-review and a member has approved it, but you must do it before we can put
-your code into our codebase. Before you start working on a larger
-contribution, get in touch with us to discuss your idea so that we can help
-out and possibly guide you. Early coordination makes it much easier to avoid
-frustration later on.
-
-### Code Reviews
-
-All submissions, including submissions by project members, require review. We
-currently use [Gerrit Code Review](https://www.gerritcodereview.com/) for this
-purpose. Currently, team-member submissions are reviewed privately, and
-external submissions go through public reviews.
-
-## Submission Process
-
-The following steps explain the submission process:
-
-*  Ensure you or your company have signed the appropriate CLA as discussed
-   in the [Before You Contribute](#before-you-contribute) section above.
-*  Rebase your changes down into a single git commit.
-*  Run `git push origin HEAD:refs/for/master` to upload the review to
-   [Cobalt's Gerrit instance](https://cobalt-review.googlesource.com/).
-*  Someone from the maintainers team reviews the code, adding comments on
-   any things that need to change before the code can be submitted.
-*  If you need to make changes, make them locally, test them, then
-   `git commit --amend` to add them to the **existing** commit. Then return
-   to step 2.
-*  If you do not need to make any more changes, a maintainer integrates the
-   change into our private repository, and it is pushed out to the public
-   repository after some time.
+Please find the contribution guidelines in the Cobalt
+[GitHub repo](https://github.com/youtube/cobalt/blob/main/CONTRIBUTING.md).
diff --git a/cobalt/site/docs/development/setup-docker.md b/cobalt/site/docs/development/setup-docker.md
index d7b2beb..ae9c1b1 100644
--- a/cobalt/site/docs/development/setup-docker.md
+++ b/cobalt/site/docs/development/setup-docker.md
@@ -4,7 +4,7 @@
 ---
 
 We provide <a
-href="https://cobalt.googlesource.com/cobalt/+/refs/heads/22.lts.stable/src/docker/linux/">Docker image definitions</a> to simplify managing build environments.
+href="https://github.com/youtube/cobalt/tree/main/docker/linux/">Docker image definitions</a> to simplify managing build environments.
 
 The instructions below assume Docker is installed and is able to run basic
 hello-world verification. `docker-compose` command is expected to be available as well.
@@ -15,7 +15,7 @@
 `cobalt` directory that contains the repository:
 
 ```
-$ git clone https://cobalt.googlesource.com/cobalt
+$ git clone https://github.com/youtube/cobalt.git
 $ cd cobalt
 ```
 
@@ -38,7 +38,7 @@
 `qa` and `gold`, and target is the build target passed to ninja
 
 See <a
-href="https://cobalt.googlesource.com/cobalt/+/refs/heads/22.lts.stable/src/README.md#build-types">Cobalt README</a> for full details.
+href="https://github.com/youtube/cobalt#building-and-running-the-code">Cobalt README</a> for full details.
 
 Builds will be available in your `${COBALT_SRC}/out` directory.
 
@@ -47,6 +47,15 @@
 output files in `src/out/<platform>` directory have `root` as file owner.
 </aside>
 
+#### Windows Builds
+
+We have a separate docker compose file for windows. Use the -f or --file flags
+to specify a configuration file to use.
+
+```
+docker-compose -f docker-compose-windows.yml run win-win32
+```
+
 ### Customization
 
 To parametrize base operating system images used for the build, pass
@@ -90,4 +99,4 @@
 ```
 
 and try to build Cobalt with the <a
-href="https://cobalt.googlesource.com/cobalt/+/refs/heads/22.lts.stable/src/README.md#building-and-running-the-code">usual GN / ninja flow.</a>
+href="https://github.com/youtube/cobalt#building-and-running-the-code">usual GN / ninja flow.</a>
diff --git a/cobalt/site/docs/development/setup-linux.md b/cobalt/site/docs/development/setup-linux.md
index 0acdd64..124a3d0 100644
--- a/cobalt/site/docs/development/setup-linux.md
+++ b/cobalt/site/docs/development/setup-linux.md
@@ -9,7 +9,7 @@
 on the machine that you are using to view the client. For example, you cannot
 SSH into another machine and run the binary on that machine.
 
-These instructions were tested on a fresh ubuntu:20.04 Docker image. (1/12/22)
+These instructions were tested on a clean ubuntu:20.04 Docker image. (7/11/23)
 Required libraries can differ depending on your Linux distribution and version.
 
 ## Set up your workstation
@@ -19,10 +19,22 @@
 
     ```
     $ sudo apt update && sudo apt install -qqy --no-install-recommends \
-        pkgconf ninja-build bison nasm yasm binutils clang libgles2-mesa-dev \
-        mesa-common-dev libpulse-dev libavresample-dev libasound2-dev \
-        libxrender-dev libxcomposite-dev libxml2-dev curl git \
-        python3.8-venv libxi-dev
+        bison clang libasound2-dev libgles2-mesa-dev libglib2.0-dev \
+        libxcomposite-dev libxi-dev libxrender-dev nasm ninja-build \
+        python3.8-venv
+    ```
+
+1.  Install ccache to support build acceleration. Build acceleration is \
+    enabled by default and must be disabled if ccache is not installed.
+
+    ```
+    $ sudo apt install -qqy --no-install-recommends ccache
+    ```
+
+    We recommend adjusting the cache size as needed to increase cache hits:
+
+    ```
+    $ ccache --max-size=20G
     ```
 
 1.  Install Node.js via `nvm`:
@@ -39,19 +51,6 @@
         && nvm use default
     ```
 
-1.  Install ccache to support build acceleration. ccache is automatically used
-    when available, otherwise defaults to unaccelerated building:
-
-    ```
-    $ sudo apt install -qqy --no-install-recommends ccache
-    ```
-
-    We recommend adjusting the cache size as needed to increase cache hits:
-
-    ```
-    $ ccache --max-size=20G
-    ```
-
 1.  Install GN, which we use for our build system code. There are a few ways to
     get the binary, follow the instructions for whichever way you prefer
     [here](https://cobalt.googlesource.com/third_party/gn/+/refs/heads/main/#getting-a-binary).
@@ -60,7 +59,7 @@
     `cobalt` directory that contains the repository:
 
     ```
-    $ git clone https://cobalt.googlesource.com/cobalt
+    $ git clone https://github.com/youtube/cobalt.git
     ```
 
 1.  Set `PYTHONPATH` environment variable to include the full path to the
@@ -200,10 +199,3 @@
 better understand Cobalt's execution flow in general.
 
 Simply build and run one of these configs and observe the terminal output.
-<!--
-<aside class="note">
-<b>Note:</b> If you plan to upload reviews to the Cobalt repository, you
-also need to <a href="/development/setup-gitcookies.html">follow these
-instructions</a> to set up a <code>.gitcookies</code> file.
-</aside>
--->
diff --git a/cobalt/site/docs/development/setup-raspi.md b/cobalt/site/docs/development/setup-raspi.md
index 60a2099..84952f3 100644
--- a/cobalt/site/docs/development/setup-raspi.md
+++ b/cobalt/site/docs/development/setup-raspi.md
@@ -54,8 +54,8 @@
 
     ```
     $ sudo apt install -qqy --no-install-recommends g++-multilib \
-        wget xz-utils libxml2  binutils-aarch64-linux-gnu \
-        binutils-arm-linux-gnueabi  libglib2.0-dev
+        wget xz-utils libxml2 binutils-aarch64-linux-gnu \
+        binutils-arm-linux-gnueabi libglib2.0-dev
     ```
 
 1.  Choose a location for the installed toolchain &ndash; e.g. `raspi-tools`
diff --git a/cobalt/site/docs/development/setup-windows.md b/cobalt/site/docs/development/setup-windows.md
new file mode 100644
index 0000000..65b9496
--- /dev/null
+++ b/cobalt/site/docs/development/setup-windows.md
@@ -0,0 +1,266 @@
+---

+layout: doc

+title: "Set up your environment - Windows"

+---

+

+These instructions explain how Windows users can set up their Cobalt development

+environment, clone a copy of the Cobalt code repository, and build a Cobalt

+binary. Note that the binary has a graphical client and must be run locally on

+the machine that you are using to view the client. For example, you cannot SSH

+into another machine and run the binary on that machine.

+

+## Set up your workstation

+

+1.  Install the following required packages:

+    * [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)

+    (see the `Installing on Windows` instructions)

+    * [ninja](https://ninja-build.org/) (see the `Getting Ninja` instructions)

+    * [nodejs](https://nodejs.org/en)

+    * [python3](https://www.python.org/downloads/)

+    * The following [VS2022](https://visualstudio.microsoft.com/vs/) components:

+      * Microsoft.VisualStudio.Component.VC.14.34.17.4.x86.x64

+      * Microsoft.VisualStudio.Component.VC.Llvm.Clang

+      * Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset

+      * Microsoft.VisualStudio.Component.Windows10SDK.18362

+      * Microsoft.VisualStudio.Workload.NativeDesktop

+    * [winflexbison](https://github.com/lexxmark/winflexbison)

+

+    <aside class="note">

+      <b>Note:</b> By default, Cobalt's build system will check

+      C:\Program Files (x86)\ for the Visual Studio install directory. If you

+      installed it elsewhere, you can set the `VSINSTALLDIR` environment

+      variable to point to the correct location. For example

+      `C:/Program Files/Microsoft Visual Studio/2022/Professional`

+    </aside>

+

+1.  Install GN, which we use for our build system code. There are a few ways to

+    get the binary, follow the instructions for whichever way you prefer

+    [here](https://cobalt.googlesource.com/third_party/gn/+/refs/heads/main/#getting-a-binary).

+

+1.  (Optional)

+    [Install Sccache](https://github.com/mozilla/sccache#installation) to

+    support build acceleration.

+

+1.  Make sure all of the above installed packages are on your Path environment

+    variable.

+

+    ```

+    "C:\Program Files\Git"

+    "C:\Program Files\Ninja"

+    "C:\Program Files\nodejs"

+    "C:\python_38" # Python 3.8 is the oldest supported python version. You may have a newer version installed.

+    "C:\python_38\Scripts"

+    "C:\winflexbison" # Or wherever you chose to unpack the zip file

+    "C:\gn"

+    "C:\sccache"

+    ```

+

+1.  Clone the Cobalt code repository. The following `git` command creates a

+    `cobalt` directory that contains the repository:

+

+    ```

+    $ git clone https://github.com/youtube/cobalt.git

+    ```

+

+    <aside class="note">

+      If you plan to contribute to the Cobalt codebase it is recommended that

+      you create your own

+      [fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks)

+      of the [Cobalt repository](https://github.com/youtube/cobalt), apply

+      changes to the fork, and then

+      [create a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)

+      to merge those changes into the Cobalt repository.

+    </aside>

+

+1.  Set the `PYTHONPATH` environment variable to include the full path to the

+    top-level `cobalt` directory from the previous step.

+

+### Set up Developer Tools

+

+1.  Enter your new `cobalt` directory:

+

+    ```

+    $ cd cobalt

+    ```

+

+1.  Create a virtual evnrionment by running the following in cmd:

+

+    ```

+    py -3 -m venv "%HOME%/.virtualenvs/cobalt_dev"

+    "%HOME%/.virtualenvs/cobalt_dev/Scripts/activate.bat"

+    pip install -r requirements.txt

+    ```

+

+    Or the following in Powershell:

+

+    ```

+    py -3 -m venv $env:HOME/.virtualenvs/cobalt_dev

+    $env:HOME/.virtualenvs/cobalt_dev/Scripts/activate.ps1

+    pip install -r requirements.txt

+    ```

+

+    Or the following in Git Bash:

+

+    ```

+    py -3 -m venv ~/.virtualenvs/cobalt_dev

+    source ~/.virtualenvs/cobalt_dev/Scripts/activate

+    pip install -r requirements.txt

+    ```

+

+1.  Install the pre-commit hooks:

+

+    ```

+    $ pre-commit install -t post-checkout -t pre-commit -t pre-push --allow-missing-config

+    $ git checkout -b <my-branch-name> origin/main

+    ```

+

+## Build and Run Cobalt

+

+1.  Build the code running the following command in the top-level `cobalt`

+    directory. You must specify a platform when running this command. On Windows

+    the canonical platform is `win-win32`.

+

+    You can also use the `-c` command-line flag to specify a `build_type`.

+    Valid build types are `debug`, `devel`, `qa`, and `gold`. If you

+    specify a build type, the command finishes sooner. Otherwise, all types

+    are built.

+

+    ```

+    $ python cobalt/build/gn.py [-c <build_type>] -p <platform>

+    ```

+

+1.  Compile the code from the `cobalt/` directory:

+

+    ```

+    $ ninja -C out/<platform>_<build_type> <target_name>

+    ```

+

+    The previous command contains three variables:

+

+    1.  `<platform>` is the [platform

+        configuration](/starboard/porting.html#1-enumerate-and-name-your-platform-configurations)

+        that identifies the platform. As described in the Starboard porting

+        guide, it contains a `family name` (like `linux`) and a

+        `binary variant` (like `x64x11`), separated by a hyphen.

+    1.  `<build_type>` is the build you are compiling. Possible values are

+        `debug`, `devel`, `qa`, and `gold`.

+    1.  `<target_name>` is the name assigned to the compiled code and it is

+        used to run the code compiled in this step. The most common names are

+        `cobalt`, `nplb`, and `all`:

+        *   `cobalt` builds the Cobalt app.

+        *   `nplb` builds Starboard's platform verification test suite to

+            ensure that your platform's code passes all tests for running

+            Cobalt.

+        *   `all` builds all targets.

+

+    For example:

+

+    ```

+    ninja -C out/win-win32_debug cobalt

+    ```

+

+    This command compiles the Cobalt `debug` configuration for the

+    `win-win32` platform and creates a target named `cobalt` that

+    you can then use to run the compiled code.

+

+1.  Run the compiled code to launch the Cobalt client:

+

+    ```

+    # Note that 'cobalt' was the <target_name> from the previous step.

+    $ out/win-win32_debug/cobalt [--url=<url>]

+    ```

+

+    The flags in the following table are frequently used, and the full set

+    of flags that this command supports are in

+    [cobalt/browser/switches.cc](https://github.com/youtube/cobalt/blob/main/cobalt/browser/switches.cc).

+

+    <table class="details responsive">

+      <tr>

+        <th colspan="2">Flags</th>

+      </tr>

+      <tr>

+        <td><code>allow_http</code></td>

+        <td>Indicates that you want to use <code>http</code> instead of

+            <code>https</code>.</td>

+      </tr>

+      <tr>

+        <td><code>ignore_certificate_errors</code></td>

+        <td>Indicates that you want to connect to an <code>https</code> host

+            that doesn't have a certificate that can be validated by our set

+            of root CAs.</td>

+      </tr>

+      <tr>

+        <td><code>url</code></td>

+        <td>Defines the startup URL that Cobalt will use. If no value is set,

+            then Cobalt uses a default URL. This option lets you point at a

+            different app than the YouTube app.</td>

+      </tr>

+    </table>

+

+## Debugging Cobalt

+

+`debug`, `devel`, and `qa` configs of Cobalt expose a feature enabling

+developers to trace Cobalt's callstacks per-thread. This is not only a great way

+to debug application performance, but also a great way to debug issues and

+better understand Cobalt's execution flow in general.

+

+Simply build and run one of these configs and observe the terminal output.

+

+## Cobalt on Xbox One

+

+In order to build Cobalt for Xbox One, you will need access to Microsoft's XDK.

+In order to sideload and run custom apps on Xbox you will need either an Xbox

+devkit or the ability to put an Xbox into developer mode. Those steps are

+outside the scope of this document.

+

+### AppxManifest Settings

+

+Cobalt makes use of several template files and a settings file to generate an

+AppxManifest.xml during the ninja step. The settings can be found in

+`starboard/xb1/appx_product_settings.py`. Most of the default values are stubs

+and intended to be overwritten by developers creating their own app with Cobalt,

+but they should work for local testing.

+

+<aside class="note">

+  <b>Note:</b> if you change the value of `PUBLISHER` in

+  `appx_product_settings.py` you <b>must</b> regenerate a pfx file in order for

+  the packaging step below to work correctly. Follow the instructions in

+  `starboard/xb1/cert/README.md` to generate your own pfx.

+</aside>

+

+### Build Cobalt

+

+To build Cobalt for the Xbox One, set the platform to `xb1` in the gn step:

+

+```

+$ python cobalt/build/gn.py [-c <build_type>] -p xb1

+```

+

+Then specify the `cobalt_install` build target in the ninja step:

+

+```

+ninja -C out/xb1_devel cobalt_install

+```

+

+### Package an Appx

+

+There's a convenience script at `starboard/xb1/tools/packager.py` for packaging

+the compiled code into an appx and then signing the appx with the pfx file

+located at `starboard/xb1/cert/cobalt.pfx`. The source, output, and product

+flags must be specified, and the only valid product for an external build is

+`cobalt`. Here's an example usage:

+

+```

+python starboard/xb1/tools/packager.py -s out/xb1_devel/ -o out/xb1_devel/package -p cobalt

+```

+

+Alternatively, you can use the

+[MakeAppx](https://learn.microsoft.com/en-us/windows/win32/appxpkg/make-appx-package--makeappx-exe-)

+and

+[SignTool](https://learn.microsoft.com/en-us/windows/win32/seccrypto/signtool)

+PowerShell commands to manually perform those steps.

+

+Once the appx has been created and signed, it can be deployed to an Xbox using

+the

+[WinAppDeployCmd](https://learn.microsoft.com/en-us/windows/uwp/packaging/install-universal-windows-apps-with-the-winappdeploycmd-tool)

+PowerShell command.

diff --git a/cobalt/site/docs/gen/cobalt/doc/cvals.md b/cobalt/site/docs/gen/cobalt/doc/cvals.md
index 752fc7f..665c6a1 100644
--- a/cobalt/site/docs/gen/cobalt/doc/cvals.md
+++ b/cobalt/site/docs/gen/cobalt/doc/cvals.md
@@ -79,7 +79,7 @@
 
 #### PublicCVals
 
-*   **Count.DOM.EventListeners** - The total number of EventListeners in
+*   **Count.WEB.EventListeners** - The total number of EventListeners in
     existence globally. This includes ones that are pending garbage collection.
 *   **Count.DOM.Nodes** - The total number of Nodes in existence globally. This
     includes ones that are pending garbage collection.
@@ -95,7 +95,7 @@
 
 #### DebugCVals
 
-*   **Count.DOM.ActiveJavaScriptEvents** - The number of JavaScript events that
+*   **Count.WEB.ActiveJavaScriptEvents** - The number of JavaScript events that
     are currently running.
 *   **Count.DOM.Attrs** - The total number of Attrs in existence globally. This
     includes ones that are pending garbage collection.
diff --git a/cobalt/site/docs/reference/starboard/configuration-public.md b/cobalt/site/docs/reference/starboard/configuration-public.md
index 285f90e..44659a2 100644
--- a/cobalt/site/docs/reference/starboard/configuration-public.md
+++ b/cobalt/site/docs/reference/starboard/configuration-public.md
@@ -50,7 +50,6 @@
 
 | Properties |
 | :--- |
-| **`SB_HAS_BILINEAR_FILTERING_SUPPORT`**<br><br>Indicates whether or not the given platform supports bilinear filtering. This can be checked to enable/disable renderer tests that verify that this is working properly.<br><br>The default value in the Stub implementation is `1` |
 | **`SB_HAS_NV12_TEXTURE_SUPPORT`**<br><br>Indicates whether or not the given platform supports rendering of NV12 textures. These textures typically originate from video decoders.<br><br>The default value in the Stub implementation is `0` |
 | **`SB_HAS_VIRTUAL_REALITY`**<br><br>The default value in the Stub implementation is `1` |
 
diff --git a/cobalt/site/docs/reference/starboard/modules/13/accessibility.md b/cobalt/site/docs/reference/starboard/modules/13/accessibility.md
index a6c8460..1a5adcb 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/accessibility.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/accessibility.md
@@ -251,4 +251,3 @@
 ```
 bool SbAccessibilitySetCaptionsEnabled(bool enabled)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/atomic.md b/cobalt/site/docs/reference/starboard/modules/13/atomic.md
index 5f79990..9741f3c 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/atomic.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/atomic.md
@@ -108,4 +108,3 @@
 ```
 static SbAtomic8 SbAtomicRelease_CompareAndSwap8(volatile SbAtomic8 *ptr, SbAtomic8 old_value, SbAtomic8 new_value)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/byte_swap.md b/cobalt/site/docs/reference/starboard/modules/13/byte_swap.md
index 580bc5d..c83927d 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/byte_swap.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/byte_swap.md
@@ -73,4 +73,3 @@
 ```
 uint64_t SbByteSwapU64(uint64_t value)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/condition_variable.md b/cobalt/site/docs/reference/starboard/modules/13/condition_variable.md
index 836c4b8..e58e106 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/condition_variable.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/condition_variable.md
@@ -138,4 +138,3 @@
 ```
 SbConditionVariableResult SbConditionVariableWaitTimed(SbConditionVariable *condition, SbMutex *mutex, SbTime timeout_duration)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/cpu_features.md b/cobalt/site/docs/reference/starboard/modules/13/cpu_features.md
index ee12e71..7a4bcc0 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/cpu_features.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/cpu_features.md
@@ -259,4 +259,3 @@
 ```
 bool SbCPUFeaturesGet(SbCPUFeatures *features)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/directory.md b/cobalt/site/docs/reference/starboard/modules/13/directory.md
index d46c9a1..dcdf48a 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/directory.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/directory.md
@@ -115,4 +115,3 @@
 ```
 SbDirectory SbDirectoryOpen(const char *path, SbFileError *out_error)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/egl.md b/cobalt/site/docs/reference/starboard/modules/13/egl.md
index b1e120b..c8c2120 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/egl.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/egl.md
@@ -144,4 +144,3 @@
     config, void *native_pixmap, const SbEglAttrib *attrib_list)`
 *   `SbEglBoolean(*eglWaitSync)(SbEglDisplay dpy, SbEglSync sync, SbEglInt32
     flags)`
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/file.md b/cobalt/site/docs/reference/starboard/modules/13/file.md
index e22edeb..56eb415 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/file.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/file.md
@@ -402,4 +402,3 @@
 ```
 static int SbFileWriteAll(SbFile file, const char *data, int size)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/gles.md b/cobalt/site/docs/reference/starboard/modules/13/gles.md
index 7a9108a..163d8d7 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/gles.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/gles.md
@@ -459,4 +459,3 @@
     internalformat, SbGlSizei width, SbGlSizei height, SbGlSizei depth)`
 *   `void(*glGetInternalformativ)(SbGlEnum target, SbGlEnum internalformat,
     SbGlEnum pname, SbGlSizei bufSize, SbGlInt32 *params)`
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/input.md b/cobalt/site/docs/reference/starboard/modules/13/input.md
index e8df816..ec86793 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/input.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/input.md
@@ -168,4 +168,3 @@
 
 *   `float x`
 *   `float y`
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/key.md b/cobalt/site/docs/reference/starboard/modules/13/key.md
index 16be3c1..bf8583c 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/key.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/key.md
@@ -290,4 +290,3 @@
 *   `kSbKeyModifiersPointerButtonMiddle`
 *   `kSbKeyModifiersPointerButtonBack`
 *   `kSbKeyModifiersPointerButtonForward`
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/memory.md b/cobalt/site/docs/reference/starboard/modules/13/memory.md
index e09dbc3..a094a66 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/memory.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/memory.md
@@ -345,4 +345,3 @@
 ```
 bool SbMemoryUnmap(void *virtual_address, int64_t size_bytes)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/memory_reporter.md b/cobalt/site/docs/reference/starboard/modules/13/memory_reporter.md
index 4b4a539..d67ef1a 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/memory_reporter.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/memory_reporter.md
@@ -101,4 +101,3 @@
 ```
 bool SbMemorySetReporter(struct SbMemoryReporter *tracker)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/microphone.md b/cobalt/site/docs/reference/starboard/modules/13/microphone.md
index 1379f86..d760e1e 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/microphone.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/microphone.md
@@ -260,4 +260,3 @@
 ```
 int SbMicrophoneRead(SbMicrophone microphone, void *out_audio_data, int audio_data_size)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/mutex.md b/cobalt/site/docs/reference/starboard/modules/13/mutex.md
index 58f1907..05dd810 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/mutex.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/mutex.md
@@ -125,4 +125,3 @@
 ```
 bool SbMutexRelease(SbMutex *mutex)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/once.md b/cobalt/site/docs/reference/starboard/modules/13/once.md
index ce3c4d6..2ad1959 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/once.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/once.md
@@ -55,4 +55,3 @@
 ```
 bool SbOnce(SbOnceControl *once_control, SbOnceInitRoutine init_routine)
 ```
-
diff --git a/cobalt/site/docs/reference/starboard/modules/13/socket_waiter.md b/cobalt/site/docs/reference/starboard/modules/13/socket_waiter.md
index 738fafb..855dcf8 100644
--- a/cobalt/site/docs/reference/starboard/modules/13/socket_waiter.md
+++ b/cobalt/site/docs/reference/starboard/modules/13/socket_waiter.md
@@ -235,4 +235,3 @@
 ```
 void SbSocketWaiterWakeUp(SbSocketWaiter waiter)
 ```
-
diff --git a/cobal