diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..e2ec9e5 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,5 @@ +[alias] +run_wasm = "run --release --package run_wasm --" +# Other crates use the alias run-wasm, even though crate names should use `_`s not `-`s +# Allow this to be used +run-wasm = "run_wasm" diff --git a/.github/copyright.sh b/.github/copyright.sh new file mode 100755 index 0000000..4b23734 --- /dev/null +++ b/.github/copyright.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +# If there are new files with headers that can't match the conditions here, +# then the files can be ignored by an additional glob argument via the -g flag. +# For example: +# -g "!src/special_file.rs" +# -g "!src/special_directory" + +# Check all the standard Rust source files +output=$(rg "^// Copyright (19|20)[\d]{2} (.+ and )?the Velato Authors( and .+)?$\n^// SPDX-License-Identifier: Apache-2\.0 OR MIT$\n\n" --files-without-match --multiline -g "*.rs" .) + +if [ -n "$output" ]; then + echo -e "The following files lack the correct copyright header:\n" + echo $output + echo -e "\n\nPlease add the following header:\n" + echo "// Copyright $(date +%Y) the Velato Authors" + echo "// SPDX-License-Identifier: Apache-2.0 OR MIT" + echo -e "\n... rest of the file ...\n" + exit 1 +fi + +echo "All files have correct copyright headers." +exit 0 + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..9944079 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,171 @@ +env: + # We aim to always test with the latest stable Rust toolchain, however we pin to a specific + # version like 1.70. Note that we only specify MAJOR.MINOR and not PATCH so that bugfixes still + # come automatically. If the version specified here is no longer the latest stable version, + # then please feel free to submit a PR that adjusts it along with the potential clippy fixes. + RUST_STABLE_VER: "1.76" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7 + + +# Rationale +# +# We don't run clippy with --all-targets because then even --lib and --bins are compiled with +# dev dependencies enabled, which does not match how they would be compiled by users. +# A dev dependency might enable a feature of a regular dependency that we need, but testing +# with --all-targets would not catch that. Thus we split --lib & --bins into a separate step. + +name: CI + +on: + pull_request: + merge_group: + +jobs: + rustfmt: + runs-on: ubuntu-latest + name: cargo fmt + steps: + - uses: actions/checkout@v4 + + - name: install stable toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ env.RUST_STABLE_VER }} + components: rustfmt + + - name: cargo fmt + run: cargo fmt --all --check + + - name: install ripgrep + run: | + sudo apt update + sudo apt install ripgrep + + - name: check copyright headers + run: bash .github/copyright.sh + + test-stable: + runs-on: ${{ matrix.os }} + strategy: + matrix: + # We use macos-14 as that is an arm runner. These have the virtgpu support we need + os: [windows-latest, macos-14, ubuntu-latest] + include: + - os: ubuntu-latest + gpu: 'yes' + - os: macos-14 + gpu: 'yes' + - os: windows-latest + # TODO: The windows runners theoretically have CPU fallback for GPUs, but + # this failed in initial testing + gpu: 'no' + name: cargo clippy + test + steps: + - uses: actions/checkout@v4 + + - name: install stable toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ env.RUST_STABLE_VER }} + components: clippy + + - name: restore cache + uses: Swatinem/rust-cache@v2 + + - name: Install native dependencies + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + + # Adapted from https://github.com/bevyengine/bevy/blob/b446374392adc70aceb92621b080d1a6cf7a7392/.github/workflows/validation-jobs.yml#L74-L79 + - name: install xvfb, llvmpipe and lavapipe + if: matrix.os == 'ubuntu-latest' + # https://launchpad.net/~kisak/+archive/ubuntu/turtle + run: | + sudo apt-get update -y -qq + sudo add-apt-repository ppa:kisak/turtle -y + sudo apt-get update + sudo apt install -y xvfb libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers + + - name: cargo clippy (no default features) + run: cargo clippy --workspace --lib --bins --no-default-features -- -D warnings + + - name: cargo clippy (no default features) (auxiliary) + run: cargo clippy --workspace --tests --benches --examples --no-default-features -- -D warnings + + - name: cargo clippy (default features) + run: cargo clippy --workspace --lib --bins -- -D warnings + + - name: cargo clippy (default features) (auxiliary) + run: cargo clippy --workspace --tests --benches --examples -- -D warnings + + - name: cargo clippy (all features) + run: cargo clippy --workspace --lib --bins --all-features -- -D warnings + + - name: cargo clippy (all features) (auxiliary) + run: cargo clippy --workspace --tests --benches --examples --all-features -- -D warnings + + - name: cargo test + run: cargo test --workspace --all-features + env: + VELLO_CI_GPU_SUPPORT: ${{ matrix.gpu }} + + clippy-stable-wasm: + runs-on: ubuntu-latest + name: cargo test (wasm32) + steps: + - uses: actions/checkout@v4 + + - name: restore cache + uses: Swatinem/rust-cache@v2 + + - name: install stable toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ env.RUST_STABLE_VER }} + targets: wasm32-unknown-unknown + components: clippy + + - name: cargo clippy (wasm) + run: cargo clippy --all-targets --target wasm32-unknown-unknown --workspace -- -D warnings + + android-stable-check: + runs-on: ubuntu-latest + name: cargo check (aarch64-android) + steps: + - uses: actions/checkout@v4 + + - name: restore cache + uses: Swatinem/rust-cache@v2 + + - name: install stable toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ env.RUST_STABLE_VER }} + targets: aarch64-linux-android + + - name: install cargo apk + run: cargo install cargo-apk + + - name: cargo apk check (android) + run: cargo apk check -p with_winit --lib + env: + # This is a bit of a hack, but cargo apk doesn't seem to allow customising this + RUSTFLAGS: '-D warnings' + + docs: + name: cargo doc + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest, macos-latest, ubuntu-latest] + steps: + - uses: actions/checkout@v4 + + - name: install nightly toolchain + uses: dtolnay/rust-toolchain@nightly + + - name: restore cache + uses: Swatinem/rust-cache@v2 + + # We test documentation using nightly to match docs.rs. This prevents potential breakages + - name: cargo doc + run: cargo doc --workspace --all-features --no-deps --document-private-items -Zunstable-options -Zrustdoc-scrape-examples diff --git a/.github/workflows/pages-release.yml b/.github/workflows/pages-release.yml new file mode 100644 index 0000000..6562ef9 --- /dev/null +++ b/.github/workflows/pages-release.yml @@ -0,0 +1,68 @@ +name: Web Demo Update + +on: + push: + branches: + - main + +jobs: + release-web: + permissions: + contents: read + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install | Rust + uses: dtolnay/rust-toolchain@stable + with: + targets: wasm32-unknown-unknown + + - name: Install | WASM Bindgen + uses: jetli/wasm-bindgen-action@v0.2.0 + with: + version: 'latest' + + - name: Build | WASM + run: cargo build -p with_winit --bin with_winit_bin --release --target wasm32-unknown-unknown + + - name: Package | WASM + run: | + mkdir public + wasm-bindgen --target web --out-dir public target/wasm32-unknown-unknown/release/with_winit_bin.wasm --no-typescript + cat << EOF > public/index.html + + Velato Web Demo + + + + + + + + + + + EOF + + - name: Setup Pages + uses: actions/configure-pages@v4 + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: './public' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index c1b02be..4f912b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,13 @@ -/target +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html Cargo.lock -assets/* +# Don't commit example downloads +examples/assets/downloads/* + +# Generated by Cargo +# will have compiled files and executables +/target + +# Some people have Apple +.DS_Store diff --git a/AUTHORS b/AUTHORS index 4da9dda..4c7d7a0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,3 +5,9 @@ # To see the full list of contributors, see the revision history in # source control. Google LLC +Chad Brokaw +Daniel McNab +Spencer C. Imbleau +Bruce Mitchener +Sebastian Hamel +Kaur Kuut diff --git a/Cargo.toml b/Cargo.toml index eddf62b..cb75730 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,28 +1,36 @@ [workspace] resolver = "2" -members = ["demo"] +members = ["examples/with_winit", "examples/run_wasm", "examples/scenes"] [workspace.package] edition = "2021" -version = "0.0.1" -license = "MIT OR Apache-2.0" +version = "0.1.0" +license = "Apache-2.0 OR MIT" repository = "https://github.com/linebender/velato" - +publish = false [package] name = "velato" -description = "Lottie renderer built on vello." +description = "A Lottie integration for vello." categories = ["rendering", "graphics"] -keywords = ["2d", "vector-graphics", "animation", "lottie"] - +keywords = ["2d", "vector-graphics", "vello", "animation", "lottie"] version.workspace = true license.workspace = true edition.workspace = true repository.workspace = true [workspace.dependencies] -vello = { git = "https://github.com/linebender/vello", rev = "b0303ccf98df15a8b196272720d364a56f7304ba" } - +# NOTE: Make sure to keep this in sync with the version badge in README.md +vello = "0.1.0" [dependencies] vello = { workspace = true } -bodymovin = { git = "https://github.com/vectorgameexperts/bodymovin-rs" } +keyframe = "1.1.1" +once_cell = "1.19.0" + +# For the parser +serde = { version = "1.0.197", features = ["derive"] } +serde_json = "1.0.114" +serde_repr = "0.1.18" + +[target.'cfg(target_arch = "wasm32")'.dev-dependencies] +wasm-bindgen-test = "0.3.42" diff --git a/LICENSE-APACHE b/LICENSE-APACHE index d645695..d9a10c0 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -1,4 +1,3 @@ - Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -175,28 +174,3 @@ of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/LICENSE-MIT b/LICENSE-MIT index 3530c97..9cf1062 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,25 +1,19 @@ -Copyright (c) 2020 Raph Levien +MIT License -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without -limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following -conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 6b41fbc..c3b4f9b 100644 --- a/README.md +++ b/README.md @@ -2,50 +2,77 @@ # Velato -**An experimental [Lottie](https://airbnb.io/lottie) animation renderer built for [Vello](https://vello.dev)** +**An integration to parse and render [Lottie](https://airbnb.io/lottie) with [Vello](https://vello.dev).** -[![Xi Zulip](https://img.shields.io/badge/Xi%20Zulip-%23gpu-blue?logo=Zulip)](https://xi.zulipchat.com/#narrow/stream/197075-gpu) +[![Linebender Zulip](https://img.shields.io/badge/Linebender-%23gpu-blue?logo=Zulip)](https://xi.zulipchat.com/#narrow/stream/197075-gpu) [![dependency status](https://deps.rs/repo/github/linebender/velato/status.svg)](https://deps.rs/repo/github/linebender/velato) [![MIT/Apache 2.0](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)](#license) -[![wgpu version](https://img.shields.io/badge/wgpu-v0.15-orange.svg)](https://crates.io/crates/wgpu) -[![vello version](https://img.shields.io/badge/vello-v0.0.1-purple.svg)](https://vello.dev) - - - +[![vello version](https://img.shields.io/badge/vello-v0.1.0-purple.svg)](https://crates.io/crates/vello) + +[![Crates.io](https://img.shields.io/crates/v/velato.svg)](https://crates.io/crates/velato) +[![Docs](https://docs.rs/velato/badge.svg)](https://docs.rs/velato) +[![Build status](https://github.com/linebender/velato/workflows/CI/badge.svg)](https://github.com/linebender/velato/actions) -It is not currently feature complete, but is capable of rendering a large number of Lottie animations. +> [!WARNING] +> The goal of this crate is to provide coverage of the large Lottie spec, up to what vello can render, for use in interactive graphics. We are working towards correctness, but there are missing features listed below. + +## Missing features + +Several Lottie features are not yet supported, including: + +- Non-linear easings +- Position keyframe (`ti`, `to`) easing +- Time remapping (`tm`) +- Text +- Image embedding +- Advanced shapes (stroke dash, zig-zag, etc.) +- Advanced effects (motion blur, drop shadows, etc.) +- Correct color stop handling +- Split rotations +- Split positions ## Examples -To run an example, use: +### Cross platform (Winit) + +```shell +cargo run -p with_winit ``` -cargo run -p with_winit -- + +You can also load an entire folder or individual files. + +```shell +cargo run -p with_winit -- examples/assets ``` - -Note that at the moment, we do not provide any example animations. - +### Web platform -## Platforms +Because Vello relies heavily on compute shaders, we rely on the emerging WebGPU standard to run on the web. +Until browser support becomes widespread, it will probably be necessary to use development browser versions (e.g. Chrome Canary) and explicitly enable WebGPU. -The current example does not support running on WASM or Android, however Velato should do so. +This uses [`cargo-run-wasm`](https://github.com/rukai/cargo-run-wasm) to build the example for web, and host a local server for it -## Example usage +```shell +# Make sure the Rust toolchain supports the wasm32 target +rustup target add wasm32-unknown-unknown -```rust -let lottie_data = std::fs::read("path/to/lottie.json").unwrap(); -let composition = velato::Composition::from_bytes(&lottie_data).unwrap(); -let mut renderer = velato::Renderer::new(); -let scene = vello::Scene::new(); -let mut builder = vello::SceneBuilder::for_scene(&mut scene); -let time_secs = 1.0; -let transform = kurbo::Affine::IDENTITY; -let alpha = 1.0; -renderer.render(&composition, time_secs, transform, alpha, &mut builder); +# The binary name must also be explicitly provided as it differs from the package name +cargo run_wasm -p with_winit --bin with_winit_bin ``` +There is also a web demo [available here](https://linebender.github.io/velato) on supporting web browsers. + +> [!WARNING] +> The web is not currently a primary target for Vello, and WebGPU implementations are incomplete, so you might run into issues running this example. + +## Community + +Discussion of Velato development happens in the [Linebender Zulip](https://xi.zulipchat.com/), specifically the [#gpu stream](https://xi.zulipchat.com/#narrow/stream/197075-gpu). All public content can be read without logging in. + +Contributions are welcome by pull request. The [Rust code of conduct](https://www.rust-lang.org/policies/code-of-conduct) applies. + ## License Licensed under either of @@ -56,12 +83,12 @@ Licensed under either of ([LICENSE-MIT](LICENSE-MIT) or ) at your option. -## Contribution -Contributions are welcome by pull request. The [Rust code of conduct] applies. +The files in subdirectories of the [`examples/assets`](/examples/assets) directory are licensed solely under +their respective licenses, available in the `LICENSE` file in their directories. + +## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. - -[rust code of conduct]: https://www.rust-lang.org/policies/code-of-conduct diff --git a/demo/Cargo.toml b/demo/Cargo.toml deleted file mode 100644 index 23e2933..0000000 --- a/demo/Cargo.toml +++ /dev/null @@ -1,28 +0,0 @@ -[package] -name = "with_winit" -description = "An example using vello to render to a winit window" -publish = false - -version.workspace = true -license.workspace = true -edition.workspace = true -repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -velato = { path = "../" } -vello = { workspace = true, features = ["buffer_labels"] } -anyhow = "1.0" -clap = { version = "4.1", features = ["derive"] } - -wgpu = "0.16" -winit = "0.28.1" -pollster = "0.3" -env_logger = "0.10.0" - -[target.'cfg(target_arch = "wasm32")'.dependencies] -console_error_panic_hook = "0.1.7" -console_log = "0.2" -wasm-bindgen-futures = "0.4.33" -web-sys = "0.3.60" diff --git a/demo/README.md b/demo/README.md deleted file mode 100644 index 5ecb89e..0000000 --- a/demo/README.md +++ /dev/null @@ -1,15 +0,0 @@ -## Usage - -``` -cargo run -p with_winit -- -``` - - -Note that at the moment, we do not provide any example animations. - -## Controls - -- Mouse drag-and-drop will translate the animation -- Mouse scroll wheel will zoom -- Space resets the position and zoom of the animation -- Escape exits the program diff --git a/demo/src/main.rs b/demo/src/main.rs deleted file mode 100644 index e0de976..0000000 --- a/demo/src/main.rs +++ /dev/null @@ -1,168 +0,0 @@ -// Copyright 2022 the Velato Authors -// SPDX-License-Identifier: Apache-2.0 OR MIT - -use std::{fs, time::Instant}; - -use anyhow::Result; -use clap::Parser; -use velato::Composition; -use vello::RendererOptions; -use vello::{ - block_on_wgpu, - kurbo::{Affine, Vec2}, - peniko::Color, - util::RenderContext, - RenderParams, Renderer, Scene, SceneBuilder, -}; - -use winit::{event_loop::EventLoop, window::Window}; - -#[derive(Parser, Debug)] -#[command(about, long_about = None, bin_name="cargo run -p with_winit --")] -struct Args { - /// Path to the svg file to render. If not set, the GhostScript Tiger will be rendered - #[cfg(not(target_arch = "wasm32"))] - file: std::path::PathBuf, - /// When rendering an svg, what scale to use - #[arg(long)] - scale: Option, -} - -async fn run(event_loop: EventLoop<()>, window: Window, args: Args, composition: Composition) { - use winit::{event::*, event_loop::ControlFlow}; - let mut render_cx = RenderContext::new().unwrap(); - let size = window.inner_size(); - let mut surface = render_cx - .create_surface(&window, size.width, size.height) - .await; - let device_handle = &render_cx.devices[surface.dev_id]; - let mut velato_renderer = velato::Renderer::new(); - let mut renderer = Renderer::new( - &device_handle.device, - &RendererOptions { - surface_format: Some(surface.format), - }, - ) - .unwrap(); - let mut scene = Scene::new(); - let start = Instant::now(); - - let mut transform = Affine::scale(args.scale.unwrap_or(1.0)); - let mut mouse_down = false; - let mut prior_position: Option = None; - event_loop.run(move |event, _, control_flow| match event { - Event::WindowEvent { - ref event, - window_id, - } if window_id == window.id() => match event { - WindowEvent::CloseRequested => *control_flow = ControlFlow::Exit, - WindowEvent::KeyboardInput { input, .. } => { - if input.state == ElementState::Pressed { - match input.virtual_keycode { - Some(VirtualKeyCode::Escape) => { - *control_flow = ControlFlow::Exit; - } - _ => {} - } - } - } - WindowEvent::Resized(size) => { - render_cx.resize_surface(&mut surface, size.width, size.height); - window.request_redraw(); - } - WindowEvent::MouseInput { state, button, .. } => { - if button == &MouseButton::Left { - mouse_down = state == &ElementState::Pressed; - } - } - WindowEvent::MouseWheel { delta, .. } => { - const BASE: f64 = 1.05; - const PIXELS_PER_LINE: f64 = 20.0; - - if let Some(prior_position) = prior_position { - let exponent = if let MouseScrollDelta::PixelDelta(delta) = delta { - delta.y / PIXELS_PER_LINE - } else if let MouseScrollDelta::LineDelta(_, y) = delta { - *y as f64 - } else { - 0.0 - }; - transform = Affine::translate(prior_position) - * Affine::scale(BASE.powf(exponent)) - * Affine::translate(-prior_position) - * transform; - } else { - eprintln!("Scrolling without mouse in window; this shouldn't be possible"); - } - } - WindowEvent::CursorLeft { .. } => { - prior_position = None; - } - WindowEvent::CursorMoved { position, .. } => { - let position = Vec2::new(position.x, position.y); - if mouse_down { - if let Some(prior) = prior_position { - transform = Affine::translate(position - prior) * transform; - } - } - prior_position = Some(position); - } - _ => {} - }, - Event::MainEventsCleared => { - window.request_redraw(); - } - Event::RedrawRequested(_) => { - let width = surface.config.width; - let height = surface.config.height; - let device_handle = &render_cx.devices[surface.dev_id]; - let time = start.elapsed().as_secs_f32(); - - let mut builder = SceneBuilder::for_scene(&mut scene); - velato_renderer.render(&composition, time, transform, 1.0, &mut builder); - - let surface_texture = surface - .surface - .get_current_texture() - .expect("failed to get surface texture"); - block_on_wgpu( - &device_handle.device, - renderer.render_to_surface_async( - &device_handle.device, - &device_handle.queue, - &scene, - &surface_texture, - &RenderParams { - base_color: Color::BLACK, - width, - height, - }, - ), - ) - .expect("failed to render to surface"); - surface_texture.present(); - device_handle.device.poll(wgpu::Maintain::Poll); - } - _ => {} - }); -} - -fn main() -> Result<()> { - // TODO: initializing both env_logger and console_logger fails on wasm. - // Figure out a more principled approach. - env_logger::init(); - let args = Args::parse(); - use winit::{dpi::LogicalSize, window::WindowBuilder}; - let event_loop = EventLoop::new(); - let contents = fs::read(&args.file)?; - // TODO: Implement proper error handling in velato so that anyhow can be properly used here - let composition = velato::Composition::from_bytes(&contents).unwrap(); - let window = WindowBuilder::new() - .with_inner_size(LogicalSize::new(1044, 800)) - .with_resizable(true) - .with_title("Velato demo") - .build(&event_loop) - .unwrap(); - pollster::block_on(run(event_loop, window, args, composition)); - Ok(()) -} diff --git a/examples/assets/downloads/.tracked b/examples/assets/downloads/.tracked new file mode 100644 index 0000000..e1e92e1 --- /dev/null +++ b/examples/assets/downloads/.tracked @@ -0,0 +1 @@ +This directory is used to store the downloaded scenes by default diff --git a/examples/assets/google_fonts/LICENSE b/examples/assets/google_fonts/LICENSE new file mode 100644 index 0000000..da6ab6c --- /dev/null +++ b/examples/assets/google_fonts/LICENSE @@ -0,0 +1,396 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/examples/assets/google_fonts/README.md b/examples/assets/google_fonts/README.md new file mode 100644 index 0000000..68a2e31 --- /dev/null +++ b/examples/assets/google_fonts/README.md @@ -0,0 +1,4 @@ +Assets in this folder originate from Google Fonts. +The assets are part of a collection of Animated Emoji for Google Noto. + +See: https://googlefonts.github.io/noto-emoji-animation/ diff --git a/examples/assets/google_fonts/Tiger.json b/examples/assets/google_fonts/Tiger.json new file mode 100644 index 0000000..2aee9d0 --- /dev/null +++ b/examples/assets/google_fonts/Tiger.json @@ -0,0 +1 @@ +{"v":"5.8.1","fr":60,"ip":0,"op":306,"w":1024,"h":1024,"nm":"emoji_tiger","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"body_crouched 2","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500.785,723.054,0],"ix":2,"l":2},"a":{"a":0,"k":[332.6,246.861,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.729,-3.398],[11.543,-0.189],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.592,1.551],[-20.92,4.71],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.929,4.479],[-19.022,0.311],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.672,-1.556],[20.919,-4.71],[0,0]],"v":[[159.409,-78.94],[69.103,8.922],[-25.288,21.552],[-106.408,29.268],[-152.897,22.061],[-99.007,49.248],[5.925,34.07],[77.57,23.395],[173.463,-64.658]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[22.11,-6.268],[11.424,-1.659],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.186,4.802],[-20.148,7.339],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.211,6.729],[-18.827,2.734],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.264,-4.817],[20.148,-7.339],[0,0]],"v":[[159.409,-78.94],[75.275,-14.34],[-29.736,15.222],[-105.908,35.268],[-152.897,22.061],[-99.007,49.248],[2.819,23.658],[85.518,-1.064],[173.463,-64.658]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[18.835,-13.167],[10.25,-5.311],[20.653,-12.881],[5.64,-6.526],[-24.991,20.806],[-22.222,12.789],[-16.631,13.536],[-32.179,31.989]],"o":[[-16.122,16.02],[-14.056,11.997],[-16.892,8.752],[-17.424,11.003],[-4.234,4.898],[24.992,-20.807],[22.291,-12.829],[16.631,-13.536],[0,0]],"v":[[159.409,-155.94],[113.382,-65.934],[34.5,-12.579],[-34.69,30.465],[-79.522,44.722],[-21.837,39.685],[68.021,-15.275],[127.41,-56.747],[173.463,-111.658]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.224,429.884],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-6.854,-2.744],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[6.854,2.744],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[90.076,65.366],[185.724,-24.669]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-7.148,-1.847],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[7.148,1.847],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[97.615,42.052],[185.724,-24.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-100.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[70.991,-67.264],[0,0],[17.434,-8.37],[-24.072,-20.043],[-13.875,-0.895],[-30.556,24.733],[-7.359,0.597],[0,0]],"o":[[-3.166,2.793],[-27.602,29.085],[0,0],[-27.219,12.958],[26.357,21.946],[13.949,0.9],[30.493,-24.682],[7.358,-0.597],[0,0]],"v":[[131.124,-240.678],[10.096,-62.525],[-65.062,-0.394],[-95.153,7.739],[-106.389,69.587],[-40.039,95.548],[29.597,65.002],[139.154,-10.488],[185.723,-71.669]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[185.973,384.149],"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":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-82.7],[-37.483,-37.829],[-19.514,-18.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-98.668]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[0.616,-26.235],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[6.089,28.042]],"o":[[0,0],[-0.278,11.816],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-27.905,-165.666],[-38.801,-124.211],[-32.764,-35.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-10.411,-39.163],[-26.403,-78.821],[-37.371,-141.668]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[488.097,390.932],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-139.722],[126.697,-168.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.758],[-50.075,31.677]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[11.186,-18.519],[-14.448,-29.556],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144,-137.333],[33.467,47.822],[-9.516,55.807],[-7.814,14.481],[7.012,14.344],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-180.567,-180.722],[128.697,-197.851],[150.051,-23.805],[111.247,73.464],[104.881,158.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.757],[-50.075,31.677]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-116.722],[126.697,-166.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-12.216,140.684],[-27.419,131.872],[-41.285,89.757],[-50.075,54.677]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[89.398,-120.711],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-153.671,-154.937],[121.141,-187.238],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,122.219],[-51.806,79.024],[-52.291,65.107]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":249,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[111.576,-113.76],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-148.449,-167.304],[124.268,-187.531],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,121.157],[-51.633,77.9],[-51.887,64.108]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[135.903,-106.136],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-142.72,-179.919],[127.697,-187.852],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.853],[-13.947,167.419],[-4.716,152.685],[-31.669,119.992],[-51.443,76.668],[-51.443,63.011]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[138.677,-103.935],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-149.87,-191.369],[127.447,-187.601],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,118.4],[-51.184,74.983],[-50.837,61.512]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[141.452,-101.734],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-155.769,-206.57],[127.197,-187.351],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,116.807],[-50.924,73.298],[-50.23,60.013]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[143.069,-71.057],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-151.849,-236.046],[126.947,-187.101],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,115.214],[-50.664,71.613],[-49.624,58.514]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144.685,-40.379],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-147.929,-270.523],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,113.622],[-50.405,69.928],[-49.017,57.015]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.382,246.861],"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":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,41.03],[-59.369,26.747],[28.306,-45.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"t":254,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.573,1.367]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[23.4,-6.994]],"v":[[26.274,-36.217],[-45.316,-28.97],[-59.369,-73.253],[32.44,-109.334]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[426.002,347.196],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[49.584,41.444],[-72.339,95.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-46.248,-121.777],[106.675,-171.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[49.584,41.444],[-76.839,70.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-48.748,-160.777],[90.675,-202.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[35.099,21.859],[-81.101,93.862],[0,0],[0,0],[16.768,22.979],[-9.66,62.069]],"o":[[3.413,2.101],[95.485,55.774],[0,0],[-114.347,42.187],[13.443,-18.025],[-4.998,-25.544]],"v":[[-53.263,-123.192],[104.943,-186.768],[224.961,106.702],[123.507,112.72],[-37.588,108.048],[33.394,-13.524]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-86.396,122.496],[0,0],[0,0],[0,0],[-10.789,62.783]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[-7.789,-46.717]],"v":[[-20.748,-102.277],[122.675,-167.652],[224.961,106.702],[123.507,125.465],[-35.925,114.697],[38.124,2.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":99,"s":[{"i":[[0,0],[-75.232,110.295],[0,0],[0,0],[0,0],[-1.216,25.625]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[0.85,-75.346]],"v":[[-35.563,-103.202],[122.799,-183.545],[224.96,88.184],[123.507,125.465],[-28.518,118.401],[38.281,23.607]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.637]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[32.794,11.804]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-116.634,96.626],[0,0],[0,0],[0,0],[-13.515,121.561]],"o":[[0,0],[89.002,64.116],[0,0],[-114.347,42.187],[0,0],[2.503,-22.518]],"v":[[-82.538,-161.717],[134.97,-203.459],[224.96,83.073],[123.507,89.171],[-63.263,106.027],[16.85,-71.393]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-160.024,28.447],[0,0],[0,0],[0,0],[20.041,71.363]],"o":[[0,0],[77.621,78.759],[0,0],[-114.347,42.187],[0,0],[-6.126,-21.813]],"v":[[5.829,-270.994],[164.86,-280.279],[224.96,76.703],[123.507,25.465],[57.858,-83.746],[41.294,-217.196]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.48,248.638],"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":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false}],"ip":78,"op":254,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"body_crouched ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500.785,723.054,0],"ix":2,"l":2},"a":{"a":0,"k":[332.6,246.861,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-18.467,-15.742],[-0.646,9.177],[0.161,-14.371],[1.37,-40.661]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":246,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[529.669,463.996],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-4.361,18.038],[-10.165,2.398],[4.158,-30.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.35,-22.128],[10.467,-2.513],[-2.965,21.443],[0,0],[-13.748,14.284]],"v":[[-19.602,34.698],[-1.439,-34.672],[10.681,-98.185],[26.253,-45.734],[16.71,-2.205],[2.699,11.516]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-5.137,17.833],[-10.259,1.956],[5.454,-29.858],[0,0],[7,-6.67]],"o":[[0,0],[6.302,-21.876],[10.566,-2.058],[-3.89,21.294],[0,0],[-14.353,13.676]],"v":[[-30.006,19.053],[-0.36,-79.466],[14.495,-142.396],[27.784,-89.321],[12.868,-17.245],[-6.723,-3.143]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-3.654,18.195],[-10.165,2.398],[4.158,-34.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.85,-29.128],[10.467,-2.513],[-2.623,21.487],[0,0],[-13.748,14.284]],"v":[[-19.602,57.698],[-2.939,-8.672],[12.681,-79.185],[28.253,-22.234],[16.71,20.795],[2.699,34.516]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.654,18.195],[-10.165,2.398],[4.158,-34.066],[0,0],[6.701,-6.971]],"o":[[0,0],[5.85,-29.128],[10.467,-2.513],[-2.623,21.487],[0,0],[-13.748,14.284]],"v":[[-19.602,57.698],[-2.939,-8.672],[12.681,-79.185],[28.253,-22.234],[16.71,20.795],[2.699,34.516]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-1.619,18.487],[-10.165,2.398],[2.158,-22.066],[0,0],[6.701,-6.971]],"o":[[0,0],[1.85,-21.128],[10.467,-2.513],[-2.107,21.544],[0,0],[-13.748,14.284]],"v":[[-19.602,-12.302],[1.061,-103.172],[22.681,-176.685],[26.253,-108.234],[16.71,-49.205],[2.699,-35.484]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[358.404,372.606],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.271,-23.247],[-7.708,3.403],[4.041,15.141],[0,0]],"o":[[0,0],[7.271,23.247],[7.708,-3.403],[-2.479,-9.287],[0,0]],"v":[[-18.683,-52.526],[-2.494,-25.435],[17.557,20.766],[25.965,-37.49],[13.835,-66.434]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.271,-23.247],[-7.708,3.403],[4.041,15.141],[0,0]],"o":[[0,0],[7.271,23.247],[7.708,-3.403],[-2.479,-9.287],[0,0]],"v":[[-18.683,-52.526],[-2.494,-25.435],[17.557,20.766],[25.965,-37.49],[13.835,-66.434]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-5.041,-23.83],[-7.996,2.657],[2.627,15.449],[0,0]],"o":[[0,0],[5.041,23.83],[7.995,-2.659],[-1.59,-9.48],[0,0]],"v":[[-22.827,-34.137],[-9.271,-5.637],[6.324,42.252],[20.2,-14.948],[10.86,-44.909]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-5.041,-23.83],[-7.996,2.657],[2.627,15.449],[0,0]],"o":[[0,0],[5.041,23.83],[7.995,-2.659],[-1.59,-9.48],[0,0]],"v":[[-22.827,-34.137],[-9.271,-5.637],[6.324,42.252],[20.2,-14.948],[10.86,-44.909]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-16.865,-17.574],[-5.385,6.48],[10.363,11.755],[0,0]],"o":[[0,0],[16.865,17.574],[5.385,-6.48],[-6.356,-7.211],[0,0]],"v":[[-13.074,-86.814],[13.488,-69.77],[52.02,-37.338],[33.598,-93.24],[9.845,-113.75]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[228.041,388.783],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-3.239,-12.349],[-3.834,-3.817],[5.458,24.187],[0,0]],"o":[[0,0],[3.24,12.35],[6.21,6.184],[-5.458,-24.186],[0,0]],"v":[[-15.101,-49.605],[0.239,-19.43],[13.385,24.13],[26.192,-27.257],[14.43,-61.249]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-3.239,-12.349],[-3.161,-4.391],[5.458,24.187],[0,0]],"o":[[0,0],[3.24,12.35],[3.329,4.625],[-5.458,-24.186],[0,0]],"v":[[-21.101,-52.105],[-3.761,-20.93],[15.885,10.63],[20.192,-27.757],[10.43,-62.249]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-2.057,-12.6],[-3.438,-4.177],[3.148,24.595],[0,0]],"o":[[0,0],[2.058,12.601],[5.598,6.743],[-3.148,-24.594],[0,0]],"v":[[-21.072,-37.02],[-8.652,-5.53],[0.318,39.077],[17.924,-10.868],[9.427,-45.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.057,-12.6],[-3.438,-4.177],[3.148,24.595],[0,0]],"o":[[0,0],[2.058,12.601],[5.598,6.743],[-3.148,-24.594],[0,0]],"v":[[-21.072,-37.02],[-8.652,-5.53],[0.318,39.077],[17.924,-10.868],[9.427,-45.82]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-8.401,-9.613],[-5.133,-1.71],[15.661,19.224],[0,0]],"o":[[0,0],[8.402,9.614],[8.315,2.77],[-15.661,-19.223],[0,0]],"v":[[6.712,-59.328],[33.888,-39.146],[65.061,-6.003],[53.637,-57.714],[27.964,-82.908]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[164.101,408.051],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.729,-3.398],[11.543,-0.189],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.592,1.551],[-20.92,4.71],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.929,4.479],[-19.022,0.311],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.672,-1.556],[20.919,-4.71],[0,0]],"v":[[159.409,-78.94],[69.103,8.922],[-25.288,21.552],[-106.408,29.268],[-152.897,22.061],[-99.007,49.248],[5.925,34.07],[77.57,23.395],[173.463,-64.658]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[22.11,-6.268],[11.424,-1.659],[24.229,-2.332],[7.956,-3.33],[-31.643,7.496],[-25.186,4.802],[-20.148,7.339],[-32.179,31.989]],"o":[[-16.122,16.02],[-17.212,6.729],[-18.827,2.734],[-20.501,2.089],[-5.973,2.5],[31.644,-7.496],[25.264,-4.817],[20.148,-7.339],[0,0]],"v":[[159.409,-78.94],[75.275,-14.34],[-29.736,15.222],[-105.908,35.268],[-152.897,22.061],[-99.007,49.248],[2.819,23.658],[85.518,-1.064],[161.463,-73.658]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.948,-1.235],[11.51,0.887],[24.341,-0.032],[8.228,-2.587],[-32.209,4.474],[-25.624,-0.884],[-21.271,2.713],[-32.179,31.989]],"o":[[-16.122,16.02],[-18.272,2.765],[-18.966,-1.488],[-20.607,0.142],[-6.182,1.924],[32.211,-4.472],[25.704,0.877],[21.271,-2.712],[0,0]],"v":[[159.409,-55.94],[54.967,33.181],[-40.194,36.834],[-121.68,36.849],[-167.28,25.281],[-115.634,51.466],[-10.304,52.246],[62.029,48.39],[173.463,-41.658]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[18.835,-13.167],[10.25,-5.311],[20.653,-12.881],[5.64,-6.526],[-24.991,20.806],[-22.222,12.789],[-16.631,13.536],[-32.179,31.989]],"o":[[-16.122,16.02],[-14.056,11.997],[-16.892,8.752],[-17.424,11.003],[-4.234,4.898],[24.992,-20.807],[22.291,-12.829],[16.631,-13.536],[0,0]],"v":[[159.409,-155.94],[113.382,-65.934],[34.5,-12.579],[-34.69,30.465],[-79.522,44.722],[-21.837,39.685],[68.021,-15.275],[127.41,-56.747],[173.463,-111.658]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.224,429.884],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[1.383,13.08],[18.466,-13.411],[-6.589,-5.26],[-3.832,5.129]],"o":[[-0.688,-6.506],[-14.913,10.894],[3.654,2.917],[6.378,-8.609]],"v":[[29.676,-13.071],[0.926,-12.116],[-7.61,19.525],[9.112,2.388]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[1.383,13.08],[18.466,-13.411],[-6.589,-5.26],[-3.832,5.129]],"o":[[-0.688,-6.506],[-14.913,10.894],[3.654,2.917],[6.378,-8.609]],"v":[[29.676,-13.071],[0.926,-12.116],[-7.61,19.525],[9.112,2.388]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0.182,13.152],[19.651,-11.606],[-6.058,-5.864],[-4.3,4.744]],"o":[[-0.07,-6.542],[-15.876,9.436],[3.362,3.249],[7.163,-7.968]],"v":[[23.038,-9.402],[-5.674,-11.168],[-17.162,19.525],[1.105,4.045]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.182,13.152],[19.651,-11.606],[-6.058,-5.864],[-4.3,4.744]],"o":[[-0.07,-6.542],[-15.876,9.436],[3.362,3.249],[7.163,-7.968]],"v":[[23.038,-9.402],[-5.674,-11.168],[-17.162,19.525],[1.105,4.045]],"c":true}]},{"t":254,"s":[{"i":[[7.065,11.095],[10.559,-20.233],[-8.243,-1.774],[-1.146,6.299]],"o":[[-3.514,-5.518],[-8.499,16.397],[4.571,0.984],[1.875,-10.549]],"v":[[66.435,17.786],[41.12,31.449],[47.573,63.58],[54.911,40.788]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[25.52,383.022],"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":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[7.206,12.222],[16.845,-11.398],[-3.654,-6.724],[-6.016,3.933]],"o":[[-4.628,-7.91],[-14.906,10.086],[5.702,10.724],[10.151,-6.481]],"v":[[31.006,-18.478],[2.064,-15.877],[-11.509,10.559],[10.337,1.868]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[7.206,12.222],[16.845,-11.398],[-3.654,-6.724],[-6.016,3.933]],"o":[[-4.628,-7.91],[-14.906,10.086],[5.702,10.724],[10.151,-6.481]],"v":[[31.006,-18.478],[2.064,-15.877],[-11.509,10.559],[10.337,1.868]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[6.019,12.848],[17.84,-9.768],[-3.002,-7.039],[-6.361,3.347]],"o":[[-3.86,-8.312],[-15.792,8.632],[4.663,11.215],[10.718,-5.493]],"v":[[21.026,-13.095],[-8.032,-13.241],[-24.043,11.794],[-1.473,5.207]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[6.019,12.848],[17.84,-9.768],[-3.002,-7.039],[-6.361,3.347]],"o":[[-3.86,-8.312],[-15.792,8.632],[4.663,11.215],[10.718,-5.493]],"v":[[21.026,-13.095],[-8.032,-13.241],[-24.043,11.794],[-1.473,5.207]],"c":true}]},{"t":254,"s":[{"i":[[11.896,7.732],[10.004,-17.709],[-6.266,-4.392],[-3.634,6.201]],"o":[[-7.667,-5.02],[-8.852,15.67],[9.882,7.061],[6.201,-10.325]],"v":[[81.029,-0.029],[56.276,15.192],[55.9,44.907],[71.588,27.395]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[43.955,422.85],"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":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-6.854,-2.744],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[6.854,2.744],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[90.076,65.366],[185.724,-24.669]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[93.522,-28.597],[0,0],[19.337,0.273],[-12.623,-28.668],[-12.023,-6.982],[-38.375,8.532],[-7.148,-1.847],[0,0]],"o":[[-3.166,2.793],[-37.669,13.744],[0,0],[-30.141,-0.524],[13.821,31.389],[12.087,7.019],[38.296,-8.514],[7.148,1.847],[0,0]],"v":[[111.124,-123.678],[-2.29,-38.714],[-97.256,-16.568],[-127.819,-22.691],[-165.43,27.677],[-117.591,80.476],[-41.639,84.149],[97.615,42.052],[185.724,-24.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-100.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[95.806,-19.631],[0,0],[19.225,2.099],[-9.853,-29.734],[-11.328,-8.061],[-39.008,4.876],[-6.565,-3.377],[0,0]],"o":[[-3.166,2.793],[-38.799,10.123],[0,0],[-29.957,-3.37],[10.793,32.555],[11.37,8.13],[38.929,-4.857],[6.564,3.379],[0,0]],"v":[[111.124,-110.678],[-7.186,-22.792],[-103.82,-9.72],[-133.668,-18.704],[-175.87,27.884],[-133.235,84.968],[-57.97,95.802],[74.93,89.551],[185.723,-1.669]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[70.991,-67.264],[0,0],[17.434,-8.37],[-24.072,-20.043],[-13.875,-0.895],[-30.556,24.733],[-7.359,0.597],[0,0]],"o":[[-3.166,2.793],[-27.602,29.085],[0,0],[-27.219,12.958],[26.357,21.946],[13.949,0.9],[30.493,-24.682],[7.358,-0.597],[0,0]],"v":[[131.124,-240.678],[10.096,-62.525],[-65.062,-0.394],[-95.153,7.739],[-106.389,69.587],[-40.039,95.548],[29.597,65.002],[139.154,-10.488],[185.723,-71.669]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[185.973,384.149],"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":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-74.192,-26.427],[7.178,-1.894],[65.807,-33.266],[25.161,25.364],[-30.644,32.791],[-59.756,-7.233]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-71.192,-47.427],[3.178,-42.894],[75.307,-74.766],[23.662,-17.136],[-38.144,-7.709],[-59.756,-7.233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-46.442,10.324],[7.178,-1.894],[65.807,-33.266],[25.161,25.364],[-30.644,32.791],[-37.006,26.017]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-73.192,-16.927],[8.178,-15.394],[66.807,-46.766],[26.161,11.864],[-45.144,19.041],[-59.756,2.516]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-30.242,7.177],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[26.935,-6.371],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-73.192,-16.927],[8.178,-15.394],[66.807,-46.766],[26.161,11.864],[-45.144,19.041],[-59.756,2.517]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-36.643,2.948],[-8.388,-4.839],[38.225,-13.145],[0,0],[6.209,7.499]],"o":[[0,0],[27.589,-2.22],[8.386,4.758],[-37.016,12.741],[0,0],[-9.678,-11.452]],"v":[[-62.948,-40.842],[5.178,-16.894],[66.807,-46.766],[26.161,11.864],[-45.144,9.041],[-59.756,-7.484]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.28,362.252],"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":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,19.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-5.427,-12.717],[-16.614,13.883],[11.773,-2.12],[11.832,-9.734]],"o":[[2.744,6.429],[31.701,-26.489],[-11.773,2.12],[-11.746,9.664]],"v":[[-33.611,-12.445],[46.785,-6.347],[85.428,-90.411],[23.265,-38.13]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,42.903],[36.387,34.354],[68.467,-46.789],[15.42,1.049]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,19.903],[36.387,11.354],[68.467,-69.789],[15.42,-21.951]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-3.988,-13.239],[-18.047,11.961],[11.935,-0.806],[12.835,-8.367]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-36.37,19.903],[36.387,11.354],[68.467,-69.789],[15.42,-21.951]],"c":true}]},{"t":254,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-31.62,4.903],[42.887,17.354],[82.967,-63.289],[21.92,-15.951]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.515,270.885],"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":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[11.836,0.019]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.726,-0.042]],"v":[[-26.834,41.382],[-16.458,-36.245],[10.156,-85.922],[18.14,-36.084],[27.334,40.324],[-0.271,37.335]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[10.896,-13.457]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-6.12,7.559]],"v":[[-30.584,24.632],[-16.458,-36.245],[10.156,-85.922],[18.14,-36.084],[18.084,-32.926],[-6.771,0.335]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[11.836,0.019]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-1.264,22.961],[0,0],[-9.726,-0.042]],"v":[[-26.834,64.382],[-16.458,-13.245],[10.156,-62.922],[18.14,-13.084],[27.834,58.074],[-0.271,60.335]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[14.396,-4.957]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.196,3.167]],"v":[[-29.084,56.632],[-18.208,-38.745],[8.406,-88.422],[16.39,-38.584],[24.584,34.824],[1.479,44.335]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-7.338,21.29],[-12.339,-0.403],[3.548,-18.71],[0,0],[14.396,-4.957]],"o":[[0,0],[4.597,-13.226],[12.338,0.403],[-3.629,18.709],[0,0],[-9.196,3.167]],"v":[[-27.334,62.132],[-16.458,-33.245],[10.156,-82.922],[18.14,-33.084],[26.334,40.324],[3.229,49.835]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-8.862,35.834],[-12.103,-2.428],[6.377,-16.391],[0,0],[15.073,0.939]],"o":[[0,0],[3.304,-13.361],[12.102,2.428],[-6.457,16.376],[0,0],[-17.988,-1.121]],"v":[[-11.913,-8.697],[0.737,-80.207],[36.12,-141.853],[36.323,-95.278],[26.334,30.324],[9.364,-7.502]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[425.44,313.678],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-0.291,-72.46],[-6.753,-3.685],[-34.897,60.024],[25.828,10.105],[41.188,-44.795],[21.099,-62.382]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[4.209,-112.46],[-4.253,-36.685],[-32.897,28.024],[26.828,-21.895],[41.188,-77.795],[23.599,-98.882]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-1.291,-69.46],[-6.753,-3.685],[-34.897,60.024],[25.828,10.105],[41.188,-42.795],[20.099,-59.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-1.291,-89.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[41.188,-62.795],[20.099,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[9.808,-89.46],[1.347,-23.685],[-26.798,40.024],[33.927,-9.895],[52.287,-62.795],[31.198,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[9.808,-89.46],[1.347,-23.685],[-26.798,40.024],[33.927,-9.895],[52.287,-62.795],[31.198,-79.382]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[-10.976,-89.46],[-15.437,-23.685],[-42.582,40.024],[17.143,-9.895],[31.503,-62.795],[10.414,-79.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[13.787,12.189]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-10.173,-8.993]],"v":[[3.209,-99.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[24.099,-84.882]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[14.447,10.432]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-10.968,-7.888]],"v":[[1.709,-104.21],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[29.349,-95.382]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[15.106,8.676]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-11.763,-6.782]],"v":[[2.209,-107.96],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[26.099,-100.882]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[3.548,-12.337],[-6.29,-7.176],[-11.936,26.29],[0,0],[13.287,16.689]],"o":[[0,0],[-3.63,12.339],[8.225,9.436],[11.935,-26.29],[0,0],[-8.457,-10.622]],"v":[[3.709,-103.46],[-6.753,-23.685],[-34.897,40.024],[25.828,-9.895],[42.188,-63.795],[24.099,-87.382]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[588.929,121.499],"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":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[14.901,0.752],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.533,-0.784],[0,0],[-0.404,23.951]],"v":[[-19.055,74.54],[19.492,-10.217],[28.893,-85.637],[2.19,-88.757],[-26.796,-87.617],[-21.232,-20.217]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[14.901,0.752],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.533,-0.784],[0,0],[-0.404,23.951]],"v":[[-5.055,25.54],[33.492,-59.217],[42.893,-134.637],[16.19,-137.757],[-12.796,-136.617],[-7.232,-69.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-19.055,74.54],[19.492,-0.217],[28.893,-74.887],[-1.31,-92.507],[-26.796,-72.617],[-21.232,-10.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-19.055,54.54],[19.492,-20.217],[28.893,-96.637],[-0.31,-109.507],[-28.546,-98.117],[-21.232,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-8.244,-111.007],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.994,-119.507],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-10.956,54.54],[27.592,-20.217],[38.243,-95.637],[7.29,-116.757],[-17.196,-93.617],[-13.133,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[-9.838,-1.21],[-7.177,29.516],[0,0],[13.455,-0.807],[0,0],[0.645,-44.758]],"o":[[16.129,2.097],[7.177,-29.515],[0,0],[-15.526,0.904],[0,0],[-0.404,23.951]],"v":[[-10.956,54.54],[27.592,-20.216],[38.243,-95.637],[9.29,-107.257],[-17.196,-93.617],[-13.133,-30.217]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.994,-115.757],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-9.838,-1.21],[-4.827,29.99],[0,0],[13.455,-0.807],[0,0],[-2.886,-44.669]],"o":[[16.129,2.097],[4.827,-29.989],[0,0],[-15.526,0.904],[0,0],[1.486,23.908]],"v":[[-25.24,54.54],[11.751,-21.594],[19.209,-96.637],[-7.494,-95.757],[-36.48,-92.617],[-29.636,-28.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[-9.719,-1.786],[-8.887,28.949],[0,0],[13.437,0.001],[0,0],[3.287,-44.503]],"o":[[15.927,3.04],[8.887,-28.948],[0,0],[-15.504,-0.018],[0,0],[-1.818,23.811]],"v":[[-16.836,44.343],[25.944,-27.774],[41.316,-108.64],[11.69,-110.971],[-14.752,-106.237],[-13.993,-40.132]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[-9.667,-2.038],[-9.637,28.7],[0,0],[13.429,0.355],[0,0],[4.447,-44.391]],"o":[[15.838,3.454],[9.637,-28.699],[0,0],[-15.495,-0.423],[0,0],[-2.438,23.75]],"v":[[-15.862,39.868],[28.775,-31.09],[46.609,-116.707],[17.767,-125.825],[-10.217,-119.805],[-10.816,-44.484]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[-9.614,-2.291],[-10.387,28.451],[0,0],[13.421,0.709],[0,0],[5.606,-44.279]],"o":[[15.75,3.868],[10.387,-28.45],[0,0],[-15.485,-0.827],[0,0],[-3.058,23.688]],"v":[[-14.888,35.392],[31.606,-34.407],[53.902,-117.774],[23.844,-135.18],[-4.182,-126.874],[-7.639,-48.835]],"c":true}]},{"t":254,"s":[{"i":[[-9.51,-2.796],[-11.888,27.953],[0,0],[14.094,7.384],[0,0],[7.925,-44.055]],"o":[[15.572,4.696],[11.888,-27.952],[0,0],[-13.776,-7.218],[0,0],[-4.299,23.566]],"v":[[-12.94,26.442],[37.268,-41.039],[58.988,-118.409],[35.998,-130.889],[5.388,-141.011],[-1.285,-57.538]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[498.723,113.81],"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":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-72.918],[-16.256,-15.951],[5.902,66.368],[29.189,-27.277],[28.237,-117.237],[-6.523,-94.344]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-9.617,-48.675],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[6.883,29.825],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-24.631,-130.918],[4.744,-65.95],[37.902,19.868],[47.189,-60.777],[33.737,-158.237],[12.977,-150.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-52.418],[-16.256,7.05],[5.902,89.368],[28.189,-3.277],[27.237,-97.737],[-18.773,-92.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-29.277],[33.237,-122.237],[-21.773,-116.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-18.773,-111.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-19.773,-103.344]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-27.881,-78.668],[-16.256,-12.95],[5.902,69.368],[30.189,-32.277],[34.737,-126.737],[-10.773,-103.344]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-2.062,48.151],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[1.974,-46.09],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[30.189,-32.277],[34.237,-120.237],[-17.273,-109.594]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-18.273,-103.094]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-6.159,-46.563],[-9.233,0.868],[-0.442,46.13],[0,0],[8.867,-9.163]],"o":[[0,0],[4.081,30.477],[11.883,-1.117],[0.442,-46.13],[0,0],[-10.914,11.445]],"v":[[-25.631,-69.918],[-16.256,-12.951],[5.902,69.368],[28.189,-28.276],[24.737,-118.487],[-19.523,-110.094]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-1.672,-46.561],[-9.199,-0.017],[-5.838,46.796],[0,0],[16.253,-9.133]],"o":[[0,0],[1.143,30.48],[11.839,0.023],[5.782,-45.482],[0,0],[-9.432,5.3]],"v":[[-4.523,-105.774],[-0.661,-48.636],[13.421,34.747],[42.773,-50.069],[52.916,-135.791],[18.374,-120.493]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[6.206,-46.557],[-9.14,-1.572],[-12.465,44.416],[0,0],[15.938,1.214]],"o":[[0,0],[-4.014,30.486],[11.763,2.023],[12.465,-44.416],[0,0],[-15.938,-1.214]],"v":[[31.528,-191.713],[26.712,-111.274],[26.62,-26.025],[68.371,-86.565],[80.57,-192.492],[54.565,-194.411]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[383.688,156.932],"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":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[-3.35,6.461],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[6.222,-12],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-105.7],[-37.483,-60.829],[-19.514,-41.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-121.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-7.562,-16.267],[-4.482,-6.075],[-19.998,-12.373],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[5.248,5.043],[1.21,2.822],[11.879,18.305],[3.629,3.227]],"o":[[0,0],[6.951,14.953],[4.482,6.075],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-28.153,-27.053],[-1.209,-2.822],[-11.879,-18.305],[0,0]],"v":[[-44.919,-82.7],[-37.483,-37.829],[-19.514,-18.201],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[16.839,-21.913],[-10.403,-44.071],[-23.871,-98.668]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-3.777,-28.206],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[3.629,3.227]],"o":[[0,0],[1.701,12.703],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-44.919,-102.7],[-48.733,-56.329],[-32.764,-25.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-9.411,-38.663],[-19.403,-73.321],[-23.871,-118.668]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[0.616,-26.235],[-6.133,-8.151],[-2.111,-8.362],[-0.967,-30.805],[-13.951,-1.613],[8.791,5.242],[-0.322,28.952],[4.439,5.768],[5.121,10.213],[2.371,15.445],[6.089,28.042]],"o":[[0,0],[-0.278,11.816],[15.482,20.575],[-0.564,1.612],[0.807,27.097],[13.952,1.612],[-8.79,-5.162],[0.404,-37.983],[-15.778,-20.5],[-5.121,-10.213],[-1.832,-11.931],[0,0]],"v":[[-27.905,-165.666],[-38.801,-124.211],[-32.764,-35.701],[3.829,8.986],[-13.226,56.491],[25.08,97.056],[36.128,92.943],[4.435,55.281],[22.496,9.874],[-10.411,-39.163],[-26.403,-78.821],[-37.371,-141.668]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[488.097,390.932],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-139.722],[126.697,-168.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.758],[-50.075,31.677]],"c":false}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[11.186,-18.519],[-14.448,-29.556],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144,-137.333],[33.467,47.822],[-9.516,55.807],[-7.814,14.481],[7.012,14.344],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-180.567,-180.722],[128.697,-197.851],[150.051,-23.805],[111.247,73.464],[104.881,158.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-12.216,140.685],[-27.419,131.872],[-41.285,66.757],[-50.075,31.677]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[6.302,-6.889],[-29.665,-28.551],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-6.375,6.857],[11.504,11.072],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-116.722],[126.697,-166.851],[151.051,-10.805],[95.247,101.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-12.216,140.684],[-27.419,131.872],[-41.285,89.757],[-50.075,54.677]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":102,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":180,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[137.796,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[60.111,-129.889],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-160.567,-136.722],[117.013,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,123.622],[-52.035,80.508],[-52.825,66.427]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[135.903,-106.136],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-143.97,-179.919],[127.697,-187.852],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,119.992],[-51.443,76.668],[-51.443,63.011]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[138.677,-103.935],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-151.37,-194.244],[127.447,-187.602],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,118.4],[-51.184,74.983],[-50.837,61.512]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[141.452,-101.734],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-158.769,-207.32],[127.197,-187.351],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,116.807],[-50.924,73.298],[-50.23,60.013]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[143.069,-71.057],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-149.724,-244.921],[126.947,-187.101],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.288],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,115.214],[-50.664,71.613],[-49.624,58.514]],"c":false}]},{"t":254,"s":[{"i":[[0,0],[-33.548,-47.903],[9.516,-55.806],[9.314,-19.481],[-7.052,-13.444],[52.096,-0.888],[12.016,24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[144.685,-40.379],[33.467,47.822],[-9.516,55.807],[-9.314,19.481],[7.052,13.444],[-29.677,0.483],[-11.935,-24.758],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-147.929,-270.523],[126.697,-186.851],[151.051,-30.805],[106.247,93.464],[96.881,157.501],[58.472,241.289],[-11.85,221.852],[-13.947,167.419],[-4.716,152.685],[-31.669,113.622],[-50.405,69.928],[-49.017,57.015]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[504.382,246.861],"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":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-46.322,-77.864],[-14.184,-38.594],[16.366,26.636],[36.072,57.528],[44.925,9.318],[28.053,-69.13],[19.369,-103.58],[-17.668,-83.319]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-14.422,-31.689],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[10.569,23.221],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-44.822,-124.864],[10.816,-72.594],[28.366,-25.864],[45.572,5.028],[56.925,-43.182],[47.553,-92.13],[14.869,-152.08],[-13.668,-135.319]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-46.322,-59.364],[-14.184,-15.594],[16.366,49.636],[36.072,80.528],[44.925,32.318],[28.053,-46.13],[19.369,-80.58],[-17.668,-60.819]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[10.688,-3.536]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-10.688,3.536]],"v":[[-46.322,-71.364],[-14.184,-25.594],[16.366,39.636],[36.072,70.528],[44.925,22.318],[28.053,-56.13],[11.119,-94.58],[-18.543,-79.194]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[18.562,-8.214]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.563,4.286]],"v":[[-46.322,-71.364],[-14.184,-25.594],[16.366,39.636],[36.072,70.528],[44.925,22.318],[28.053,-56.13],[11.119,-94.705],[-21.793,-97.069]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.264,-4.878]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-38.593,-115.847],[-6.455,-75.827],[24.095,-10.597],[39.937,20.295],[52.653,-27.915],[35.782,-106.363],[20.167,-135.415],[-14.87,-136.904]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":251,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.334,-4.23]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-52.667,-153.242],[-3.529,-94.847],[27.021,-29.617],[41.4,1.275],[55.579,-46.935],[38.708,-125.383],[17.808,-161.634],[-22.729,-160.498]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-12.225,-22.308],[-5.938,-18.437],[-7.984,0.052],[1.397,25.15],[6.788,15.946],[0,0],[17.404,-3.582]],"o":[[0,0],[12.237,22.387],[3.189,9.878],[8.074,0.015],[-1.461,-26.119],[-6.789,-15.945],[0,0],[-15.194,3.088]],"v":[[-43.241,-175.137],[-0.603,-113.867],[29.947,-48.637],[42.863,-17.745],[58.505,-65.955],[41.634,-144.403],[17.95,-187.353],[-21.087,-192.092]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-9.112,-23.75],[-3.437,-19.062],[-7.919,-1.014],[-1.963,25.112],[4.6,16.709],[0,0],[17.726,-1.227]],"o":[[0,0],[9.139,23.82],[1.842,10.215],[8,1.093],[2.039,-26.08],[-4.6,-16.709],[0,0],[-15.47,1.032]],"v":[[-7.021,-234.391],[18.719,-184.74],[40.287,-116.016],[45.782,-84.105],[70.902,-129.366],[64.654,-209.364],[53.481,-244.149],[22.305,-237.459]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.921,217.089],"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":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[59.774,35.283],[-45.316,18.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[1.04,-16.674],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[19.024,-66.967],[-57.316,9.03],[-59.369,3.747],[28.306,-68.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[18.249,-7.53],[28.289,-28.197],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[22.827,-22.754],[21.902,-11.737]],"v":[[58.024,28.033],[-45.316,41.03],[-59.369,26.747],[28.306,-45.658]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.28,2.293]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[21.902,-11.737]],"v":[[28.274,3.283],[-45.316,41.03],[-59.369,26.747],[17.556,-45.158]],"c":true}]},{"t":254,"s":[{"i":[[18.249,-7.53],[29.629,-24.67],[-18.653,19.888],[-4.573,1.367]],"o":[[0,0],[-17.116,16.365],[23.683,-27.888],[23.4,-6.994]],"v":[[26.274,-36.217],[-45.316,-28.97],[-59.369,-73.253],[32.44,-109.334]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[426.002,347.196],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[49.584,41.444],[-72.339,95.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-46.248,-121.777],[106.675,-171.152],[224.96,106.702],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[49.584,41.444],[-76.839,70.819],[0,0],[0,0],[30.261,41.47],[-8.752,61.494]],"o":[[6.16,3.792],[95.485,55.774],[0,0],[-114.347,42.187],[24.261,-32.53],[-2.752,-8.506]],"v":[[-48.748,-160.777],[90.675,-202.152],[202.96,18.203],[123.507,102.465],[-38.925,102.697],[29.588,-26.327]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[27.475,22.964],[-81.101,93.862],[0,0],[0,0],[16.768,22.979],[-9.66,62.069]],"o":[[3.413,2.101],[95.485,55.774],[0,0],[-114.347,42.187],[13.443,-18.025],[-4.998,-25.544]],"v":[[-69.263,-132.192],[104.943,-186.768],[212.77,57.664],[123.507,112.72],[-37.588,108.048],[33.394,-13.524]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":84,"s":[{"i":[[0,0],[-86.396,122.496],[0,0],[0,0],[0,0],[-10.789,62.783]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[-7.789,-46.717]],"v":[[-20.748,-102.277],[122.675,-167.652],[224.961,106.702],[123.507,125.465],[-35.925,114.697],[38.124,2.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":236,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.636]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[38.294,25.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-74.339,109.319],[0,0],[0,0],[0,0],[-0.45,22.652]],"o":[[0,0],[95.485,55.774],[0,0],[-114.347,42.187],[0,0],[1.541,-77.637]],"v":[[-36.748,-103.277],[122.674,-187.652],[224.96,86.702],[123.507,125.465],[-27.925,118.697],[32.794,11.804]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[0,0],[-116.634,96.626],[0,0],[0,0],[0,0],[-13.515,121.561]],"o":[[0,0],[89.002,64.116],[0,0],[-114.347,42.187],[0,0],[2.503,-22.518]],"v":[[-82.538,-161.717],[134.97,-203.459],[224.96,83.073],[123.507,89.171],[-63.263,106.027],[16.85,-71.393]],"c":true}]},{"t":254,"s":[{"i":[[0,0],[-160.024,28.447],[0,0],[0,0],[0,0],[20.041,71.363]],"o":[[0,0],[77.621,78.759],[0,0],[-114.347,42.187],[0,0],[-6.126,-21.813]],"v":[[5.829,-270.994],[164.86,-280.279],[224.96,76.703],[123.507,25.465],[57.858,-83.746],[41.294,-217.196]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.48,248.638],"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":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false}],"ip":76,"op":254,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"head ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.716],"y":[0.728]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[-7.566]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.232],"y":[0.254]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.675],"y":[0]},"t":60,"s":[7.941]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76,"s":[-12.05]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":92,"s":[4.393]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":106,"s":[2.918]},{"i":{"x":[0.893],"y":[0.727]},"o":{"x":[0.297],"y":[0]},"t":236,"s":[2.918]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.271],"y":[0.096]},"t":246,"s":[-2.082]},{"i":{"x":[0.832],"y":[0.831]},"o":{"x":[0.333],"y":[0]},"t":254,"s":[-30.863]},{"i":{"x":[0.846],"y":[0.925]},"o":{"x":[0.469],"y":[0.204]},"t":260,"s":[-26.456]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.204],"y":[0.338]},"t":272,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":288,"s":[2]},{"t":302,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[326.829,566.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.881,"y":0.516},"o":{"x":0.652,"y":0},"t":58,"s":[369.829,484.509,0],"to":[0,0,0],"ti":[-0.158,-53.772,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.426,"y":0.432},"t":73.072,"s":[337.329,597.041,0],"to":[0.158,53.772,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[352.776,687.138,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[356.743,769.672,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":92,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.1,"y":0.1},"o":{"x":0.333,"y":0.333},"t":236,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.504,"y":0},"t":246,"s":[365.829,802.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.471,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[373.355,578.246,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[381.829,538.009,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[326.829,566.509,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":288,"s":[326.829,549.509,0],"to":[0,0,0],"ti":[0,0,0]},{"t":302,"s":[326.829,549.509,0]}],"ix":2,"l":2},"a":{"a":0,"k":[320.547,305.245,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.246,0.236],[0.286,-6.993],[-0.238,-0.477],[-0.291,7.115]],"o":[[-0.246,-0.236],[-0.386,9.435],[0.238,0.477],[0.291,-7.115]],"v":[[85.302,150.103],[81.687,168.761],[81.721,182.649],[82.303,169.805]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[8.277,1.885],[2.715,-10.447],[-8.166,-2.109],[-2.775,10.627]],"o":[[-8.277,-1.885],[-3.663,14.094],[8.166,2.109],[2.775,-10.627]],"v":[[98.696,147.087],[81.86,171.38],[86.277,201.223],[103.225,177.265]],"c":true}]},{"t":272,"s":[{"i":[[0.213,0.266],[1.19,-6.897],[-0.174,-0.504],[-1.211,7.017]],"o":[[-0.213,-0.266],[-1.606,9.305],[0.174,0.504],[1.211,-7.017]],"v":[[87.411,150.484],[81.408,168.517],[79.642,182.292],[81.884,169.632]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"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":1,"k":[{"t":0,"s":[0],"h":1},{"t":252,"s":[100],"h":1},{"t":268,"s":[0],"h":1}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-0.534,-8.486],[0.289,2.883],[-0.737,-11.386],[-0.133,0.252],[0.816,11.823]],"o":[[0.534,8.486],[-0.289,-2.883],[0.737,11.386],[0.133,-0.252],[-0.816,-11.823]],"v":[[12.58,259.283],[14.182,284.742],[13.908,284.116],[28.574,305.124],[13.87,275.308]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[3.114,-8.503],[5.819,2.896],[2.885,-11.409],[-9.615,0.242],[0.246,11.851]],"o":[[-3.114,8.503],[-5.819,-2.896],[-2.885,11.409],[9.615,-0.242],[-0.246,-11.851]],"v":[[62.37,270.028],[53.027,295.537],[38.268,294.894],[55.096,325.049],[74.476,286.105]],"c":true}]},{"t":272,"s":[{"i":[[3.114,-8.503],[5.819,2.896],[2.885,-11.409],[-9.615,0.242],[0.246,11.851]],"o":[[-3.114,8.503],[-5.819,-2.896],[-2.885,11.409],[9.615,-0.242],[-0.246,-11.851]],"v":[[52.425,268.983],[43.082,294.492],[28.323,293.849],[55.096,325.049],[64.53,285.06]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"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":1,"k":[{"t":0,"s":[0],"h":1},{"t":252,"s":[100],"h":1},{"t":268,"s":[0],"h":1}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[15.905,-7.203],[8.871,-22.661],[-9.82,-4.694],[-4.435,19.515]],"o":[[-12.363,5.601],[-4.435,11.29],[9.869,4.694],[4.436,-19.516]],"v":[[6.041,-66.498],[6.841,23.211],[-0.824,69.474],[39.649,20.247]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-28.882,-68.501],[-31.705,20.853],[-40.495,66.336],[6.601,21.256]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[15.564,-7.984],[3.633,-24.063],[-10.322,-5.968],[-0.978,37.133]],"o":[[-12.097,6.209],[-4.03,26.696],[10.403,5.968],[0.527,-20.007]],"v":[[-19.671,-86.183],[-9.524,4.056],[-20.605,68.427],[22.479,-5.995]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-12.362,-68.855],[-10.665,18.798],[-20.932,68.619],[24.243,18.28]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-12.362,-68.855],[-10.665,18.798],[-20.932,68.619],[24.243,18.28]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[16.431,-5.999],[8.871,-22.661],[-9.047,-2.73],[-4.435,19.515]],"o":[[-12.773,4.663],[-4.435,11.29],[9.047,2.73],[4.436,-19.516]],"v":[[34.396,-62.866],[33.814,30.012],[30.158,70.79],[63.386,23.276]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-28.882,-68.501],[-31.705,20.853],[-40.495,66.336],[6.601,21.256]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]},{"t":302,"s":[{"i":[[15.564,-7.984],[8.871,-22.661],[-10.322,-5.968],[-4.435,19.515]],"o":[[-12.097,6.209],[-4.435,11.29],[10.403,5.968],[4.436,-19.516]],"v":[[-8.992,-66.411],[-11.815,22.943],[-20.605,68.427],[26.491,23.346]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[343.27,261.416],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-72.594,100.54],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[76.58,28.014],[0,0],[-12.555,-1.078],[0,0],[-14.919,12.258],[-0.807,45.484],[5.37,10.13],[-13.97,8.827],[-31.894,-28.792],[0,0],[28.109,-36.354],[11.229,-7.495]],"o":[[-6.965,-4.512],[0,0],[12.458,1.029],[0,0],[22.338,-18.307],[0.806,-45.483],[-6.796,-13.041],[13.976,-8.908],[23.494,23.415],[0,0],[-12.947,17.088],[-20.207,13.337]],"v":[[-98.738,121.905],[-121.384,101.963],[-93.515,97.14],[-55.967,105.314],[-8.235,73.547],[40.169,-22.923],[22.001,-107.011],[18.303,-152.572],[77.596,-124.896],[135.127,-33.759],[95.021,44.233],[42.028,88.373]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[40.528,-46.522],[9.473,-9.743]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-11.802,13.548],[-22.592,23.236]],"v":[[-94.98,123.575],[-125.441,97.307],[-113.252,95.287],[-87.363,104.514],[-31.706,60.752],[6.682,-25.589],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[58.705,42.15],[4.911,89.814]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.491,-23.853],[0,0],[44.332,-44.267],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[30.076,19.66],[0,0],[-23.551,23.517],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[59.382,-134.601],[127.12,-41.31],[67.139,62.132],[34.198,96.605]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.037,-24.534],[0,0],[28.885,-33.374],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[21.383,14.557],[0,0],[-11.759,13.586],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[19.378,-27.137],[1.815,-113.658],[-0.606,-154.303],[58.786,-134.487],[123.315,-33.863],[79.033,48.644],[37.752,85.386]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-36.037,-24.534],[0,0],[28.885,-33.374],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[21.383,14.557],[0,0],[-11.759,13.586],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[19.378,-27.137],[1.815,-113.658],[-0.606,-154.303],[58.786,-134.487],[123.315,-33.863],[79.034,48.644],[37.752,85.386]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[63.848,4.855],[0,0],[-11.025,0.988],[0,0],[-14.919,12.258],[-0.807,45.484],[7.432,14.679],[-14.621,7.766],[-25.511,-35.352],[0,0],[26.914,-40.946],[12.254,-5.873]],"o":[[-10.242,-0.779],[0,0],[11.025,-0.988],[0,0],[22.338,-18.307],[0.806,-45.483],[-11.178,-22.077],[14.633,-7.846],[26.746,37.064],[0,0],[-14.779,22.484],[-23.26,11.148]],"v":[[-94.125,123.523],[-115.133,109.138],[-76.008,104.836],[-28.32,97.396],[27.845,79.309],[72.202,-16.43],[53.103,-96.768],[47.436,-149.905],[106.577,-110.118],[153.327,-33.599],[119.654,37.437],[48.616,92.975]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[40.528,-46.522],[9.473,-9.743]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-11.802,13.548],[-22.592,23.236]],"v":[[-94.98,123.575],[-125.441,97.307],[-113.252,95.287],[-87.363,104.514],[-31.706,60.752],[6.682,-25.589],[1.814,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[58.705,42.15],[4.911,89.814]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-97.7,121.714],[-125.441,97.307],[-97.707,96.898],[-70.825,112.846],[-31.548,72.806],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]},{"t":302,"s":[{"i":[[84.844,43.045],[0,0],[-13.548,-2.419],[0,0],[-14.919,12.258],[-0.807,45.484],[4.032,7.178],[-13.547,9.516],[-29.677,-31.935],[0,0],[39.112,-29.516],[10.564,-8.548]],"o":[[-4.839,-6.935],[0,0],[13.387,2.339],[0,0],[22.338,-18.307],[0.806,-45.483],[-3.952,-7.177],[13.549,-9.597],[31.129,33.467],[0,0],[-14.355,10.806],[-18.226,14.758]],"v":[[-101.732,120.855],[-125.441,97.307],[-104.878,92.146],[-73.911,110.453],[-31.653,69.808],[26.573,-23.498],[1.815,-113.658],[-0.606,-154.303],[60.039,-129.544],[125.441,-31.401],[68.023,49.163],[27.782,73.113]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[292.141,278.341],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0.842,-2.77],[15.916,-11.739],[-5.154,-8.072],[-14.628,7.256],[-4.547,12.636],[5.609,19.729],[7.5,-7.339],[-1.061,-20.625]],"o":[[-1.137,3.669],[-16.522,12.066],[6.366,10.109],[11.747,-5.87],[3.714,-10.516],[-5.609,-19.728],[-4.274,4.193],[1.061,21.766]],"v":[[40.74,17.036],[10.546,49.998],[-17.345,75.679],[30.631,68.83],[66.402,29.586],[64.055,-33.155],[40.837,-67.681],[42.902,-26.019]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[-7.793,11.193],[-40.696,41.434],[-70.373,66.838],[-15.347,60.481],[24.168,24.594],[20.217,-40.405],[-6.503,-74.935],[-5.616,-35.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[16.862,9.967],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[43.796,22.002],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[16.862,9.967],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[43.796,22.002],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.773,-2.812],[14.346,-11.934],[-4.646,-8.206],[-13.185,7.377],[-4.098,12.846],[5.056,20.056],[7.5,-7.339],[-0.956,-20.968]],"o":[[-1.025,3.73],[-14.892,12.266],[5.738,10.277],[10.588,-5.968],[3.348,-10.691],[-5.056,-20.055],[-4.274,4.193],[0.956,22.127]],"v":[[77.529,27.927],[49.656,59.005],[24.516,85.113],[67.76,78.15],[101.234,41.269],[97.887,-25.53],[73.937,-60.693],[77.816,-15.724]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[-7.793,11.193],[-40.696,41.434],[-70.373,66.838],[-15.347,60.481],[24.168,24.594],[20.217,-40.405],[-6.503,-74.935],[-5.616,-35.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]},{"t":302,"s":[{"i":[[0.887,-2.742],[16.935,-11.612],[-5.484,-7.985],[-15.565,7.178],[-4.838,12.5],[5.968,19.516],[7.5,-7.339],[-1.129,-20.403]],"o":[[-1.21,3.629],[-17.58,11.936],[6.774,10],[12.499,-5.807],[3.952,-10.403],[-5.968,-19.515],[-4.274,4.193],[1.129,21.531]],"v":[[18.065,13.911],[-14.839,44.152],[-44.516,69.556],[6.532,62.781],[46.047,26.894],[42.096,-38.105],[19.354,-72.217],[20.241,-32.701]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[243.634,253.432],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[15.005,1.241],[0.905,-11.413],[1.359,-2.367],[6.745,-7.99],[-3.259,-5.707],[-4.161,27.474]],"o":[[-6.745,-0.57],[-1.516,19.321],[-2.273,3.994],[-3.411,3.994],[7.125,12.473],[3.79,-25.11]],"v":[[40.532,-57.578],[32.726,-35.486],[30.283,5.75],[9.213,35.343],[-2.384,56.294],[54.232,9.908]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[-9.568,-65.016],[-17.874,-43.162],[-21.503,-2.194],[-43.922,27.08],[-56.261,47.805],[3.98,1.919]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.522,1.289],[0.807,-11.604],[1.217,-2.411],[6.08,-8.123],[-2.938,-5.801],[-3.738,27.932]],"o":[[-6.08,-0.58],[-1.366,19.642],[-2.049,4.06],[-3.074,4.06],[6.422,12.681],[3.416,-25.527]],"v":[[77.882,-50.307],[70.846,-27.848],[70.231,13.803],[51.239,43.888],[40.787,65.187],[91.818,18.03]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[-9.568,-65.016],[-17.874,-43.162],[-21.503,-2.194],[-43.922,27.08],[-56.261,47.805],[3.98,1.919]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]},{"t":302,"s":[{"i":[[15.968,1.21],[0.968,-11.29],[1.452,-2.339],[7.177,-7.904],[-3.468,-5.645],[-4.435,27.177]],"o":[[-7.177,-0.564],[-1.613,19.113],[-2.419,3.951],[-3.629,3.951],[7.581,12.339],[4.033,-24.839]],"v":[[16.29,-62.298],[7.984,-40.444],[4.355,0.524],[-18.064,29.798],[-30.403,50.523],[29.838,4.637]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[215.408,240.206],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[-10.559,4.36],[4.926,9.698],[0,0],[-6.834,-1.618],[-2.952,-2.289],[-10.852,1.169],[2.999,10.022],[-1.393,3.022],[-1.838,3.709],[-9.673,9.924],[-17.355,-1.086],[2.631,2.224],[28.472,-18.768],[0,0],[28.276,-1.096],[18.766,-8.826],[0,0],[-5,1.452],[-7.976,-14.102]],"o":[[13.77,-5.681],[-4.925,-9.697],[0,0],[2.749,0.647],[16.381,12.547],[10.416,-0.777],[-3.391,-10.303],[1.394,-3.022],[3.215,-7.366],[9.672,-9.923],[12.132,0.755],[-7.966,-6.837],[-23.985,15.833],[0,0],[-20.907,0.8],[-19.992,9.523],[0,0],[27.212,-6.008],[6.41,10.531]],"v":[[-12.205,64.824],[-11.202,33.936],[-21.562,18.313],[-6.378,17.549],[3.816,22.386],[37.174,60.257],[44.037,34.742],[39.229,16.531],[49.68,8.713],[68.788,-24.443],[110.955,-42.933],[134.104,-40.028],[57.763,-44.566],[28.787,-5.766],[-18.569,-6.371],[-80.933,6.975],[-111.159,29.212],[-90.514,20.825],[-36.091,40.755]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-12.027,-0.634],[0.297,11.464],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.885,2.582],[-9.248,10.355],[-17.418,-0.323],[2.73,2.111],[27.664,-20.045],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-3.447,-16.081]],"o":[[15.683,0.827],[-0.297,-11.463],[0,0],[2.661,1.129],[3.75,14.156],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.621,-7.647],[9.248,-10.355],[12.176,0.226],[-8.272,-6.495],[-23.315,16.894],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[2.004,9.816]],"v":[[-73.438,59.955],[-48.399,35.709],[-46.007,14.878],[-26.169,15.443],[-20.497,21.846],[-15.576,66.739],[7.837,34.155],[16.975,11.25],[25.049,6.846],[42.831,-31.367],[84.228,-51.715],[107.524,-49.818],[30.918,-51.027],[3.61,-10.928],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.524],[-94.394,17.136],[-76.774,31.255]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-8.439,8.592],[8.788,7.369],[0,0],[-7.175,0.237],[-3.522,-1.217],[-6.078,5.455],[6.379,4.588],[-0.434,2.086],[-3.304,5.447],[-10.411,9.185],[-17.256,-2.387],[2.46,2.42],[29.846,-16.622],[0,0],[28.477,0.447],[32.149,-14.846],[0,0],[-5,1.452],[-10.448,-12.468]],"o":[[11.005,-11.204],[-8.787,-7.368],[0,0],[2.885,-0.095],[19.503,6.656],[4.969,-4.46],[-7.372,-5.302],[0.434,-2.086],[4.192,-6.912],[10.41,-9.185],[12.063,1.668],[-7.443,-7.431],[-25.154,14.009],[0,0],[-20.94,-0.329],[-20.105,9.285],[0,0],[50.253,-9.673],[10.448,12.468]],"v":[[45.715,67.475],[32.607,34.472],[16.1,23.605],[24.115,20.795],[38.211,22.896],[87.802,47.049],[84.487,34.035],[73.515,24.667],[79.816,10.395],[101.276,-14.824],[144.794,-30.119],[167.701,-25.472],[91.779,-35.758],[59.908,0.819],[8.423,-2.083],[-73.738,11.572],[-105.182,34.896],[-84.537,26.509],[13.606,50.431]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-12.027,-0.634],[0.297,11.464],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.885,2.582],[-9.248,10.355],[-17.418,-0.323],[2.73,2.111],[27.664,-20.045],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-3.447,-16.081]],"o":[[15.683,0.827],[-0.297,-11.463],[0,0],[2.661,1.129],[3.75,14.156],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.621,-7.647],[9.248,-10.355],[12.176,0.226],[-8.272,-6.495],[-23.315,16.894],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[2.004,9.816]],"v":[[-73.438,59.955],[-48.399,35.709],[-46.007,14.878],[-26.169,15.443],[-20.497,21.846],[-15.576,66.739],[7.837,34.155],[16.975,11.25],[25.049,6.846],[42.831,-31.367],[84.228,-51.715],[107.524,-49.818],[30.918,-51.027],[3.61,-10.928],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.524],[-94.394,17.136],[-76.774,31.255]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]},{"t":302,"s":[{"i":[[-11.935,1.613],[2.42,11.21],[0,0],[-6.613,-2.822],[-2.581,-2.984],[-13.951,-1.613],[0.806,13.549],[-2.016,3.629],[-0.887,2.581],[-9.194,10.403],[-17.419,-0.241],[2.741,2.097],[27.58,-20.16],[0,0],[28.145,-2.097],[10.08,-4.919],[0,0],[-5,1.452],[-6.371,-15.162]],"o":[[15.564,-2.097],[-2.419,-11.209],[0,0],[2.661,1.129],[14.355,16.371],[13.952,1.613],[-0.807,-13.548],[2.017,-3.629],[2.581,-7.661],[9.193,-10.403],[12.177,0.162],[-8.306,-6.452],[-23.226,17.016],[0,0],[-20.886,1.532],[-19.919,9.677],[0,0],[12.258,-3.629],[3.79,9.274]],"v":[[-49.798,63.103],[-39.637,33.587],[-46.007,14.878],[-26.169,15.443],[-18.508,22.055],[4.314,68.829],[17.783,35.201],[16.975,11.25],[30.12,7.62],[47.701,-30.686],[88.992,-51.25],[112.297,-49.476],[35.685,-50.283],[8.589,-10.041],[-36.089,-9.154],[-85.604,3.991],[-115.038,25.523],[-94.394,17.136],[-68.346,34.475]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[228.351,73.273],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0.762,-17.632],[12.221,-0.77],[0.53,20.054],[-12.221,0.769]],"o":[[-0.657,15.079],[-12.231,0.848],[-0.513,-18.927],[12.221,-0.769]],"v":[[43.628,7.849],[23.325,36.586],[-0.75,10.247],[20.982,-18.378]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[3.093,-6.285],[-13.439,25.328],[-41.18,2.102],[-23.197,-29.591]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[4.421,-17.34],[12.288,1.772],[-3.621,20.013],[-12.288,-1.772]],"o":[[-3.781,14.829],[-12.315,-1.696],[3.418,-18.89],[12.288,1.772]],"v":[[75.436,26.404],[49.324,50.711],[30.896,19.575],[58.404,-4.324]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[3.093,-6.285],[-13.439,25.328],[-41.18,2.102],[-23.197,-29.591]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]},{"t":302,"s":[{"i":[[-1.613,-17.822],[12.177,-2.42],[3.225,20.081],[-12.177,2.419]],"o":[[1.371,15.242],[-12.177,2.5],[-3.065,-18.951],[12.177,-2.419]],"v":[[22.984,-4.194],[6.451,27.419],[-21.29,4.193],[-3.307,-27.5]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.19199999641,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[153.393,195.328],"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":"Group 6","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-3.942,-3.767],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[3.648,3.728],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[58.801,-13.334],[9.479,6.146],[12.55,34.458],[33.993,43.352],[57.96,47.888],[38.496,72.544],[-10.845,33.755],[-4.216,-39.679]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[19.788,-25.783],[-18.793,-8.141],[-15.809,20.568],[1.143,30.689],[24.45,35.447],[5.337,59.398],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-2.682,-3.11],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[5.169,5.993],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[93.547,3.957],[44.772,25.74],[47.978,53.443],[69.283,61.251],[94.266,65.447],[74.262,91.188],[24.445,51.654],[28.366,-19.74]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[19.788,-25.783],[-18.793,-8.141],[-15.809,20.568],[1.143,30.689],[24.45,35.447],[5.337,59.398],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]},{"t":302,"s":[{"i":[[-11.371,-17.983],[0,-1.855],[-3.548,-2.984],[-8.387,-1.21],[-4.759,-4.194],[23.87,-5.403],[5.322,17.984],[-13.79,18.548]],"o":[[0,0],[0,1.774],[3.629,2.984],[8.387,1.21],[2.661,2.258],[-23.871,5.403],[-5.403,-17.984],[9.677,-13.226]],"v":[[36.249,-24.556],[-13.428,-6.572],[-10.443,22.137],[11.089,31.734],[34.395,36.492],[15.283,60.443],[-33.749,22.137],[-25.363,-52.62]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.2,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[39.403,253.673],"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":"Group 7","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-12.245,-87.016],[-58.602,-64.565],[-71.712,-31.156],[4.222,80.84],[106.096,85.255],[68.868,36.491],[40.665,4.559],[24.135,-52.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[21.91,18.795],[4.194,7.742],[3.798,17.602]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-14.812,-12.706],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-75.428,-74.31],[-87.529,-39.982],[-12.14,74.518],[79.596,80.201],[21.915,34.784],[-4.958,-4.085],[-16.255,-59.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-6.26,-77.265],[-48,-51.161],[-61.926,-18.835],[17.188,89.155],[146.926,93.041],[105.766,44.693],[76.482,14.254],[58.463,-41.364]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[21.91,18.795],[4.194,7.742],[3.798,17.602]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-14.812,-12.706],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-75.428,-74.31],[-87.529,-39.982],[-12.14,74.518],[79.596,80.201],[21.915,34.784],[-4.958,-4.085],[-16.255,-59.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[16.774,-11.129],[0.484,-14.435],[-45.726,-15.323],[0,0],[12.58,14.92],[4.194,7.742],[6.613,15.565]],"o":[[0,0],[-10,6.612],[-1.532,49.031],[53.628,17.902],[0,0],[-12.581,-14.919],[-4.194,-7.742],[-6.613,-15.725]],"v":[[-16.129,-93.346],[-65.483,-73.264],[-78.064,-39.152],[-4.193,75.443],[79.596,80.201],[44.919,31.169],[17.419,-1.734],[1.855,-60.039]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[98.958,275.205],"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":"Group 8","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[27.865,16.917],[0,0],[-12.165,-8.332]],"o":[[0,0],[-27.864,-16.916],[0,0],[12.081,8.407]],"v":[[38.481,48.603],[32.531,-12.696],[-14.155,12.504],[10.144,29.81]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[28.628,15.715],[0,0],[-12.539,-7.808]],"o":[[0,0],[-28.627,-15.715],[0,0],[12.459,7.888]],"v":[[12.068,37.991],[3.437,-23.103],[-42.19,4.158],[-17.114,20.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[26.562,19],[0,0],[-11.525,-9.24]],"o":[[0,0],[-26.561,-18.999],[0,0],[11.435,9.309]],"v":[[71.055,64.468],[69.73,2.781],[21.193,24.438],[44.163,43.558]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[28.628,15.715],[0,0],[-12.539,-7.808]],"o":[[0,0],[-28.627,-15.715],[0,0],[12.459,7.888]],"v":[[12.068,37.991],[3.437,-23.103],[-42.19,4.158],[-17.114,20.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[28.71,15.565],[0,0],[-12.58,-7.742]],"o":[[0,0],[-28.709,-15.564],[0,0],[12.5,7.822]],"v":[[17.339,38.306],[8.386,-22.742],[-37.096,4.758],[-11.935,20.887]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[328.713,80.087],"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":"Group 9","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[20.78,29.176],[0.267,2.833],[-3.19,15.802],[36.49,20.159],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.438,-18.592],[0,0],[-31.526,8.972],[-10.026,49.136]],"o":[[-9.837,-13.811],[-0.532,-5.587],[3.19,-15.801],[-36.489,-20.159],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.753,20.897],[0,0],[44.539,-12.602],[5.449,-26.707]],"v":[[188.219,-28.693],[165.98,-61.369],[174.807,-95.19],[141.584,-175.656],[72.972,-175.061],[47.073,-134.902],[27.939,-134.226],[-74.896,-126.509],[-121.347,-88.042],[-142.743,-35.175],[-172.994,-18.317],[-201.459,0.513],[-203.787,71.965],[-140.005,152.626],[-33.34,169.414],[54.695,181.044],[236.954,60.326]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[15.556,23.301],[0.298,2.831],[-3.031,15.837],[36.702,19.793],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.752,-19.069],[0,0],[-30.434,12.236],[3.592,36.082]],"o":[[-11.257,-17.356],[-0.596,-5.582],[3.03,-15.836],[-36.702,-19.792],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.608,21.157],[0,0],[42.331,-16.659],[-3.29,-22.133]],"v":[[192.949,-23.858],[162.117,-63.648],[169.352,-97.606],[135.419,-177.952],[66.799,-176.66],[41.302,-136.23],[22.172,-135.359],[-75.798,-127.367],[-122.249,-88.9],[-142.87,-37.487],[-174.45,-20.217],[-203.366,-1.509],[-205.509,70.392],[-142.269,151.218],[-38.335,168.359],[45.758,180.935],[232.123,43.013]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[{"i":[[11.601,18.851],[0.322,2.829],[-2.91,15.864],[36.863,19.515],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.99,-19.43],[0,0],[-29.607,14.708],[13.904,26.197]],"o":[[-12.333,-20.041],[-0.644,-5.578],[2.909,-15.863],[-36.862,-19.515],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.498,21.354],[0,0],[40.658,-19.732],[-9.909,-18.669]],"v":[[192.695,-22.338],[159.192,-65.373],[165.221,-99.436],[130.751,-179.69],[62.124,-177.871],[36.932,-137.236],[17.804,-136.218],[-76.481,-128.016],[-122.932,-89.549],[-142.967,-39.238],[-175.553,-21.657],[-204.81,-3.04],[-206.813,69.201],[-143.984,150.152],[-42.118,167.56],[38.991,180.852],[223.994,29.619]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[14.971,24.16],[0.4,2.822],[-2.517,15.952],[37.385,18.615],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.763,-20.604],[0,0],[-26.921,22.734],[-0.197,0.967]],"o":[[-14.756,-23.858],[-0.801,-5.565],[2.516,-15.951],[-37.384,-18.615],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.141,21.994],[0,0],[35.227,-29.709],[0.107,-0.525]],"v":[[172.851,-29.647],[149.694,-70.974],[151.807,-105.376],[115.592,-185.335],[46.945,-181.803],[22.743,-140.501],[3.621,-139.005],[-78.699,-130.125],[-125.15,-91.658],[-143.279,-44.923],[-179.135,-26.329],[-209.499,-8.013],[-211.047,65.335],[-149.55,146.691],[-54.4,164.967],[17.017,180.584],[201.022,16.834]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[14.855,24.059],[0.403,2.822],[-2.503,15.955],[37.403,18.584],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-14.855,-24.059],[-0.806,-5.565],[2.503,-15.954],[-37.402,-18.584],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[173.229,-29.748],[149.367,-71.167],[151.345,-105.581],[115.071,-185.53],[46.423,-181.938],[22.254,-140.613],[3.133,-139.101],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[200.617,13.97]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-35.16,-3.615],[25.338,62.886]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[54.927,5.647],[-25.338,-62.886]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[223.194,40.115]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-34.504,7.665],[-16.533,81.027]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[49.405,-10.976],[8.986,-44.042]],"v":[[175.647,-51.961],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[194.658,35.779]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-34.504,7.665],[-16.533,81.027]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[49.405,-10.976],[8.986,-44.042]],"v":[[175.647,-51.961],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[194.658,35.779]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[14.435,31.084],[0.267,2.833],[-3.19,15.802],[36.49,20.159],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-32.438,-18.592],[0,0],[-31.526,8.972],[-10.026,49.136]],"o":[[-7.142,-15.379],[-0.532,-5.587],[3.19,-15.801],[-36.489,-20.159],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.753,20.897],[0,0],[44.539,-12.602],[5.449,-26.707]],"v":[[188.219,-28.693],[165.98,-61.369],[174.807,-95.19],[141.584,-175.656],[72.972,-175.061],[47.073,-134.902],[27.939,-134.226],[-74.896,-126.509],[-121.347,-88.042],[-142.743,-35.175],[-172.994,-18.317],[-201.459,0.513],[-203.787,71.965],[-140.005,152.626],[-33.34,169.414],[93.491,203.657],[213.132,59.439]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[9.121,20.8],[0.056,2.85],[-4.378,15.546],[34.935,22.889],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-30.354,-15.43],[0,0],[-26.939,10.986],[0,0]],"o":[[-7.604,-19.102],[-0.111,-5.622],[4.377,-15.545],[-34.934,-22.888],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[37.715,19.172],[0,0],[37.042,-15.107],[0,0]],"v":[[207.719,-9.886],[191.577,-46.274],[202.944,-79.395],[175.07,-160.955],[106.48,-165.531],[77.581,-127.364],[58.416,-128.13],[-68.918,-120.825],[-115.369,-82.358],[-141.9,-19.854],[-163.342,-5.725],[-188.822,13.913],[-192.377,82.384],[-125.004,161.954],[-0.241,176.402],[83.532,162.111],[229.599,29.896]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.503,15.955],[37.403,18.584],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.503,-15.954],[-37.402,-18.584],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[151.345,-105.581],[115.071,-185.53],[46.423,-181.938],[22.254,-140.613],[3.133,-139.101],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[14.262,180.645],[216.031,-5.523]],"c":true}]},{"t":302,"s":[{"i":[[14.677,14.758],[0.403,2.822],[-2.42,15.968],[37.5,18.387],[0,0],[0,0],[0,0],[7.984,-3.952],[22.339,-31.936],[0,0],[14.355,-5.565],[5.564,-10.403],[-4.838,-31.935],[-33.79,-20.644],[0,0],[-26.829,23.01],[0,0]],"o":[[-15,-15.161],[-0.806,-5.565],[2.419,-15.967],[-37.499,-18.387],[0,0],[0,0],[0,0],[-7.984,4.032],[-14.919,21.29],[0,0],[-14.354,5.564],[-5.646,10.403],[4.839,31.936],[36.129,22.016],[0,0],[35.04,-30.052],[0,0]],"v":[[181.302,-39.232],[149.367,-71.167],[156.545,-105.441],[119.851,-185.198],[51.223,-181.246],[27.272,-139.795],[8.159,-138.182],[-78.775,-130.198],[-125.226,-91.731],[-143.29,-45.119],[-179.258,-26.49],[-209.66,-8.184],[-211.193,65.202],[-149.742,146.572],[-54.823,164.878],[16.261,180.575],[216.031,-5.523]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[222.813,210.366],"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":"Group 10","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[{"i":[[0,0],[-44.356,6.125],[0,0],[0,0]],"o":[[0,0],[48.259,-6.64],[0,0],[0,0]],"v":[[-50.697,37.525],[-2.803,-30.242],[56.988,18.676],[9.498,47.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":70,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-30.278,38.49],[11.979,-30.945],[77.785,11.531],[48.672,45.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-44.98,0.776],[0,0],[0,0]],"o":[[0,0],[48.933,-0.845],[0,0],[0,0]],"v":[[-48.419,39.304],[8.161,-25.891],[61.79,33.286],[-17.119,53.969]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-30.278,38.49],[11.979,-30.945],[77.785,11.531],[48.672,45.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":288,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]},{"t":302,"s":[{"i":[[0,0],[-43.951,9.597],[0,0],[0,0]],"o":[[0,0],[47.822,-10.402],[0,0],[0,0]],"v":[[-52.176,36.37],[-9.92,-33.065],[53.87,9.193],[26.773,43.467]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[217.747,43.717],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"leg_FF","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[5.858]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.297],"y":[0]},"t":64,"s":[50.765]},{"i":{"x":[0.815],"y":[0.962]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[46.844]},{"t":76,"s":[62.06]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[394.362,698.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.33,"y":0},"t":62,"s":[397.441,677.681,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[403.362,702.106,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[423.364,730.776,0],"to":[0,0,0],"ti":[0,0,0]},{"t":76,"s":[463.362,818.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[237.022,331.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-41.128,-16.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,29.113],[-8.588,22.259],[41.572,17.742],[-11.088,-8.548],[-42.378,-6.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-41.128,-16.128]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[0,0],[-24.078,-2.158],[0.193,8.361],[15.416,2.041],[0,0]],"o":[[0,0],[24.079,2.158],[-0.193,-8.36],[-9.459,-1.252],[0,0]],"v":[[-47.16,-9.789],[-17.685,-14.408],[29.81,-14.965],[-17.935,-45.083],[-47.485,-44.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-24.357,-0.113],[0.907,8.378],[15.653,0.735],[0,0]],"o":[[0,0],[24.358,0.113],[-0.907,-8.377],[-9.603,-0.451],[0,0]],"v":[[-41.844,18.918],[-11.122,11.699],[38.982,6.586],[-13.988,-19.076],[-45.247,-16.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0,0],[-24.138,3.263],[2.059,8.171],[24.813,-3.835],[0,0]],"o":[[0,0],[24.139,-3.264],[-2.059,-8.17],[-9.501,1.468],[0,0]],"v":[[-39.132,25.076],[-3.004,13.392],[45.907,1.385],[-10.108,-16.688],[-40.678,-9.591]],"c":true}]},{"t":76,"s":[{"i":[[0,0],[-24.138,3.263],[2.059,8.171],[24.813,-3.835],[0,0]],"o":[[0,0],[24.139,-3.264],[-2.059,-8.17],[-9.501,1.468],[0,0]],"v":[[-39.132,25.076],[-3.004,13.392],[45.907,1.385],[-10.108,-16.688],[-40.678,-9.591]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.453,391.661],"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":"Group 12","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[0,0],[-12.67,0.088],[-4.958,2.066],[24.252,4.178],[0,0]],"o":[[0,0],[15.388,-0.107],[8.028,-3.346],[-24.252,-4.178],[0,0]],"v":[[-50.139,-12.108],[-22.948,-14.776],[19.504,-10.002],[-20.272,-41.545],[-52.813,-43.02]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[0,0],[-12.716,-0.339],[-4.867,2.313],[24.511,3],[0,0]],"o":[[0,0],[13.874,0.331],[7.882,-3.747],[-24.512,-3],[0,0]],"v":[[-46.72,4.65],[-15.961,0.368],[24.035,10.29],[-14.59,-26.592],[-49.094,-26.697]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-12.75,-0.655],[-4.8,2.497],[24.704,2.126],[0,0]],"o":[[0,0],[12.751,0.655],[7.775,-4.044],[-24.704,-2.126],[0,0]],"v":[[-44.185,17.074],[-10.781,11.596],[34.714,12.265],[-10.377,-15.507],[-46.336,-14.595]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0,0],[-12.765,-0.167],[-4.701,2.678],[24.767,1.179],[0,0]],"o":[[0,0],[12.766,0.167],[7.614,-4.338],[-24.767,-1.179],[0,0]],"v":[[-41.734,19.406],[-6.209,12.78],[39.278,11.708],[-6.843,-14.318],[-42.74,-12.031]],"c":true}]},{"t":76,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.69,18.631],[-9.223,13.55],[36.451,13.428],[-8.497,-13.546],[-44.464,-13.062]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.655,457.749],"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":"Group 13","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[0,0],[6.459,-7.43],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.345,-0.768],[0,0],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-75.054,-103.242],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[1.974,3.277],[7.748,-8.913],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.05,-0.6],[-3.331,-5.531],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-74.314],[-79.36,-81.57],[-97.298,-83.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[0,0],[6.459,-7.43],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[1.345,-0.768],[0,0],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-75.054,-103.242],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[-0.59,-8.526],[-9.801,30.701],[0.502,25.404],[-2.748,1.468],[1.26,3.576],[7.952,-8.587],[-3.625,-30.61],[10.4,-21.766]],"o":[[0.443,6.401],[9.801,-30.701],[-0.731,-37.021],[1.057,-0.565],[-1.204,-3.417],[-4.041,4.363],[3.385,28.587],[-8.702,18.477]],"v":[[-131.237,94.73],[-102.598,58.481],[-103.462,-27.14],[-86.316,-98.549],[-81.738,-115.7],[-105.302,-108.897],[-122.364,-15.733],[-118.251,57.622]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[-1.511,-2.395],[-5.97,24.157],[-6.825,31.118],[-12.257,14.1],[2.88,0.036],[7.08,-9.343],[-0.779,-19.617],[-4.721,-16.823]],"o":[[2.744,4.35],[1.164,-31.425],[6.825,-31.118],[2.119,-2.268],[-3.644,0.531],[-16.318,24.331],[0.181,23.023],[6.775,13.363]],"v":[[-122.219,79.557],[-112.847,47.262],[-103.98,-31.891],[-78.298,-113.432],[-74.614,-127.47],[-98.557,-112.006],[-131.389,9.317],[-130.333,52.356]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[0.829,14.431],[-6.878,27.733],[-13.701,8.434],[3.853,-2.088],[6.556,-9.797],[0.93,-13.02],[-14.307,-9.617]],"o":[[0,0],[-0.829,-14.431],[7.77,-31.332],[2.756,-3.291],[-5.108,2.9],[-23.686,36.313],[-1.742,19.684],[14.307,9.617]],"v":[[-110.258,58.481],[-111.4,31.252],[-100.553,-46.765],[-71.538,-118.393],[-69.167,-141.174],[-94.698,-121.575],[-130.879,13.77],[-131.658,38.616]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0,0],[-0.962,12.584],[-7.44,27.952],[-19.308,23.465],[4.081,-2.588],[6.433,-9.904],[1.332,-11.467],[-7.675,-5.904]],"o":[[0,0],[2.107,-27.557],[6.615,-24.855],[2.906,-3.532],[-5.453,3.457],[-25.421,39.134],[-2.195,18.897],[7.675,5.904]],"v":[[-107.513,51.454],[-110.451,21.766],[-97.597,-49.212],[-63.876,-133.093],[-71.317,-150.095],[-89.584,-126.223],[-130.759,14.819],[-123.13,38.24]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[-7.039,3.624],[-3.802,32.172],[-6.074,24.903],[-11.068,22.236],[3.597,-0.95],[7.643,-16.958],[0.857,-11.488],[0.64,-13.415]],"o":[[4.55,-2.343],[3.591,-28.743],[7.204,-29.537],[1.59,-3.195],[-5.06,0.963],[-21.734,50.119],[-1.413,18.933],[-0.64,13.415]],"v":[[-120.058,110.551],[-113.63,53.985],[-89.626,-50.724],[-59.25,-144.528],[-68.693,-163.808],[-83.585,-137.886],[-125.535,19.566],[-129.248,87.142]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-3.141,-2.484],[-5.95,31.834],[-4.87,25.139],[-7.213,14.487],[3.02,0.996],[7.336,-20.053],[2.323,-11.281],[2.821,-27.483]],"o":[[1.99,2.053],[5.844,-30.119],[5.484,-27.799],[1.065,-2.139],[-4.592,-2.002],[-11.461,32.291],[-4.048,19.659],[-6.146,17.373]],"v":[[-124.769,107.24],[-111.745,65.294],[-86.073,-53.024],[-56.629,-148.093],[-65.688,-170.273],[-83.655,-132.213],[-116.298,11.002],[-128.421,85.687]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[{"i":[[0.758,-8.593],[-8.098,31.495],[-3.665,25.375],[-3.359,6.737],[2.444,2.943],[7.073,-22.198],[-0.27,-11.54],[9.217,-22.528]],"o":[[-0.569,6.449],[8.098,-31.495],[3.764,-26.061],[0.539,-1.082],[-4.125,-4.967],[-1.822,5.717],[0.446,19.019],[-7.697,19.117]],"v":[[-143.945,120.838],[-109.86,76.603],[-82.521,-55.324],[-64.437,-120.875],[-72.596,-123.807],[-84.749,-106.951],[-107.061,2.437],[-125.679,76.643]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[1.072,-8.541],[-9.259,31.101],[-4.6,26.924],[-3.145,16.264],[2.326,3.026],[4.211,-24.3],[0.16,-11.518],[10.038,-22.118]],"o":[[-0.81,6.409],[9.258,-31.101],[4.291,-25.806],[1.282,-3.075],[-3.927,-5.108],[-0.689,9.027],[-0.27,18.982],[-8.394,18.773]],"v":[[-148.311,120.014],[-110.489,79.136],[-82.712,-52.168],[-73.484,-111.433],[-69.58,-143.733],[-85.33,-109.469],[-108.41,5.286],[-126.265,78.581]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[1.387,-8.49],[-10.42,30.707],[-5.535,28.473],[-2.247,4.833],[2.209,3.11],[1.349,-26.403],[0.591,-11.496],[10.859,-21.707]],"o":[[-1.05,6.369],[10.419,-30.707],[4.818,-25.551],[2.024,-5.069],[-3.728,-5.249],[0.444,12.336],[-0.987,18.945],[-9.091,18.429]],"v":[[-152.677,119.189],[-111.119,81.668],[-82.903,-49.011],[-72.763,-103.739],[-69.921,-131.658],[-85.91,-111.987],[-109.76,8.134],[-126.851,80.519]],"c":true}]},{"t":76,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-7.404,31.571],[-1.135,2.929],[1.974,3.277],[-4.375,-30.609],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[5.872,-25.041],[3.509,-9.055],[-3.331,-5.531],[2.709,18.955],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-83.285,-42.699],[-68.613,-94.082],[-65.367,-112.36],[-87.072,-117.022],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[12.714,2.869],[-6.705,-21.601],[-7.037,4.506],[3.614,5.216]],"o":[[-6.325,-1.427],[5.472,17.464],[3.902,-2.499],[-6.047,-8.728]],"v":[[18.215,-21.18],[9.955,6.106],[36.928,24.194],[26.173,3.043]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[8.896,-5.482],[-15.948,-8.625],[-1.508,6.526],[4.999,0.978]],"o":[[-4.425,2.726],[12.923,6.945],[0.836,-3.619],[-8.357,-1.614]],"v":[[45.423,14.225],[55.978,34.495],[81.576,29.748],[63.558,23.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[6.066,-11.672],[-22.801,0.995],[2.59,8.023],[6.026,-2.163]],"o":[[-3.017,5.805],[18.447,-0.855],[-1.436,-4.449],[-10.069,3.66]],"v":[[72.915,27.404],[97.42,42.472],[121.997,20.797],[98.595,25.86]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[7.94,-8.267],[-16.407,-8.404],[-0.686,8.446],[4.941,0.447]],"o":[[-3.949,4.112],[13.289,6.754],[0.38,-4.683],[-8.255,-0.747]],"v":[[60.159,30.532],[72.734,54.421],[96.876,44.511],[78.77,39.607]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[11.442,3.42],[-4.927,-20.698],[-6.666,3.839],[3.009,5.111]],"o":[[-5.691,-1.701],[4.03,16.737],[3.696,-2.129],[-5.036,-8.552]],"v":[[34.799,-2.263],[25.763,22.932],[49.371,41.476],[40.725,20.972]],"c":true}]},{"t":76,"s":[{"i":[[12.221,4.867],[-3.272,-22.587],[-7.724,3.38],[2.755,5.779]],"o":[[-6.078,-2.421],[2.697,18.269],[4.283,-1.874],[-4.649,-9.653]],"v":[[3.53,-16.813],[-9.009,9.077],[15.017,31.362],[7.638,8.584]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"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":"Group 16","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[13.764,-2.87],[-5.332,-19.437],[-7.475,1.287],[1.775,6.9]],"o":[[-8.897,1.824],[4.719,17.202],[11.881,-1.935],[-2.849,-11.59]],"v":[[15.726,-35.295],[8.946,-7.307],[29.433,13.852],[28.236,-9.419]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[6.281,-9.358],[-13.949,-8.154],[-3.563,4.926],[4.884,2.961]],"o":[[-4.078,6.031],[12.344,7.216],[5.726,-7.767],[-8.128,-5.047]],"v":[[22.211,-18.284],[34.009,1.559],[57.609,2.208],[43.883,-10.461]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[0.734,-14.168],[-20.337,0.211],[-0.663,7.624],[7.189,0.04]],"o":[[-0.505,9.15],[17.998,-0.187],[1.163,-12.09],[-12.041,-0.196]],"v":[[34.339,-18.742],[59.91,-4.938],[85.818,-19.495],[62.803,-24.304]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[4.988,-12.714],[-14.422,-8.118],[-2.858,6.748],[5.062,2.975]],"o":[[-3.224,8.218],[12.763,7.185],[4.61,-10.656],[-8.438,-5.103]],"v":[[33.259,-11.445],[46.982,11.716],[69.833,8.904],[55.094,-4.93]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[12.719,-1.874],[-3.794,-18.585],[-6.889,0.787],[1.24,6.591]],"o":[[-8.216,1.211],[3.358,16.447],[10.944,-1.146],[-1.961,-11.063]],"v":[[29.337,-13.738],[21.612,12.202],[39.135,33.266],[39.324,11.311]],"c":true}]},{"t":76,"s":[{"i":[[14.171,-0.688],[-2.246,-20.214],[-7.653,0.103],[0.68,7.157]],"o":[[-9.155,0.413],[1.987,17.888],[12.146,-0.053],[-1.01,-12.001]],"v":[[2.108,-24.81],[-9.067,2.013],[8.01,26.335],[10.491,2.954]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.417],"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":"Group 17","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[1.376,-76.281],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-2.031,7.098]],"o":[[-0.076,4.221],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[18.958,-66.264]],"v":[[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[2.589,-58.386],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-13.411,64.055]],"o":[[-0.187,4.217],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[13.411,-64.055]],"v":[[-171.738,81.676],[-169.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[1.376,-76.281],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-2.031,7.098]],"o":[[-0.076,4.221],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[18.958,-66.264]],"v":[[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":52,"s":[{"i":[[4.283,-63.028],[-0.055,-29.105],[0,0],[6.415,-18.06],[-30.924,2.715],[-10.381,9.058],[1.808,33.816],[-16.618,78.077]],"o":[[-0.284,4.174],[0.075,39.738],[0,0],[-10.092,28.119],[33.86,-2.973],[10.437,-9.107],[-2.076,-38.824],[16.618,-78.077]],"v":[[-178.216,51.51],[-177.521,111.735],[-159.826,215.862],[-175.307,242.593],[-140.021,293.932],[-71.961,262.533],[-67.208,185.957],[-52.425,70.419]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[3.059,-64.619],[-0.732,-29.241],[-1.235,-11.693],[-23.06,-18.201],[-16.205,18.885],[-0.874,11.011],[-1.236,36.883],[-16.13,78.788]],"o":[[-0.2,4.2],[1,39.925],[1.235,11.693],[9.972,21.774],[17.744,-20.678],[0.879,-11.069],[1.118,-38.969],[10.844,-52.196]],"v":[[-176.131,62.992],[-174.031,123.485],[-176.617,206.904],[-148.171,284.275],[-99.175,293.93],[-76.378,240.115],[-75.891,210.26],[-46.812,62.244]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":62,"s":[{"i":[[2.151,-65.799],[-1.234,-29.342],[-2.151,-20.363],[-44.913,-18.306],[-5.292,30.873],[6.174,12.458],[-0.57,14.541],[-20.131,57.407]],"o":[[-0.138,4.219],[1.685,40.063],[2.151,20.363],[24.847,17.069],[5.795,-33.805],[-6.206,-12.524],[0.57,-14.541],[11.137,-31.759]],"v":[[-174.586,71.504],[-171.444,132.196],[-174.882,226.306],[-120.733,302.107],[-61.573,280.858],[-72.332,210.425],[-76.188,172.957],[-42.65,56.184]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.684,-66.022],[-1.363,-29.335],[-1.254,-18.066],[-22.942,-22.739],[-13.411,26.261],[0.433,10.242],[-1.999,24.004],[-17.833,60.477]],"o":[[-0.108,4.219],[1.86,40.052],[1.247,18.659],[22.942,22.739],[14.685,-28.755],[-0.435,-10.295],[2.026,-24.163],[11.547,-37.536]],"v":[[-174.037,72.248],[-171.056,132.489],[-175.038,221.781],[-146.07,307.465],[-84.674,306.497],[-69.622,250.573],[-74.825,190.394],[-42.241,58.738]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0.94,-66.378],[-1.567,-29.322],[0.173,-14.412],[-0.117,-15.429],[-28.357,0.799],[-8.702,6.714],[-4.272,39.061],[-14.176,65.362]],"o":[[-0.061,4.219],[2.139,40.035],[-0.192,15.949],[1.175,26.744],[31.05,-0.875],[8.747,-6.75],[4.341,-39.474],[12.201,-46.727]],"v":[[-173.164,73.431],[-170.44,132.954],[-175.287,214.58],[-178.368,265.643],[-128.443,311.727],[-78.615,289.922],[-72.656,218.14],[-41.591,62.803]],"c":true}]},{"t":76,"s":[{"i":[[-1.442,-26.099],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-8.345,24.366]],"o":[[0.233,4.215],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[8.345,-24.366]],"v":[[-171.738,71.676],[-169.509,133.733],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-35.232,77.391]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"body mask","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[0]},{"t":246,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":246,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,78.243],[65.529,120.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-17.639,7.855],[12.453,-5.439],[7.425,-18.947],[-3.351,-16.984],[1.523,-0.667],[2.738,4.937],[0,0],[5.364,1.478],[4.31,23.522],[8.021,21.944]],"o":[[49.657,-21.878],[-21.49,9.387],[-22.25,56.773],[2.331,12.186],[-8.052,3.722],[-2.76,-4.86],[0,0],[-7.308,-2.013],[-4.31,-23.522],[-8.021,-21.943]],"v":[[25.631,-147.999],[111.192,-136.752],[52.964,-62.644],[53.474,15.959],[47.33,58.6],[20.824,27.291],[9.323,5.886],[-0.633,18.033],[-26.338,-32.882],[-43.351,-97.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-6.479,-16.053],[1.371,-0.941],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[4.577,11.532],[-7.21,5.167],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[62.815,61.551],[64.784,104.587],[31.659,87.841],[14.886,70.259],[8.515,84.615],[-29.791,42.357],[-45.259,-31.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[0.205,-18.379],[4.918,-11.18],[4.49,-4.989],[0,0],[0,0],[8.351,-5.201],[9.391,3.136],[13.809,12.541]],"o":[[42.062,-34.282],[-18.225,14.758],[-0.205,18.379],[-4.918,11.18],[-8.33,9.255],[0,0],[0,0],[-5.032,3.134],[-16.466,-5.498],[-17.295,-15.707]],"v":[[-10.268,-2.43],[66.256,17.197],[98.756,88.1],[92.968,136.798],[66.38,158.224],[45.618,172.945],[39.654,152.277],[37.199,162.68],[-3.484,151.477],[-50.759,123.938]],"c":true}]},{"t":246,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-4.695,-16.663],[1.653,0.18],[0.977,5.56],[0,0],[5.465,1.046],[6.172,23.103],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[3.295,11.961],[-8.836,-0.783],[-1.024,-5.494],[0,0],[-7.445,-1.424],[-6.172,-23.103],[-13.561,-19.024]],"v":[[-10.268,-2.43],[66.256,17.197],[38.756,72.6],[70.968,153.298],[65.88,149.724],[39.618,107.445],[26.154,146.777],[17.199,159.68],[-12.484,110.977],[-63.259,64.938]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-74.314],[-1.412,-87.458],[73.104,-94.636],[95.039,-50.765],[135.683,-12.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-22.862],[110.119,-63.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-2.905,1.126],[-44.951,-1.36],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[14.636,20.256],[4.12,0.562],[31.926,0.945],[14.132,-12.152]],"o":[[2.998,-1.177],[39.567,1.172],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.02,-24.495],[-14.56,3.387],[-22.513,-0.703],[-4.521,3.863]],"v":[[-89.443,-93.117],[-12.75,-95.085],[73.104,-93.453],[90.997,-42.845],[131.641,-4.942],[128.544,26.671],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[145.721,26.268],[148.287,-15.211],[111.736,-60.572],[87.011,-116.023],[-12.033,-114.93],[-107.357,-104.858]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-3.044,0.778],[-44.841,-6.938],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[18.879,27.305],[4.542,-1.717],[31.85,4.927],[15.666,-10.406]],"o":[[3.149,-0.805],[39.473,6.107],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.879,-27.305],[-23.912,9.042],[-22.455,-3.511],[-5.009,3.304]],"v":[[-99.489,-100.647],[-22.449,-93.055],[73.103,-83.886],[87.539,-27.515],[128.183,10.388],[122.78,32.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[139.957,32.492],[146.788,-0.112],[113.119,-49.507],[80.902,-112.104],[-19.257,-112.836],[-115.962,-114.637]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-2.844,1.335],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[13.434,-13.161]],"o":[[2.942,-1.381],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-4.299,4.186]],"v":[[-78.498,-79.897],[-1.411,-97.458],[73.103,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.304,-90.547]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-17.012,3.481],[-42.714,12.029],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[35.172,-15.447],[20.244,-8.35]],"o":[[20.738,-11.769],[37.924,-10.769],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-27.876,9.948],[-5.144,2.278]],"v":[[-91.247,-16.792],[-1.412,-57.458],[73.103,-99.636],[95.039,-49.515],[135.683,-11.612],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-21.612],[110.119,-62.257],[94.152,-115.604],[-2.839,-80.127],[-98.558,-27.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-83.997,61.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-91.313,41.477]],"c":true}]},{"t":246,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-113.997,51.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-121.313,31.477]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[21.786,14.495]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-73.158,-48.675]],"v":[[-276.354,-44.741],[-171.738,81.676],[-44.32,97.159],[35.437,79.577],[127.129,75.626],[135.919,110.706],[183.742,156.996],[186.967,192.48],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-85.148,-237.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-49.815,-80.129],[-3.417,-9.3],[-5.474,4.855],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.519],[0.092,15.357],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.582,11.813],[5.559,4.527],[11.877,16.865]],"o":[[25.329,40.74],[1.446,3.926],[5.474,-4.854],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[48.52,-0.864],[-0.1,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.621,-11.684],[-5.479,-4.515],[-50.142,-71.199]],"v":[[-262.321,-95.271],[-177.828,43.675],[-55.094,77.1],[25.636,71.277],[126.321,76.001],[134.033,114.854],[181.182,165.186],[180.23,199.756],[163.258,218.367],[165.355,272.801],[235.676,292.238],[280.349,218.07],[277.647,154.58],[328.308,11.462],[304.002,-144.854],[136.474,-216.258],[-19.417,-230.911],[-33.847,-249.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-39.89,-86.445],[-2.269,-9.735],[-6.087,4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.55],[0.172,14.834],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.046,16.055],[5.001,5.226],[9.79,18.368]],"o":[[20.282,43.952],[0.958,4.111],[6.087,-4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[45.461,-0.843],[-0.185,-15.967],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.09,-15.884],[-4.924,-5.204],[-41.33,-77.545]],"v":[[-250.316,-129.942],[-183.038,19.723],[-64.31,68.495],[17.252,72.731],[125.629,84.877],[132.419,126.956],[178.992,180.747],[174.467,205.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[278.966,227.061],[271.192,183.626],[328.352,21.144],[304.089,-135.402],[151.159,-206.214],[9.82,-235.472],[-2.366,-255.448]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-61.418,-72.745],[-4.056,-9.136],[-5.194,5.246],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[1.713,3.858],[5.194,-5.247],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-170.421,65.212],[-44.648,90.832],[35.437,69.577],[127.129,65.627],[135.919,100.707],[183.742,146.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-61.418,-72.745],[-0.588,-9.354],[-6.285,2.475],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[2.451,16.057],[-7.14,13.279],[-9.516,55.805],[33.468,47.822],[90.002,-7.546],[17.489,-5.382],[36.301,-0.699]],"o":[[31.228,36.986],[0.248,3.95],[11.866,-2.25],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-5.414,-25.817],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-93.455,8.559],[-17.449,5.382],[-72.495,-19.919]],"v":[[-276.354,-14.742],[-155.24,88.216],[-52.774,157.74],[35.437,109.577],[127.129,70.627],[135.919,111.956],[183.742,158.247],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,125.626],[328.256,5.144],[303.901,-150.902],[119.807,-215.498],[-54.094,-174.829],[-110.148,-167.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.06,111.22],[-43.901,228.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[131.819,-10.026],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-32.111,2.442],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.134,111.252],[-44.077,228.09],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-75.182,-81.079],[-173.648,-94.6]],"c":true}]},{"t":246,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.285,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.669,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-152.56,116.72],[-73.901,218.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"body ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[0]},{"t":246,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":246,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,6.572],[7.178,8.104],[65.806,-23.266],[25.161,35.362],[-40.644,42.54],[-59.757,25.766]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-35.92,8.312],[-7.292,-5.308],[40.686,-13.82],[0,0],[6.21,7.5]],"o":[[0,0],[35.92,-8.312],[7.292,5.308],[-37.068,12.591],[0,0],[-9.677,-11.451]],"v":[[-80.192,29.572],[-4.322,31.604],[56.806,0.484],[12.661,59.112],[-48.144,65.79],[-67.257,49.016]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-29.21,10.623],[-8.387,-4.839],[36.431,-17.512],[0,0],[6.21,7.5]],"o":[[0,0],[26.011,-9.46],[8.387,4.758],[-35.283,16.96],[0,0],[-9.677,-11.451]],"v":[[-74.192,19.072],[0.31,17.228],[63.306,-13.266],[21.342,42.21],[-40.644,55.04],[-59.757,38.266]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-29.21,10.623],[-8.387,-4.839],[36.431,-17.512],[0,0],[6.21,7.5]],"o":[[0,0],[26.011,-9.46],[8.387,4.758],[-35.283,16.96],[0,0],[-9.677,-11.451]],"v":[[-74.192,19.072],[0.31,17.228],[63.306,-13.266],[21.342,42.21],[-40.644,55.04],[-59.757,38.266]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[537.812,408.234],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,52.903],[13.387,44.354],[53.467,-38.789],[-7.58,11.049]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.563,73.403],[13.194,64.854],[53.274,-18.289],[-7.773,31.549]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-75.37,58.903],[5.387,63.354],[45.467,-19.789],[-15.58,30.049]],"c":true}]},{"t":246,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-75.37,58.903],[5.387,63.354],[45.467,-19.789],[-15.58,30.049]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[554.908,310.372],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,71.693],[-2.137,-1.613],[24.476,-51.289],[32.459,-1.452],[14.879,67.177],[-7.863,69.274]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-7.633,14.692],[-11.789,-3.666],[6.677,-23.463],[0,0],[11.667,1.993]],"o":[[0,0],[7.633,-14.692],[11.788,3.666],[-6.677,23.463],[0,0],[-9.587,-1.637]],"v":[[-48.814,74.443],[-6.537,17.024],[26.315,-40.548],[29.023,24.369],[14.879,77.927],[-29.387,77.594]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-5.233,26.555],[-12.339,-0.404],[3.549,-18.709],[0,0],[-5.541,-14.942]],"o":[[0,0],[5.233,-26.555],[12.338,0.403],[-3.628,18.71],[0,0],[-12.041,8.058]],"v":[[-33.814,126.193],[-20.137,65.387],[11.476,3.211],[15.959,49.048],[14.879,67.177],[22.637,99.774]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-5.233,26.555],[-12.339,-0.404],[3.549,-18.709],[0,0],[-5.541,-14.942]],"o":[[0,0],[5.233,-26.555],[12.338,0.403],[-3.628,18.71],[0,0],[-12.041,8.058]],"v":[[-33.814,130.193],[-20.137,65.387],[11.476,3.211],[15.959,49.048],[14.879,67.177],[22.637,99.774]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[439.063,320.694],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,81.733],[-4.725,4.992],[34.677,-58.104],[35.886,3.75],[12.742,69.959],[-15.081,74.314]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-14.578,19.918],[-13.983,-0.255],[16.023,-25.364],[0,0],[12.875,1.548]],"o":[[0,0],[14.622,-19.979],[14.414,0.207],[-15.39,24.284],[0,0],[-26.395,-3.174]],"v":[[-70.473,55.327],[-6.715,-5.151],[46.985,-57.359],[31.72,2.595],[-8.18,60.277],[-36.159,57.086]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.697,-2.639]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.115,5.429]],"v":[[-49.444,76.13],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.831,66.064]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[9.239,-9.1]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-12.365,12.179]],"v":[[-12.54,174.249],[10.275,96.992],[34.677,11.896],[40.886,86.75],[29.742,139.459],[9.169,151.814]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[10.74,-7.268]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-18.365,12.429]],"v":[[-14.79,164.999],[4.275,94.492],[34.677,11.896],[40.886,86.75],[29.742,139.459],[8.419,150.314]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[351.605,326.783],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[22.379,-59.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[22.379,-49.152]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[4.443,-85.12],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[43.943,-53.564],[25.379,-70.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[3.13,-55.37],[-5.821,19.976],[-33.966,83.685],[26.759,33.766],[40.63,-18.814],[22.316,-40.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[22.379,-59.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[3.068,-72.12],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[27.129,-55.027]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[22.379,-49.152]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[600.029,186.059],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.121,-67.862],[4.235,-74.475],[-24.475,-79.555],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.121,-57.862],[4.235,-64.475],[-24.475,-69.555],[-22.459,2.701]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[31.871,-80.112],[6.485,-84.225],[-24.975,-89.805],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.222,97.458],[18.326,22.701],[30.43,-48.612],[5.044,-65.225],[-24.416,-60.305],[-22.4,12.701]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.621,-71.362],[6.485,-86.725],[-24.475,-82.805],[-22.459,-7.299]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.871,-62.237],[6.36,-77.475],[-30.975,-68.055],[-22.459,2.701]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.415,1.398],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.357,-1.627],[0,0],[-0.403,23.951]],"v":[[-30.281,79.708],[8.267,4.951],[19.746,-72.049],[-4.953,-79.975],[-40.475,-74.055],[-32.459,-5.049]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.686,-0.187],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.552,0.213],[0,0],[-0.403,23.951]],"v":[[-30.281,87.458],[8.267,12.701],[18.621,-66.362],[-6.265,-66.975],[-39.975,-64.555],[-32.459,2.701]],"c":true}]},{"t":246,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.701],[30.121,-57.862],[4.235,-64.475],[-29.975,-64.555],[-22.459,2.701]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.739,162.188],"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":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.161,-81.733]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-71.652],[-18.065,8.186],[-3.71,92.216],[23.79,5.766],[27.419,-69.636],[0.161,-71.733]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-29.548,-87.152],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[26.919,-87.136],[-0.339,-90.733]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[2.992,-46.873],[-8.941,-2.463],[-9.384,45.169],[0,0],[12.627,1.773]],"o":[[0,0],[-1.91,30.689],[11.506,3.17],[9.384,-45.168],[0,0],[-15.676,-2.082]],"v":[[4.089,-67.654],[3.677,15.085],[4.347,99.093],[45.562,16.919],[59.313,-57.727],[32.658,-72.075]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.911,-92.233]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-10.375,-45.808],[-9.163,1.43],[3.762,45.979],[0,0],[12.049,-4.173]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-14.904,5.286]],"v":[[-40.55,-32.757],[-23.054,43.039],[6.849,124.065],[17.642,32.963],[12.334,-51.189],[-16.577,-51.626]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[{"i":[[0,0],[-9.641,-40.553],[-9.163,1.43],[3.762,45.979],[0,0],[11.458,-8.341]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-12.734,8.723]],"v":[[-56.55,-16.757],[-30.054,54.539],[2.099,130.065],[10.392,38.713],[-2.416,-47.939],[-32.202,-45.188]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-8.906,-35.299],[-9.163,1.43],[3.762,45.979],[0,0],[10.867,-12.508]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-10.563,12.159]],"v":[[-62.55,14.743],[-37.054,66.039],[-2.651,136.065],[3.142,44.463],[-14.666,-36.689],[-35.827,-16.751]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-10.375,-45.808],[-9.163,1.43],[3.762,45.979],[0,0],[12.049,-4.173]],"o":[[0,0],[6.84,29.978],[11.691,-1.824],[-3.762,-45.978],[0,0],[-14.904,5.286]],"v":[[-40.55,-32.757],[-23.054,43.039],[6.849,124.065],[17.642,32.963],[12.334,-51.189],[-13.827,-43.251]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[431.12,156.785],"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":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-9.96,-77.7]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-64.072],[-14.314,-15.039],[6.251,53.992],[21.17,87.459],[37.055,41.089],[31.975,-38.992],[22.379,-68.426],[-9.96,-67.7]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-44.225,-81.572],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[19.879,-85.926],[-12.71,-85.95]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-2.106,-25.351],[2.031,-19.262],[-7.32,-3.189],[-8.909,23.562],[-0.257,17.328],[0,0],[17.362,3.779]],"o":[[0,0],[2.112,25.425],[-1.088,10.324],[7.375,3.286],[9.252,-24.469],[0.257,-17.328],[0,0],[-15.142,-3.336]],"v":[[23.636,-82.369],[34.869,-28.415],[36.358,43.599],[41.852,79.827],[69.484,39.342],[85.858,-39.211],[84.674,-69.388],[55.055,-81.028]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-9.71,-86.45]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[16.181,-7.34]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-14.136,6.37]],"v":[[-45.725,25.303],[-0.695,56.703],[27.23,113.407],[44.755,154.04],[61.072,101.823],[33.748,17.586],[11.499,-9.485],[-25.247,1.052]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[15.542,-5.472]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-11.839,4.168]],"v":[[-63.563,68.928],[-28.282,102.703],[-0.357,159.407],[27.167,200.04],[33.484,147.823],[6.16,63.586],[-2.464,51.64],[-30.834,63.552]],"c":true}]},{"t":246,"s":[{"i":[[0,0],[-16.833,-19.072],[-5.964,-18.428],[-7.984,0.057],[1.424,25.149],[10.145,14.05],[0,0],[16.181,-7.34]],"o":[[0,0],[16.882,19.128],[3.197,9.877],[8.074,0.009],[-1.479,-26.118],[-10.145,-14.05],[0,0],[-14.136,6.37]],"v":[[-42.975,26.428],[-0.695,56.703],[27.23,113.407],[44.755,154.04],[61.072,101.823],[33.748,17.586],[14.124,-6.36],[-15.747,11.052]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[329.952,154.446],"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":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-56.209],[-21.573,-25.483],[5.766,12.822],[10.362,74.596],[34.718,49.032],[39.072,5.161],[3.104,-43.387]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[4.58,-3.251],[-5.011,-15.918],[0,0],[-5.548,-6.882],[-8.887,12.524],[-1.791,11.05],[21.038,25.957]],"o":[[-9.254,6.568],[4.728,15.021],[0,0],[6.501,7.98],[8.887,-12.524],[1.791,-11.05],[-16.138,-19.754]],"v":[[5.424,-88.061],[8.381,-55.376],[24.563,-11.185],[12.585,49.591],[42.855,31.414],[58.706,-9.724],[36.927,-66.082]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[2.888,-3.238],[-7.365,-10.432],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[15.719,8.214]],"o":[[-5.836,6.544],[6.951,9.845],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-16.919,-10.986]],"v":[[-17.763,35.523],[-8.385,58.397],[5.766,82.822],[10.362,144.596],[34.718,119.032],[39.072,75.161],[10.682,40.569]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[2.892,-3.245],[-7.375,-10.453],[0,0],[-7.177,-5.161],[-3.523,14.948],[1.21,11.129],[15.787,8.28]],"o":[[-5.844,6.557],[6.961,9.865],[0,0],[8.387,5.967],[4.183,-17.75],[-1.209,-11.129],[-16.942,-11.009]],"v":[[-34.853,47.396],[-25.463,70.315],[-15.234,87.822],[-24.638,123.596],[2.718,93.032],[11.072,74.161],[-6.363,52.486]],"c":true}]},{"t":246,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,13.791],[-21.573,44.517],[5.766,82.822],[10.362,144.596],[34.718,119.032],[39.072,75.161],[3.104,26.613]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.243],"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":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-0.847],[1.895,14.717],[46.25,41.411],[44.636,13.104],[12.299,-21.976],[-35.524,-17.217]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[1.521,-5.52],[0,0],[-9.119,3.342],[4.139,13.521],[11.272,8.878],[12.688,0.402]],"o":[[-4.67,16.949],[0,0],[11.051,-3.983],[-6.515,-21.285],[-10.158,-8.068],[-15.934,-0.458]],"v":[[-46.646,-57.606],[4.886,-27.263],[40.557,10.253],[46.52,-17.465],[24.663,-59.875],[-22.706,-67.991]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[-17.105,73.217],[29.641,97.839],[27.636,61.104],[-1.701,36.524],[-35.524,52.783]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[-16.993,73.285],[-2.188,95.078],[13.736,50.234],[-1.619,36.592],[-35.524,52.783]],"c":true}]},{"t":246,"s":[{"i":[[0,-5.726],[0,0],[-8.824,4.058],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[10.698,-4.851],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,69.153],[1.895,84.717],[58.641,138.339],[44.636,83.104],[12.299,48.024],[-35.524,52.783]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"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":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,78.243],[65.529,120.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-17.639,7.855],[12.453,-5.439],[7.425,-18.947],[-3.351,-16.984],[1.523,-0.667],[2.738,4.937],[0,0],[5.364,1.478],[4.31,23.522],[8.021,21.944]],"o":[[49.657,-21.878],[-21.49,9.387],[-22.25,56.773],[2.331,12.186],[-8.052,3.722],[-2.76,-4.86],[0,0],[-7.308,-2.013],[-4.31,-23.522],[-8.021,-21.943]],"v":[[25.631,-147.999],[111.192,-136.752],[52.964,-62.644],[53.474,15.959],[47.33,58.6],[20.824,27.291],[9.323,5.886],[-0.633,18.033],[-26.338,-32.882],[-43.351,-97.128]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-6.479,-16.053],[1.371,-0.941],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[4.577,11.532],[-7.21,5.167],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[62.815,61.551],[64.784,104.587],[31.659,87.841],[14.886,70.259],[8.515,84.615],[-29.791,42.357],[-45.259,-31.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[0.205,-18.379],[4.918,-11.18],[4.49,-4.989],[0,0],[0,0],[8.351,-5.201],[9.391,3.136],[13.809,12.541]],"o":[[42.062,-34.282],[-18.225,14.758],[-0.205,18.379],[-4.918,11.18],[-8.33,9.255],[0,0],[0,0],[-5.032,3.134],[-16.466,-5.498],[-17.295,-15.707]],"v":[[-10.268,-2.43],[66.256,17.197],[98.756,88.1],[92.968,136.798],[66.38,158.224],[45.618,172.945],[39.654,152.277],[37.199,162.68],[-3.484,151.477],[-50.759,123.938]],"c":true}]},{"t":246,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-4.695,-16.663],[1.653,0.18],[0.977,5.56],[0,0],[5.465,1.046],[6.172,23.103],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[3.295,11.961],[-8.836,-0.783],[-1.024,-5.494],[0,0],[-7.445,-1.424],[-6.172,-23.103],[-13.561,-19.024]],"v":[[-10.268,-2.43],[66.256,17.197],[38.756,72.6],[70.968,153.298],[65.88,149.724],[39.618,107.445],[26.154,146.777],[17.199,159.68],[-12.484,110.977],[-63.259,64.938]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":246,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"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":"Group 14","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-74.314],[-1.412,-87.458],[73.104,-94.636],[95.039,-50.765],[135.683,-12.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-22.862],[110.119,-63.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193]],"o":[[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516]],"v":[[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-2.905,1.126],[-44.951,-1.36],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[14.636,20.256],[4.12,0.562],[31.926,0.945],[14.132,-12.152]],"o":[[2.998,-1.177],[39.567,1.172],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.02,-24.495],[-14.56,3.387],[-22.513,-0.703],[-4.521,3.863]],"v":[[-89.443,-93.117],[-12.75,-95.085],[73.104,-93.453],[90.997,-42.845],[131.641,-4.942],[128.544,26.671],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[145.721,26.268],[148.287,-15.211],[111.736,-60.572],[87.011,-116.023],[-12.033,-114.93],[-107.357,-104.858]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-3.044,0.778],[-44.841,-6.938],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[18.879,27.305],[4.542,-1.717],[31.85,4.927],[15.666,-10.406]],"o":[[3.149,-0.805],[39.473,6.107],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-18.879,-27.305],[-23.912,9.042],[-22.455,-3.511],[-5.009,3.304]],"v":[[-99.489,-100.647],[-22.449,-93.055],[73.103,-83.886],[87.539,-27.515],[128.183,10.388],[122.78,32.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[139.957,32.492],[146.788,-0.112],[113.119,-49.507],[80.902,-112.104],[-19.257,-112.836],[-115.962,-114.637]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-2.844,1.335],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[13.434,-13.161]],"o":[[2.942,-1.381],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-4.299,4.186]],"v":[[-78.498,-79.897],[-1.411,-97.458],[73.103,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.304,-90.547]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-17.012,3.481],[-42.714,12.029],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[35.172,-15.447],[20.244,-8.35]],"o":[[20.738,-11.769],[37.924,-10.769],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-27.876,9.948],[-5.144,2.278]],"v":[[-91.247,-16.792],[-1.412,-57.458],[73.103,-99.636],[95.039,-49.515],[135.683,-11.612],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-21.612],[110.119,-62.257],[94.152,-115.604],[-2.839,-80.127],[-98.558,-27.285]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-83.997,61.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-91.313,41.477]],"c":true}]},{"t":246,"s":[{"i":[[-3.125,0.324],[-40.348,18.896],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[38.329,-27.185],[27.053,-3.538]],"o":[[27.738,-2.874],[36.172,-16.941],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-33.171,17.315],[-5.989,0.37]],"v":[[-113.997,51.813],[-1.412,-17.458],[73.103,-94.636],[95.039,-38.265],[135.683,-0.362],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-10.362],[110.119,-51.007],[94.152,-110.604],[-2.089,-42.877],[-121.313,31.477]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[21.786,14.495]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-73.158,-48.675]],"v":[[-276.354,-44.741],[-171.738,81.676],[-44.32,97.159],[35.437,79.577],[127.129,75.626],[135.919,110.706],[183.742,156.996],[186.967,192.48],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-85.148,-237.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-49.815,-80.129],[-3.417,-9.3],[-5.474,4.855],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.519],[0.092,15.357],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.582,11.813],[5.559,4.527],[11.877,16.865]],"o":[[25.329,40.74],[1.446,3.926],[5.474,-4.854],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[48.52,-0.864],[-0.1,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.621,-11.684],[-5.479,-4.515],[-50.142,-71.199]],"v":[[-262.321,-95.271],[-177.828,43.675],[-55.094,77.1],[25.636,71.277],[126.321,76.001],[134.033,114.854],[181.182,165.186],[180.23,199.756],[163.258,218.367],[165.355,272.801],[235.676,292.238],[280.349,218.07],[277.647,154.58],[328.308,11.462],[304.002,-144.854],[136.474,-216.258],[-19.417,-230.911],[-33.847,-249.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-39.89,-86.445],[-2.269,-9.735],[-6.087,4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.675,0.55],[0.172,14.834],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[90.046,16.055],[5.001,5.226],[9.79,18.368]],"o":[[20.282,43.952],[0.958,4.111],[6.087,-4.178],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[45.461,-0.843],[-0.185,-15.967],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-89.09,-15.884],[-4.924,-5.204],[-41.33,-77.545]],"v":[[-250.316,-129.942],[-183.038,19.723],[-64.31,68.495],[17.252,72.731],[125.629,84.877],[132.419,126.956],[178.992,180.747],[174.467,205.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[278.966,227.061],[271.192,183.626],[328.352,21.144],[304.089,-135.402],[151.159,-206.214],[9.82,-235.472],[-2.366,-255.448]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-61.418,-72.745],[-4.056,-9.136],[-5.194,5.246],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[1.713,3.858],[5.194,-5.247],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-170.421,65.212],[-44.648,90.832],[35.437,69.577],[127.129,65.627],[135.919,100.707],[183.742,146.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[{"i":[[-61.418,-72.745],[-0.588,-9.354],[-6.285,2.475],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[2.451,16.057],[-7.14,13.279],[-9.516,55.805],[33.468,47.822],[90.002,-7.546],[17.489,-5.382],[36.301,-0.699]],"o":[[31.228,36.986],[0.248,3.95],[11.866,-2.25],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-5.414,-25.817],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-93.455,8.559],[-17.449,5.382],[-72.495,-19.919]],"v":[[-276.354,-14.742],[-155.24,88.216],[-52.774,157.74],[35.437,109.577],[127.129,70.627],[135.919,111.956],[183.742,158.247],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,125.626],[328.256,5.144],[303.901,-150.902],[119.807,-215.498],[-54.094,-174.829],[-110.148,-167.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.06,111.22],[-43.901,228.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[131.819,-10.026],[58.286,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.67,23.893],[-32.111,2.442],[-84.547,23.942]],"v":[[-276.354,25.258],[-140.134,111.252],[-44.077,228.09],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-75.182,-81.079],[-173.648,-94.6]],"c":true}]},{"t":246,"s":[{"i":[[-61.418,-72.745],[2.881,-9.572],[-7.377,-0.297],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[4.902,16.147],[-11.054,17.769],[-9.516,55.805],[33.468,47.822],[88.794,-21.946],[28.768,-14.474],[58.285,-16.505]],"o":[[31.228,36.986],[-1.217,4.042],[18.538,0.746],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[-10.828,-35.666],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-96.669,23.893],[-28.768,14.474],[-84.547,23.942]],"v":[[-276.354,25.258],[-152.56,116.72],[-73.901,218.148],[35.437,149.578],[127.129,75.627],[135.919,123.206],[183.742,169.497],[186.967,192.481],[163.258,218.366],[165.355,272.801],[235.676,292.238],[281.966,207.561],[285.192,130.626],[328.256,10.144],[303.901,-145.902],[120.307,-202.998],[-54.594,-124.079],[-149.648,-92.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":78,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"body transi","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":250,"s":[-22.538]},{"t":254,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[468.362,738.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":254,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.93,-4.792],[-10.875,-12.658],[0,0],[-7.81,-4.14],[-3.236,15.012],[3.128,12.181],[29.561,15.572]],"o":[[-5.919,9.682],[10.262,11.944],[0,0],[9.119,4.775],[3.236,-15.012],[-2.784,-10.843],[-22.615,-11.801]],"v":[[-9.608,-37.92],[5.983,-9.041],[38.262,25.204],[51.19,85.785],[71.855,57.155],[67.542,11.949],[28.005,-30.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.243],"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":"Group 9","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.118,-5.616],[0,0],[-6.649,7.079],[9.766,10.225],[14.057,2.875],[11.519,-5.335]],"o":[[3.434,17.242],[0,0],[8.088,-8.519],[-15.375,-16.097],[-12.698,-2.651],[-14.445,6.742]],"v":[[-14.916,30.898],[44.752,34.886],[93.467,52.403],[86.355,24.956],[47.79,-3.133],[1.817,10.874]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"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":"Group 10","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":250,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[-6.748,2.995],[19.769,79.83],[58.71,12.014]],"o":[[31.995,36.325],[0.191,4.217],[6.748,-2.995],[-17.231,-70.17],[-86.087,-17.616]],"v":[[-238.007,6.799],[-110.757,89.304],[-20.323,98.967],[31.869,-65.936],[-94.073,-153.12]],"c":true}]},{"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[-6.748,2.995],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[6.748,-2.995],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-3.467,160.097],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":250,"op":254,"st":254,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"body 3","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":272,"s":[0]},{"t":288,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":272,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":288,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-16.217,10.481],[11.465,-7.295],[4.414,-19.866],[-5.93,-16.264],[1.315,-1.017],[3.855,4.124],[0,0],[5.436,-1.187],[10.932,40.096],[2.65,19.45]],"o":[[45.689,-29.275],[-19.786,12.589],[-13.227,59.526],[14.543,18.649],[-6.907,5.566],[-3.858,-4.044],[0,0],[-15.817,3.453],[-6.29,-23.071],[-3.154,-23.149]],"v":[[27.71,-135.373],[101.504,-107.169],[67.88,-55.254],[94.008,46.83],[98.247,87.977],[69.93,76.794],[53.331,64.186],[54.367,86.526],[-9.882,3.882],[-32.6,-74.471]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,74.243],[65.529,116.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"t":288,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-12.717,0.008],[5.104,24.927],[5.911,1.379],[7.12,-24.911]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":288,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"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":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[6.012,-6.179],[-25.896,19.464],[-18.654,17.59],[-3.135,0.208],[-47.776,23.452],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[31.93,-4.379],[17.304,-7.366],[8.536,-7.771],[21.009,-11.872]],"o":[[-4.512,4.638],[25.896,-19.464],[18.713,-17.645],[3.243,-0.215],[22.469,9.375],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.239,-3.617],[-22.522,3.052],[-5.528,2.333],[-14.068,12.807],[-17.737,10.149]],"v":[[-230.303,99.902],[-174.444,96.949],[-93.724,37.333],[-40.813,-12.443],[39.652,-99.934],[70.085,-94.029],[80.679,-39.472],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.814,-122.499],[38.393,-128.562],[-53.842,-24.531],[-131.618,43.581],[-185.948,87.509]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.778,-8.586],[-7.856,31.428],[-3.412,25.411],[-2.764,1.494],[-50.496,16.812],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[32.229,-0.044],[12.669,-13.899],[1.736,-11.412],[8.842,-22.453]],"o":[[-0.584,6.444],[7.856,-31.428],[3.422,-25.492],[2.859,-1.545],[21.004,12.312],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.238,-3.617],[-22.728,-0.005],[-4.056,4.422],[-2.861,18.808],[-7.386,19.054]],"v":[[-123.145,100.303],[-81.616,62.83],[-58.798,-54.178],[-47.408,-106.899],[22.237,-110.374],[70.085,-94.029],[80.679,-39.471],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.813,-122.499],[24.84,-138.911],[-64.286,-112.468],[-81.961,-5.597],[-96.497,62.742]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[5.108,-6.925],[-23.038,22.71],[-3.256,25.43],[-2.758,1.504],[-49.065,13.734],[0,0],[-14.964,-23.925],[-0.883,-3.06],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[6.568,11.99],[6.813,13.698],[3.342,3.514],[32.173,-1.013],[12.582,-13.977],[1.661,-11.423],[19.26,-14.525]],"o":[[-3.833,5.197],[23.038,-22.71],[3.264,-25.511],[2.849,-1.563],[25.938,7.844],[0,0],[14.964,23.925],[7.878,12.787],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.417,-2.721],[-11.963,-24.166],[-3.342,-3.513],[-22.689,0.678],[-4.028,4.447],[-2.744,18.824],[-16.242,12.388]],"v":[[-169.092,103.181],[-113.725,93.028],[-68.745,-49.185],[-55.412,-98.289],[15.988,-104.319],[70.882,-96.832],[84.474,-44.041],[115.766,-2.355],[126.451,25.649],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[143.628,25.246],[131.798,-5.304],[101.792,-53.17],[91.696,-119.356],[17.328,-130.579],[-73.009,-104.794],[-91.076,-0.463],[-126.587,85.122]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-96.443,-35.281],[-77.701,-74.314],[-1.412,-87.458],[73.104,-104.636],[95.039,-56.765],[135.683,-18.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-28.862],[110.119,-69.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426],[-116.459,13.831],[-128.023,84.394]],"c":true}]},{"t":288,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[7.411,10.052],[8.853,-21.01],[-7.971,-0.797],[-0.689,6.299]],"o":[[-3.686,-5],[-7.12,17.017],[4.42,0.442],[1.153,-10.538]],"v":[[-30.339,-63.512],[-53.669,-47.246],[-45.573,-16.538],[-39.947,-39.683]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[12.087,3.141],[-6.355,-21.895],[-6.693,4.401],[3.432,5.327]],"o":[[-6.012,-1.562],[5.187,17.703],[3.711,-2.441],[-5.741,-8.912]],"v":[[38.6,-28.701],[30.723,-1.374],[56.35,17.38],[46.144,-4.14]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[8.433,9.323],[6.676,-21.612],[-8.039,-0.093],[-0.04,6.306]],"o":[[-4.193,-4.636],[-5.357,17.501],[4.457,0.051],[0.067,-10.553]],"v":[[21.035,-56.653],[-0.58,-38.48],[10.66,-8.732],[13.895,-32.179]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"t":288,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"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":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[11.817,6.207],[8.475,-18.474],[-6.245,-3.583],[-3.094,6.486]],"o":[[-7.618,-4.037],[-7.5,16.349],[9.855,5.782],[5.293,-10.813]],"v":[[-38.586,-52.273],[-61.286,-34.549],[-59.852,-5.423],[-45.939,-24.356]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.088,-2.62],[-5.052,-19.688],[-7.107,1.15],[1.682,6.987]],"o":[[-8.46,1.662],[4.471,17.423],[11.297,-1.716],[-2.698,-11.733]],"v":[[34.214,-42.113],[27.744,-14.05],[47.201,7.671],[46.084,-15.797]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[12.434,5.123],[6.56,-19.065],[-6.602,-3.007],[-2.421,6.704]],"o":[[-8.02,-3.337],[-5.805,16.872],[10.432,4.872],[4.172,-11.187]],"v":[[14.558,-48.434],[-6.279,-28.869],[-1.851,-0.107],[10.089,-20.102]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"t":288,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.417],"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":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[18.343,-22.935],[0,0],[16.129,-10.184],[-24.177,-16.865],[-13.243,-1.347],[-28.355,27.229],[-6.748,2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[-25.045,31.315],[0,0],[-25.188,15.793],[26.473,18.467],[13.313,1.354],[28.297,-27.173],[6.748,-2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.607],[-87.315,-23.779],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-136.792,127.362],[-189.586,182.135],[-218.456,197.141],[-225.446,258.956],[-170.359,282.45],[-96.67,236.854],[-3.467,160.097],[77.628,58.471],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-129.498],[151.93,-226.816],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-52.745,-79.259],[-4.566,-8.892],[-0.196,-29.368],[0,0],[6.114,-18.068],[-29.401,2.126],[-11.135,7.295],[-4.876,39.009],[-4.889,5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[5.748,4.392],[27.383,13.582]],"o":[[26.818,40.298],[1.928,3.755],[0.268,40.098],[0,0],[-9.619,28.131],[32.193,-2.328],[11.194,-7.333],[4.866,-38.928],[4.889,-5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.608],[-87.315,-23.779],[-9.738,-0.775],[-78.72,-39.046]],"v":[[-240.372,-65.942],[-138.416,48.632],[-137.422,109.397],[-141.598,205.054],[-154.572,234.893],[-121.07,287.31],[-63.484,270.866],[-34.962,189.04],[-11.396,68.352],[62.753,47.538],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-134.498],[151.93,-236.816],[-2.124,-253.331],[-60.745,-261.688]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[-55.037,-77.537],[-4.617,-8.865],[-0.379,-29.364],[0,0],[15.053,-11.512],[-25.868,-14.611],[-13.426,0.371],[-9.274,38.201],[-4.855,5.562],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.242,16.237],[-4.256,25.478],[-6.721,56.185],[34.712,46.918],[78.7,16.681],[5.87,4.212],[23.93,13.985]],"o":[[27.983,39.423],[1.952,3.743],[0.516,40.093],[0,0],[-23.519,17.867],[28.325,15.999],[13.495,-0.372],[9.844,-40.551],[4.855,-5.561],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.236,-15.966],[3.699,-24.015],[8.45,-73.217],[-32.521,-44.007],[-88.088,-19.286],[-8.785,-1.55],[-73.89,-45.582]],"v":[[-249.88,-60.34],[-147.221,56.306],[-147.435,115.475],[-145.959,187.741],[-167.964,204.212],[-168.582,266.131],[-108.354,283.499],[-47.207,217.445],[-20.096,75.964],[55.535,56.004],[125.047,57.104],[128.714,117.489],[165.173,172.505],[178.138,198.735],[163.258,218.367],[165.355,272.802],[235.676,292.238],[280.127,220.069],[274.073,162.547],[330.694,11.41],[304.187,-137.512],[143.31,-231.844],[-15.724,-243.356],[-47.911,-256.681]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-14.555,23.269],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[12.445,-17.731],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-44.741],[-171.738,77.676],[-175.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159],[35.437,79.578],[127.129,65.627],[135.919,104.706],[183.742,150.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,124.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-84.648,-232.6]],"c":true}]},{"t":288,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false}],"ip":254,"op":306,"st":254,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"body 2","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":272,"s":[0]},{"t":288,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":272,"s":[495.362,672.106,0],"to":[0,0,0],"ti":[0,0,0]},{"t":288,"s":[495.362,672.106,0]}],"ix":2,"l":2},"a":{"a":0,"k":[338.022,305.632,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-30.917,-3.201],[-6.327,-7.33],[40.421,0.157],[0,0],[3.773,8.976]],"o":[[0,0],[27.531,2.85],[6.353,7.254],[-39.147,-0.153],[0,0],[-5.948,-13.762]],"v":[[-83.099,10.023],[-8.885,34.211],[56.802,14.387],[-1.875,67.869],[-61.398,59.162],[-74.837,37.573]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-31.078,0.478],[-7.149,-6.53],[40.156,-4.624],[0,0],[3.773,8.976]],"o":[[0,0],[27.675,-0.426],[7.167,6.451],[-38.891,4.478],[0,0],[-5.948,-13.762]],"v":[[-83.099,10.023],[-6.579,22.679],[57.426,4.66],[5.119,53.168],[-61.398,59.162],[-74.837,37.573]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,0.572],[7.178,2.104],[65.806,-29.266],[25.161,29.362],[-40.644,36.54],[-59.757,19.766]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-30.242,7.178],[-8.387,-4.839],[38.225,-13.144],[0,0],[6.21,7.5]],"o":[[0,0],[26.935,-6.371],[8.387,4.758],[-37.016,12.742],[0,0],[-9.677,-11.451]],"v":[[-74.192,-3.428],[7.178,-1.896],[65.806,-33.266],[25.161,25.362],[-40.644,32.54],[-59.757,15.766]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[537.812,408.234],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":253,"s":[{"i":[[-4.21,-13.17],[-17.844,12.263],[11.92,-1.007],[12.693,-8.581]],"o":[[2.128,6.658],[34.046,-23.398],[-11.92,1.007],[-12.6,8.519]],"v":[[-71.282,76.613],[2.321,87.808],[44.497,8.003],[-17.203,54.36]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-4.21,-13.17],[-17.844,12.263],[11.92,-1.007],[12.693,-8.581]],"o":[[2.128,6.658],[34.046,-23.398],[-11.92,1.007],[-12.6,8.519]],"v":[[-67.782,75.613],[6.821,65.808],[45.497,-17.997],[-14.703,32.86]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,47.903],[13.387,44.354],[53.467,-38.789],[-7.58,11.049]],"c":true}]},{"t":288,"s":[{"i":[[-4.032,-13.226],[-18.064,11.936],[11.935,-0.807],[12.822,-8.387]],"o":[[2.016,6.693],[34.435,-22.822],[-11.935,0.806],[-12.742,8.306]],"v":[[-61.37,42.903],[13.387,34.354],[53.467,-48.789],[-7.58,1.049]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[554.908,310.372],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.389,18.518],[-11.625,-4.157],[9.101,-16.727],[0,0],[15.108,3.055]],"o":[[0,0],[9.389,-18.518],[11.624,4.157],[-13.5,30.248],[0,0],[-9.532,-1.928]],"v":[[-15.992,62.49],[2.207,9.85],[32.737,-35.807],[33.596,36.584],[11.87,67.776],[3.641,69.301]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-8.389,20.018],[-11.625,-4.157],[8,-21.748],[0,0],[14.559,5.06]],"o":[[0,0],[8.389,-20.018],[11.624,4.157],[-8,21.748],[0,0],[-9.186,-3.192]],"v":[[-33.501,52.382],[8.207,-0.15],[35.737,-49.807],[39.596,11.084],[11.87,67.776],[-14.963,61.772]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,71.693],[-2.137,-1.613],[24.476,-51.289],[32.459,-1.452],[14.879,57.177],[-7.863,69.274]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-7.339,21.29],[-12.339,-0.404],[3.549,-18.709],[0,0],[11.774,-1.21]],"o":[[0,0],[4.597,-13.225],[12.338,0.403],[-3.628,18.71],[0,0],[-9.677,0.968]],"v":[[-36.814,61.693],[-2.137,-11.613],[24.476,-61.289],[32.459,-11.452],[14.879,57.177],[-7.863,59.274]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[439.063,320.694],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-1.088,28.602],[-13.473,3.751],[5.366,-39.838],[0,0],[8.651,-9.661]],"o":[[0,0],[0.941,-24.74],[13.872,-3.92],[-3.496,25.952],[0,0],[-10.557,11.79]],"v":[[4.633,123.733],[19.643,43.641],[49.019,-54.108],[58.689,23.081],[46.689,71.527],[27.612,91.453]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-11.331,21.928],[-13.856,1.904],[11.919,-27.532],[0,0],[12.96,-0.456]],"o":[[0,0],[11.366,-21.995],[14.273,-2.018],[-11.461,26.367],[0,0],[-26.569,0.935]],"v":[[-5.842,53.143],[28.161,-22.563],[65.166,-87.928],[67.331,-20.838],[45.805,44.808],[17.168,54.47]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,81.733],[-3.225,6.492],[34.677,-58.104],[35.886,3.75],[12.742,69.959],[-15.081,74.314]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-8.791,23.064],[-13.549,3.468],[8.71,-28.709],[0,0],[12.823,-1.935]],"o":[[0,0],[8.79,-23.145],[13.951,-3.629],[-8.387,27.5],[0,0],[-26.29,3.951]],"v":[[-48.628,71.733],[-3.225,-3.508],[34.677,-68.104],[35.886,-6.25],[12.742,59.959],[-15.081,64.314]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[351.605,326.783],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[4.758,-11.924],[-4.643,-8.337],[-14.491,24.972],[0,0],[12.281,12.353]],"o":[[0,0],[-4.839,11.917],[6.09,10.935],[14.491,-24.972],[0,0],[-9.573,-9.629]],"v":[[8.135,-46.911],[-9.444,25.937],[-33.829,87.161],[21.602,42.9],[42.136,-10.039],[50.385,-46.826]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[4.758,-11.924],[-4.643,-8.337],[-14.491,24.972],[0,0],[12.281,12.353]],"o":[[0,0],[-4.839,11.917],[6.09,10.935],[14.491,-24.972],[0,0],[-9.573,-9.629]],"v":[[8.135,-51.911],[-9.444,20.937],[-33.829,82.161],[21.602,37.9],[42.136,-15.039],[39.635,-52.076]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-62.62],[-6.008,9.476],[-34.153,73.185],[26.572,23.266],[40.443,-29.314],[36.879,-66.652]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[3.548,-12.338],[-6.29,-7.177],[-11.936,26.29],[0,0],[13.467,11.048]],"o":[[0,0],[-3.63,12.339],[8.225,9.435],[11.935,-26.29],[0,0],[-10.484,-8.629]],"v":[[2.943,-72.62],[-6.008,-0.524],[-34.153,63.185],[26.572,13.266],[40.443,-39.314],[27.379,-74.652]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[600.029,186.059],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-9.375,-3.223],[-13.141,27.386],[0,0],[12.232,5.664],[0,0],[9.912,-43.65]],"o":[[15.343,5.395],[13.141,-27.387],[0,0],[-14.114,-6.535],[0,0],[-5.36,23.347]],"v":[[-26.219,83.238],[26.991,18.098],[53.218,-42.473],[35.516,-79.561],[2.233,-71.233],[-10.777,-0.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-9.375,-3.223],[-13.141,27.386],[0,0],[12.232,5.664],[0,0],[9.912,-43.65]],"o":[[15.343,5.395],[13.141,-27.387],[0,0],[-14.114,-6.535],[0,0],[-5.36,23.347]],"v":[[-26.219,78.238],[26.991,13.098],[53.218,-53.473],[36.766,-87.811],[3.233,-85.733],[-10.777,-5.128]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,87.458],[18.267,12.702],[30.121,-57.862],[7.735,-83.975],[-24.475,-69.555],[-22.459,2.701]],"c":true}]},{"t":288,"s":[{"i":[[-9.839,-1.209],[-7.177,29.516],[0,0],[13.145,2.984],[0,0],[0.646,-44.757]],"o":[[16.128,2.097],[7.177,-29.516],[0,0],[-15.162,-3.467],[0,0],[-0.403,23.951]],"v":[[-20.281,77.458],[18.267,2.701],[30.121,-67.862],[1.735,-95.475],[-24.475,-79.555],[-22.459,-7.299]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.739,162.188],"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":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[2.182,-42.904],[-9.272,0.194],[-9.947,45.048],[0,0],[12.604,1.93]],"o":[[0,0],[1.853,30.693],[11.932,-0.25],[9.947,-45.047],[0,0],[-15.648,-2.278]],"v":[[-9.219,-84.297],[-8.643,-7.356],[-4.771,77.524],[47.156,-13.063],[60.089,-78.312],[30.996,-98.997]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[3.577,-46.832],[-9.214,-1.055],[-9.947,45.048],[0,0],[12.604,1.93]],"o":[[0,0],[-2.293,30.663],[11.858,1.358],[9.947,-45.047],[0,0],[-15.648,-2.278]],"v":[[4.714,-97.182],[5.297,-15.42],[8.75,69.698],[47.156,-13.063],[60.089,-88.312],[31.746,-118.497]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-71.652],[-18.065,8.186],[-3.71,92.216],[23.79,5.766],[27.419,-69.636],[0.161,-106.733]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-1.774,-46.935],[-9.274,0],[-4.758,45.887],[0,0],[12.742,0.484]],"o":[[0,0],[1.21,30.725],[11.935,0],[4.758,-45.886],[0,0],[-15.806,-0.483]],"v":[[-28.548,-81.652],[-18.065,-1.814],[-3.71,82.216],[23.79,-4.234],[27.419,-79.636],[0.161,-97.233]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[431.12,156.785],"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":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.262,-23.692],[-3.558,-19.04],[-7.926,-0.964],[-1.805,25.125],[4.705,16.679],[0,0],[17.282,-5.12]],"o":[[0,0],[9.289,23.762],[1.907,10.204],[8.007,1.042],[1.875,-26.093],[-4.705,-16.679],[0,0],[-15.464,1.13]],"v":[[-13.008,-59.554],[13.174,-11.06],[36.417,57.358],[52.033,90.506],[66.946,43.813],[58.953,-35.975],[44.742,-78.203],[15.426,-68.8]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-5.991,-24.723],[-0.965,-19.345],[-7.724,-2.022],[-5.168,24.654],[2.419,17.161],[0,0],[17.737,1.057]],"o":[[0,0],[6.008,24.795],[0.517,10.368],[7.794,2.109],[5.367,-25.604],[-2.419,-17.161],[0,0],[-15.475,-0.961]],"v":[[11.918,-101.137],[31.338,-49.561],[45.167,21.361],[56.182,56.309],[77.24,12.046],[80.052,-68.092],[73.866,-98.427],[40.655,-121.385]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-64.072],[-14.314,-15.039],[6.251,53.992],[21.17,87.459],[37.055,41.089],[31.975,-38.992],[22.379,-68.426],[-10.96,-77.7]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-8.79,-23.871],[-3.146,-19.112],[-7.904,-1.13],[-2.338,25.081],[4.355,16.774],[0,0],[17.742,-0.968]],"o":[[0,0],[8.79,23.951],[1.693,10.242],[7.983,1.209],[2.42,-26.048],[-4.355,-16.774],[0,0],[-15.484,0.806]],"v":[[-39.475,-74.072],[-14.314,-25.039],[6.251,43.992],[21.17,77.459],[37.055,31.089],[31.975,-48.992],[22.379,-78.426],[-13.96,-89.7]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[329.952,154.446],"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":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[2.93,-4.792],[-10.875,-12.658],[0,0],[-7.81,-4.14],[-3.236,15.012],[3.128,12.181],[29.561,15.572]],"o":[[-5.919,9.682],[10.262,11.944],[0,0],[9.119,4.775],[3.236,-15.012],[-2.784,-10.843],[-22.615,-11.801]],"v":[[-9.608,-37.92],[5.983,-9.041],[38.262,25.204],[51.19,85.785],[71.855,57.155],[67.542,11.949],[28.005,-30.125]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[3.548,-4.354],[-9.074,-14.006],[0,0],[-7.182,-5.153],[-5.226,14.441],[1.461,12.491],[27.197,19.407]],"o":[[-7.168,8.798],[8.562,13.216],[0,0],[8.393,5.958],[5.226,-14.441],[-1.3,-11.119],[-20.822,-14.736]],"v":[[0.699,-86.003],[12.264,-55.289],[39.643,-17.013],[44.304,44.756],[68.632,19.167],[70.44,-26.209],[36.922,-73.219]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-56.209],[-21.573,-25.483],[5.766,12.822],[10.362,74.596],[34.718,49.032],[39.072,5.161],[3.104,-43.387]],"c":true}]},{"t":288,"s":[{"i":[[3.548,-4.354],[-9.032,-14.033],[0,0],[-7.177,-5.161],[-5.242,14.435],[1.21,11.129],[27.177,19.436]],"o":[[-7.177,8.79],[8.548,13.225],[0,0],[8.387,5.967],[5.241,-14.435],[-1.209,-11.129],[-20.806,-14.758]],"v":[[-33.104,-66.209],[-21.573,-35.483],[5.766,2.822],[10.362,64.596],[34.718,39.032],[39.072,-4.839],[3.104,-53.387]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[285.759,244.243],"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":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-1.118,-5.616],[0,0],[-6.649,7.079],[9.766,10.225],[14.057,2.875],[11.519,-5.335]],"o":[[3.434,17.242],[0,0],[8.088,-8.519],[-15.375,-16.097],[-12.698,-2.651],[-14.445,6.742]],"v":[[-14.916,30.898],[44.752,34.886],[93.467,52.403],[86.355,24.956],[47.79,-3.133],[1.817,10.874]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.353,-5.715],[0,0],[-7.541,6.12],[8.302,11.446],[13.543,4.74],[12.132,-3.737]],"o":[[1.083,17.548],[0,0],[9.16,-7.353],[-13.07,-18.019],[-12.226,-4.335],[-15.22,4.737]],"v":[[-22.135,-26.475],[36.455,-14.497],[82.37,9.414],[79.015,-18.74],[44.579,-51.761],[-2.86,-44.066]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-0.847],[1.895,14.717],[46.25,41.411],[44.636,13.104],[12.299,-21.976],[-35.524,-17.217]],"c":true}]},{"t":288,"s":[{"i":[[0,-5.726],[0,0],[-7.904,5.644],[7.581,11.936],[13.225,5.565],[12.339,-2.983]],"o":[[0,17.581],[0,0],[9.596,-6.775],[-11.935,-18.79],[-11.936,-5.08],[-15.483,3.791]],"v":[[-55.846,-10.847],[1.895,4.717],[46.25,31.411],[44.636,3.104],[12.299,-31.976],[-35.524,-27.217]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.184000007779,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[231.082,309.767],"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":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-14.659,12.568],[10.38,-8.771],[1.702,-20.279],[1.376,-17.257],[1.619,-0.378],[1.789,5.354],[0,0],[16.726,-1.227],[16.226,38.261],[5.242,18.916]],"o":[[41.335,-35.155],[-17.912,15.136],[-5.1,60.764],[5.462,23.009],[-8.597,2.187],[-1.825,-5.283],[0,0],[-16.726,1.227],[-9.337,-22.015],[-6.239,-22.514]],"v":[[18.612,-66.272],[95.529,-48.252],[69.194,7.715],[123.341,76.654],[115.071,126.833],[93.977,104.88],[84.131,76.507],[73.776,111.251],[27.093,58.774],[-32.958,2.189]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-16.217,10.481],[11.465,-7.295],[4.414,-19.866],[-5.93,-16.264],[1.315,-1.017],[3.855,4.124],[0,0],[5.436,-1.187],[10.932,40.096],[2.65,19.45]],"o":[[45.689,-29.275],[-19.786,12.589],[-13.227,59.526],[14.543,18.649],[-6.907,5.566],[-3.858,-4.044],[0,0],[-15.817,3.453],[-6.29,-23.071],[-3.154,-23.149]],"v":[[27.71,-135.373],[101.504,-107.169],[67.88,-55.254],[94.008,46.83],[98.247,87.977],[69.93,76.794],[53.331,64.186],[54.367,86.526],[-9.882,3.882],[-32.6,-74.471]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-72.43],[66.256,-52.803],[38.756,2.6],[60.127,74.243],[65.529,116.984],[31.66,97.841],[14.886,80.259],[8.515,94.615],[-29.792,52.357],[-63.259,-5.063]],"c":true}]},{"t":288,"s":[{"i":[[-14.919,12.258],[10.564,-8.548],[2.097,-20.242],[-7.742,-15.484],[1.291,-1.048],[3.951,4.032],[0,0],[5.564,0],[10.403,21.532],[13.561,19.026]],"o":[[42.062,-34.282],[-18.225,14.758],[-6.37,60.644],[5.484,11.129],[-6.774,5.727],[-3.952,-3.952],[0,0],[-7.58,0],[-10.403,-21.532],[-13.561,-19.024]],"v":[[-10.268,-82.43],[66.256,-62.803],[38.756,-7.4],[60.127,68.243],[65.529,110.984],[31.66,87.841],[14.886,70.259],[8.515,84.615],[-29.792,42.357],[-63.259,-15.063]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.609,292.047],"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":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-21.724,-11.015],[-4.874,6.874],[13.664,7.671],[0,0]],"o":[[0,0],[21.725,11.015],[5.653,-7.971],[-8.383,-4.706],[0,0]],"v":[[3.769,31.146],[37.47,41.458],[82.553,63.836],[48.697,12.66],[19.5,1.15]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-24.338,-0.975],[0.61,8.405],[15.617,1.288],[0,0]],"o":[[0,0],[24.339,0.975],[-0.61,-8.404],[-9.581,-0.79],[0,0]],"v":[[-6.859,-3.898],[24.1,-10.027],[74.353,-13.365],[22.324,-40.884],[-9.014,-39.2]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-43.394,23.113],[-8.588,19.259],[40.572,20.742],[-11.088,-12.548],[-42.378,-10.128]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-24.354,-0.404],[0.806,8.388],[15.645,0.888],[0,0]],"o":[[0,0],[24.355,0.403],[-0.807,-8.387],[-9.597,-0.565],[0,0]],"v":[[-39.394,19.113],[-8.588,12.259],[41.572,7.742],[-11.088,-18.548],[-42.378,-16.128]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.453,391.661],"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":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-9.183,-8.869],[-5.259,-1.271],[17.23,17.831],[0,0]],"o":[[0,0],[9.184,8.87],[8.518,2.058],[-17.23,-17.831],[0,0]],"v":[[-34.3,4.382],[-5.515,22.193],[28.349,52.582],[12.593,2.023],[-15.119,-20.91]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-12.718,-1.106],[-4.885,2.325],[24.613,2.999],[0,0]],"o":[[0,0],[12.72,1.106],[7.913,-3.766],[-24.613,-2.999],[0,0]],"v":[[-11.473,-5.681],[22.104,-9.975],[67.547,-7.698],[23.466,-37.047],[-12.503,-37.407]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-48.499,17.298],[-15.033,12.217],[30.451,13.428],[-14.307,-14.878],[-50.274,-14.395]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-12.741,-0.806],[-4.839,2.42],[24.677,2.419],[0,0]],"o":[[0,0],[12.742,0.807],[7.822,-3.951],[-24.677,-2.42],[0,0]],"v":[[-42.499,17.298],[-9.033,12.217],[36.451,13.428],[-8.307,-14.878],[-44.274,-14.395]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.655,457.749],"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":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-12.717,0.008],[5.104,24.927],[5.911,1.379],[7.12,-24.911]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]},{"t":288,"s":[{"i":[[-0.323,-14.354],[-11.935,0.807],[0.645,5.565],[7.42,1.693]],"o":[[0.403,16.371],[11.936,-0.806],[-1.21,-10.403],[-11.935,-2.822]],"v":[[-14.717,1.008],[3.104,25.927],[3.911,2.379],[5.12,-23.911]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540.513,573.715],"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":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[6.012,-6.179],[-25.896,19.464],[-18.654,17.59],[-3.135,0.208],[-47.776,23.452],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[31.93,-4.379],[17.304,-7.366],[8.536,-7.771],[21.009,-11.872]],"o":[[-4.512,4.638],[25.896,-19.464],[18.713,-17.645],[3.243,-0.215],[22.469,9.375],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.239,-3.617],[-22.522,3.052],[-5.528,2.333],[-14.068,12.807],[-17.737,10.149]],"v":[[-230.303,99.902],[-174.444,96.949],[-93.724,37.333],[-40.813,-12.443],[39.652,-99.934],[70.085,-94.029],[80.679,-39.472],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.814,-122.499],[38.393,-128.562],[-53.842,-24.531],[-131.618,43.581],[-185.948,87.509]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0.778,-8.586],[-7.856,31.428],[-3.412,25.411],[-2.764,1.494],[-50.496,16.812],[0,0],[-13.184,-25.219],[-0.649,-3.146],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[8.493,15.282],[5.785,14.303],[3.239,3.617],[32.229,-0.044],[12.669,-13.899],[1.736,-11.412],[8.842,-22.453]],"o":[[-0.584,6.444],[7.856,-31.428],[3.422,-25.492],[2.859,-1.545],[21.004,12.312],[0,0],[13.184,25.218],[10.128,16.365],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.492,-2.685],[-10.148,-25.227],[-3.238,-3.617],[-22.728,-0.005],[-4.056,4.422],[-2.861,18.808],[-7.386,19.054]],"v":[[-123.145,100.303],[-81.616,62.83],[-58.798,-54.178],[-47.408,-106.899],[22.237,-110.374],[70.085,-94.029],[80.679,-39.471],[108.613,3.573],[123.28,27.895],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[140.457,27.492],[125.248,3.156],[98.802,-47.303],[90.813,-122.499],[24.84,-138.911],[-64.286,-112.468],[-81.961,-5.597],[-96.497,62.742]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[5.108,-6.925],[-23.038,22.71],[-3.256,25.43],[-2.758,1.504],[-49.065,13.734],[0,0],[-14.964,-23.925],[-0.883,-3.06],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[6.568,11.99],[6.813,13.698],[3.342,3.514],[32.173,-1.013],[12.582,-13.977],[1.661,-11.423],[19.26,-14.525]],"o":[[-3.833,5.197],[23.038,-22.71],[3.264,-25.511],[2.849,-1.563],[25.938,7.844],[0,0],[14.964,23.925],[7.878,12.787],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.417,-2.721],[-11.963,-24.166],[-3.342,-3.513],[-22.689,0.678],[-4.028,4.447],[-2.744,18.824],[-16.242,12.388]],"v":[[-169.092,103.181],[-113.725,93.028],[-68.745,-49.185],[-55.412,-98.289],[15.988,-104.319],[70.882,-96.832],[84.474,-44.041],[115.766,-2.355],[126.451,25.649],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[143.628,25.246],[131.798,-5.304],[101.792,-53.17],[91.696,-119.356],[17.328,-130.579],[-73.009,-104.794],[-91.076,-0.463],[-126.587,85.122]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-96.443,-35.281],[-77.701,-74.314],[-1.412,-87.458],[73.104,-104.636],[95.039,-56.765],[135.683,-18.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-28.862],[110.119,-69.507],[94.152,-110.604],[-3.589,-107.377],[-97.298,-83.426],[-116.459,13.831],[-128.023,84.394]],"c":true}]},{"t":288,"s":[{"i":[[2.016,-8.387],[-12.742,29.919],[-2.822,25.483],[-2.742,1.533],[-45.08,5.161],[0,0],[-19.92,-20.323],[-1.532,-2.823],[2.581,-6.855],[-0.968,-30.806],[-13.951,-1.613],[8.79,5.242],[-0.323,28.951],[-1.21,7.177],[1.209,2.822],[9.677,12.016],[3.628,3.227],[32.015,-3.71],[12.339,-14.193],[1.452,-11.452],[12.5,-20.886]],"o":[[-1.532,6.29],[12.741,-29.919],[2.823,-25.565],[2.822,-1.612],[39.677,-4.597],[0,0],[19.919,20.323],[1.613,2.822],[-0.564,1.613],[0.806,27.096],[13.952,1.612],[-8.79,-5.161],[0.403,-37.984],[1.21,-7.178],[-1.21,-2.823],[-17.016,-21.21],[-3.629,-3.225],[-22.581,2.58],[-3.951,4.516],[-2.419,18.87],[-10.484,17.742]],"v":[[-161.41,117.539],[-112.378,86.733],[-90.443,-35.281],[-77.701,-84.314],[-1.412,-97.458],[73.104,-104.636],[95.039,-60.765],[135.683,-22.862],[135.28,19.395],[104.797,74.556],[143.102,115.12],[154.151,111.007],[122.458,73.346],[152.457,18.992],[150.038,-32.862],[110.119,-73.507],[94.152,-120.604],[-3.589,-117.377],[-97.298,-93.426],[-112.459,13.831],[-128.023,84.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[380.919,482.587],"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":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[7.411,10.052],[8.853,-21.01],[-7.971,-0.797],[-0.689,6.299]],"o":[[-3.686,-5],[-7.12,17.017],[4.42,0.442],[1.153,-10.538]],"v":[[-30.339,-63.512],[-53.669,-47.246],[-45.573,-16.538],[-39.947,-39.683]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[12.087,3.141],[-6.355,-21.895],[-6.693,4.401],[3.432,5.327]],"o":[[-6.012,-1.562],[5.187,17.703],[3.711,-2.441],[-5.741,-8.912]],"v":[[38.6,-28.701],[30.723,-1.374],[56.35,17.38],[46.144,-4.14]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[8.433,9.323],[6.676,-21.612],[-8.039,-0.093],[-0.04,6.306]],"o":[[-4.193,-4.636],[-5.357,17.501],[4.457,0.051],[0.067,-10.553]],"v":[[21.035,-56.653],[-0.58,-38.48],[10.66,-8.732],[13.895,-32.179]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]},{"t":288,"s":[{"i":[[11.371,6.613],[0.161,-22.822],[-8.145,2.178],[1.855,6.128]],"o":[[-5.645,-3.307],[-0.081,18.467],[4.516,-1.209],[-3.145,-10.242]],"v":[[2.5,-24.112],[-13.79,-0.402],[6.613,25.242],[2.742,1.614]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[151.526,574.884],"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":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[11.817,6.207],[8.475,-18.474],[-6.245,-3.583],[-3.094,6.486]],"o":[[-7.618,-4.037],[-7.5,16.349],[9.855,5.782],[5.293,-10.813]],"v":[[-38.586,-52.273],[-61.286,-34.549],[-59.852,-5.423],[-45.939,-24.356]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[13.088,-2.62],[-5.052,-19.688],[-7.107,1.15],[1.682,6.987]],"o":[[-8.46,1.662],[4.471,17.423],[11.297,-1.716],[-2.698,-11.733]],"v":[[34.214,-42.113],[27.744,-14.05],[47.201,7.671],[46.084,-15.797]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[12.434,5.123],[6.56,-19.065],[-6.602,-3.007],[-2.421,6.704]],"o":[[-8.02,-3.337],[-5.805,16.872],[10.432,4.872],[4.172,-11.187]],"v":[[14.558,-48.434],[-6.279,-28.869],[-1.851,-0.107],[10.089,-20.102]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]},{"t":288,"s":[{"i":[[14.113,1.451],[0.807,-20.322],[-7.581,-1.049],[-0.404,7.178]],"o":[[-9.113,-0.968],[-0.725,17.984],[12.016,1.774],[0.806,-12.016]],"v":[[0.847,-26.129],[-14.235,-1.291],[-1.008,25.322],[4.959,2.58]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.615,581.417],"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":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-62.928,-71.443],[-0.451,-9.986],[18.343,-22.935],[0,0],[16.129,-10.184],[-24.177,-16.865],[-13.243,-1.347],[-28.355,27.229],[-6.748,2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[6.286,3.579],[26.71,20.014]],"o":[[31.995,36.325],[0.191,4.217],[-25.045,31.315],[0,0],[-25.188,15.793],[26.473,18.467],[13.313,1.354],[28.297,-27.173],[6.748,-2.995],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.607],[-87.315,-23.779],[-9.754,0.542],[-70.321,-52.691]],"v":[[-238.007,6.799],[-110.757,89.304],[-136.792,127.362],[-189.586,182.135],[-218.456,197.141],[-225.446,258.956],[-170.359,282.45],[-96.67,236.854],[-3.467,160.097],[77.628,58.471],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-129.498],[151.93,-226.816],[-27.131,-210.936],[-92.073,-229.12]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-52.745,-79.259],[-4.566,-8.892],[-0.196,-29.368],[0,0],[6.114,-18.068],[-29.401,2.126],[-11.135,7.295],[-4.876,39.009],[-4.889,5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.328,16.334],[-0.557,26.271],[-5.718,56.321],[35.159,46.593],[74.208,20.21],[5.748,4.392],[27.383,13.582]],"o":[[26.818,40.298],[1.928,3.755],[0.268,40.098],[0,0],[-9.619,28.131],[32.193,-2.328],[11.194,-7.333],[4.866,-38.928],[4.889,-5.532],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.321,-15.965],[0.557,-26.272],[8.068,-79.47],[-32.152,-42.608],[-87.315,-23.779],[-9.738,-0.775],[-78.72,-39.046]],"v":[[-240.372,-65.942],[-138.416,48.632],[-137.422,109.397],[-141.598,205.054],[-154.572,234.893],[-121.07,287.31],[-63.484,270.866],[-34.962,189.04],[-11.396,68.352],[62.753,47.538],[124.299,54.043],[126.127,122.079],[158.505,180.23],[174.967,200.981],[163.258,218.367],[165.355,272.802],[235.676,292.238],[279.466,224.561],[270.08,176.166],[331.57,11.864],[304.289,-134.498],[151.93,-236.816],[-2.124,-253.331],[-60.745,-261.688]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":266,"s":[{"i":[[-55.037,-77.537],[-4.617,-8.865],[-0.379,-29.364],[0,0],[15.053,-11.512],[-25.868,-14.611],[-13.426,0.371],[-9.274,38.201],[-4.855,5.562],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[-0.242,16.237],[-4.256,25.478],[-6.721,56.185],[34.712,46.918],[78.7,16.681],[5.87,4.212],[23.93,13.985]],"o":[[27.983,39.423],[1.952,3.743],[0.516,40.093],[0,0],[-23.519,17.867],[28.325,15.999],[13.495,-0.372],[9.844,-40.551],[4.855,-5.561],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0.236,-15.966],[3.699,-24.015],[8.45,-73.217],[-32.521,-44.007],[-88.088,-19.286],[-8.785,-1.55],[-73.89,-45.582]],"v":[[-249.88,-60.34],[-147.221,56.306],[-147.435,115.475],[-145.959,187.741],[-167.964,204.212],[-168.582,266.131],[-108.354,283.499],[-47.207,217.445],[-20.096,75.964],[55.535,56.004],[125.047,57.104],[128.714,117.489],[165.173,172.505],[178.138,198.735],[163.258,218.367],[165.355,272.802],[235.676,292.238],[280.127,220.069],[274.073,162.547],[330.694,11.41],[304.187,-137.512],[143.31,-231.844],[-15.724,-243.356],[-47.911,-256.681]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-14.555,23.269],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[12.445,-17.731],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-44.741],[-171.738,77.676],[-175.318,132.4],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,97.159],[35.437,79.578],[127.129,65.627],[135.919,104.706],[183.742,150.996],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,124.626],[328.256,10.144],[303.901,-145.902],[119.307,-217.998],[-53.594,-215.579],[-84.648,-232.6]],"c":true}]},{"t":288,"s":[{"i":[[-61.418,-72.745],[-4.758,-8.791],[-0.888,-29.355],[0,0],[11.693,-15.403],[-30.564,-6.854],[-12.742,5.565],[-3.952,39.113],[-4.758,5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-11.936,-24.758],[-29.676,0.483],[0,15.968],[-3.226,8.79],[-9.516,55.805],[33.468,47.822],[91.209,6.855],[6.21,3.71],[14.317,15.108]],"o":[[31.228,36.986],[2.016,3.709],[1.209,40.08],[0,0],[-18.306,23.951],[33.468,7.5],[12.822,-5.564],[3.951,-39.032],[4.758,-5.645],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[12.016,24.758],[52.096,-0.888],[0,-15.968],[3.145,-8.79],[9.516,-55.806],[-33.547,-47.903],[-90.241,-6.774],[-6.129,-3.709],[-60.443,-63.781]],"v":[[-276.354,-54.741],[-171.738,71.676],[-169.318,132.401],[-166.012,216.754],[-189.076,237.722],[-170.851,297.881],[-99.964,290.705],[-65.045,208.367],[-44.32,87.159],[35.437,69.578],[127.129,65.627],[135.919,100.707],[183.742,146.997],[186.967,192.481],[163.258,218.367],[165.355,272.802],[235.676,292.238],[281.966,207.561],[285.192,120.626],[328.256,0.144],[303.901,-155.902],[119.307,-227.998],[-53.594,-225.579],[-70.648,-241.6]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588000009574,0.075,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[338.022,305.631],"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":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false}],"ip":254,"op":306,"st":254,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"leg_FB ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[-33.515]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[-33.515]},{"i":{"x":[0.3],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.7],"y":[0]},"t":58,"s":[16.387]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[32.502]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":246,"s":[32.502]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":254,"s":[-7.304]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.7],"y":[0]},"t":260,"s":[-15.97]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":268,"s":[-33.515]},{"t":278,"s":[-33.515]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":30,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":38,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[302.377,570.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":78,"s":[326.377,786.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[326.377,786.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[293.377,665.691,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[328.377,638.014,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":268,"s":[287.877,680.514,0],"to":[0,0,0],"ti":[0,0,0]},{"t":278,"s":[287.877,680.514,0]}],"ix":2,"l":2},"a":{"a":0,"k":[166.999,4.885,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[23.773,-12.905],[17.594,-14.764],[29.094,-10.904]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[5.824,0.93],[-1.756,-5.113],[-1.912,6.439]],"o":[[-6.289,-0.793],[1.288,3.746],[1.444,-4.917]],"v":[[28.67,-18.106],[18.105,-11.26],[38.089,-8.527]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[5.968,0],[-3.629,-10.565],[-3.951,13.306]],"o":[[-7.822,0],[2.661,7.741],[2.984,-10.161]],"v":[[1.049,-15.484],[-14.193,0.645],[14.839,2.178]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[4.576,3.719],[3.799,-10.364],[-11.322,7.741]],"o":[[-5.998,-4.875],[-2.784,7.594],[8.62,-5.932]],"v":[[-30.472,-54.081],[-52.211,-51.212],[-30.904,-31.944]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[3.715,4.562],[5.815,-9.353],[-12.632,5.263]],"o":[[-4.87,-5.98],[-4.261,6.853],[9.626,-4.044]],"v":[[-32.6,-76.119],[-54.419,-77.73],[-37.517,-54.582]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[5.585,1.698],[-0.392,-10.92],[-7.484,11.328]],"o":[[-7.32,-2.226],[0.287,8.002],[5.684,-8.66]],"v":[[10.737,-34.86],[-8.117,-24.104],[18.616,-14.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[5.51,2.292],[0.704,-11.149],[-8.758,10.768]],"o":[[-7.222,-3.004],[-0.516,8.169],[6.658,-8.236]],"v":[[-8.181,-39.155],[-28.449,-30.117],[-2.232,-17.552]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[4.002,4.427],[5.402,-9.778],[-12.521,5.991]],"o":[[-5.245,-5.803],[-3.959,7.165],[9.539,-4.6]],"v":[[-39.075,-54.986],[-61.261,-55.478],[-42.931,-32.913]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]},{"t":278,"s":[{"i":[[5.689,1.803],[0,0],[0,0]],"o":[[-4.851,-1.537],[0,0],[0,0]],"v":[[7.724,-23.534],[1.544,-25.393],[13.044,-21.533]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[30.894,232.263],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[9.577,0.528],[-8.897,0.994],[30.017,-2.081],[44.634,-10.331]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[16.733,-4.398],[-2.303,-5.659],[-17.251,10.088],[3.018,3.881]],"o":[[-13.229,3.905],[2.107,5.19],[7.796,-4.854],[-2.898,-3.003]],"v":[[15.47,-13.516],[-1.01,2.374],[40.224,0.944],[50.812,-19.08]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[14.436,-7.822],[-4.759,-11.693],[-18.548,15.807],[5.645,5.968]],"o":[[-13.145,7.178],[4.354,10.725],[9.436,-8.064],[-5.645,-5.968]],"v":[[-11.089,-20.323],[-25.443,12.016],[18.266,12.338],[24.557,-20.242]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[15.944,2.998],[3.648,-11.928],[-24.074,0.595],[0.609,8.094]],"o":[[-14.553,-2.688],[-3.345,10.937],[12.261,-0.303],[-0.609,-8.094]],"v":[[-39.471,-35.458],[-70.631,-19.606],[-37.316,7.879],[-12.189,-13.183]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[14.967,6.166],[5.986,-10.912],[-23.638,-4.307],[-1.048,8.031]],"o":[[-13.671,-5.58],[-5.488,10.005],[12.039,2.193],[1.048,-8.031]],"v":[[-43.755,-50.645],[-77.413,-41.486],[-50.449,-7.871],[-21.626,-23.345]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[15.736,-3.212],[-1.115,-12.298],[-21.843,9.544],[3.584,7.192]],"o":[[-14.344,2.977],[1.023,11.276],[11.125,-4.861],[-3.584,-7.192]],"v":[[1.36,-29.696],[-21.276,-3.517],[19.536,9.223],[34.695,-19.476]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[16.333,-1.678],[0.108,-12.624],[-23.186,7.503],[2.92,7.678]],"o":[[-14.894,1.579],[-0.099,11.575],[11.809,-3.821],[-2.92,-7.678]],"v":[[-16.282,-30.659],[-41.955,-6.314],[-1.723,10.771],[16.598,-16.894]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[15.483,5.465],[5.494,-11.366],[-24.168,-3.128],[-0.642,8.19]],"o":[[-14.139,-4.939],[-5.037,10.422],[12.31,1.593],[0.642,-8.19]],"v":[[-49.103,-31.026],[-82.72,-19.99],[-53.65,12.652],[-25.262,-4.527]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]},{"t":278,"s":[{"i":[[18.887,-1.187],[0,0],[-16.034,4.725],[0.556,1.923]],"o":[[-13.308,0.836],[0,0],[6.258,-1.844],[-0.322,-0.222]],"v":[[-6.473,-10.101],[-24.947,-9.635],[13.967,-12.71],[28.584,-20.96]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.732999973671,0.365000017952,0.258999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[74.401,220.328],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-0.977,-39.741],[16.604,-28.643],[37.814,-22.676],[30.314,-51.707],[11.055,-69.605]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[2.566,-37.394],[20.148,-26.296],[40.732,-20.743],[30.314,-51.707],[11.055,-69.605]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-22.661,1.371],[-6.533,13.307],[14.677,19.273],[7.177,-9.758],[-7.984,-25.242]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[-3.466,-2.407],[-4.179,6.818],[7.362,6.294],[0,0]],"o":[[0,0],[3.466,2.407],[6.298,-10.067],[-6.318,-5.498],[0,0]],"v":[[-21.853,6.469],[-3.863,15.353],[18.069,17.463],[5.538,-9.777],[-12.13,-22.326]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-8.188,-39.719],[9.393,-28.62],[30.603,-22.654],[28.939,-47.819],[9.68,-65.718]],"c":true}]},{"t":278,"s":[{"i":[[0,0],[-2.983,-2.984],[-5.322,5.968],[6.129,7.5],[0,0]],"o":[[0,0],[2.984,2.984],[7.984,-8.79],[-5.242,-6.532],[0,0]],"v":[[-0.977,-39.741],[16.604,-28.643],[37.814,-22.676],[30.314,-51.707],[11.055,-69.605]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.345,67.345],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[51.238,-15.681],[35.445,-51.437],[12.753,-66.849],[-3.178,-39.274],[17.595,-31.352]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-5.317,8.376],[12.125,11.291],[0,0],[0,0],[-8.907,-5.667]],"o":[[8.776,-13.825],[-9.91,-9.229],[0,0],[0,0],[17.625,11.213]],"v":[[56.449,-12.23],[37.321,-50.195],[16.922,-64.089],[2.033,-35.823],[22.806,-27.901]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[18.71,16.451],[8.548,-14.677],[-10.322,-27.258],[-27.661,-6.612],[-9.435,7.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[-7.823,10.807],[7.662,6.774],[0,0],[0,0],[-7.742,-7.177]],"o":[[8.951,-12.419],[-10.161,-8.952],[0,0],[0,0],[6.532,6.049]],"v":[[26.471,16.592],[13.355,-13.301],[-5.653,-25.402],[-20.693,0.843],[-3.908,10.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[44.027,-15.659],[28.234,-51.415],[5.542,-66.827],[-10.389,-39.252],[10.384,-31.33]],"c":true}]},{"t":278,"s":[{"i":[[-5.914,7.966],[7.662,6.774],[0,0],[0,0],[-8.907,-5.667]],"o":[[10.371,-13.969],[-10.161,-8.952],[0,0],[0,0],[17.625,11.213]],"v":[[51.238,-15.681],[35.445,-51.437],[12.753,-66.849],[-3.178,-39.274],[17.595,-31.352]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.2,0.19199999641,0.195999998205,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[72.184,113.877],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[0.178,-133.306],[-23.865,-77.622],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-20.047,25.493],[0,0]],"o":[[0,0],[-23.103,38.015],[-26.159,-5.254],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[13.61,-17.308],[0,0]],"v":[[0.178,-133.306],[-19.696,-74.861],[-53.779,-0.415],[-112.805,42.144],[-49.797,97.161],[6.735,88.504],[17.864,57.039],[65.395,-11.16],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0,0],[20.84,-29.934],[6.541,-11.711],[-3.737,-15.391],[-10.1,-1.285],[-11.21,16.955],[0,0],[-17.683,20.884],[0,0]],"o":[[0,0],[-22.928,33.355],[-6.541,11.711],[3.599,15.414],[21.048,2.705],[11.129,-16.956],[0,0],[14.361,-16.659],[0,0]],"v":[[-0.279,-129.11],[-32.546,-57.542],[-75.44,12.162],[-86.987,69.556],[-41.67,104.474],[14.862,86.582],[10.097,51.896],[65.379,-16.394],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[22.822,-28.548],[-2.983,-49.032],[-7.444,-7.6],[-9.959,-1.976],[-11.21,26.289],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[0.946,15.298],[7.154,7.304],[21.048,4.194],[11.129,-26.29],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.766,73.104],[-92.298,106.959],[-65.846,120.441],[-9.314,92.701],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0,0],[22.822,-28.548],[28.231,-39.487],[-0.972,-10.467],[-6.398,-7.726],[-24.979,13.172],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-8.808,12.32],[0.934,10.058],[13.526,16.333],[24.917,-13.224],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-118.881,20.997],[-129.652,55.35],[-117.771,82.173],[-57.135,96.131],[3.429,46.285],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[{"i":[[0,0],[22.822,-28.548],[35.595,-32.841],[1.176,-10.422],[-4.682,-8.847],[-27.076,7.796],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-11.106,10.247],[-1.13,10.016],[9.897,18.702],[27.026,-7.859],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-114.213,-2.387],[-131.711,28.985],[-125.551,57.6],[-69.15,83.547],[7.717,45.953],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[22.822,-28.548],[11.115,-46.746],[-4.803,-9.231],[-8.754,-4.69],[-17.972,21.412],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-3.468,14.585],[4.616,8.871],[18.504,9.915],[17.896,-21.436],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-88.888,46.762],[-85.919,82.278],[-65.002,102.423],[-4.203,92.55],[9.775,45.794],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":254,"s":[{"i":[[0,0],[22.822,-28.548],[16.032,-46.433],[-3.954,-9.876],[-8.432,-5.656],[-20.447,19.967],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-22.742,28.386],[-5.002,14.488],[3.8,9.491],[17.823,11.956],[20.373,-19.999],[0,0],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-46.249,-39.072],[-105.577,39.847],[-106.145,76.278],[-86.9,98.886],[-24.05,94.985],[10.289,45.754],[65.361,-21.977],[108.748,-62.862]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":260,"s":[{"i":[[0,0],[19.328,-38.156],[20.395,-7.499],[0.829,-22.83],[-5.205,-8.717],[-27.02,9.311],[-23.214,27.121],[-15.161,15.968],[0,0]],"o":[[0,0],[-16.436,32.447],[-40.594,-5.19],[-0.371,10.217],[11.002,18.427],[26.966,-9.372],[23.214,-27.121],[15.161,-15.967],[0,0]],"v":[[-0.766,-124.635],[-41.442,-37.697],[-82.447,11.23],[-138.577,51.185],[-130.842,79.85],[-72.355,103.188],[4.765,52.456],[65.361,-21.977],[108.748,-62.863]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":268,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[-1.197,-129.418],[-31.076,-77.6],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[58.15,-21.954],[101.537,-62.84]],"c":true}]},{"t":278,"s":[{"i":[[0,0],[18.982,-31.233],[4.691,-7.013],[-0.261,-22.696],[-10.233,-0.636],[-11.21,8.203],[0,0],[-15.161,15.968],[0,0]],"o":[[0,0],[-23.103,38.015],[-28.728,-6.356],[0.265,23.02],[21.048,1.309],[11.129,-8.204],[0,0],[15.161,-15.967],[0,0]],"v":[[0.178,-133.306],[-23.865,-77.622],[-65.66,-8.283],[-128.854,31.515],[-65.846,86.532],[-9.315,77.875],[1.814,46.411],[65.361,-21.977],[108.748,-62.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[108.999,124.885],"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":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"leg_RB ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[640.605,654.764,0],"ix":2,"l":2},"a":{"a":0,"k":[81.185,-29.09,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[-2.201,-22.042],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[2.201,22.042],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.287,23.645],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[21.799,-45.042],[-20.251,-25.909],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[-21.799,45.042],[4.249,36.591],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-67.305,-56.306],[-57.354,32.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":78,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.7,"y":0},"t":254,"s":[{"i":[[21.799,-45.042],[-20.251,-25.909],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[-21.799,45.042],[4.249,36.591],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-67.305,-56.306],[-57.354,32.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":272,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-55.806],[-44.353,17.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.45,-90.079]],"c":true}]},{"t":288,"s":[{"i":[[0,0],[-2.178,-21.451],[-3.871,-30.08],[-39.192,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.193,42.177],[2.581,19.758],[49.435,0],[0,0],[0,0],[0,0]],"v":[[-68.305,-65.806],[-44.354,13.145],[-73.064,92.902],[-14.033,117.66],[59.354,94.515],[76.935,-117.66],[-71.451,-100.079]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[77.184,117.91],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Tail_Mask","parent":13,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[125.964,115.619,0],"ix":2,"l":2},"a":{"a":0,"k":[125.964,115.619,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.515,-111.564],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[119.771,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-121.59,-115.301],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[22.306,48.865],[13.881,9.224],[-33.399,-37.633],[-58.835,13.06],[-3.316,19.208]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-21.979,-43.172],[0,0],[33.399,37.633],[58.271,-12.993],[3.891,-22.539]],"v":[[118.639,-36.105],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-68.017,-45.378],[-120.896,-111.914],[-84.891,55.011],[38.567,102.377],[116.879,21.887]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[19.843,61.355],[13.127,5.782],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-18.943,-45.669],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-77.349,-62.212],[-119.678,-105.97],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-5.29,55.927],[6.864,-22.812],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[6.282,-66.417],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-50.271,-63.532],[-109.559,-56.594],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-104.041,-36.731],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-22.165,5.58],[0.416,17.447],[25.148,-1.558],[10.584,-0.135],[19.446,6.491],[-12.223,42.818],[6.864,-22.812],[-29.856,-40.5],[-37.96,-16.682],[-19.429,-1.562]],"o":[[15.841,-4.026],[-0.533,-22.345],[-8.31,0.515],[-10.584,0.135],[-33.284,-11.11],[13.179,-46.167],[0,0],[29.856,40.5],[37.96,16.682],[19.429,1.562]],"v":[[165.38,145.493],[198.128,111.252],[150.879,76.549],[111.691,79.622],[43.754,62.912],[-37.184,-44.513],[-104.041,-36.731],[-83.089,50.815],[14.036,126.642],[107.271,147.628]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[-15.932,-16.389],[-14.892,9.099],[13.945,20.985],[16.828,26.37],[45.324,52.008],[46.774,44.344],[-15.67,-20.116],[-33.983,-31.099],[-21.082,-24.092],[-16.842,-22.765]],"o":[[11.419,11.693],[19.073,-11.654],[-4.608,-6.935],[-16.091,-25.214],[-33.574,-38.525],[-34.842,-33.032],[15.67,20.115],[18.35,16.792],[39.316,44.93],[14.238,19.246]],"v":[[103.798,236.136],[149.837,247.328],[156.206,189.051],[125.703,144.082],[52.409,53.952],[-58.227,-55.503],[-149.152,-49.392],[-85.908,19.052],[1.757,103.938],[66.697,184.708]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[36.915,73.92],[-57.892,-58.536],[-153.6,-45.366],[-87.893,15.116],[-24.386,105.951],[-6.036,196.147]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[17.733,22.135],[-9.17,-27.638],[-23.936,-32.233],[-33.238,-57.057],[-7.025,-20.64]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-39.566,-49.389],[4.074,12.28],[14.829,19.97],[25.968,44.577],[7.713,22.664]],"v":[[34.271,263.336],[70.071,294.372],[102.425,245.484],[87.466,185.924],[36.623,72.718],[-58.893,-56.445],[-142.64,-66.009],[-101.36,-1.141],[-20.918,110.094],[15.787,194.772]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[19.481,18.579],[15.397,61.201],[-5.233,-24.956],[-16.045,-28.356],[-42.815,-43.104],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-28.921,-27.581],[-11.713,-46.56],[9.905,47.235],[12.25,21.648],[35.991,36.234],[22.205,8.948]],"v":[[140.919,200.993],[183.303,179.816],[150.541,131.2],[87.078,119.734],[15.593,70.742],[-61.945,-54.596],[-141.599,-76.712],[-100.759,30.304],[-28.518,124.48],[70.983,189.46]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.761,59.555],[-7.323,-24.425],[-22.344,-29.719],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[7.564,25.229],[14.948,19.882],[36.917,35.29],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[77.254,115.139],[16.939,74.565],[-61.941,-54.547],[-137.805,-52.014],[-92.696,51.567],[-24.658,133.556],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[17.919,20.09],[25.684,61.599],[-13.426,-26.654],[-16.045,-28.356],[-35.655,-37.398],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-31.769,-35.62],[-18.477,-44.314],[18.153,36.041],[12.25,21.648],[35.241,36.963],[22.205,8.948]],"v":[[140.034,210.011],[182.418,188.834],[149.656,140.219],[89.142,128.205],[21.619,77.329],[-58.996,-55.143],[-136.512,-43.325],[-96.243,31.791],[-21.676,133.452],[70.979,198.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[6.649,26.758],[33.898,60.084],[42.234,48.688],[-10.674,-19.43],[-25.095,-31.339],[-17.807,-30.356],[-3.49,-15.983]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-5.992,-24.112],[-25.11,-44.508],[-33.055,-38.105],[12.277,22.349],[26.792,33.457],[30.208,51.496],[5.107,23.389]],"v":[[29.268,257.093],[65.068,288.129],[97.422,239.241],[86.058,182.568],[39.744,70.217],[-59.518,-57.226],[-143.427,-48.398],[-79.715,27.819],[-20.733,109.579],[18.999,198.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-2.132,27.489],[23.759,51.897],[45.363,45.786],[-19.131,-19.517],[-22.449,-29.756],[-11.618,-29.831],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[2.887,-37.226],[-21.272,-46.464],[-33.791,-34.106],[17.85,18.209],[14.981,19.857],[22.357,57.406],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.079,207.113],[35.234,73.714],[-56.812,-60.283],[-146.936,-47.37],[-74.194,26.243],[-26.003,107.158],[-6.036,196.147]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[6.765,-21.833],[-15.117,-8.721],[-11.751,22.288],[-4.325,37.608],[17.348,44.594],[45.363,45.786],[-25.998,-22.754],[-32.993,-32.147],[-11.392,-29.918],[3.826,-28.099]],"o":[[-4.802,15.623],[19.36,11.169],[3.883,-7.365],[3.417,-29.715],[-18.528,-47.625],[-33.791,-34.106],[19.188,16.794],[17.815,17.359],[16.506,43.349],[-4.09,30.035]],"v":[[-30.617,243.925],[-18.409,289.706],[35.808,267.406],[56.403,189.419],[37.415,68.425],[-56.075,-62.265],[-145.334,-42.803],[-81.47,13.574],[-28.889,89.456],[-11.33,189.49]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[2.511,-22.068]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[-2.707,23.787]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[38.302,72.479],[-56.505,-59.977],[-150.826,-48.248],[-85.813,12.954],[-22.999,104.51],[-3.902,196.814]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[24.491,44.034],[-11.664,-18.853],[-23.936,-32.233],[-15.787,-27.851],[-9.627,-16.949]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-30.759,-55.304],[17.109,27.654],[14.829,19.97],[29.441,51.939],[11.824,20.817]],"v":[[37.627,261.158],[73.427,292.194],[105.78,243.306],[90.821,183.746],[39.978,70.54],[-55.538,-58.623],[-140.978,-53.169],[-91.063,17.582],[-19.718,109.278],[25.484,203.55]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.76,59.555],[-9.449,-28.571],[-21.38,-33.404],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[8.27,25.006],[13.409,20.95],[36.917,35.29],[21.94,9.579]],"v":[[141.48,202.946],[182.188,176.349],[143.986,132.537],[80.966,113.649],[20.651,73.075],[-58.229,-56.037],[-137.25,-53.314],[-88.984,50.077],[-20.946,132.066],[63.69,188.793]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[24.629,12.394],[17.418,20.526],[15.761,59.555],[-7.546,-24.357],[-21.378,-30.421],[-32.884,-33.52],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.07,-12.616],[-30.881,-36.392],[-12.283,-46.414],[16.69,53.877],[14.302,20.351],[35.765,36.456],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[76.28,117.797],[19.492,71.677],[-61.941,-54.547],[-137.805,-52.014],[-91.542,48.802],[-23.977,129.302],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-116.565,-62.885],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-25.818,73.595],[12.244,-72.578],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[15.894,-45.304],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-42.17,-65.519],[-113.913,-54.41],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[13.63,-11.582],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.656,-41.307],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[3.089,45.088],[0,0],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-3.282,-47.899],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-48.641,-49.225],[-111.022,-57.404],[-80.153,60.974],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[-2.472,22.723],[16.504,5.674],[7.28,-24.122],[2.549,-10.273],[20.287,-2.952],[16.672,53.332],[14.311,11.185],[-33.399,-37.633],[-60.006,5.599],[-6.674,18.313]],"o":[[1.731,-16.253],[-21.137,-7.267],[-2.406,7.971],[-2.549,10.273],[-34.724,5.053],[-14.325,-45.825],[0,0],[33.399,37.633],[59.444,-5.546],[7.403,-20.314]],"v":[[134.73,-13.449],[109.807,-56.873],[63.337,-24.446],[58.519,17.153],[29.434,40.629],[-57.266,-41.397],[-100.746,-103.882],[-84.891,55.011],[34.133,108.381],[123.726,42.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":272,"s":[{"i":[[1.389,22.238],[18.025,1.063],[2.998,-24.379],[1.563,-10.388],[19.997,-4.197],[19.265,49.064],[14.311,11.185],[-33.399,-37.633],[-59.342,9.296],[-4.796,18.724]],"o":[[-1.03,-15.9],[-21.166,-1.997],[-0.991,8.056],[-1.563,10.388],[-34.227,7.183],[-17.783,-44.323],[0,0],[33.399,37.633],[58.786,-9.209],[5.257,-19.987]],"v":[[123.685,-26.343],[93.785,-64.012],[54.731,-25.097],[54.043,14.004],[27.344,38.284],[-59.268,-39.33],[-111.778,-108.518],[-84.891,55.011],[36.226,105.387],[120.28,31.863]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-130.687,-116.463],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"t":304,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[122.138,115.62],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Tail ","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[15]},{"i":{"x":[0.717],"y":[0.268]},"o":{"x":[0.333],"y":[0]},"t":38,"s":[15]},{"i":{"x":[0.624],"y":[0.724]},"o":{"x":[0.402],"y":[0.258]},"t":48,"s":[0]},{"i":{"x":[0.708],"y":[0.705]},"o":{"x":[0.336],"y":[0.613]},"t":58,"s":[-60.438]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.178],"y":[0.314]},"t":78,"s":[-109.069]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":122,"s":[-170.422]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":184,"s":[-126.712]},{"i":{"x":[0.865],"y":[0.879]},"o":{"x":[0.563],"y":[0]},"t":242,"s":[-165.32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0.607]},"t":262,"s":[-28.329]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":282,"s":[15]},{"t":304,"s":[15]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"t":0,"s":[808.937,598.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[808.937,598.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[808.937,608.165,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[800.937,585.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.382,"y":0},"t":58,"s":[765.937,591.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.306,"y":0},"t":70,"s":[767.463,573.632,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.645,"y":1},"o":{"x":0.333,"y":0},"t":78,"s":[769.955,603.894,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[786.117,577.486,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":116,"s":[777.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[777.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":180,"s":[799.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":196,"s":[799.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":236,"s":[781.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":242,"s":[781.937,571.665,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":262,"s":[769.699,590.666,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":276,"s":[808.937,603.165,0],"to":[0,0,0],"ti":[0,0,0]},{"t":290,"s":[808.937,598.165,0]}],"ix":2,"l":2},"a":{"a":0,"k":[20.964,68.619,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-8.24,-13.486],[0,0],[-17.694,29.583],[48.928,-20.58]],"o":[[0,0],[8.24,13.486],[0,0],[23.197,-38.784],[-23.225,9.769]],"v":[[2.281,62.138],[26.147,93.753],[46.111,133.348],[106.967,88.1],[50.454,22.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[0.855,-15.781],[0,0],[-31.344,14.344],[51.974,10.775]],"o":[[0,0],[-0.855,15.781],[0,0],[41.093,-18.806],[-24.671,-5.115]],"v":[[23.202,99.615],[24.946,139.189],[18.954,183.126],[94.737,180.337],[85.108,94.623]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[12.58,-9.566],[0,0],[-28.115,-19.944],[16.708,50.382]],"o":[[0,0],[-14.066,10.696],[0,0],[36.86,26.147],[-7.931,-23.915]],"v":[[50.829,172.853],[19.592,200.549],[-23.554,225.044],[18.161,280.516],[87.524,229.249]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[14.975,219.132],[-25.578,236.492],[-72.409,244.044],[-59.589,306.096],[25.553,292.292]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[2.025,-15.674],[0,0],[-34.347,2.922],[45.287,27.687]],"o":[[0,0],[-2.264,17.525],[0,0],[45.029,-3.831],[-21.497,-13.143]],"v":[[16.264,139.549],[12.359,183.139],[1.756,231.523],[66.571,240.676],[86.441,156.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[11.916,148.33],[8.713,187.916],[-3.778,235.732],[64.682,242.83],[75.95,157.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[2.025,-15.674],[0,0],[-34.347,2.922],[45.287,27.687]],"o":[[0,0],[-2.264,17.525],[0,0],[45.029,-3.831],[-21.497,-13.143]],"v":[[15.378,148.567],[14.423,191.611],[0.87,240.541],[65.686,249.694],[85.555,165.76]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[9.972,212.889],[-30.581,230.249],[-77.412,237.802],[-64.592,299.854],[20.55,286.05]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[0,0],[14.945,5.14],[0,0],[4.055,-34.231],[-36.24,38.783]],"o":[[0,0],[-16.71,-5.747],[0,0],[-5.316,44.878],[17.202,-18.409]],"v":[[-21.733,249.6],[-65.04,241.204],[-111.036,221.226],[-132.257,279.719],[-54.044,316.085]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[15.397,3.564],[0,0],[0.486,-34.467],[-32.027,42.329]],"o":[[0,0],[-17.216,-3.985],[0,0],[-0.637,45.188],[15.202,-20.093]],"v":[[-13.378,248.201],[-57.321,244.338],[-105.14,229.233],[-120.186,289.611],[-38.626,317.677]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[15.254,-4.135],[0,0],[-15.858,-30.606],[-8.224,52.439]],"o":[[0,0],[-17.055,4.623],[0,0],[20.791,40.126],[3.904,-24.892]],"v":[[18.33,216.954],[-22.223,234.314],[-69.054,241.866],[-56.234,303.919],[28.908,290.114]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[15.628,146.839],[12.425,186.426],[-0.066,234.241],[68.394,241.34],[79.662,155.825]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[4.498,-18.656],[0,0],[-33.874,6.385],[47.857,22.959]],"o":[[0,0],[-4.141,17.178],[0,0],[44.41,-8.371],[-22.717,-10.898]],"v":[[11.916,148.33],[8.713,187.916],[-3.778,235.732],[64.682,242.83],[75.95,157.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-8.24,-13.486],[0,0],[-17.694,29.583],[48.928,-20.58]],"o":[[0,0],[8.24,13.486],[0,0],[23.197,-38.784],[-23.225,9.769]],"v":[[2.281,62.138],[26.147,93.753],[46.111,133.348],[106.967,88.1],[50.454,22.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[-14.5,-6.287],[0,0],[2.555,34.376],[28.17,-44.988]],"o":[[0,0],[14.5,6.287],[0,0],[-3.349,-45.068],[-13.372,21.355]],"v":[[-31.841,41.301],[5.871,53.421],[44.985,74.312],[68.713,2.285],[-15.004,-18.48]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-15.78,-0.867],[0,0],[17.737,29.557],[4.937,-52.85]],"o":[[0,0],[15.78,0.867],[0,0],[-23.253,-38.75],[-2.343,25.087]],"v":[[-46.657,37.295],[-7.082,35.582],[36.849,41.609],[26.912,-38.249],[-57.203,-19.161]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-15.538,-2.89],[0,0],[10.171,32.936],[17.405,-50.145]],"o":[[0,0],[15.538,2.888],[0,0],[-13.335,-43.18],[-8.262,23.803]],"v":[[-41.98,36.624],[-2.513,40.011],[40.28,51.634],[47.314,-23.873],[-38.926,-25.408]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.546,89.007],"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":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[11.35,13.922],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-10.414,-12.774],[0,0]],"v":[[-36.716,-33.314],[-29.887,6.668],[-38.264,44.845],[39.942,17.707],[17.311,-15.778],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[4.25,17.452],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[-3.9,-16.013],[0,0]],"v":[[-26.839,-25.404],[-30.45,14.996],[-48.301,49.767],[28.267,48.859],[22.256,8.893],[13.702,-22.488]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[-1.719,17.88],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[1.577,-16.405],[0,0]],"v":[[-23.952,-24.589],[-33.315,21.461],[-59.929,65.187],[4.876,86.132],[21.364,36.492],[23.175,1.846]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[19.046,-13.744],[11.737,-5.634],[0,0],[-17.784,12.649],[0,0]],"o":[[0,0],[-21.972,15.856],[36.389,31.959],[0,0],[23.602,-16.786],[0,0]],"v":[[27.309,-6.97],[-3.182,23.662],[-48.985,49.161],[-8.934,87.115],[29.448,67.311],[71.891,31.363]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[9.46,24.865],[-30.782,40.631],[-81.136,44.748],[-62.718,98.298],[-18.486,93.723],[31.873,80.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[11.427,19.798],[-24.617,43.648],[-74.623,59.381],[-43.054,104.635],[-1.466,92.983],[47.358,66.339]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[15.148,-17.949],[10.022,-8.31],[0,0],[-12.689,20.791],[0,0]],"o":[[0,0],[-17.476,20.707],[17.363,20.303],[0,0],[17.17,-28.134],[0,0]],"v":[[-17.933,-8.475],[-41.196,37.283],[-74.747,69.213],[-37.188,111.334],[-0.071,74.525],[27.433,18.668]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[14.564,-18.426],[9.75,-8.627],[0,0],[-12.015,21.188],[0,0]],"o":[[0,0],[-16.802,21.258],[18.006,19.735],[0,0],[16.258,-28.671],[0,0]],"v":[[-28.706,-3.547],[-46.978,44.062],[-78.136,76.356],[-34.508,116.11],[-2.262,74.055],[23.435,17.344]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[14.701,-18.317],[9.814,-8.555],[0,0],[-12.172,21.098],[0,0]],"o":[[0,0],[-16.96,21.132],[17.858,19.869],[0,0],[16.471,-28.549],[0,0]],"v":[[-13.276,0.416],[-35.404,46.734],[-68.158,79.482],[-29.572,120.664],[6.627,82.951],[32.745,26.432]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[12.497,19.185],[-26.669,45.535],[-76.675,61.268],[-45.106,106.523],[-3.518,94.871],[45.926,62.604]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[6.494,27.55],[-33.748,43.315],[-82.079,45.216],[-62.718,98.298],[-21.451,96.407],[31.873,80.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":184,"s":[{"i":[[0,0],[23.162,-3.892],[13.018,0.144],[0,0],[-21.546,3.469],[0,0]],"o":[[0,0],[-26.721,4.491],[18.481,44.766],[0,0],[28.594,-4.604],[0,0]],"v":[[6.647,23.308],[-38.049,41.923],[-88.536,43.808],[-69.425,95.57],[-25.791,97.406],[28.18,83.961]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[22.967,-4.914],[13.012,-0.432],[0,0],[-21.371,4.419],[0,0]],"o":[[0,0],[-26.496,5.669],[20.444,43.904],[0,0],[28.363,-5.865],[0,0]],"v":[[10.847,23.424],[-29.395,39.19],[-79.749,43.307],[-61.331,96.857],[-17.099,92.282],[31.873,80.588]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[21.427,-9.618],[12.632,-3.15],[0,0],[-19.97,8.8],[0,0]],"o":[[0,0],[-24.72,11.096],[29.192,38.644],[0,0],[26.504,-11.679],[0,0]],"v":[[13.35,13.885],[-22.694,37.735],[-72.7,53.468],[-41.131,98.722],[0.457,87.071],[49.281,60.426]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[14.564,-18.426],[9.75,-8.627],[0,0],[-12.015,21.188],[0,0]],"o":[[0,0],[-16.802,21.258],[18.006,19.735],[0,0],[16.258,-28.671],[0,0]],"v":[[-24.994,-5.037],[-43.266,42.572],[-74.424,74.866],[-30.796,114.62],[1.45,72.565],[27.147,15.854]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[15.148,-17.949],[10.022,-8.31],[0,0],[-12.689,20.791],[0,0]],"o":[[0,0],[-17.476,20.707],[17.363,20.303],[0,0],[17.17,-28.134],[0,0]],"v":[[-25.773,-6.392],[-45.564,40.606],[-77.742,71.882],[-37.608,116.647],[-4.027,75.65],[23.477,19.792]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[2.856,-10.938],[3.277,-4.007],[0,0],[4.25,17.452],[0,0]],"o":[[0,0],[-4.96,19.385],[46.058,14.973],[0,0],[-3.9,-16.013],[0,0]],"v":[[-26.839,-25.404],[-30.45,14.996],[-48.301,49.767],[28.267,48.859],[22.256,8.893],[13.702,-22.488]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[11.35,13.922],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-10.414,-12.774],[0,0]],"v":[[-36.716,-33.314],[-29.887,6.668],[-38.264,44.845],[39.942,17.707],[17.311,-15.778],[-3.92,-40.42]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[1.392,-11.219],[2.722,-4.403],[0,0],[3.936,7.389],[0,0]],"o":[[0,0],[-2.367,19.869],[47.628,8.783],[0,0],[-3.9,-7.323],[0,0]],"v":[[-30.335,-30.602],[-32.016,10.284],[-43.559,46.994],[37.443,29.928],[17.089,-4.731],[-0.015,-36.367]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-0.519,-11.293],[1.941,-4.799],[0,0],[5.125,6.62],[0,0]],"o":[[0,0],[1.016,19.984],[48.427,0.629],[0,0],[-5.079,-6.561],[0,0]],"v":[[-41.184,-34.781],[-31.423,5.877],[-36.613,44.007],[40.354,13.532],[14.45,-17.2],[-5.967,-42.656]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-0.033,-11.305],[2.145,-4.711],[0,0],[4.812,6.851],[0,0]],"o":[[0,0],[0.156,20.009],[48.355,2.711],[0,0],[-4.792,-6.773],[0,0]],"v":[[-39.442,-34.067],[-31.439,6.973],[-38.264,44.845],[39.942,17.707],[15.384,-14.11],[-3.92,-40.42]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[168.935,181.898],"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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[0,0],[-13.403,16.975],[0,0],[0,0],[37.161,-6.996]],"o":[[0,0],[11.424,-14.469],[0,0],[8.674,0.482],[9.445,25.769]],"v":[[-8.983,51.99],[29.722,23.582],[53.476,-18.612],[20.929,-53.805],[-47.173,8.897]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[0,0],[-24.306,21.866],[0,0],[0,0],[23.225,-15.877]],"o":[[0,0],[17.404,-15.658],[0,0],[-19.602,17.341],[13.158,24.086]],"v":[[14.441,47.991],[61.775,23.419],[90.349,-8.279],[49.76,-47.661],[-19.361,8.691]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-0.971,41.435],[49.74,28.573],[85.64,3.66],[54.938,-43.835],[-25.077,-4.455]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-4.304,51.267],[44.994,33.753],[82.868,3.318],[50.554,-42.501],[-34.342,8.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[-24.402,24.264],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[16.601,-16.507],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-10.142,57.177],[29.473,32.129],[63.161,-6.879],[29.963,-50.271],[-43.816,12.045]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[0,0],[-22.92,21.699],[0,0],[0,0],[26.461,-19.948]],"o":[[0,0],[17.001,-16.095],[0,0],[-15.165,15.713],[8.254,26.175]],"v":[[-15.682,59.089],[23.108,32.782],[55.527,-7.287],[20.954,-49.591],[-49.836,14.75]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[0,0],[-24.402,24.264],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[16.601,-16.507],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-8.211,61.178],[31.404,36.13],[65.092,-2.878],[31.894,-46.27],[-41.885,16.046]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-4.304,51.267],[44.994,33.753],[82.868,3.318],[50.554,-42.501],[-34.342,8.732]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-1.914,41.904],[48.797,29.042],[82.675,6.345],[53.995,-43.366],[-26.02,-3.986]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":184,"s":[{"i":[[0,0],[-30.211,12.497],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.633,-8.948],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-3.95,39.12],[46.733,26.076],[85.066,3.138],[54.364,-44.357],[-25.652,-4.977]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[0,0],[-29.629,13.822],[0,0],[0,0],[26.199,-10.252]],"o":[[0,0],[21.216,-9.897],[0,0],[-22.997,12.493],[7.41,26.426]],"v":[[-0.971,41.435],[51.127,27.132],[87.027,2.219],[54.938,-43.835],[-25.077,-4.455]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[0,0],[-28.218,16.512],[0,0],[0,0],[25.134,-12.64]],"o":[[0,0],[20.206,-11.824],[0,0],[-21.738,14.574],[9.831,25.624]],"v":[[-0.948,49.089],[48.349,31.576],[86.223,1.14],[53.909,-44.679],[-30.987,6.554]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[0,0],[-22.92,21.699],[0,0],[0,0],[26.461,-19.948]],"o":[[0,0],[17.001,-16.095],[0,0],[-15.165,15.713],[8.254,26.175]],"v":[[-11.97,57.598],[26.82,31.292],[59.239,-8.778],[24.666,-51.082],[-46.124,13.259]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[0,0],[-23.605,20.952],[0,0],[0,0],[27.087,-19.088]],"o":[[0,0],[17.509,-15.541],[0,0],[-15.661,15.218],[7.41,26.426]],"v":[[-16.055,57.159],[23.56,32.111],[57.248,-6.897],[24.05,-50.289],[-48.769,11.747]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[36.376,-10.33]],"o":[[0,0],[10.068,-15.443],[0,0],[8.682,-0.305],[11.738,24.809]],"v":[[-7.19,53.858],[28.785,22.065],[48.624,-22.106],[13.025,-54.209],[-49.124,14.399]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[35.327,-24.204]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[0,0],[-10.406,19.1],[0,0],[0,0],[28.985,-7.921]],"o":[[0,0],[8.819,-16.189],[0,0],[0,0],[11.738,24.809]],"v":[[0.36,55.657],[29.837,24.613],[45.306,-13.278],[22.361,-41.473],[-51.764,12.975]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[0,0],[-18.197,21.991],[0,0],[0,0],[46.432,-11.527]],"o":[[0,0],[11.752,-14.203],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[35.382,30.007],[58.57,-14.339],[18.564,-45.092],[-49.124,14.398]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[46.259,-22.421],[8.618,-52.858],[-49.124,14.398]],"c":true}]},{"t":304,"s":[{"i":[[0,0],[-11.8,18.126],[0,0],[0,0],[7.262,-9.309]],"o":[[0,0],[10.068,-15.443],[0,0],[0,0],[11.738,24.809]],"v":[[-7.19,53.858],[25.436,22.241],[48.624,-22.106],[8.618,-52.858],[-49.124,14.398]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.195999998205,0.19199999641,0.187999994615,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[71.912,155.247],"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":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":38,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.515,-111.564],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":48,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-121.59,-115.301],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.3,"y":1},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[19.843,61.355],[13.127,5.782],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-18.943,-45.669],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-77.349,-62.212],[-119.678,-105.97],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.7,"y":0},"t":58,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-5.29,55.927],[6.864,-22.812],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[6.282,-66.417],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-50.271,-63.532],[-109.559,-56.594],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-104.041,-36.731],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[{"i":[[-22.165,5.58],[0.416,17.447],[25.148,-1.558],[10.584,-0.135],[19.446,6.491],[-12.223,42.818],[6.864,-22.812],[-29.856,-40.5],[-37.96,-16.682],[-19.429,-1.562]],"o":[[15.841,-4.026],[-0.533,-22.345],[-8.31,0.515],[-10.584,0.135],[-33.284,-11.11],[13.179,-46.167],[0,0],[29.856,40.5],[37.96,16.682],[19.429,1.562]],"v":[[165.38,145.493],[198.128,111.252],[150.879,76.549],[111.691,79.622],[43.754,62.912],[-37.184,-44.513],[-104.041,-36.731],[-83.089,50.815],[14.036,126.642],[107.271,147.628]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":74,"s":[{"i":[[-15.932,-16.389],[-14.892,9.099],[13.945,20.985],[16.828,26.37],[45.324,52.008],[46.774,44.344],[-15.67,-20.116],[-33.983,-31.099],[-21.082,-24.092],[-16.842,-22.765]],"o":[[11.419,11.693],[19.073,-11.654],[-4.608,-6.935],[-16.091,-25.214],[-33.574,-38.525],[-34.842,-33.032],[15.67,20.115],[18.35,16.792],[39.316,44.93],[14.238,19.246]],"v":[[103.798,236.136],[149.837,247.328],[156.206,189.051],[125.703,144.082],[52.409,53.952],[-58.227,-55.503],[-149.152,-49.392],[-85.908,19.052],[1.757,103.938],[66.697,184.708]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[36.915,73.92],[-57.892,-58.536],[-153.6,-45.366],[-87.893,15.116],[-24.386,105.951],[-6.036,196.147]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":106,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[17.733,22.135],[-9.17,-27.638],[-23.936,-32.233],[-33.238,-57.057],[-7.025,-20.64]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-39.566,-49.389],[4.074,12.28],[14.829,19.97],[25.968,44.577],[7.713,22.664]],"v":[[34.271,263.336],[70.071,294.372],[102.425,245.484],[87.466,185.924],[36.623,72.718],[-58.893,-56.445],[-142.64,-66.009],[-101.36,-1.141],[-20.918,110.094],[15.787,194.772]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[19.481,18.579],[15.397,61.201],[-5.233,-24.956],[-16.045,-28.356],[-42.815,-43.104],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-28.921,-27.581],[-11.713,-46.56],[9.905,47.235],[12.25,21.648],[35.991,36.234],[22.205,8.948]],"v":[[140.919,200.993],[183.303,179.816],[150.541,131.2],[87.078,119.734],[15.593,70.742],[-61.945,-54.596],[-141.599,-76.712],[-100.759,30.304],[-28.518,124.48],[70.983,189.46]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":134,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.761,59.555],[-7.323,-24.425],[-22.344,-29.719],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[7.564,25.229],[14.948,19.882],[36.917,35.29],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[77.254,115.139],[16.939,74.565],[-61.941,-54.547],[-137.805,-52.014],[-92.696,51.567],[-24.658,133.556],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[{"i":[[-22.748,-2.229],[-5.498,16.564],[24.198,7.022],[25.955,9.302],[17.919,20.09],[25.684,61.599],[-13.426,-26.654],[-16.045,-28.356],[-35.655,-37.398],[-35.117,-14.152]],"o":[[16.27,1.557],[7.041,-21.213],[-7.996,-2.321],[-24.97,-8.949],[-31.769,-35.62],[-18.477,-44.314],[18.153,36.041],[12.25,21.648],[35.241,36.963],[22.205,8.948]],"v":[[140.034,210.011],[182.418,188.834],[149.656,140.219],[89.142,128.205],[21.619,77.329],[-58.996,-55.143],[-136.512,-43.325],[-96.243,31.791],[-21.676,133.452],[70.979,198.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[6.649,26.758],[33.898,60.084],[42.234,48.688],[-10.674,-19.43],[-25.095,-31.339],[-17.807,-30.356],[-3.49,-15.983]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-5.992,-24.112],[-25.11,-44.508],[-33.055,-38.105],[12.277,22.349],[26.792,33.457],[30.208,51.496],[5.107,23.389]],"v":[[29.268,257.093],[65.068,288.129],[97.422,239.241],[86.058,182.568],[39.744,70.217],[-59.518,-57.226],[-143.427,-48.398],[-79.715,27.819],[-20.733,109.579],[18.999,198.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":170,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-2.132,27.489],[23.759,51.897],[45.363,45.786],[-19.131,-19.517],[-22.449,-29.756],[-11.618,-29.831],[-0.475,-19.486]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[2.887,-37.226],[-21.272,-46.464],[-33.791,-34.106],[17.85,18.209],[14.981,19.857],[22.357,57.406],[0.584,23.933]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.079,207.113],[35.234,73.714],[-56.812,-60.283],[-146.936,-47.37],[-74.194,26.243],[-26.003,107.158],[-6.036,196.147]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":184,"s":[{"i":[[6.765,-21.833],[-15.117,-8.721],[-11.751,22.288],[-4.325,37.608],[17.348,44.594],[45.363,45.786],[-25.998,-22.754],[-32.993,-32.147],[-11.392,-29.918],[3.826,-28.099]],"o":[[-4.802,15.623],[19.36,11.169],[3.883,-7.365],[3.417,-29.715],[-18.528,-47.625],[-33.791,-34.106],[19.188,16.794],[17.815,17.359],[16.506,43.349],[-4.09,30.035]],"v":[[-30.617,243.925],[-18.409,289.706],[35.808,267.406],[56.403,189.419],[37.415,68.425],[-56.075,-62.265],[-145.334,-42.803],[-81.47,13.574],[-28.889,89.456],[-11.33,189.49]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":200,"s":[{"i":[[4.466,-22.416],[-15.939,-7.108],[-9.379,23.386],[-3.42,27.359],[28.174,62.971],[45.363,45.786],[-21.573,-18.204],[-32.993,-32.147],[-13.134,-29.196],[2.511,-22.068]],"o":[[-3.157,16.037],[20.413,9.103],[3.099,-7.728],[3.711,-29.68],[-20.87,-46.646],[-33.791,-34.106],[19.488,16.444],[17.815,17.359],[24.493,54.447],[-2.707,23.787]],"v":[[-19.579,252.288],[-2.694,296.557],[48.921,268.759],[63.882,209.2],[38.302,72.479],[-56.505,-59.977],[-150.826,-48.248],[-85.813,12.954],[-22.999,104.51],[-3.902,196.814]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":214,"s":[{"i":[[-6.656,-21.866],[-17.406,1.268],[2.785,25.042],[9.913,25.728],[33.898,60.084],[24.491,44.034],[-11.664,-18.853],[-23.936,-32.233],[-15.787,-27.851],[-9.627,-16.949]],"o":[[4.795,15.625],[22.292,-1.624],[-0.92,-8.275],[-10.754,-27.911],[-25.11,-44.508],[-30.759,-55.304],[17.109,27.654],[14.829,19.97],[29.441,51.939],[11.824,20.817]],"v":[[37.627,261.158],[73.427,292.194],[105.78,243.306],[90.821,183.746],[39.978,70.54],[-55.538,-58.623],[-140.978,-53.169],[-91.063,17.582],[-19.718,109.278],[25.484,203.55]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":226,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[25.014,11.597],[18.068,19.956],[15.76,59.555],[-9.449,-28.571],[-21.38,-33.404],[-33.943,-32.447],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.462,-11.805],[-32.034,-35.382],[-12.283,-46.414],[8.27,25.006],[13.409,20.95],[36.917,35.29],[21.94,9.579]],"v":[[141.48,202.946],[182.188,176.349],[143.986,132.537],[80.966,113.649],[20.651,73.075],[-58.229,-56.037],[-137.25,-53.314],[-88.984,50.077],[-20.946,132.066],[63.69,188.793]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":242,"s":[{"i":[[-22.857,0.085],[-3.792,17.035],[24.785,4.536],[24.629,12.394],[17.418,20.526],[15.761,59.555],[-7.546,-24.357],[-21.378,-30.421],[-32.884,-33.52],[-30.364,-13.257]],"o":[[16.344,-0.098],[4.857,-21.817],[-8.19,-1.499],[-25.07,-12.616],[-30.881,-36.392],[-12.283,-46.414],[16.69,53.877],[14.302,20.351],[35.765,36.456],[21.94,9.579]],"v":[[137.768,204.436],[178.476,177.839],[140.274,134.027],[76.28,117.797],[19.492,71.677],[-61.941,-54.547],[-137.805,-52.014],[-91.542,48.802],[-23.977,129.302],[59.978,190.283]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":248,"s":[{"i":[[-15.099,17.16],[10.231,14.139],[19.836,-15.537],[8.643,-6.11],[20.499,-0.257],[-19.959,52.511],[6.864,-22.812],[-33.399,-37.633],[-60.221,-2.345],[-16.893,9.725]],"o":[[10.769,-12.295],[-13.103,-18.107],[-6.555,5.134],[-8.643,6.11],[-35.087,0.441],[17.058,-44.879],[0,0],[33.399,37.633],[59.657,2.323],[16.893,-9.725]],"v":[[175.722,63.64],[183.295,16.869],[124.699,15.057],[94.155,39.8],[34.023,47.48],[-37.184,-44.513],[-116.565,-62.885],[-84.891,55.011],[29.767,115.261],[129.057,98.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":252,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.513],[19.753,-5.485],[-25.818,73.595],[12.244,-72.578],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[15.894,-45.304],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-42.17,-65.519],[-113.913,-54.41],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":256,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[13.63,-11.582],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-133.656,-41.307],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":262,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[3.089,45.088],[0,0],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-3.282,-47.899],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-48.641,-49.225],[-111.022,-57.404],[-80.153,60.974],[39.813,100.256],[114.374,13.081]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":268,"s":[{"i":[[-2.472,22.723],[16.504,5.674],[7.28,-24.122],[2.549,-10.273],[20.287,-2.952],[16.672,53.332],[14.311,11.185],[-33.399,-37.633],[-60.006,5.599],[-8.218,17.674]],"o":[[1.731,-16.253],[-21.137,-7.267],[-2.406,7.971],[-2.549,10.273],[-34.724,5.053],[-14.325,-45.825],[0,0],[33.399,37.633],[59.444,-5.546],[8.218,-17.674]],"v":[[141.923,-12.407],[121.199,-55.015],[72.237,-22.774],[58.519,17.153],[29.434,40.629],[-57.266,-41.397],[-100.746,-103.882],[-84.891,55.011],[34.133,108.381],[123.726,42.821]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":282,"s":[{"i":[[8.007,21.408],[20.632,-6.841],[-4.341,-24.82],[-0.127,-10.584],[19.499,-6.33],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.204,15.633],[-1.578,19.428]],"o":[[-5.761,-15.296],[-21.215,7.034],[1.435,8.202],[0.127,10.584],[-33.375,10.834],[-23.709,-41.749],[0,0],[33.399,37.633],[57.659,-15.487],[1.578,-19.428]],"v":[[106.89,-48.281],[66.326,-76.246],[39.983,-26.212],[46.372,8.607],[23.761,34.266],[-62.701,-35.788],[-130.687,-116.463],[-84.891,55.011],[39.813,100.256],[114.374,13.081]],"c":true}]},{"t":304,"s":[{"i":[[2.667,22.701],[17.354,1.847],[1.707,-25.138],[1.234,-10.512],[19.753,-5.485],[23.709,41.749],[14.311,11.185],[-33.399,-37.633],[-58.835,13.06],[-4.061,19.064]],"o":[[-1.944,-16.228],[-22.226,-2.361],[-0.564,8.307],[-1.234,10.512],[-33.81,9.389],[-23.709,-41.749],[0,0],[33.399,37.633],[58.271,-12.993],[4.061,-19.064]],"v":[[123.521,-35.918],[93.802,-72.818],[53.281,-30.452],[51.262,8.804],[25.366,35.758],[-62.701,-35.788],[-124.005,-114.654],[-84.891,55.011],[38.567,102.377],[118.125,21.98]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.416000007181,0.122000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[122.138,115.62],"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":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":306,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"body shape","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[512,512,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[14,210],[-96,210],[-174,240],[-182,338],[-86,354],[32,270]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.588235294118,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"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":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":77,"op":100,"st":0,"bm":0}],"markers":[{"tm":48,"cm":"rest","dr":0}]} \ No newline at end of file diff --git a/examples/assets/roboto/LICENSE.txt b/examples/assets/roboto/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/examples/assets/roboto/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/examples/assets/roboto/Roboto-Regular.ttf b/examples/assets/roboto/Roboto-Regular.ttf new file mode 100644 index 0000000..3d6861b Binary files /dev/null and b/examples/assets/roboto/Roboto-Regular.ttf differ diff --git a/examples/run_wasm/Cargo.toml b/examples/run_wasm/Cargo.toml new file mode 100644 index 0000000..76068dd --- /dev/null +++ b/examples/run_wasm/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "run_wasm" +edition.workspace = true +license.workspace = true +repository.workspace = true +publish = false + +[dependencies] +cargo-run-wasm = "0.3.2" diff --git a/examples/run_wasm/src/main.rs b/examples/run_wasm/src/main.rs new file mode 100644 index 0000000..c3b2c99 --- /dev/null +++ b/examples/run_wasm/src/main.rs @@ -0,0 +1,17 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +/// Use [cargo-run-wasm](https://github.com/rukai/cargo-run-wasm) to build an example for web +/// +/// Usage: +/// ``` +/// cargo run_wasm --package [example_name] +/// ``` +/// Generally: +/// ``` +/// cargo run_wasm -p with_winit +/// ``` + +fn main() { + cargo_run_wasm::run_wasm_with_css("body { margin: 0px; }"); +} diff --git a/examples/scenes/Cargo.toml b/examples/scenes/Cargo.toml new file mode 100644 index 0000000..e64d6fe --- /dev/null +++ b/examples/scenes/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "scenes" +description = "Velato scenes used in the other examples." +edition.workspace = true +license.workspace = true +repository.workspace = true +publish = false + +[dependencies] +vello = { workspace = true } +velato = { path = "../.." } +anyhow = "1" +clap = { version = "4.5.1", features = ["derive"] } +image = "0.24.9" +rand = "0.8.5" +instant = "0.1" + +# Used for the `download` command +[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +byte-unit = "4.0.19" +inquire = "0.7" +ureq = "2.9.6" diff --git a/examples/scenes/src/download.rs b/examples/scenes/src/download.rs new file mode 100644 index 0000000..ed933b3 --- /dev/null +++ b/examples/scenes/src/download.rs @@ -0,0 +1,215 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use std::io::Seek; +use std::path::{Path, PathBuf}; + +use anyhow::{bail, Context, Result}; +use byte_unit::Byte; +use clap::Args; +use inquire::Confirm; +use std::io::Read; +mod default_downloads; + +#[derive(Args, Debug)] +pub(crate) struct Download { + #[clap(long)] + /// Directory to download the files into + #[clap(default_value_os_t = default_directory())] + pub directory: PathBuf, + /// Set of files to download. Use `name@url` format to specify a file prefix + downloads: Option>, + /// Whether to automatically install the default set of files + #[clap(long)] + auto: bool, + /// The size limit for each individual file (ignored if the default files are downloaded) + #[clap(long, default_value = "10 MB")] + size_limit: Byte, +} + +fn default_directory() -> PathBuf { + let mut result = Path::new(env!("CARGO_MANIFEST_DIR")) + .parent() + .unwrap() + .join("assets"); + result.push("downloads"); + result +} + +impl Download { + pub fn action(&self) -> Result<()> { + let mut to_download = vec![]; + if let Some(downloads) = &self.downloads { + to_download = downloads + .iter() + .map(|it| Self::parse_download(it)) + .collect(); + } else { + let mut accepted = self.auto; + let downloads = default_downloads::default_downloads() + .into_iter() + .filter(|it| { + let file = it.file_path(&self.directory); + !file.exists() + }) + .collect::>(); + if !accepted { + if !downloads.is_empty() { + println!( + "Would you like to download a set of default lottie files? These files are:" + ); + for download in &downloads { + let builtin = download.builtin.as_ref().unwrap(); + println!( + "{} ({}) under license {} from {}", + download.name, + byte_unit::Byte::from_bytes(builtin.expected_size.into()) + .get_appropriate_unit(false), + builtin.license, + builtin.info + ); + } + + // For rustfmt, split prompt into its own line + const PROMPT: &str = + "Would you like to download a set of default lottie files, as explained above?"; + accepted = Confirm::new(PROMPT).with_default(false).prompt()?; + } else { + println!("Nothing to download! All default downloads already created"); + } + } + if accepted { + to_download = downloads; + } + } + let mut completed_count = 0; + let mut failed_count = 0; + for (index, download) in to_download.iter().enumerate() { + println!( + "{index}: Downloading {} from {}", + download.name, download.url + ); + match download.fetch(&self.directory, self.size_limit) { + Ok(()) => completed_count += 1, + Err(e) => { + failed_count += 1; + eprintln!("Download failed with error: {e}"); + let cont = if self.auto { + false + } else { + Confirm::new("Would you like to try other downloads?") + .with_default(false) + .prompt()? + }; + if !cont { + println!("{} downloads complete", completed_count); + if failed_count > 0 { + println!("{} downloads failed", failed_count); + } + let remaining = to_download.len() - (completed_count + failed_count); + if remaining > 0 { + println!("{} downloads skipped", remaining); + } + return Err(e); + } + } + } + } + println!("{} downloads complete", completed_count); + if failed_count > 0 { + println!("{} downloads failed", failed_count); + } + debug_assert!(completed_count + failed_count == to_download.len()); + Ok(()) + } + + fn parse_download(value: &str) -> LottieDownload { + if let Some(at_index) = value.find('@') { + let name = &value[0..at_index]; + let url = &value[at_index + 1..]; + LottieDownload { + name: name.to_string(), + url: url.to_string(), + builtin: None, + } + } else { + let end_index = value.rfind(".json").unwrap_or(value.len()); + let url_with_name = &value[0..end_index]; + let name = url_with_name + .rfind('/') + .map(|v| &url_with_name[v + 1..]) + .unwrap_or(url_with_name); + LottieDownload { + name: name.to_string(), + url: value.to_string(), + builtin: None, + } + } + } +} + +struct LottieDownload { + name: String, + url: String, + builtin: Option, +} + +impl LottieDownload { + fn file_path(&self, directory: &Path) -> PathBuf { + directory.join(&self.name).with_extension("json") + } + + fn fetch(&self, directory: &Path, size_limit: Byte) -> Result<()> { + let mut size_limit = size_limit.get_bytes().try_into()?; + let mut limit_exact = false; + if let Some(builtin) = &self.builtin { + size_limit = builtin.expected_size; + limit_exact = true; + } + // If we're expecting an exact version of the file, it's worth not fetching + // the file if we know it will fail + if limit_exact { + let head_response = ureq::head(&self.url).call()?; + let content_length = head_response.header("content-length"); + if let Some(Ok(content_length)) = content_length.map(|it| it.parse::()) { + if content_length != size_limit { + bail!( + "Size is not as expected for download. Expected {}, server reported {}", + Byte::from_bytes(size_limit.into()).get_appropriate_unit(true), + Byte::from_bytes(content_length.into()).get_appropriate_unit(true) + ) + } + } + } + let mut file = std::fs::OpenOptions::new() + .create_new(true) + .write(true) + .open(self.file_path(directory)) + .context("Creating file")?; + let mut reader = ureq::get(&self.url).call()?.into_reader(); + + std::io::copy( + // ureq::into_string() has a limit of 10MiB so we must use the reader + &mut (&mut reader).take(size_limit), + &mut file, + )?; + if reader.read_exact(&mut [0]).is_ok() { + bail!("Size limit exceeded"); + } + if limit_exact { + let bytes_downloaded = file.stream_position().context("Checking file limit")?; + if bytes_downloaded != size_limit { + bail!( + "Builtin downloaded file was not as expected. Expected {size_limit}, received {bytes_downloaded}.", + ); + } + } + Ok(()) + } +} + +struct BuiltinLottieProps { + expected_size: u64, + license: &'static str, + info: &'static str, +} diff --git a/examples/scenes/src/download/default_downloads.rs b/examples/scenes/src/download/default_downloads.rs new file mode 100644 index 0000000..7f8f868 --- /dev/null +++ b/examples/scenes/src/download/default_downloads.rs @@ -0,0 +1,373 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use crate::download::BuiltinLottieProps; + +// This content cannot be formatted by rustfmt because of the long strings, so it's in its own file +use super::LottieDownload; + +macro_rules! google_noto_asset { + ($name: expr, $id: expr, $size: expr) => { + LottieDownload { + name: $name.to_string(), + url: format!( + "https://fonts.gstatic.com/s/e/notoemoji/latest/{}/lottie.json", + $id + ), + builtin: Some(BuiltinLottieProps { + expected_size: $size, + info: "https://googlefonts.github.io/noto-emoji-animation/", + license: "CC BY 4.0", + }), + } + }; +} + +pub(super) fn default_downloads() -> Vec { + vec![ + google_noto_asset!("Smile", "1f600", 37328), + google_noto_asset!("Smile-with-big-eyes", "1f603", 48097), + google_noto_asset!("Grin", "1f604", 48154), + google_noto_asset!("Grinning", "1f601", 70876), + google_noto_asset!("Laughing", "1f606", 59130), + google_noto_asset!("Grin-sweat", "1f605", 67751), + google_noto_asset!("Joy", "1f602", 59124), + google_noto_asset!("Rofl", "1f923", 78237), + google_noto_asset!("Loudly-crying", "1f62d", 109511), + google_noto_asset!("Wink", "1f609", 27737), + google_noto_asset!("Kissing", "1f617", 29240), + google_noto_asset!("Kissing-smiling-eyes", "1f619", 13200), + google_noto_asset!("Kissing-closed-eyes", "1f61a", 20588), + google_noto_asset!("Kissing-heart", "1f618", 64904), + google_noto_asset!("Heart-face", "1f970", 58353), + google_noto_asset!("Heart-eyes", "1f60d", 42336), + google_noto_asset!("Star-struck", "1f929", 46757), + google_noto_asset!("Partying-face", "1f973", 67877), + google_noto_asset!("Melting", "1fae0", 155514), + google_noto_asset!("Upside-down-face", "1f643", 12177), + google_noto_asset!("Slightly-happy", "1f642", 24463), + google_noto_asset!("Happy-cry", "1f972", 30188), + google_noto_asset!("Holding-back-tears", "1f979", 75974), + google_noto_asset!("Blush", "1f60a", 30013), + google_noto_asset!("Warm-smile", "263a_fe0f", 25877), + google_noto_asset!("Relieved", "1f60c", 21131), + google_noto_asset!("Smirk", "1f60f", 31466), + google_noto_asset!("Sleep", "1f634", 24420), + google_noto_asset!("Sleepy", "1f62a", 33013), + google_noto_asset!("Drool", "1f924", 39367), + google_noto_asset!("Yum", "1f60b", 38167), + google_noto_asset!("Stuck-out-tongue", "1f61b", 40520), + google_noto_asset!("Squinting-tongue", "1f61d", 51166), + google_noto_asset!("Winky-tongue", "1f61c", 74487), + google_noto_asset!("Zany-face", "1f92a", 69242), + google_noto_asset!("Woozy", "1f974", 32633), + google_noto_asset!("Pensive", "1f614", 18003), + google_noto_asset!("Pleading", "1f97a", 45677), + google_noto_asset!("Grimacing", "1f62c", 60270), + google_noto_asset!("Expressionless", "1f611", 15581), + google_noto_asset!("Neutral-face", "1f610", 22574), + google_noto_asset!("Mouth-none", "1f636", 21638), + google_noto_asset!("Face-in-clouds", "1f636_200d_1f32b_fe0f", 135831), + google_noto_asset!("Dotted-line-face", "1fae5", 15473), + google_noto_asset!("Zipper-face", "1f910", 79614), + google_noto_asset!("Salute", "1fae1", 50214), + google_noto_asset!("Thinking-face", "1f914", 68027), + google_noto_asset!("Shushing-face", "1f92b", 60687), + google_noto_asset!("Hand-over-mouth", "1fae2", 30548), + google_noto_asset!("Smiling-eyes-with-hand-over-mouth", "1f92d", 58552), + google_noto_asset!("Yawn", "1f971", 40591), + google_noto_asset!("Hug-face", "1f917", 80181), + google_noto_asset!("Peeking", "1fae3", 117202), + google_noto_asset!("Screaming", "1f631", 90226), + google_noto_asset!("Raised-eyebrow", "1f928", 31912), + google_noto_asset!("Monocle", "1f9d0", 67304), + google_noto_asset!("Unamused", "1f612", 30060), + google_noto_asset!("Rolling-eyes", "1f644", 29512), + google_noto_asset!("Exhale", "1f62e_200d_1f4a8", 57245), + google_noto_asset!("Triumph", "1f624", 128406), + google_noto_asset!("Angry", "1f620", 33672), + google_noto_asset!("Rage", "1f621", 46289), + google_noto_asset!("Cursing", "1f92c", 235182), + google_noto_asset!("Sad", "1f61e", 30944), + google_noto_asset!("Sweat", "1f613", 35718), + google_noto_asset!("Worried", "1f61f", 19906), + google_noto_asset!("Concerned", "1f625", 39143), + google_noto_asset!("Cry", "1f622", 47018), + google_noto_asset!("Big-frown", "2639_fe0f", 17600), + google_noto_asset!("Frown", "1f641", 15949), + google_noto_asset!("Diagonal-mouth", "1fae4", 27493), + google_noto_asset!("Slightly-frowning", "1f615", 25699), + google_noto_asset!("Anxious-with-sweat", "1f630", 31920), + google_noto_asset!("Scared", "1f628", 23708), + google_noto_asset!("Anguished", "1f627", 22195), + google_noto_asset!("Gasp", "1f626", 15110), + google_noto_asset!("Mouth-open", "1f62e", 18749), + google_noto_asset!("Surprised", "1f62f", 27156), + google_noto_asset!("Astonished", "1f632", 21560), + google_noto_asset!("Flushed", "1f633", 39206), + google_noto_asset!("Mind-blown", "1f92f", 143616), + google_noto_asset!("Scrunched-mouth", "1f616", 25776), + google_noto_asset!("Scrunched-eyes", "1f623", 35178), + google_noto_asset!("Weary", "1f629", 43145), + google_noto_asset!("Distraught", "1f62b", 41299), + google_noto_asset!("X-eyes", "1f635", 27858), + google_noto_asset!("Dizzy-face", "1f635_200d_1f4ab", 37987), + google_noto_asset!("Shaking-face", "1fae8", 62846), + google_noto_asset!("Cold-face", "1f976", 105845), + google_noto_asset!("Hot-face", "1f975", 66152), + google_noto_asset!("Sick", "1f922", 38007), + google_noto_asset!("Vomit", "1f92e", 113083), + google_noto_asset!("Sneeze", "1f927", 62632), + google_noto_asset!("Thermometer-face", "1f912", 35011), + google_noto_asset!("Bandage-face", "1f915", 24897), + google_noto_asset!("Mask", "1f637", 26028), + google_noto_asset!("Liar", "1f925", 110222), + google_noto_asset!("Halo", "1f607", 47770), + google_noto_asset!("Cowboy", "1f920", 68918), + google_noto_asset!("Money-face", "1f911", 62491), + google_noto_asset!("Nerd-face", "1f913", 34888), + google_noto_asset!("Sunglasses-face", "1f60e", 25407), + google_noto_asset!("Disguise", "1f978", 49569), + google_noto_asset!("Clown", "1f921", 46553), + google_noto_asset!("Imp-smile", "1f608", 43402), + google_noto_asset!("Imp-frown", "1f47f", 39216), + google_noto_asset!("Ghost", "1f47b", 200747), + google_noto_asset!("Jack-o-lantern", "1f383", 62686), + google_noto_asset!("Poop", "1f4a9", 257521), + google_noto_asset!("Robot", "1f916", 187153), + google_noto_asset!("Alien", "1f47d", 113419), + google_noto_asset!("Moon-face-first-quarter", "1f31b", 36591), + google_noto_asset!("Moon-face-last-quarter", "1f31c", 15486), + google_noto_asset!("Sun-with-face", "1f31e", 18283), + google_noto_asset!("Fire", "1f525", 29358), + google_noto_asset!("100", "1f4af", 66142), + google_noto_asset!("Glowing-star", "1f31f", 73203), + google_noto_asset!("Sparkles", "2728", 15584), + google_noto_asset!("Collision", "1f4a5", 87831), + google_noto_asset!("Party-popper", "1f389", 67875), + google_noto_asset!("See-no-evil-monkey", "1f648", 52125), + google_noto_asset!("Hear-no-evil-monkey", "1f649", 66440), + google_noto_asset!("Speak-no-evil-monkey", "1f64a", 76392), + google_noto_asset!("Smiley-cat", "1f63a", 43360), + google_noto_asset!("Smile-cat", "1f638", 66070), + google_noto_asset!("Joy-cat", "1f639", 86244), + google_noto_asset!("Heart-eyes-cat", "1f63b", 54362), + google_noto_asset!("Smirk-cat", "1f63c", 46333), + google_noto_asset!("Kissing-cat", "1f63d", 34296), + google_noto_asset!("Scream-cat", "1f640", 90268), + google_noto_asset!("Crying-cat-face", "1f63f", 105822), + google_noto_asset!("Pouting-cat", "1f63e", 47069), + google_noto_asset!("Red-heart", "2764_fe0f", 8439), + google_noto_asset!("Orange-heart", "1f9e1", 8378), + google_noto_asset!("Yellow-heart", "1f49b", 8382), + google_noto_asset!("Green-heart", "1f49a", 8458), + google_noto_asset!("Light-blue-heart", "1fa75", 8456), + google_noto_asset!("Blue-heart", "1f499", 8458), + google_noto_asset!("Purple-heart", "1f49c", 8458), + google_noto_asset!("Brown-heart", "1f90e", 8458), + google_noto_asset!("Black-heart", "1f5a4", 8458), + google_noto_asset!("Grey-heart", "1fa76", 8470), + google_noto_asset!("White-heart", "1f90d", 8380), + google_noto_asset!("Pink-heart", "1fa77", 8431), + google_noto_asset!("Cupid", "1f498", 79374), + google_noto_asset!("Gift-heart", "1f49d", 152189), + google_noto_asset!("Sparkling-heart", "1f496", 34772), + google_noto_asset!("Heart-grow", "1f497", 12631), + google_noto_asset!("Beating-heart", "1f493", 26352), + google_noto_asset!("Revolving-hearts", "1f49e", 31191), + google_noto_asset!("Two-hearts", "1f495", 12457), + google_noto_asset!("Love-letter", "1f48c", 66873), + google_noto_asset!("Heart-exclamation-point", "2763_fe0f", 19995), + google_noto_asset!("Bandaged-heart", "2764_fe0f_200d_1fa79", 100250), + google_noto_asset!("Broken-heart", "1f494", 87260), + google_noto_asset!("Fire-heart", "2764_fe0f_200d_1f525", 64140), + google_noto_asset!("Kiss", "1f48b", 11896), + google_noto_asset!("Footprints", "1f463", 21917), + google_noto_asset!("Anatomical-heart", "1fac0", 67731), + google_noto_asset!("Blood", "1fa78", 13119), + google_noto_asset!("Microbe", "1f9a0", 65924), + google_noto_asset!("Skull", "1f480", 226657), + google_noto_asset!("Eyes", "1f440", 28242), + google_noto_asset!("Eye", "1f441_fe0f", 44364), + google_noto_asset!("Biting-lip", "1fae6", 18180), + google_noto_asset!("Leg-mechanical", "1f9bf", 42593), + google_noto_asset!("Arm-mechanical", "1f9be", 51190), + google_noto_asset!("Muscle", "1f4aa", 23340), + google_noto_asset!("Muscle-1", "1f4aa_1f3fb", 23476), + google_noto_asset!("Muscle-2", "1f4aa_1f3fc", 23516), + google_noto_asset!("Muscle-3", "1f4aa_1f3fd", 23518), + google_noto_asset!("Muscle-4", "1f4aa_1f3fe", 23521), + google_noto_asset!("Muscle-5", "1f4aa_1f3ff", 23517), + google_noto_asset!("Clap", "1f44f", 38150), + google_noto_asset!("Clap-1", "1f44f_1f3fb", 38819), + google_noto_asset!("Clap-2", "1f44f_1f3fc", 38824), + google_noto_asset!("Clap-3", "1f44f_1f3fd", 38855), + google_noto_asset!("Clap-4", "1f44f_1f3fe", 38745), + google_noto_asset!("Clap-5", "1f44f_1f3ff", 38848), + google_noto_asset!("Thumbs-up", "1f44d", 57963), + google_noto_asset!("Thumbs-up-1", "1f44d_1f3fb", 58034), + google_noto_asset!("Thumbs-up-2", "1f44d_1f3fc", 58034), + google_noto_asset!("Thumbs-up-3", "1f44d_1f3fd", 58044), + google_noto_asset!("Thumbs-up-4", "1f44d_1f3fe", 58035), + google_noto_asset!("Thumbs-up-5", "1f44d_1f3ff", 58044), + google_noto_asset!("Thumbs-down", "1f44e", 28607), + google_noto_asset!("Thumbs-down-1", "1f44e_1f3fb", 28664), + google_noto_asset!("Thumbs-down-2", "1f44e_1f3fc", 28665), + google_noto_asset!("Thumbs-down-3", "1f44e_1f3fd", 28673), + google_noto_asset!("Thumbs-down-4", "1f44e_1f3fe", 28665), + google_noto_asset!("Thumbs-down-5", "1f44e_1f3ff", 28673), + google_noto_asset!("Raising-hands", "1f64c", 81851), + google_noto_asset!("Raising-hands-1", "1f64c_1f3fb", 81925), + google_noto_asset!("Raising-hands-2", "1f64c_1f3fc", 81929), + google_noto_asset!("Raising-hands-3", "1f64c_1f3fd", 81931), + google_noto_asset!("Raising-hands-4", "1f64c_1f3fe", 81927), + google_noto_asset!("Raising-hands-5", "1f64c_1f3ff", 81925), + google_noto_asset!("Wave", "1f44b", 14645), + google_noto_asset!("Wave-1", "1f44b_1f3fb", 14734), + google_noto_asset!("Wave-2", "1f44b_1f3fc", 14739), + google_noto_asset!("Wave-3", "1f44b_1f3fd", 14739), + google_noto_asset!("Wave-4", "1f44b_1f3fe", 14740), + google_noto_asset!("Wave-5", "1f44b_1f3ff", 14733), + google_noto_asset!("Victory", "270c_fe0f", 68888), + google_noto_asset!("Victory-1", "270c_1f3fb", 69086), + google_noto_asset!("Victory-2", "270c_1f3fc", 69069), + google_noto_asset!("Victory-3", "270c_1f3fd", 69077), + google_noto_asset!("Victory-4", "270c_1f3fe", 69061), + google_noto_asset!("Victory-5", "270c_1f3ff", 69054), + google_noto_asset!("Crossed-fingers", "1f91e", 33723), + google_noto_asset!("Crossed-fingers-1", "1f91e_1f3fb", 33930), + google_noto_asset!("Crossed-fingers-2", "1f91e_1f3fc", 33916), + google_noto_asset!("Crossed-fingers-3", "1f91e_1f3fd", 33916), + google_noto_asset!("Crossed-fingers-4", "1f91e_1f3fe", 33909), + google_noto_asset!("Crossed-fingers-5", "1f91e_1f3ff", 33903), + google_noto_asset!("Index-finger", "261d_fe0f", 21113), + google_noto_asset!("Index-finger-1", "261d_1f3fb", 21277), + google_noto_asset!("Index-finger-2", "261d_1f3fc", 21267), + google_noto_asset!("Index-finger-3", "261d_1f3fd", 21271), + google_noto_asset!("Index-finger-4", "261d_1f3fe", 21262), + google_noto_asset!("Index-finger-5", "261d_1f3ff", 21256), + google_noto_asset!("Folded-hands", "1f64f", 18592), + google_noto_asset!("Folded-hands-1", "1f64f_1f3fb", 18658), + google_noto_asset!("Folded-hands-2", "1f64f_1f3fc", 18676), + google_noto_asset!("Folded-hands-3", "1f64f_1f3fd", 18682), + google_noto_asset!("Folded-hands-4", "1f64f_1f3fe", 18682), + google_noto_asset!("Folded-hands-5", "1f64f_1f3ff", 18670), + google_noto_asset!("Dancer-woman", "1f483", 364759), + google_noto_asset!("Dancer-woman-1", "1f483_1f3fb", 364030), + google_noto_asset!("Dancer-woman-2", "1f483_1f3fc", 364036), + google_noto_asset!("Dancer-woman-3", "1f483_1f3fd", 365020), + google_noto_asset!("Dancer-woman-4", "1f483_1f3fe", 364037), + google_noto_asset!("Dancer-woman-5", "1f483_1f3ff", 364035), + google_noto_asset!("Rose", "1f339", 45174), + google_noto_asset!("Wilted-flower", "1f940", 37881), + google_noto_asset!("Fallen-leaf", "1f342", 45536), + google_noto_asset!("Plant", "1f331", 53145), + google_noto_asset!("Luck", "1f340", 70266), + google_noto_asset!("Snowflake", "2744_fe0f", 138664), + google_noto_asset!("Volcano", "1f30b", 116692), + google_noto_asset!("Sunrise", "1f305", 51088), + google_noto_asset!("Sunrise-over-mountains", "1f304", 29561), + google_noto_asset!("Rainbow", "1f308", 13837), + google_noto_asset!("Wind-face", "1f32c_fe0f", 135084), + google_noto_asset!("Electricity", "26a1", 89096), + google_noto_asset!("Dizzy", "1f4ab", 80643), + google_noto_asset!("Comet", "2604_fe0f", 170252), + google_noto_asset!("Globe-showing-europe-africa", "1f30d", 188658), + google_noto_asset!("Unicorn", "1f984", 278449), + google_noto_asset!("Lizard", "1f98e", 104721), + google_noto_asset!("Dragon", "1f409", 258884), + google_noto_asset!("T-rex", "1f996", 131948), + google_noto_asset!("Turtle", "1f422", 55887), + google_noto_asset!("Snake", "1f40d", 97973), + google_noto_asset!("Frog", "1f438", 108606), + google_noto_asset!("Rabbit", "1f407", 81000), + google_noto_asset!("Rat", "1f400", 124290), + google_noto_asset!("Dog", "1f415", 98235), + google_noto_asset!("Pig", "1f416", 143547), + google_noto_asset!("Racehorse", "1f40e", 85914), + google_noto_asset!("Donkey", "1facf", 105494), + google_noto_asset!("Ox", "1f402", 76491), + google_noto_asset!("Goat", "1f410", 248917), + google_noto_asset!("Kangaroo", "1f998", 124870), + google_noto_asset!("Tiger", "1f405", 428543), + google_noto_asset!("Monkey", "1f412", 136109), + google_noto_asset!("Chipmunk", "1f43f_fe0f", 144799), + google_noto_asset!("Otter", "1f9a6", 94172), + google_noto_asset!("Bat", "1f987", 33394), + google_noto_asset!("Rooster", "1f413", 88968), + google_noto_asset!("Hatching-chick", "1f423", 53445), + google_noto_asset!("Baby-chick", "1f424", 30711), + google_noto_asset!("Hatched-chick", "1f425", 50066), + google_noto_asset!("Eagle", "1f985", 72897), + google_noto_asset!("Peace", "1f54a_fe0f", 176763), + google_noto_asset!("Goose", "1fabf", 185187), + google_noto_asset!("Peacock", "1f99a", 167783), + google_noto_asset!("Seal", "1f9ad", 357487), + google_noto_asset!("Dolphin", "1f42c", 81544), + google_noto_asset!("Whale", "1f433", 91653), + google_noto_asset!("Blowfish", "1f421", 124208), + google_noto_asset!("Crab", "1f980", 160764), + google_noto_asset!("Octopus", "1f419", 234509), + google_noto_asset!("Jellyfish", "1fabc", 97671), + google_noto_asset!("Snail", "1f40c", 49014), + google_noto_asset!("Ant", "1f41c", 100806), + google_noto_asset!("Mosquito", "1f99f", 88334), + google_noto_asset!("Bee", "1f41d", 482250), + google_noto_asset!("Butterfly", "1f98b", 249980), + google_noto_asset!("Paw Prints", "1f43e", 17179), + google_noto_asset!("Tomato", "1f345", 142308), + google_noto_asset!("Popcorn", "1f37f", 135307), + google_noto_asset!("Hot-beverage", "2615", 36778), + google_noto_asset!("Clinking-beer-mugs", "1f37b", 112052), + google_noto_asset!("Clinking-glasses", "1f942", 94364), + google_noto_asset!("Bottle-with-popping-cork", "1f37e", 37645), + google_noto_asset!("Wine-glass", "1f377", 60942), + google_noto_asset!("Tropical-drink", "1f379", 85325), + google_noto_asset!("Police-car-light", "1f6a8", 65174), + google_noto_asset!("Flying-saucer", "1f6f8", 153261), + google_noto_asset!("Rocket", "1f680", 81575), + google_noto_asset!("Airplane-departure", "1f6eb", 31939), + google_noto_asset!("Airplane-arrival", "1f6ec", 40894), + google_noto_asset!("Roller-coaster", "1f3a2", 66382), + google_noto_asset!("Confetti-ball", "1f38a", 122718), + google_noto_asset!("Balloon", "1f388", 14095), + google_noto_asset!("Birthday-cake", "1f382", 93106), + google_noto_asset!("Fireworks", "1f386", 110210), + google_noto_asset!("Mirror-ball", "1faa9", 172207), + google_noto_asset!("Soccer-ball", "26bd", 41860), + google_noto_asset!("Direct-hit", "1f3af", 45947), + google_noto_asset!("Violin", "1f3bb", 36626), + google_noto_asset!("Drum", "1f941", 37285), + google_noto_asset!("Maracas", "1fa87", 53870), + google_noto_asset!("Battery-full", "1f50b", 64179), + google_noto_asset!("Battery-low", "1faab", 145891), + google_noto_asset!("Money-with-wings", "1f4b8", 97230), + google_noto_asset!("Light-bulb", "1f4a1", 23436), + google_noto_asset!("Graduation-cap", "1f393", 229903), + google_noto_asset!("Umbrella", "2602_fe0f", 27242), + google_noto_asset!("Gem-stone", "1f48e", 62646), + google_noto_asset!("Alarm-clock", "23f0", 36409), + google_noto_asset!("Bellhop-bell", "1f6ce_fe0f", 26841), + google_noto_asset!("Bell", "1f514", 36717), + google_noto_asset!("Aries", "2648", 82667), + google_noto_asset!("Taurus", "2649", 82769), + google_noto_asset!("Gemini", "264a", 106146), + google_noto_asset!("Cancer", "264b", 89628), + google_noto_asset!("Leo", "264c", 88502), + google_noto_asset!("Virgo", "264d", 101944), + google_noto_asset!("Libra", "264e", 81824), + google_noto_asset!("Scorpio", "264f", 101492), + google_noto_asset!("Sagittarius", "2650", 94578), + google_noto_asset!("Capricorn", "2651", 101304), + google_noto_asset!("Aquarius", "2652", 111335), + google_noto_asset!("Pisces", "2653", 106574), + google_noto_asset!("Ophiuchus", "26ce", 100303), + google_noto_asset!("Exclamation-double", "203c_fe0f", 26663), + google_noto_asset!("Cross-mark", "274c", 7292), + google_noto_asset!("Musical-notes", "1f3b6", 12828), + google_noto_asset!("Check-mark", "2705", 15925), + google_noto_asset!("Cool", "1f192", 19755), + google_noto_asset!("Plus-sign", "2795", 33464), + google_noto_asset!("Chequered-flag", "1f3c1", 328109), + ] +} diff --git a/examples/scenes/src/lib.rs b/examples/scenes/src/lib.rs new file mode 100644 index 0000000..c696b3a --- /dev/null +++ b/examples/scenes/src/lib.rs @@ -0,0 +1,129 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +#[cfg(not(target_arch = "wasm32"))] +pub mod download; +mod lottie; +mod simple_text; +mod test_scenes; +use std::path::PathBuf; + +use anyhow::{anyhow, Result}; +use clap::{Args, Subcommand}; +#[cfg(not(target_arch = "wasm32"))] +use download::Download; +#[cfg(not(target_arch = "wasm32"))] +pub use lottie::{default_scene, scene_from_files}; +pub use simple_text::RobotoText; +pub use test_scenes::test_scenes; + +use vello::kurbo::Vec2; +use vello::peniko::Color; +use vello::Scene; + +pub struct SceneParams<'a> { + pub time: f64, + /// Whether blocking should be limited + /// Will not change between runs + // TODO: Just never block/handle this automatically? + pub interactive: bool, + pub text: &'a mut RobotoText, + pub resolution: Option, + pub base_color: Option, + pub complexity: usize, +} + +pub struct SceneConfig { + // TODO: This is currently unused + pub animated: bool, + pub name: String, +} + +pub struct ExampleScene { + pub function: Box, + pub config: SceneConfig, +} + +pub trait TestScene { + fn render(&mut self, scene: &mut Scene, params: &mut SceneParams); +} + +impl TestScene for F { + fn render(&mut self, scene: &mut Scene, params: &mut SceneParams) { + self(scene, params); + } +} + +pub struct SceneSet { + pub scenes: Vec, +} + +#[derive(Args, Debug)] +/// Shared config for scene selection +pub struct Arguments { + #[arg(help_heading = "Scene Selection")] + #[arg(long, global(false))] + /// Whether to use the test scenes created by code + test_scenes: bool, + #[arg(help_heading = "Scene Selection", global(false))] + /// The lottie files paths to render + lotties: Option>, + #[arg(help_heading = "Render Parameters")] + #[arg(long, global(false), value_parser = parse_color)] + /// The base color applied as the blend background to the rasterizer. + /// Format is CSS style hexadecimal (#RGB, #RGBA, #RRGGBB, #RRGGBBAA) or + /// an SVG color name such as "aliceblue" + pub base_color: Option, + #[clap(subcommand)] + command: Option, +} + +#[derive(Subcommand, Debug)] +enum Command { + /// Download Lottie files for testing. By default, downloads a set of files from wikipedia + #[cfg(not(target_arch = "wasm32"))] + Download(Download), +} + +impl Arguments { + pub fn select_scene_set( + &self, + #[allow(unused)] command: impl FnOnce() -> clap::Command, + ) -> Result> { + if let Some(command) = &self.command { + command.action()?; + Ok(None) + } else { + // There is no file access on WASM, and on Android we haven't set up the assets + // directory. + // TODO: Upload the assets directory on Android + // Therefore, only render the `test_scenes` (including one Lottie example) + #[cfg(any(target_arch = "wasm32", target_os = "android"))] + return Ok(Some(test_scenes())); + #[cfg(not(any(target_arch = "wasm32", target_os = "android")))] + if self.test_scenes { + Ok(test_scenes()) + } else if let Some(lotties) = &self.lotties { + scene_from_files(lotties) + } else { + default_scene(command) + } + .map(Some) + } + } +} + +impl Command { + fn action(&self) -> Result<()> { + match self { + #[cfg(not(target_arch = "wasm32"))] + Command::Download(download) => download.action(), + #[cfg(target_arch = "wasm32")] + _ => unreachable!("downloads not supported on wasm"), + } + } +} + +fn parse_color(s: &str) -> Result { + Color::parse(s).ok_or(anyhow!("'{s}' is not a valid color")) +} diff --git a/examples/scenes/src/lottie.rs b/examples/scenes/src/lottie.rs new file mode 100644 index 0000000..94bc50c --- /dev/null +++ b/examples/scenes/src/lottie.rs @@ -0,0 +1,118 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use crate::SceneParams; +#[cfg(not(target_arch = "wasm32"))] +use crate::{ExampleScene, SceneSet}; +#[cfg(not(target_arch = "wasm32"))] +use anyhow::{Ok, Result}; +use instant::Instant; +use std::sync::Arc; +#[cfg(not(target_arch = "wasm32"))] +use std::{ + fs::read_dir, + path::{Path, PathBuf}, +}; +use velato::Composition; +use vello::kurbo::{Affine, Vec2}; +use vello::Scene; + +#[cfg(not(target_arch = "wasm32"))] +pub fn scene_from_files(files: &[PathBuf]) -> Result { + scene_from_files_inner(files, || ()) +} + +#[cfg(not(target_arch = "wasm32"))] +pub fn default_scene(command: impl FnOnce() -> clap::Command) -> Result { + let assets_dir = Path::new(env!("CARGO_MANIFEST_DIR")) + .join("../assets/") + .canonicalize()?; + let mut has_empty_directory = false; + let result = scene_from_files_inner(&[assets_dir.join("google_fonts/Tiger.json")], || { + has_empty_directory = true + })?; + if has_empty_directory { + let mut command = command(); + command.build(); + panic!("No test files are available."); + } + Ok(result) +} + +#[cfg(not(target_arch = "wasm32"))] +fn scene_from_files_inner( + files: &[PathBuf], + mut empty_dir: impl FnMut(), +) -> std::result::Result { + let mut scenes = Vec::new(); + for path in files { + if path.is_dir() { + let mut count = 0; + let start_index = scenes.len(); + for file in read_dir(path)? { + let entry = file?; + if let Some(extension) = Path::new(&entry.file_name()).extension() { + if extension == "json" { + count += 1; + scenes.push(example_scene_of(entry.path())); + } + } + } + // Ensure a consistent order within directories + scenes[start_index..].sort_by_key(|scene| scene.config.name.to_lowercase()); + if count == 0 { + empty_dir(); + } + } else { + scenes.push(example_scene_of(path.to_owned())); + } + } + Ok(SceneSet { scenes }) +} + +#[cfg(not(target_arch = "wasm32"))] +fn example_scene_of(file: PathBuf) -> ExampleScene { + let name = file + .file_stem() + .map(|it| it.to_string_lossy().to_string()) + .unwrap_or_else(|| "unknown".to_string()); + ExampleScene { + function: Box::new(lottie_function_of(name.clone(), move || { + std::fs::read_to_string(&file) + .unwrap_or_else(|e| panic!("failed to read lottie file {file:?}: {e}")) + })), + config: crate::SceneConfig { + animated: true, + name, + }, + } +} + +pub fn lottie_function_of>( + name: String, + contents: impl FnOnce() -> R + Send + 'static, +) -> impl FnMut(&mut Scene, &mut SceneParams) { + let start = Instant::now(); + let lottie = Arc::new( + velato::Composition::from_slice(contents().as_ref()) + .unwrap_or_else(|e| panic!("failed to parse lottie file {name}: {e}")), + ); + eprintln!("Parsed lottie {name} in {:?}", start.elapsed()); + fn render_lottie_contents(lottie: &Composition, start: &Instant) -> (Scene, Vec2) { + let mut new_scene = Scene::new(); + let frame = ((start.elapsed().as_secs_f64() * lottie.frame_rate) + % (lottie.frames.end - lottie.frames.start)) + + lottie.frames.start; + velato::Renderer::new().render(lottie, frame, Affine::IDENTITY, 1.0, &mut new_scene); + let resolution = Vec2::new(lottie.width as f64, lottie.height as f64); + (new_scene, resolution) + } + + let started = instant::Instant::now(); + let lottie = lottie.clone(); + move |scene, params| { + let (scene_frag, resolution) = render_lottie_contents(&lottie, &started); + scene.append(&scene_frag, None); + params.resolution = Some(resolution); + } +} diff --git a/examples/scenes/src/simple_text.rs b/examples/scenes/src/simple_text.rs new file mode 100644 index 0000000..b81403e --- /dev/null +++ b/examples/scenes/src/simple_text.rs @@ -0,0 +1,139 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use std::sync::Arc; +use vello::glyph::Glyph; +use vello::kurbo::Affine; +use vello::peniko::{Blob, Brush, BrushRef, Font, StyleRef}; +use vello::skrifa::raw::FontRef; +use vello::skrifa::MetadataProvider; +use vello::Scene; + +// This is very much a hack to get things working. +// On Windows, can set this to "c:\\Windows\\Fonts\\seguiemj.ttf" to get color +// emoji +const ROBOTO_FONT: &[u8] = include_bytes!("../../assets/roboto/Roboto-Regular.ttf"); +pub struct RobotoText { + font: Font, +} + +impl RobotoText { + #[allow(clippy::new_without_default)] + pub fn new() -> Self { + Self { + font: Font::new(Blob::new(Arc::new(ROBOTO_FONT)), 0), + } + } + + #[allow(clippy::too_many_arguments)] + pub fn add_run<'a>( + &mut self, + scene: &mut Scene, + font: Option<&Font>, + size: f32, + brush: impl Into>, + transform: Affine, + glyph_transform: Option, + style: impl Into>, + text: &str, + ) { + self.add_var_run( + scene, + font, + size, + &[], + brush, + transform, + glyph_transform, + style, + text, + ); + } + + #[allow(clippy::too_many_arguments)] + pub fn add_var_run<'a>( + &mut self, + scene: &mut Scene, + font: Option<&Font>, + size: f32, + variations: &[(&str, f32)], + brush: impl Into>, + transform: Affine, + glyph_transform: Option, + style: impl Into>, + text: &str, + ) { + let default_font = &self.font; + let font = font.unwrap_or(default_font); + let font_ref = to_font_ref(font).unwrap(); + let brush = brush.into(); + let style = style.into(); + let axes = font_ref.axes(); + let font_size = vello::skrifa::instance::Size::new(size); + let var_loc = axes.location(variations.iter().copied()); + let charmap = font_ref.charmap(); + let metrics = font_ref.metrics(font_size, &var_loc); + let line_height = metrics.ascent - metrics.descent + metrics.leading; + let glyph_metrics = font_ref.glyph_metrics(font_size, &var_loc); + let mut pen_x = 0f32; + let mut pen_y = 0f32; + scene + .draw_glyphs(font) + .font_size(size) + .transform(transform) + .glyph_transform(glyph_transform) + .normalized_coords(var_loc.coords()) + .brush(brush) + .draw( + style, + text.chars().filter_map(|ch| { + if ch == '\n' { + pen_y += line_height; + pen_x = 0.0; + return None; + } + let gid = charmap.map(ch).unwrap_or_default(); + let advance = glyph_metrics.advance_width(gid).unwrap_or_default(); + let x = pen_x; + pen_x += advance; + Some(Glyph { + id: gid.to_u16() as u32, + x, + y: pen_y, + }) + }), + ); + } + + pub fn add( + &mut self, + scene: &mut Scene, + font: Option<&Font>, + size: f32, + brush: Option<&Brush>, + transform: Affine, + text: &str, + ) { + use vello::peniko::{Color, Fill}; + let brush = brush.unwrap_or(&Brush::Solid(Color::WHITE)); + self.add_run( + scene, + font, + size, + brush, + transform, + None, + Fill::NonZero, + text, + ); + } +} + +fn to_font_ref(font: &Font) -> Option> { + use vello::skrifa::raw::FileRef; + let file_ref = FileRef::new(font.data.as_ref()).ok()?; + match file_ref { + FileRef::Font(font) => Some(font), + FileRef::Collection(collection) => collection.get(font.index).ok(), + } +} diff --git a/examples/scenes/src/test_scenes.rs b/examples/scenes/src/test_scenes.rs new file mode 100644 index 0000000..d5b6c34 --- /dev/null +++ b/examples/scenes/src/test_scenes.rs @@ -0,0 +1,71 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use crate::{ExampleScene, SceneConfig, SceneParams, SceneSet}; +use vello::kurbo::Affine; +use vello::*; + +macro_rules! scene { + ($name: ident) => { + scene!($name: false) + }; + ($name: ident: animated) => { + scene!($name: true) + }; + ($name: ident: $animated: literal) => { + scene!($name, stringify!($name), $animated) + }; + ($func:expr, $name: expr, $animated: literal) => { + ExampleScene { + config: SceneConfig { + animated: $animated, + name: $name.to_owned(), + }, + function: Box::new($func), + } + }; +} + +pub fn test_scenes() -> SceneSet { + let scenes = vec![scene!(splash_with_tiger(), "Tiger", true)]; + SceneSet { scenes } +} + +// Scenes +fn splash_screen(scene: &mut Scene, params: &mut SceneParams) { + let strings = [ + "Velato Demo", + #[cfg(not(target_arch = "wasm32"))] + " Arrow keys: switch scenes", + " Space: reset transform", + " S: toggle stats", + " V: toggle vsync", + " M: cycle AA method", + " Q, E: rotate", + ]; + // Tweak to make it fit with tiger + let a = Affine::scale(1.) * Affine::translate((-90.0, -50.0)); + for (i, s) in strings.iter().enumerate() { + let text_size = if i == 0 { 60.0 } else { 40.0 }; + params.text.add( + scene, + None, + text_size, + None, + a * Affine::translate((100.0, 100.0 + 60.0 * i as f64)), + s, + ); + } +} + +fn splash_with_tiger() -> impl FnMut(&mut Scene, &mut SceneParams) { + let contents = include_str!(concat!( + env!("CARGO_MANIFEST_DIR"), + "/../assets/google_fonts/Tiger.json" + )); + let mut lottie = crate::lottie::lottie_function_of("Tiger".to_string(), move || contents); + move |scene, params| { + lottie(scene, params); + splash_screen(scene, params); + } +} diff --git a/examples/with_winit/Cargo.toml b/examples/with_winit/Cargo.toml new file mode 100644 index 0000000..10d575f --- /dev/null +++ b/examples/with_winit/Cargo.toml @@ -0,0 +1,45 @@ +[package] +name = "with_winit" +version = "0.0.0" +description = "An example using Vello with Velato to render to a winit window" +edition.workspace = true +license.workspace = true +repository.workspace = true +publish = false + +[lib] +name = "with_winit" +crate-type = ["cdylib", "lib"] + +[[bin]] +# Stop the PDB collision warning on windows +name = "with_winit_bin" +path = "src/main.rs" + +[dependencies] +vello = { workspace = true, features = ["buffer_labels", "wgpu-profiler"] } +scenes = { path = "../scenes" } +anyhow = "1" +clap = { version = "4.5.1", features = ["derive"] } +instant = { version = "0.1.12", features = ["wasm-bindgen"] } +pollster = "0.3" +wgpu-profiler = "0.16" +wgpu = "0.19.3" +winit = "0.29.12" +env_logger = "0.11.2" +log = "0.4.21" + +[target.'cfg(not(any(target_arch = "wasm32", target_os = "android")))'.dependencies] +vello = { workspace = true, features = ["hot_reload", "wgpu-profiler"] } +notify-debouncer-mini = "0.3" + +[target.'cfg(target_os = "android")'.dependencies] +winit = { version = "0.29.12", features = ["android-native-activity"] } +android_logger = "0.13.3" + +[target.'cfg(target_arch = "wasm32")'.dependencies] +console_error_panic_hook = "0.1.7" +console_log = "1.0.0" +wasm-bindgen-futures = "0.4.41" +web-sys = { version = "0.3.67", features = ["HtmlCollection", "Text"] } +getrandom = { version = "0.2.12", features = ["js"] } diff --git a/examples/with_winit/README.md b/examples/with_winit/README.md new file mode 100644 index 0000000..d448894 --- /dev/null +++ b/examples/with_winit/README.md @@ -0,0 +1,25 @@ +# Usage + +Running the viewer without any arguments will render a built-in set of Lottie images: + +```shell +cargo run -p with_winit --release +``` + +Optionally, you can pass in paths to Lottie files that you want to render: + +```shell +cargo run -p with_winit --release -- [LOTTIE FILES] +``` + +## Controls + +- Mouse drag-and-drop will translate the image. +- Mouse scroll wheel will zoom. +- Arrow keys switch between Lottie images in the current set. +- Space resets the position and zoom of the image. +- S toggles the frame statistics layer +- C resets the min/max frame time tracked by statistics +- D toggles displaying the required number of each kind of dynamically allocated element (default: off) +- V toggles VSync on/off (default: on) +- Escape exits the program. diff --git a/examples/with_winit/src/hot_reload.rs b/examples/with_winit/src/hot_reload.rs new file mode 100644 index 0000000..5bfaad2 --- /dev/null +++ b/examples/with_winit/src/hot_reload.rs @@ -0,0 +1,30 @@ +// Copyright 2023 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use std::path::Path; +use std::time::Duration; + +use anyhow::Result; +use notify_debouncer_mini::notify::*; +use notify_debouncer_mini::{new_debouncer, DebounceEventResult}; + +pub(crate) fn hot_reload(mut f: impl FnMut() -> Option<()> + Send + 'static) -> Result { + let mut debouncer = new_debouncer( + Duration::from_millis(500), + None, + move |res: DebounceEventResult| match res { + Ok(_) => f().unwrap(), + Err(errors) => errors.iter().for_each(|e| println!("Error {:?}", e)), + }, + )?; + + debouncer.watcher().watch( + &Path::new(env!("CARGO_MANIFEST_DIR")) + .join("../../shader") + .canonicalize()?, + // We currently don't support hot reloading the imports, so don't + // recurse into there + RecursiveMode::NonRecursive, + )?; + Ok(debouncer) +} diff --git a/examples/with_winit/src/lib.rs b/examples/with_winit/src/lib.rs new file mode 100644 index 0000000..3028be3 --- /dev/null +++ b/examples/with_winit/src/lib.rs @@ -0,0 +1,706 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use instant::{Duration, Instant}; +use std::collections::HashSet; +use std::num::NonZeroUsize; +use std::sync::Arc; + +use anyhow::Result; +use clap::{CommandFactory, Parser}; +use scenes::{RobotoText, SceneParams, SceneSet}; +use vello::kurbo::{Affine, Vec2}; +use vello::peniko::Color; +use vello::util::{RenderContext, RenderSurface}; +use vello::{AaConfig, BumpAllocators, Renderer, RendererOptions, Scene}; + +use winit::event_loop::{EventLoop, EventLoopBuilder}; +use winit::window::Window; + +#[cfg(not(any(target_arch = "wasm32", target_os = "android")))] +mod hot_reload; +mod multi_touch; +mod stats; + +#[derive(Parser, Debug)] +#[command(about, long_about = None, bin_name="cargo run -p with_winit --")] +struct Args { + /// Which scene (index) to start on + /// Switch between scenes with left and right arrow keys + #[arg(long)] + scene: Option, + #[command(flatten)] + args: scenes::Arguments, + #[arg(long)] + /// Whether to use CPU shaders + use_cpu: bool, + /// Whether to force initialising the shaders serially (rather than + /// spawning threads) This has no effect on wasm, and defaults to 1 on + /// macOS for performance reasons + /// + /// Use `0` for an automatic choice + #[arg(long, default_value_t=default_threads())] + num_init_threads: usize, +} + +fn default_threads() -> usize { + #![allow(unreachable_code)] + #[cfg(target_os = "mac")] + { + return 1; + } + 0 +} + +struct RenderState<'s> { + // SAFETY: We MUST drop the surface before the `window`, so the fields + // must be in this order + surface: RenderSurface<'s>, + window: Arc, +} + +fn run( + event_loop: EventLoop, + args: Args, + mut scenes: SceneSet, + render_cx: RenderContext, + #[cfg(target_arch = "wasm32")] render_state: RenderState, +) { + use winit::event::*; + use winit::event_loop::ControlFlow; + use winit::keyboard::*; + let mut renderers: Vec> = vec![]; + #[cfg(not(target_arch = "wasm32"))] + let mut render_cx = render_cx; + #[cfg(not(target_arch = "wasm32"))] + let mut render_state = None::; + let use_cpu = args.use_cpu; + // The design of `RenderContext` forces delayed renderer initialisation to + // not work on wasm, as WASM futures effectively must be 'static. + // Otherwise, this could work by sending the result to event_loop.proxy + // instead of blocking + #[cfg(target_arch = "wasm32")] + let mut render_state = { + renderers.resize_with(render_cx.devices.len(), || None); + let id = render_state.surface.dev_id; + let mut renderer = Renderer::new( + &render_cx.devices[id].device, + RendererOptions { + surface_format: Some(render_state.surface.format), + use_cpu, + antialiasing_support: vello::AaSupport::all(), + // We currently initialise on one thread on WASM, but mark this here + // anyway + num_init_threads: NonZeroUsize::new(1), + }, + ) + .expect("Could create renderer"); + renderer + .profiler + .change_settings(wgpu_profiler::GpuProfilerSettings { + enable_timer_queries: false, + enable_debug_groups: false, + ..Default::default() + }) + .expect("Not setting max_num_pending_frames"); + renderers[id] = Some(renderer); + Some(render_state) + }; + // Whilst suspended, we drop `render_state`, but need to keep the same + // window. If render_state exists, we must store the window in it, to + // maintain drop order + #[cfg(not(target_arch = "wasm32"))] + let mut cached_window = None; + + let mut scene = Scene::new(); + let mut fragment = Scene::new(); + let mut simple_text = RobotoText::new(); + let mut stats = stats::Stats::new(); + let mut stats_shown = true; + // Currently not updated in wasm builds + #[allow(unused_mut)] + let mut scene_complexity: Option = None; + let mut complexity_shown = false; + let mut vsync_on = true; + + const AA_CONFIGS: [AaConfig; 3] = [AaConfig::Area, AaConfig::Msaa8, AaConfig::Msaa16]; + // We allow cycling through AA configs in either direction, so use a signed + // index + let mut aa_config_ix: i32 = 0; + + let mut frame_start_time = Instant::now(); + let start = Instant::now(); + + let mut touch_state = multi_touch::TouchState::new(); + // navigation_fingers are fingers which are used in the navigation 'zone' at + // the bottom of the screen. This ensures that one press on the screen + // doesn't have multiple actions + let mut navigation_fingers = HashSet::new(); + let mut transform = Affine::IDENTITY; + let mut mouse_down = false; + let mut prior_position: Option = None; + // We allow looping left and right through the scenes, so use a signed index + let mut scene_ix: i32 = 0; + let mut complexity: usize = 0; + if let Some(set_scene) = args.scene { + scene_ix = set_scene; + } + let mut profile_stored = None; + let mut prev_scene_ix = scene_ix - 1; + let mut profile_taken = Instant::now(); + let mut modifiers = ModifiersState::default(); + event_loop + .run(move |event, event_loop| match event { + Event::WindowEvent { + ref event, + window_id, + } => { + let Some(render_state) = &mut render_state else { + return; + }; + if render_state.window.id() != window_id { + return; + } + match event { + WindowEvent::CloseRequested => event_loop.exit(), + WindowEvent::ModifiersChanged(m) => modifiers = m.state(), + WindowEvent::KeyboardInput { event, .. } => { + if event.state == ElementState::Pressed { + match event.logical_key.as_ref() { + Key::Named(NamedKey::ArrowLeft) => { + scene_ix = scene_ix.saturating_sub(1) + } + Key::Named(NamedKey::ArrowRight) => { + scene_ix = scene_ix.saturating_add(1) + } + Key::Named(NamedKey::ArrowUp) => complexity += 1, + Key::Named(NamedKey::ArrowDown) => { + complexity = complexity.saturating_sub(1) + } + Key::Named(NamedKey::Space) => { + transform = Affine::IDENTITY; + } + Key::Character(char) => { + // TODO: Have a more principled way of handling modifiers on keypress + // see e.g. https://xi.zulipchat.com/#narrow/stream/351333-glazier/topic/Keyboard.20shortcuts + let char = char.to_lowercase(); + match char.as_str() { + "q" | "e" => { + if let Some(prior_position) = prior_position { + let is_clockwise = char == "e"; + let angle = if is_clockwise { -0.05 } else { 0.05 }; + transform = Affine::translate(prior_position) + * Affine::rotate(angle) + * Affine::translate(-prior_position) + * transform; + } + } + "s" => { + stats_shown = !stats_shown; + } + "d" => { + complexity_shown = !complexity_shown; + } + "c" => { + stats.clear_min_and_max(); + } + "m" => { + aa_config_ix = if modifiers.shift_key() { + aa_config_ix.saturating_sub(1) + } else { + aa_config_ix.saturating_add(1) + }; + } + "p" => { + if let Some(renderer) = &renderers[render_state.surface.dev_id] + { + if let Some(profile_result) = &renderer + .profile_result + .as_ref() + .or(profile_stored.as_ref()) + { + // There can be empty results if the required features aren't supported + if !profile_result.is_empty() { + let path = std::path::Path::new("trace.json"); + match wgpu_profiler::chrometrace::write_chrometrace( + path, + profile_result, + ) { + Ok(()) => { + println!("Wrote trace to path {path:?}"); + } + Err(e) => { + eprintln!("Failed to write trace {e}") + } + } + } + } + } + } + "v" => { + vsync_on = !vsync_on; + render_cx.set_present_mode( + &mut render_state.surface, + if vsync_on { + wgpu::PresentMode::AutoVsync + } else { + wgpu::PresentMode::AutoNoVsync + }, + ); + } + _ => {} + } + } + Key::Named(NamedKey::Escape) => event_loop.exit(), + _ => {} + } + } + } + WindowEvent::Touch(touch) => { + match touch.phase { + TouchPhase::Started => { + // We reserve the bottom third of the screen for navigation + // This also prevents strange effects whilst using the navigation gestures on Android + // TODO: How do we know what the client area is? Winit seems to just give us the + // full screen + // TODO: Render a display of the navigation regions. We don't do + // this currently because we haven't researched how to determine when we're + // in a touch context (i.e. Windows/Linux/MacOS with a touch screen could + // also be using mouse/keyboard controls) + // Note that winit's rendering is y-down + if touch.location.y + > render_state.surface.config.height as f64 * 2. / 3. + { + navigation_fingers.insert(touch.id); + // The left third of the navigation zone navigates backwards + if touch.location.x + < render_state.surface.config.width as f64 / 3. + { + scene_ix = scene_ix.saturating_sub(1); + } else if touch.location.x + > 2. * render_state.surface.config.width as f64 / 3. + { + scene_ix = scene_ix.saturating_add(1); + } + } + } + TouchPhase::Ended | TouchPhase::Cancelled => { + // We intentionally ignore the result here + navigation_fingers.remove(&touch.id); + } + TouchPhase::Moved => (), + } + // See documentation on navigation_fingers + if !navigation_fingers.contains(&touch.id) { + touch_state.add_event(touch); + } + } + WindowEvent::Resized(size) => { + render_cx.resize_surface( + &mut render_state.surface, + size.width, + size.height, + ); + render_state.window.request_redraw(); + } + WindowEvent::MouseInput { state, button, .. } => { + if button == &MouseButton::Left { + mouse_down = state == &ElementState::Pressed; + } + } + WindowEvent::MouseWheel { delta, .. } => { + const BASE: f64 = 1.05; + const PIXELS_PER_LINE: f64 = 20.0; + + if let Some(prior_position) = prior_position { + let exponent = if let MouseScrollDelta::PixelDelta(delta) = delta { + delta.y / PIXELS_PER_LINE + } else if let MouseScrollDelta::LineDelta(_, y) = delta { + *y as f64 + } else { + 0.0 + }; + transform = Affine::translate(prior_position) + * Affine::scale(BASE.powf(exponent)) + * Affine::translate(-prior_position) + * transform; + } else { + eprintln!( + "Scrolling without mouse in window; this shouldn't be possible" + ); + } + } + WindowEvent::CursorLeft { .. } => { + prior_position = None; + } + WindowEvent::CursorMoved { position, .. } => { + let position = Vec2::new(position.x, position.y); + if mouse_down { + if let Some(prior) = prior_position { + transform = Affine::translate(position - prior) * transform; + } + } + prior_position = Some(position); + } + WindowEvent::RedrawRequested => { + let width = render_state.surface.config.width; + let height = render_state.surface.config.height; + let device_handle = &render_cx.devices[render_state.surface.dev_id]; + let snapshot = stats.snapshot(); + + // Allow looping forever + scene_ix = scene_ix.rem_euclid(scenes.scenes.len() as i32); + aa_config_ix = aa_config_ix.rem_euclid(AA_CONFIGS.len() as i32); + + let example_scene = &mut scenes.scenes[scene_ix as usize]; + if prev_scene_ix != scene_ix { + transform = Affine::IDENTITY; + prev_scene_ix = scene_ix; + render_state + .window + .set_title(&format!("Vello demo - {}", example_scene.config.name)); + } + fragment.reset(); + let mut scene_params = SceneParams { + time: start.elapsed().as_secs_f64(), + text: &mut simple_text, + resolution: None, + base_color: None, + interactive: true, + complexity, + }; + example_scene + .function + .render(&mut fragment, &mut scene_params); + + // If the user specifies a base color in the CLI we use that. Otherwise we use any + // color specified by the scene. The default is black. + let base_color = args + .args + .base_color + .or(scene_params.base_color) + .unwrap_or(Color::BLACK); + let antialiasing_method = AA_CONFIGS[aa_config_ix as usize]; + let render_params = vello::RenderParams { + base_color, + width, + height, + antialiasing_method, + }; + scene.reset(); + let mut transform = transform; + if let Some(resolution) = scene_params.resolution { + // Automatically scale the rendering to fill as much of the window as possible + let factor = Vec2::new(width as f64, height as f64); + let scale_factor = + (factor.x / resolution.x).min(factor.y / resolution.y); + transform *= Affine::scale(scale_factor); + } + scene.append(&fragment, Some(transform)); + if stats_shown { + snapshot.draw_layer( + &mut scene, + scene_params.text, + width as f64, + height as f64, + stats.samples(), + complexity_shown.then_some(scene_complexity).flatten(), + vsync_on, + antialiasing_method, + ); + if let Some(profiling_result) = renderers[render_state.surface.dev_id] + .as_mut() + .and_then(|it| it.profile_result.take()) + { + if profile_stored.is_none() + || profile_taken.elapsed() > Duration::from_secs(1) + { + profile_stored = Some(profiling_result); + profile_taken = Instant::now(); + } + } + if let Some(profiling_result) = profile_stored.as_ref() { + stats::draw_gpu_profiling( + &mut scene, + scene_params.text, + width as f64, + height as f64, + profiling_result, + ); + } + } + let surface_texture = render_state + .surface + .surface + .get_current_texture() + .expect("failed to get surface texture"); + #[cfg(not(target_arch = "wasm32"))] + { + scene_complexity = vello::block_on_wgpu( + &device_handle.device, + renderers[render_state.surface.dev_id] + .as_mut() + .unwrap() + .render_to_surface_async( + &device_handle.device, + &device_handle.queue, + &scene, + &surface_texture, + &render_params, + ), + ) + .expect("failed to render to surface"); + } + // Note: in the wasm case, we're currently not running the robust + // pipeline, as it requires more async wiring for the readback. + #[cfg(target_arch = "wasm32")] + renderers[render_state.surface.dev_id] + .as_mut() + .unwrap() + .render_to_surface( + &device_handle.device, + &device_handle.queue, + &scene, + &surface_texture, + &render_params, + ) + .expect("failed to render to surface"); + surface_texture.present(); + device_handle.device.poll(wgpu::Maintain::Poll); + + let new_time = Instant::now(); + stats.add_sample(stats::Sample { + frame_time_us: (new_time - frame_start_time).as_micros() as u64, + }); + frame_start_time = new_time; + } + _ => {} + } + } + Event::AboutToWait => { + touch_state.end_frame(); + let touch_info = touch_state.info(); + if let Some(touch_info) = touch_info { + let centre = Vec2::new(touch_info.zoom_centre.x, touch_info.zoom_centre.y); + transform = Affine::translate(touch_info.translation_delta) + * Affine::translate(centre) + * Affine::scale(touch_info.zoom_delta) + * Affine::rotate(touch_info.rotation_delta) + * Affine::translate(-centre) + * transform; + } + + if let Some(render_state) = &mut render_state { + render_state.window.request_redraw(); + } + } + Event::UserEvent(event) => match event { + #[cfg(not(any(target_arch = "wasm32", target_os = "android")))] + UserEvent::HotReload => { + let Some(render_state) = &mut render_state else { + return; + }; + let device_handle = &render_cx.devices[render_state.surface.dev_id]; + eprintln!("==============\nReloading shaders"); + let start = Instant::now(); + let result = renderers[render_state.surface.dev_id] + .as_mut() + .unwrap() + .reload_shaders(&device_handle.device); + // We know that the only async here (`pop_error_scope`) is actually sync, so blocking is fine + match pollster::block_on(result) { + Ok(_) => eprintln!("Reloading took {:?}", start.elapsed()), + Err(e) => eprintln!("Failed to reload shaders because of {e}"), + } + } + }, + Event::Suspended => { + eprintln!("Suspending"); + #[cfg(not(target_arch = "wasm32"))] + // When we suspend, we need to remove the `wgpu` Surface + if let Some(render_state) = render_state.take() { + cached_window = Some(render_state.window); + } + event_loop.set_control_flow(ControlFlow::Wait); + } + Event::Resumed => { + #[cfg(target_arch = "wasm32")] + {} + #[cfg(not(target_arch = "wasm32"))] + { + let Option::None = render_state else { return }; + let window = cached_window + .take() + .unwrap_or_else(|| create_window(event_loop)); + let size = window.inner_size(); + let surface_future = render_cx.create_surface(window.clone(), size.width, size.height, wgpu::PresentMode::AutoVsync); + // We need to block here, in case a Suspended event appeared + let surface = + pollster::block_on(surface_future).expect("Error creating surface"); + render_state = { + let render_state = RenderState { window, surface }; + renderers.resize_with(render_cx.devices.len(), || None); + let id = render_state.surface.dev_id; + renderers[id].get_or_insert_with(|| { + let start = Instant::now(); + let renderer = Renderer::new( + &render_cx.devices[id].device, + RendererOptions { + surface_format: Some(render_state.surface.format), + use_cpu, + antialiasing_support: vello::AaSupport::all(), + num_init_threads: NonZeroUsize::new(args.num_init_threads) + }, + ) + .expect("Could create renderer"); + eprintln!("Creating renderer {id} took {:?}", start.elapsed()); + renderer + }); + Some(render_state) + }; + event_loop.set_control_flow(ControlFlow::Poll); + } + } + _ => {} + }) + .expect("run to completion"); +} + +fn create_window(event_loop: &winit::event_loop::EventLoopWindowTarget) -> Arc { + use winit::dpi::LogicalSize; + use winit::window::WindowBuilder; + Arc::new( + WindowBuilder::new() + .with_inner_size(LogicalSize::new(1044, 800)) + .with_resizable(true) + .with_title("Vello demo") + .build(event_loop) + .unwrap(), + ) +} + +#[derive(Debug)] +enum UserEvent { + #[cfg(not(any(target_arch = "wasm32", target_os = "android")))] + HotReload, +} + +#[cfg(target_arch = "wasm32")] +fn display_error_message() -> Option<()> { + let window = web_sys::window()?; + let document = window.document()?; + let elements = document.get_elements_by_tag_name("body"); + let body = elements.item(0)?; + body.set_inner_html( + r#" +

WebGPU + is not enabled. Make sure your browser is updated to + Chrome M113 or + another browser compatible with WebGPU.

"#, + ); + Some(()) +} + +pub fn main() -> Result<()> { + // TODO: initializing both env_logger and console_logger fails on wasm. + // Figure out a more principled approach. + #[cfg(not(target_arch = "wasm32"))] + env_logger::init(); + let args = Args::parse(); + let scenes = args.args.select_scene_set(Args::command)?; + if let Some(scenes) = scenes { + let event_loop = EventLoopBuilder::::with_user_event().build()?; + #[allow(unused_mut)] + let mut render_cx = RenderContext::new().unwrap(); + #[cfg(not(target_arch = "wasm32"))] + { + #[cfg(not(target_os = "android"))] + let proxy = event_loop.create_proxy(); + #[cfg(not(target_os = "android"))] + let _keep = hot_reload::hot_reload(move || { + proxy.send_event(UserEvent::HotReload).ok().map(drop) + }); + + run(event_loop, args, scenes, render_cx); + } + #[cfg(target_arch = "wasm32")] + { + std::panic::set_hook(Box::new(console_error_panic_hook::hook)); + console_log::init().expect("could not initialize logger"); + use winit::platform::web::WindowExtWebSys; + let window = create_window(&event_loop); + // On wasm, append the canvas to the document body + let canvas = window.canvas().unwrap(); + web_sys::window() + .and_then(|win| win.document()) + .and_then(|doc| doc.body()) + .and_then(|body| body.append_child(canvas.as_ref()).ok()) + .expect("couldn't append canvas to document body"); + // Best effort to start with the canvas focused, taking input + _ = web_sys::HtmlElement::from(canvas).focus(); + wasm_bindgen_futures::spawn_local(async move { + let (width, height, scale_factor) = web_sys::window() + .map(|w| { + ( + w.inner_width().unwrap().as_f64().unwrap(), + w.inner_height().unwrap().as_f64().unwrap(), + w.device_pixel_ratio(), + ) + }) + .unwrap(); + let size = + winit::dpi::PhysicalSize::from_logical::<_, f64>((width, height), scale_factor); + _ = window.request_inner_size(size); + let surface = render_cx + .create_surface( + window.clone(), + size.width, + size.height, + wgpu::PresentMode::AutoVsync, + ) + .await; + if let Ok(surface) = surface { + let render_state = RenderState { window, surface }; + // No error handling here; if the event loop has finished, + // we don't need to send them the surface + run(event_loop, args, scenes, render_cx, render_state); + } else { + _ = display_error_message(); + } + }); + } + } + Ok(()) +} + +#[cfg(target_os = "android")] +use winit::platform::android::activity::AndroidApp; + +#[cfg(target_os = "android")] +#[no_mangle] +fn android_main(app: AndroidApp) { + use winit::platform::android::EventLoopBuilderExtAndroid; + + android_logger::init_once( + android_logger::Config::default().with_max_level(log::LevelFilter::Warn), + ); + + let event_loop = EventLoopBuilder::with_user_event() + .with_android_app(app) + .build() + .expect("Required to continue"); + let args = Args::parse(); + let scenes = args + .args + .select_scene_set(|| Args::command()) + .unwrap() + .unwrap(); + let render_cx = RenderContext::new().unwrap(); + + run(event_loop, args, scenes, render_cx); +} diff --git a/examples/with_winit/src/main.rs b/examples/with_winit/src/main.rs new file mode 100644 index 0000000..886bd24 --- /dev/null +++ b/examples/with_winit/src/main.rs @@ -0,0 +1,8 @@ +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use anyhow::Result; + +fn main() -> Result<()> { + with_winit::main() +} diff --git a/examples/with_winit/src/multi_touch.rs b/examples/with_winit/src/multi_touch.rs new file mode 100644 index 0000000..5e11623 --- /dev/null +++ b/examples/with_winit/src/multi_touch.rs @@ -0,0 +1,306 @@ +// Copyright 2021 the egui Authors and the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +/// Adapted from https://github.com/emilk/egui/blob/212656f3fc6b931b21eaad401e5cec2b0da93baa/crates/egui/src/input_state/touch_state.rs +use std::{collections::BTreeMap, fmt::Debug}; + +use vello::kurbo::{Point, Vec2}; +use winit::event::{Touch, TouchPhase}; + +/// All you probably need to know about a multi-touch gesture. +#[derive(Clone, Copy, Debug, PartialEq)] +pub struct MultiTouchInfo { + /// Number of touches (fingers) on the surface. Value is ≥ 2 since for a + /// single touch no [`MultiTouchInfo`] is created. + pub num_touches: usize, + + /// Proportional zoom factor (pinch gesture). + /// * `zoom = 1`: no change + /// * `zoom < 1`: pinch together + /// * `zoom > 1`: pinch spread + pub zoom_delta: f64, + + /// 2D non-proportional zoom factor (pinch gesture). + /// + /// For horizontal pinches, this will return `[z, 1]`, + /// for vertical pinches this will return `[1, z]`, + /// and otherwise this will return `[z, z]`, + /// where `z` is the zoom factor: + /// * `zoom = 1`: no change + /// * `zoom < 1`: pinch together + /// * `zoom > 1`: pinch spread + pub zoom_delta_2d: Vec2, + + /// Rotation in radians. Moving fingers around each other will change this + /// value. This is a relative value, comparing the orientation of + /// fingers in the current frame with the previous frame. If all + /// fingers are resting, this value is `0.0`. + pub rotation_delta: f64, + + /// Relative movement (comparing previous frame and current frame) of the + /// average position of all touch points. Without movement this value + /// is `Vec2::ZERO`. + /// + /// Note that this may not necessarily be measured in screen points + /// (although it _will_ be for most mobile devices). In general + /// (depending on the touch device), touch coordinates cannot + /// be directly mapped to the screen. A touch always is considered to start + /// at the position of the pointer, but touch movement is always + /// measured in the units delivered by the device, and may depend on + /// hardware and system settings. + pub translation_delta: Vec2, + pub zoom_centre: Point, +} + +/// The current state (for a specific touch device) of touch events and +/// gestures. +#[derive(Clone)] +pub(crate) struct TouchState { + /// Active touches, if any. + /// + /// TouchId is the unique identifier of the touch. It is valid as long as + /// the finger/pen touches the surface. The next touch will receive a + /// new unique ID. + /// + /// Refer to [`ActiveTouch`]. + active_touches: BTreeMap, + + /// If a gesture has been recognized (i.e. when exactly two fingers touch + /// the surface), this holds state information + gesture_state: Option, + + added_or_removed_touches: bool, +} + +#[derive(Clone, Debug)] +struct GestureState { + pinch_type: PinchType, + previous: Option, + current: DynGestureState, +} + +/// Gesture data that can change over time +#[derive(Clone, Copy, Debug)] +struct DynGestureState { + /// used for proportional zooming + avg_distance: f64, + /// used for non-proportional zooming + avg_abs_distance2: Vec2, + avg_pos: Point, + heading: f64, +} + +/// Describes an individual touch (finger or digitizer) on the touch surface. +/// Instances exist as long as the finger/pen touches the surface. +#[derive(Clone, Copy, Debug)] +struct ActiveTouch { + /// Current position of this touch, in device coordinates (not necessarily + /// screen position) + pos: Point, +} + +impl TouchState { + pub fn new() -> Self { + Self { + active_touches: Default::default(), + gesture_state: None, + added_or_removed_touches: false, + } + } + + pub fn add_event(&mut self, event: &Touch) { + let pos = Point::new(event.location.x, event.location.y); + match event.phase { + TouchPhase::Started => { + self.active_touches.insert(event.id, ActiveTouch { pos }); + self.added_or_removed_touches = true; + } + TouchPhase::Moved => { + if let Some(touch) = self.active_touches.get_mut(&event.id) { + touch.pos = Point::new(event.location.x, event.location.y); + } + } + TouchPhase::Ended | TouchPhase::Cancelled => { + self.active_touches.remove(&event.id); + self.added_or_removed_touches = true; + } + } + } + + pub fn end_frame(&mut self) { + // This needs to be called each frame, even if there are no new touch + // events. Otherwise, we would send the same old delta + // information multiple times: + self.update_gesture(); + + if self.added_or_removed_touches { + // Adding or removing fingers makes the average values "jump". We + // better forget about the previous values, and don't + // create delta information for this frame: + if let Some(ref mut state) = &mut self.gesture_state { + state.previous = None; + } + } + self.added_or_removed_touches = false; + } + + pub fn info(&self) -> Option { + self.gesture_state.as_ref().map(|state| { + // state.previous can be `None` when the number of simultaneous + // touches has just changed. In this case, we take + // `current` as `previous`, pretending that there was no + // change for the current frame. + let state_previous = state.previous.unwrap_or(state.current); + + let zoom_delta = if self.active_touches.len() > 1 { + state.current.avg_distance / state_previous.avg_distance + } else { + 1. + }; + + let zoom_delta2 = if self.active_touches.len() > 1 { + match state.pinch_type { + PinchType::Horizontal => Vec2::new( + state.current.avg_abs_distance2.x / state_previous.avg_abs_distance2.x, + 1.0, + ), + PinchType::Vertical => Vec2::new( + 1.0, + state.current.avg_abs_distance2.y / state_previous.avg_abs_distance2.y, + ), + PinchType::Proportional => Vec2::new(zoom_delta, zoom_delta), + } + } else { + Vec2::new(1.0, 1.0) + }; + + MultiTouchInfo { + num_touches: self.active_touches.len(), + zoom_delta, + zoom_delta_2d: zoom_delta2, + zoom_centre: state.current.avg_pos, + rotation_delta: (state.current.heading - state_previous.heading), + translation_delta: state.current.avg_pos - state_previous.avg_pos, + } + }) + } + + fn update_gesture(&mut self) { + if let Some(dyn_state) = self.calc_dynamic_state() { + if let Some(ref mut state) = &mut self.gesture_state { + // updating an ongoing gesture + state.previous = Some(state.current); + state.current = dyn_state; + } else { + // starting a new gesture + self.gesture_state = Some(GestureState { + pinch_type: PinchType::classify(&self.active_touches), + previous: None, + current: dyn_state, + }); + } + } else { + // the end of a gesture (if there is any) + self.gesture_state = None; + } + } + + /// `None` if less than two fingers + fn calc_dynamic_state(&self) -> Option { + let num_touches = self.active_touches.len(); + if num_touches == 0 { + return None; + } + let mut state = DynGestureState { + avg_distance: 0.0, + avg_abs_distance2: Vec2::ZERO, + avg_pos: Point::ZERO, + heading: 0.0, + }; + let num_touches_recip = 1. / num_touches as f64; + + // first pass: calculate force and center of touch positions: + for touch in self.active_touches.values() { + state.avg_pos.x += touch.pos.x; + state.avg_pos.y += touch.pos.y; + } + state.avg_pos.x *= num_touches_recip; + state.avg_pos.y *= num_touches_recip; + + // second pass: calculate distances from center: + for touch in self.active_touches.values() { + state.avg_distance += state.avg_pos.distance(touch.pos); + state.avg_abs_distance2.x += (state.avg_pos.x - touch.pos.x).abs(); + state.avg_abs_distance2.y += (state.avg_pos.y - touch.pos.y).abs(); + } + state.avg_distance *= num_touches_recip; + state.avg_abs_distance2 *= num_touches_recip; + + // Calculate the direction from the first touch to the center position. + // This is not the perfect way of calculating the direction if more than + // two fingers are involved, but as long as all fingers rotate + // more or less at the same angular velocity, the shortcomings + // of this method will not be noticed. One can see the + // issues though, when touching with three or more fingers, and moving + // only one of them (it takes two hands to do this in a + // controlled manner). A better technique would be to store the + // current and previous directions (with reference to the center) for + // each touch individually, and then calculate the average of + // all individual changes in direction. But this approach cannot + // be implemented locally in this method, making everything a + // bit more complicated. + let first_touch = self.active_touches.values().next().unwrap(); + state.heading = (state.avg_pos - first_touch.pos).atan2(); + + Some(state) + } +} + +impl Debug for TouchState { + // This outputs less clutter than `#[derive(Debug)]`: + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + for (id, touch) in &self.active_touches { + f.write_fmt(format_args!("#{:?}: {:#?}\n", id, touch))?; + } + f.write_fmt(format_args!("gesture: {:#?}\n", self.gesture_state))?; + Ok(()) + } +} + +#[derive(Clone, Debug)] +enum PinchType { + Horizontal, + Vertical, + Proportional, +} + +impl PinchType { + fn classify(touches: &BTreeMap) -> Self { + // For non-proportional 2d zooming: + // If the user is pinching with two fingers that have roughly the same Y + // coord, then the Y zoom is unstable and should be 1. + // Similarly, if the fingers are directly above/below each other, + // we should only zoom on the Y axis. + // If the fingers are roughly on a diagonal, we revert to the + // proportional zooming. + + if touches.len() == 2 { + let mut touches = touches.values(); + let t0 = touches.next().unwrap().pos; + let t1 = touches.next().unwrap().pos; + + let dx = (t0.x - t1.x).abs(); + let dy = (t0.y - t1.y).abs(); + + if dx > 3.0 * dy { + Self::Horizontal + } else if dy > 3.0 * dx { + Self::Vertical + } else { + Self::Proportional + } + } else { + Self::Proportional + } + } +} diff --git a/examples/with_winit/src/stats.rs b/examples/with_winit/src/stats.rs new file mode 100644 index 0000000..b735f52 --- /dev/null +++ b/examples/with_winit/src/stats.rs @@ -0,0 +1,453 @@ +// Copyright 2023 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use scenes::RobotoText; +use std::collections::VecDeque; +use std::time::Duration; +use vello::kurbo::{Affine, Line, PathEl, Rect, Stroke}; +use vello::peniko::{Brush, Color, Fill}; +use vello::{AaConfig, BumpAllocators, Scene}; +use wgpu_profiler::GpuTimerQueryResult; + +const SLIDING_WINDOW_SIZE: usize = 100; + +#[derive(Debug)] +pub struct Snapshot { + pub fps: f64, + pub frame_time_ms: f64, + pub frame_time_min_ms: f64, + pub frame_time_max_ms: f64, +} + +impl Snapshot { + #[allow(clippy::too_many_arguments)] + pub fn draw_layer<'a, T>( + &self, + scene: &mut Scene, + text: &mut RobotoText, + viewport_width: f64, + viewport_height: f64, + samples: T, + bump: Option, + vsync: bool, + aa_config: AaConfig, + ) where + T: Iterator, + { + let width = (viewport_width * 0.4).max(200.).min(600.); + let height = width * 0.7; + let x_offset = viewport_width - width; + let y_offset = viewport_height - height; + let offset = Affine::translate((x_offset, y_offset)); + + // Draw the background + scene.fill( + Fill::NonZero, + offset, + &Brush::Solid(Color::rgba8(0, 0, 0, 200)), + None, + &Rect::new(0., 0., width, height), + ); + + let mut labels = vec![ + format!("Frame Time: {:.2} ms", self.frame_time_ms), + format!("Frame Time (min): {:.2} ms", self.frame_time_min_ms), + format!("Frame Time (max): {:.2} ms", self.frame_time_max_ms), + format!("VSync: {}", if vsync { "on" } else { "off" }), + format!( + "AA method: {}", + match aa_config { + AaConfig::Area => "Analytic Area", + AaConfig::Msaa16 => "16xMSAA", + AaConfig::Msaa8 => "8xMSAA", + } + ), + format!("Resolution: {viewport_width}x{viewport_height}"), + ]; + if let Some(bump) = &bump { + if bump.failed >= 1 { + labels.push("Allocation Failed!".into()); + } + labels.push(format!("binning: {}", bump.binning)); + labels.push(format!("ptcl: {}", bump.ptcl)); + labels.push(format!("tile: {}", bump.tile)); + labels.push(format!("segments: {}", bump.segments)); + labels.push(format!("blend: {}", bump.blend)); + } + + // height / 2 is dedicated to the text labels and the rest is filled by + // the bar graph. + let text_height = height * 0.5 / (1 + labels.len()) as f64; + let left_margin = width * 0.01; + let text_size = (text_height * 0.9) as f32; + for (i, label) in labels.iter().enumerate() { + text.add( + scene, + None, + text_size, + Some(&Brush::Solid(Color::WHITE)), + offset * Affine::translate((left_margin, (i + 1) as f64 * text_height)), + label, + ); + } + text.add( + scene, + None, + text_size, + Some(&Brush::Solid(Color::WHITE)), + offset * Affine::translate((width * 0.67, text_height)), + &format!("FPS: {:.2}", self.fps), + ); + + // Plot the samples with a bar graph + use PathEl::*; + let left_padding = width * 0.05; // Left padding for the frame time marker text. + let graph_max_height = height * 0.5; + let graph_max_width = width - 2. * left_margin - left_padding; + let left_margin_padding = left_margin + left_padding; + let bar_extent = graph_max_width / (SLIDING_WINDOW_SIZE as f64); + let bar_width = bar_extent * 0.4; + let bar = [ + MoveTo((0., graph_max_height).into()), + LineTo((0., 0.).into()), + LineTo((bar_width, 0.).into()), + LineTo((bar_width, graph_max_height).into()), + ]; + // We determine the scale of the graph based on the maximum sampled + // frame time unless it's greater than 3x the current average. + // In that case we cap the max scale at 4/3 * the + // current average (rounded up to the nearest multiple of 5ms). This + // allows the scale to adapt to the most recent sample set as + // relying on the maximum alone can make the displayed samples + // to look too small in the presence of spikes/fluctuation without + // manually resetting the max sample. + let display_max = if self.frame_time_max_ms > 3. * self.frame_time_ms { + round_up((1.33334 * self.frame_time_ms) as usize, 5) as f64 + } else { + self.frame_time_max_ms + }; + for (i, sample) in samples.enumerate() { + let t = offset * Affine::translate((i as f64 * bar_extent, graph_max_height)); + // The height of each sample is based on its ratio to the maximum + // observed frame time. + let sample_ms = ((*sample as f64) * 0.001).min(display_max); + let h = sample_ms / display_max; + let s = Affine::scale_non_uniform(1., -h); + #[allow(clippy::match_overlapping_arm)] + let color = match *sample { + ..=16_667 => Color::rgb8(100, 143, 255), + ..=33_334 => Color::rgb8(255, 176, 0), + _ => Color::rgb8(220, 38, 127), + }; + scene.fill( + Fill::NonZero, + t * Affine::translate(( + left_margin_padding, + (1 + labels.len()) as f64 * text_height, + )) * s, + color, + None, + &bar, + ); + } + // Draw horizontal lines to mark 8.33ms, 16.33ms, and 33.33ms + let marker = [ + MoveTo((0., graph_max_height).into()), + LineTo((graph_max_width, graph_max_height).into()), + ]; + let thresholds = [8.33, 16.66, 33.33]; + let thres_text_height = graph_max_height * 0.05; + let thres_text_height_2 = thres_text_height * 0.5; + for t in thresholds.iter().filter(|&&t| t < display_max) { + let y = t / display_max; + text.add( + scene, + None, + thres_text_height as f32, + Some(&Brush::Solid(Color::WHITE)), + offset + * Affine::translate(( + left_margin, + (2. - y) * graph_max_height + thres_text_height_2, + )), + &format!("{}", t), + ); + scene.stroke( + &Stroke::new(graph_max_height * 0.01), + offset * Affine::translate((left_margin_padding, (1. - y) * graph_max_height)), + Color::WHITE, + None, + &marker, + ); + } + } +} + +pub struct Sample { + pub frame_time_us: u64, +} + +pub struct Stats { + count: usize, + sum: u64, + min: u64, + max: u64, + samples: VecDeque, +} + +impl Stats { + pub fn new() -> Stats { + Stats { + count: 0, + sum: 0, + min: u64::MAX, + max: u64::MIN, + samples: VecDeque::with_capacity(SLIDING_WINDOW_SIZE), + } + } + + pub fn samples(&self) -> impl Iterator { + self.samples.iter() + } + + pub fn snapshot(&self) -> Snapshot { + let frame_time_ms = (self.sum as f64 / self.count as f64) * 0.001; + let fps = 1000. / frame_time_ms; + Snapshot { + fps, + frame_time_ms, + frame_time_min_ms: self.min as f64 * 0.001, + frame_time_max_ms: self.max as f64 * 0.001, + } + } + + pub fn clear_min_and_max(&mut self) { + self.min = u64::MAX; + self.max = u64::MIN; + } + + pub fn add_sample(&mut self, sample: Sample) { + let oldest = if self.count < SLIDING_WINDOW_SIZE { + self.count += 1; + None + } else { + self.samples.pop_front() + }; + let micros = sample.frame_time_us; + self.sum += micros; + self.samples.push_back(micros); + if let Some(oldest) = oldest { + self.sum -= oldest; + } + self.min = self.min.min(micros); + self.max = self.max.max(micros); + } +} + +fn round_up(n: usize, f: usize) -> usize { + n - 1 - (n - 1) % f + f +} + +const COLORS: &[Color] = &[ + Color::AQUA, + Color::RED, + Color::ALICE_BLUE, + Color::YELLOW, + Color::GREEN, + Color::BLUE, + Color::ORANGE, + Color::WHITE, +]; + +pub fn draw_gpu_profiling( + scene: &mut Scene, + text: &mut RobotoText, + viewport_width: f64, + viewport_height: f64, + profiles: &[GpuTimerQueryResult], +) { + if profiles.is_empty() { + return; + } + let width = (viewport_width * 0.3).clamp(150., 450.); + let height = width * 1.5; + let y_offset = viewport_height - height; + let offset = Affine::translate((0., y_offset)); + + // Draw the background + scene.fill( + Fill::NonZero, + offset, + &Brush::Solid(Color::rgba8(0, 0, 0, 200)), + None, + &Rect::new(0., 0., width, height), + ); + // Find the range of the samples, so we can normalise them + let mut min = f64::MAX; + let mut max = f64::MIN; + let mut max_depth = 0; + let mut depth = 0; + let mut count = 0; + traverse_profiling(profiles, &mut |profile, stage| { + match stage { + TraversalStage::Enter => { + count += 1; + min = min.min(profile.time.start); + max = max.max(profile.time.end); + max_depth = max_depth.max(depth); + // Apply a higher depth to the children + depth += 1; + } + TraversalStage::Leave => depth -= 1, + } + }); + let total_time = max - min; + { + let labels = [ + format!("GPU Time: {:.2?}", Duration::from_secs_f64(total_time)), + "Press P to save a trace".to_string(), + ]; + + // height / 5 is dedicated to the text labels and the rest is filled by + // the frame time. + let text_height = height * 0.2 / (1 + labels.len()) as f64; + let left_margin = width * 0.01; + let text_size = (text_height * 0.9) as f32; + for (i, label) in labels.iter().enumerate() { + text.add( + scene, + None, + text_size, + Some(&Brush::Solid(Color::WHITE)), + offset * Affine::translate((left_margin, (i + 1) as f64 * text_height)), + label, + ); + } + + let text_size = (text_height * 0.9) as f32; + for (i, label) in labels.iter().enumerate() { + text.add( + scene, + None, + text_size, + Some(&Brush::Solid(Color::WHITE)), + offset * Affine::translate((left_margin, (i + 1) as f64 * text_height)), + label, + ); + } + } + let timeline_start_y = height * 0.21; + let timeline_range_y = height * 0.78; + let timeline_range_end = timeline_start_y + timeline_range_y; + + // Add 6 items worth of margin + let text_height = timeline_range_y / (6 + count) as f64; + let left_margin = width * 0.35; + let mut cur_text_y = timeline_start_y; + let mut cur_index = 0; + let mut depth = 0; + // Leave 1 bar's worth of margin + let depth_width = width * 0.28 / (max_depth + 1) as f64; + let depth_size = depth_width * 0.8; + traverse_profiling(profiles, &mut |profile, stage| { + if let TraversalStage::Enter = stage { + let start_normalised = + ((profile.time.start - min) / total_time) * timeline_range_y + timeline_start_y; + let end_normalised = + ((profile.time.end - min) / total_time) * timeline_range_y + timeline_start_y; + + let color = COLORS[cur_index % COLORS.len()]; + let x = width * 0.01 + (depth as f64 * depth_width); + scene.fill( + Fill::NonZero, + offset, + &Brush::Solid(color), + None, + &Rect::new(x, start_normalised, x + depth_size, end_normalised), + ); + + let mut text_start = start_normalised; + let nested = !profile.nested_queries.is_empty(); + if nested { + // If we have children, leave some more space for them + text_start -= text_height * 0.7; + } + let this_time = profile.time.end - profile.time.start; + // Highlight as important if more than 10% of the total time, or + // more than 1ms + let slow = this_time * 20. >= total_time || this_time >= 0.001; + let text_y = text_start + // Ensure that we don't overlap the previous item + .max(cur_text_y) + // Ensure that all remaining items can fit + .min(timeline_range_end - (count - cur_index) as f64 * text_height); + let (text_height, text_color) = if slow { + (text_height, Color::WHITE) + } else { + (text_height * 0.6, Color::LIGHT_GRAY) + }; + let text_size = (text_height * 0.9) as f32; + // Text is specified by the baseline, but the y positions all refer + // to the top of the text + cur_text_y = text_y + text_height; + let label = format!( + "{:.2?} - {:.30}", + Duration::from_secs_f64(this_time), + profile.label + ); + scene.fill( + Fill::NonZero, + offset, + &Brush::Solid(color), + None, + &Rect::new( + width * 0.31, + cur_text_y - text_size as f64 * 0.7, + width * 0.34, + cur_text_y, + ), + ); + text.add( + scene, + None, + text_size, + Some(&Brush::Solid(text_color)), + offset * Affine::translate((left_margin, cur_text_y)), + &label, + ); + if !nested && slow { + scene.stroke( + &Stroke::new(2.), + offset, + &Brush::Solid(color), + None, + &Line::new( + (x + depth_size, (end_normalised + start_normalised) / 2.), + (width * 0.31, cur_text_y - text_size as f64 * 0.35), + ), + ); + } + cur_index += 1; + // Higher depth applies only to the children + depth += 1; + } else { + depth -= 1; + } + }); +} + +enum TraversalStage { + Enter, + Leave, +} + +fn traverse_profiling( + profiles: &[GpuTimerQueryResult], + callback: &mut impl FnMut(&GpuTimerQueryResult, TraversalStage), +) { + for profile in profiles { + callback(profile, TraversalStage::Enter); + traverse_profiling(&profile.nested_queries, &mut *callback); + callback(profile, TraversalStage::Leave); + } +} diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..ce1f14b --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,4 @@ +max_width = 100 +use_field_init_shorthand = true +newline_style = "Unix" +# TODO: imports_granularity = "Module" - Wait for this to be stable. diff --git a/src/import.rs b/src/import.rs deleted file mode 100644 index 12c2ac7..0000000 --- a/src/import.rs +++ /dev/null @@ -1,549 +0,0 @@ -// Copyright 2023 the Velato Authors -// SPDX-License-Identifier: Apache-2.0 OR MIT - -use crate::model::animated::Position; - -use super::{model, model::*, Composition}; - -use vello::kurbo::{Point, Size, Vec2}; -use vello::peniko::{self, BlendMode, Color, Compose, Mix}; - -use std::collections::HashMap; - -pub fn import_composition( - source: impl AsRef<[u8]>, -) -> Result> { - let source = bodymovin::Bodymovin::from_bytes(source)?; - let mut target = Composition::default(); - target.frame_rate = source.frame_rate as f32; - target.frames = source.in_point as f32..source.out_point as f32; - target.width = source.width as u32; - target.height = source.height as u32; - let mut idmap: HashMap = HashMap::default(); - for asset in &source.assets { - match asset { - bodymovin::sources::Asset::PreComp(precomp) => { - idmap.clear(); - let mut layers = vec![]; - let mut mask_layer = None; - for layer in &precomp.layers { - let index = layers.len(); - if let Some((mut layer, id, mask_blend)) = conv_layer(layer) { - if let (Some(mask_blend), Some(mask_layer)) = - (mask_blend, mask_layer.take()) - { - layer.mask_layer = Some((mask_blend, mask_layer)); - } - if layer.is_mask { - mask_layer = Some(index); - } - idmap.insert(id, index); - layers.push(layer); - } - } - for layer in &mut layers { - if let Some(parent) = layer.parent { - layer.parent = idmap.get(&parent).copied(); - } - } - target.assets.insert(precomp.id.clone(), layers); - } - _ => {} - } - } - idmap.clear(); - let mut layers = vec![]; - let mut mask_layer = None; - for layer in &source.layers { - let index = layers.len(); - if let Some((mut layer, id, mask_blend)) = conv_layer(layer) { - if let (Some(mask_blend), Some(mask_layer)) = (mask_blend, mask_layer.take()) { - layer.mask_layer = Some((mask_blend, mask_layer)); - } - if layer.is_mask { - mask_layer = Some(index); - } - idmap.insert(id, index); - layers.push(layer); - } - } - for layer in &mut layers { - if let Some(parent) = layer.parent { - layer.parent = idmap.get(&parent).copied(); - } - } - target.layers = layers; - Ok(target) -} - -fn conv_layer(source: &bodymovin::layers::AnyLayer) -> Option<(Layer, usize, Option)> { - use bodymovin::layers::AnyLayer; - let mut layer = Layer::default(); - let params; - match source { - AnyLayer::Null(value) => { - params = setup_layer(value, &mut layer); - } - AnyLayer::PreComp(value) => { - params = setup_layer(value, &mut layer); - let name = value.mixin.ref_id.clone(); - let time_remap = conv_scalar(&value.mixin.time_remapping); - layer.content = Content::Instance { name, time_remap }; - } - AnyLayer::Shape(value) => { - params = setup_layer(value, &mut layer); - let mut shapes = vec![]; - for shape in &value.mixin.shapes { - if let Some(shape) = conv_shape(shape) { - shapes.push(shape); - } - } - layer.content = Content::Shape(shapes); - } - _ => return None, - } - let (id, matte_mode) = params; - Some((layer, id, matte_mode)) -} - -fn setup_layer( - source: &bodymovin::layers::Layer, - target: &mut Layer, -) -> (usize, Option) { - use bodymovin::helpers::MatteMode; - target.name = source.name.clone().unwrap_or_default(); - target.parent = source.parent.map(|i| i as usize); - let (transform, opacity) = conv_transform(&source.transform); - target.transform = transform; - target.opacity = opacity; - target.width = source.width.unwrap_or(0) as _; - target.height = source.height.unwrap_or(0) as _; - target.is_mask = source.is_track_matte; - let matte_mode = source.matte_mode.as_ref().map(|mode| match mode { - MatteMode::Normal => Mix::Normal.into(), - MatteMode::Alpha | MatteMode::Luma => Compose::SrcIn.into(), - MatteMode::InvertAlpha | MatteMode::InvertLuma => Compose::SrcOut.into(), - }); - target.blend_mode = conv_blend_mode(&source.blend_mode); - if target.blend_mode == Some(peniko::Mix::Normal.into()) { - target.blend_mode = None; - } - target.frames = source.in_point as f32..source.out_point as f32; - target.stretch = source.stretch as f32; - target.start_frame = source.start_time as f32; - for mask_source in &source.masks { - if let Some(geometry) = conv_shape_geometry(&mask_source.points) { - let mode = peniko::BlendMode::default(); - let opacity = conv_scalar(&mask_source.opacity); - target.masks.push(Mask { - mode, - geometry, - opacity, - }) - } - } - (source.index as usize, matte_mode) -} - -fn conv_transform(value: &bodymovin::helpers::Transform) -> (Transform, Value) { - let transform = animated::Transform { - anchor: conv_point(&value.anchor_point), - position: match &value.position { - bodymovin::properties::SplittableMultiDimensional::Uniform(position) => { - Position::Point(conv_point(position)) - } - bodymovin::properties::SplittableMultiDimensional::Split(split_vector) => { - Position::SplitComponents(( - conv_scalar(&split_vector.x_component), - conv_scalar(&split_vector.y_component), - )) - } - }, - scale: conv_vec2(&value.scale), - rotation: conv_scalar(&value.rotation), - skew: conv_scalar(&value.skew), - skew_angle: conv_scalar(&value.skew_axis), - }; - let opacity = conv_scalar(&value.opacity); - (transform.to_model(), opacity) -} - -fn conv_shape_transform(value: &bodymovin::shapes::Transform) -> GroupTransform { - let transform = animated::Transform { - anchor: conv_point(&value.anchor_point), - position: Position::Point(conv_point(&value.position)), - scale: conv_vec2(&value.scale), - rotation: conv_scalar(&value.rotation), - skew: conv_scalar(&value.skew), - skew_angle: conv_scalar(&value.skew_axis), - }; - let opacity = conv_scalar(&value.opacity); - GroupTransform { - transform: transform.to_model(), - opacity, - } -} - -fn conv_scalar(value: &bodymovin::properties::Scalar) -> Value { - use bodymovin::properties::Value::*; - match &value.value { - Fixed(value) => Value::Fixed(*value as f32), - Animated(animated) => { - let mut frames = vec![]; - let mut values = vec![]; - let mut last_value = None; - for value in animated { - if let Some(data) = value.start_value.as_ref().or(last_value.flatten()) { - frames.push(Time { - frame: value.start_time as f32, - }); - values.push(data.0 as f32); - } - last_value = Some(value.end_value.as_ref()); - } - Value::Animated(model::Animated { - times: frames, - values, - }) - } - } -} - -fn conv_multi( - value: &bodymovin::properties::MultiDimensional, - f: impl Fn(&Vec) -> T, -) -> Value { - use bodymovin::properties::Value::*; - match &value.value { - Fixed(value) => Value::Fixed(f(value)), - Animated(animated) => { - let mut frames = vec![]; - let mut values = vec![]; - let mut last_value = None; - for value in animated { - if let Some(data) = value.start_value.as_ref().or(last_value) { - frames.push(Time { - frame: value.start_time as f32, - }); - values.push(f(data)); - } - last_value = value.end_value.as_ref(); - } - Value::Animated(model::Animated { - times: frames, - values, - }) - } - } -} - -fn conv_point(value: &bodymovin::properties::MultiDimensional) -> Value { - conv_multi(value, |x| { - Point::new( - x.get(0).copied().unwrap_or(0.0), - x.get(1).copied().unwrap_or(0.0), - ) - }) -} - -fn conv_color(value: &bodymovin::properties::MultiDimensional) -> Value { - conv_multi(value, |x| { - Color::rgb( - x.get(0).copied().unwrap_or(0.0), - x.get(1).copied().unwrap_or(0.0), - x.get(2).copied().unwrap_or(0.0), - ) - }) -} - -fn conv_vec2(value: &bodymovin::properties::MultiDimensional) -> Value { - conv_multi(value, |x| { - Vec2::new( - x.get(0).copied().unwrap_or(0.0), - x.get(1).copied().unwrap_or(0.0), - ) - }) -} - -fn conv_size(value: &bodymovin::properties::MultiDimensional) -> Value { - conv_multi(value, |x| { - Size::new( - x.get(0).copied().unwrap_or(0.0), - x.get(1).copied().unwrap_or(0.0), - ) - }) -} - -fn conv_gradient_colors(value: &bodymovin::helpers::GradientColors) -> ColorStops { - use bodymovin::properties::Value::*; - let count = value.count as usize; - match &value.colors.value { - Fixed(value) => { - let mut stops = fixed::ColorStops::new(); - for chunk in value.chunks_exact(4) { - stops.push( - ( - chunk[0] as f32, - fixed::Color::rgba(chunk[1], chunk[2], chunk[3], 1.0), - ) - .into(), - ) - } - ColorStops::Fixed(stops) - } - Animated(animated) => { - let mut frames = vec![]; - let mut values = vec![]; - let mut last_value = None; - for value in animated { - if let Some(data) = value.start_value.as_ref().or(last_value.flatten()) { - frames.push(Time { - frame: value.start_time as f32, - }); - values.push(data.iter().map(|x| *x as f32).collect::>()); - } - last_value = Some(value.end_value.as_ref()); - } - ColorStops::Animated(animated::ColorStops { - frames, - values, - count, - }) - } - } -} - -fn conv_draw(value: &bodymovin::shapes::AnyShape) -> Option { - use bodymovin::helpers::{LineCap, LineJoin}; - use bodymovin::shapes::{AnyShape, GradientType}; - use peniko::{Cap, Join}; - match value { - AnyShape::Fill(value) => { - let color = conv_color(&value.color); - let brush = animated::Brush::Solid(color).to_model(); - let opacity = conv_scalar(&value.opacity); - Some(Draw { - stroke: None, - brush, - opacity, - }) - } - AnyShape::Stroke(value) => { - let stroke = animated::Stroke { - width: conv_scalar(&value.width), - join: match value.line_join { - LineJoin::Bevel => Join::Bevel, - LineJoin::Round => Join::Round, - LineJoin::Miter => Join::Miter, - }, - miter_limit: value.miter_limit.map(|x| x as f32), - cap: match value.line_cap { - LineCap::Butt => Cap::Butt, - LineCap::Round => Cap::Round, - LineCap::Square => Cap::Square, - }, - }; - let color = conv_color(&value.color); - let brush = animated::Brush::Solid(color).to_model(); - let opacity = conv_scalar(&value.opacity); - Some(Draw { - stroke: Some(stroke.to_model()), - brush, - opacity, - }) - } - AnyShape::GradientFill(value) => { - let is_radial = matches!(value.ty, GradientType::Radial); - let start_point = conv_point(&value.start_point); - let end_point = conv_point(&value.end_point); - let gradient = animated::Gradient { - is_radial, - start_point, - end_point, - stops: conv_gradient_colors(&value.gradient_colors), - }; - let brush = animated::Brush::Gradient(gradient).to_model(); - Some(Draw { - stroke: None, - brush, - opacity: Value::Fixed(100.0), - }) - } - AnyShape::GradientStroke(value) => { - let stroke = animated::Stroke { - width: conv_scalar(&value.stroke_width), - join: match value.line_join { - LineJoin::Bevel => Join::Bevel, - LineJoin::Round => Join::Round, - LineJoin::Miter => Join::Miter, - }, - miter_limit: value.miter_limit.map(|x| x as f32), - cap: match value.line_cap { - LineCap::Butt => Cap::Butt, - LineCap::Round => Cap::Round, - LineCap::Square => Cap::Square, - }, - }; - let is_radial = matches!(value.ty, GradientType::Radial); - let start_point = conv_point(&value.start_point); - let end_point = conv_point(&value.end_point); - let gradient = animated::Gradient { - is_radial, - start_point, - end_point, - stops: conv_gradient_colors(&value.gradient_colors), - }; - let brush = animated::Brush::Gradient(gradient).to_model(); - Some(Draw { - stroke: Some(stroke.to_model()), - brush, - opacity: Value::Fixed(100.0), - }) - } - _ => None, - } -} - -fn conv_shape(value: &bodymovin::shapes::AnyShape) -> Option { - use bodymovin::shapes::AnyShape; - if let Some(draw) = conv_draw(value) { - return Some(Shape::Draw(draw)); - } else if let Some(geometry) = conv_geometry(value) { - return Some(Shape::Geometry(geometry)); - } - match value { - AnyShape::Group(value) => { - let mut shapes = vec![]; - let mut group_transform = None; - for item in &value.items { - match item { - AnyShape::Transform(transform) => { - group_transform = Some(conv_shape_transform(transform)); - } - _ => { - if let Some(shape) = conv_shape(item) { - shapes.push(shape); - } - } - } - } - if !shapes.is_empty() { - Some(Shape::Group(shapes, group_transform)) - } else { - None - } - } - AnyShape::Repeater(value) => { - let repeater = animated::Repeater { - copies: conv_scalar(&value.copies), - offset: conv_scalar(&value.offset), - anchor_point: conv_point(&value.transform.anchor_point), - position: conv_point(&value.transform.position), - rotation: conv_scalar(&value.transform.rotation), - scale: conv_vec2(&value.transform.scale), - start_opacity: conv_scalar(&value.transform.start_opacity), - end_opacity: conv_scalar(&value.transform.end_opacity), - }; - Some(Shape::Repeater(repeater.to_model())) - } - _ => None, - } -} - -fn conv_geometry(value: &bodymovin::shapes::AnyShape) -> Option { - use bodymovin::shapes::AnyShape; - match value { - AnyShape::Ellipse(value) => { - let ellipse = animated::Ellipse { - is_ccw: value.direction as i32 == 3, - position: conv_point(&value.position), - size: conv_size(&value.size), - }; - Some(Geometry::Ellipse(ellipse)) - } - AnyShape::Rect(value) => { - let rect = animated::Rect { - is_ccw: value.direction as i32 == 3, - position: conv_point(&value.position), - size: conv_size(&value.size), - corner_radius: conv_scalar(&value.rounded_corners), - }; - Some(Geometry::Rect(rect)) - } - AnyShape::Shape(value) => conv_shape_geometry(&value.vertices), - _ => None, - } -} - -fn conv_shape_geometry(value: &bodymovin::properties::Shape) -> Option { - use bodymovin::properties::Value::*; - let mut is_closed = false; - match &value.value { - Fixed(value) => { - let (points, is_closed) = conv_spline(value); - let mut path = vec![]; - points.as_slice().to_path(is_closed, &mut path); - Some(Geometry::Fixed(path)) - } - Animated(animated) => { - let mut frames = vec![]; - let mut values = vec![]; - let mut last_value = None; - for value in animated { - if let Some(data) = value.start_value.as_ref().or(last_value) { - frames.push(Time { - frame: value.start_time as f32, - }); - let (points, is_frame_closed) = conv_spline(data.get(0)?); - values.push(points); - is_closed |= is_frame_closed; - } - last_value = value.end_value.as_ref(); - } - Some(Geometry::Spline(animated::Spline { - is_closed, - times: frames, - values, - })) - } - } -} - -fn conv_spline(value: &bodymovin::properties::ShapeValue) -> (Vec, bool) { - use core::iter::repeat; - let mut points = Vec::with_capacity(value.vertices.len() * 3); - let is_closed = value.closed.unwrap_or(false); - for ((v, i), o) in value - .vertices - .iter() - .zip(value.in_point.iter().chain(repeat(&(0.0, 0.0)))) - .zip(value.out_point.iter().chain(repeat(&(0.0, 0.0)))) - { - points.push((v.0, v.1).into()); - points.push((i.0, i.1).into()); - points.push((o.0, o.1).into()); - } - (points, is_closed) -} - -fn conv_blend_mode(value: &bodymovin::helpers::BlendMode) -> Option { - use bodymovin::helpers::BlendMode::*; - Some(match value { - Normal => return None, - Multiply => BlendMode::from(Mix::Multiply), - Screen => BlendMode::from(Mix::Screen), - Overlay => BlendMode::from(Mix::Overlay), - Darken => BlendMode::from(Mix::Darken), - Lighten => BlendMode::from(Mix::Lighten), - ColorDodge => BlendMode::from(Mix::ColorDodge), - ColorBurn => BlendMode::from(Mix::ColorBurn), - HardLight => BlendMode::from(Mix::HardLight), - SoftLight => BlendMode::from(Mix::SoftLight), - Difference => BlendMode::from(Mix::Difference), - Exclusion => BlendMode::from(Mix::Exclusion), - Hue => BlendMode::from(Mix::Hue), - Saturation => BlendMode::from(Mix::Saturation), - Color => BlendMode::from(Mix::Color), - Luminosity => BlendMode::from(Mix::Luminosity), - }) -} diff --git a/src/import/builders.rs b/src/import/builders.rs new file mode 100644 index 0000000..bfd887a --- /dev/null +++ b/src/import/builders.rs @@ -0,0 +1,205 @@ +// Copyright 2024 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use super::converters::{conv_blend_mode, conv_scalar, conv_shape_geometry, conv_transform}; +use super::defaults::FLOAT_VALUE_ONE_HUNDRED; +use crate::runtime::model::Layer; +use crate::schema::helpers::int_boolean::BoolInt; +use crate::{runtime, schema}; +use vello::peniko::{self, BlendMode, Compose, Mix}; + +pub fn setup_precomp_layer( + source: &schema::layers::precomposition::PrecompositionLayer, + target: &mut Layer, +) -> (usize, Option) { + target.name = source.properties.name.clone().unwrap_or_default(); + target.parent = source.properties.parent_index; + let (transform, opacity) = conv_transform(&source.properties.transform); + target.transform = transform; + target.opacity = opacity; + target.width = source.width; + target.height = source.height; + target.is_mask = source + .properties + .matte_target + .as_ref() + .map_or(false, |td| *td == BoolInt::True); + + let matte_mode = source + .properties + .matte_mode + .as_ref() + .map(|mode| match mode { + schema::constants::matte_mode::MatteMode::Normal => Mix::Normal.into(), + schema::constants::matte_mode::MatteMode::Alpha + | schema::constants::matte_mode::MatteMode::Luma => Compose::SrcIn.into(), + schema::constants::matte_mode::MatteMode::InvertedAlpha + | schema::constants::matte_mode::MatteMode::InvertedLuma => Compose::SrcOut.into(), + }); + + target.blend_mode = conv_blend_mode( + source + .properties + .blend_mode + .as_ref() + .unwrap_or(&crate::schema::constants::blend_mode::BlendMode::Normal), + ); + if target.blend_mode == Some(peniko::Mix::Normal.into()) { + target.blend_mode = None; + } + target.stretch = source.properties.time_stretch.unwrap_or(1.0); + target.frames = source.properties.in_point..source.properties.out_point; + target.start_frame = source.properties.start_time; + + for mask_source in source + .properties + .masks_properties + .as_ref() + .unwrap_or(&Vec::default()) + { + if let Some(shape) = &mask_source.shape { + if let Some(geometry) = conv_shape_geometry(shape) { + let mode = peniko::BlendMode::default(); + let opacity = conv_scalar( + mask_source + .opacity + .as_ref() + .unwrap_or(&FLOAT_VALUE_ONE_HUNDRED), + ); + target.masks.push(runtime::model::Mask { + mode, + geometry, + opacity, + }) + } + } + } + + (source.properties.index.unwrap_or(0), matte_mode) +} + +pub fn setup_shape_layer( + source: &schema::layers::shape::ShapeLayer, + target: &mut Layer, +) -> (usize, Option) { + target.name = source.properties.name.clone().unwrap_or_default(); + target.parent = source.properties.parent_index; + let (transform, opacity) = conv_transform(&source.properties.transform); + target.transform = transform; + target.opacity = opacity; + target.is_mask = source + .properties + .matte_target + .as_ref() + .map_or(false, |td| *td == BoolInt::True); + + let matte_mode = source + .properties + .matte_mode + .as_ref() + .map(|mode| match mode { + schema::constants::matte_mode::MatteMode::Normal => Mix::Normal.into(), + schema::constants::matte_mode::MatteMode::Alpha + | schema::constants::matte_mode::MatteMode::Luma => Compose::SrcIn.into(), + schema::constants::matte_mode::MatteMode::InvertedAlpha + | schema::constants::matte_mode::MatteMode::InvertedLuma => Compose::SrcOut.into(), + }); + + target.blend_mode = conv_blend_mode( + source + .properties + .blend_mode + .as_ref() + .unwrap_or(&crate::schema::constants::blend_mode::BlendMode::Normal), + ); + if target.blend_mode == Some(peniko::Mix::Normal.into()) { + target.blend_mode = None; + } + target.stretch = source.properties.time_stretch.unwrap_or(1.0); + target.frames = source.properties.in_point..source.properties.out_point; + target.start_frame = source.properties.start_time; + + for mask_source in source + .properties + .masks_properties + .as_ref() + .unwrap_or(&Vec::default()) + { + if let Some(shape) = &mask_source.shape { + if let Some(geometry) = conv_shape_geometry(shape) { + let mode = peniko::BlendMode::default(); + let opacity = conv_scalar( + mask_source + .opacity + .as_ref() + .unwrap_or(&FLOAT_VALUE_ONE_HUNDRED), + ); + target.masks.push(runtime::model::Mask { + mode, + geometry, + opacity, + }) + } + } + } + + (source.properties.index.unwrap_or(0), matte_mode) +} + +pub fn setup_layer_base( + source: &schema::layers::visual::VisualLayer, + target: &mut Layer, +) -> (usize, Option) { + target.name = source.name.clone().unwrap_or_default(); + target.parent = source.parent_index; + let (transform, opacity) = conv_transform(&source.transform); + target.transform = transform; + target.opacity = opacity; + target.is_mask = source + .matte_target + .as_ref() + .map_or(false, |td| *td == BoolInt::True); + + let matte_mode = source.matte_mode.as_ref().map(|mode| match mode { + schema::constants::matte_mode::MatteMode::Normal => Mix::Normal.into(), + schema::constants::matte_mode::MatteMode::Alpha + | schema::constants::matte_mode::MatteMode::Luma => Compose::SrcIn.into(), + schema::constants::matte_mode::MatteMode::InvertedAlpha + | schema::constants::matte_mode::MatteMode::InvertedLuma => Compose::SrcOut.into(), + }); + + target.blend_mode = conv_blend_mode( + source + .blend_mode + .as_ref() + .unwrap_or(&crate::schema::constants::blend_mode::BlendMode::Normal), + ); + // TODO: Why do we do this next part? + if target.blend_mode == Some(peniko::Mix::Normal.into()) { + target.blend_mode = None; + } + target.stretch = source.time_stretch.unwrap_or(1.0); + target.frames = source.in_point..source.out_point; + target.start_frame = source.start_time; + + for mask_source in source.masks_properties.as_ref().unwrap_or(&Vec::default()) { + if let Some(shape) = &mask_source.shape { + if let Some(geometry) = conv_shape_geometry(shape) { + let mode = peniko::BlendMode::default(); + let opacity = conv_scalar( + mask_source + .opacity + .as_ref() + .unwrap_or(&FLOAT_VALUE_ONE_HUNDRED), + ); + target.masks.push(runtime::model::Mask { + mode, + geometry, + opacity, + }) + } + } + } + + (source.index.unwrap_or(0), matte_mode) +} diff --git a/src/import/converters.rs b/src/import/converters.rs new file mode 100644 index 0000000..76449a3 --- /dev/null +++ b/src/import/converters.rs @@ -0,0 +1,778 @@ +// Copyright 2024 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use std::collections::HashMap; + +use super::builders::{setup_layer_base, setup_precomp_layer, setup_shape_layer}; +use super::defaults::{FLOAT_VALUE_ONE_HUNDRED, FLOAT_VALUE_ZERO, MULTIDIM_ONE, POSITION_ZERO}; +use crate::import::util::calc_stops; +use crate::runtime::model::animated::{self, Position}; +use crate::runtime::model::{ + self, Content, Draw, EasingHandle, GroupTransform, Layer, SplineToPath, Time, Tween, Value, +}; +use crate::runtime::{self}; +use crate::schema::animated_properties::keyframe_bezier_handle::{ + KeyframeBezierHandle, KeyframeComponent, +}; +use crate::schema::animated_properties::multi_dimensional::MultiDimensional; +use crate::schema::animated_properties::split_vector::SplitVector; +use crate::schema::constants::gradient_type::GradientType; +use crate::schema::helpers::int_boolean::BoolInt; +use crate::{schema, Composition}; +use vello::kurbo::{Cap, Join, Point, Size, Vec2}; +use vello::peniko::{BlendMode, Color, Mix}; + +pub fn conv_animation(source: schema::Animation) -> Composition { + let mut target = Composition { + frames: source.in_point..source.out_point, + frame_rate: source.frame_rate, + width: source.width, + height: source.height, + assets: Default::default(), + layers: Default::default(), + }; + + // Collect assets and layers + let mut idmap: HashMap = HashMap::default(); + if let Some(assets) = source.assets { + for asset in assets { + match asset { + schema::assets::AnyAsset::Precomposition(precomp) => { + idmap.clear(); + let mut layers = vec![]; + let mut mask_layer = None; + for layer in precomp.composition.layers.iter() { + let index = layers.len(); + if let Some((mut layer, id, mask_blend)) = conv_layer(layer) { + if let (Some(mask_blend), Some(mask_layer)) = + (mask_blend, mask_layer.take()) + { + layer.mask_layer = Some((mask_blend, mask_layer)); + } + if layer.is_mask { + mask_layer = Some(index); + } + idmap.insert(id, index); + layers.push(layer); + } + } + for layer in &mut layers { + if let Some(parent) = layer.parent { + layer.parent = idmap.get(&parent).copied(); + } + } + target.assets.insert(precomp.asset.id.clone(), layers); + } + asset => { + unimplemented!("asset {:?} is not yet implemented", asset) + } + } + } + } + + idmap.clear(); + let mut layers = vec![]; + let mut mask_layer = None; + for layer in &source.layers { + let index = layers.len(); + if let Some((mut layer, id, mask_blend)) = conv_layer(layer) { + if let (Some(mask_blend), Some(mask_layer)) = (mask_blend, mask_layer.take()) { + layer.mask_layer = Some((mask_blend, mask_layer)); + } + if layer.is_mask { + mask_layer = Some(index); + } + idmap.insert(id, index); + layers.push(layer); + } + } + for layer in &mut layers { + if let Some(parent) = layer.parent { + layer.parent = idmap.get(&parent).copied(); + } + } + target.layers = layers; + + target +} + +pub fn conv_layer(source: &schema::layers::AnyLayer) -> Option<(Layer, usize, Option)> { + let mut layer = Layer::default(); + + let params = match source { + schema::layers::AnyLayer::Null(null_layer) => { + if let Some(true) = null_layer.properties.hidden { + return None; + } + + setup_layer_base(&null_layer.properties, &mut layer) + } + schema::layers::AnyLayer::Precomposition(precomp_layer) => { + if let Some(true) = precomp_layer.properties.hidden { + return None; + } + + let params = setup_precomp_layer(precomp_layer, &mut layer); + let name = precomp_layer.precomp_id.clone(); + let time_remap = precomp_layer.time_remap.as_ref().map(conv_scalar); + layer.content = Content::Instance { name, time_remap }; + + params + } + schema::layers::AnyLayer::Shape(shape_layer) => { + if let Some(true) = shape_layer.properties.hidden { + return None; + } + + let params = setup_shape_layer(shape_layer, &mut layer); + let mut shapes = vec![]; + for shape in &shape_layer.shapes { + if let Some(shape) = conv_shape(shape) { + shapes.push(shape); + } + } + layer.content = Content::Shape(shapes); + + params + } + schema::layers::AnyLayer::SolidColor(solid_color_layer) => { + if let Some(true) = solid_color_layer.properties.hidden { + return None; + } + + setup_layer_base(&solid_color_layer.properties, &mut layer) + } + }; + + let (id, matte_mode) = params; + Some((layer, id, matte_mode)) +} + +pub fn conv_transform( + value: &schema::helpers::transform::Transform, +) -> (runtime::model::Transform, Value) { + let rotation_in = match &value.rotation { + Some(any_trans) => match any_trans { + schema::helpers::transform::AnyTransformR::Rotation(float_value) => float_value, + // todo: need to actually handle split rotations + schema::helpers::transform::AnyTransformR::SplitRotation { .. } => todo!(), + }, + None => todo!("split rotation"), + }; + + let position = match &value.position { + schema::helpers::transform::AnyTransformP::Position(position) => { + Position::Value(conv_pos_point(position)) + } + schema::helpers::transform::AnyTransformP::SplitPosition(SplitVector { x, y, .. }) => { + Position::SplitValues((conv_scalar(x), conv_scalar(y))) + } + }; + + let transform = animated::Transform { + anchor: conv_pos_point(value.anchor_point.as_ref().unwrap_or(&POSITION_ZERO)), + position, + scale: conv_vec2(value.scale.as_ref().unwrap_or(&MULTIDIM_ONE)), + rotation: conv_scalar(rotation_in), + skew: conv_scalar(value.skew.as_ref().unwrap_or(&FLOAT_VALUE_ZERO)), + skew_angle: conv_scalar(value.skew_axis.as_ref().unwrap_or(&FLOAT_VALUE_ZERO)), + }; + let opacity = conv_scalar(value.opacity.as_ref().unwrap_or(&FLOAT_VALUE_ONE_HUNDRED)); + (transform.into_model(), opacity) +} + +pub fn conv_shape_transform(value: &schema::shapes::transform::TransformShape) -> GroupTransform { + let rotation_in = match &value.transform.rotation { + Some(any_trans) => match any_trans { + schema::helpers::transform::AnyTransformR::Rotation(float_value) => float_value, + // todo: need to actually handle split rotations + schema::helpers::transform::AnyTransformR::SplitRotation { .. } => { + todo!("split rotation") + } + }, + None => &FLOAT_VALUE_ZERO, + }; + let position_in = match &value.transform.position { + schema::helpers::transform::AnyTransformP::Position(position) => position, + schema::helpers::transform::AnyTransformP::SplitPosition(_) => { + // todo: split vectors + todo!("split position"); + } + }; + + let transform = animated::Transform { + anchor: conv_pos_point( + value + .transform + .anchor_point + .as_ref() + .unwrap_or(&POSITION_ZERO), + ), + position: Position::Value(conv_pos_point(position_in)), + scale: conv_vec2(value.transform.scale.as_ref().unwrap_or(&MULTIDIM_ONE)), + rotation: conv_scalar(rotation_in), + skew: conv_scalar(value.transform.skew.as_ref().unwrap_or(&FLOAT_VALUE_ZERO)), + skew_angle: conv_scalar( + value + .transform + .skew_axis + .as_ref() + .unwrap_or(&FLOAT_VALUE_ZERO), + ), + }; + + let opacity = conv_scalar( + value + .transform + .opacity + .as_ref() + .unwrap_or(&FLOAT_VALUE_ONE_HUNDRED), + ); + + GroupTransform { + transform: transform.into_model(), + opacity, + } +} + +pub fn conv_keyframes<'a, T: Tween>( + keyframes: impl Iterator, + f: impl Fn(&schema::animated_properties::keyframe::Keyframe) -> T, +) -> Value { + let mut frames = vec![]; + let mut values = vec![]; + + let collect_tangents = |handle: &Option| { + let mut handles = vec![]; + let Some(handle) = handle else { return handles }; + match (&handle.x_coordinate, &handle.y_coordinate) { + (KeyframeComponent::ArrayOfValues(xarr), KeyframeComponent::ArrayOfValues(yarr)) => { + handles.extend( + xarr.iter() + .zip(yarr) + .map(|(x, y)| EasingHandle { x: *x, y: *y }), + ); + } + (KeyframeComponent::ArrayOfValues(xarr), KeyframeComponent::SingleValue(y)) => { + handles.extend(xarr.iter().map(|x| EasingHandle { x: *x, y: *y })); + } + (KeyframeComponent::SingleValue(x), KeyframeComponent::ArrayOfValues(yarr)) => { + handles.extend(yarr.iter().map(|y| EasingHandle { x: *x, y: *y })); + } + (KeyframeComponent::SingleValue(x), KeyframeComponent::SingleValue(y)) => { + handles.push(EasingHandle { x: *x, y: *y }); + } + } + handles + }; + + for keyframe in keyframes { + let hold = keyframe + .base + .hold + .as_ref() + .map(|b| b.eq(&BoolInt::True)) + .unwrap_or(false); + let in_tangents = collect_tangents(&keyframe.base.in_tangent); + let out_tangents = collect_tangents(&keyframe.base.out_tangent); + let tangents: Vec<_> = in_tangents.into_iter().zip(out_tangents).collect(); + if tangents.is_empty() { + frames.push(Time { + frame: keyframe.base.time, + in_tangent: None, + out_tangent: None, + hold, + }); + values.push(f(keyframe)); + } else { + for (in_tangent, out_tangent) in tangents { + frames.push(Time { + frame: keyframe.base.time, + in_tangent: Some(in_tangent), + out_tangent: Some(out_tangent), + hold, + }); + values.push(f(keyframe)); + } + } + } + Value::Animated(runtime::model::Animated { + times: frames, + values, + }) +} + +fn conv_keyframe_handle(handle: &KeyframeBezierHandle) -> EasingHandle { + let KeyframeBezierHandle { + x_coordinate, + y_coordinate, + } = handle; + let x = match x_coordinate { + KeyframeComponent::ArrayOfValues(arr) => { + assert!(arr.len() == 1, "{arr:?}"); + arr[0] + } + KeyframeComponent::SingleValue(v) => *v, + }; + let y = match y_coordinate { + KeyframeComponent::ArrayOfValues(arr) => { + assert!(arr.len() == 1); + arr[0] + } + KeyframeComponent::SingleValue(v) => *v, + }; + EasingHandle { x, y } +} + +fn conv_gradient_colors( + value: &schema::animated_properties::gradient_colors::GradientColors, +) -> runtime::model::ColorStops { + use schema::animated_properties::animated_property::AnimatedPropertyK::*; + + let count = value.count; + match &value.colors.animated_property.value { + Static(value) => runtime::model::ColorStops::Fixed({ + let mut stops = runtime::model::fixed::ColorStops::new(); + let raw = calc_stops(value, count); + for values in raw { + stops.push( + ( + values[0] as f32, + runtime::model::fixed::Color::rgba( + values[1], values[2], values[3], values[4], + ), + ) + .into(), + ); + } + stops + }), + AnimatedValue(animated) => { + let mut frames = vec![]; + let mut values: Vec> = vec![]; + for value in animated { + let hold = value + .base + .hold + .as_ref() + .map(|b| b.eq(&BoolInt::True)) + .unwrap_or(false); + frames.push(Time { + frame: value.base.time, + in_tangent: value.base.in_tangent.as_ref().map(conv_keyframe_handle), + out_tangent: value.base.out_tangent.as_ref().map(conv_keyframe_handle), + hold, + }); + + let stops = calc_stops(&value.value, count) + .into_iter() + .flatten() + .collect::>(); + + values.push(stops); + } + runtime::model::ColorStops::Animated(animated::ColorStops { + frames, + values, + count, + }) + } + } +} + +fn conv_draw(value: &schema::shapes::AnyShape) -> Option { + use schema::constants::line_cap::LineCap; + use schema::constants::line_join::LineJoin; + use schema::shapes::AnyShape; + + match value { + AnyShape::Fill(value) => { + let color = conv_color(&value.color); + let brush = animated::Brush::Solid(color).into_model(); + let opacity = conv_scalar(value.opacity.as_ref().unwrap_or(&FLOAT_VALUE_ONE_HUNDRED)); + Some(runtime::model::Draw { + stroke: None, + brush, + opacity, + }) + } + AnyShape::Stroke(value) => { + let stroke = animated::Stroke { + width: conv_scalar(&value.stroke_width), + join: match value.line_join.as_ref().unwrap_or(&LineJoin::Bevel) { + LineJoin::Bevel => Join::Bevel, + LineJoin::Round => Join::Round, + LineJoin::Miter => Join::Miter, + }, + miter_limit: value.miter_limit, + cap: match value.line_cap.as_ref().unwrap_or(&LineCap::Butt) { + LineCap::Butt => Cap::Butt, + LineCap::Round => Cap::Round, + LineCap::Square => Cap::Square, + }, + }; + let color = conv_color(&value.stroke_color); + let brush = animated::Brush::Solid(color).into_model(); + let opacity = conv_scalar(&value.opacity); + Some(runtime::model::Draw { + stroke: Some(stroke.into_model()), + brush, + opacity, + }) + } + AnyShape::GradientFill(value) => { + let is_radial = matches!(value.gradient.gradient_type, Some(GradientType::Radial)); + let start_point = conv_multi_point(&value.gradient.start_point); + let end_point = conv_multi_point(&value.gradient.end_point); + let gradient = animated::Gradient { + is_radial, + start_point, + end_point, + stops: conv_gradient_colors(&value.gradient.colors), + }; + let brush = animated::Brush::Gradient(gradient).into_model(); + Some(Draw { + stroke: None, + brush, + opacity: Value::Fixed(100.0), + }) + } + AnyShape::GradientStroke(value) => { + let stroke = animated::Stroke { + width: conv_scalar(&value.base_stroke.width), + join: match value + .base_stroke + .line_join + .as_ref() + .unwrap_or(&LineJoin::Round) + { + LineJoin::Bevel => Join::Bevel, + LineJoin::Round => Join::Round, + LineJoin::Miter => Join::Miter, + }, + miter_limit: value.base_stroke.miter_limit, + cap: match value + .base_stroke + .line_cap + .as_ref() + .unwrap_or(&LineCap::Round) + { + LineCap::Butt => Cap::Butt, + LineCap::Round => Cap::Round, + LineCap::Square => Cap::Square, + }, + }; + let is_radial = matches!( + value + .gradient + .gradient_type + .as_ref() + .unwrap_or(&GradientType::Linear), + GradientType::Radial + ); + let start_point = conv_multi_point(&value.gradient.start_point); + let end_point = conv_multi_point(&value.gradient.end_point); + let gradient = animated::Gradient { + is_radial, + start_point, + end_point, + stops: conv_gradient_colors(&value.gradient.colors), + }; + let brush = animated::Brush::Gradient(gradient).into_model(); + Some(Draw { + stroke: Some(stroke.into_model()), + brush, + opacity: Value::Fixed(100.0), + }) + } + _ => None, + } +} + +fn conv_shape(value: &schema::shapes::AnyShape) -> Option { + if let Some(draw) = conv_draw(value) { + return Some(crate::runtime::model::Shape::Draw(draw)); + } else if let Some(geometry) = conv_geometry(value) { + return Some(crate::runtime::model::Shape::Geometry(geometry)); + } + + match value { + schema::shapes::AnyShape::Group(value) => { + let mut shapes = vec![]; + let mut group_transform = None; + for item in &value.shapes { + match item { + schema::shapes::AnyShape::Transform(transform) => { + group_transform = Some(conv_shape_transform(transform)); + } + _ => { + if let Some(shape) = conv_shape(item) { + shapes.push(shape); + } + } + } + } + if !shapes.is_empty() { + Some(crate::runtime::model::Shape::Group(shapes, group_transform)) + } else { + None + } + } + // todo: implement repeater shape + // shapes::Shape::Repeater(value) => { + // let repeater = animated::Repeater { + // copies: conv_scalar(&value.copies), + // offset: conv_scalar(&value.offset), + // anchor_point: conv_point(&value.transform.anchor_point), + // position: conv_point(&value.transform.position), + // rotation: conv_scalar(&value.transform.rotation), + // scale: conv_vec2(&value.transform.scale), + // start_opacity: conv_scalar(&value.transform.start_opacity), + // end_opacity: conv_scalar(&value.transform.end_opacity), + // }; + // Some(Shape::Repeater(repeater.to_model())) + // } + _ => None, + } +} + +fn conv_geometry(value: &schema::shapes::AnyShape) -> Option { + use schema::shapes::AnyShape; + match value { + AnyShape::Ellipse(value) => { + let ellipse = animated::Ellipse { + is_ccw: false, /* todo: lottie schema does not have a field + * for this (anymore?) */ + position: conv_pos_point(&value.position), + size: conv_size(&value.size), + }; + Some(crate::runtime::model::Geometry::Ellipse(ellipse)) + } + AnyShape::Rectangle(value) => { + let rect = animated::Rect { + is_ccw: false, /* todo: lottie schema does not have a field + * for this (anymore?) */ + position: conv_pos_point(&value.position), + size: conv_size(&value.size), + corner_radius: conv_scalar(&value.rounded_corner_radius), + }; + Some(crate::runtime::model::Geometry::Rect(rect)) + } + AnyShape::Path(value) => conv_shape_geometry(&value.shape_property), + // todo: generic shape + _ => None, + } +} + +pub fn conv_shape_geometry( + value: &schema::animated_properties::shape_property::ShapeProperty, +) -> Option { + use schema::animated_properties::shape_property::ShapePropertyK::*; + let mut is_closed = false; + match &value.value { + Static(value) => { + let (points, is_closed) = conv_spline(value); + let mut path = vec![]; + points.as_slice().to_path(is_closed, &mut path); + Some(runtime::model::Geometry::Fixed(path)) + } + Animated(animated) => { + let mut frames = vec![]; + let mut values = vec![]; + for value in animated { + let hold = value + .base + .hold + .as_ref() + .map(|b| b.eq(&BoolInt::True)) + .unwrap_or(false); + frames.push(Time { + frame: value.base.time, + in_tangent: value.base.in_tangent.as_ref().map(conv_keyframe_handle), + out_tangent: value.base.out_tangent.as_ref().map(conv_keyframe_handle), + hold, + }); + let (points, is_frame_closed) = conv_spline(value.start.first()?); + values.push(points); + is_closed |= is_frame_closed; + } + Some(runtime::model::Geometry::Spline(animated::Spline { + is_closed, + times: frames, + values, + })) + } + } +} + +pub fn conv_spline(value: &schema::helpers::bezier::Bezier) -> (Vec, bool) { + use core::iter::repeat; + let mut points = Vec::with_capacity(value.vertices.len() * 3); + let is_closed = value.closed.unwrap_or(false); + + for ((v, i), o) in value + .vertices + .iter() + .zip(value.in_tangents.iter().chain(repeat(&[0.0, 0.0]))) + .zip(value.out_tangents.iter().chain(repeat(&[0.0, 0.0]))) + { + points.push((v[0], v[1]).into()); + points.push((i[0], i[1]).into()); + points.push((o[0], o[1]).into()); + } + (points, is_closed) +} + +pub fn conv_blend_mode( + value: &crate::schema::constants::blend_mode::BlendMode, +) -> Option { + use crate::schema::constants::blend_mode::BlendMode::*; + + Some(match value { + Normal => return None, + Multiply => BlendMode::from(Mix::Multiply), + Screen => BlendMode::from(Mix::Screen), + Overlay => BlendMode::from(Mix::Overlay), + Darken => BlendMode::from(Mix::Darken), + Lighten => BlendMode::from(Mix::Lighten), + ColorDodge => BlendMode::from(Mix::ColorDodge), + ColorBurn => BlendMode::from(Mix::ColorBurn), + HardLight => BlendMode::from(Mix::HardLight), + SoftLight => BlendMode::from(Mix::SoftLight), + Difference => BlendMode::from(Mix::Difference), + Exclusion => BlendMode::from(Mix::Exclusion), + Hue => BlendMode::from(Mix::Hue), + Saturation => BlendMode::from(Mix::Saturation), + Color => BlendMode::from(Mix::Color), + Luminosity => BlendMode::from(Mix::Luminosity), + Add => unimplemented!(), + HardMix => unimplemented!(), + }) +} + +pub fn conv_scalar(float_value: &schema::animated_properties::value::FloatValue) -> Value { + use crate::schema::animated_properties::animated_property::AnimatedPropertyK::*; + match &float_value.animated_property.value { + Static(number) => Value::Fixed(*number), + AnimatedValue(keyframes) => { + let mut frames = vec![]; + let mut values = vec![]; + for keyframe in keyframes { + let start_time = keyframe.base.time; + let data = keyframe.value[0]; + let hold = keyframe + .base + .hold + .as_ref() + .map(|b| b.eq(&BoolInt::True)) + .unwrap_or(false); + frames.push(crate::runtime::model::Time { + frame: start_time, + in_tangent: keyframe.base.in_tangent.as_ref().map(conv_keyframe_handle), + out_tangent: keyframe.base.out_tangent.as_ref().map(conv_keyframe_handle), + hold, + }); + values.push(data); + // todo: end_value deprecated but should we still push it if it + // exists? + } + Value::Animated(model::Animated { + times: frames, + values, + }) + } + } +} + +pub fn conv_multi( + multidimensional: &schema::animated_properties::multi_dimensional::MultiDimensional, + f: impl Fn(&Vec) -> T, +) -> Value { + use crate::schema::animated_properties::animated_property::AnimatedPropertyK::*; + + match &multidimensional.animated_property.value { + Static(components) => Value::Fixed(f(components)), + AnimatedValue(keyframes) => conv_keyframes(keyframes.iter(), |k| f(&k.value)), + } +} + +pub fn conv_multi_color( + color: &schema::animated_properties::color_value::ColorValue, + f: impl Fn(&Vec) -> T, +) -> Value { + use crate::schema::animated_properties::animated_property::AnimatedPropertyK::*; + + match &color.animated_property.value { + Static(components) => Value::Fixed(f(components)), + AnimatedValue(keyframes) => conv_keyframes(keyframes.iter(), |k| f(&k.value)), + } +} + +pub fn conv_pos( + position: &schema::animated_properties::position::Position, + f: impl Fn(&Vec) -> T, +) -> Value { + use crate::schema::animated_properties::position::PositionValueK::*; + + match &position.value { + Static(components) => Value::Fixed(f(components)), + Animated(pos_keyframes) => { + // TODO: Are we using PositionKeyframes here how we're supposed to? + // there are in_tangents and out_tangents in addition to the keyframes. + conv_keyframes(pos_keyframes.iter().map(|pk| &pk.keyframe), |k| f(&k.value)) + } + } +} + +#[allow(clippy::get_first)] +pub fn conv_pos_point(value: &schema::animated_properties::position::Position) -> Value { + conv_pos(value, |x| { + Point::new( + x.get(0).copied().unwrap_or(0.0), + x.get(1).copied().unwrap_or(0.0), + ) + }) +} + +#[allow(clippy::get_first)] +pub fn conv_multi_point( + value: &schema::animated_properties::multi_dimensional::MultiDimensional, +) -> Value { + conv_multi(value, |x| { + Point::new( + x.get(0).copied().unwrap_or(0.0), + x.get(1).copied().unwrap_or(0.0), + ) + }) +} + +#[allow(clippy::get_first)] +pub fn conv_color(value: &schema::animated_properties::color_value::ColorValue) -> Value { + conv_multi_color(value, |x| { + Color::rgb( + x.get(0).copied().unwrap_or(0.0), + x.get(1).copied().unwrap_or(0.0), + x.get(2).copied().unwrap_or(0.0), + ) + }) +} + +#[allow(clippy::get_first)] +pub fn conv_vec2(value: &MultiDimensional) -> Value { + conv_multi(value, |x| { + Vec2::new( + x.get(0).copied().unwrap_or(0.0), + x.get(1).copied().unwrap_or(0.0), + ) + }) +} + +#[allow(clippy::get_first)] +pub fn conv_size(value: &MultiDimensional) -> Value { + conv_multi(value, |x| { + Size::new( + x.get(0).copied().unwrap_or(0.0), + x.get(1).copied().unwrap_or(0.0), + ) + }) +} diff --git a/src/import/defaults.rs b/src/import/defaults.rs new file mode 100644 index 0000000..fa0ee41 --- /dev/null +++ b/src/import/defaults.rs @@ -0,0 +1,49 @@ +// Copyright 2024 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use crate::schema::animated_properties::animated_property::{AnimatedProperty, AnimatedPropertyK}; +use crate::schema::animated_properties::multi_dimensional::MultiDimensional; +use crate::schema::animated_properties::position::Position; +use crate::schema::animated_properties::value::FloatValue; +use crate::schema::helpers::int_boolean::BoolInt; +use crate::schema::{self}; +use once_cell::sync::Lazy; + +pub static FLOAT_VALUE_ZERO: Lazy = Lazy::new(|| FloatValue { + animated_property: AnimatedProperty { + property_index: None, + animated: Some(BoolInt::False), + expression: None, + slot_id: None, + value: AnimatedPropertyK::Static(0.0), + }, +}); + +pub static FLOAT_VALUE_ONE_HUNDRED: Lazy = Lazy::new(|| FloatValue { + animated_property: AnimatedProperty { + property_index: None, + animated: Some(BoolInt::False), + expression: None, + slot_id: None, + value: AnimatedPropertyK::Static(100.0), + }, +}); + +pub static MULTIDIM_ONE: Lazy = Lazy::new(|| MultiDimensional { + animated_property: AnimatedProperty { + property_index: None, + animated: Some(BoolInt::False), + expression: None, + slot_id: None, + value: AnimatedPropertyK::Static(vec![1.0, 1.0, 1.0]), + }, + length: None, +}); + +pub static POSITION_ZERO: Lazy = Lazy::new(|| Position { + property_index: None, + animated: Some(BoolInt::False), + expression: None, + length: None, + value: schema::animated_properties::position::PositionValueK::Static(vec![0.0, 0.0]), +}); diff --git a/src/import/mod.rs b/src/import/mod.rs new file mode 100644 index 0000000..c316352 --- /dev/null +++ b/src/import/mod.rs @@ -0,0 +1,9 @@ +// Copyright 2024 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +mod builders; +mod converters; +mod defaults; +mod util; + +pub use converters::conv_animation; diff --git a/src/import/util.rs b/src/import/util.rs new file mode 100644 index 0000000..9b7039c --- /dev/null +++ b/src/import/util.rs @@ -0,0 +1,62 @@ +// Copyright 2024 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT + +use crate::runtime::model::{Easing, Tween}; + +pub fn normalize_to_range(a: f64, b: f64, x: f64) -> f64 { + if a == b { + // Avoid division by zero if a and b are the same + return 0.0; + } + + // Calculate the normalized value + (x - a) / (b - a) +} + +pub fn calc_stops(value: &[f64], count: usize) -> Vec<[f64; 5]> { + let mut stops: Vec<[f64; 5]> = Vec::new(); + let mut alpha_stops: Vec<(f64, f64)> = Vec::new(); + for chunk in value.chunks_exact(4) { + stops.push([chunk[0], chunk[1], chunk[2], chunk[3], 1.0]); + if stops.len() >= count { + // there is alpha data at the end of the list, which is a sequence + // of (offset, alpha) pairs + for chunk in value.chunks_exact(2).skip(count * 2) { + let offset = chunk[0]; + let alpha = chunk[1]; + alpha_stops.push((offset, alpha)); + } + + for stop in stops.iter_mut() { + let mut last: Option<(f64, f64)> = None; + for &(b, alpha_b) in alpha_stops.iter() { + if let Some((a, alpha_a)) = last.take() { + let x = stop[0]; + let t = normalize_to_range(a, b, x); + + let alpha_interp = alpha_a.tween(&alpha_b, t, &Easing::LERP); + let alpha_interp = if (x >= a && x <= b) && (t <= 0.25) && (x <= 0.1) { + alpha_a + } else { + alpha_interp + }; // todo: this is a hack to get alpha rendering with a + // falloff similar to lottiefiles' + + let alpha_interp = if (x >= a && x <= b) && (t >= 0.75) && (x >= 0.9) { + alpha_b + } else { + alpha_interp + }; // todo: this is a hack to get alpha rendering with a + // falloff similar to lottiefiles' + + stop[4] = stop[4].min(alpha_interp); + } + last = Some((b, alpha_b)); + } + } + break; + } + } + + stops +} diff --git a/src/lib.rs b/src/lib.rs index fc68cd0..c8859e8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,46 +1,8 @@ -// Copyright 2023 the Velato Authors +// Copyright 2024 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT -/// Re-export vello. -pub use vello; +pub(crate) mod import; +pub(crate) mod runtime; +pub(crate) mod schema; -pub mod model; - -mod import; -mod render; - -pub use render::{RenderSink, Renderer}; - -use std::collections::HashMap; -use std::ops::Range; - -/// Model of a Lottie file. -#[derive(Clone, Default, Debug)] -pub struct Composition { - /// Frames in which the animation is active. - pub frames: Range, - /// Frames per second. - pub frame_rate: f32, - /// Width of the animation. - pub width: u32, - /// Height of the animation. - pub height: u32, - /// Precomposed layers that may be instanced. - pub assets: HashMap>, - /// Collection of layers. - pub layers: Vec, -} - -impl Composition { - /// Creates a new composition from the specified buffer containing - /// the content of a Lottie file. - pub fn from_bytes(bytes: impl AsRef<[u8]>) -> Result> { - import::import_composition(bytes) - } - - /// Returns a t value for the specified time in seconds. - pub fn frame_for_time(&self, secs: f32) -> f32 { - let frame = secs * self.frame_rate; - frame % self.frames.end - } -} +pub use runtime::{Composition, Renderer}; diff --git a/src/model/value.rs b/src/model/value.rs deleted file mode 100644 index 5304efc..0000000 --- a/src/model/value.rs +++ /dev/null @@ -1,160 +0,0 @@ -// Copyright 2023 the Velato Authors -// SPDX-License-Identifier: Apache-2.0 OR MIT - -use vello::kurbo; -use vello::peniko; - -/// Fixed or animated value. -#[derive(Clone, Debug)] -pub enum Value { - /// Fixed value. - Fixed(T), - /// Animated value. - Animated(Animated), -} - -impl Value { - /// Returns true if the value is fixed. - pub fn is_fixed(&self) -> bool { - matches!(self, Self::Fixed(_)) - } - - /// Returns the value at a specified frame. - pub fn evaluate(&self, frame: f32) -> T { - match self { - Self::Fixed(fixed) => fixed.clone(), - Self::Animated(animated) => animated.evaluate(frame), - } - } -} - -impl Default for Value { - fn default() -> Self { - Self::Fixed(T::default()) - } -} - -/// Borrowed or owned value. -#[derive(Clone, Debug)] -pub enum ValueRef<'a, T> { - Borrowed(&'a T), - Owned(T), -} - -impl<'a, T> AsRef for ValueRef<'a, T> { - fn as_ref(&self) -> &T { - match self { - Self::Borrowed(value) => value, - Self::Owned(value) => value, - } - } -} - -impl<'a, T: Clone> ValueRef<'a, T> { - pub fn to_owned(self) -> T { - match self { - Self::Borrowed(value) => value.clone(), - Self::Owned(value) => value, - } - } -} - -/// Time for a particular keyframe, represented as a frame number. -#[derive(Copy, Clone, Default, Debug)] -pub struct Time { - /// Frame number. - pub frame: f32, -} - -impl Time { - /// Returns the frame indices and interpolation weight for the given frame. - pub(crate) fn frames_and_weight(times: &[Time], frame: f32) -> Option<([usize; 2], f32)> { - if times.is_empty() { - return None; - } - use core::cmp::Ordering::*; - let ix = match times.binary_search_by(|x| { - if x.frame < frame { - Less - } else if x.frame > frame { - Greater - } else { - Equal - } - }) { - Ok(ix) => ix, - Err(ix) => ix.saturating_sub(1), - }; - let ix0 = ix.min(times.len() - 1); - let ix1 = (ix0 + 1).min(times.len() - 1); - let t0 = times[ix0].frame; - let t1 = times[ix1].frame; - let t = (frame - t0) / (t1 - t0); - Some(([ix0, ix1], t.clamp(0.0, 1.0))) - } -} - -#[derive(Clone, Debug)] -pub struct Animated { - pub times: Vec