Files
openhuman/app/public/lottie/trophy.json
T
Steven EnamakelandGitHub 244702d349 Feat/refactor UI code (#52)
* Enhance autocomplete functionality and settings panel

- Added a new AutocompletePanel component for managing inline autocomplete settings, including options for enabling/disabling, debounce timing, and style configurations.
- Integrated autocomplete status tracking and logging within the panel to provide real-time feedback on the autocomplete engine's state.
- Updated settings navigation to include the new autocomplete settings route, improving user accessibility to autocomplete features.
- Introduced new Tauri commands for managing autocomplete operations, including start, stop, and current status retrieval, enhancing interaction with the autocomplete engine.
- Refactored existing code to streamline autocomplete-related functionalities and improve overall maintainability.

* Update TypeScript configuration and add new assets

- Modified `tsconfig.json` to adjust path aliases and include directories for improved module resolution.
- Added new SVG and image assets to the public directory, enhancing the application's visual resources.
- Introduced multiple Lottie animation JSON files for dynamic UI elements, expanding the application's animation capabilities.

* Update project structure and paths for Tauri integration

- Adjusted paths in the pull request template and various workflow files to reflect the new project structure, moving Tauri-related files under the `app` directory.
- Updated commands in the build and release workflows to ensure compatibility with the new file locations.
- Enhanced the test workflow to create the necessary `.env` file in the correct directory for end-to-end testing.
- Added new markdown files for agent prompts and configuration, establishing a foundation for OpenHuman's AI capabilities.

* Refactor project paths and update configurations for Tauri integration

- Adjusted script paths in package.json to reflect the new project structure, ensuring compatibility with the updated directory layout.
- Modified tsconfig.json to correct path aliases and include directories for improved module resolution.
- Introduced a new utility for resolving development paths, enhancing the ability to locate the `rust-core/ai` directory across different project structures.
- Updated Cargo.toml and tauri.conf.json to align with the new directory structure, ensuring proper resource and dependency management.
- Added a new dev_paths module to streamline path resolution logic, improving maintainability and clarity in the codebase.

* Refactor project structure and update configurations for Tauri integration

- Adjusted paths in .gitignore, Cargo.toml, and various scripts to reflect the new directory layout, moving Tauri-related files under the `app` directory.
- Introduced a new package.json file to manage workspace scripts and dependencies effectively.
- Updated end-to-end build and run scripts to ensure compatibility with the new project structure.
- Enhanced documentation in CONTRIBUTING.md to guide contributors on the updated project organization and Tauri command usage.

* Refactor Tauri command invocations to use dedicated utility functions

- Replaced direct `invoke` calls with utility functions from `tauriCommands` for improved readability and maintainability across multiple components.
- Updated `SkillsGrid`, `Skills`, `SkillProvider`, and `SkillManager` to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced a new `coreRpcClient` for managing core RPC relay requests, streamlining error handling and request processing.
- Added a new `core_rpc_relay` command in the Tauri backend to facilitate communication with the core service, ensuring better service management and error reporting.

* Refactor Tauri command invocations in intelligence stats and memory manager

- Replaced direct `invoke` calls with utility functions from `tauriCommands` in `useIntelligenceStats` and `MemoryManager` for improved readability and maintainability.
- Updated the `aiListMemoryFiles`, `aiReadMemoryFile`, and `aiWriteMemoryFile` functions to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced new command handling in the Rust backend for `ai.list_memory_files`, `ai.read_memory_file`, and `ai.write_memory_file`, streamlining communication with the core service.

* Refactor SkillsGrid and remove SelfEvolveModal component

- Removed the SelfEvolveModal component to streamline the SkillsGrid functionality.
- Updated the SkillsGrid to utilize the runtimeDiscoverSkills function for loading skills, replacing the previous invoke method.
- Simplified the skill entry normalization process by integrating it directly into the skills loading logic.
- Enhanced error handling during skill loading to improve robustness and user feedback.

* Refactor Tauri command invocations to use coreRpcClient

- Replaced direct `invoke` calls with `callCoreRpc` in various components, including `useIntelligenceStats`, `MemoryManager`, `SessionManager`, and `transcript` functions, enhancing code readability and maintainability.
- Updated the Rust backend to handle new command structures for memory and session management, streamlining communication with the core service.
- Improved consistency in handling Tauri commands across the application.

* Refactor Tauri command invocations to utilize coreRpcClient

- Replaced direct `invoke` calls with `callCoreRpc` in `tauriCommands.ts` and `tauriSocket.ts`, enhancing code readability and maintainability.
- Updated the Rust backend to support new command structures for authentication and session management, streamlining communication with the core service.
- Removed legacy socket reporting methods in `tauriSocket.ts`, reflecting a shift towards event-driven socket state management.
- Improved consistency in handling Tauri commands across the application, aligning with recent refactoring efforts.

* Remove pre-commit hook and update TODO list with completed tasks and new objectives. This includes separating the binary from the Tauri codebase, integrating accessibility service installation, and removing Android/iOS support from the codebase.

* Add core server functionality with dispatch and RPC handling

- Introduced new modules for core server operations, including dispatching RPC requests and handling various AI and memory-related commands.
- Implemented a robust structure for managing authentication, configuration, and session states through the `openhuman` namespace.
- Added helper functions for loading configurations, managing memory files, and processing authentication profiles.
- Established a new routing system using Axum for handling HTTP requests, including health checks and RPC endpoints.
- Enhanced error handling and logging throughout the new functionalities to improve maintainability and user feedback.

* Implement core server CLI and modular structure

- Introduced a new CLI module for the core server, enabling various commands for server management, health checks, and configuration settings.
- Established a modular structure for core server functionalities, including dispatching RPC requests and managing settings for models, memory, and runtime.
- Added comprehensive tests to validate the functionality of accessibility and autocomplete commands, ensuring robust error handling and schema compliance.
- Enhanced the overall organization of the core server codebase, improving maintainability and readability.

* Implement AI RPC dispatch functionality

- Introduced a new `ai_rpc` module for handling various AI-related commands, including memory file operations and session management.
- Enhanced the `try_dispatch` function to support commands such as listing, reading, writing memory files, and managing session states.
- Updated the core server dispatch module to integrate the new AI RPC functionality, improving modularity and maintainability.
- Refactored existing code to ensure consistent parameter parsing and error handling across AI commands.

* Update TODO list and refactor Rust core server files

- Added new tasks to the TODO list for documentation updates and feature flag cleanup.
- Introduced `Arc` import in `cli.rs` for improved concurrency handling.
- Cleaned up imports in `helpers.rs` and added conditional compilation for `tauri-host`.
- Removed unused `value_only` function in `types.rs` and added `#[allow(dead_code)]` to `SocketConnectParams` and `SocketEmitParams`.
- Enhanced `try_dispatch` function in `dispatch/mod.rs` for non-tauri-host scenarios.
- Updated `try_dispatch` in `openhuman/platform.rs` to correctly handle session parameters.
- Modified `screen_intelligence` configuration in tests to include new properties for better session management.

* Refactor import statements and enhance code readability

- Cleaned up import statements across multiple files for improved organization and consistency.
- Reformatted code in `cli.rs`, `helpers.rs`, and various dispatch modules to enhance readability.
- Ensured consistent parameter handling in `try_dispatch` functions, improving maintainability.
- Removed unnecessary whitespace and adjusted formatting for better code clarity.

* Refactor project structure and enhance AI memory management

- Consolidated the `openhuman-core` package into a single `Cargo.toml` file, removing the previous `rust-core` directory.
- Introduced new modules for AI memory management, including filesystem-based storage and encryption functionalities.
- Added Tauri commands for initializing memory and session management, enhancing user interaction with memory files.
- Implemented JSON-based storage for memory chunks and session transcripts, improving data accessibility and organization.
- Updated dependencies and features in `Cargo.toml` to support new functionalities and ensure compatibility.

* Update build and release workflows to reflect project structure changes

- Adjusted paths in GitHub Actions workflows to accommodate the consolidation of the `openhuman-core` package into a single `Cargo.toml`.
- Updated import statements in various files to point to the new locations of markdown resources.
- Modified the Tauri configuration to reflect the new resource paths, ensuring proper access to AI prompts.
- Enhanced the staging script to build the standalone binary from the updated project structure.

* Refactor AI directory resolution and update documentation

- Updated the logic for resolving AI directory paths to reflect the new project structure, replacing references to `rust-core/ai` with `src/ai/prompts`.
- Enhanced the `find_ai_directory` function across multiple modules to utilize the new path resolution methods.
- Updated documentation comments to clarify the new directory structure and fallback mechanisms for loading AI prompts.

* Rename `openhuman-core` to `openhuman` across the project

- Updated package names in `Cargo.toml` and `Cargo.lock` to reflect the new naming convention.
- Adjusted references in GitHub Actions workflows and scripts to use the new package name.
- Modified CLI command names and error messages to align with the updated naming.
- Ensured consistency in executable file names and paths throughout the codebase.

* Refactor project commands and update package scripts

- Updated package.json to change workspace references from `openhuman` to `app` for build, compile, dev, format, lint, and test scripts.
- Removed outdated memory and chat command files to streamline the codebase and improve maintainability.
- Adjusted the `lib.rs` file to reflect changes in memory command handling, transitioning to use `callCoreRpc` for Neocortex memory operations.
- Cleaned up the commands module by removing unused imports and consolidating functionality.

* Add Tauri host support and new daemon configuration

- Introduced new modules for Tauri host functionality, including `desktop` and `daemon_host`.
- Added static variables and initialization functions for managing the desktop app handle and resource directory.
- Updated import paths for `HeartbeatEngine` to improve clarity and organization.
- Implemented configuration loading and saving for daemon UI preferences, enhancing user experience.

* Update package names in project configuration

- Changed workspace references in package.json from `app` to `openhuman-app` for consistency.
- Updated the name field in the app's package.json to reflect the new naming convention.

* Remove Tauri host feature flags from core server modules

- Eliminated conditional compilation for Tauri host in `lib.rs`, `helpers.rs`, and `dispatch` modules.
- Streamlined socket management functions and dispatch logic by removing unused code related to Tauri host.
- Improved code clarity and maintainability by consolidating socket-related functionality.

* Enhance Tauri host feature integration and update dependencies

- Added `tauri-host` as a default feature in `Cargo.toml` to streamline feature management.
- Removed explicit feature flag from `openhuman` dependency in `app/src-tauri/Cargo.toml` for cleaner configuration.
- Updated Tauri command attributes in various modules to conditionally compile with the `tauri-host` feature, improving modularity.
- Expanded TODO list to include migration support from OpenClaw, indicating future development focus.

* Refactor authentication and credential management in OpenHuman

- Introduced new modules for handling authentication profiles and tokens, including `anthropic_token`, `openai_oauth`, and `profiles`.
- Removed unused Tauri host-related code from core server modules, enhancing clarity and maintainability.
- Updated `Cargo.toml` and `Cargo.lock` to reflect the removal of the `rquickjs` dependency and other package adjustments.
- Streamlined memory client initialization in dispatch logic to utilize the new `local_memory` module.
- Enhanced code organization by consolidating credential management functionalities and improving the overall structure of the OpenHuman module.

* Enhance Rust core RPC structure and streamline helper functions

- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.

* Enhance Rust core RPC structure and streamline helper functions

- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.

* Refactor OpenHuman configuration loading and enhance onboarding RPC

- Replaced the `load_openhuman_config` function with a new `load_config_with_timeout` method to improve timeout handling during configuration loading.
- Consolidated configuration loading logic across various modules, reducing redundancy and enhancing maintainability.
- Introduced new RPC functions for applying settings related to models, memory, screen intelligence, gateway, tunnel, runtime, and browser, streamlining the update process.
- Added onboarding helpers in a new `onboard` module, including a JSON-RPC controller for model refresh operations, improving onboarding flow management.

* Refactor CLI and configuration management in OpenHuman

- Consolidated CLI-related functionality by introducing new modules for settings and credentials management, enhancing code organization.
- Removed redundant functions and streamlined the configuration loading process, improving maintainability.
- Added new CLI helpers for screenshot tools and workspace initialization, facilitating better user experience and onboarding.
- Enhanced JSON-RPC responses to be more compatible with CLI requirements, ensuring consistent output across various commands.

* Remove gateway settings and related functionality from OpenHuman

- Eliminated the GatewaySettingsUpdate interface and associated functions from the codebase, streamlining configuration management.
- Removed references to gateway settings in the CLI and configuration modules, enhancing clarity and maintainability.
- Deleted the gateway module and its related components, including rate limiting and client handling, to simplify the architecture.
- Updated Cargo.toml and Cargo.lock to reflect the removal of dependencies related to gateway functionality.

* Update documentation and improve clarity in OpenHuman

- Revised comments in the `mod.rs`, `traits.rs`, and `pairing.rs` files to enhance clarity and accuracy.
- Updated descriptions related to security policy, long-running processes, and pairing functionality for better understanding.

* Refactor loading prop in TauriCommandsPanel for cleaner code

- Simplified the loading prop assignment in the TauriCommandsPanel component by removing unnecessary line breaks, enhancing readability and maintainability.

* Add OpenSSL dependency and implement OAuth authentication features

- Added OpenSSL as a dependency in `Cargo.toml` to support cryptographic operations.
- Introduced new OAuth-related structures and parameters in `types.rs` for handling authentication flows.
- Implemented OAuth connection and integration token fetching in `auth_socket.rs`, enhancing the authentication capabilities of the OpenHuman module.
- Created new modules for managing authentication profiles and responses, improving the organization of authentication-related code.
- Removed deprecated `anthropic_token` and `openai_oauth` modules to streamline credential management.
- Updated `Cargo.lock` to reflect the addition of the OpenSSL dependency.

* Refactor OpenHuman module and update dependencies

- Added OpenHuman integration entry in the registry for improved backend inference handling.
- Updated various files to enhance code clarity and organization, including adjustments to OAuth client methods and integration tests.
- Refactored import statements and removed unnecessary line breaks for better readability.
- Updated `Cargo.lock` to reflect changes in dependencies and ensure consistency across the project.

* Implement desktop host features and refactor runtime handling

- Introduced new modules for memory management, socket handling, and command definitions to support desktop host functionality.
- Refactored QuickJS runtime initialization to log errors when the engine is not linked, improving clarity on runtime status.
- Added placeholder commands for chat and model interactions, indicating unavailability in the desktop build while maintaining structure for future integration.
- Enhanced organization of the codebase by creating dedicated files for runtime and utility functions, streamlining the development process.
- Updated documentation to reflect new modules and their purposes, ensuring better understanding for future contributors.

* Add CLI banner and print function to enhance user experience

- Introduced a new CLI banner with branding and GitHub link for user engagement.
- Implemented a `print_cli_banner` function to display the banner when running the CLI, improving visibility and user interaction.
- Updated the CLI entry point to call the new banner function, ensuring it appears at startup.

* Add API integration and update dependencies

- Introduced new API modules for handling HTTP requests and WebSocket connections to the TinyHumans backend.
- Added `ureq` dependency for simplified HTTP client functionality, updating `Cargo.toml` and `Cargo.lock` accordingly.
- Implemented configuration and JWT handling in the new `api` module, enhancing session management and API interactions.
- Refactored existing code to utilize the new API helpers, improving code organization and maintainability.
- Updated documentation to reflect new API functionalities and usage guidelines.

* Refactor settings fetching and update dependencies

- Removed the `ureq` dependency and associated functions for fetching settings, streamlining the codebase.
- Updated the `fetch_settings` method to utilize `reqwest` for HTTP requests, enhancing consistency and reliability in API interactions.
- Adjusted the `Cargo.toml` to reflect the removal of `ureq`, ensuring dependencies are up to date.

* Update `ureq` dependency to version 3.3.0 in `Cargo.lock`

- Removed the specific version constraint for `ureq`, allowing for more flexibility in dependency resolution.
- Updated the `Cargo.lock` to reflect the new version of `ureq`, ensuring compatibility with recent changes in the codebase.

* Enhance JSON-RPC logging and CLI initialization

- Introduced a new `rpc_log` module for structured logging of JSON-RPC requests and responses, including redaction of sensitive parameters.
- Updated `execute_core_cli` to initialize logging with a default level and timestamp format.
- Enhanced logging in `rpc_handler` and `dispatch` functions to provide detailed insights into method calls and their execution times.
- Improved error handling logging to capture method failures with context, aiding in debugging and monitoring.

* Refactor HTTP server setup and add integration tests

- Introduced a new `build_core_http_router` function to encapsulate the HTTP routing logic, improving code organization and readability.
- Updated the `run_server` function to utilize the new router function, streamlining server initialization.
- Added comprehensive integration tests for the JSON-RPC API, ensuring robust functionality and error handling in real-world scenarios.

* Enhance OpenHuman backend integration and refactor provider handling

- Added support for the OpenHuman backend in the TauriCommandsPanel, including default configurations and validation for API keys.
- Introduced a new REPL command in the CLI for interactive RPC communication, allowing for dynamic mode switching and message handling.
- Refactored provider creation logic to streamline the integration of the OpenHuman backend, removing deprecated provider overrides and ensuring consistent usage across the codebase.
- Updated various components to improve error handling and user feedback related to provider selection and API interactions.

* Refactor provider handling and update default model settings

- Removed provider override states from the AgentChatPanel and TauriCommandsPanel components, simplifying state management.
- Updated local storage handling to exclude provider overrides, ensuring cleaner data storage.
- Changed default model settings across various components and backend configurations to use "neocortex-mk1" as the new default model.
- Enhanced error handling and validation logic in the TauriCommandsPanel, focusing on model and temperature settings.
- Streamlined integration tests and removed deprecated provider validation logic to improve code clarity and maintainability.

* Refactor code for improved readability and consistency

- Adjusted formatting in several files to enhance code clarity, including consistent parameter passing and alignment.
- Simplified match statement syntax in the `run_models` function for better readability.
- Streamlined assertions in tests to maintain consistency in error handling checks.
- Updated default model name handling in the `AgentBuilder` for cleaner initialization.

* Refactor API URL handling and enhance error reporting

- Updated the `effective_api_url` function to improve clarity in resolving the API base URL, incorporating environment variable checks.
- Enhanced diagnostics in the configuration check to provide clearer messages regarding the API URL status.
- Introduced new error formatting functions to improve the clarity of error messages related to API transport issues.
- Refactored error handling in the OpenAiCompatibleProvider to utilize the new error formatting, ensuring consistent and informative error reporting.

* Refactor API client initialization for consistency

- Updated the instantiation of `BackendOAuthClient` to consistently pass the API URL by reference across multiple functions.
- Simplified the match statement in the `run_models_refresh` function for improved readability.

* Enhance REPL command handling and add fallback mechanisms

- Improved error handling in the REPL command processing, providing clearer feedback for command execution failures.
- Introduced a fallback mechanism for the `agent_chat` RPC call, allowing for graceful degradation to a simpler chat method or a direct backend curl transport if the primary call fails.
- Added a new `backend_chat_via_curl` function to handle chat requests using curl as a last resort, ensuring continued functionality in case of RPC issues.
- Updated the `agent_chat_simple` function to support model overrides and temperature settings, enhancing flexibility in chat interactions.

* Update default Ollama model settings for consistency

- Changed the default Ollama model and vision model to "gemma3:4b-it-qat" for improved alignment across configurations.
- Ensured consistent model naming to enhance clarity in model usage within the local AI module.

* Implement login token consumption and enhance error handling

- Added functionality to consume login tokens via a new API endpoint, returning a JWT for authenticated sessions.
- Improved error handling in the Conversations component, introducing a fallback mechanism for chat interactions when the primary method is unavailable.
- Updated UserProvider to restore session tokens automatically, enhancing user experience during authentication.
- Refactored thread API to support the new login token consumption logic, ensuring seamless integration with the backend.

* Update HTTP client configuration to use Rustls TLS

- Replaced the HTTP/1.1 only setting with Rustls TLS in the OpenAiCompatibleProvider's client builder for enhanced security.
- Ensured consistent application of the new TLS setting across multiple client instances.

* Add Local AI command support and enhance error handling

- Introduced a new `LocalAi` command in the CLI for managing local AI runtime operations, including status checks, asset downloads, and prompt handling.
- Added detailed argument structures for various local AI functionalities, improving command usability.
- Enhanced error reporting in the `LocalAiService` by including response details in error messages for better debugging and user feedback.
- Refactored existing error handling to provide clearer context on failures during API interactions.

* Add local AI module with Ollama integration and model management

- Introduced a new local AI module that includes functionality for automatic installation of the Ollama runtime across different operating systems (Windows, macOS, Linux).
- Implemented model ID resolution and management, providing default settings for various AI models and ensuring compatibility with user configurations.
- Added HTTP API structures and request handling for Ollama, enabling interaction with the local AI service for generating responses and managing assets.
- Developed utility functions for parsing model outputs and managing workspace paths, enhancing the overall structure and usability of the local AI service.
- Established a comprehensive service layer for managing local AI operations, including status tracking and error handling for improved user experience.

* Refactor local AI service structure and enhance asset management

- Simplified the local AI module by reorganizing the service structure, introducing new modules for model IDs, paths, and asset management.
- Added comprehensive asset status tracking for various AI models, including chat, vision, embedding, STT, and TTS, with improved error handling.
- Implemented methods for downloading models and assets, ensuring better management of local AI resources.
- Updated visibility of service methods to enhance encapsulation and maintainability within the local AI service.

* Enhance local AI module with new download progress tracking and unit tests

- Added new structures for tracking download progress of various AI models, including detailed status and metrics.
- Implemented unit tests for model ID resolution, parsing suggestions, and asset path resolution to ensure robust functionality.
- Refactored service methods to improve encapsulation and maintainability, enhancing the overall structure of the local AI service.
- Updated existing tests to cover new functionalities and ensure consistent behavior across the module.

* Implement new local AI download functionalities and refactor model management

- Added support for downloading all local AI assets and tracking download progress, enhancing user experience and resource management.
- Introduced new RPC methods for fetching download progress and managing asset states, improving the overall functionality of the local AI module.
- Refactored existing model management code to utilize the new model catalog, ensuring better organization and maintainability.
- Updated relevant tests to cover new functionalities and ensure consistent behavior across the local AI service.

* Add new interfaces and functions for local AI download progress tracking

- Introduced `LocalAiDownloadProgressItem` and `LocalAiDownloadsProgress` interfaces to structure download progress data for various AI models.
- Implemented `openhumanLocalAiDownloadAllAssets` and `openhumanLocalAiDownloadsProgress` functions to facilitate downloading all assets and tracking their progress.
- Enhanced error handling for Tauri environment checks in new functions, ensuring robust operation within the local AI module.

* Refactor agent loop structure and introduce modular components

- Deleted the `loop_.rs` file and reorganized the agent loop into multiple modules for better maintainability and clarity.
- Introduced new files for handling credentials, history management, tool instructions, memory context, and parsing logic.
- Implemented functions for scrubbing sensitive credentials, managing conversation history, and building tool instructions.
- Enhanced the overall structure of the agent loop to facilitate easier testing and future development.

* Refactor authentication structure and migrate to credentials module

- Moved authentication-related functionality from `auth_profiles` to a new `credentials` module for better organization and clarity.
- Updated references in the API and core server to reflect the new module structure.
- Introduced new data structures and methods for managing authentication profiles, including session support and response handling.
- Removed the obsolete `auth_profiles` module to streamline the codebase and enhance maintainability.

* Add screen intelligence module with capture and context management

- Introduced new modules for screen capture and context management, specifically targeting macOS.
- Implemented functionality to capture screen images and retrieve foreground application context.
- Added data structures for managing application context and window bounds.
- Established limits for screenshot sizes and context character counts to ensure efficient resource management.
- Enhanced helper functions for input action validation and vision summary processing.
- Set up a modular structure for better maintainability and future enhancements.

* Refactor screen intelligence module and remove obsolete components

- Deleted unused files related to screen intelligence, including context and permissions management, to streamline the codebase.
- Refactored the capture functionality to improve organization and maintainability.
- Updated function signatures for better clarity and consistency.
- Enhanced the overall structure of the screen intelligence module for future development and testing.

* Enhance autocomplete CLI functionality and refactor related code

- Added new options for the autocomplete command in the CLI, allowing users to run the autocomplete loop in the current process or spawn a detached process.
- Introduced `AutocompleteStartCliOptions` struct to encapsulate the new command-line arguments.
- Refactored the `autocomplete_start_cli` function to handle the new options and improve process management for the autocomplete service.
- Updated documentation in `CLAUDE.md` to clarify the separation of concerns between routing and controller logic in the codebase.

* Enhance autocomplete error handling and improve focused text context retrieval

- Added a new function to identify "no text candidate" errors, improving error management in the autocomplete engine.
- Refactored the `focused_text_context` and `focused_text_context_verbose` functions to enhance clarity and reliability in retrieving application context.
- Updated the return format of the `focused_text_context_verbose` function to use a separator for better data parsing.
- Added a new TODO item for allowing users to select LLM model versions based on their CPU capabilities.

* Remove Docker, Native, and WASM runtime implementations along with related traits and tests

- Deleted the DockerRuntime, NativeRuntime, and WasmRuntime implementations to streamline the codebase.
- Removed associated traits and factory functions for runtime creation.
- Eliminated all related tests to ensure a clean removal of unused components.
- This refactor aims to simplify the runtime management and prepare for future enhancements.

* Add quickjs-runtime feature and introduce runtime module

- Added a new feature flag for `quickjs-runtime` in `Cargo.toml` to enable its usage.
- Created a new `runtime.rs` module to implement `NativeRuntime` and `DockerRuntime` with associated traits for runtime management.
- Updated the `skills` module to reference the correct path for `SkillConfig`.
- Removed the obsolete `skillforge` module from the `openhuman` namespace to streamline the codebase.
- Enhanced the `skills` module with new structures and functions for managing skills, including initialization and loading logic.

* Refactor autocomplete configuration to remove legacy disabled apps

- Updated the default configuration for `AutocompleteConfig` to remove the legacy disabled apps ('terminal' and 'code'), allowing for broader usage of Codex/CLI.
- Introduced a migration function to handle legacy disabled apps during configuration loading, ensuring custom user preferences remain intact.
- This change enhances the flexibility of the autocomplete feature by preventing unnecessary restrictions on application usage.

* Update rquickjs dependencies in Cargo.lock

- Updated the rquickjs and rquickjs-core dependencies to versions 0.11.0 and 0.9.0 respectively, ensuring compatibility with the latest features and fixes.
- Added new entries for rquickjs-sys and its corresponding version 0.9.0 to the dependency list, enhancing the project's runtime capabilities.
- This update improves the overall stability and performance of the application by leveraging the latest improvements in the rquickjs ecosystem.

* Add terminal application detection to autocomplete logic

- Introduced a new function `is_terminal_app` to identify terminal applications based on their names, enhancing the autocomplete feature's context awareness.
- Updated the `focused_text_context_verbose` function to allow terminal applications to bypass text role checks when the input value is not empty, improving user experience in terminal environments.
- This change aims to provide better support for terminal-based applications in the autocomplete system.

* Add terminal input context extraction and noise line detection

- Introduced functions to identify terminal-like buffers and filter out noise lines in terminal input, enhancing the autocomplete engine's context awareness.
- Updated the `focused_text_context` logic to utilize the new terminal context extraction, improving the handling of text in terminal applications.
- Enhanced the `focused_text_context_verbose` function to better retrieve static text values from UI elements, ensuring accurate context representation in terminal environments.
- These changes aim to improve user experience and functionality for terminal-based applications in the autocomplete system.

* Enhance autocomplete engine state management and error handling

- Added new fields `last_escape_down` and `last_overlay_signature` to `EngineState` for improved state tracking.
- Implemented `try_reject_via_escape` method to handle escape key interactions, allowing users to reject suggestions more intuitively.
- Updated error handling to display notifications for different states (ready, accepted, rejected, error) using `show_overflow_badge`.
- Refactored state updates to ensure consistent management of suggestion and phase transitions, enhancing overall user experience in the autocomplete system.

* Implement periodic status logging in autocomplete service

- Added a polling mechanism to log the status of the autocomplete engine at regular intervals.
- Enhanced logging to capture changes in phase, application name, suggestions, and errors, improving visibility during service execution.
- Refactored the `autocomplete_start_cli` function to integrate the new logging functionality, ensuring a more informative user experience while the service is running.

* Refactor memory dispatch logic and remove local memory implementation

- Updated the memory dispatch functions to utilize the new `memory_rpc` module, enhancing the handling of memory operations such as document management and namespace queries.
- Removed the local memory implementation, including database interactions and related functions, to streamline the codebase and improve maintainability.
- Introduced new RPC calls for document operations (put, list, delete) and context queries, ensuring a more efficient and consistent approach to memory management.
- This refactor aims to enhance the overall architecture and performance of the memory handling system.

* Remove macOS-specific overflow badge functionality and related helper functions

- Deleted the `show_overflow_badge` and `escape_applescript_string` functions, which were specific to macOS, to streamline the codebase.
- Refactored the `show_overflow_badge` function to provide a no-op implementation for non-macOS platforms, enhancing cross-platform compatibility.
- This change simplifies the autocomplete module by removing platform-dependent code, improving maintainability and clarity.

* Enhance text application logic in autocomplete module

- Updated the `apply_text_to_focused_field` function to improve interaction with focused UI elements on macOS.
- The new implementation retrieves the current value of the focused element and appends the provided text, ensuring better handling of text input.
- Enhanced error reporting to include stderr output when applying suggestions fails, improving debugging capabilities.
- These changes aim to provide a more robust and user-friendly experience in the autocomplete functionality.

* Refactor Landlock feature configuration for Linux support

- Moved the `landlock` and `rppal` dependencies under a conditional target configuration for Linux in both `Cargo.toml` files, ensuring they are only included when building for Linux.
- Updated the `landlock.rs` module to check for both the `sandbox-landlock` feature and the Linux target OS, improving the conditional compilation logic.
- This change enhances cross-platform compatibility and ensures that Landlock functionality is only available on supported systems.

* Update dependencies and enhance Tauri integration

- Updated the Tauri dependency in `Cargo.toml` to include the `tray-icon` feature, enabling system tray support.
- Introduced a new `rust-toolchain.toml` file to pin the Rust version to 1.93.0, ensuring compatibility with the matrix-sdk.
- Modified GitHub workflows to use the specified Rust version from `rust-toolchain.toml` instead of the stable version, improving build consistency.
- Refactored Tauri commands to utilize a new `wrapCommandResult` function for better response handling.
- Added a new `tray` module in `openhuman` for managing system tray functionality, enhancing the desktop experience.
- Updated various command implementations to streamline service management and improve error handling.

* Refactor core process handling and enhance encryption features

- Removed the `openhuman` dependency from `Cargo.lock` and `Cargo.toml`, streamlining the project structure.
- Updated the core process handling to fall back to a child process when in-process execution is unavailable, improving error handling and logging.
- Introduced new encryption commands (`ai_init_encryption`, `ai_encrypt`, `ai_decrypt`) to enhance security features, utilizing AES-GCM for data protection.
- Added a new `tray` module for managing system tray functionality, improving user experience on desktop platforms.
- Refactored various command implementations to improve service management and error handling, ensuring a more robust application architecture.

* Remove unused modules and refactor daemon host configuration

- Deleted the `daemon_host_config`, `memory`, `models`, `openhuman_daemon`, `tray`, `chat`, `conscious_loop`, and `runtime` modules to streamline the codebase.
- Refactored the daemon host configuration logic into the `openhuman` module, consolidating related functionality.
- Updated command implementations to utilize the new configuration methods, ensuring consistent handling of daemon host settings.
- This cleanup enhances maintainability and reduces complexity in the project structure.

* Refactor memory management and update Tauri dependencies

- Removed the `tray-icon` feature from the Tauri dependency in `Cargo.toml` to streamline the configuration.
- Deleted the `core:tray:default` capability from the default capabilities JSON, simplifying the capabilities structure.
- Refactored memory handling in tests to utilize `UnifiedMemory` instead of `SqliteMemory`, enhancing consistency across memory operations.
- Updated memory store, recall, and forget functionalities to support a global namespace, improving memory management and retrieval processes.
- Enhanced error handling and logging in memory operations to provide clearer feedback during execution.

* Remove AI encryption commands and related functionality

- Deleted the `ai_init_encryption`, `ai_encrypt`, and `ai_decrypt` functions to streamline the codebase and remove unused features.
- Updated the command registration in the `run` function to reflect the removal of these encryption commands, enhancing maintainability and reducing complexity.

* Add OAuth integration token handling and channel connection management

- Introduced functions to fetch and encrypt integration tokens using OAuth, enhancing security for token management.
- Updated the channel connections API to support OAuth integration, including listing, connecting, and disconnecting channels.
- Implemented checks for supported channels and authentication modes, improving the robustness of channel connection handling.
- Enhanced error handling for integration token retrieval to ensure required fields are present before proceeding.

* Refactor project structure and update documentation

- Renamed the project from "Outsourced" to "OpenHuman" and revised the project summary to reflect its focus on AI-powered assistance for crypto communities.
- Restructured the repository layout, detailing the purpose of each directory and its contents.
- Updated runtime scope to clarify platform support and Tauri's desktop-only focus.
- Enhanced documentation across various files, including architecture, services, and routing, to improve clarity and usability for contributors.
- Removed outdated sections and streamlined commands for development and production builds, ensuring consistency in the documentation.

* Implement REPL session management and multimodal support

- Introduced a new REPL session management system, allowing for session-specific interactions with agents.
- Added functions for starting, chatting, resetting, and ending REPL sessions, enhancing user experience and control.
- Implemented multimodal message handling, enabling the processing of images alongside text in user messages.
- Updated the project structure to include new modules for identity and multimodal functionalities, improving organization and maintainability.
- Enhanced error handling and logging for session operations, providing clearer feedback during execution.

* Refactor memory store implementation and introduce unified memory management

- Removed the legacy memory store implementation and replaced it with a new unified memory management system.
- Introduced a `MemoryClient` for handling document storage, retrieval, and namespace management.
- Added support for key-value storage and graph data structures within the unified memory framework.
- Enhanced the `UnifiedMemory` struct with methods for document upsertion, querying, and namespace operations.
- Updated the project structure to include new modules for memory types, factories, and traits, improving organization and maintainability.
- Improved error handling and logging across memory operations for clearer feedback during execution.

* Implement QuickJS skill instance management

- Removed the previous QjsSkillInstance implementation and replaced it with a new modular structure.
- Introduced separate modules for event loop management, instance handling, JavaScript handlers, and utility functions.
- Enhanced the event loop to efficiently manage QuickJS runtime tasks, including timer callbacks and message processing.
- Added support for asynchronous tool calls and lifecycle management within the QuickJS context.
- Improved error handling and logging throughout the new implementation for better debugging and user feedback.
- Updated documentation to reflect the new structure and functionality of the QuickJS skill instance.
2026-03-29 10:30:18 -07:00

9432 lines
323 KiB
JSON

{
"v": "5.8.1",
"fr": 30,
"ip": 0,
"op": 71,
"w": 500,
"h": 500,
"nm": "Trophy",
"ddd": 0,
"assets": [
{
"id": "comp_0",
"nm": "Pre-comp 3",
"fr": 30,
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [391.176, 345.588, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [30, 30, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 2,
"op": 17,
"st": 2,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [344.118, 294.118, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [50, 50, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 1,
"op": 16,
"st": 1,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [151.471, 317.647, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [30, 30, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 7,
"op": 22,
"st": 7,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [104.412, 266.176, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [50, 50, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 6,
"op": 21,
"st": 6,
"bm": 0
},
{
"ddd": 0,
"ind": 5,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [342.647, 145.588, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [30, 30, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 4,
"op": 19,
"st": 4,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [295.588, 94.118, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [50, 50, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 3,
"op": 18,
"st": 3,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [133.824, 122.059, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [30, 30, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 1,
"op": 16,
"st": 1,
"bm": 0
},
{
"ddd": 0,
"ind": 8,
"ty": 0,
"nm": "Pre-comp 2",
"refId": "comp_1",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [179.412, 82.353, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [50, 48.5, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [50, 50, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 100,
"h": 97,
"ip": 0,
"op": 15,
"st": 0,
"bm": 0
}
]
},
{
"id": "comp_1",
"nm": "Pre-comp 2",
"fr": 30,
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Shape Layer 12",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": -90, "ix": 10 },
"p": { "a": 0, "k": [50.5, 47, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [-142.5, -154, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-142.5, -154],
[-101.5, -154]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 4, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [0]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [0]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 15,
"st": -11,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Shape Layer 11",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 180, "ix": 10 },
"p": { "a": 0, "k": [50.5, 47, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [-142.5, -154, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-142.5, -154],
[-101.5, -154]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 4, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [0]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [0]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 15,
"st": -11,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Shape Layer 10",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 90, "ix": 10 },
"p": { "a": 0, "k": [50.5, 47, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [-142.5, -154, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-142.5, -154],
[-101.5, -154]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 4, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [0]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [0]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 15,
"st": -11,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Shape Layer 9",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [50.5, 47, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [-142.5, -154, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-142.5, -154],
[-101.5, -154]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 4, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [0]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [0]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 15,
"st": -11,
"bm": 0
}
]
},
{
"id": "comp_2",
"nm": "Pre-comp 1",
"fr": 30,
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Shape Layer 10",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Shape Layer 11",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 30, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Shape Layer 12",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 60, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Shape Layer 13",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 90, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 5,
"ty": 4,
"nm": "Shape Layer 14",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 120, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Shape Layer 15",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 150, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 4,
"nm": "Shape Layer 16",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 180, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 8,
"ty": 4,
"nm": "Shape Layer 17",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 210, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 9,
"ty": 4,
"nm": "Shape Layer 18",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 240, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 10,
"ty": 4,
"nm": "Shape Layer 19",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 270, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 4,
"s": [60]
},
{ "t": 14, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 11,
"ty": 4,
"nm": "Shape Layer 21",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 300, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 3,
"s": [60]
},
{ "t": 13, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 12,
"ty": 4,
"nm": "Shape Layer 20",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 330, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[0, 0],
[178, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.705882352941, 0.247058838489, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"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
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 3,
"s": [60]
},
{ "t": 13, "s": [100] }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [60]
},
{ "t": 10, "s": [100] }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 300,
"st": 0,
"bm": 0
}
]
}
],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 0,
"nm": "Pre-comp 3",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [-100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 500,
"h": 500,
"ip": 39,
"op": 61,
"st": 39,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 0,
"nm": "Pre-comp 3",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 500,
"h": 500,
"ip": 24,
"op": 46,
"st": 24,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Cup 3",
"parent": 14,
"td": 1,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.371, -98.838, 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": 1,
"k": [
{
"i": { "x": 0.8, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.8, -128.285],
[49.3, -128.285],
[70.626, -106.958],
[62.096, -21.652],
[-62.596, -21.652],
[-71.126, -106.958]
],
"c": true
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.2, "y": 0 },
"t": 14,
"s": [
{
"i": [
[0, 6.785],
[0, 0],
[0, -11.667],
[0, 0],
[0, 55.777],
[0, 0]
],
"o": [
[0, 0],
[0, 8.035],
[0, 0],
[0, 54.652],
[0, 0],
[0, -12.042]
],
"v": [
[-0.25, -128.285],
[-0.25, -128.285],
[-0.25, -106.958],
[-0.25, -21.652],
[-0.25, -21.652],
[-0.25, -106.958]
],
"c": true
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.8, -128.285],
[49.3, -128.285],
[70.626, -106.958],
[62.096, -21.652],
[-62.596, -21.652],
[-71.126, -106.958]
],
"c": true
}
]
},
{
"i": { "x": 1, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.8, -128.285],
[49.3, -128.285],
[70.626, -106.958],
[62.096, -21.652],
[-62.596, -21.652],
[-71.126, -106.958]
],
"c": true
}
]
},
{
"i": { "x": 0.223, "y": 1 },
"o": { "x": 0.2, "y": 0 },
"t": 31,
"s": [
{
"i": [
[0, 6.785],
[0, 0],
[0, -11.667],
[0, 0],
[0, 55.777],
[0, 0]
],
"o": [
[0, 0],
[0, 8.035],
[0, 0],
[0, 54.652],
[0, 0],
[0, -12.042]
],
"v": [
[-0.25, -128.285],
[-0.25, -128.285],
[-0.25, -106.958],
[-0.25, -21.652],
[-0.25, -21.652],
[-0.25, -106.958]
],
"c": true
}
]
},
{
"t": 50,
"s": [
{
"i": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.8, -128.285],
[49.3, -128.285],
[70.626, -106.958],
[62.096, -21.652],
[-62.596, -21.652],
[-71.126, -106.958]
],
"c": true
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.705882370472, 0.247058823705, 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": "Cup",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 31,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Shape Layer 7",
"tt": 2,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 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": 1,
"k": [
{
"t": 24,
"s": [
{
"i": [
[3.191, -0.395],
[2.304, -0.927],
[2.095, -1.709],
[1.788, -1.877],
[0.908, -1.912],
[-1.334, -6.312],
[-2.779, -4.188],
[-3.401, -3.602],
[-3.548, -3.297],
[-2.312, -2.352],
[-2.506, -2.506],
[-2.476, -2.535],
[-0.232, -1.997],
[0.723, -0.831],
[0.267, -1.304],
[-2.88, -0.857],
[1.3, 9.712],
[4.203, 4.76],
[9.453, 16.328],
[-0.295, 3.28],
[-3.343, 1.249],
[-4.023, -0.951],
[-1.8, -0.768],
[-8.286, 2.069],
[-0.398, 3.182],
[3.129, 3.445],
[1.614, 1.176],
[1.189, 0.657],
[2.306, 0.956],
[2.086, 0.582]
],
"o": [
[-4.689, 0.581],
[-2.304, 0.927],
[-1.938, 1.582],
[-1.788, 1.877],
[-3.116, 6.566],
[1.334, 6.312],
[2.849, 4.294],
[3.401, 3.602],
[2.244, 2.084],
[2.312, 2.352],
[2.864, 2.864],
[2.476, 2.535],
[0.16, 1.372],
[-0.723, 0.831],
[-1.339, 6.557],
[13.183, 3.921],
[-1.018, -7.607],
[-12.335, -13.97],
[-1.509, -2.606],
[0.413, -4.602],
[3.955, -1.477],
[2.275, 0.538],
[8.878, 3.789],
[3.458, -0.863],
[0.467, -3.729],
[-1.703, -1.875],
[-1.654, -1.205],
[-1.861, -1.028],
[-2.371, -0.983],
[-7.691, -2.147]
],
"v": [
[-93, -111],
[-102.945, -108.846],
[-109, -105],
[-114.773, -99.748],
[-119, -94],
[-120.921, -74.216],
[-114, -58],
[-104.525, -46.252],
[-94, -36],
[-87.197, -29.316],
[-80, -22],
[-71.526, -13.849],
[-67, -7],
[-68.18, -3.949],
[-70, -1],
[-64, 12],
[-47, -11],
[-59, -30],
[-99, -72],
[-102, -81],
[-94, -91],
[-82, -91],
[-75, -89],
[-55, -79],
[-48, -87],
[-53, -98],
[-58, -101],
[-62, -105],
[-69, -107],
[-75, -110]
],
"c": true
}
],
"h": 1
},
{
"t": 25,
"s": [
{
"i": [
[6.363, -1.468],
[2.979, -2.095],
[1.84, -2.639],
[0.408, -1.067],
[0.408, -1.35],
[0.465, -0.387],
[0.082, -0.263],
[-3.965, -7.542],
[-4.029, -4.555],
[-0.766, -0.479],
[-0.438, -0.523],
[-0.104, -0.568],
[-0.27, -0.353],
[-0.859, -0.529],
[-0.842, -0.709],
[-4.878, -5.799],
[-0.092, -0.71],
[0.419, -2.677],
[-6.464, -0.238],
[-1.53, 2.112],
[6.189, 7.171],
[5.82, 5.82],
[5.515, 7.127],
[-5.296, 5.528],
[-9.204, -2.345],
[-3.834, -2.514],
[-5.231, 0.751],
[-0.822, 3.258],
[5.25, 2.566],
[1.551, 0.608]
],
"o": [
[-4.243, 0.979],
[-2.98, 2.096],
[-0.962, 1.38],
[-0.408, 1.067],
[-0.057, 0.189],
[-0.465, 0.387],
[-2.889, 9.276],
[3.965, 7.542],
[0.497, 0.561],
[0.766, 0.479],
[0.313, 0.374],
[0.104, 0.568],
[1.053, 1.378],
[1.068, 0.657],
[6.494, 5.469],
[1.271, 1.511],
[0.356, 2.738],
[-1.191, 7.598],
[4.588, 0.169],
[8.605, -11.877],
[-4.677, -5.419],
[-6.151, -6.151],
[-4.119, -5.322],
[4.622, -4.825],
[3.701, 0.943],
[4.525, 2.967],
[3.142, -0.451],
[2.691, -10.661],
[-1.826, -0.892],
[-7.754, -3.037]
],
"v": [
[-95, -111],
[-105.802, -106.245],
[-113, -99],
[-114.915, -95.478],
[-116, -92],
[-116.981, -91.056],
[-118, -90],
[-114.689, -64.459],
[-101, -46],
[-98.956, -44.471],
[-97, -43],
[-96.468, -41.485],
[-96, -40],
[-92, -37],
[-90, -35],
[-71, -17],
[-65, -8],
[-68, -1],
[-59, 12],
[-49, 6],
[-55, -29],
[-72, -45],
[-91, -66],
[-97, -87],
[-77, -91],
[-66, -85],
[-54, -79],
[-46, -86],
[-62, -106],
[-67, -109]
],
"c": true
}
],
"h": 1
},
{
"t": 26,
"s": [
{
"i": [
[1.111, -0.113],
[2.585, -1.009],
[1.674, -1.559],
[0.573, -0.084],
[0.356, -0.336],
[0.475, -0.926],
[0.564, -0.79],
[0.36, -0.281],
[0.285, -0.493],
[0.871, -2.718],
[0.063, -2.618],
[-3.733, -5.588],
[-2.015, -2.521],
[-0.872, -1.07],
[-1.274, -1.411],
[-7.648, -7.648],
[-0.543, -5.007],
[0.55, -2.542],
[-2.362, -2.153],
[-1.562, 7.645],
[2.913, 4.566],
[2.86, 3.478],
[9.12, 11.123],
[-1.11, 7.282],
[-2.157, 0.726],
[-4.835, -3.467],
[-4.962, 0.362],
[-0.24, 6.416],
[7.573, 3.176],
[2.407, 0.544]
],
"o": [
[-3.987, 0.405],
[-2.585, 1.009],
[-0.352, 0.328],
[-0.573, 0.084],
[-0.536, 0.507],
[-0.475, 0.926],
[-0.273, 0.382],
[-0.36, 0.281],
[-1.452, 2.508],
[-0.871, 2.718],
[-0.253, 10.508],
[1.754, 2.625],
[0.961, 1.203],
[1.009, 1.238],
[6.895, 7.635],
[5.268, 5.268],
[0.253, 2.337],
[-0.918, 4.241],
[8.175, 7.452],
[1.806, -8.842],
[-2.806, -4.398],
[-8.695, -10.574],
[-5.23, -6.378],
[0.863, -5.666],
[7.845, -2.641],
[3.765, 2.699],
[4.671, -0.341],
[0.327, -8.737],
[-3.3, -1.384],
[-5.338, -1.207]
],
"v": [
[-85, -112],
[-94.735, -109.865],
[-101, -106],
[-102.498, -105.506],
[-104, -105],
[-105.479, -102.712],
[-107, -100],
[-107.991, -99.083],
[-109, -98],
[-112.542, -90.083],
[-114, -82],
[-106, -58],
[-100, -51],
[-98, -47],
[-94, -44],
[-75, -23],
[-63, -8],
[-65, -1],
[-63, 9],
[-43, -1],
[-48, -23],
[-58, -35],
[-84, -62],
[-94, -83],
[-86, -92],
[-64, -86],
[-52, -79],
[-43, -89],
[-63, -108],
[-72, -112]
],
"c": true
}
],
"h": 1
},
{
"t": 27,
"s": [
{
"i": [
[2.317, -0.535],
[3.86, -4.04],
[1.242, -4.613],
[-2.12, -5.938],
[-2.373, -3.37],
[-0.492, -0.639],
[-0.459, -0.632],
[-0.8, -1.421],
[-0.923, -1.114],
[-0.951, -0.655],
[-0.472, -0.507],
[-0.081, -0.566],
[-0.34, -0.374],
[-1.019, -0.973],
[-0.936, -1.02],
[-0.997, -1.18],
[-0.954, -1.127],
[-0.458, -4.534],
[0.591, -1.92],
[-7.875, -0.144],
[-0.943, 9.517],
[4.79, 6.294],
[7.791, 10.593],
[-2.16, 8.125],
[-1.994, 0.531],
[-4.781, -3.242],
[-0.608, -0.61],
[-0.949, -0.628],
[-0.752, 8.522],
[12.133, 3.114]
],
"o": [
[-5.317, 1.227],
[-3.86, 4.04],
[-1.851, 6.879],
[2.12, 5.938],
[0.571, 0.811],
[0.492, 0.639],
[0.875, 1.203],
[0.8, 1.421],
[0.723, 0.873],
[0.951, 0.655],
[0.337, 0.361],
[0.081, 0.566],
[0.99, 1.09],
[1.018, 0.973],
[1.058, 1.152],
[0.997, 1.18],
[3.481, 4.111],
[0.271, 2.68],
[-2.255, 7.329],
[7.212, 0.132],
[1.112, -11.222],
[-8.19, -10.762],
[-4.476, -6.085],
[0.814, -3.063],
[5.149, -1.372],
[0.641, 0.434],
[1.172, 1.175],
[7.025, 4.649],
[0.85, -9.635],
[-5.404, -1.387]
],
"v": [
[-82, -111],
[-96.057, -102.54],
[-104, -89],
[-102.668, -69.368],
[-95, -55],
[-93.416, -52.866],
[-92, -51],
[-89.536, -46.934],
[-87, -43],
[-84.312, -40.725],
[-82, -39],
[-81.502, -37.509],
[-81, -36],
[-77.959, -32.947],
[-75, -30],
[-71.923, -26.481],
[-69, -23],
[-58, -8],
[-60, -2],
[-51, 12],
[-38, -5],
[-48, -30],
[-76, -62],
[-84, -85],
[-77, -92],
[-60, -87],
[-57, -85],
[-55, -81],
[-38, -88],
[-65, -111]
],
"c": true
}
],
"h": 1
},
{
"t": 28,
"s": [
{
"i": [
[9.692, -1.405],
[1.755, -0.653],
[1.212, -0.989],
[0.612, -0.799],
[1.064, -1.588],
[0.956, -1.834],
[0.829, -2.651],
[-1.471, -5.599],
[-2.124, -4.18],
[-2.534, -3.99],
[-2.617, -3.613],
[-1.064, -1.14],
[-0.856, -1.216],
[-1.667, -2.958],
[-0.212, -2.155],
[0.684, -2.633],
[-1.441, -2.449],
[-1.846, -1.035],
[-3.412, 0.49],
[-1.764, 4.555],
[0.994, 6.213],
[1.271, 2.573],
[1.579, 2.614],
[5.214, 6.995],
[2.346, 5.732],
[-9.454, 1.216],
[-1.712, -1.097],
[-10.861, 3.613],
[-0.352, 2.926],
[4.889, 4.64]
],
"o": [
[-2.767, 0.401],
[-1.755, 0.653],
[-1.489, 1.215],
[-0.612, 0.799],
[-1.348, 2.013],
[-0.956, 1.834],
[-2.008, 6.423],
[1.471, 5.599],
[2.249, 4.426],
[2.534, 3.99],
[0.888, 1.226],
[1.064, 1.14],
[2.12, 3.012],
[1.667, 2.958],
[0.297, 3.021],
[-0.684, 2.633],
[0.206, 0.35],
[1.846, 1.035],
[3.939, -0.566],
[1.764, -4.555],
[-0.335, -2.095],
[-1.271, -2.573],
[-3.799, -6.286],
[-5.214, -6.995],
[-3.248, -7.936],
[1.752, -0.225],
[5.75, 3.685],
[2.926, -0.973],
[0.526, -4.371],
[-6.865, -6.516]
],
"v": [
[-63, -111],
[-69.666, -109.441],
[-74, -107],
[-76.82, -104.28],
[-79, -101],
[-82.389, -95.478],
[-85, -89],
[-85.099, -70.817],
[-79, -56],
[-71.776, -43.39],
[-64, -32],
[-60.976, -28.493],
[-58, -25],
[-52.068, -15.857],
[-49, -8],
[-50.358, 0.429],
[-50, 8],
[-46.904, 10.63],
[-39, 12],
[-30.301, 3.736],
[-29, -13],
[-31.567, -20.11],
[-36, -28],
[-50.589, -48.416],
[-63, -68],
[-59, -92],
[-53, -89],
[-34, -79],
[-28, -87],
[-36, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 29,
"s": [
{
"i": [
[-2.683, 7.317],
[-0.869, -1.25],
[-0.8, -0.658],
[-1.031, -0.204],
[-1.563, 0.111],
[-1.735, 1.264],
[-0.45, 1.828],
[3.728, 4.807],
[2.323, 0.76],
[3.865, -2.557],
[1.585, -3.719],
[-0.715, -8.537],
[-2.363, -6.29],
[-1.877, -4.04],
[-1.844, -4.454],
[-1.186, -3.102],
[-0.134, -2.887],
[0.496, -1.449],
[0.053, -1.394],
[-1.552, -2.05],
[-2.93, -0.213],
[-1.523, 0.346],
[-0.883, 0.689],
[-0.327, 1.358],
[-0.442, 1.593],
[1.215, 6.113],
[1.85, 4.387],
[0.684, 1.501],
[0.533, 1.264],
[2.41, 7.866]
],
"o": [
[1.239, 1.98],
[0.869, 1.25],
[0.8, 0.658],
[1.031, 0.204],
[1.61, -0.114],
[1.735, -1.264],
[1.234, -5.011],
[-3.728, -4.807],
[-5.956, -1.948],
[-3.865, 2.557],
[-3.224, 7.564],
[0.715, 8.537],
[1.648, 4.387],
[1.877, 4.04],
[1.12, 2.706],
[1.186, 3.102],
[0.038, 0.811],
[-0.496, 1.449],
[-0.136, 3.585],
[1.552, 2.05],
[1.025, 0.075],
[1.523, -0.346],
[1.249, -0.974],
[0.327, -1.358],
[1.71, -6.16],
[-1.215, -6.113],
[-0.73, -1.733],
[-0.684, -1.501],
[-3.044, -7.221],
[-2.41, -7.866]
],
"v": [
[-33, -87],
[-29.914, -82.19],
[-27.486, -79.364],
[-24.816, -78.105],
[-21, -78],
[-15.63, -80.215],
[-12, -85],
[-17.332, -100.689],
[-28, -110],
[-42.778, -108.25],
[-51, -98],
[-54.191, -73.044],
[-49, -50],
[-43.647, -37.55],
[-38, -25],
[-34.26, -16.136],
[-32, -7],
[-32.932, -3.437],
[-34, 1],
[-31.799, 9.529],
[-25, 13],
[-20.893, 12.572],
[-17, 11],
[-14.895, 7.464],
[-14, 3],
[-13.83, -15.829],
[-19, -32],
[-21.148, -36.851],
[-23, -41],
[-32.295, -63.928]
],
"c": true
}
],
"h": 1
},
{
"t": 30,
"s": [
{
"i": [
[3.333, -0.976],
[1.133, -1.074],
[0.545, -1.572],
[0.264, -2.087],
[0.291, -2.619],
[-0.238, -6.751],
[-0.732, -6.624],
[-0.753, -6.186],
[-0.301, -5.438],
[0.011, -2.415],
[-0.042, -2.238],
[-0.282, -1.704],
[-0.709, -0.814],
[-1.027, -0.436],
[-1.371, -0.226],
[-1.409, 0.198],
[-1.139, 0.835],
[0.122, 7.953],
[0.958, 8.662],
[0.318, 3.74],
[0.375, 3.844],
[0.571, 4.011],
[-0.7, 2.69],
[-0.723, 0.668],
[-0.748, 0.937],
[-0.514, 0.926],
[-0.22, 1.386],
[0.663, 2.516],
[0.717, 1.6],
[2.195, 1.193]
],
"o": [
[-2.029, 0.594],
[-1.133, 1.074],
[-0.545, 1.572],
[-0.264, 2.087],
[-0.729, 6.568],
[0.238, 6.751],
[0.732, 6.624],
[0.753, 6.186],
[0.124, 2.236],
[-0.011, 2.415],
[0.042, 2.238],
[0.282, 1.704],
[0.377, 0.433],
[1.027, 0.436],
[1.371, 0.226],
[1.409, -0.198],
[3.447, -2.528],
[-0.122, -7.953],
[-0.353, -3.197],
[-0.318, -3.74],
[-0.416, -4.266],
[-0.571, -4.011],
[0.361, -1.39],
[0.723, -0.668],
[0.726, -0.91],
[0.514, -0.926],
[0.37, -2.338],
[-0.663, -2.516],
[-1.885, -4.206],
[-2.195, -1.193]
],
"v": [
[-11, -109],
[-15.667, -106.502],
[-18.108, -102.537],
[-19.245, -97.054],
[-20, -90],
[-20.619, -69.944],
[-19.046, -49.805],
[-16.7, -30.513],
[-15, -13],
[-14.877, -5.936],
[-14.877, 1.132],
[-14.438, 7.133],
[-13, 11],
[-10.818, 12.357],
[-7.145, 13.403],
[-2.899, 13.497],
[1, 12],
[5.304, -4.9],
[3, -31],
[2.016, -41.514],
[1, -53],
[-0.837, -65.682],
[-1, -76],
[0.711, -78.84],
[3, -81],
[4.88, -83.643],
[6, -87],
[5.316, -94.554],
[3, -101],
[-2.914, -108.886]
],
"c": true
}
],
"h": 1
},
{
"t": 31,
"s": [
{
"i": [
[3.441, -0.647],
[1.283, -0.953],
[0.833, -1.422],
[0.508, -1.758],
[0.31, -1.96],
[-0.087, -1.457],
[-0.408, -1.039],
[-0.617, -0.938],
[-0.714, -1.153],
[-0.141, -1.047],
[0.131, -1.095],
[0.206, -1.125],
[0.086, -1.137],
[0.415, -3.836],
[0.451, -3.58],
[0.436, -3.579],
[0.369, -3.834],
[0.163, -4.005],
[-0.565, -3.399],
[-1.82, -1.944],
[-3.604, 0.359],
[-1.357, 1.89],
[-0.311, 2.89],
[0.076, 3.305],
[-0.195, 3.135],
[-0.864, 6.178],
[-0.881, 7.07],
[-0.327, 7.107],
[0.798, 6.288],
[2.455, 2.453]
],
"o": [
[-1.859, 0.35],
[-1.283, 0.953],
[-0.833, 1.422],
[-0.508, 1.758],
[-0.346, 2.191],
[0.087, 1.457],
[0.408, 1.039],
[0.617, 0.938],
[0.608, 0.981],
[0.141, 1.047],
[-0.131, 1.095],
[-0.206, 1.125],
[-0.328, 4.346],
[-0.415, 3.836],
[-0.451, 3.58],
[-0.436, 3.579],
[-0.363, 3.764],
[-0.163, 4.005],
[0.565, 3.399],
[1.82, 1.944],
[3.06, -0.305],
[1.357, -1.89],
[0.311, -2.89],
[-0.076, -3.305],
[0.275, -4.432],
[0.864, -6.178],
[0.881, -7.07],
[0.327, -7.107],
[-0.741, -5.836],
[-2.455, -2.453]
],
"v": [
[11, -109],
[6.318, -107.013],
[3.176, -103.416],
[1.196, -98.612],
[0, -93],
[-0.361, -87.608],
[0.409, -83.943],
[1.975, -81.057],
[4, -78],
[5.074, -74.953],
[5.041, -71.735],
[4.487, -68.399],
[4, -65],
[2.874, -52.791],
[1.563, -41.731],
[0.22, -31.056],
[-1, -20],
[-1.921, -8.134],
[-1.45, 3.184],
[1.995, 11.41],
[10, 14],
[16.461, 10.561],
[18.798, 3.245],
[18.986, -6.194],
[19, -16],
[20.851, -32.129],
[23.61, -52.216],
[25.564, -73.694],
[25, -94],
[20.025, -106.362]
],
"c": true
}
],
"h": 1
},
{
"t": 32,
"s": [
{
"i": [
[10.012, -0.857],
[0.663, -0.066],
[0.696, -0.133],
[0.685, -0.25],
[0.629, -0.419],
[1.161, -1.785],
[0.997, -2.24],
[0.588, -2.086],
[-0.068, -1.321],
[-1.507, -1.219],
[-0.877, -0.316],
[-1.658, -0.093],
[-0.11, -0.173],
[0.768, -3.552],
[0.803, -3.414],
[1.144, -4.168],
[1.192, -4.1],
[1.234, -4.969],
[-0.056, -4.277],
[-2.293, -3.72],
[-5.767, 1.698],
[-1.257, 0.847],
[-0.419, 0.742],
[0.306, 2.867],
[-0.16, 2.647],
[-0.757, 2.689],
[-0.84, 3.026],
[-1.59, 5.162],
[-1.1, 4.811],
[1.605, 11.555]
],
"o": [
[-0.585, 0.05],
[-0.663, 0.066],
[-0.696, 0.133],
[-0.685, 0.25],
[-1.079, 0.718],
[-1.161, 1.785],
[-0.997, 2.24],
[-0.588, 2.086],
[0.093, 1.806],
[1.507, 1.219],
[1.258, 0.453],
[1.658, 0.093],
[0.876, 1.379],
[-0.768, 3.552],
[-1.23, 5.23],
[-1.144, 4.168],
[-1.119, 3.847],
[-1.234, 4.969],
[0.062, 4.817],
[2.293, 3.72],
[-0.445, 0.131],
[1.257, -0.847],
[1.063, -1.884],
[-0.306, -2.867],
[0.134, -2.219],
[0.757, -2.689],
[1.538, -5.541],
[1.59, -5.162],
[2.433, -10.639],
[-1.605, -11.555]
],
"v": [
[27, -109],
[25.116, -108.839],
[23.066, -108.553],
[20.982, -107.991],
[19, -107],
[15.579, -103.093],
[12.28, -96.903],
[9.841, -90.262],
[9, -85],
[11.912, -80.383],
[16, -78],
[20.861, -77.29],
[24, -77],
[23.76, -69.026],
[21, -58],
[17.471, -44.153],
[14, -32],
[10.119, -18.323],
[8, -4],
[11.222, 9.887],
[23, 14],
[24.852, 12.655],
[28, 10],
[28.678, 2.572],
[28, -6],
[29.471, -13.395],
[32, -22],
[36.828, -38.047],
[41, -53],
[43.334, -89.622]
],
"c": true
}
],
"h": 1
},
{
"t": 33,
"s": [
{
"i": [
[-1.692, -0.766],
[1.471, -6.219],
[2.553, -5.943],
[1.166, -2.647],
[1.155, -2.664],
[1.283, -2.686],
[0.627, -2.395],
[-0.895, -5.6],
[-2.8, -1.331],
[-2.452, 0.856],
[-0.736, 1.221],
[0.438, 2.954],
[-0.248, 2.689],
[-1.182, 2.599],
[-0.96, 2.214],
[-0.473, 1.359],
[-0.575, 1.331],
[-0.379, 0.478],
[-0.227, 0.489],
[-0.098, 0.91],
[-0.285, 0.66],
[-1.26, 2.459],
[-0.88, 2.66],
[-0.699, 3.206],
[-0.248, 3.282],
[3.214, 7.139],
[7.793, -0.124],
[1.212, -0.836],
[-16.354, -1.393],
[-1.724, 3.235]
],
"o": [
[1.434, 6.183],
[-1.471, 6.218],
[-1.18, 2.747],
[-1.166, 2.647],
[-1.24, 2.86],
[-1.283, 2.686],
[-1.379, 5.271],
[0.895, 5.6],
[3.456, 1.643],
[2.452, -0.856],
[1.506, -2.497],
[-0.438, -2.954],
[0.312, -3.39],
[1.182, -2.599],
[0.535, -1.233],
[0.473, -1.359],
[0.258, -0.599],
[0.379, -0.478],
[0.325, -0.701],
[0.098, -0.91],
[1.079, -2.504],
[1.26, -2.459],
[0.958, -2.895],
[0.698, -3.206],
[0.647, -8.57],
[-3.214, -7.139],
[-2.471, 0.04],
[-7.887, 5.438],
[7.4, 0.63],
[0.183, -0.343]
],
"v": [
[38, -85],
[37.49, -66.32],
[31, -48],
[27.481, -39.938],
[24, -32],
[20.04, -23.651],
[17, -16],
[16.366, 1.455],
[22, 13],
[31.04, 13.648],
[36, 10],
[36.944, 1.644],
[36, -7],
[38.514, -15.882],
[42, -23],
[43.47, -26.927],
[45, -31],
[46.023, -32.582],
[47, -34],
[47.53, -36.53],
[48, -39],
[51.649, -46.383],
[55, -54],
[57.532, -63.209],
[59, -73],
[55.33, -98.02],
[39, -110],
[28, -106],
[26, -77],
[36, -83]
],
"c": true
}
],
"h": 1
},
{
"t": 34,
"s": [
{
"i": [
[14.095, -1.272],
[0.937, -0.322],
[0.989, -0.507],
[0.677, -0.062],
[0.614, -0.406],
[1.107, -1.421],
[0.922, -1.224],
[0.408, -0.14],
[0.201, -0.216],
[0.756, -2.55],
[-0.329, -1.4],
[-2.06, -1.454],
[-3.378, 0.441],
[-2.23, 3.005],
[-1.843, -1.444],
[-0.405, -1.932],
[-0.025, -1.995],
[0.392, -1.914],
[0.456, -1.6],
[2.132, -3.599],
[2.472, -4.571],
[0.616, -1.544],
[0.771, -1.406],
[0.656, -1.147],
[0.679, -1.473],
[-14.013, -1.683],
[-0.906, 4.713],
[-0.286, 3.517],
[-3.246, 5.959],
[-1.098, 19.932]
],
"o": [
[-2.264, 0.204],
[-0.937, 0.322],
[-0.678, 0.347],
[-0.677, 0.062],
[-1.651, 1.092],
[-1.107, 1.421],
[-0.169, 0.224],
[-0.407, 0.14],
[-1.305, 1.401],
[-0.756, 2.55],
[0.382, 1.624],
[2.06, 1.454],
[3.235, -0.423],
[2.23, -3.005],
[0.353, 0.276],
[0.405, 1.932],
[0.022, 1.745],
[-0.392, 1.914],
[-2.002, 7.031],
[-2.132, 3.6],
[-0.767, 1.416],
[-0.616, 1.544],
[-0.631, 1.151],
[-0.757, 1.324],
[-5.008, 10.858],
[6.28, 0.754],
[0.78, -4.06],
[0.405, -4.988],
[8.39, -15.404],
[1.187, -21.552]
],
"v": [
[47, -109],
[42.544, -108.226],
[40, -107],
[37.952, -106.544],
[36, -106],
[31.953, -102.099],
[29, -98],
[28.025, -97.494],
[27, -97],
[23.774, -90.499],
[23, -84],
[26.753, -78.951],
[35, -77],
[43.044, -83.9],
[49, -88],
[50.246, -84.288],
[51, -78],
[50.358, -72.392],
[49, -67],
[42.853, -52.155],
[36, -41],
[34.003, -36.492],
[32, -32],
[29, -29],
[27, -24],
[32, 14],
[44, 6],
[42, -6],
[49, -23],
[71, -75]
],
"c": true
}
],
"h": 1
},
{
"t": 35,
"s": [
{
"i": [
[8.043, -0.886],
[1.416, -0.578],
[2.278, -1.352],
[1.236, -0.627],
[0.831, -0.763],
[0.311, -0.547],
[0.347, -0.438],
[0.627, -2.982],
[-3.135, -2.767],
[-3.115, 2.252],
[-2.844, 2.136],
[-1.146, -0.796],
[-0.7, -3.858],
[2.241, -5.103],
[2.163, -3.381],
[0.336, -0.745],
[0.319, -0.495],
[4.168, -7.075],
[0.392, -6.585],
[-1.84, -4.18],
[-4.893, 0],
[-1.309, 1.377],
[-0.485, 1.491],
[0.519, 2.006],
[-0.269, 2.498],
[-1.51, 2.797],
[-1.745, 2.835],
[-3.084, 4.604],
[-2.081, 10.716],
[5.726, 6.344]
],
"o": [
[-3.056, 0.337],
[-1.416, 0.578],
[-1.225, 0.727],
[-1.236, 0.627],
[-0.408, 0.374],
[-0.311, 0.547],
[-2.626, 3.307],
[-0.627, 2.981],
[4.694, 4.144],
[3.115, -2.252],
[2.716, -2.041],
[1.146, 0.796],
[1.126, 6.206],
[-2.241, 5.103],
[-0.337, 0.526],
[-0.336, 0.745],
[-3.936, 6.116],
[-4.168, 7.075],
[-0.255, 4.279],
[1.841, 4.18],
[3.279, 0],
[1.309, -1.377],
[0.806, -2.478],
[-0.519, -2.006],
[0.213, -1.978],
[1.511, -2.797],
[3.564, -5.791],
[5.859, -8.748],
[2.529, -13.025],
[-5.149, -5.706]
],
"v": [
[54, -109],
[47.916, -107.762],
[43, -105],
[39.204, -103.026],
[36, -101],
[34.955, -99.548],
[34, -98],
[28.68, -88.595],
[32, -80],
[43.387, -78.79],
[52, -87],
[57.513, -88.924],
[60, -82],
[57.466, -64.882],
[50, -52],
[48.986, -49.976],
[48, -48],
[34.842, -27.852],
[27, -7],
[29.139, 6.709],
[39, 14],
[45.596, 11.618],
[48, 7],
[47.903, 0.515],
[47, -6],
[49.851, -13.357],
[55, -22],
[67, -40],
[80, -70],
[72, -102]
],
"c": true
}
],
"h": 1
},
{
"t": 36,
"s": [
{
"i": [
[6.95, -0.74],
[2.905, -1.098],
[1.338, -1.282],
[2.561, -3.354],
[-1.377, -4.54],
[-1.524, -1.099],
[-2.451, -0.109],
[-1.063, 0.784],
[-0.925, 0.989],
[-2.672, 1.205],
[-0.427, 0.231],
[-1.115, -0.377],
[-0.221, -2.138],
[2.655, -4.292],
[0.852, -1.278],
[0.353, -0.47],
[0.554, -0.76],
[0.376, -0.501],
[0.552, -0.759],
[1.638, -2.261],
[2.119, -8.747],
[-11.571, 0.349],
[0.102, -0.212],
[-0.6, 5.533],
[-3.865, 5.614],
[-3.36, 5.017],
[-2.959, 7.022],
[-0.68, 2.933],
[8.858, 3.993],
[0.432, 0.229]
],
"o": [
[-3.041, 0.324],
[-2.905, 1.098],
[-2.132, 2.042],
[-2.561, 3.354],
[0.454, 1.496],
[1.524, 1.099],
[2.821, 0.126],
[1.064, -0.784],
[2.484, -2.655],
[0.357, -0.161],
[1.608, -0.869],
[1.776, 0.601],
[0.807, 7.818],
[-0.965, 1.561],
[-0.298, 0.447],
[-0.636, 0.848],
[-0.344, 0.472],
[-0.635, 0.846],
[-1.758, 2.419],
[-5.704, 7.876],
[-2.125, 8.771],
[5.64, -0.17],
[2.416, -5.024],
[0.401, -3.692],
[4.493, -6.525],
[4.477, -6.685],
[1.175, -2.788],
[3.523, -15.198],
[-0.36, -0.162],
[-3.543, -1.875]
],
"v": [
[60, -109],
[50.723, -106.719],
[44, -103],
[35.868, -94.873],
[33, -83],
[36.002, -78.96],
[42, -77],
[47.422, -78.164],
[50, -81],
[56, -86],
[57, -88],
[64, -90],
[69, -80],
[60, -57],
[58, -52],
[56, -51],
[55, -48],
[53, -47],
[52, -44],
[46, -37],
[32, -11],
[44, 14],
[53, 9],
[51, -6],
[60, -21],
[73, -39],
[84, -59],
[88, -68],
[76, -105],
[75, -107]
],
"c": true
}
],
"h": 1
},
{
"t": 37,
"s": [
{
"i": [
[6.233, -0.744],
[3.673, -1.795],
[2.536, -2.251],
[1.463, -2.357],
[-0.21, -2.367],
[-1.895, -1.574],
[-2.184, -0.066],
[-3.996, 3.091],
[-3.467, -1.045],
[-0.259, -4.087],
[3.554, -5.557],
[3.616, -4.531],
[1.087, -12.139],
[-9.903, 1.954],
[-0.682, 3.684],
[-0.71, 4.488],
[-0.964, 1.734],
[-0.939, 1.446],
[-0.345, 0.461],
[-0.554, 0.76],
[-0.376, 0.501],
[-0.596, 0.775],
[-1.455, 2.193],
[-0.623, 0.94],
[-0.623, 0.94],
[-0.506, 0.737],
[-0.962, 1.445],
[-0.981, 1.538],
[0.282, 9.538],
[7.628, 4.07]
],
"o": [
[-4.773, 0.57],
[-3.673, 1.795],
[-1.358, 1.206],
[-1.463, 2.357],
[0.234, 2.637],
[1.896, 1.574],
[6.258, 0.189],
[4.147, -3.208],
[2.255, 0.68],
[0.397, 6.272],
[-3.899, 6.097],
[-9.421, 11.805],
[-1.145, 12.792],
[3.806, -0.751],
[0.803, -4.341],
[0.086, -0.546],
[0.913, -1.643],
[0.285, -0.438],
[0.636, -0.848],
[0.344, -0.472],
[0.653, -0.87],
[2.166, -2.819],
[1.103, -1.662],
[1.103, -1.662],
[0.595, -0.897],
[0.809, -1.177],
[0.873, -1.312],
[4.282, -6.717],
[-0.374, -12.63],
[-4.306, -2.297]
],
"v": [
[65, -109],
[52.323, -105.261],
[43, -99],
[38.324, -93.371],
[36, -86],
[39.537, -79.572],
[46, -77],
[57, -84],
[70, -90],
[76, -79],
[68, -59],
[56, -43],
[35, -8],
[50, 14],
[57, 6],
[55, -7],
[58, -11],
[60, -16],
[62, -17],
[63, -20],
[65, -21],
[66, -24],
[74, -33],
[77, -37],
[80, -41],
[82, -43],
[84, -48],
[87, -52],
[96, -79],
[81, -107]
],
"c": true
}
],
"h": 1
},
{
"t": 38,
"s": [
{
"i": [
[1.647, -0.211],
[3.205, -1.278],
[3.453, -2.54],
[2.196, -2.853],
[-1.45, -4.627],
[-1.536, -1.121],
[-2.416, -0.112],
[-2.608, 2.496],
[-2.576, 1.201],
[-2.905, -1.487],
[-0.312, -4.948],
[1.855, -3.591],
[1.77, -2.606],
[2.135, -2.77],
[2.131, -2.486],
[4.115, -5.865],
[0, -7.076],
[-9.381, 0.969],
[0.945, 4.244],
[-0.331, 2.895],
[-2.557, 3.213],
[-1.725, 2.071],
[-2.393, 3.051],
[-0.908, 1.137],
[-1.532, 2.219],
[-0.672, 1.075],
[-1.198, 3.937],
[3.55, 7.75],
[6.098, 3.388],
[1.056, 0.329]
],
"o": [
[-2.727, 0.349],
[-3.205, 1.278],
[-2.665, 1.96],
[-2.196, 2.853],
[0.439, 1.403],
[1.536, 1.121],
[3.993, 0.185],
[2.608, -2.496],
[4.069, -1.897],
[2.905, 1.487],
[0.191, 3.028],
[-1.855, 3.591],
[-2.331, 3.432],
[-2.135, 2.77],
[-5.541, 6.463],
[-4.115, 5.865],
[0, 10.245],
[8.784, -0.907],
[-0.459, -2.063],
[0.63, -5.51],
[1.77, -2.224],
[3.326, -3.993],
[0.909, -1.159],
[1.718, -2.153],
[0.596, -0.863],
[2.908, -4.652],
[3.053, -10.033],
[-3.703, -8.083],
[-0.968, -0.538],
[-4.187, -1.303]
],
"v": [
[69, -109],
[60.044, -106.643],
[50, -101],
[41.914, -94.001],
[40, -83],
[43.017, -79.032],
[49, -77],
[58.562, -81.461],
[66, -88],
[76.817, -88.634],
[82, -79],
[78.971, -68.684],
[73, -59],
[66.35, -49.791],
[60, -42],
[44.844, -23.959],
[38, -5],
[52, 14],
[60, 1],
[58, -6],
[68, -20],
[73, -27],
[82, -37],
[84, -41],
[90, -47],
[92, -51],
[100, -66],
[98, -93],
[86, -106],
[82, -109]
],
"c": true
}
],
"h": 1
},
{
"t": 39,
"s": [
{
"i": [
[6.89, -0.815],
[3.45, -1.257],
[3.629, -2.669],
[2.123, -2.867],
[-1.331, -4.445],
[-1.321, -1.204],
[-2.45, -0.294],
[-2.437, 1.703],
[-1.607, -13.824],
[3.698, -5.29],
[0.365, -0.487],
[0.611, -0.78],
[0.417, -0.448],
[0.686, -0.803],
[2.043, -2.273],
[2.527, -10.638],
[-10.055, 1.039],
[-0.351, 0.734],
[-0.86, 5.47],
[-1.778, 2.471],
[-3.623, 4.033],
[-1.799, 1.999],
[-1.727, 2.054],
[-0.83, 1.103],
[-0.403, 0.433],
[-0.679, 0.936],
[-0.711, 1.062],
[0.53, 11.664],
[4.486, 4.612],
[1.94, 1.026]
],
"o": [
[-2.573, 0.304],
[-3.45, 1.257],
[-2.84, 2.088],
[-2.123, 2.867],
[0.267, 0.889],
[1.321, 1.204],
[6.346, 0.762],
[8.352, -5.838],
[0.651, 5.598],
[-0.322, 0.461],
[-0.659, 0.878],
[-0.361, 0.46],
[-0.697, 0.749],
[-2.476, 2.9],
[-10.39, 11.564],
[-3.517, 14.807],
[4.645, -0.48],
[2.721, -5.69],
[0.214, -1.358],
[3.702, -5.144],
[2.269, -2.525],
[1.844, -2.05],
[0.988, -1.175],
[0.337, -0.448],
[0.745, -0.8],
[0.829, -1.142],
[4.953, -7.395],
[-0.454, -9.995],
[-2.485, -2.555],
[-5.035, -2.663]
],
"v": [
[73, -109],
[63.792, -106.773],
[53, -101],
[44.872, -93.767],
[43, -83],
[45.362, -79.554],
[51, -77],
[64, -84],
[87, -80],
[79, -60],
[77, -59],
[76, -56],
[74, -55],
[73, -52],
[66, -45],
[42, -12],
[55, 14],
[63, 9],
[61, -7],
[66, -14],
[77, -27],
[83, -34],
[89, -40],
[91, -44],
[93, -45],
[94, -48],
[97, -51],
[107, -80],
[97, -101],
[91, -107]
],
"c": true
}
],
"h": 1
},
{
"t": 40,
"s": [
{
"i": [
[4.56, -0.479],
[2.024, -0.262],
[1.95, -0.748],
[0.607, -0.565],
[0.799, -0.444],
[1.906, -1.337],
[1.585, -2.101],
[0.779, -1.504],
[-0.362, -2.331],
[-4.248, -0.316],
[-3.926, 2.486],
[-1.573, -12.837],
[4.023, -5.229],
[6.173, -6.924],
[2.693, -4.652],
[0.019, -5.058],
[-8.53, 1.272],
[-0.963, 3.04],
[0.206, 2.491],
[-0.396, 3.016],
[-1.573, 2.228],
[-3.55, 3.963],
[-1.701, 1.835],
[-3.405, 4.389],
[-0.712, 0.971],
[-1.534, 2.568],
[-1.537, 4.72],
[-0.22, 2.206],
[6.333, 4.201],
[0.665, 0.404]
],
"o": [
[-1.954, 0.206],
[-2.024, 0.262],
[-0.772, 0.296],
[-0.607, 0.565],
[-2.79, 1.549],
[-1.906, 1.337],
[-1.247, 1.653],
[-0.779, 1.504],
[0.802, 5.157],
[6.652, 0.495],
[9.988, -6.325],
[0.794, 6.479],
[-5.783, 7.516],
[-4.146, 4.65],
[-2.608, 4.505],
[-0.039, 10.342],
[5.007, -0.747],
[0.615, -1.941],
[-0.203, -2.447],
[0.19, -1.452],
[3.567, -5.052],
[2.286, -2.552],
[3.581, -3.864],
[0.608, -0.783],
[2.013, -2.745],
[2.329, -3.899],
[0.731, -2.245],
[1.388, -13.905],
[-0.823, -0.546],
[-5.657, -3.436]
],
"v": [
[77, -109],
[70.996, -108.407],
[65, -107],
[63.02, -105.611],
[61, -104],
[54.097, -99.914],
[49, -95],
[45.793, -90.508],
[45, -85],
[54, -77],
[67, -85],
[91, -80],
[82, -59],
[60, -35],
[48, -20],
[43, -5],
[58, 14],
[65, 7],
[66, 2],
[63, -6],
[68, -13],
[79, -26],
[85, -33],
[97, -45],
[99, -49],
[104, -56],
[109, -67],
[111, -74],
[99, -104],
[97, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 41,
"s": [
{
"i": [
[5.891, -0.619],
[7.054, -4.41],
[-0.705, -7.194],
[-5.031, -0.092],
[-2.824, 1.828],
[-0.657, 0.394],
[-2.013, 0.636],
[-2.125, -0.552],
[-0.418, -5.349],
[2.56, -3.348],
[0.67, -0.82],
[2.544, -2.78],
[1.253, -1.437],
[1.207, -1.257],
[0, -14.229],
[-8.933, 0.442],
[-0.698, 1.155],
[0.579, 3.606],
[-0.339, 2.536],
[-0.446, 0.479],
[-0.686, 0.877],
[-0.919, 0.987],
[-0.682, 0.766],
[-5.785, 6.618],
[-0.808, 0.985],
[-0.432, 0.464],
[-0.687, 0.872],
[-1.654, 2.521],
[-1.364, 6.519],
[8.91, 4.888]
],
"o": [
[-6.357, 0.668],
[-5.62, 3.514],
[0.498, 5.084],
[5.931, 0.109],
[0.694, -0.449],
[1.764, -1.058],
[2.338, -0.739],
[2.344, 0.608],
[0.506, 6.467],
[-0.612, 0.801],
[-2.183, 2.67],
[-1.231, 1.345],
[-1.246, 1.429],
[-12.272, 12.774],
[0, 8.527],
[2.795, -0.138],
[0.685, -1.133],
[-0.352, -2.197],
[0.226, -1.696],
[0.726, -0.779],
[1.372, -1.753],
[0.681, -0.732],
[7.305, -8.207],
[0.724, -0.829],
[0.388, -0.473],
[0.724, -0.777],
[1.893, -2.404],
[3.54, -5.395],
[3.454, -16.502],
[-6.286, -3.448]
],
"v": [
[80, -109],
[59, -102],
[47, -86],
[57, -77],
[68, -84],
[70, -85],
[77, -89],
[87, -90],
[95, -79],
[86, -61],
[85, -58],
[77, -51],
[74, -46],
[70, -42],
[45, -5],
[59, 14],
[67, 10],
[68, 1],
[65, -6],
[69, -11],
[70, -14],
[75, -18],
[76, -21],
[96, -40],
[98, -44],
[100, -45],
[101, -48],
[107, -55],
[114, -71],
[99, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 42,
"s": [
{
"i": [
[5.581, -0.632],
[7.165, -4.053],
[-1.142, -7.166],
[-1.553, -1.381],
[-2.421, -0.18],
[-1.8, 1.565],
[-1.521, 0.984],
[-3.539, 1.312],
[-2.811, -0.562],
[-1.738, -1.872],
[-0.263, -3.155],
[2.61, -4.713],
[9.48, -10.878],
[1.233, -1.504],
[1.8, -3.22],
[0.368, -5.272],
[-1.843, -2.869],
[-6.806, 1.534],
[-0.796, 2.513],
[0.246, 2.439],
[-0.489, 3.636],
[-0.368, 0.49],
[-0.662, 0.792],
[-3.438, 3.791],
[-5.613, 8.462],
[-1.561, 2.724],
[-1.17, 6.131],
[7.022, 5.403],
[0.481, 0.217],
[0.411, 0.238]
],
"o": [
[-5.48, 0.621],
[-7.166, 4.053],
[0.366, 2.296],
[1.553, 1.381],
[3.279, 0.244],
[1.8, -1.565],
[2.031, -1.314],
[3.54, -1.312],
[1.785, 0.357],
[1.738, 1.872],
[0.371, 4.452],
[-8.341, 15.06],
[-1.324, 1.52],
[-2.438, 2.974],
[-1.597, 2.857],
[-0.327, 4.68],
[1.338, 2.084],
[3.671, -0.828],
[0.639, -2.018],
[-0.224, -2.216],
[0.192, -1.43],
[0.677, -0.903],
[3.676, -4.395],
[7.576, -8.354],
[1.656, -2.497],
[2.724, -4.753],
[2.594, -13.588],
[-0.41, -0.315],
[-0.349, -0.157],
[-5.679, -3.284]
],
"v": [
[82, -109],
[60.534, -101.908],
[49, -85],
[51.959, -79.413],
[58, -77],
[65.318, -79.579],
[70, -84],
[78.915, -88.407],
[89, -90],
[94.642, -86.599],
[98, -79],
[94, -68],
[61, -32],
[58, -27],
[51, -19],
[47, -7],
[50, 8],
[63, 14],
[69, 7],
[70, 2],
[67, -6],
[71, -11],
[72, -14],
[85, -27],
[108, -52],
[112, -59],
[117, -72],
[106, -104],
[104, -104],
[103, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 43,
"s": [
{
"i": [
[4.927, -0.558],
[3.542, -1.123],
[3.644, -2.146],
[2.59, -2.62],
[-0.351, -3.759],
[-1.728, -1.527],
[-1.838, -0.203],
[-1.693, 1.27],
[-1.334, 1.242],
[-1.264, 0.661],
[-0.923, 0.407],
[-1.021, 0.334],
[-1.016, 0.265],
[-2.77, -1.549],
[-1.102, -4.061],
[2.077, -3.671],
[2.572, -3.066],
[2.696, -2.589],
[1.977, -1.977],
[2.091, -10.911],
[-10.779, 1.307],
[-1.057, 1.787],
[-1.051, 5.198],
[-2.459, 2.941],
[-0.93, 1.141],
[-3.209, 2.975],
[-2.158, 2.158],
[-2.093, 2.308],
[-2.789, 7.123],
[11.877, 6.689]
],
"o": [
[-3.189, 0.361],
[-3.542, 1.123],
[-2.991, 1.761],
[-2.59, 2.62],
[0.251, 2.69],
[1.728, 1.527],
[2.895, 0.32],
[1.693, -1.27],
[1.02, -0.95],
[1.264, -0.661],
[0.9, -0.398],
[1.021, -0.334],
[4.816, -1.257],
[2.77, 1.549],
[0.882, 3.25],
[-2.077, 3.671],
[-2.239, 2.668],
[-2.696, 2.589],
[-9.81, 9.81],
[-2.071, 10.81],
[1.08, -0.131],
[3.745, -6.328],
[0.488, -2.412],
[0.944, -1.129],
[2.981, -3.657],
[2.545, -2.359],
[2.037, -2.037],
[5.832, -6.43],
[6.585, -16.816],
[-5.88, -3.312]
],
"v": [
[84, -109],
[73.841, -106.839],
[63, -102],
[53.993, -95.498],
[50, -86],
[53.309, -79.635],
[59, -77],
[65.671, -78.829],
[70, -83],
[73.573, -85.407],
[77, -87],
[79.913, -88.099],
[83, -89],
[94.285, -88.489],
[100, -80],
[97.591, -69.362],
[90, -59],
[82.303, -50.981],
[75, -44],
[49, -10],
[63, 14],
[70, 10],
[69, -7],
[75, -14],
[77, -18],
[87, -28],
[95, -34],
[101, -41],
[118, -64],
[105, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 44,
"s": [
{
"i": [
[5.115, -0.566],
[0.943, -0.154],
[1.191, -0.267],
[0.914, -0.327],
[1.32, -0.463],
[1.941, -0.604],
[1.595, -1.01],
[0.14, -0.424],
[0.226, -0.169],
[0.793, -0.671],
[0.484, -0.704],
[-9.232, -0.443],
[-2.197, 1.257],
[-5.522, -1.014],
[-0.547, -6.508],
[2.724, -4.107],
[3.049, -2.882],
[3.51, -5.292],
[1.328, -2.294],
[0.363, -1.894],
[-1.376, -2.868],
[-5.947, 0.179],
[-0.63, 1.987],
[-1.123, 6.386],
[-1.55, 1.785],
[-9.427, 10.506],
[-1.063, 1.345],
[-1.763, 2.75],
[0.099, 8.822],
[7.131, 4.016]
],
"o": [
[-1.038, 0.115],
[-0.943, 0.154],
[-1.026, 0.231],
[-0.914, 0.327],
[-1.639, 0.575],
[-1.941, 0.604],
[-0.215, 0.136],
[-0.14, 0.424],
[-0.907, 0.68],
[-1.156, 0.978],
[-5.414, 7.879],
[4.964, 0.238],
[4.374, -2.503],
[3.374, 0.62],
[0.679, 8.082],
[-3.097, 4.669],
[-5.604, 5.298],
[-2.105, 3.173],
[-1.447, 2.499],
[-1.606, 8.373],
[2.312, 4.819],
[6.404, -0.193],
[2.077, -6.55],
[0.135, -0.768],
[10.333, -11.897],
[0.89, -0.991],
[2.309, -2.921],
[3.774, -5.887],
[-0.135, -11.968],
[-6.041, -3.402]
],
"v": [
[86, -109],
[83.114, -108.614],
[80, -108],
[77.22, -107.174],
[74, -106],
[68.467, -104.326],
[63, -102],
[62.508, -101.025],
[62, -100],
[59, -99],
[55, -95],
[61, -77],
[75, -85],
[93, -90],
[103, -79],
[91, -58],
[78, -44],
[61, -28],
[54, -19],
[50, -11],
[52, 6],
[63, 14],
[72, 7],
[70, -7],
[75, -14],
[107, -45],
[109, -49],
[115, -56],
[123, -79],
[107, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 45,
"s": [
{
"i": [
[0.261, -0.024],
[8.017, -4.31],
[-2.441, -8.274],
[-1.328, -1.18],
[-2.397, -0.288],
[-2.528, 1.81],
[-1.946, 1.114],
[-3.131, 1.036],
[-3.078, -0.516],
[-1.994, -1.612],
[-0.453, -3.289],
[2.299, -3.506],
[2.393, -2.681],
[2.722, -2.635],
[2.206, -2.206],
[2.769, -2.663],
[2.362, -2.786],
[2.18, -3.757],
[0.046, -4.341],
[-2.666, -3.677],
[-4.385, 0.463],
[1.056, 5.63],
[-0.76, 4],
[-2.669, 2.987],
[-6.78, 6.435],
[-3.89, 11.92],
[3.755, 5.161],
[2.881, 1.299],
[0.428, 0.231],
[7.572, 0.345]
],
"o": [
[-5.371, 0.485],
[-8.018, 4.31],
[0.293, 0.992],
[1.328, 1.18],
[2.942, 0.353],
[2.528, -1.81],
[2.397, -1.371],
[3.131, -1.036],
[1.571, 0.263],
[1.994, 1.612],
[0.59, 4.296],
[-2.299, 3.506],
[-2.904, 3.254],
[-2.722, 2.635],
[-2.564, 2.564],
[-2.769, 2.663],
[-2.232, 2.632],
[-2.181, 3.757],
[-0.05, 4.755],
[2.666, 3.677],
[7.589, -0.801],
[-0.441, -2.352],
[0.115, -0.608],
[6.683, -7.478],
[10.619, -10.079],
[3.595, -11.016],
[-2.432, -3.343],
[-0.358, -0.161],
[-4.269, -2.305],
[-0.985, -0.045]
],
"v": [
[88, -109],
[64.641, -101.842],
[53, -83],
[55.422, -79.472],
[61, -77],
[69.247, -79.9],
[76, -85],
[84.489, -88.916],
[94, -90],
[99.839, -87.269],
[104, -80],
[100.738, -68.289],
[93, -59],
[84.476, -50.214],
[77, -43],
[68.849, -35.167],
[61, -27],
[53.861, -17.282],
[50, -5],
[54.174, 8.414],
[65, 14],
[73, 1],
[71, -7],
[77, -15],
[99, -36],
[123, -69],
[118, -97],
[110, -104],
[109, -106],
[90, -110]
],
"c": true
}
],
"h": 1
},
{
"t": 46,
"s": [
{
"i": [
[0.261, -0.024],
[3.609, -1.108],
[3.998, -2.245],
[-0.756, -8.148],
[-4.586, -0.172],
[-3.519, 2.276],
[-3.334, 0.953],
[-4.742, -2.039],
[-0.147, -6.015],
[1.516, -2.355],
[5.212, -4.928],
[2.644, -2.52],
[2.302, -2.807],
[1.252, -1.683],
[0.027, -7.326],
[-9.201, 1.116],
[1.156, 7.206],
[-0.386, 2.527],
[-2.006, 2.278],
[-4.659, 4.126],
[-1.031, 0.939],
[-4.081, 4.977],
[-0.432, 0.464],
[-0.685, 0.891],
[-1.167, 2.216],
[0.124, 6.681],
[1.678, 2.899],
[2.982, 2.713],
[0.823, 0.444],
[6.03, 0.275]
],
"o": [
[-3.566, 0.322],
[-3.609, 1.108],
[-6.202, 3.483],
[0.531, 5.729],
[7.273, 0.272],
[2.833, -1.832],
[3.97, -1.135],
[1.682, 0.723],
[0.086, 3.512],
[-5.448, 8.46],
[-2.964, 2.802],
[-3.241, 3.089],
[-1.422, 1.734],
[-3.514, 4.726],
[-0.035, 9.359],
[6.251, -0.758],
[-0.396, -2.471],
[0.249, -1.627],
[4.982, -5.658],
[1.278, -1.132],
[5.173, -4.711],
[0.388, -0.473],
[0.73, -0.785],
[2.117, -2.754],
[2.635, -5.004],
[-0.117, -6.315],
[-2.072, -3.579],
[-2.029, -1.847],
[-4.47, -2.413],
[-0.985, -0.045]
],
"v": [
[89, -109],
[78.324, -106.942],
[67, -102],
[53, -86],
[63, -77],
[73, -83],
[84, -88],
[99, -89],
[106, -78],
[101, -67],
[78, -42],
[69, -35],
[62, -26],
[58, -22],
[51, -5],
[66, 14],
[74, 1],
[71, -6],
[77, -13],
[93, -29],
[97, -32],
[112, -49],
[114, -50],
[115, -53],
[121, -60],
[126, -79],
[121, -94],
[115, -101],
[110, -106],
[91, -110]
],
"c": true
}
],
"h": 1
},
{
"t": 47,
"s": [
{
"i": [
[0.256, -0.022],
[2.254, -0.585],
[3.206, -1.332],
[1.791, -0.633],
[1.243, -0.803],
[0.459, -0.344],
[0.796, -0.69],
[0.578, -2.536],
[-5.412, -0.37],
[-5.389, 2.961],
[-5.612, -7.141],
[4.373, -4.9],
[5.997, -4.909],
[3.55, -3.74],
[1.212, -6.251],
[-3.531, -3.523],
[-4.555, 1.079],
[-0.436, 0.887],
[-0.723, 4.885],
[-1.207, 1.819],
[-1.929, 1.28],
[-0.83, 0.751],
[-7.632, 9.27],
[-2.211, 5.316],
[-0.595, 2.568],
[2.654, 4.923],
[0.466, 0.486],
[3.364, 1.516],
[0.428, 0.231],
[8.55, 0.39]
],
"o": [
[-3.78, 0.33],
[-2.254, 0.585],
[-1.595, 0.663],
[-1.791, 0.633],
[-0.437, 0.283],
[-0.915, 0.687],
[-2.477, 2.147],
[-1.81, 7.935],
[5.485, 0.375],
[9.229, -5.071],
[7.221, 9.187],
[-7.227, 8.097],
[-4.679, 3.831],
[-5.316, 5.6],
[-1.874, 9.669],
[2.82, 2.814],
[1.501, -0.355],
[3.521, -7.157],
[0.248, -1.678],
[1.85, -2.789],
[1.033, -0.685],
[9.235, -8.355],
[4.474, -5.434],
[0.69, -1.658],
[2.05, -8.853],
[-0.787, -1.461],
[-2.878, -3.004],
[-0.358, -0.161],
[-4.426, -2.389],
[-0.981, -0.045]
],
"v": [
[90, -109],
[81.569, -107.752],
[74, -105],
[68.736, -103.105],
[64, -101],
[63, -99],
[60, -98],
[54, -90],
[63, -77],
[78, -85],
[104, -85],
[96, -60],
[77, -41],
[65, -29],
[52, -11],
[57, 10],
[68, 14],
[74, 9],
[72, -6],
[79, -15],
[86, -22],
[88, -24],
[112, -48],
[124, -64],
[126, -71],
[123, -92],
[121, -96],
[112, -104],
[111, -106],
[92, -110]
],
"c": true
}
],
"h": 1
},
{
"t": 48,
"s": [
{
"i": [
[5.707, -0.548],
[3.607, -1.102],
[4.005, -2.249],
[2.819, -2.546],
[-0.378, -4.074],
[-1.662, -1.648],
[-2.151, -0.238],
[-1.707, 1.271],
[-1.321, 1.23],
[-4.305, 1.431],
[-2.995, -0.388],
[-2.217, -1.571],
[-0.439, -4.495],
[2.592, -3.463],
[2.102, -2.328],
[3.975, -3.638],
[4.112, -3.924],
[2.697, -3.058],
[1.5, -3.18],
[0.57, -2.285],
[-0.267, -2.771],
[-10.363, 1.257],
[1.29, 7.424],
[-0.455, 2.952],
[-2.67, 2.951],
[-4.807, 4.372],
[-3.133, 3.133],
[-1.813, 14.684],
[3.516, 5.047],
[5.309, 2.786]
],
"o": [
[-3.566, 0.342],
[-3.607, 1.102],
[-3.101, 1.742],
[-2.819, 2.546],
[0.201, 2.169],
[1.662, 1.648],
[2.852, 0.316],
[1.707, -1.271],
[1.786, -1.663],
[4.305, -1.431],
[1.695, 0.22],
[2.216, 1.571],
[0.471, 4.82],
[-2.592, 3.463],
[-4.989, 5.524],
[-3.975, 3.638],
[-2.714, 2.59],
[-2.697, 3.058],
[-0.985, 2.088],
[-0.571, 2.285],
[0.413, 4.288],
[6.161, -0.747],
[-0.406, -2.339],
[0.384, -2.489],
[5.442, -6.015],
[2.741, -2.493],
[10.566, -10.566],
[1.415, -11.462],
[-3.734, -5.361],
[-5.857, -3.073]
],
"v": [
[90, -109],
[79.329, -106.93],
[68, -102],
[58.391, -95.749],
[54, -86],
[57.038, -80.051],
[63, -77],
[69.648, -78.841],
[74, -83],
[84.094, -88.039],
[96, -90],
[102.442, -87.706],
[107, -79],
[102.93, -66.631],
[95, -58],
[81.841, -44.8],
[70, -34],
[61.59, -25.442],
[55, -16],
[52.561, -9.512],
[52, -2],
[67, 14],
[75, 1],
[72, -6],
[79, -14],
[94, -29],
[102, -37],
[127, -73],
[121, -96],
[111, -106]
],
"c": true
}
],
"h": 1
},
{
"t": 49,
"s": [
{
"i": [
[3.726, -0.269],
[3.866, -1.088],
[4.144, -2.403],
[2.823, -2.612],
[-0.276, -3.822],
[-1.586, -1.63],
[-2.499, -0.282],
[-1.548, 1.293],
[-1.59, 1.192],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.118, -3.707],
[1.76, -2.908],
[6.757, -6.211],
[3.75, -10.485],
[-0.208, -3.713],
[-1.091, -1.383],
[2.067, 12.881],
[-0.361, 2.289],
[-1.78, 2.037],
[-2.428, 2.305],
[-7.457, 6.16],
[-3.098, 4.195],
[3.88, 12.637],
[0.571, 0.761],
[0.508, 0.74],
[2.927, 1.694],
[0.556, 0.251]
],
"o": [
[-3.391, 0.245],
[-3.866, 1.088],
[-2.984, 1.73],
[-2.823, 2.612],
[0.159, 2.197],
[1.586, 1.63],
[3.218, 0.363],
[1.548, -1.293],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[2.825, 2.405],
[0.108, 3.373],
[-5.399, 8.92],
[-11.244, 10.335],
[-2.003, 5.601],
[0.162, 2.889],
[6.774, 8.581],
[-0.434, -2.706],
[0.207, -1.314],
[2.331, -2.667],
[8.916, -8.463],
[4.571, -3.776],
[5.652, -7.653],
[-0.646, -2.104],
[-0.616, -0.821],
[-3.524, -5.128],
[-0.784, -0.454],
[-4.8, -2.162]
],
"v": [
[91, -109],
[80.065, -107.118],
[68, -102],
[58.555, -95.569],
[54, -86],
[56.744, -80.063],
[63, -77],
[69.721, -78.833],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[108, -78],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[107, -41],
[118, -54],
[127, -87],
[123, -93],
[122, -96],
[112, -105],
[110, -107]
],
"c": true
}
],
"h": 1
},
{
"t": 50,
"s": [
{
"i": [
[10.014, -0.756],
[0.334, 0.01],
[0.332, -0.013],
[7.34, -4.098],
[-0.047, -5.375],
[-1.561, -1.849],
[-2.735, -0.328],
[-1.553, 1.304],
[-1.559, 1.17],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.846, 0.868],
[-3.148, -2.679],
[-0.605, -0.782],
[-0.453, -0.912],
[2.39, -3.712],
[5.022, -4.916],
[1.428, -1.092],
[0.716, -0.65],
[4.753, -5.254],
[0.052, -8.184],
[-9.639, 1.902],
[0.967, 6.027],
[-0.365, 2.287],
[-0.108, 0.144],
[-0.519, 0.745],
[-3.935, 3.656],
[-4.823, 4.433],
[-3.771, 12.303],
[9.393, 5.781]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.69, 0.232],
[-7.339, 4.098],
[0.02, 2.276],
[1.561, 1.849],
[3.227, 0.388],
[1.553, -1.304],
[0.392, -0.294],
[0.564, -0.12],
[3.47, -2.209],
[4.846, -0.868],
[1.127, 0.96],
[0.605, 0.782],
[2.799, 5.636],
[-4.487, 6.967],
[-2.004, 1.962],
[-0.743, 0.568],
[-5.103, 4.635],
[-4.541, 5.021],
[-0.059, 9.36],
[6.182, -1.22],
[-0.434, -2.705],
[0.005, -0.029],
[0.621, -0.828],
[3.433, -4.925],
[6.122, -5.688],
[10.354, -9.517],
[4.825, -15.744],
[-6.583, -4.051]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[67.197, -101.857],
[54, -87],
[56.464, -80.539],
[63, -77],
[69.751, -78.832],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.242, -89.166],
[103, -87],
[105.506, -84.464],
[107, -82],
[103, -67],
[88, -50],
[82, -44],
[79, -43],
[63, -27],
[52, -5],
[68, 14],
[75, 1],
[72, -6],
[74, -7],
[75, -10],
[86, -21],
[101, -35],
[126, -68],
[114, -104]
],
"c": true
}
],
"h": 1
},
{
"t": 51,
"s": [
{
"i": [
[10.014, -0.756],
[0.334, 0.01],
[0.332, -0.013],
[7.385, -4.171],
[-0.434, -6.076],
[-1.652, -1.692],
[-2.25, -0.27],
[-3.046, 2.238],
[-3.59, 1.436],
[-3.744, 0.083],
[-2.191, -1.865],
[-0.881, -1.501],
[-0.057, -1.79],
[1.061, -1.93],
[0.82, -1.273],
[2.519, -2.714],
[2.61, -2.555],
[1.071, -1.118],
[0.714, -0.546],
[0.716, -0.65],
[4.921, -5.441],
[0, -8.425],
[-9.948, 1.963],
[0.967, 6.027],
[-0.361, 2.289],
[-1.893, 2.135],
[-2.46, 2.285],
[-4.891, 4.496],
[-3.77, 12.301],
[9.393, 5.781]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.894, 0.24],
[-7.385, 4.171],
[0.141, 1.96],
[1.652, 1.692],
[3.227, 0.388],
[3.046, -2.238],
[3.834, -1.534],
[3.744, -0.083],
[1.418, 1.208],
[0.881, 1.501],
[0.064, 2.005],
[-1.061, 1.93],
[-2.312, 3.591],
[-2.519, 2.714],
[-1.002, 0.981],
[-1.071, 1.118],
[-0.743, 0.568],
[-5.167, 4.692],
[-4.504, 4.98],
[0, 9.142],
[6.182, -1.22],
[-0.434, -2.706],
[0.105, -0.668],
[2.217, -2.501],
[6.163, -5.726],
[10.351, -9.515],
[4.825, -15.744],
[-6.583, -4.051]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.754, -101.877],
[54, -86],
[56.918, -80.233],
[63, -77],
[72.227, -80.632],
[82, -87],
[93.732, -89.55],
[103, -87],
[106.521, -82.937],
[108, -78],
[106.163, -71.951],
[103, -67],
[95.723, -57.723],
[88, -50],
[84.784, -46.674],
[82, -44],
[79, -43],
[63, -27],
[52, -5],
[68, 14],
[75, 1],
[72, -6],
[78, -14],
[86, -21],
[101, -35],
[126, -68],
[114, -104]
],
"c": true
}
],
"h": 1
},
{
"t": 52,
"s": [
{
"i": [
[12.38, -0.935],
[0.334, 0.01],
[0.332, -0.013],
[7.395, -4.231],
[-0.401, -5.84],
[-1.589, -1.631],
[-2.495, -0.281],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.708, 0.451],
[-6.344, -5.401],
[-0.118, -3.707],
[1.553, -2.412],
[2.109, -2.261],
[3.479, -3.032],
[1.015, -0.925],
[4.884, -5.399],
[0.457, -0.597],
[0.675, -0.881],
[0.965, -1.73],
[-4.653, -6.739],
[-6.717, 1.325],
[0.967, 6.027],
[-0.361, 2.289],
[-1.893, 2.135],
[-2.46, 2.285],
[-4.813, 4.442],
[-3.763, 12.278],
[3.547, 5.784],
[3.366, 3.062]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.822, 0.237],
[-7.395, 4.231],
[0.151, 2.196],
[1.589, 1.631],
[3.209, 0.362],
[1.556, -1.296],
[0.784, -0.588],
[6.92, -4.404],
[2.825, 2.405],
[0.127, 3.97],
[-1.794, 2.785],
[-3.802, 4.076],
[-1.461, 1.273],
[-5.345, 4.868],
[-0.563, 0.622],
[-0.636, 0.832],
[-1.303, 1.701],
[-4.265, 7.65],
[2.215, 3.208],
[6.182, -1.22],
[-0.434, -2.706],
[0.105, -0.668],
[2.217, -2.501],
[6.121, -5.687],
[10.358, -9.559],
[2.752, -8.978],
[-2.654, -4.329],
[-7.422, -6.753]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.832, -101.702],
[54, -86],
[56.742, -80.064],
[63, -77],
[69.73, -78.846],
[74, -83],
[77, -84],
[103, -87],
[108, -78],
[103, -67],
[96, -58],
[84, -46],
[79, -43],
[63, -27],
[61, -25],
[60, -22],
[56, -18],
[56, 8],
[68, 14],
[75, 1],
[72, -6],
[78, -14],
[86, -21],
[101, -35],
[126, -68],
[124, -93],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 53,
"s": [
{
"i": [
[12.304, -0.929],
[0.334, 0.01],
[0.332, -0.013],
[7.404, -4.223],
[-0.424, -5.87],
[-1.586, -1.63],
[-2.499, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.882, -1.486],
[-0.059, -1.853],
[1.066, -1.956],
[0.799, -1.242],
[3.42, -3.683],
[2.926, -2.55],
[1.015, -0.925],
[4.644, -5.08],
[-8.281, -11.995],
[-6.717, 1.325],
[0.967, 6.027],
[-0.361, 2.289],
[-1.837, 2.073],
[-2.369, 2.222],
[-4.859, 4.485],
[13.718, 22.37],
[3.366, 3.062]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.404, 4.223],
[0.159, 2.197],
[1.586, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[1.412, 1.203],
[0.882, 1.486],
[0.061, 1.934],
[-1.066, 1.956],
[-2.394, 3.718],
[-3.42, 3.683],
[-1.461, 1.273],
[-5.408, 4.924],
[-7.65, 8.367],
[2.215, 3.208],
[6.182, -1.22],
[-0.434, -2.706],
[0.097, -0.617],
[2.18, -2.459],
[6.391, -5.993],
[13.758, -12.697],
[-2.654, -4.329],
[-7.482, -6.808]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.828, -101.724],
[54, -86],
[56.744, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[106.515, -82.988],
[108, -78],
[106.146, -71.981],
[103, -67],
[93.899, -55.624],
[84, -46],
[79, -43],
[63, -27],
[56, 8],
[68, 14],
[75, 1],
[72, -6],
[78, -14],
[86, -21],
[101, -35],
[124, -93],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 54,
"s": [
{
"i": [
[12.304, -0.929],
[0.334, 0.01],
[0.332, -0.013],
[7.404, -4.223],
[-0.424, -5.87],
[-1.586, -1.63],
[-2.499, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.882, -1.486],
[-0.059, -1.853],
[1.066, -1.956],
[0.799, -1.242],
[3.42, -3.683],
[2.926, -2.55],
[1.015, -0.925],
[4.644, -5.08],
[-8.281, -11.995],
[-6.717, 1.325],
[0.967, 6.027],
[-0.361, 2.289],
[-1.837, 2.073],
[-2.369, 2.222],
[-4.843, 4.499],
[13.699, 22.339],
[3.366, 3.062]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.404, 4.223],
[0.159, 2.197],
[1.586, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[1.412, 1.203],
[0.882, 1.486],
[0.061, 1.934],
[-1.066, 1.956],
[-2.394, 3.718],
[-3.42, 3.683],
[-1.461, 1.273],
[-5.408, 4.924],
[-7.65, 8.367],
[2.215, 3.208],
[6.182, -1.22],
[-0.434, -2.706],
[0.097, -0.617],
[2.18, -2.459],
[6.39, -5.993],
[13.777, -12.8],
[-2.654, -4.329],
[-7.482, -6.808]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.828, -101.724],
[54, -86],
[56.744, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[106.515, -82.988],
[108, -78],
[106.146, -71.981],
[103, -67],
[93.899, -55.624],
[84, -46],
[79, -43],
[63, -27],
[56, 8],
[68, 14],
[75, 1],
[72, -6],
[78, -14],
[86, -21],
[101, -35],
[124, -93],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 55,
"s": [
{
"i": [
[12.3, -0.929],
[0.334, 0.01],
[0.332, -0.013],
[7.404, -4.223],
[-0.424, -5.87],
[-1.586, -1.63],
[-2.499, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-6.344, -5.401],
[-0.118, -3.707],
[1.809, -2.989],
[6.743, -6.198],
[3.75, -10.485],
[-0.208, -3.713],
[-1.091, -1.383],
[2.067, 12.881],
[-0.361, 2.289],
[-1.831, 2.095],
[-2.428, 2.305],
[-3.88, 3.668],
[-1.006, 0.754],
[-0.796, 0.79],
[-2.045, 2.458],
[-2.43, 5.656],
[-0.59, 2.441],
[2.858, 4.937],
[2.61, 2.375]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.404, 4.223],
[0.159, 2.197],
[1.586, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[6.92, -4.404],
[2.825, 2.405],
[0.107, 3.347],
[-5.399, 8.921],
[-11.244, 10.335],
[-2.003, 5.601],
[0.162, 2.889],
[6.774, 8.581],
[-0.434, -2.706],
[0.213, -1.349],
[2.331, -2.667],
[5.725, -5.434],
[1.796, -1.698],
[0.952, -0.714],
[2.279, -2.261],
[4.543, -5.459],
[0.729, -1.698],
[2.288, -9.461],
[-1.972, -3.406],
[-7.468, -6.795]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.828, -101.724],
[54, -86],
[56.744, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[103, -87],
[108, -78],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[99, -34],
[104, -39],
[107, -40],
[113, -48],
[125, -64],
[127, -71],
[123, -94],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 56,
"s": [
{
"i": [
[12.291, -0.928],
[0.334, 0.01],
[0.332, -0.013],
[7.404, -4.223],
[-0.424, -5.87],
[-1.585, -1.63],
[-2.5, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.118, -3.707],
[1.809, -2.989],
[6.743, -6.198],
[3.75, -10.485],
[-0.208, -3.713],
[-1.091, -1.383],
[2.067, 12.881],
[-0.361, 2.289],
[-1.78, 2.037],
[-2.428, 2.305],
[-5.434, 5.059],
[-0.68, 0.664],
[-2.148, 2.482],
[-1.904, 2.579],
[0.202, 10.903],
[1.709, 2.951],
[2.701, 2.457]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.404, 4.223],
[0.159, 2.197],
[1.585, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[2.825, 2.405],
[0.107, 3.347],
[-5.399, 8.921],
[-11.244, 10.335],
[-2.003, 5.601],
[0.162, 2.889],
[6.774, 8.581],
[-0.434, -2.706],
[0.207, -1.314],
[2.331, -2.667],
[7.595, -7.21],
[0.69, -0.642],
[2.343, -2.289],
[2.151, -2.486],
[4.975, -6.737],
[-0.118, -6.386],
[-1.971, -3.404],
[-7.448, -6.777]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.828, -101.724],
[54, -86],
[56.744, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[108, -78],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[103, -38],
[106, -39],
[112, -47],
[118, -54],
[128, -79],
[123, -94],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 57,
"s": [
{
"i": [
[12.291, -0.928],
[0.334, 0.01],
[0.332, -0.013],
[7.406, -4.223],
[-0.432, -5.871],
[-1.584, -1.63],
[-2.502, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.882, -1.486],
[-0.059, -1.853],
[0.787, -1.708],
[0.904, -1.495],
[6.663, -6.125],
[3.75, -10.485],
[-0.208, -3.713],
[-1.091, -1.383],
[2.067, 12.881],
[-0.361, 2.289],
[-1.78, 2.037],
[-2.428, 2.305],
[-7.457, 6.16],
[-0.666, 0.747],
[0.293, 15.788],
[1.709, 2.951],
[2.701, 2.457]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.406, 4.223],
[0.162, 2.198],
[1.584, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[1.412, 1.203],
[0.882, 1.486],
[0.053, 1.673],
[-0.787, 1.708],
[-5.368, 8.869],
[-11.244, 10.335],
[-2.003, 5.601],
[0.162, 2.889],
[6.774, 8.581],
[-0.434, -2.706],
[0.207, -1.314],
[2.331, -2.667],
[8.916, -8.463],
[0.788, -0.651],
[8.101, -9.083],
[-0.118, -6.386],
[-1.971, -3.404],
[-7.448, -6.777]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.821, -101.725],
[54, -86],
[56.745, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[106.515, -82.988],
[108, -78],
[106.719, -72.866],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[107, -41],
[109, -43],
[128, -79],
[123, -94],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 58,
"s": [
{
"i": [
[12.291, -0.928],
[0.334, 0.01],
[0.332, -0.013],
[7.406, -4.223],
[-0.432, -5.871],
[-1.584, -1.63],
[-2.502, -0.282],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.882, -1.486],
[-0.059, -1.853],
[0.787, -1.708],
[0.904, -1.495],
[6.663, -6.125],
[3.75, -10.485],
[-0.208, -3.713],
[-1.091, -1.383],
[2.067, 12.881],
[-0.361, 2.289],
[-1.78, 2.037],
[-2.428, 2.305],
[-7.457, 6.16],
[-0.666, 0.747],
[0.293, 15.788],
[1.709, 2.951],
[2.701, 2.457]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.806, 0.237],
[-7.406, 4.223],
[0.162, 2.198],
[1.584, 1.63],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[1.412, 1.203],
[0.882, 1.486],
[0.053, 1.673],
[-0.787, 1.708],
[-5.368, 8.869],
[-11.244, 10.335],
[-2.003, 5.601],
[0.162, 2.889],
[6.774, 8.581],
[-0.434, -2.706],
[0.207, -1.314],
[2.331, -2.667],
[8.916, -8.463],
[0.788, -0.651],
[8.101, -9.083],
[-0.118, -6.386],
[-1.971, -3.404],
[-7.448, -6.777]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[66.821, -101.725],
[54, -86],
[56.745, -80.063],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[106.515, -82.988],
[108, -78],
[106.719, -72.866],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[107, -41],
[109, -43],
[128, -79],
[123, -94],
[117, -101]
],
"c": true
}
],
"h": 1
},
{
"t": 59,
"s": [
{
"i": [
[0.233, -0.018],
[0.334, 0.01],
[0.332, -0.013],
[7.34, -4.074],
[-0.087, -5.471],
[-1.568, -1.799],
[-2.689, -0.303],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.118, -3.707],
[1.665, -2.75],
[6.591, -6.058],
[3.695, -10.333],
[-0.208, -3.713],
[-1.136, -1.439],
[2.07, 12.899],
[-0.361, 2.289],
[-2.204, 2.522],
[-2.383, 2.262],
[-7.197, 5.946],
[-3.098, 4.195],
[0.194, 10.463],
[2.607, 2.721],
[3.203, 1.444],
[0.428, 0.231],
[6.327, 0.288]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.729, 0.234],
[-7.339, 4.074],
[0.04, 2.501],
[1.568, 1.799],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[2.825, 2.405],
[0.102, 3.205],
[-5.468, 9.033],
[-11.226, 10.319],
[-2.003, 5.601],
[0.162, 2.892],
[6.756, 8.557],
[-0.434, -2.706],
[0.214, -1.36],
[2.256, -2.581],
[8.329, -7.906],
[4.571, -3.776],
[4.943, -6.693],
[-0.111, -5.958],
[-2.958, -3.088],
[-0.358, -0.161],
[-4.365, -2.357],
[-0.963, -0.044]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[67.138, -101.928],
[54, -87],
[56.513, -80.352],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[108, -78],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[107, -41],
[118, -54],
[128, -79],
[122, -96],
[113, -104],
[112, -106],
[93, -110]
],
"c": true
}
],
"h": 1
},
{
"t": 60,
"s": [
{
"i": [
[12.291, -0.928],
[0.334, 0.01],
[0.332, -0.013],
[7.34, -4.074],
[-0.087, -5.471],
[-1.568, -1.799],
[-2.689, -0.303],
[-1.556, 1.296],
[-1.569, 1.177],
[-0.564, 0.12],
[-0.354, 0.225],
[-4.842, 0.875],
[-3.172, -2.701],
[-0.882, -1.486],
[-0.059, -1.853],
[0.805, -1.756],
[0.833, -1.375],
[6.591, -6.058],
[3.695, -10.333],
[-0.208, -3.713],
[-1.136, -1.439],
[2.07, 12.899],
[-0.361, 2.289],
[-1.78, 2.037],
[-2.428, 2.305],
[-7.457, 6.16],
[-0.666, 0.747],
[0.293, 15.788],
[1.709, 2.951],
[2.701, 2.457]
],
"o": [
[-0.331, 0.025],
[-0.334, -0.01],
[-5.729, 0.234],
[-7.339, 4.074],
[0.04, 2.501],
[1.568, 1.799],
[3.209, 0.362],
[1.556, -1.296],
[0.392, -0.294],
[0.564, -0.12],
[3.46, -2.202],
[4.842, -0.875],
[1.412, 1.203],
[0.882, 1.486],
[0.051, 1.602],
[-0.805, 1.756],
[-5.468, 9.033],
[-11.226, 10.319],
[-2.003, 5.601],
[0.162, 2.892],
[6.756, 8.557],
[-0.434, -2.706],
[0.207, -1.314],
[2.331, -2.667],
[8.916, -8.463],
[0.788, -0.651],
[8.101, -9.083],
[-0.118, -6.386],
[-1.971, -3.404],
[-7.448, -6.777]
],
"v": [
[91, -109],
[90.001, -108.991],
[89, -109],
[67.138, -101.928],
[54, -87],
[56.513, -80.352],
[63, -77],
[69.73, -78.846],
[74, -83],
[75.529, -83.551],
[77, -84],
[90.216, -89.177],
[103, -87],
[106.515, -82.988],
[108, -78],
[106.663, -72.829],
[104, -68],
[82, -45],
[54, -13],
[52, -3],
[56, 9],
[75, 1],
[72, -6],
[78, -13],
[85, -20],
[107, -41],
[109, -43],
[128, -79],
[123, -94],
[117, -101]
],
"c": true
}
],
"h": 1
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 0, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 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": "Rectangle 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 31,
"op": 300,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Shape Layer 4",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [43.313, -47.836], "ix": 2 },
"a": { "a": 0, "k": [43.313, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 24,
"op": 31,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 4,
"nm": "Shape Layer 1",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [43.313, -47.836], "ix": 2 },
"a": { "a": 0, "k": [43.313, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 18,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 9,
"ty": 4,
"nm": "Shape Layer 5",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-78.173, -47.836], "ix": 2 },
"a": { "a": 0, "k": [-78.173, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 18,
"op": 24,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 10,
"ty": 4,
"nm": "Cup 2",
"parent": 15,
"td": 1,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0, 0, 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": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.55, -73.91],
[49.55, -73.91],
[70.876, -52.583],
[62.346, 32.723],
[-62.346, 32.723],
[-70.876, -52.583]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.705882370472, 0.247058823705, 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": "Cup",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 11,
"ty": 4,
"nm": "Star 4 :M",
"parent": 15,
"tt": 1,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [-225, -6.953, 0],
"to": [75, 0, 0],
"ti": [-75, 0, 0]
},
{ "t": 50, "s": [225, -6.953, 0] }
],
"ix": 2,
"l": 2
},
"a": { "a": 0, "k": [24.984, 188.998, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[5.278, -3.874],
[6.547, -0.032],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237],
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237]
],
"o": [
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237],
[5.278, -3.874],
[6.547, -0.033],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237]
],
"v": [
[19.304, 28.834],
[0.146, 23.68],
[-18.962, 29.022],
[-19.98, 9.209],
[-30.965, -7.313],
[-12.436, -14.404],
[-0.118, -29.957],
[12.352, -14.526],
[30.95, -7.617],
[20.128, 9.011]
],
"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": [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": "Star",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 188.998], "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": "Star",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-200.016, 188.998], "ix": 2 },
"a": { "a": 0, "k": [249.984, 188.998], "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": "Star 4",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[5.278, -3.874],
[6.547, -0.032],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237],
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237]
],
"o": [
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237],
[5.278, -3.874],
[6.547, -0.033],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237]
],
"v": [
[19.304, 28.834],
[0.146, 23.68],
[-18.962, 29.022],
[-19.98, 9.209],
[-30.965, -7.313],
[-12.436, -14.404],
[-0.118, -29.957],
[12.352, -14.526],
[30.95, -7.617],
[20.128, 9.011]
],
"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": [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": "Star",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 188.998], "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": "Star",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-50.016, 188.998], "ix": 2 },
"a": { "a": 0, "k": [249.984, 188.998], "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": "Star 3",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 2,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[5.278, -3.874],
[6.547, -0.032],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237],
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237]
],
"o": [
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237],
[5.278, -3.874],
[6.547, -0.033],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237]
],
"v": [
[19.304, 28.834],
[0.146, 23.68],
[-18.962, 29.022],
[-19.98, 9.209],
[-30.965, -7.313],
[-12.436, -14.404],
[-0.118, -29.957],
[12.352, -14.526],
[30.95, -7.617],
[20.128, 9.011]
],
"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": [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": "Star",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 188.998], "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": "Star",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [99.984, 188.998], "ix": 2 },
"a": { "a": 0, "k": [249.984, 188.998], "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": "Star 2",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 3,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[5.278, -3.874],
[6.547, -0.032],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237],
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237]
],
"o": [
[-5.278, 3.874],
[-6.547, 0.032],
[-5.316, -3.822],
[-2.054, -6.217],
[1.993, -6.237],
[5.278, -3.874],
[6.547, -0.033],
[5.316, 3.822],
[2.054, 6.217],
[-1.993, 6.237]
],
"v": [
[19.304, 28.834],
[0.146, 23.68],
[-18.962, 29.022],
[-19.98, 9.209],
[-30.965, -7.313],
[-12.436, -14.404],
[-0.118, -29.957],
[12.352, -14.526],
[30.95, -7.617],
[20.128, 9.011]
],
"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": [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": "Star",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 188.998], "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": "Star",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 188.998], "ix": 2 },
"a": { "a": 0, "k": [249.984, 188.998], "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": "Star",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 4,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 12,
"ty": 4,
"nm": "Black Stand 2",
"parent": 14,
"td": 1,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0, 0, 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],
[-24.605, 0],
[0, 0],
[18.303, 0]
],
"o": [
[-18.303, 0],
[0, 0],
[24.605, 0],
[0, 0]
],
"v": [
[-42.653, -29.114],
[-53.962, 29.114],
[53.962, 29.114],
[42.653, -29.114]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0.349019616842, 0.345098048449, 0.43137255311, 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": "Black Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 13,
"ty": 4,
"nm": "White Stand 4 :M",
"parent": 14,
"tt": 1,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [-225, -1.544, 0],
"to": [75, 0, 0],
"ti": [-75, 0, 0]
},
{ "t": 50, "s": [225, -1.544, 0] }
],
"ix": 2,
"l": 2
},
"a": { "a": 0, "k": [24.984, 347.302, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.323, 0],
[0, 0],
[-1.582, -4.024],
[0, 0],
[4.323, 0],
[0, 0],
[-1.582, 4.024],
[0, 0]
],
"o": [
[0, 0],
[4.323, 0],
[0, 0],
[1.582, 4.024],
[0, 0],
[-4.323, 0],
[0, 0],
[1.582, -4.024]
],
"v": [
[-25.949, -12.268],
[25.998, -12.268],
[33.803, -4.464],
[37.313, 4.464],
[31.758, 12.268],
[-32.174, 12.268],
[-37.263, 4.464],
[-33.753, -4.464]
],
"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": [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": "White Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 347.302], "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": "White Stand",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-200.016, 347.302], "ix": 2 },
"a": { "a": 0, "k": [249.984, 347.302], "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": "White Stand 4",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.323, 0],
[0, 0],
[-1.582, -4.024],
[0, 0],
[4.323, 0],
[0, 0],
[-1.582, 4.024],
[0, 0]
],
"o": [
[0, 0],
[4.323, 0],
[0, 0],
[1.582, 4.024],
[0, 0],
[-4.323, 0],
[0, 0],
[1.582, -4.024]
],
"v": [
[-25.949, -12.268],
[25.998, -12.268],
[33.803, -4.464],
[37.313, 4.464],
[31.758, 12.268],
[-32.174, 12.268],
[-37.263, 4.464],
[-33.753, -4.464]
],
"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": [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": "White Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 347.302], "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": "White Stand",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-50.016, 347.302], "ix": 2 },
"a": { "a": 0, "k": [249.984, 347.302], "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": "White Stand 3",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 2,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.323, 0],
[0, 0],
[-1.582, -4.024],
[0, 0],
[4.323, 0],
[0, 0],
[-1.582, 4.024],
[0, 0]
],
"o": [
[0, 0],
[4.323, 0],
[0, 0],
[1.582, 4.024],
[0, 0],
[-4.323, 0],
[0, 0],
[1.582, -4.024]
],
"v": [
[-25.949, -12.268],
[25.998, -12.268],
[33.803, -4.464],
[37.313, 4.464],
[31.758, 12.268],
[-32.174, 12.268],
[-37.263, 4.464],
[-33.753, -4.464]
],
"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": [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": "White Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 347.302], "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": "White Stand",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [99.984, 347.302], "ix": 2 },
"a": { "a": 0, "k": [249.984, 347.302], "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": "White Stand 2",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 3,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.323, 0],
[0, 0],
[-1.582, -4.024],
[0, 0],
[4.323, 0],
[0, 0],
[-1.582, 4.024],
[0, 0]
],
"o": [
[0, 0],
[4.323, 0],
[0, 0],
[1.582, 4.024],
[0, 0],
[-4.323, 0],
[0, 0],
[1.582, -4.024]
],
"v": [
[-25.949, -12.268],
[25.998, -12.268],
[33.803, -4.464],
[37.313, 4.464],
[31.758, 12.268],
[-32.174, 12.268],
[-37.263, 4.464],
[-33.753, -4.464]
],
"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": [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": "White Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 347.302], "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": "White Stand",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [249.984, 347.302], "ix": 2 },
"a": { "a": 0, "k": [249.984, 347.302], "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": "White Stand",
"np": 1,
"cix": 2,
"bm": 0,
"ix": 4,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 14,
"ty": 4,
"nm": "Black Stand",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": {
"k": [
{ "s": [90], "t": 2, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [88.052], "t": 3, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [83.09], "t": 4, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [75.985], "t": 5, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [67.277], "t": 6, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [57.336], "t": 7, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [46.447], "t": 8, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [34.86], "t": 9, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [10.836], "t": 11, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 12, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-6.514], "t": 13, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-10.253], "t": 14, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-11.772], "t": 15, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-11.657], "t": 16, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-10.457], "t": 17, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-8.646], "t": 18, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-6.599], "t": 19, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-4.592], "t": 20, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-2.804], "t": 21, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-1.336], "t": 22, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.223], "t": 23, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.544], "t": 24, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [1.006], "t": 25, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [1.219], "t": 26, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [1.245], "t": 27, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [1.142], "t": 28, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.963], "t": 29, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.75], "t": 30, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.535], "t": 31, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.34], "t": 32, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.176], "t": 33, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.049], "t": 34, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.04], "t": 35, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.097], "t": 36, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.125], "t": 37, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.132], "t": 38, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.124], "t": 39, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.107], "t": 40, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.085], "t": 41, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.062], "t": 42, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.041], "t": 43, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.023], "t": 44, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.008], "t": 45, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.002], "t": 46, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.009], "t": 47, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.013], "t": 48, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.014], "t": 49, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.013], "t": 50, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.012], "t": 51, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.01], "t": 52, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.007], "t": 53, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.005], "t": 54, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.003], "t": 55, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0.001], "t": 56, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 57, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 58, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 59, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 60, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 61, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 62, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 63, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [-0.001], "t": 65, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 66, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 67, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 68, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } },
{ "s": [0], "t": 69, "i": { "x": [1], "y": [1] }, "o": { "x": [0], "y": [0] } }
]
},
"p": {
"k": [
{
"s": [138.235, 254.547, 0],
"t": 0,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [143.584, 250.368, 0],
"t": 1,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [157.812, 240.556, 0],
"t": 2,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [179.791, 229.215, 0],
"t": 3,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [209.087, 221.759, 0],
"t": 4,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [243.189, 225.873, 0],
"t": 5,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [274.404, 246.799, 0],
"t": 6,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{ "s": [294.84, 281.274, 0], "t": 7, "i": { "x": 1, "y": 1 }, "o": { "x": 0, "y": 0 } },
{
"s": [299.502, 322.507, 0],
"t": 8,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [282.589, 360.014, 0],
"t": 9,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [249.984, 377.959, 0],
"t": 10,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [228.111, 384.013, 0],
"t": 11,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [215.555, 387.488, 0],
"t": 12,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{ "s": [210.454, 388.9, 0], "t": 13, "i": { "x": 1, "y": 1 }, "o": { "x": 0, "y": 0 } },
{
"s": [210.841, 388.792, 0],
"t": 14,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [214.869, 387.678, 0],
"t": 15,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [220.951, 385.994, 0],
"t": 16,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [227.823, 384.092, 0],
"t": 17,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [234.564, 382.227, 0],
"t": 18,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [240.567, 380.565, 0],
"t": 19,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [245.498, 379.201, 0],
"t": 20,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [249.235, 378.166, 0],
"t": 21,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [251.813, 377.453, 0],
"t": 22,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [253.364, 377.023, 0],
"t": 23,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [254.079, 376.826, 0],
"t": 24,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [254.164, 376.802, 0],
"t": 25,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [253.818, 376.898, 0],
"t": 26,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [253.217, 377.064, 0],
"t": 27,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [252.503, 377.262, 0],
"t": 28,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [251.782, 377.461, 0],
"t": 29,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [251.126, 377.643, 0],
"t": 30,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [250.576, 377.795, 0],
"t": 31,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [250.15, 377.913, 0],
"t": 32,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [249.849, 377.996, 0],
"t": 33,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{
"s": [249.66, 378.049, 0],
"t": 34,
"i": { "x": 1, "y": 1 },
"o": { "x": 0, "y": 0 }
},
{ "s": [249.909, 377.98, 0], "t": 42, "i": { "x": 1, "y": 1 }, "o": { "x": 0, "y": 0 } }
],
"l": 2
},
"a": { "a": 0, "k": [0, 29.114, 0], "ix": 1, "l": 2 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] },
"o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
"t": 0,
"s": [0, 0, 100]
},
{ "t": 10, "s": [100, 100, 100] }
],
"ix": 6,
"l": 2
}
},
"ao": 0,
"ef": [
{
"ty": 5,
"nm": "Elastic Controller",
"np": 5,
"mn": "Pseudo/MDS Elastic Controller",
"ix": 1,
"en": 1,
"ef": [
{
"ty": 0,
"nm": "Amplitude",
"mn": "Pseudo/MDS Elastic Controller-0001",
"ix": 1,
"v": { "a": 0, "k": 20, "ix": 1 }
},
{
"ty": 0,
"nm": "Frequency",
"mn": "Pseudo/MDS Elastic Controller-0002",
"ix": 2,
"v": { "a": 0, "k": 40, "ix": 2 }
},
{
"ty": 0,
"nm": "Decay",
"mn": "Pseudo/MDS Elastic Controller-0003",
"ix": 3,
"v": { "a": 0, "k": 60, "ix": 3 }
}
]
},
{
"ty": 5,
"nm": "Elastic Controller 2",
"np": 5,
"mn": "Pseudo/MDS Elastic Controller",
"ix": 2,
"en": 1,
"ef": [
{
"ty": 0,
"nm": "Amplitude",
"mn": "Pseudo/MDS Elastic Controller-0001",
"ix": 1,
"v": { "a": 0, "k": 20, "ix": 1 }
},
{
"ty": 0,
"nm": "Frequency",
"mn": "Pseudo/MDS Elastic Controller-0002",
"ix": 2,
"v": { "a": 0, "k": 40, "ix": 2 }
},
{
"ty": 0,
"nm": "Decay",
"mn": "Pseudo/MDS Elastic Controller-0003",
"ix": 3,
"v": { "a": 0, "k": 60, "ix": 3 }
}
]
}
],
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-24.605, 0],
[0, 0],
[18.303, 0]
],
"o": [
[-18.303, 0],
[0, 0],
[24.605, 0],
[0, 0]
],
"v": [
[-42.653, -29.114],
[-53.962, 29.114],
[53.962, 29.114],
[42.653, -29.114]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0.349019616842, 0.345098048449, 0.43137255311, 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": "Black Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 15,
"ty": 4,
"nm": "Cup",
"parent": 14,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0, -152.895, 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": [
[-11.815, 0],
[0, 0],
[1.176, -11.756],
[0, 0],
[5.492, 54.916],
[0, 0]
],
"o": [
[0, 0],
[11.815, 0],
[0, 0],
[-5.492, 54.916],
[0, 0],
[-1.176, -11.756]
],
"v": [
[-49.55, -73.91],
[49.55, -73.91],
[70.876, -52.583],
[62.346, 32.723],
[-62.346, 32.723],
[-70.876, -52.583]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.705882370472, 0.247058823705, 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": "Cup",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 16,
"ty": 4,
"nm": "Stand",
"parent": 14,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0, -56.636, 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": [
[19.235, 36.65],
[0, 0],
[-15.853, -38.082],
[0, 0]
],
"o": [
[0, 0],
[-20.405, 35.342],
[0, 0],
[17.561, -38.659]
],
"v": [
[-33.841, -56.55],
[33.841, -56.55],
[25.31, 56.55],
[-25.31, 56.55]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.525490224361, 0.270588248968, 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": "Stand",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 17,
"ty": 4,
"nm": "Shape Layer 3",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [43.313, -47.836], "ix": 2 },
"a": { "a": 0, "k": [43.313, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 18,
"op": 24,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 18,
"ty": 4,
"nm": "Shape Layer 6",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-78.173, -47.836], "ix": 2 },
"a": { "a": 0, "k": [-78.173, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 24,
"op": 310,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 19,
"ty": 4,
"nm": "Shape Layer 2",
"parent": 15,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [0.016, 54.049, 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": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 10,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 18,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
},
{
"i": { "x": 0, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"t": 24,
"s": [
{
"i": [
[0, 0],
[11.928, -26.533],
[-4, -20],
[1.5, -2]
],
"o": [
[-4.5, -7],
[-12.25, 27.25],
[0.88, 4.401],
[-1.5, 2]
],
"v": [
[-64.5, -87],
[-116.25, -85.75],
[-62.5, -7],
[-65.5, 4]
],
"c": false
}
]
},
{
"t": 50,
"s": [
{
"i": [
[0, 0],
[-11.928, -26.533],
[4, -20],
[-1.5, -2]
],
"o": [
[4.5, -7],
[12.25, 27.25],
[-0.88, 4.401],
[1.5, 2]
],
"v": [
[64.42, -87],
[116.17, -85.75],
[62.42, -7],
[65.42, 4]
],
"c": false
}
]
}
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": { "a": 0, "k": [1, 0.525490196078, 0.270588235294, 1], "ix": 3 },
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 20, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-78.173, -47.836], "ix": 2 },
"a": { "a": 0, "k": [-78.173, -47.836], "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": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 18,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 21,
"ty": 0,
"nm": "Pre-comp 1",
"refId": "comp_2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 60, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 500,
"h": 500,
"ip": 16,
"op": 316,
"st": 16,
"bm": 0
},
{
"ddd": 0,
"ind": 22,
"ty": 0,
"nm": "Pre-comp 1",
"refId": "comp_2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 45, "ix": 10 },
"p": { "a": 0, "k": [250, 250, 0], "ix": 2, "l": 2 },
"a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
},
"ao": 0,
"w": 500,
"h": 500,
"ip": 11,
"op": 311,
"st": 11,
"bm": 0
}
],
"markers": []
}