lottie-ios 3.2.3 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/actions/setup/action.yml +32 -0
- package/.github/issue_template.md +6 -23
- package/.github/workflows/main.yml +98 -0
- package/.github/workflows/stale_issues.yml +17 -0
- package/.spi.yml +6 -0
- package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
- package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/Gemfile +4 -0
- package/Gemfile.lock +102 -0
- package/Lottie.xcodeproj/project.pbxproj +2011 -1972
- package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (macOS).xcscheme } +5 -18
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
- package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
- package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
- package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +34 -0
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +22 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +138 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
- package/Package.swift +5 -15
- package/README.md +40 -60
- package/Rakefile +160 -0
- package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +81 -0
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +447 -0
- package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +81 -0
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +55 -0
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +210 -0
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
- package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +58 -0
- package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +257 -0
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +124 -0
- package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +73 -0
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
- package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
- package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +497 -0
- package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
- package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +154 -0
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +83 -0
- package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
- package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +88 -0
- package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +167 -0
- package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +94 -0
- package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +64 -0
- package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
- package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +315 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +390 -0
- package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
- package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
- package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +94 -86
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +75 -54
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +59 -43
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +42 -36
- package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +200 -140
- package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
- package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +149 -106
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +26 -24
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +82 -67
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +9 -4
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +6 -6
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +110 -79
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +247 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +30 -24
- package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +93 -66
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +23 -19
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +95 -58
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +108 -69
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +57 -42
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +66 -58
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +169 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +80 -79
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +27 -24
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +34 -25
- package/Sources/Private/Model/Animation.swift +160 -0
- package/Sources/Private/Model/Assets/Asset.swift +43 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
- package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
- package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
- package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
- package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
- package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +222 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
- package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
- package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
- package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
- package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
- package/Sources/Private/Model/Objects/Marker.swift +33 -0
- package/Sources/Private/Model/Objects/Mask.swift +80 -0
- package/Sources/Private/Model/Objects/Transform.swift +179 -0
- package/Sources/Private/Model/ShapeItems/Ellipse.swift +74 -0
- package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +137 -0
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +185 -0
- package/Sources/Private/Model/ShapeItems/Group.swift +48 -0
- package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -12
- package/Sources/Private/Model/ShapeItems/Rectangle.swift +72 -0
- package/Sources/Private/Model/ShapeItems/Repeater.swift +135 -0
- package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +135 -0
- package/Sources/Private/Model/ShapeItems/Star.swift +131 -0
- package/Sources/Private/Model/ShapeItems/Stroke.swift +101 -0
- package/Sources/Private/Model/ShapeItems/Trim.swift +77 -0
- package/Sources/Private/Model/Text/Font.swift +61 -0
- package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
- package/Sources/Private/Model/Text/TextAnimator.swift +164 -0
- package/Sources/Private/Model/Text/TextDocument.swift +123 -0
- package/Sources/Private/RootAnimationLayer.swift +51 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -48
- package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
- package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
- package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
- package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
- package/Sources/Private/Utility/Extensions/MathKit.swift +450 -0
- package/Sources/Private/Utility/Extensions/StringExtensions.swift +38 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
- package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +134 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
- package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
- package/{lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders → Sources/Private/Utility/Interpolatable}/KeyframeInterpolator.swift +125 -108
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -143
- package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
- package/Sources/Private/Utility/Primitives/CurveVertex.swift +184 -0
- package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
- package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
- package/Sources/Public/Animation/AnimationPublic.swift +266 -0
- package/Sources/Public/Animation/AnimationView.swift +1335 -0
- package/Sources/Public/Animation/AnimationViewInitializers.swift +109 -0
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
- package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
- package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +123 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
- package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
- package/Sources/Public/Keyframes/Keyframe.swift +92 -0
- package/Sources/Public/Logging/LottieLogger.swift +137 -0
- package/Sources/Public/LottieConfiguration.swift +143 -0
- package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
- package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
- package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +42 -26
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +100 -91
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +128 -94
- package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +3 -3
- package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
- package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +36 -34
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +4 -0
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +38 -29
- package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +24 -21
- package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +4 -4
- package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
- package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
- package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +31 -32
- package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +67 -0
- package/Tests/AnimationKeypathTests.swift +103 -0
- package/Tests/AutomaticEngineTests.swift +57 -0
- package/Tests/BundleTests.swift +25 -0
- package/Tests/DataURLTests.swift +64 -0
- package/Tests/ParsingTests.swift +43 -0
- package/Tests/PerformanceTests.swift +214 -0
- package/Tests/Samples/9squares_AlBoardman.json +1 -0
- package/Tests/Samples/Boat_Loader.json +1 -0
- package/Tests/Samples/HamburgerArrow.json +1 -0
- package/Tests/Samples/IconTransitions.json +1 -0
- package/Tests/Samples/Images/dog.png +0 -0
- package/Tests/Samples/Issues/issue_1125.json +1 -0
- package/Tests/Samples/Issues/issue_1260.json +1 -0
- package/Tests/Samples/Issues/issue_1403.json +1 -0
- package/Tests/Samples/Issues/issue_1407.json +1 -0
- package/Tests/Samples/Issues/issue_1460.json +1 -0
- package/Tests/Samples/Issues/issue_1488.json +1 -0
- package/Tests/Samples/Issues/issue_1505.json +1 -0
- package/Tests/Samples/Issues/issue_1541.json +1 -0
- package/Tests/Samples/Issues/issue_1557.json +1 -0
- package/Tests/Samples/Issues/issue_1603.json +1 -0
- package/Tests/Samples/Issues/issue_1628.json +1 -0
- package/Tests/Samples/Issues/issue_1636.json +1 -0
- package/Tests/Samples/Issues/issue_1643.json +1 -0
- package/Tests/Samples/Issues/issue_1655.json +1 -0
- package/Tests/Samples/Issues/issue_1664.json +1 -0
- package/Tests/Samples/Issues/issue_1683.json +1 -0
- package/Tests/Samples/Issues/issue_1687.json +1 -0
- package/Tests/Samples/Issues/issue_1711.json +1 -0
- package/Tests/Samples/Issues/issue_1717.json +1 -0
- package/Tests/Samples/Issues/issue_769.json +1 -0
- package/Tests/Samples/Issues/issue_885.json +1 -0
- package/Tests/Samples/Issues/issue_965.json +1 -0
- package/Tests/Samples/Issues/pr_1536.json +1 -0
- package/Tests/Samples/Issues/pr_1563.json +8439 -0
- package/Tests/Samples/Issues/pr_1592.json +5527 -0
- package/Tests/Samples/Issues/pr_1599.json +738 -0
- package/Tests/Samples/Issues/pr_1604_1.json +1 -0
- package/Tests/Samples/Issues/pr_1604_2.json +1 -0
- package/Tests/Samples/Issues/pr_1632_1.json +1 -0
- package/Tests/Samples/Issues/pr_1632_2.json +1 -0
- package/Tests/Samples/Issues/pr_1686.json +513 -0
- package/Tests/Samples/Issues/pr_1698.json +1 -0
- package/Tests/Samples/Issues/pr_1699.json +1 -0
- package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
- package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/cactus.json +1 -0
- package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
- package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
- package/Tests/Samples/LottieFiles/fireworks.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
- package/Tests/Samples/LottieFiles/growth.json +1 -0
- package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
- package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
- package/Tests/Samples/LottieFiles/shop.json +1 -0
- package/Tests/Samples/LottieFiles/step_loader.json +1 -0
- package/Tests/Samples/LottieLogo1.json +1 -0
- package/Tests/Samples/LottieLogo1_masked.json +1 -0
- package/Tests/Samples/LottieLogo2.json +1 -0
- package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
- package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
- package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
- package/Tests/Samples/Nonanimating/FirstText.json +1 -0
- package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
- package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
- package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
- package/Tests/Samples/Nonanimating/Zoom.json +1 -0
- package/Tests/Samples/Nonanimating/_dog.json +1 -0
- package/Tests/Samples/Nonanimating/base64Test.json +1 -0
- package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
- package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
- package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
- package/Tests/Samples/PinJump.json +1 -0
- package/Tests/Samples/Switch.json +1 -0
- package/Tests/Samples/Switch_States.json +1 -0
- package/Tests/Samples/TwitterHeart.json +1 -0
- package/Tests/Samples/TwitterHeartButton.json +1 -0
- package/Tests/Samples/TypeFace/A.json +1 -0
- package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
- package/Tests/Samples/TypeFace/B.json +1 -0
- package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
- package/Tests/Samples/TypeFace/C.json +1 -0
- package/Tests/Samples/TypeFace/Colon.json +1 -0
- package/Tests/Samples/TypeFace/Comma.json +1 -0
- package/Tests/Samples/TypeFace/D.json +1 -0
- package/Tests/Samples/TypeFace/E.json +1 -0
- package/Tests/Samples/TypeFace/F.json +1 -0
- package/Tests/Samples/TypeFace/G.json +1 -0
- package/Tests/Samples/TypeFace/H.json +1 -0
- package/Tests/Samples/TypeFace/I.json +1 -0
- package/Tests/Samples/TypeFace/J.json +1 -0
- package/Tests/Samples/TypeFace/K.json +1 -0
- package/Tests/Samples/TypeFace/L.json +1 -0
- package/Tests/Samples/TypeFace/M.json +1 -0
- package/Tests/Samples/TypeFace/N.json +1 -0
- package/Tests/Samples/TypeFace/O.json +1 -0
- package/Tests/Samples/TypeFace/P.json +1 -0
- package/Tests/Samples/TypeFace/Q.json +1 -0
- package/Tests/Samples/TypeFace/R.json +1 -0
- package/Tests/Samples/TypeFace/S.json +1 -0
- package/Tests/Samples/TypeFace/T.json +1 -0
- package/Tests/Samples/TypeFace/U.json +1 -0
- package/Tests/Samples/TypeFace/V.json +1 -0
- package/Tests/Samples/TypeFace/W.json +1 -0
- package/Tests/Samples/TypeFace/X.json +1 -0
- package/Tests/Samples/TypeFace/Y.json +1 -0
- package/Tests/Samples/TypeFace/Z.json +1 -0
- package/Tests/Samples/Watermelon.json +1 -0
- package/Tests/Samples/setValueTest.json +1 -0
- package/Tests/Samples/timeremap.json +1 -0
- package/Tests/Samples/vcTransition1.json +1 -0
- package/Tests/Samples/vcTransition2.json +1 -0
- package/Tests/SnapshotConfiguration.swift +158 -0
- package/Tests/SnapshotTests.swift +265 -0
- package/Tests/Utils/Bundle+Module.swift +30 -0
- package/Tests/Utils/HardcodedFontProvider.swift +19 -0
- package/Tests/Utils/HardcodedImageProvider.swift +23 -0
- package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
- package/Tests/ValueProvidersTests.swift +27 -0
- package/lottie-ios.podspec +12 -12
- package/package.json +1 -1
- package/script/test-carthage/Cartfile +1 -0
- package/script/test-carthage/Cartfile.resolved +1 -0
- package/script/test-carthage/CarthageTest/AppDelegate.swift +26 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
- package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
- package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
- package/script/test-carthage/CarthageTest/Info.plist +66 -0
- package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
- package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
- package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
- package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
- package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
- package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +532 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
- package/script/test-carthage/Mintfile +1 -0
- package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-spm/Mintfile +1 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie/Info.plist +0 -22
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
- package/lottie-swift/Assets/.gitkeep +0 -0
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
- package/lottie-swift/src/Private/Model/Animation.swift +0 -107
- package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
- package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
- package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
- package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
- package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
- package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
- package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
- package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
- package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
- package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
- package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
- package/lottie-swift/src/Private/Model/ShapeItems/Group.swift +0 -32
- package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
- package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
- package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
- package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
- package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
- package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
- package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +0 -127
- package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
- package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
- package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
- package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
- package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
- package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
- package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
- package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
- package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1006
- package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
- package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
- package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
- package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
- package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
- package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
- package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
- package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
- package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
- package/lottie-swift-testing.podspec +0 -32
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"assets":[],"layers":[{"ddd":0,"ind":0,"ty":4,"nm":"N","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,400,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[55.078,-226.593],[55.078,-72.51],[-52.176,-226.593],[-100.818,-226.593],[-100.818,0],[-53.687,0],[-53.687,-154.688],[53.265,0],[101.907,0],[101.907,-226.593]],"c":true}},"nm":"N"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"N"}],"ip":23,"op":32,"st":-24,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Base_012","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2,28.5],[0,0],[0,-14],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.184,6.998],[0.786,17.596]],"o":[[-25,0],[0,0],[0,14],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.5,-19],[-1.25,-28]],"v":[[102,-126.5],[55,-126.5],[57.25,-75],[55,27.75],[-52.75,-126.5],[-101,-126.5],[-101,100],[-54,100],[-54,-54],[53,100],[101,100],[103.25,26],[100.75,-71.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.941,1.928],[-0.872,-1.199]],"o":[[-1.173,-2.404],[1.071,1.473]],"v":[[169.74,-5.596],[167.622,-4.417]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1"}],"ip":21,"op":23,"st":-2,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"White_11","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3,-0.5],[-5.5,1.5]],"o":[[-3,0.5],[5.5,-1.5]],"v":[[151.5,15],[151,21]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":20,"op":21,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Accent_11","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.135,-0.558],[-0.007,-0.31],[-1.039,-0.041],[-0.175,2.011],[1.601,-1.509]],"o":[[-0.053,0.218],[0.037,1.626],[1.238,0.049],[0.231,-2.653],[-0.356,0.335]],"v":[[88.843,13.388],[88.777,14.191],[91.535,16.792],[94.245,13.91],[89.607,12.049]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":20,"op":21,"st":1,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Base_011","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-3.5,27.5],[0,0],[0,-14],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.184,6.998],[0.786,17.596]],"o":[[-25,0],[0,0],[0,14],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.5,-19],[-1.25,-28]],"v":[[102,-124.5],[55,-124.5],[59.25,-73],[55,27.75],[-52.75,-126.5],[-101,-126.5],[-101,100],[-54,100],[-54,-54],[53,100],[101,100],[103.25,26],[98.75,-69.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.861,3.813],[-1.725,-2.372]],"o":[[-2.32,-4.754],[2.118,2.913]],"v":[[169.57,-4.746],[165.382,-2.413]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1"}],"ip":20,"op":21,"st":-2,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"White_10","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.051,-1.843],[-0.655,3.29]],"o":[[-1.051,1.843],[0.655,-3.29]],"v":[[12.295,70.088],[19.752,72.713]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[8,-4],[-7.5,3.5],[-5.5,4.5]],"o":[[-8,4],[7.5,-3.5],[3.12,-2.553]],"v":[[145.5,18],[135.5,27.5],[148.5,22]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.531,-1.446],[-2.5,2]],"o":[[-3.5,2],[2.5,-2]],"v":[[109.5,89],[112,91.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":18,"op":20,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"Accent_10","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.124,-4.262],[-0.001,-0.432],[-2.597,-0.891],[-0.304,2.801]],"o":[[-0.08,0.303],[0.003,2.27],[2.884,0.99],[0.49,-4.517]],"v":[[86.891,15.437],[86.775,16.557],[88.597,25.016],[94.416,16.327]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.25,0.5],[-3.25,-1.5],[0,2.25]],"o":[[-2.25,-0.5],[2.093,0.966],[0,-2.25]],"v":[[24.25,55],[23.5,61],[30,59.25]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":18,"op":20,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":4,"nm":"Base_10","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.731,3.246],[-3.002,-3.999]],"o":[[-4.642,-5.518],[3.002,3.999]],"v":[[169.07,-3.996],[161.632,0.087]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.387,-2.08],[-1,1.5]],"o":[[-1.5,2.25],[1.177,-1.765]],"v":[[-97,-220.5],[-92.75,-218.25]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3,5.5],[0,0],[-0.75,-11.5],[0,0],[2.5,-8.75],[-4,-25.75],[0,0],[4,3.75],[1.25,4],[2.463,3.233],[0,0],[6.25,-4.5],[-5.28,-20],[-0.109,-33.769],[0,0],[0,0],[0,0],[-2.5,-7.5],[-6,0],[-4,0],[0.5,4.25],[0,8.75],[-0.547,7.747],[4.1,18.635],[-1.25,6.25],[-1.132,6.227],[6,0.25],[-0.25,6.5]],"o":[[-13,0],[0,0],[0.859,13.175],[0,0],[-3.366,11.781],[3.876,24.951],[0,0],[-4,-3.75],[-0.577,-1.848],[-2.869,-3.766],[0,0],[-6.25,4.5],[4.394,16.646],[0.172,53.462],[0,0],[0,0],[0,0],[2.5,7.5],[11.5,0],[0.5,-2.75],[-0.5,-4.25],[0,-8.75],[1.5,-21.25],[-2.75,-12.5],[1.25,-6.25],[4,-22],[2.5,-3.75],[0.18,-4.667]],"v":[[102,-128.5],[55,-128.5],[54.25,-110.5],[61.5,-93.5],[54.5,-89.25],[56.5,-42],[54.5,24],[-32.5,-101.25],[-42.75,-110.75],[-46.736,-121.582],[-54,-126.5],[-100.25,-124],[-103.72,-93.5],[-100.923,-12.999],[-101,100],[-54,100],[-53.5,-52],[45.5,82.5],[55,100],[103,100],[101.5,92.5],[104,79.75],[99,57.25],[103.75,-18.5],[102.5,-39.75],[105.5,-65],[99,-96.75],[104.75,-111]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":18,"op":20,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"White_09","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.463,-4.045],[-7.82,-1.962]],"o":[[-1.463,4.045],[7.82,1.962]],"v":[[15.303,70.796],[28.729,77.937]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3,-2.5],[-3,4]],"o":[[-4.155,3.462],[3,-4]],"v":[[106,89.5],[109.5,94.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[12.5,-6.5],[-5,1.5],[-2.5,4.5]],"o":[[-12.5,6.5],[5,-1.5],[2.5,-4.5]],"v":[[141,19.5],[123.5,36],[142.5,24.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":16,"op":18,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":9,"ty":4,"nm":"Accent_09","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[240.5,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4.25,1.25],[-0.75,-5],[-2.25,2.25]],"o":[[-4.25,-1.25],[0.75,5],[2.25,-2.25]],"v":[[40.75,54.5],[33,60],[44.75,63.25]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.268,0.152],[0.081,-3.88],[-4.476,-0.467],[-0.949,6.688]],"o":[[-5.504,-0.133],[-0.126,6.019],[3.738,0.39],[0.835,-5.883]],"v":[[97.79,17.27],[90.339,26.044],[91.656,49.763],[104.014,27.472]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.255,-0.362],[0,0],[2.894,-2.894],[0,0],[0,0],[0.362,2.532],[3.979,-0.362],[4.702,-1.809],[1.809,-3.979]],"o":[[-3.255,0.362],[0,0],[-2.983,2.983],[0,0],[0,0],[-0.362,-2.532],[0.362,-4.34],[-4.702,1.809],[-0.723,-1.809]],"v":[[77.351,83.362],[78.798,93.489],[72.287,92.404],[75.543,99.638],[96.16,100],[100.138,94.213],[93.989,93.851],[90.011,85.894],[85.67,92.043]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":16,"op":18,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":10,"ty":4,"nm":"Base_09","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-3],[0,2.5]],"o":[[0,3],[0,-2.5]],"v":[[-94,-220],[-88,-220]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4.5,-2.5],[-5.5,3.5]],"o":[[-4.5,2.5],[5.5,-3.5]],"v":[[-111,-135],[-103,-122]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.245,3.669],[2.219,-3.947],[-4.394,1.394]],"o":[[-2.245,-3.669],[-2.259,4.018],[4.394,-1.394]],"v":[[167.64,-4.541],[155.965,-1.35],[161.696,4.343]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.5,5],[4.272,-2.525],[-3.75,-4.5],[3.769,-5.14],[-1.917,-5.112],[0.263,-4.743],[0.25,-5.75],[0,0],[0,0],[0,0],[-5,-9.5],[0,-11],[0,0],[15.889,9.346],[1.5,9],[-3,8],[-1.5,14],[-1.5,14.5],[-7,17],[14,-3.5],[0.5,8],[0,0],[0,0],[0,-9.5],[-5.5,-10.5],[1.737,-9.552],[-6,-15],[0,0],[4.884,9.767],[11.5,14],[4.685,5.857],[1,3],[6.75,-2.75],[5.5,-1.25],[1.25,-3.5]],"o":[[-2.846,-4.065],[-5.5,3.25],[-6.25,-2.5],[-2.75,3.75],[2.25,6],[-0.25,4.5],[-0.25,5.75],[0,0],[0,0],[0,0],[5,9.5],[28,0],[0,0],[-4.25,-2.5],[-1.5,-9],[3,-8],[1.5,-14],[1.5,-14.5],[4.573,-11.106],[8,-8.5],[-0.5,-8],[0,0],[0,0],[0,9.5],[-6,-4],[-1,5.5],[3.974,9.935],[0,0],[-4,-20.5],[-5.166,-6.29],[-4,-5],[-1,-3],[-3.25,-1],[-5.5,1.25],[-4.75,-2.25]],"v":[[-79.75,-127.75],[-90.5,-130],[-88.25,-113.75],[-102.25,-117.75],[-101.5,-106],[-103.75,-95.75],[-101,-82.5],[-101,100],[-54,100],[-54,-49.5],[37.5,75.5],[41.5,100],[110,100],[97.25,81.5],[99,67.5],[92,51.5],[106.5,5],[101.5,-32],[112.5,-69],[101.5,-90.5],[108.5,-113],[102,-131.5],[55,-131.5],[48,-113],[55.5,-89.5],[42.5,-80],[52,-49.5],[56.5,23.5],[54.5,18],[22.5,-27],[-35.5,-105.25],[-39.5,-115.5],[-53.25,-121.25],[-65,-124.5],[-70.25,-120]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":16,"op":18,"st":1,"bm":0,"sr":1},{"ddd":0,"ind":11,"ty":4,"nm":"White_08","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4.5,0],[0,0],[0,0]],"o":[[-4.5,0],[0,0],[0,0]],"v":[[104,92.5],[91,99],[105,99]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5.687,3.148],[-7.77,-3.691],[-11.855,-3.962],[-1.529,2.813],[0,0]],"o":[[-9.018,-4.992],[7.691,3.653],[5.942,1.986],[1.013,-1.864],[0,0]],"v":[[29.515,73.598],[29.093,79.768],[50.576,89.136],[68.577,96.078],[52.193,86.815]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-8.5,7.5],[10.5,-10],[5,-8.5],[-7,11.5],[-4.5,5.5]],"o":[[8.5,-7.5],[-10.5,10],[-5,8.5],[7,-11.5],[4.5,-5.5]],"v":[[132,30.5],[118.5,35],[97.5,64.5],[105,55.5],[122.5,41.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":15,"op":16,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":12,"ty":4,"nm":"Accent_08","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-15],[6.5,-6.5],[-11.5,-35],[-2,-14],[0,0],[-14,0],[13,-2],[8,0]],"o":[[-8,-34],[-1.768,1.768],[-9,-10],[2,14],[0,0],[4,-6],[4.5,-7.5],[-19.026,0]],"v":[[74,67],[24.5,-1],[67,70],[29,64],[60,100],[110,100],[103,83],[91,29]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":15,"op":16,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":13,"ty":4,"nm":"Base_08","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.543,2.851],[-1.184,-2.865]],"o":[[-1.543,-2.851],[0.93,2.249]],"v":[[159.703,38.049],[154.781,41.138]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.499,7.09],[-5.5,-7.5]],"o":[[-5.5,-6],[4.921,6.711]],"v":[[163.5,-4.5],[147,6.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.85,2.85],[-1.5,-3]],"o":[[-2.5,-2.5],[2.109,4.219]],"v":[[-165.5,-125.5],[-171,-121.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.029,4.63],[-0.721,-5.048]],"o":[[-1,-4.5],[0.5,3.5]],"v":[[-77.5,-223.5],[-85.5,-221]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.5,0.5],[-3,-17.5],[-4.25,-10.5],[-0.413,-18.063],[-0.013,-24.659],[0,0],[0,0],[0,0],[-12.142,-23.272],[0,0],[0,0],[-5.35,8.269],[6,-3],[3.5,1.5],[4.75,-5],[3.5,3.75],[2.75,-1],[0.25,9],[2.75,7.5],[-0.5,7],[6.75,1.25],[0,0],[-8.822,19.313],[15.5,4.75],[8.764,-39.589],[-1.907,-25.991],[0,6.5],[11.381,8.985],[6.75,13],[6.327,4.482],[4,7],[4.17,-2.69],[-3.75,-9],[2.863,7.445]],"o":[[-2.5,-0.5],[2.403,14.017],[1.035,2.557],[0.44,19.234],[0.025,47.275],[0,0],[0,0],[0,0],[6,11.5],[0,0],[0,0],[5.5,-8.5],[3.5,-9],[-3.5,-1.5],[2.75,-7.5],[-3.5,-3.75],[1.25,-4.5],[-0.25,-9],[-2.75,-7.5],[0.5,-7],[-6.219,-1.152],[0,0],[9.25,-20.25],[-11.565,-3.544],[-6.925,31.281],[-7.5,-11.25],[0,-3.354],[-14.25,-11.25],[-6.75,-13],[-6,-4.25],[-4,-7],[-7.75,5],[-9.5,-1.25],[-3.75,-9.75]],"v":[[-115.25,-158.75],[-118,-135.75],[-103.25,-95.5],[-99.638,-54.974],[-100.531,7],[-101,100],[-54,100],[-54,-53.5],[39,80.5],[41,100],[102,100],[119.5,92],[117,81],[119,63],[106.5,66.25],[109.5,37.5],[102.75,36],[106,20],[99.25,-3.5],[95.25,-29],[90.5,-47],[81.75,-36.75],[89.25,-69.25],[90,-116.25],[55.425,-61.531],[54.5,18.25],[43.5,-0.5],[32.5,-26],[-40.25,-107.25],[-54,-121.75],[-69.75,-131.75],[-86.75,-139.25],[-85.25,-119.5],[-106.5,-135.75]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":15,"op":16,"st":1,"bm":0,"sr":1},{"ddd":0,"ind":14,"ty":4,"nm":"White_07","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-4,-9.5],[-3.5,-15],[2.177,-4.295],[-4.236,-5.259],[-3.209,0],[1,18],[3.5,-6],[9,30.5],[-1,5.5]],"o":[[4,9.5],[0.503,2.155],[-3.573,-2.545],[2.352,2.919],[12,0],[-1,-18],[-3.5,6],[-9,-30.5],[1,-5.5]],"v":[[52,22],[76,78.5],[73.073,95.045],[64.736,96.759],[80.5,100],[101,84],[88,79.5],[76,69.5],[63.5,32.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":13,"op":15,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":15,"ty":4,"nm":"Accent_07","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1,-2.25],[-7.25,-8.25],[-7.567,-16.568],[-1,-6.5],[-2.5,-14.5],[-3.5,-7.5],[0,0],[0.83,7.471],[12,-7.5],[25.75,-22],[10.508,15.658],[22.176,20.834]],"o":[[-1.045,2.352],[11.127,12.662],[6.579,14.406],[-14.5,-16],[2.5,14.5],[18.5,0],[0,0],[-0.5,-4.5],[6.5,-17],[-2,-11.25],[-11.348,-16.909],[-8.262,-7.762]],"v":[[-22,-45],[13.25,-11.75],[51.067,37.568],[60,78],[33.5,68],[62.75,100],[102,100],[126,79.25],[108.25,79],[78.5,63.75],[56.848,27.409],[16.824,-18.834]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":13,"op":15,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":16,"ty":4,"nm":"Base_07","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.038,3.609],[-1.764,-2.672]],"o":[[-3.755,-4.461],[3.08,4.665]],"v":[[158.583,38.882],[150.568,44.174]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4.5,7.5],[6,-9.5],[-6,-1.5],[-5.5,5.5]],"o":[[-4.5,-7.5],[-6,9.5],[6.38,1.595],[5.5,-5.5]],"v":[[154,-1.5],[129.5,14],[127.5,29.5],[140.5,17]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-0.5,-4.5],[-0.25,3.992]],"o":[[0.5,4.5],[0.5,-8]],"v":[[-169.5,-123.5],[-157.5,-122.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-5.5],[-0.5,2]],"o":[[0,5],[1.118,-4.472]],"v":[[-71,-225],[-57.5,-222]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,2.549],[5.821,-5.251],[0.5,-24],[-10.5,-27.5],[2,-40.5],[0,0],[0,0],[0,0],[-13.016,-18.319],[-1.5,-19],[0,-9],[0,0],[0,0],[-3,14],[2.5,-0.5],[1.5,3.5],[6.5,-5],[3,2],[4.5,-4.5],[2,10],[4,-4],[-2,-7.5],[1,10],[4,-0.5],[-0.5,-18.5],[-2.5,-5],[14,18.5],[35.5,50],[11,12],[6.094,10.941],[3.747,-1.606],[-2.828,-8.516],[-0.643,-1.607],[2.75,21],[-12.994,14.032]],"o":[[0,-3.5],[-11.033,9.954],[-0.677,32.497],[4,19],[-2,40.5],[0,0],[0,0],[0,0],[13.5,19],[-6.5,-1.5],[0,9.5],[0,0],[0,0],[3,-14],[3,-5.5],[-1.5,-3.5],[0,-6.5],[-3,-2],[1.5,-9.5],[-2,-10],[-4,4],[-4.5,-6],[-1,-10],[-4,0.5],[0.42,15.526],[-11.5,-10.5],[7.5,-21],[-6.195,-8.725],[-2.776,-3.029],[-5.491,-9.858],[-7,3],[5.087,15.316],[-6,-4.5],[-2.75,-21],[5.54,-5.983]],"v":[[-88,-216],[-103.821,-210.249],[-125,-164.5],[-97.5,-71.5],[-102,11.5],[-101,100],[-54,100],[-54,-54],[14,33],[41,81],[29.5,90.5],[38,100],[103,100],[131.5,80.5],[127,68],[130,51.5],[116.5,50],[114.5,33],[100,34.5],[98.5,9.5],[86.5,-7],[86.5,14],[68.5,-26],[63,-53.5],[54,-34.5],[62,11.5],[14.5,-32.5],[-49,-107],[-66,-134],[-92.063,-151.908],[-107,-168.5],[-106.492,-149.671],[-90,-114],[-114.75,-158],[-101.54,-206.017]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":13,"op":15,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":17,"ty":4,"nm":"White_06","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.086,0.905],[-8,-23.5],[-9,-7.5],[-7.15,-9.439],[5.198,4.243],[3.75,7],[8,10.5],[3.511,12.284]],"o":[[-3,-2.5],[5.549,16.301],[9,7.5],[4.426,5.842],[-7.981,-6.514],[-2.25,0.75],[-5.104,-6.7],[-1.992,-6.968]],"v":[[-125,-171],[-117.5,-136.5],[-93.5,-105],[-80.35,-87.061],[-76.019,-87.986],[-93.25,-108.5],[-107,-121.5],[-120.813,-150.768]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-1.85,-3.535],[-10.186,-8.173],[-3.271,-4.048],[-2.223,-0.202],[20.044,18.153],[15.518,11.082]],"o":[[2.723,5.202],[6.944,5.572],[10.277,12.719],[6.148,0.56],[-18.816,-17.041],[-18.239,-13.026]],"v":[[-50.723,-79.202],[-14.186,-53.673],[33.723,-15.219],[67.723,30.702],[34.316,-17.459],[-17.518,-58.082]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":10,"op":13,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":18,"ty":4,"nm":"Accent_06","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4,0],[-1.118,-24.602],[-20.5,-18],[-42.694,-44.642],[-8.941,6.437],[28.28,30.145],[16.143,11.819],[1.031,16.836]],"o":[[-4.272,0],[1,22],[8.392,7.369],[31.751,33.2],[10.587,-7.623],[-38.501,-41.039],[-33.084,-24.222],[-1.5,-24.5]],"v":[[-116.5,-203.5],[-126.5,-166.5],[-88,-95],[18.49,7.445],[75.5,64],[45.676,-10.258],[-71,-100.5],[-121.5,-169]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":10,"op":13,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":19,"ty":4,"nm":"Base_06","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[19.589,-5.138],[9.5,-32],[-0.346,4.842],[0.75,0.5],[1.587,-22.445],[-39.029,-40.848],[5.5,-49],[0,0],[0,0],[1,26.5],[-0.5,4.5],[-30.5,-44.5],[-5.5,-21],[-10.25,-11],[0,0],[-7.157,17.176],[5.75,-4],[3,5],[-6.5,7],[3,2],[12,-39],[3,0],[1.5,-2.5],[1.5,3.5],[4.5,-2.5],[-6,-12],[2.5,5],[-0.5,6],[16.972,12.418],[7.5,11],[-1.16,14.31],[-10.5,6],[-13.251,-23.016],[5.15,-28.325],[-5.554,-2.777],[-2.301,8.308],[0.5,3.75],[-1,1.5],[14.25,21.75]],"o":[[-15.25,4],[-2,-9.5],[0.25,-3.5],[-0.75,-0.5],[-1.75,24.75],[-3.529,21.652],[-3.654,32.552],[0,0],[0,0],[-1,-26.5],[9,10],[8.485,12.38],[-7.75,-1.5],[16,0],[0,0],[5,-12],[4,-4.75],[2,-6.5],[6.5,-7],[-3,-2],[1.5,-10.5],[-3,0],[-1,-4.5],[-1.5,-3.5],[-4.5,2.5],[-10.5,-8],[4.5,-3],[0.5,-6],[-41,-30],[-12.345,-18.106],[0.75,-9.25],[13.599,-7.771],[14.25,24.75],[-2,11],[4.5,2.25],[4.5,-16.25],[1.5,1.25],[1,-1.5],[-14.25,-21.75]],"v":[[-85.75,-230],[-120.5,-187.5],[-123.25,-199.75],[-123.5,-206.25],[-129.25,-188.25],[-84.471,-75.652],[-103.5,12],[-101,100],[-55,100],[-53,24.5],[-52,-47.5],[14.5,24.5],[40.5,82.5],[39,100],[102,100],[126,84],[118.5,72],[120.5,53.5],[136.5,23.5],[141,11],[108.5,54],[106,37.5],[98.5,43],[87.5,21.5],[77,15.5],[80.5,38.5],[-21.5,-59],[-15.5,-67.5],[-36,-90],[-93,-149],[-107.25,-192.25],[-91,-218],[-42.25,-199],[-25,-127.75],[-33.5,-104],[-19.75,-120.75],[-19.5,-157.75],[-15,-158],[-29.75,-198.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4,-0.5],[-4,0]],"o":[[-4,0.5],[4,0]],"v":[[-131.5,-228.5],[-131.5,-222]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1,4.5],[3,-1.5],[-1.5,-4],[-5,2]],"o":[[-1,-4.5],[-3,1.5],[1.619,4.316],[5,-2]],"v":[[-148,-130],[-157,-129.5],[-163.5,-123.5],[-153,-122]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3,-5.5],[-3,3.5]],"o":[[-3,5.5],[3,-3.5]],"v":[[16,-84.5],[21.5,-79.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.575,5.918],[-3.5,-4]],"o":[[-5,-4.5],[2.794,3.193]],"v":[[152.5,42],[142.5,51]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5,-3.5],[-3,2]],"o":[[-5,3.5],[3,-2]],"v":[[-150,50.5],[-147,59]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6"}],"ip":10,"op":13,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":20,"ty":4,"nm":"White_05","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1,-2.75],[-5.912,-13.795],[-2,1],[2.75,7]],"o":[[-1,2.75],[3.75,8.75],[2,-1],[-2.461,-6.265]],"v":[[-18.75,-184.75],[-8.75,-167.75],[-3.5,-150.75],[-7.75,-168]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[7.25,-5],[0.25,-1],[-15.25,0],[-5.949,-3.966],[-1.031,1.031],[2.5,1.5],[7.512,0.447]],"o":[[-1.25,1.25],[4.5,-3.5],[9,0],[3.75,2.5],[0.75,-0.75],[-5.524,-3.315],[-11.994,-0.713]],"v":[[-97,-200.5],[-98.5,-196.75],[-69.5,-205.25],[-47.25,-199.25],[-42,-197],[-46.25,-200.25],[-69.506,-206.787]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[1.552,-13.448],[-2,2],[-2.5,12],[0,0]],"o":[[0,0],[-1.5,13],[2,-2],[1.583,-7.599],[0,0]],"v":[[-121.5,-190],[-130.5,-173.5],[-123,-154],[-127.5,-174.5],[-123,-184]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":8,"op":10,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":21,"ty":4,"nm":"Accent_05","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2.225,4.598],[1.25,-15.5],[-1.5,12],[1.695,8.749]],"o":[[-12.5,8],[-1.688,20.934],[1.017,-4.881],[-1.711,-8.829]],"v":[[-118,-203.5],[-139.25,-171],[-117.75,-152.75],[-121.695,-170.749]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[33.75,-17],[0,0],[-18.007,0],[-3.171,-21.141],[2.5,9],[-3.131,2.907],[12,19]],"o":[[-10.5,9],[0,0],[28,0],[1.5,10],[5.5,4],[7,-6.5],[-11.503,-18.212]],"v":[[-86.25,-213.75],[-100.5,-191.25],[-71,-199],[-21,-152],[-18.5,-157],[-5,-130.5],[-11.5,-179]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":8,"op":10,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":22,"ty":4,"nm":"Base_05","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[53.084,6.331],[-11.5,-29.5],[-24,-17.5],[0.5,-49],[0,0],[0,0],[-6.279,31.394],[0,0],[-10,-30],[-6,4],[14,14.5],[-1.93,2.068],[5.5,12],[10.5,10],[11,8],[4.5,4.5],[-2.261,19.897]],"o":[[-54.5,-6.5],[11.5,29.5],[-22,19.5],[-0.405,39.7],[0,0],[0,0],[7,-35],[0,0],[10,30],[6,-4],[3.5,1.5],[7,-7.5],[5,-5],[-11.154,-10.623],[-11,-8],[9,-12.5],[2.5,-22]],"v":[[-71,-225],[-120.5,-141.5],[-71.5,-72.5],[-106.5,23.5],[-101.5,100],[-53.5,100],[-56,-6],[-46,-57],[24,18],[47,52],[33,8.5],[39.5,8.5],[22.5,-19.5],[15,-41],[-13,-65],[-33,-79.5],[-11,-133.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[12,21],[6,-37],[-36.276,-24.255],[0,0],[-11,21],[1.364,3.542],[-2.634,15.396]],"o":[[-18.303,-32.031],[-4.234,26.107],[12.936,8.65],[0,0],[-5,6],[-1.618,-4.203],[2.896,-16.929]],"v":[[-45,-193.5],[-101,-186],[-57.224,-121.745],[-46,-97],[-30,-125],[-39.882,-122.797],[-32.896,-141.071]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"mm","mm":3,"nm":"Merge Paths 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.744,-5.145],[-3.5,0],[0.5,4.5]],"o":[[-4,7.5],[3.5,0],[-0.5,-4.5]],"v":[[7.5,-83],[13.5,-72],[21,-81]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4.5,-5.5],[-5,6]],"o":[[-3.61,4.412],[5,-6]],"v":[[-128.5,-232],[-121,-225.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.607,-2.202],[-3.25,1]],"o":[[-6.75,2.25],[3.25,-1]],"v":[[-145,50.5],[-141.75,63.75]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3,-2],[-3.25,1.375]],"o":[[-3,2],[3.25,-1.375]],"v":[[-145.25,-114.375],[-143.25,-109.375]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.5,3.5],[6.5,-5.5],[-2,-4],[-4,5]],"o":[[-2.5,-3.5],[-6.5,5.5],[2,4],[4,-5]],"v":[[-135,-141.5],[-146,-135],[-155,-125.5],[-140.5,-127.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"}],"ip":8,"op":10,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":23,"ty":4,"nm":"White_04","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-0.577,0.115],[5.5,-11],[2,-1],[-5.252,8.813],[-1.707,4.256]],"o":[[2.859,-0.572],[-5,10],[-2.45,1.225],[2.34,-3.926],[-0.022,-10.959]],"v":[[4,-122],[-4,-97.5],[-16,-82.5],[-6.179,-97.607],[0.022,-111.041]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,-3.905],[-8.447,-21.116],[0.5,-17.5],[12.5,30.5]],"o":[[0,4],[11,27.5],[-0.414,14.494],[-8.656,-21.12]],"v":[[-46.5,-201],[-15.5,-163],[-6,-118],[-12.5,-163.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":5,"op":8,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":24,"ty":4,"nm":"Accent_04","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[12.25,-7.5],[-2.25,-1],[-9.75,5.75],[0,0]],"o":[[0,0],[-9.528,5.833],[2.25,1],[9.75,-5.75],[0,0]],"v":[[-56.75,-68.75],[-80,-59.5],[-94.5,-41.75],[-79.25,-54],[-64.25,-59]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[21.916,20.487],[3.567,-11.148],[-15.5,-8.5],[-7.124,-17.536],[2.309,-11.446],[-1.194,-2.095],[-4.911,8.848],[6.756,-10.663],[-2.981,21.364]],"o":[[-23,-21.5],[-4,12.5],[22.354,12.259],[3.25,8],[-1.919,9.511],[1.578,2.769],[-1.911,14.348],[14.006,-9.163],[3,-21.5]],"v":[[-28.5,-194],[-84.5,-207],[-60,-178.5],[-21.25,-139.25],[-17.559,-112.054],[-25.306,-89.155],[-7.589,-111.848],[-22.506,-77.587],[4.5,-123]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":5,"op":8,"st":5,"bm":0,"sr":1},{"ddd":0,"ind":25,"ty":4,"nm":"Base_04","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6,-6],[-3,-1.5],[-1,4.5]],"o":[[-4.757,4.757],[3,1.5],[1.173,-5.28]],"v":[[-142.5,54],[-141,65],[-134.5,58]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.5,-3.5],[-2.5,4.5]],"o":[[-3.5,3.5],[2.5,-4.5]],"v":[[-154.5,46.5],[-149,49.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.5,-4.5],[-1.046,3.661]],"o":[[-1.5,4.5],[1,-3.5]],"v":[[-130.5,-22.5],[-124,-20]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.5,-4],[-3,4.5]],"o":[[-2.5,4],[3,-4.5]],"v":[[-146,-124],[-140.5,-119]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5,-4],[-5,3.5]],"o":[[-5,4],[5,-3.5]],"v":[[4,-13],[9.5,-5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,-5.5],[-6,1],[-0.225,4.494]],"o":[[0,0],[0,5.5],[6,-1],[0.5,-10]],"v":[[1,-82],[-5,-76],[8,-68],[17.5,-75]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2,-5],[17,-15.5],[8.958,-25.593],[-4,-4],[-4.5,8.5],[-4.061,-7.16],[-4.5,4],[2,12.5],[-10,3],[6.266,5.073],[2.775,19.779],[-2.38,4.29],[-4,11.5],[-11,-25.5],[14.5,-41],[18.799,-46.998],[0,0],[0,0],[-5.244,14.301],[18.5,-11.5],[-6.996,11.194],[-8.469,21.715],[24,23]],"o":[[-14.5,-7],[-17,15.5],[-3.5,10],[4,4],[1.476,9.345],[4.195,7.397],[4.5,-4],[15,10],[15.145,-4.543],[-10.5,-8.5],[2.775,2.779],[3.153,-5.684],[4.789,-13.768],[11,25.5],[-11.274,31.877],[-18,45],[0,0],[0,0],[5.5,-15],[-1.5,-18.5],[15,-24],[19.5,-50],[-24,-23]],"v":[[-61.5,-223],[-107,-217.5],[-133.5,-157],[-140.5,-138],[-126.5,-146.5],[-118.326,-122.166],[-101.5,-109],[-107.5,-132],[-73,-115.5],[-77,-141.5],[-105.775,-178.779],[-96.12,-178.29],[-99,-201.5],[-52.5,-181],[-46.5,-91],[-89,-15],[-101,100],[-54,100],[-53.5,52],[-58.5,-4.5],[-49.5,-42],[-10.5,-99],[-38,-217.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":5,"op":8,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":26,"ty":4,"nm":"White_03","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.151,-2.302],[-0.799,-10.659],[5.75,-13.5],[0.25,7]],"o":[[-0.75,1.5],[0.75,10],[8.75,-12],[-0.357,-10]],"v":[[-29.75,-140.75],[-22.25,-124],[-31,-101],[-20.75,-124.25]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-0.75,1.5],[6,-4],[-7.5,5],[0,0]],"o":[[-7.75,1.75],[-6,4],[13.532,-9.021],[0,0]],"v":[[-61.25,-65.5],[-89.5,-53.25],[-88.5,-52],[-63.5,-62.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.5,-2.5],[9,-10],[4.608,-3.716],[0,0],[-5.016,13.223]],"o":[[-3.5,2.5],[-4.752,5.279],[0.108,1.284],[0,0],[5.5,-14.5]],"v":[[-12,-117],[-22.5,-82.5],[-35.108,-71.784],[-36.5,-68.5],[-13,-91.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":3,"op":5,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":27,"ty":4,"nm":"Accent_03","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.235,-0.068],[13,-14.5],[-2.387,-10.693],[-5.566,2.783],[-0.134,10.567],[-7,7.5],[0,0]],"o":[[-16.5,0.5],[-13.517,15.076],[1.891,8.473],[4.165,-2.083],[0.069,-5.471],[8.955,-9.595],[0,0]],"v":[[-59,-70.5],[-98,-55],[-106.113,-15.807],[-90,1.5],[-94.069,-25.029],[-89.5,-41],[-75,-49]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6,-22],[21.5,-81],[8.317,22.524]],"o":[[-4.212,15.444],[27,-9],[-12,-32.5]],"v":[[-54,-156.5],[-37.5,-65],[-8,-136]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":3,"op":5,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":28,"ty":4,"nm":"Base_003","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.121,-1.345],[-1.75,-0.625],[-0.625,1.5],[1.375,0.562]],"o":[[-0.938,1.125],[1.75,0.625],[0.625,-1.5],[-1.399,-0.572]],"v":[[-24,-52.25],[-23,-48.25],[-18.375,-49.875],[-20,-53.625]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.875,-1.125],[-1.125,-0.625],[-1.375,1],[1.125,1.125]],"o":[[-1.593,0.956],[1.236,0.687],[1.375,-1],[-1.068,-1.068]],"v":[[-19.625,9.5],[-20.375,13.5],[-15.75,14],[-14.875,10.125]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[8,-6.5],[-3.5,-1.5],[-2.5,3.5]],"o":[[-8,6.5],[3.5,1.5],[2.5,-3.5]],"v":[[-4.5,-8],[-7.5,1.5],[2,-1.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[4,2.5],[2.964,-4.149],[-5.758,-2.617],[-2,4]],"o":[[-4,-2.5],[-2.5,3.5],[5.5,2.5],[2,-4]],"v":[[-128.5,57],[-140,58.5],[-137,70],[-124,67.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.879,-2.639],[-4,3]],"o":[[-6,5.5],[4,-3]],"v":[[-151,46],[-146,50]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5,-5],[-5.075,3.904]],"o":[[-4.257,4.257],[6.5,-5]],"v":[[-126,-22],[-122,-16]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.5,-5],[-3.5,-1.5],[-5,2.5],[0,9.5]],"o":[[-8.481,6.524],[3.5,1.5],[5,-2.5],[0,-9.5]],"v":[[-9,-76],[-21,-57],[-6,-63.5],[5,-72.5]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[13.127,1.712],[-1,-8],[-5.5,-15],[1.14,-7.413],[-5.678,-40.457],[25.278,-29.348],[0,0],[0,0],[-4.099,21.615],[4,4.5],[5,-8],[-21.5,30.5],[-1,35],[9,15.5],[2.5,-3.5]],"o":[[-11.5,-1.5],[1,8],[-5.5,-6],[-2,13],[4,28.5],[-59,68.5],[0,0],[0,0],[5.5,-29],[-4,-4.5],[2.5,-21.5],[21.5,-30.5],[1.029,-36.017],[-9,-15.5],[-8,-7]],"v":[[-75.5,-229],[-92,-220],[-68,-197],[-81,-199.5],[-45,-138.5],[-65.5,-62.5],[-101,100],[-54,100],[-54,53],[-50.5,10],[-64,15],[-42,-60],[-8.5,-133],[-28,-199],[-44.5,-209]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":3,"op":5,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":29,"ty":4,"nm":"White_02","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-7.442,11.163],[6,-6.5],[0,0],[0,0]],"o":[[5,-7.5],[-4.084,4.424],[0,0],[0,0]],"v":[[-13.5,-71.5],[-22.5,-64],[-32,-58.5],[-33.5,-55]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,1],[5,-9.5],[-5.5,2.5]],"o":[[-8.5,4],[14,-14],[1.75,-2.5]],"v":[[-70,-53.5],[-91.5,-35.5],[-71.5,-50]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.663,-3.976],[-4.163,-15.61],[-3,-0.5],[4,13.5]],"o":[[-1,6],[6,22.5],[3,0.5],[-4,-13.5]],"v":[[-82.5,-13],[-76,15],[-77,39],[-74,14]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":2,"op":3,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":30,"ty":4,"nm":"Accent_02","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.5,-5.5],[3.5,-12],[0,0],[4,-5.5],[-10,23.5]],"o":[[-6.5,5.5],[-3.5,12],[0,0],[-4,5.5],[8.916,-20.952]],"v":[[-16,-106.5],[-18.5,-83],[-25.5,-68],[-37,-51],[0.5,-81.5]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-7,17.5],[8.5,-31.5],[3.5,-26.5],[-8,4.5],[1.648,22.529],[0.5,19]],"o":[[-3,-0.5],[-6.034,22.363],[-3.5,26.5],[8,-4.5],[-1.5,-20.5],[-0.504,-19.157]],"v":[[-65.5,-62.5],[-99,-37],[-84,28.5],[-83,60.5],[-73.5,15],[-80.5,-22]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":2,"op":3,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":31,"ty":4,"nm":"Base_02","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5,-5.5],[-3.394,2.546]],"o":[[-5,5.5],[4,-3]],"v":[[-122,-18],[-112,-5]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[3.5,9],[4.743,-6.325],[4,-10.5],[-2.828,-1.414],[-5.5,4.5]],"o":[[-3.5,-9],[-3,4],[-4,10.5],[4,2],[5.5,-4.5]],"v":[[-11.5,-58.5],[-27,-51],[-37,-41.5],[-41.5,-23.5],[-29,-36]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.5,2.5],[4.826,-10.617],[-2.5,-2],[-8,8]],"o":[[-2.5,-2.5],[-5,11],[2.619,2.095],[9.513,-9.513]],"v":[[-13,5],[-28.5,17.5],[-32.5,37.5],[-18,22.5]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6,-0.5],[-6,0.5]],"o":[[-6.062,0.505],[4.512,-0.376]],"v":[[-141,47.5],[-140,59.5]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0],[-5.978,13.495],[4.774,1.297],[1.5,-24.5],[-28.417,40.783],[25.963,13.129],[10.687,-11.463],[8.788,-36.493],[6.218,-19.493],[0.638,-6.933],[6.911,-5.369],[-2.829,-8.064]],"o":[[0,0],[0,0],[8.321,-18.787],[-9.634,-2.617],[-6.5,-44.5],[21.578,-30.968],[6.963,-27.871],[-9.351,10.03],[-8.252,34.268],[-13.78,43.204],[-3.373,-4.549],[-7.519,5.842],[6.456,18.4]],"v":[[-101,100],[-54,100],[-50.321,55.787],[-51.366,25.617],[-68.5,68.5],[-31.578,-58.032],[-24.963,-149.129],[-41.355,-182.241],[-46.788,-110.507],[-80.327,-31.423],[-92.627,39.549],[-102.911,33.369],[-100,63.5]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[6.626,-7.573],[-11.143,-6.191],[-1.5,2],[4.5,8.5]],"o":[[-7,8],[4.5,2.5],[1.5,-2],[-5.039,-9.519]],"v":[[-132,59.5],[-124,80],[-107.5,87.5],[-114.5,69.5]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"}],"ip":2,"op":3,"st":2,"bm":0,"sr":1},{"ddd":0,"ind":32,"ty":4,"nm":"White_01","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[5,-3.5],[0,0],[-4.5,0]],"o":[[-3.776,2.644],[0,0],[-11,-7]],"v":[[-93,86.5],[-89,100.5],[-80.5,100]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.32,0.5,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":1,"op":2,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":33,"ty":4,"nm":"Accent_01","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[9.833,-1.788],[1,-6.5],[6,0],[3.233,-11.659],[6.944,-6.019],[0,0],[0,0],[-1.802,17.05]],"o":[[-11,2],[-5.5,-19.5],[-7.592,0],[-2.036,7.341],[-7.274,6.305],[0,0],[0,0],[1.504,-14.232]],"v":[[-53,36.5],[-74,82.5],[-79.5,47],[-87.233,77.159],[-99.444,71.519],[-101,100],[-54,100],[-61.372,80.514]],"c":true}},"nm":"Path 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"}],"ip":1,"op":2,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":34,"ty":4,"nm":"Base_01","parent":35,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[250,300,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[7.356,4.259],[12.5,-40],[2.5,-38],[2,7.5],[6.5,-4],[-13,-32],[5,-6],[-10.563,-6.036],[0,0],[0,0],[-4.919,2.46],[4.74,2.188],[4,-0.5],[-11.5,14],[8.961,3.734],[13.5,-26],[-18.971,36.268],[10,5],[12.365,-20.233],[0,0],[-12,24]],"o":[[-9.5,-5.5],[-14.542,46.535],[-2,-9.5],[-2.754,-10.328],[-7.534,4.636],[-7.5,-5],[-4.161,4.993],[7,4],[0,0],[0,0],[10,-5],[-6.5,-3],[3,-12.5],[9.204,-11.205],[-12,-5],[5,-26.5],[17,-32.5],[-7.071,-3.536],[-5.5,9],[0,0],[12,-24]],"v":[[-48,-95.5],[-80.5,-54],[-95.5,38.5],[-100,15],[-111.5,3],[-95,88],[-116.5,75],[-106.5,91],[-101.008,100.039],[-54,100],[-45.5,93],[-39,80.5],[-57,87.5],[-38,54.5],[-30.5,29.5],[-71,74.5],[-44.5,4],[-28.5,-50.5],[-52,-30.5],[-64.5,-13.5],[-53.5,-59.5]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":1,"op":2,"st":-1,"bm":0,"sr":1},{"ddd":0,"ind":35,"ty":1,"nm":"ResizerTemp","parent":36,"ks":{"o":{"k":0},"r":{"k":0},"p":{"k":[26.6,35.7,0]},"a":{"k":[250,300,0]},"s":{"k":[10.5,10.5,100]}},"ao":0,"sw":500,"sh":600,"sc":"#ffffff","ip":0,"op":32,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":36,"ty":1,"nm":"White Solid 43","ks":{"o":{"k":0},"r":{"k":0},"p":{"k":[40,50,0]},"a":{"k":[28,35,0]},"s":{"k":[142.857,142.857,100]}},"ao":0,"sw":56,"sh":70,"sc":"#ffffff","ip":0,"op":32,"st":0,"bm":0,"sr":1}],"v":"4.4.26","ddd":0,"ip":0,"op":32,"fr":25,"w":80,"h":100}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"assets":[],"layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Tail","parent":7,"ks":{"o":{"k":100},"r":{"k":-6.854},"p":{"k":[-40.122,187.803,0]},"a":{"k":[0,0,0]},"s":{"k":[211.245,169.588,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"t":0,"s":[{"i":[[0,0],[0,0],[-6.397,3.412]],"o":[[0,0],[0,0],[7.5,-4]],"v":[[50.75,-6.75],[51.5,6],[62.5,7]],"c":true}],"h":1},{"t":2,"s":[{"i":[[0,0],[0,0],[-5,5.25]],"o":[[0,0],[0,0],[5.687,-5.971]],"v":[[50.75,-6.75],[52.5,6.5],[63.5,2]],"c":true}],"h":1},{"t":4,"s":[{"i":[[0,0],[0,0],[3.09,4.523]],"o":[[0,0],[0,0],[-4.652,-6.809]],"v":[[52.5,-7.5],[56,4.75],[66.5,-6.25]],"c":true}],"h":1},{"t":6,"s":[{"i":[[0,0],[0,0],[-5,5.25]],"o":[[0,0],[0,0],[5.687,-5.971]],"v":[[50.75,-6.75],[52.5,6.5],[63.5,2]],"c":true}],"h":1},{"t":8,"s":[{"i":[[0,0],[0,0],[-6.397,3.412]],"o":[[0,0],[0,0],[7.5,-4]],"v":[[50.75,-6.75],[51.5,6],[62.5,7]],"c":true}],"h":1},{"t":10,"s":[{"i":[[0,0],[0,0],[-6.397,3.412]],"o":[[0,0],[0,0],[7.5,-4]],"v":[[50.75,-6.75],[51.5,6],[62.5,7]],"c":true}],"h":1},{"t":12,"s":[{"i":[[0,0],[0,0],[-5,5.25]],"o":[[0,0],[0,0],[5.687,-5.971]],"v":[[50.75,-6.75],[52.5,6.5],[63.5,2]],"c":true}],"h":1},{"t":14,"s":[{"i":[[0,0],[0,0],[3.09,4.523]],"o":[[0,0],[0,0],[-4.652,-6.809]],"v":[[52.5,-7.5],[56,4.75],[66.5,-6.25]],"c":true}],"h":1},{"t":17,"s":[{"i":[[0,0],[0,0],[-5,5.25]],"o":[[0,0],[0,0],[5.687,-5.971]],"v":[[50.75,-6.75],[52.5,6.5],[63.5,2]],"c":true}],"h":1},{"t":19,"s":[{"i":[[0,0],[0,0],[-6.397,3.412]],"o":[[0,0],[0,0],[7.5,-4]],"v":[[50.75,-6.75],[51.5,6],[62.5,7]],"c":true}],"h":1},{"t":21,"s":[{"i":[[0,0],[0,0],[-5,5.25]],"o":[[0,0],[0,0],[5.687,-5.971]],"v":[[50.75,-6.75],[52.5,6.5],[63.5,2]],"c":true}],"h":1}]},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[{"t":0,"s":[-3.25,5.5],"h":1},{"t":2,"s":[0.75,3.5],"h":1},{"t":6,"s":[0,0],"h":1},{"t":8,"s":[-3.25,5.5],"h":1},{"t":10,"s":[-3.25,5.5],"h":1},{"t":12,"s":[0.75,3.5],"h":1},{"t":17,"s":[0,0],"h":1},{"t":19,"s":[-3.25,5.5],"h":1},{"t":21,"s":[0,0],"h":1}],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":[{"t":2,"s":[0],"h":1},{"t":6,"s":[0],"h":1},{"t":12,"s":[0],"h":1},{"t":17,"s":[0],"h":1},{"t":21,"s":[0],"h":1}],"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"L Right leg","parent":7,"ks":{"o":{"k":100},"r":{"k":[{"t":0,"s":[-9.644],"h":1},{"t":2,"s":[-91.658],"h":1},{"t":4,"s":[-151.311],"h":1},{"t":6,"s":[-91.658],"h":1},{"t":8,"s":[-9.644],"h":1},{"t":10,"s":[-9.644],"h":1},{"t":12,"s":[-142.927],"h":1},{"t":14,"s":[-169.987],"h":1},{"t":17,"s":[-150.342],"h":1},{"t":19,"s":[-143.328],"h":1},{"t":21,"s":[-134.162],"h":1},{"t":22,"s":[-95.99],"h":1}]},"p":{"k":[{"t":0,"s":[25.846,252.895,0],"h":1},{"t":2,"s":[42.971,210.27,0],"h":1},{"t":4,"s":[46.968,220.038,0],"h":1},{"t":6,"s":[42.971,210.27,0],"h":1},{"t":8,"s":[16.724,255.7,0],"h":1},{"t":10,"s":[27.884,246.672,0],"h":1},{"t":12,"s":[47.264,204.629,0],"h":1},{"t":14,"s":[45.674,225.859,0],"h":1},{"t":17,"s":[51.003,207.936,0],"h":1},{"t":19,"s":[53.019,221.639,0],"h":1},{"t":21,"s":[63.588,207.586,0],"h":1}]},"a":{"k":[124.456,68.832,0]},"s":{"k":[173.966,146.364,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[5.949,-4.003],[-3.217,-5.201],[-3.227,2.156],[4.8,5.046]],"o":[[0,0],[-2.924,1.967],[4.117,6.657],[13.028,-8.706],[-3.932,-4.134]],"v":[[134.072,51.361],[120.491,58.603],[100.037,84.255],[136.388,74.473],[143.255,54.386]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"R right leg","parent":7,"ks":{"o":{"k":100},"r":{"k":[{"t":0,"s":[-11.374],"h":1},{"t":2,"s":[-93.389],"h":1},{"t":4,"s":[-153.041],"h":1},{"t":6,"s":[-93.389],"h":1},{"t":8,"s":[-11.374],"h":1},{"t":10,"s":[-11.374],"h":1},{"t":12,"s":[-133.525],"h":1},{"t":14,"s":[-168.082],"h":1},{"t":17,"s":[-134.286],"h":1},{"t":19,"s":[-135.361],"h":1},{"t":21,"s":[-93.389],"h":1},{"t":22,"s":[-63.135],"h":1}]},"p":{"k":[{"t":0,"s":[11.046,242.717,0],"h":1},{"t":2,"s":[26.825,215.627,0],"h":1},{"t":4,"s":[50.727,205.921,0],"h":1},{"t":6,"s":[26.825,215.627,0],"h":1},{"t":8,"s":[11.046,242.717,0],"h":1},{"t":10,"s":[11.046,242.717,0],"h":1},{"t":12,"s":[34.74,212.113,0],"h":1},{"t":14,"s":[49.932,199.806,0],"h":1},{"t":17,"s":[40.527,217.109,0],"h":1},{"t":19,"s":[38.575,245.073,0],"h":1},{"t":21,"s":[31.002,229.592,0],"h":1}]},"a":{"k":[124.456,68.832,0]},"s":{"k":[172.824,147.331,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[5.949,-4.003],[-3.217,-5.201],[-3.227,2.156],[4.8,5.046]],"o":[[0,0],[-2.924,1.967],[4.117,6.657],[13.028,-8.706],[-3.932,-4.134]],"v":[[134.072,51.361],[120.491,58.603],[100.037,84.255],[136.388,74.473],[143.255,54.386]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"L Front leg","parent":7,"ks":{"o":{"k":100},"r":{"k":[{"t":0,"s":[1.826],"h":1},{"t":2,"s":[81.019],"h":1},{"t":4,"s":[34.029],"h":1},{"t":6,"s":[11.404],"h":1},{"t":8,"s":[1.826],"h":1},{"t":10,"s":[1.826],"h":1},{"t":12,"s":[110.613],"h":1},{"t":14,"s":[93.754],"h":1},{"t":17,"s":[-8.024],"h":1},{"t":19,"s":[1.826],"h":1},{"t":21,"s":[11.404],"h":1}]},"p":{"k":[{"t":0,"s":[-64.172,242.933,0],"h":1},{"t":2,"s":[-73.986,236.426,0],"h":1},{"t":4,"s":[-67.496,225.398,0],"h":1},{"t":6,"s":[-60.611,239.089,0],"h":1},{"t":8,"s":[-64.271,248.069,0],"h":1},{"t":10,"s":[-64.172,242.933,0],"h":1},{"t":12,"s":[-67.061,239.01,0],"h":1},{"t":14,"s":[-74.501,227.841,0],"h":1},{"t":17,"s":[-54.507,239.88,0],"h":1},{"t":19,"s":[-64.271,248.069,0],"h":1},{"t":21,"s":[-60.611,239.089,0],"h":1}]},"a":{"k":[160.519,57.01,0]},"s":{"k":[143.513,177.015,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[3.982,-8.932],[-15.673,-9.237],[-3.679,7.685],[6.49,10.307]],"o":[[0,0],[-1.539,3.453],[15.206,8.961],[2.239,-4.677],[-8.86,-14.071]],"v":[[149.396,37.163],[133.746,39.787],[146.035,62.546],[183.764,77.974],[163.256,53.025]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"Eye","parent":7,"ks":{"o":{"k":100},"r":{"k":-6.854},"p":{"k":[{"t":0,"s":[-136.894,193.062,0],"h":1},{"t":2,"s":[-135.845,192.936,0],"h":1},{"t":4,"s":[-146.649,192.526,0],"h":1},{"t":6,"s":[-132.383,194.228,0],"h":1},{"t":8,"s":[-137.455,193.75,0],"h":1},{"t":10,"s":[-136.894,193.062,0],"h":1},{"t":12,"s":[-135.845,192.936,0],"h":1},{"t":14,"s":[-146.649,192.526,0],"h":1},{"t":17,"s":[-132.383,194.228,0],"h":1},{"t":19,"s":[-137.455,193.75,0],"h":1},{"t":21,"s":[-132.383,194.228,0],"h":1}]},"a":{"k":[-45.045,-10,0]},"s":{"k":[211.245,169.588,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2.307,4.231],[0,0],[-4.457,0.077],[0,0]],"o":[[-0.59,0.462],[0,0],[0.312,0.077],[0,0]],"v":[[-46.979,-10.923],[-48.152,-9.846],[-42.661,-5.077],[-42.146,-6.923]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[5,4.75]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[-43.375,-12.375],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"Hamster Ear","parent":7,"ks":{"o":{"k":100},"r":{"k":[{"t":0,"s":[61.362],"h":1},{"t":2,"s":[38.501],"h":1},{"t":4,"s":[8.576],"h":1},{"t":6,"s":[38.501],"h":1},{"t":8,"s":[38.501],"h":1},{"t":10,"s":[61.362],"h":1},{"t":12,"s":[38.501],"h":1},{"t":14,"s":[8.576],"h":1},{"t":17,"s":[38.501],"h":1},{"t":19,"s":[38.501],"h":1},{"t":21,"s":[38.501],"h":1}]},"p":{"k":[{"t":0,"s":[-94.357,178.949,0],"h":1},{"t":2,"s":[-94.416,172.978,0],"h":1},{"t":4,"s":[-106.585,171.024,0],"h":1},{"t":6,"s":[-94.416,172.978,0],"h":1},{"t":8,"s":[-96.672,172.395,0],"h":1},{"t":10,"s":[-94.357,178.949,0],"h":1},{"t":12,"s":[-94.416,172.978,0],"h":1},{"t":14,"s":[-106.585,171.024,0],"h":1},{"t":17,"s":[-94.416,172.978,0],"h":1},{"t":19,"s":[-96.672,172.395,0],"h":1},{"t":21,"s":[-94.416,172.978,0],"h":1}]},"a":{"k":[-151.921,13.054,0]},"s":{"k":[130.58,120.023,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[29,0],[0,0],[-8,1]],"o":[[-21.523,0],[0,0],[8,-1]],"v":[[-152,-5],[-164.5,24],[-149.5,30]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"Hamster Ear Shadow","parent":5,"ks":{"o":{"k":100},"r":{"k":-0.963},"p":{"k":[-154.694,26.679,0]},"a":{"k":[-157,27.5,0]},"s":{"k":[104.275,93.069,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[29,0],[0,0],[-8,1]],"o":[[-21.523,0],[0,0],[8,-1]],"v":[[-152,-5],[-164.5,24],[-149.5,30]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":4,"nm":"Hamster body","parent":12,"ks":{"o":{"k":100},"r":{"k":[{"t":12,"s":[8.584],"h":1},{"t":14,"s":[-10.034],"h":1},{"t":17,"s":[-40.207],"h":1},{"t":21,"s":[-87.752],"h":1},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":23,"s":[-145.07],"e":[-167.01]},{"t":24}]},"p":{"k":[{"t":0,"s":[2,-90,0],"h":1},{"t":2,"s":[2.5,-85.5,0],"h":1},{"t":4,"s":[0.5,-83.5,0],"h":1},{"t":6,"s":[3.5,-85,0],"h":1},{"t":8,"s":[2,-90,0],"h":1},{"t":10,"s":[2,-90,0],"h":1},{"t":12,"s":[0.5,-77.5,0],"h":1},{"t":14,"s":[14.5,-77.5,0],"h":1},{"t":17,"s":[27.5,-82,0],"h":1},{"t":19,"s":[51.5,-115,0],"h":1},{"t":21,"s":[58,-157,0],"h":1},{"t":22,"s":[49,-204,0],"h":1},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23,"s":[17.5,-255,0],"e":[-27.392,-283.797,0],"to":[-0.07200571149588,0.31202477216721,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24,"s":[-27.392,-283.797,0],"e":[-86.392,-302.797,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25,"s":[-86.392,-302.797,0],"e":[-151.392,-318.797,0],"to":[0,0,0],"ti":[0,0,0]},{"t":26}]},"a":{"k":[{"t":0,"s":[-30.288,211.389,0],"h":1},{"t":4,"s":[-30.288,211.389,0],"h":1},{"t":8,"s":[-30.288,211.389,0],"h":1},{"t":10,"s":[-30.288,211.389,0],"h":1},{"t":14,"s":[-30.288,211.389,0],"h":1},{"t":21,"s":[-30.288,211.389,0],"h":1}]},"s":{"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[43.244,61.063,100],"e":[43.244,61.063,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":20,"s":[43.244,61.063,100],"e":[39.047,52.56,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":21,"s":[39.047,52.56,100],"e":[6.02,11.614,100]},{"t":26}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[2578.08,-386.731]],"o":[[-2578.08,386.731]],"v":[[-289.431,-86.271]],"c":false}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"t":0,"s":[{"i":[[47.445,-1.185],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-20.782,-14.516],[-37.351,6.334],[4.898,34.805]],"o":[[-26.646,0.665],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[37.325,26.07],[48.373,-8.203],[-2.971,-21.114]],"v":[[-1.298,152.367],[-71.659,166.539],[-129.976,166.109],[-166.965,186.181],[-134.155,236.018],[-6.352,258.727],[69.26,193.139]],"c":true}],"h":1},{"t":2,"s":[{"i":[[54.31,-10.773],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[10.519,37.29]],"o":[[-26.145,5.186],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-9.936,-35.223]],"v":[[-11.785,153.627],[-66.574,165.073],[-126.098,163.935],[-166.649,187.851],[-128.179,233.592],[-6.985,255.387],[75.334,185.576]],"c":true}],"h":1},{"t":4,"s":[{"i":[[43.764,-15.484],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[9.237,37.628]],"o":[[-25.128,8.89],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-10.404,-42.383]],"v":[[-16.613,150.791],[-76.744,168.004],[-141.096,164.03],[-175.355,187.19],[-136.252,236.27],[-7.302,253.717],[84.555,177.636]],"c":true}],"h":1},{"t":6,"s":[{"i":[[43.764,-15.484],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[9.237,37.628]],"o":[[-25.128,8.89],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-10.404,-42.383]],"v":[[-19.343,147.703],[-66.574,165.073],[-126.098,163.935],[-166.649,187.851],[-128.179,233.592],[-6.985,255.387],[75.334,185.576]],"c":true}],"h":1},{"t":8,"s":[{"i":[[47.445,-1.185],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-20.782,-14.516],[-37.351,6.334],[4.898,34.805]],"o":[[-26.646,0.665],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[37.325,26.07],[48.373,-8.203],[-2.971,-21.114]],"v":[[-1.298,152.367],[-71.659,166.539],[-129.976,166.109],[-166.965,186.181],[-134.155,236.018],[-6.352,258.727],[69.26,193.139]],"c":true}],"h":1},{"t":10,"s":[{"i":[[47.445,-1.185],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-20.782,-14.516],[-37.351,6.334],[4.898,34.805]],"o":[[-26.646,0.665],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[37.325,26.07],[48.373,-8.203],[-2.971,-21.114]],"v":[[-1.298,152.367],[-71.659,166.539],[-129.976,166.109],[-166.965,186.181],[-134.155,236.018],[-6.352,258.727],[69.26,193.139]],"c":true}],"h":1},{"t":12,"s":[{"i":[[54.31,-10.773],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[10.519,37.29]],"o":[[-26.145,5.186],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-9.936,-35.223]],"v":[[-11.785,153.627],[-66.574,165.073],[-126.098,163.935],[-166.649,187.851],[-128.179,233.592],[-6.985,255.387],[75.334,185.576]],"c":true}],"h":1},{"t":14,"s":[{"i":[[43.764,-15.484],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[9.237,37.628]],"o":[[-25.128,8.89],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-10.404,-42.383]],"v":[[-16.613,150.791],[-76.744,168.004],[-141.096,164.03],[-175.355,187.19],[-136.252,236.27],[-7.302,253.717],[84.555,177.636]],"c":true}],"h":1},{"t":17,"s":[{"i":[[43.764,-15.484],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[9.237,37.628]],"o":[[-25.128,8.89],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-10.404,-42.383]],"v":[[-19.343,147.703],[-66.574,165.073],[-126.098,163.935],[-166.649,187.851],[-128.179,233.592],[-6.985,255.387],[75.334,185.576]],"c":true}],"h":1},{"t":19,"s":[{"i":[[47.445,-1.185],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-20.782,-14.516],[-37.351,6.334],[4.898,34.805]],"o":[[-26.646,0.665],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[37.325,26.07],[48.373,-8.203],[-2.971,-21.114]],"v":[[-1.298,152.367],[-71.659,166.539],[-129.976,166.109],[-166.965,186.181],[-134.155,236.018],[-6.352,258.727],[69.26,193.139]],"c":true}],"h":1},{"t":21,"s":[{"i":[[43.764,-15.484],[11.99,0.807],[28.309,-5.924],[1.39,-8.411],[-22.094,-12.429],[-37.351,6.334],[9.237,37.628]],"o":[[-25.128,8.89],[-16.683,-1.123],[-19.764,4.136],[-2.134,12.918],[42.252,23.77],[48.373,-8.203],[-10.404,-42.383]],"v":[[-19.343,147.703],[-66.574,165.073],[-126.098,163.935],[-166.649,187.851],[-128.179,233.592],[-6.985,255.387],[75.334,185.576]],"c":true}],"h":1}]},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[{"t":0,"s":[5.144,4.506],"h":1},{"t":4,"s":[5.144,4.506],"h":1},{"t":8,"s":[5.144,4.506],"h":1},{"t":10,"s":[5.144,4.506],"h":1},{"t":14,"s":[5.144,4.506],"h":1},{"t":19,"s":[5.144,4.506],"h":1}],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"R Front Leg","parent":7,"ks":{"o":{"k":100},"r":{"k":[{"t":0,"s":[1.826],"h":1},{"t":2,"s":[47.496],"h":1},{"t":4,"s":[89.735],"h":1},{"t":6,"s":[65.058],"h":1},{"t":8,"s":[3.302],"h":1},{"t":10,"s":[1.826],"h":1},{"t":12,"s":[76.182],"h":1},{"t":14,"s":[117.359],"h":1},{"t":17,"s":[-0.463],"h":1},{"t":19,"s":[3.302],"h":1},{"t":21,"s":[65.058],"h":1}]},"p":{"k":[{"t":0,"s":[-72.66,249.077,0],"h":1},{"t":2,"s":[-63.341,236.001,0],"h":1},{"t":4,"s":[-69.791,235.922,0],"h":1},{"t":6,"s":[-68.011,234,0],"h":1},{"t":8,"s":[-69.613,253.835,0],"h":1},{"t":10,"s":[-72.66,249.077,0],"h":1},{"t":12,"s":[-52.023,227.808,0],"h":1},{"t":14,"s":[-86.991,230.926,0],"h":1},{"t":17,"s":[-84.885,238.123,0],"h":1},{"t":19,"s":[-69.613,253.835,0],"h":1},{"t":21,"s":[-68.011,234,0],"h":1}]},"a":{"k":[160.519,57.01,0]},"s":{"k":[156.323,162.51,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[3.982,-8.932],[-15.673,-9.237],[-3.679,7.685],[6.49,10.307]],"o":[[0,0],[-1.539,3.453],[15.206,8.961],[2.239,-4.677],[-8.86,-14.071]],"v":[[149.396,37.163],[133.746,39.787],[146.035,62.546],[183.764,77.974],[163.256,53.025]],"c":true}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.86,0.86,0.86,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":9,"ty":4,"nm":"Wheel highlight","parent":12,"ks":{"o":{"k":100},"r":{"k":[{"t":-2.833,"s":[37.232],"h":1},{"t":0,"s":[-2.307],"h":1},{"t":2.834,"s":[34.084],"h":1},{"t":5.667,"s":[-2.307],"h":1},{"t":8.5,"s":[34.084],"h":1},{"t":11.334,"s":[-2.307],"h":1},{"t":14.167,"s":[34.084],"h":1},{"t":17.167,"s":[-62.962],"h":1},{"t":20.167,"s":[68.071],"h":1},{"t":23.1669921875,"s":[17.865],"h":1}]},"p":{"k":[{"t":-2.833,"s":[76,-60,0],"h":1},{"t":0,"s":[94,-115,0],"h":1},{"t":2.834,"s":[76,-60,0],"h":1},{"t":5.667,"s":[94,-115,0],"h":1},{"t":8.5,"s":[76,-60,0],"h":1},{"t":11.334,"s":[94,-115,0],"h":1},{"t":14.167,"s":[76,-60,0],"h":1},{"t":17.167,"s":[46,-196,0],"h":1},{"t":20.167,"s":[40,-27,0],"h":1},{"t":23.1669921875,"s":[83,-71,0],"h":1}]},"a":{"k":[86.628,-30.094,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"t":20,"s":[{"i":[[3.438,6.231],[0,0],[35,-59],[-12.657,25.314],[5.952,18.44]],"o":[[-5,2.5],[0,0],[9.5,4.5],[8.262,-16.525],[-2.111,-6.541]],"v":[[77.615,-78.687],[67.615,-73.687],[65.615,28.313],[83.615,13.813],[88.69,-52.75]],"c":true}],"h":1},{"t":22,"s":[{"i":[[3.406,6.174],[0,0],[24.904,-54.684],[-8.987,26.837],[2.756,7.378]],"o":[[-5,2.5],[0,0],[12.713,-0.302],[5.871,-17.533],[-2.384,-6.381]],"v":[[81.482,-64.194],[70.554,-59.568],[70.662,13.097],[89.975,-7.342],[88.575,-54.64]],"c":true}],"h":1},{"t":24,"s":[{"i":[[1.08,9.698],[0,0],[11.639,-33.004],[-1.654,-0.044],[0.081,7.875]],"o":[[-8.29,1.424],[0,0],[2.407,0.868],[2.74,-9.942],[-0.112,-10.92]],"v":[[89.954,-50.976],[80.801,-49.719],[74.929,-2.613],[84.513,-1.76],[91.385,-33.348]],"c":true}],"h":1}]},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":10,"ty":4,"nm":"Wheel highlight 2","parent":12,"ks":{"o":{"k":100},"r":{"k":[{"t":-2.833,"s":[-150.767],"h":1},{"t":0,"s":[-162.301],"h":1},{"t":2.834,"s":[-143.455],"h":1},{"t":5.667,"s":[-175.355],"h":1},{"t":8.5,"s":[-143.455],"h":1},{"t":11.334,"s":[-175.355],"h":1},{"t":14.167,"s":[-143.455],"h":1},{"t":17.167,"s":[-241.192],"h":1},{"t":20.167,"s":[-112.151],"h":1},{"t":23.1669921875,"s":[-152.9],"h":1}]},"p":{"k":[{"t":-2.833,"s":[-76,-164,0],"h":1},{"t":0,"s":[-79,-142,0],"h":1},{"t":2.834,"s":[-76,-164,0],"h":1},{"t":5.667,"s":[-89,-122,0],"h":1},{"t":8.5,"s":[-76,-164,0],"h":1},{"t":11.334,"s":[-89,-122,0],"h":1},{"t":14.167,"s":[-76,-164,0],"h":1},{"t":17.167,"s":[-46,-30,0],"h":1},{"t":20.167,"s":[-37,-196,0],"h":1},{"t":23.1669921875,"s":[-80,-164,0],"h":1}]},"a":{"k":[86.628,-30.094,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"t":17.167,"s":[{"i":[[16,29],[0,0],[-4.144,-15.386],[19.004,-32.035],[-12.657,25.314]],"o":[[-5,2.5],[0,0],[4.923,18.279],[9.5,4.5],[16,-32]],"v":[[78,-85],[68,-80],[79.037,-55.632],[66,22],[84,7.5]],"c":true}],"h":1},{"t":20.167,"s":[{"i":[[16,29],[0,0],[2.048,-14.956],[9.938,-16.753],[-10.944,26.1]],"o":[[-5,2.5],[0,0],[-1.574,11.493],[9.5,4.5],[9.594,-22.881]],"v":[[83.491,-71.968],[75.516,-63.984],[82.826,-32.047],[69.049,9.205],[87.426,-6.221]],"c":true}],"h":1},{"t":23.1669921875,"s":[{"i":[[5.776,19.004],[0,0],[2.048,-14.956],[9.938,-16.753],[-8.568,18.431]],"o":[[-5,2.5],[0,0],[-1.574,11.493],[9.5,4.5],[6.672,-14.353]],"v":[[85.549,-59.487],[76.071,-54.781],[81.365,-29.243],[72.402,-5.449],[88.373,-12.146]],"c":true}],"h":1}]},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"w":{"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.15,0.8,0.55,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"}],"ip":0,"op":27,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":11,"ty":4,"nm":"O Outlines 2","parent":13,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":3,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":6,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":7,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":8,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":11,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[251,287,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[251,287,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":22,"s":[251,287,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"t":23}]},"a":{"k":[1,-113,0]},"s":{"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[-0.331,-0.331,100],"e":[100,100,100]},{"t":3}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[39.88,0],[0,39.578],[-39.578,0],[0,-39.578]],"o":[[-39.578,0],[0,-39.578],[39.88,0],[0,39.578]],"v":[[0.76,-43.204],[-69.333,-113.297],[0.76,-183.389],[71.155,-113.297]],"c":true}},"nm":"O"},{"ty":"mm","mm":1,"nm":"Merge Paths 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,1,1,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"O"}],"ip":0,"op":38,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":12,"ty":4,"nm":"O Outlines","parent":13,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":3,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":6,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":7,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":8,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":11,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13,"s":[251,287,0],"e":[254,286,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[254,286,0],"e":[252.853,289.049,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":15,"s":[252.853,289.049,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":17,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[251,287,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[251,287,0],"e":[249.756,286.943,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[249.756,286.943,0],"e":[247.824,284.946,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":21,"s":[247.824,284.946,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":22,"s":[251,287,0],"e":[251,287,0],"to":[0,0,0],"ti":[0,0,0]},{"t":23}]},"a":{"k":[1,-113,0]},"s":{"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[-0.331,-0.331,100],"e":[100,100,100]},{"t":3}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-64.352,0],[0,64.352],[64.352,0],[0,-64.352]],"o":[[64.352,0],[0,-64.352],[-64.352,0],[0,64.352]],"v":[[0.76,3.021],[117.078,-113.297],[0.76,-229.614],[-115.558,-113.297]],"c":true}},"nm":"O"},{"ind":1,"ty":"sh","ks":{"k":{"i":[[39.88,0],[0,39.578],[-39.578,0],[0,-39.578]],"o":[[-39.578,0],[0,-39.578],[39.88,0],[0,39.578]],"v":[[0.76,-43.204],[-69.333,-113.297],[0.76,-183.389],[71.155,-113.297]],"c":true}},"nm":"O"},{"ty":"mm","mm":1,"nm":"Merge Paths 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0,0.01,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"O"}],"ip":0,"op":38,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":13,"ty":1,"nm":"ResizerTemp","parent":14,"ks":{"o":{"k":0},"r":{"k":0},"p":{"k":[26.6,35.7,0]},"a":{"k":[250,300,0]},"s":{"k":[10.5,10.5,100]}},"ao":0,"sw":500,"sh":600,"sc":"#ffffff","ip":0,"op":38,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":14,"ty":1,"nm":"White Solid 45","ks":{"o":{"k":0},"r":{"k":0},"p":{"k":[40,50,0]},"a":{"k":[28,35,0]},"s":{"k":[142.857,142.857,100]}},"ao":0,"sw":56,"sh":70,"sc":"#ffffff","ip":0,"op":38,"st":0,"bm":0,"sr":1}],"v":"4.4.26","ddd":0,"ip":0,"op":38,"fr":25,"w":80,"h":100}
|