diff --git a/App/Composition/ComposeTextViewController.swift b/App/Composition/ComposeTextViewController.swift index 868bccf34..8bca7defd 100644 --- a/App/Composition/ComposeTextViewController.swift +++ b/App/Composition/ComposeTextViewController.swift @@ -179,12 +179,13 @@ class ComposeTextViewController: ViewController { fileprivate var imageUploadProgress: Progress? fileprivate func submit() { - let overlay = MRProgressOverlayView.showOverlayAdded(to: viewToOverlay, title: submissionInProgressTitle, mode: .indeterminate, animated: true) - overlay?.tintColor = theme["tintColor"] + let loadingView = PostedTootLoadingView() + loadingView.backgroundColor = theme["backgroundColor"] + + view.addSubview(loadingView) imageUploadProgress = uploadImages(attachedTo: textView.attributedText, completion: { [weak self] (plainText, error) in if let error = error { - overlay?.dismiss(false) self?.enableEverything() diff --git a/App/Data Sources/ForumListDataSource.swift b/App/Data Sources/ForumListDataSource.swift index d93768de6..c5c4b7598 100644 --- a/App/Data Sources/ForumListDataSource.swift +++ b/App/Data Sources/ForumListDataSource.swift @@ -432,9 +432,9 @@ extension ForumListDataSource: UITableViewDataSource { return ForumListCell.ViewModel( backgroundColor: theme["listBackgroundColor"]!, expansion: .none, - expansionTintColor: theme["tintColor"]!, + expansionTintColor: theme["expansionTintColor"]!, favoriteStar: .isFavorite, - favoriteStarTintColor: theme["tintColor"]!, + favoriteStarTintColor: theme["favoriteStarTintColor"]!, forumName: NSAttributedString(string: forum.name ?? "", attributes: [ .font: UIFont.preferredFont(forTextStyle: .body), .foregroundColor: theme[color: "listTextColor"]!]), @@ -455,9 +455,9 @@ extension ForumListDataSource: UITableViewDataSource { return .canExpand } }(), - expansionTintColor: theme["tintColor"]!, + expansionTintColor: theme["expansionTintColor"]!, favoriteStar: forum.metadata.favorite ? .hidden : .canFavorite, - favoriteStarTintColor: theme["tintColor"]!, + favoriteStarTintColor: theme["favoriteStarTintColor"]!, forumName: NSAttributedString(string: forum.name ?? "", attributes: [ .font: UIFont.preferredFont(forTextStyle: .body), .foregroundColor: theme[color: "listTextColor"]!]), diff --git a/App/Data Sources/MessageListDataSource.swift b/App/Data Sources/MessageListDataSource.swift index bf5fe00fd..694f68b52 100644 --- a/App/Data Sources/MessageListDataSource.swift +++ b/App/Data Sources/MessageListDataSource.swift @@ -5,6 +5,7 @@ import AwfulCore import CoreData import UIKit +import HTMLReader private let Log = Logger.get() @@ -96,27 +97,69 @@ extension MessageListDataSource: UITableViewDataSource { private func viewModelForMessage(at indexPath: IndexPath) -> MessageListCell.ViewModel { let message = self.message(at: indexPath) let theme = Theme.defaultTheme() + + // Create Date Formatter + let dateFormatter = DateFormatter() + // Set Date/Time Style + dateFormatter.dateFormat = "d MMM" + + var sentDateRawFont: UIFont + var senderFont: UIFont + var subjectFont: UIFont + + if Theme.defaultTheme().roundedFonts { + sentDateRawFont = roundedFont(ofSize: 12, weight: .semibold) + senderFont = roundedFont(ofSize: 13, weight: .semibold) + subjectFont = roundedFont(ofSize: 17, weight: .regular) + } else { + sentDateRawFont = UIFont.systemFont(ofSize: 12) + senderFont = UIFont.systemFont(ofSize: 15, weight: .regular) + subjectFont = UIFont.systemFont(ofSize: 15, weight: .regular) + } + return MessageListCell.ViewModel( backgroundColor: theme["listBackgroundColor"]!, selectedBackgroundColor: theme["listSelectedBackgroundColor"]!, sender: NSAttributedString(string: message.fromUsername ?? "", attributes: [ - .font: UIFont.boldSystemFont(ofSize: UIFontDescriptor.preferredFontDescriptor(withTextStyle: UIFont.TextStyle.subheadline).pointSize), - .foregroundColor: theme[color: "listTextColor"]!]), + .font: senderFont, + .foregroundColor: theme[color: "listSecondaryTextColor"]!]), sentDate: message.sentDate ?? .distantPast, - sentDateAttributes: [ - .font: UIFont.preferredFontForTextStyle(.body, fontName: nil, sizeAdjustment: -2), - .foregroundColor: theme[color: "listTextColor"]!], + sentDateAttributes: [: +// .font: UIFont.preferredFontForTextStyle(.body, fontName: nil, sizeAdjustment: -2), +// .foregroundColor: theme[color: "listTextColor"]! + ], + sentDateRaw: NSAttributedString(string: dateFormatter.string(from: message.sentDate!), attributes: [ + .font: sentDateRawFont, + .foregroundColor: theme[color: "listSecondaryTextColor"]!]), subject: NSAttributedString(string: message.subject ?? "", attributes: [ - .font: UIFont.preferredFontForTextStyle(.body, fontName: nil, sizeAdjustment: -2), + .font: subjectFont, .foregroundColor: theme[color: "listTextColor"]!]), tagImage: .image(name: message.threadTag?.imageName, placeholder: .privateMessage), + tagOverlayImage: { if message.replied { - return UIImage(named: "pmreplied") + let image = UIImage(named: "pmreplied")? + .stroked(with: theme["listBackgroundColor"]!, thickness: 3, quality: 1) + .withRenderingMode(.alwaysTemplate) + + let imageView = UIImageView(image: image) + imageView.tintColor = theme["listBackgroundColor"]! + + return imageView } else if message.forwarded { - return UIImage(named: "pmforwarded") + let image = UIImage(named: "pmforwarded")? + .stroked(with: theme["listBackgroundColor"]!, thickness: 3, quality: 1) + .withRenderingMode(.alwaysTemplate) + + let imageView = UIImageView(image: image) + imageView.tintColor = theme["listBackgroundColor"]! + + return imageView } else if !message.seen { - return UIImage(named: "newpm") + let image = UIImage(named: "newpm") + let imageView = UIImageView(image: image) + + return imageView } else { return nil } diff --git a/App/Data Sources/ThreadListDataSource.swift b/App/Data Sources/ThreadListDataSource.swift index fb8c48674..5c2c0f7f9 100644 --- a/App/Data Sources/ThreadListDataSource.swift +++ b/App/Data Sources/ThreadListDataSource.swift @@ -148,9 +148,19 @@ extension ThreadListDataSource: UITableViewDataSource { return ThreadListCell.ViewModel( backgroundColor: theme["listBackgroundColor"]!, - pageCount: NSAttributedString(string: "\(thread.numberOfPages)", attributes: [ - .font: UIFont.preferredFontForTextStyle(.footnote, fontName: theme["listFontName"]), - .foregroundColor: theme[color: "listSecondaryTextColor"]!]), + pageCount: { + var pagecountFont: UIFont + if Theme.defaultTheme().roundedFonts { + pagecountFont = roundedFont(ofSize: 13, weight: .semibold) + } else { + pagecountFont = UIFont.systemFont(ofSize: 13, weight: .medium) + } + + return NSAttributedString(string: "\(thread.numberOfPages)", attributes: [ + /* thread list view grey page count text */ + .font: pagecountFont, + .foregroundColor: theme[color: "listSecondaryTextColor"]!]) + }(), pageIconColor: theme["threadListPageIconColor"]!, postInfo: { let text: String @@ -159,9 +169,18 @@ extension ThreadListDataSource: UITableViewDataSource { } else { text = String(format: LocalizedString("thread-list.posted-by"), thread.author?.username ?? "") + }/* killed by text */ + + var killedByFont: UIFont + + if Theme.defaultTheme().roundedFonts { + killedByFont = roundedFont(ofSize: 13, weight: .semibold) + } else { + killedByFont = UIFont.systemFont(ofSize: 13, weight: .medium) } + return NSAttributedString(string: text, attributes: [ - .font: UIFont.preferredFontForTextStyle(.footnote, fontName: theme["listFontName"]), + .font: killedByFont, .foregroundColor: theme[color: "listSecondaryTextColor"]!]) }(), ratingImage: { @@ -172,8 +191,16 @@ extension ThreadListDataSource: UITableViewDataSource { if let tweaks = tweaks, tweaks.showRatingsAsThreadTags { return nil } - - return thread.ratingImageName.flatMap { UIImage(named: $0) } + + return thread.ratingImageName.flatMap { + if $0 != "Vote0.0" { + return UIImage(named: "Vote0")! + .withTintColor(Theme.defaultTheme()["ratingIconEmptyColor"]!) + .mergeWith(topImage: UIImage(named: $0)!) + } + return UIImage(named: "Vote0")! + .withTintColor(Theme.defaultTheme()["ratingIconEmptyColor"]!) + } }(), secondaryTagImageName: { if !showsTagAndRating { @@ -194,9 +221,19 @@ extension ThreadListDataSource: UITableViewDataSource { return .image(name: thread.threadTag?.imageName, placeholder: placeholder) } }(), - title: NSAttributedString(string: thread.title ?? "", attributes: [ - .font: UIFont.preferredFontForTextStyle(.body, fontName: theme["listFontName"]), - .foregroundColor: theme[color: thread.closed ? "listSecondaryTextColor" : "listTextColor"]!]), + title: { + var threadTitleFont: UIFont + if Theme.defaultTheme().roundedFonts { + threadTitleFont = roundedFont(ofSize: 17, weight: .regular) + } else { + threadTitleFont = UIFont.systemFont(ofSize: 17, weight: .regular) + } + + return NSAttributedString(string: thread.title ?? "", attributes: [ + .font: threadTitleFont, + .foregroundColor: theme[color: thread.closed ? "listSecondaryTextColor" : "listTextColor"]!]) + }() + , unreadCount: { guard thread.beenSeen else { return NSAttributedString() } let color: UIColor @@ -213,9 +250,16 @@ extension ThreadListDataSource: UITableViewDataSource { case .none: color = theme["unreadBadgeBlueColor"]! } } + var unreadCountFont: UIFont + if Theme.defaultTheme().roundedFonts { + unreadCountFont = roundedFont(ofSize: 13, weight: .semibold) + } else { + unreadCountFont = UIFont.systemFont(ofSize: 13, weight: .semibold) + } + return NSAttributedString(string: "\(thread.unreadPosts)", attributes: [ - .font: UIFont.preferredFontForTextStyle(.caption1, fontName: theme["listFontName"], sizeAdjustment: 2), - .foregroundColor: color]) + .font: unreadCountFont, + .foregroundColor: color]) }()) } diff --git a/App/Extensions/UIFont+MonospacedDigits.swift b/App/Extensions/UIFont+MonospacedDigits.swift index 085d67e41..e489c05af 100644 --- a/App/Extensions/UIFont+MonospacedDigits.swift +++ b/App/Extensions/UIFont+MonospacedDigits.swift @@ -19,3 +19,12 @@ extension UIFontDescriptor { return addingAttributes([.featureSettings: featureSettings]) } } + +public func roundedFont(ofSize fontSize: CGFloat, weight: UIFont.Weight) -> UIFont { + // Will be SF Compact or standard SF in case of failure. + if let descriptor = UIFont.systemFont(ofSize: fontSize, weight: weight).fontDescriptor.withDesign(.rounded) { + return UIFont(descriptor: descriptor, size: fontSize) + } else { + return UIFont.systemFont(ofSize: fontSize, weight: weight) + } +} diff --git a/App/Extensions/UIKit.swift b/App/Extensions/UIKit.swift index 76f6aed4d..05debc27a 100644 --- a/App/Extensions/UIKit.swift +++ b/App/Extensions/UIKit.swift @@ -181,21 +181,32 @@ extension UIImage { return UIImage(cgImage: imageBitmapContext, scale: self.scale, orientation: UIImage.Orientation.up) } } - +// THREAD TITLE extension UINavigationItem { /// A replacement label for the title that shows two lines on iPhone. var titleLabel: UILabel { if let label = titleView as? UILabel { return label } - let label = UILabel(frame: CGRect(x: 0, y: 0, width: 375, height: 44)) - label.autoresizingMask = [.flexibleWidth, .flexibleHeight] + let label = UILabel(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.minY, height: 44)) + // label.autoresizingMask = [.flexibleWidth, .flexibleHeight] label.textAlignment = .center - label.textColor = .white + label.textColor = Theme.defaultTheme()["navigationBarTextColor"]! label.accessibilityTraits.insert(UIAccessibilityTraits.header) + + var font: UIFont + if Theme.defaultTheme().roundedFonts { + font = roundedFont(ofSize: 16, weight: .medium) + } else { + font = UIFont.systemFont(ofSize: 13, weight: .medium) + } + switch UIDevice.current.userInterfaceIdiom { + /* thread title posts view text */ case .pad: - label.font = UIFont.systemFont(ofSize: 17) + label.font = font +// label.font = UIFont.systemFont(ofSize: 17) default: - label.font = UIFont.systemFont(ofSize: 13) + label.font = font +// label.font = UIFont.systemFont(ofSize: 13) label.numberOfLines = 2 } titleView = label @@ -395,3 +406,112 @@ extension UIViewController { return nil } } + +public extension UIImage { + + /** + Returns the flat colorized version of the image, or self when something was wrong + - Parameters: + - color: The colors to user. By defaut, uses the ``UIColor.white` + - Returns: the flat colorized version of the image, or the self if something was wrong + */ + func colorized(with color: UIColor = .white) -> UIImage { + UIGraphicsBeginImageContextWithOptions(size, false, scale) + + defer { + UIGraphicsEndImageContext() + } + + guard let context = UIGraphicsGetCurrentContext(), let cgImage = cgImage else { return self } + + + let rect = CGRect(x: 0, y: 0, width: size.width, height: size.height) + + color.setFill() + context.translateBy(x: 0, y: size.height) + context.scaleBy(x: 1.0, y: -1.0) + context.clip(to: rect, mask: cgImage) + context.fill(rect) + + guard let colored = UIGraphicsGetImageFromCurrentImageContext() else { return self } + + return colored + } + + /** + Returns the stroked version of the fransparent image with the given stroke color and the thickness. + - Parameters: + - color: The colors to user. By defaut, uses the ``UIColor.white` + - thickness: the thickness of the border. Default to `2` + - quality: The number of degrees (out of 360): the smaller the best, but the slower. Defaults to `10`. + - Returns: the stroked version of the image, or self if something was wrong + */ + + func stroked(with color: UIColor = .white, thickness: CGFloat = 2, quality: CGFloat = 10) -> UIImage { + + guard let cgImage = cgImage else { return self } + + // Colorize the stroke image to reflect border color + let strokeImage = colorized(with: color) + + guard let strokeCGImage = strokeImage.cgImage else { return self } + + /// Rendering quality of the stroke + let step = quality == 0 ? 10 : abs(quality) + + let oldRect = CGRect(x: thickness, y: thickness, width: size.width, height: size.height).integral + let newSize = CGSize(width: size.width + 2 * thickness, height: size.height + 2 * thickness) + let translationVector = CGPoint(x: thickness, y: 0) + + + UIGraphicsBeginImageContextWithOptions(newSize, false, scale) + + guard let context = UIGraphicsGetCurrentContext() else { return self } + + defer { + UIGraphicsEndImageContext() + } + context.translateBy(x: 0, y: newSize.height) + context.scaleBy(x: 1.0, y: -1.0) + context.interpolationQuality = .high + + for angle: CGFloat in stride(from: 0, to: 360, by: step) { + let vector = translationVector.rotated(around: .zero, byDegrees: angle) + let transform = CGAffineTransform(translationX: vector.x, y: vector.y) + + context.concatenate(transform) + + context.draw(strokeCGImage, in: oldRect) + + let resetTransform = CGAffineTransform(translationX: -vector.x, y: -vector.y) + context.concatenate(resetTransform) + } + + context.draw(cgImage, in: oldRect) + + guard let stroked = UIGraphicsGetImageFromCurrentImageContext() else { return self } + + return stroked + } +} + + +extension CGPoint { + /** + Rotates the point from the center `origin` by `byDegrees` degrees along the Z axis. + - Parameters: + - origin: The center of he rotation; + - byDegrees: Amount of degrees to rotate around the Z axis. + - Returns: The rotated point. + */ + func rotated(around origin: CGPoint, byDegrees: CGFloat) -> CGPoint { + let dx = x - origin.x + let dy = y - origin.y + let radius = sqrt(dx * dx + dy * dy) + let azimuth = atan2(dy, dx) // in radians + let newAzimuth = azimuth + byDegrees * .pi / 180.0 // to radians + let x = origin.x + radius * cos(newAzimuth) + let y = origin.y + radius * sin(newAzimuth) + return CGPoint(x: x, y: y) + } +} diff --git a/App/Main/RootViewControllerStack.swift b/App/Main/RootViewControllerStack.swift index a61698dfe..784254800 100644 --- a/App/Main/RootViewControllerStack.swift +++ b/App/Main/RootViewControllerStack.swift @@ -236,6 +236,18 @@ extension RootViewControllerStack { // This ugliness fixes the resulting navigation controller's toolbar appearing empty despite having the correct items. (i.e. none of the items' views are in the toolbar's view hierarchy.) Presumably if some fix is discovered for the grey screen mentioned atop kindaFixReallyAnnoyingSplitViewHideSidebarInLandscapeBehavior, I think this will be fixed too. Or at least it's worth testing out. let toolbar = primaryNavigationController.toolbar + + if #available(iOS 14.0, *) { + let barAppearance = UIToolbarAppearance() + barAppearance.backgroundColor = .clear + + // below two lines prevent weird unwanted grey bar from appearing. can be confused with "hairline" border! + barAppearance.shadowImage = UIImage() + barAppearance.backgroundImage = UIImage() + + toolbar?.standardAppearance = barAppearance + } + let items = toolbar?.items toolbar?.items = nil toolbar?.items = items diff --git a/App/Misc/HTMLRenderingHelpers.swift b/App/Misc/HTMLRenderingHelpers.swift index 919f445c4..48c1aa026 100644 --- a/App/Misc/HTMLRenderingHelpers.swift +++ b/App/Misc/HTMLRenderingHelpers.swift @@ -30,6 +30,31 @@ extension HTMLDocument { } } + /** + Modifies the document in place, adding an additional element to quote blocks for quote-post.png. + This has been done to facilitate more styling than is possible with background-image in css, namely color changes. + The regular CSS files contain the styling required for this feature, applied against this injected element. + */ + func addQuoteIcons() { + for div in nodes(matchingSelector: ".bbc-block") { + let quoteposticon = HTMLElement( + tagName: "span", + attributes: [ + "class": "quotepost-span" + ]) + div.addChild(quoteposticon) + + let quoteHeaderSpan = HTMLElement(tagName: "span", attributes: [ + "class": "quoteheader"]) + + for quoteheaderLink in div.nodes(matchingSelector: ".quote_link") { + let link = HTMLDocument(string: quoteheaderLink.parentElement!.innerHTML) + quoteHeaderSpan.addChild(link) + div.replace(child: quoteheaderLink.parent!, with: quoteHeaderSpan) + } + } + } + /** Modifies the document in place, adding an additional class to quote blocks if the quoted post ID ends in 420. The regular CSS files contain the styling required for this feature, applied against this injected class. diff --git a/App/Model Presentation/Thread+Presentation.swift b/App/Model Presentation/Thread+Presentation.swift index eeed9b9f1..d6fd7ac7c 100644 --- a/App/Model Presentation/Thread+Presentation.swift +++ b/App/Model Presentation/Thread+Presentation.swift @@ -14,7 +14,7 @@ extension AwfulThread { var ratingImageName: String? { let scanner = Scanner(string: ratingImageBasename ?? "") _ = scanner.scanUpToCharacters(from: .decimalDigits) - return scanner.scanCharacters(from: .decimalDigits).map { "rating\($0)" } + return scanner.scanCharacters(from: .decimalDigits).map { "Vote\($0)" } } /// Name of an image suitable for showing the rating as the thread tag itself. diff --git a/App/Navigation/NavigationBar.swift b/App/Navigation/NavigationBar.swift index 569ae9493..81901b85c 100644 --- a/App/Navigation/NavigationBar.swift +++ b/App/Navigation/NavigationBar.swift @@ -7,8 +7,11 @@ import UIKit /// Long-tapping the back button of an AwfulNavigationBar will pop its navigation controller to its root view controller. final class NavigationBar: UINavigationBar { - private lazy var bottomBorder: HairlineView = { + let theme = Theme.defaultTheme() + + lazy var bottomBorder: HairlineView = { let bottomBorder = HairlineView() + bottomBorder.backgroundColor = theme["navigationBarTintColor"] bottomBorder.translatesAutoresizingMaskIntoConstraints = false addSubview(bottomBorder, constrainEdges: [.bottom, .left, .right]) return bottomBorder @@ -24,25 +27,23 @@ final class NavigationBar: UINavigationBar { // For whatever reason, translucent navbars with a barTintColor do not necessarily blur their backgrounds. An iPad 3, for example, blurs a bar without a barTintColor but is simply semitransparent with a barTintColor. The semitransparent, non-blur effect looks awful, so just turn it off. isTranslucent = false + + let textColor: UIColor = Theme.defaultTheme()["navigationBarTextColor"]! + + var font: UIFont + if Theme.defaultTheme().roundedFonts { + font = roundedFont(ofSize: 17, weight: .medium) + } else { + font = UIFont.systemFont(ofSize: 17, weight: .medium) + } - // Setting the barStyle to UIBarStyleBlack results in an appropriate status bar style. - barStyle = .black - - backIndicatorImage = UIImage(named: "back") - backIndicatorTransitionMaskImage = UIImage(named: "back") - - titleTextAttributes = [.font: UIFont.systemFont(ofSize: 17, weight: .regular)] - + titleTextAttributes = [ + .font: font, + NSAttributedString.Key.foregroundColor: textColor + ] + addGestureRecognizer(UILongPressGestureRecognizer(target: self, action: #selector(didLongPress))) - - if #available(iOS 15.0, *) { - // Fix odd grey navigation bar background when scrolled to top on iOS 15. - scrollEdgeAppearance = standardAppearance - - //Set the status bar to use white text - //TODO: We should compute this or save it in the theme plist, but currently there isn't a single theme where the statusbar shouldn't be white. - overrideUserInterfaceStyle = .dark - } + } required init?(coder: NSCoder) { diff --git a/App/Navigation/NavigationController.swift b/App/Navigation/NavigationController.swift index c543e9c8f..daf89612d 100644 --- a/App/Navigation/NavigationController.swift +++ b/App/Navigation/NavigationController.swift @@ -97,18 +97,36 @@ final class NavigationController: UINavigationController, Themeable { awfulNavigationBar.layer.shadowOpacity = Float(theme[double: "navigationBarShadowOpacity"] ?? 1) awfulNavigationBar.tintColor = theme["navigationBarTextColor"] - if #available(iOS 15.0, *) { - // Fix odd grey navigation bar background when scrolled to top on iOS 15. - let appearance = UINavigationBarAppearance() - appearance.configureWithOpaqueBackground() - appearance.backgroundColor = theme["navigationBarTintColor"] - - let textColor: UIColor? = theme["navigationBarTextColor"] - appearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: textColor!] - - navigationBar.standardAppearance = appearance; - navigationBar.scrollEdgeAppearance = navigationBar.standardAppearance + var font: UIFont + if Theme.defaultTheme().roundedFonts { + font = roundedFont(ofSize: 17, weight: .semibold) + } else { + font = UIFont.systemFont(ofSize: 17, weight: .medium) } + + + // Fix odd grey navigation bar background when scrolled to top on iOS 15. + let appearance = UINavigationBarAppearance() + appearance.configureWithOpaqueBackground() + appearance.shadowColor = nil + appearance.shadowImage = nil + appearance.backgroundColor = theme["navigationBarTintColor"] + + let textColor: UIColor? = theme["navigationBarTextColor"] + appearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: textColor!, + NSAttributedString.Key.font: font + ] + + if theme["keyboardAppearance"] == "Light" { + overrideUserInterfaceStyle = .light + } else { + overrideUserInterfaceStyle = .dark + } + + navigationBar.compactAppearance = appearance + navigationBar.standardAppearance = appearance + navigationBar.scrollEdgeAppearance = appearance + } override func encodeRestorableState(with coder: NSCoder) { @@ -238,3 +256,33 @@ extension NavigationController: UIViewControllerRestoration { return nav } } + + +extension UIViewController { + + func addBackButton() { + let btnLeftMenu: UIButton = UIButton() + let image = UIImage(named: "back")! + .withRenderingMode(.alwaysTemplate) + btnLeftMenu.setImage(image, for: .normal) + btnLeftMenu.setTitle("", for: .normal); + btnLeftMenu.imageEdgeInsets = UIEdgeInsets(top: 0, left: -2, bottom: 0, right: 0) + btnLeftMenu.titleEdgeInsets = UIEdgeInsets(top: 0, left: -2, bottom: 0, right: 0) + btnLeftMenu.sizeToFit() + + btnLeftMenu.addTarget(self, action: #selector(backButtonClick(sender:)), for: .touchUpInside) + let barButton = UIBarButtonItem(customView: btnLeftMenu) + + self.navigationItem.leftBarButtonItem = barButton + + } + + @objc func backButtonClick(sender : UIButton) { + if UserDefaults.standard.enableHaptics { + UIImpactFeedbackGenerator(style: .medium).impactOccurred() + } + print("bzzt back button pressed") + self.navigationController?.popViewController(animated: true); + } +} + diff --git a/App/Posts/ReplyWorkspace.swift b/App/Posts/ReplyWorkspace.swift index 69cef00ba..07b515846 100644 --- a/App/Posts/ReplyWorkspace.swift +++ b/App/Posts/ReplyWorkspace.swift @@ -220,13 +220,11 @@ final class ReplyWorkspace: NSObject { @objc fileprivate func didTapPost(_ sender: UIBarButtonItem) { saveTextToDraft() - let progressView = MRProgressOverlayView.showOverlayAdded(to: viewController.view.window, animated: true) - progressView?.tintColor = viewController.view.tintColor - progressView?.titleLabelText = draft.progressViewTitle + let loadingView = PostedTootLoadingView() + + viewController.view.addSubview(loadingView) let submitProgress = draft.submit { [unowned self] error in - progressView?.dismiss(true) - if let error = error { if (error as? CocoaError)?.code != .userCancelled { let alert: UIAlertController @@ -249,14 +247,10 @@ final class ReplyWorkspace: NSObject { } } self.submitProgress = submitProgress - - progressView?.stopBlock = { _ in - submitProgress.cancel() } var progressObservations: [NSKeyValueObservation] = [] let changeHandler: (Progress) -> Void = { progress in if progress.fractionCompleted >= 1 || progress.isCancelled { - progressView?.stopBlock = nil progressObservations.forEach { $0.invalidate() } progressObservations.removeAll() } diff --git a/App/Resources/Assets.xcassets/Colors/Contents.json b/App/Resources/Assets.xcassets/Colors/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/App/Resources/Assets.xcassets/Colors/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/Contents.json b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchNavigationBar.colorset/Contents.json b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/backgroundColor.colorset/Contents.json similarity index 76% rename from App/Resources/Assets.xcassets/Launch Screen/LaunchNavigationBar.colorset/Contents.json rename to App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/backgroundColor.colorset/Contents.json index 9c179b1e8..03486b9f6 100644 --- a/App/Resources/Assets.xcassets/Launch Screen/LaunchNavigationBar.colorset/Contents.json +++ b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/backgroundColor.colorset/Contents.json @@ -5,9 +5,9 @@ "color-space" : "srgb", "components" : { "alpha" : "1.000", - "blue" : "0xB1", - "green" : "0x83", - "red" : "0x14" + "blue" : "0.902", + "green" : "0.902", + "red" : "0.902" } }, "idiom" : "universal" @@ -23,9 +23,9 @@ "color-space" : "srgb", "components" : { "alpha" : "1.000", - "blue" : "0x70", - "green" : "0x4F", - "red" : "0x0F" + "blue" : "0.902", + "green" : "0.902", + "red" : "0.902" } }, "idiom" : "universal" diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.colorset/Contents.json b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/tintColor.colorset/Contents.json similarity index 76% rename from App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.colorset/Contents.json rename to App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/tintColor.colorset/Contents.json index 460f528c9..cc85922b2 100644 --- a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.colorset/Contents.json +++ b/App/Resources/Assets.xcassets/Colors/SpankyKongLightTheme/tintColor.colorset/Contents.json @@ -5,9 +5,9 @@ "color-space" : "srgb", "components" : { "alpha" : "1.000", - "blue" : "0xF3", - "green" : "0xF3", - "red" : "0xF4" + "blue" : "0xFF", + "green" : "0x66", + "red" : "0x00" } }, "idiom" : "universal" @@ -23,9 +23,9 @@ "color-space" : "srgb", "components" : { "alpha" : "1.000", - "blue" : "0x06", - "green" : "0x06", - "red" : "0x06" + "blue" : "0xFF", + "green" : "0x66", + "red" : "0x00" } }, "idiom" : "universal" diff --git a/App/Resources/Assets.xcassets/Empty Tags/Contents.json b/App/Resources/Assets.xcassets/Empty Tags/Contents.json index da4a164c9..73c00596a 100644 --- a/App/Resources/Assets.xcassets/Empty Tags/Contents.json +++ b/App/Resources/Assets.xcassets/Empty Tags/Contents.json @@ -1,6 +1,6 @@ { "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/Contents.json b/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/Contents.json index 5e80c128c..8651056be 100644 --- a/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/Contents.json @@ -6,19 +6,19 @@ }, { "idiom" : "universal", - "filename" : "empty-pm-tag@2x.png", "scale" : "2x" }, { + "filename" : "empty-pm-tag@3x(1).png", "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "original" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@2x.png b/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@2x.png deleted file mode 100644 index f950269f1..000000000 Binary files a/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@2x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@3x(1).png b/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@3x(1).png new file mode 100644 index 000000000..cac06bd47 Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/empty-pm-tag.imageset/empty-pm-tag@3x(1).png differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/Contents.json b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/Contents.json index 4e9a4f279..1dc97ebaf 100644 --- a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/Contents.json @@ -1,24 +1,26 @@ { "images" : [ { + "filename" : "EmptyThreadTag@3x(1)-2.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "EmptyThreadTag@3x(1)-1.png", "idiom" : "universal", - "filename" : "empty-thread-tag@2x.png", "scale" : "2x" }, { + "filename" : "EmptyThreadTag@3x(1).png", "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "original" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-1.png b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-1.png new file mode 100644 index 000000000..addf9334b Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-1.png differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-2.png b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-2.png new file mode 100644 index 000000000..addf9334b Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1)-2.png differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1).png b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1).png new file mode 100644 index 000000000..addf9334b Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/EmptyThreadTag@3x(1).png differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/empty-thread-tag@2x.png b/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/empty-thread-tag@2x.png deleted file mode 100644 index 0b6ecdb5f..000000000 Binary files a/App/Resources/Assets.xcassets/Empty Tags/empty-thread-tag.imageset/empty-thread-tag@2x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/Contents.json b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/Contents.json new file mode 100644 index 000000000..2f97b1bdf --- /dev/null +++ b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "SquareBG@3x(1).png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/SquareBG@3x(1).png b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/SquareBG@3x(1).png new file mode 100644 index 000000000..c885ba59e Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-background.imageset/SquareBG@3x(1).png differ diff --git a/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/Contents.json b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/Contents.json new file mode 100644 index 000000000..a4a1fef0b --- /dev/null +++ b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "border.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/border.png b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/border.png new file mode 100644 index 000000000..35ab00bd7 Binary files /dev/null and b/App/Resources/Assets.xcassets/Empty Tags/thread-tag-border.imageset/border.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/Contents.json b/App/Resources/Assets.xcassets/Forum Lists/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/App/Resources/Assets.xcassets/Forum Lists/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/Contents.json b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/Contents.json index 5311df372..f7f6a0f70 100644 --- a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/Contents.json @@ -1,25 +1,26 @@ { "images" : [ { + "filename" : "forum-arrow-down@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "forum-arrow-down@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "forum-arrow-down@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@1x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@1x.png new file mode 100644 index 000000000..a1b46da9a Binary files /dev/null and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@1x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@2x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@2x.png index 7f39e71e5..11ef782a6 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@2x.png and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@2x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@3x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@3x.png index 2f1d8bb97..04c5b2c91 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@3x.png and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-down.imageset/forum-arrow-down@3x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/Contents.json b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/Contents.json index 16136161b..b28f76c21 100644 --- a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/Contents.json @@ -1,23 +1,23 @@ { "images" : [ { + "filename" : "forum-arrow-right@1x.png", "idiom" : "universal", - "scale" : "1x", - "filename" : "forum-arrow-right@1x.png" + "scale" : "1x" }, { + "filename" : "forum-arrow-right@2x.png", "idiom" : "universal", - "scale" : "2x", - "filename" : "forum-arrow-right@2x.png" + "scale" : "2x" }, { + "filename" : "forum-arrow-right@3x.png", "idiom" : "universal", - "scale" : "3x", - "filename" : "forum-arrow-right@3x.png" + "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@1x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@1x.png index d0264a50e..42ca47eb1 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@1x.png and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@1x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@2x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@2x.png index 8bc2f5eb9..f383403ec 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@2x.png and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@2x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@3x.png b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@3x.png index 64ee5d313..2eb952fb8 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@3x.png and b/App/Resources/Assets.xcassets/Forum Lists/forum-arrow-right.imageset/forum-arrow-right@3x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/Contents.json b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/Contents.json index bac35e0b8..9266c409c 100644 --- a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/Contents.json @@ -1,25 +1,26 @@ { "images" : [ { + "filename" : "star-off@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "star-off@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "star-off@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@1x.png b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@1x.png new file mode 100644 index 000000000..759682f60 Binary files /dev/null and b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@1x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@2x.png b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@2x.png index b8b920a55..d431f4c63 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@2x.png and b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@2x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@3x.png b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@3x.png index eb4b2f2d3..4c80f125c 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@3x.png and b/App/Resources/Assets.xcassets/Forum Lists/star-off.imageset/star-off@3x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/Contents.json b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/Contents.json index 73cd7fca7..9db3041b4 100644 --- a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "star-on@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "star-on@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "star-on@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@1x.png b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@1x.png new file mode 100644 index 000000000..37a260fad Binary files /dev/null and b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@1x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@2x.png b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@2x.png index 0d0980d80..bb9b38015 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@2x.png and b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@2x.png differ diff --git a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@3x.png b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@3x.png index 22700b446..58c532e72 100644 Binary files a/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@3x.png and b/App/Resources/Assets.xcassets/Forum Lists/star-on.imageset/star-on@3x.png differ diff --git a/App/Resources/Assets.xcassets/Icon Action Items/copy.imageset/Contents.json b/App/Resources/Assets.xcassets/Icon Action Items/copy.imageset/Contents.json new file mode 100644 index 000000000..acef2dde1 --- /dev/null +++ b/App/Resources/Assets.xcassets/Icon Action Items/copy.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "1x" + }, + { + "filename" : "copy-iphone@2x.png", + "idiom" : "iphone", + "scale" : "2x" + }, + { + "filename" : "copy-iphone@3x.png", + "idiom" : "iphone", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/Contents.json b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/Contents.json new file mode 100644 index 000000000..a6cea7024 --- /dev/null +++ b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "rainbow@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "rainbow@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "rainbow@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@1x.png b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@1x.png new file mode 100644 index 000000000..9633dfa5b Binary files /dev/null and b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@1x.png differ diff --git a/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@2x.png b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@2x.png new file mode 100644 index 000000000..6f0f67d66 Binary files /dev/null and b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@2x.png differ diff --git a/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@3x.png b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@3x.png new file mode 100644 index 000000000..d1c887abb Binary files /dev/null and b/App/Resources/Assets.xcassets/Icon Action Items/rainbow.imageset/rainbow@3x.png differ diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/Contents.json b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/Contents.json new file mode 100644 index 000000000..90112ac3f --- /dev/null +++ b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/Contents.json @@ -0,0 +1,83 @@ +{ + "images" : [ + { + "filename" : "LaunchBackgroundLight.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "filename" : "LaunchBackgroundLight-1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "LaunchBackgroundDark.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "light" + } + ], + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundDark.png b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundDark.png new file mode 100644 index 000000000..62b9a0710 Binary files /dev/null and b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundDark.png differ diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight-1.png b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight-1.png new file mode 100644 index 000000000..f514b1179 Binary files /dev/null and b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight-1.png differ diff --git a/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight.png b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight.png new file mode 100644 index 000000000..f514b1179 Binary files /dev/null and b/App/Resources/Assets.xcassets/Launch Screen/LaunchBackground.imageset/LaunchBackgroundLight.png differ diff --git a/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/Contents.json b/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/Contents.json index 1bb27e2f2..8fae7a5e0 100644 --- a/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/Contents.json @@ -1,9 +1,9 @@ { "images" : [ { + "filename" : "title-probation.png", "idiom" : "universal", - "scale" : "1x", - "filename" : "title-probation.png" + "scale" : "1x" }, { "idiom" : "universal", @@ -15,7 +15,7 @@ } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/title-probation.png b/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/title-probation.png index 87966a951..34c5f9078 100644 Binary files a/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/title-probation.png and b/App/Resources/Assets.xcassets/Leper's Colony/title-probation.imageset/title-probation.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/Contents.json b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/Contents.json index f69d39780..b256b02c1 100644 --- a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/Contents.json @@ -1,21 +1,23 @@ { "images" : [ { + "filename" : "no-filter-icon@1x.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "no-filter-icon@2x.png", "idiom" : "universal", - "scale" : "2x", - "filename" : "no-filter-icon@2x.png" + "scale" : "2x" }, { + "filename" : "no-filter-icon@3x.png", "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@1x.png b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@1x.png new file mode 100644 index 000000000..3abbb2824 Binary files /dev/null and b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@1x.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@2x.png b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@2x.png index fa971646b..c9243d1e9 100644 Binary files a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@2x.png and b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@2x.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@3x.png b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@3x.png new file mode 100644 index 000000000..29cf772ee Binary files /dev/null and b/App/Resources/Assets.xcassets/Post Icon Picker/no-filter-icon.imageset/no-filter-icon@3x.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/BlueCheckSelected@2x.png b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/BlueCheckSelected@2x.png deleted file mode 100644 index e5cab91cc..000000000 Binary files a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/BlueCheckSelected@2x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/Contents.json b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/Contents.json index 86e314aec..629379256 100644 --- a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/Contents.json @@ -1,21 +1,23 @@ { "images" : [ { + "filename" : "mini_tick@1x.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "mini_tick@2x.png", "idiom" : "universal", - "scale" : "2x", - "filename" : "BlueCheckSelected@2x.png" + "scale" : "2x" }, { + "filename" : "mini_tick@3x.png", "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@1x.png b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@1x.png new file mode 100644 index 000000000..a4618fdd7 Binary files /dev/null and b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@1x.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@2x.png b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@2x.png new file mode 100644 index 000000000..8247d750a Binary files /dev/null and b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@2x.png differ diff --git a/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@3x.png b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@3x.png new file mode 100644 index 000000000..6460690b3 Binary files /dev/null and b/App/Resources/Assets.xcassets/Post Icon Picker/selected-tick-icon.imageset/mini_tick@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Contents.json b/App/Resources/Assets.xcassets/Posts View/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Contents.json new file mode 100644 index 000000000..d023ee6bf --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote0@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote0@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote0@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@1x.png new file mode 100644 index 000000000..bef3c1cff Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@2x.png new file mode 100644 index 000000000..b182abef8 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@3x.png new file mode 100644 index 000000000..f8ff5a7a7 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote0.imageset/Vote0@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Contents.json new file mode 100644 index 000000000..68b3b6d44 --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote1@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote1@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote1@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@1x.png new file mode 100644 index 000000000..7c1e690a2 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@2x.png new file mode 100644 index 000000000..1d26dc958 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@3x.png new file mode 100644 index 000000000..ff0dcefee Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote1.imageset/Vote1@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Contents.json new file mode 100644 index 000000000..f3f73d1f3 --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote2@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote2@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote2@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@1x.png new file mode 100644 index 000000000..f18d20c68 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@2x.png new file mode 100644 index 000000000..451cd39fe Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@3x.png new file mode 100644 index 000000000..233e1e574 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote2.imageset/Vote2@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Contents.json new file mode 100644 index 000000000..b47b16a2e --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote3@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote3@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote3@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@1x.png new file mode 100644 index 000000000..8a05f77ad Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@2x.png new file mode 100644 index 000000000..7a48599df Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@3x.png new file mode 100644 index 000000000..c8b0bf079 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote3.imageset/Vote3@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Contents.json new file mode 100644 index 000000000..8e05f0772 --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote4@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote4@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote4@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@1x.png new file mode 100644 index 000000000..069bad76b Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@2x.png new file mode 100644 index 000000000..a06dccbc0 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@3x.png new file mode 100644 index 000000000..e03af7b0a Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote4.imageset/Vote4@3x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Contents.json b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Contents.json new file mode 100644 index 000000000..f471311b8 --- /dev/null +++ b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Vote5@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vote5@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vote5@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@1x.png b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@1x.png new file mode 100644 index 000000000..9abba39a3 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@1x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@2x.png b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@2x.png new file mode 100644 index 000000000..7a30954e5 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@2x.png differ diff --git a/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@3x.png b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@3x.png new file mode 100644 index 000000000..6e51dcac5 Binary files /dev/null and b/App/Resources/Assets.xcassets/Posts View/Vote5.imageset/Vote5@3x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/Contents.json b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/Contents.json index 27f5696ff..2a09bed4b 100644 --- a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "pm-icon@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "newpm@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "newpm@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@2x.png b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@2x.png index 227aced12..f0c21199a 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@2x.png and b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@2x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@3x.png b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@3x.png index e70ac8786..249efff3a 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@3x.png and b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/newpm@3x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/pm-icon@1x.png b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/pm-icon@1x.png new file mode 100644 index 000000000..048be6e1d Binary files /dev/null and b/App/Resources/Assets.xcassets/Private Messages/newpm.imageset/pm-icon@1x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/Contents.json b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/Contents.json index b450f2270..149bac4a1 100644 --- a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "pmforwarded@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "pmforwarded@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "pmforwarded@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@1x.png b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@1x.png new file mode 100644 index 000000000..03c0b01a4 Binary files /dev/null and b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@1x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@2x.png b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@2x.png index d15fbab27..9f08de526 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@2x.png and b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@2x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@3x.png b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@3x.png index 20c91497d..fb2f275ec 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@3x.png and b/App/Resources/Assets.xcassets/Private Messages/pmforwarded.imageset/pmforwarded@3x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/Contents.json b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/Contents.json index 2d82977f9..0688212e1 100644 --- a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "pmreplied@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "pmreplied@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "pmreplied@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@1x.png b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@1x.png new file mode 100644 index 000000000..935c57fdb Binary files /dev/null and b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@1x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@2x.png b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@2x.png index 52df1cafa..9eb0715ac 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@2x.png and b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@2x.png differ diff --git a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@3x.png b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@3x.png index f1ecc9c64..7ff4d1aa1 100644 Binary files a/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@3x.png and b/App/Resources/Assets.xcassets/Private Messages/pmreplied.imageset/pmreplied@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/Contents.json b/App/Resources/Assets.xcassets/Template Images/Contents.json index da4a164c9..73c00596a 100644 --- a/App/Resources/Assets.xcassets/Template Images/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/Contents.json @@ -1,6 +1,6 @@ { "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/action.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/action.imageset/Contents.json index 1011e5d43..b5e25faf4 100644 --- a/App/Resources/Assets.xcassets/Template Images/action.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/action.imageset/Contents.json @@ -5,21 +5,21 @@ "scale" : "1x" }, { - "idiom" : "universal", "filename" : "action@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "action@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/Contents.json index 7f4c45091..d796a64b6 100644 --- a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "arrowleft@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "arrowleft@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "arrowleft@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@1x.png b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@1x.png new file mode 100644 index 000000000..4571c3e70 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@2x.png b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@2x.png index e8cb43ac2..b6c86d1b5 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@2x.png and b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@3x.png b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@3x.png index 0903e504b..d156cd968 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@3x.png and b/App/Resources/Assets.xcassets/Template Images/arrowleft.imageset/arrowleft@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Contents.json index 961feb05c..e79c71649 100644 --- a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Contents.json @@ -1,25 +1,23 @@ { "images" : [ { + "filename" : "Untitled-1@1x.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "Untitled-1@2x.png", "idiom" : "universal", - "filename" : "arrowright@2x.png", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "arrowright@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" - }, - "properties" : { - "template-rendering-intent" : "template" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@1x.png b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@1x.png new file mode 100644 index 000000000..fce401faf Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@2x.png b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@2x.png new file mode 100644 index 000000000..7cb35c0a7 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/Untitled-1@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@2x.png b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@2x.png deleted file mode 100644 index 7236d6fa0..000000000 Binary files a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@2x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@3x.png b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@3x.png index 52e3337d4..433c0c0ec 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@3x.png and b/App/Resources/Assets.xcassets/Template Images/arrowright.imageset/arrowright@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/back.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/back.imageset/Contents.json index 64d18e8b8..2d18f54c3 100644 --- a/App/Resources/Assets.xcassets/Template Images/back.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/back.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "main-back@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "main-back@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "main-back@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@1x.png b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@1x.png new file mode 100644 index 000000000..5e1ba8fac Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@2x.png b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@2x.png index 840ad5099..018610f62 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@2x.png and b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@3x.png b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@3x.png index 9f52e082d..bf72c1786 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@3x.png and b/App/Resources/Assets.xcassets/Template Images/back.imageset/main-back@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/Contents.json index b3f9d6057..7317e51a0 100644 --- a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "bookmarks-filled@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "bookmarks-filled@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "bookmarks-filled@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@1x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@1x.png new file mode 100644 index 000000000..c74e71e59 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@2x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@2x.png index 402817fe0..22895e628 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@2x.png and b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@3x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@3x.png index 889f13784..d8cb8ec80 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@3x.png and b/App/Resources/Assets.xcassets/Template Images/bookmarks-filled.imageset/bookmarks-filled@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/Contents.json index ed5c8cd76..8f77ae27f 100644 --- a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "bookmarks@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "bookmarks@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "bookmarks@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@1x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@1x.png new file mode 100644 index 000000000..1adccd422 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@2x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@2x.png index ff715d105..71b5297cb 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@2x.png and b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@3x.png b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@3x.png index 17414649e..16b79dc86 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@3x.png and b/App/Resources/Assets.xcassets/Template Images/bookmarks.imageset/bookmarks@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/brightness-down.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/brightness-down.imageset/Contents.json index 230f12565..a74a66cad 100644 --- a/App/Resources/Assets.xcassets/Template Images/brightness-down.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/brightness-down.imageset/Contents.json @@ -5,18 +5,18 @@ "scale" : "1x" }, { - "idiom" : "universal", "filename" : "bright-down@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "bright-down@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/brightness-up.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/brightness-up.imageset/Contents.json index 8db1a6ca5..30a41be85 100644 --- a/App/Resources/Assets.xcassets/Template Images/brightness-up.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/brightness-up.imageset/Contents.json @@ -5,18 +5,18 @@ "scale" : "1x" }, { - "idiom" : "universal", "filename" : "bright-up@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "bright-up@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/Contents.json index 22f271f9d..d60f64b21 100644 --- a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "cog-filled@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "cog-filled@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "cog-filled@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@1x.png b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@1x.png new file mode 100644 index 000000000..67730674c Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@2x.png b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@2x.png index a55a78ce6..c1b358c6b 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@2x.png and b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@3x.png b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@3x.png index 72f383c95..5a8ca516e 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@3x.png and b/App/Resources/Assets.xcassets/Template Images/cog-filled.imageset/cog-filled@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/cog.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/cog.imageset/Contents.json index 43f9a8c70..92f62dc87 100644 --- a/App/Resources/Assets.xcassets/Template Images/cog.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/cog.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "cog@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "cog@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "cog@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@1x.png b/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@1x.png new file mode 100644 index 000000000..025874d8d Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@2x.png b/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@2x.png index e3a07bf53..6a615887c 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@2x.png and b/App/Resources/Assets.xcassets/Template Images/cog.imageset/cog@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/compose.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/compose.imageset/Contents.json index 6bd52d0f0..d0ded8de6 100644 --- a/App/Resources/Assets.xcassets/Template Images/compose.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/compose.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "compose@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "compose@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "compose@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@1x.png b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@1x.png new file mode 100644 index 000000000..ef1824c15 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@2x.png b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@2x.png index 26c5f9c84..99295da20 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@2x.png and b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@3x.png b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@3x.png index d650da3b6..6470942db 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@3x.png and b/App/Resources/Assets.xcassets/Template Images/compose.imageset/compose@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/Contents.json index 809208a63..4a4107746 100644 --- a/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "list_icon-filled@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "list_icon-filled@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "list_icon-filled@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@1x.png b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@1x.png new file mode 100644 index 000000000..e58f4858b Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@2x.png b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@2x.png index ea2d4953e..d02fb87e0 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@2x.png and b/App/Resources/Assets.xcassets/Template Images/forum-list-filled.imageset/list_icon-filled@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/Contents.json index ba9c5cd51..abcb88091 100644 --- a/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "list_icon@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "list_icon@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "list_icon@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@1x.png b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@1x.png new file mode 100644 index 000000000..4c053d9c8 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@2x.png b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@2x.png index 6a2064ea1..d679ee6e6 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@2x.png and b/App/Resources/Assets.xcassets/Template Images/forum-list.imageset/list_icon@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/Contents.json index eddd2de8e..9aca3f308 100644 --- a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "lepers_filled@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "lepers_filled@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "lepers_filled@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@1x.png b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@1x.png new file mode 100644 index 000000000..33c1ed804 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@2x.png b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@2x.png index c7c41ebe5..4513668c0 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@2x.png and b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@3x.png b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@3x.png index a39475003..aca96b630 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@3x.png and b/App/Resources/Assets.xcassets/Template Images/lepers-filled.imageset/lepers_filled@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/Contents.json index d0d77e979..2d137b390 100644 --- a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "lepers_icon@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "lepers_icon@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "lepers_icon@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@1x.png b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@1x.png new file mode 100644 index 000000000..197533922 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@2x.png b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@2x.png index fc24b5095..4a3f4232d 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@2x.png and b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@3x.png b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@3x.png index 4ff6827df..1ecf5ac21 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@3x.png and b/App/Resources/Assets.xcassets/Template Images/lepers.imageset/lepers_icon@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/Contents.json index 1601dd85c..45b8c8465 100644 --- a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "page_settings@1x.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "page_settings@2x.png", "idiom" : "universal", - "filename" : "page-settings@2x.png", "scale" : "2x" }, { + "filename" : "page_settings@3x.png", "idiom" : "universal", - "filename" : "page-settings@3x.png", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@2x.png b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@2x.png deleted file mode 100644 index 17ced86ce..000000000 Binary files a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@2x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@3x.png b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@3x.png deleted file mode 100644 index 38232f552..000000000 Binary files a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page-settings@3x.png and /dev/null differ diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@1x.png b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@1x.png new file mode 100644 index 000000000..d5845ef86 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@2x.png b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@2x.png new file mode 100644 index 000000000..6210e227f Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@3x.png b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@3x.png new file mode 100644 index 000000000..7a88848d9 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/page-settings.imageset/page_settings@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/Contents.json index 3ca6aea8c..abd027c08 100644 --- a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "pm-icon-filled@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "pm-icon-filled@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "pm-icon-filled@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@1x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@1x.png new file mode 100644 index 000000000..630e8cec1 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@2x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@2x.png index 08338fbe2..f9370d2cf 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@2x.png and b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@3x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@3x.png index d341f8281..b69ed0590 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@3x.png and b/App/Resources/Assets.xcassets/Template Images/pm-icon-filled.imageset/pm-icon-filled@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/Contents.json index 6ed22ea54..e3a77db8b 100644 --- a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "pm-icon@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "pm-icon@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "pm-icon@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@1x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@1x.png new file mode 100644 index 000000000..97464c02e Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@2x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@2x.png index cc861177b..726fd2f29 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@2x.png and b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@3x.png b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@3x.png index 4eff76e3c..0d0b4c8e9 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@3x.png and b/App/Resources/Assets.xcassets/Template Images/pm-icon.imageset/pm-icon@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/Contents.json index 277d02b18..b16657812 100644 --- a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/Contents.json @@ -5,21 +5,21 @@ "scale" : "1x" }, { - "idiom" : "universal", "filename" : "pull-to-refresh@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "pull-to-refresh@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 }, "properties" : { "template-rendering-intent" : "template" } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@2x.png b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@2x.png index 673a1ac79..0277672ee 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@2x.png and b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@3x.png b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@3x.png index e73f102b2..37ce90184 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@3x.png and b/App/Resources/Assets.xcassets/Template Images/pull-to-refresh.imageset/pull-to-refresh@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/reply.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/reply.imageset/Contents.json index 34b5346ec..cc9c563dc 100644 --- a/App/Resources/Assets.xcassets/Template Images/reply.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/reply.imageset/Contents.json @@ -1,22 +1,23 @@ { "images" : [ { + "filename" : "reply@1x.png", "idiom" : "universal", "scale" : "1x" }, { - "idiom" : "universal", "filename" : "reply@2x.png", + "idiom" : "universal", "scale" : "2x" }, { - "idiom" : "universal", "filename" : "reply@3x.png", + "idiom" : "universal", "scale" : "3x" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@1x.png b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@1x.png new file mode 100644 index 000000000..1d94b1e81 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@2x.png b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@2x.png index 4c15fa402..9c32bfcf4 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@2x.png and b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@3x.png b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@3x.png index 24c0a2dbc..fb5c88797 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@3x.png and b/App/Resources/Assets.xcassets/Template Images/reply.imageset/reply@3x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/Contents.json b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/Contents.json index c1cce722f..7f6ca415b 100644 --- a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/Contents.json +++ b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/Contents.json @@ -1,6 +1,7 @@ { "images" : [ { + "filename" : "steamed-ham@1x.png", "idiom" : "universal", "scale" : "1x" }, @@ -18,8 +19,5 @@ "info" : { "author" : "xcode", "version" : 1 - }, - "properties" : { - "template-rendering-intent" : "template" } } diff --git a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@1x.png b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@1x.png new file mode 100644 index 000000000..9f3701275 Binary files /dev/null and b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@1x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@2x.png b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@2x.png index 64d7ab561..d3f3391af 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@2x.png and b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@2x.png differ diff --git a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@3x.png b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@3x.png index 900d3b78d..6dee11ae2 100644 Binary files a/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@3x.png and b/App/Resources/Assets.xcassets/Template Images/steamed-ham.imageset/steamed-ham@3x.png differ diff --git a/App/Resources/Assets.xcassets/Thread Lists/Contents.json b/App/Resources/Assets.xcassets/Thread Lists/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/App/Resources/Assets.xcassets/Thread Lists/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Thread Lists/page.imageset/Contents.json b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/Contents.json new file mode 100644 index 000000000..1202b1a97 --- /dev/null +++ b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "page@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "page@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "page@3x(1).png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@1x.png b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@1x.png new file mode 100644 index 000000000..e32991f75 Binary files /dev/null and b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@1x.png differ diff --git a/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@2x.png b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@2x.png new file mode 100644 index 000000000..d9a8bef7a Binary files /dev/null and b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@2x.png differ diff --git a/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@3x(1).png b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@3x(1).png new file mode 100644 index 000000000..44b8e6319 Binary files /dev/null and b/App/Resources/Assets.xcassets/Thread Lists/page.imageset/page@3x(1).png differ diff --git a/App/Resources/Assets.xcassets/onepassword-button.imageset/Contents.json b/App/Resources/Assets.xcassets/onepassword-button.imageset/Contents.json new file mode 100644 index 000000000..ef1c4c57a --- /dev/null +++ b/App/Resources/Assets.xcassets/onepassword-button.imageset/Contents.json @@ -0,0 +1,56 @@ +{ + "images" : [ + { + "filename" : "onepassword-button.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "onepassword-button-light.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "onepassword-button@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "onepassword-button-light@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "onepassword-button@3x.png", + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "onepassword-button-light@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/App/Resources/Lotties/GhostAnim.json b/App/Resources/Lotties/GhostAnim.json new file mode 100755 index 000000000..0a4bc25c0 --- /dev/null +++ b/App/Resources/Lotties/GhostAnim.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7201,"w":300,"h":300,"nm":"_GhostAnim","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"stroke","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":500,"ix":3},"y":{"a":0,"k":500,"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.67,-0.02],[0,-35.64],[0,0],[-0.698,0.774],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[0.005,1.045],[0,0],[1.636,0.388],[0,0],[-1.502,0.776],[0,0],[1.169,2.261],[25.815,0]],"o":[[-35.625,1.044],[0,0],[0,1.043],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[0.7,0.777],[0,0],[-0.008,-1.681],[0,0],[-1.645,-0.391],[0,0],[2.261,-1.168],[-11.09,-21.453],[-0.666,0]],"v":[[1.12,-83.333],[-63.586,-15.021],[-63.585,81.796],[-61.602,82.559],[-46.88,66.238],[-41.469,66.238],[-27.469,81.758],[-22.058,81.758],[-8.057,66.238],[-2.646,66.238],[11.354,81.758],[16.765,81.758],[30.765,66.238],[36.176,66.238],[50.883,82.541],[52.866,81.774],[52.605,30.958],[49.803,27.439],[-28.921,8.747],[-29.336,5.355],[60.48,-41.031],[62.417,-47.244],[3.124,-83.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":8727,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyes","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":500,"ix":3},"y":{"a":0,"k":500,"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,5.559],[-5.559,0],[0,-5.559],[5.558,0]],"o":[[0,-5.559],[5.559,0],[0,5.559],[-5.558,0]],"v":[[8.759,-49.973],[18.823,-60.038],[28.888,-49.973],[18.823,-39.908]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,5.559],[-5.559,0],[0,-5.559],[5.559,0]],"o":[[0,-5.559],[5.559,0],[0,5.559],[-5.559,0]],"v":[[-31.057,-29.424],[-20.992,-39.489],[-10.928,-29.424],[-20.992,-19.359]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":8727,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":7000,"s":[25]},{"t":7200,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.311],"y":[0.452]},"t":0,"s":[-0.519]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6916,"s":[2]},{"i":{"x":[0.698],"y":[0.46]},"o":{"x":[0.384],"y":[0]},"t":7116,"s":[-2]},{"t":7200,"s":[-0.519]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":150,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":0,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":1395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":1795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":3395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":3795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":5395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":5795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":7005,"s":[135]},{"t":7200,"s":[150.18]}],"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.67,-0.02],[0,-35.64],[0,0],[-0.698,0.774],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[0.005,1.045],[0,0],[1.636,0.388],[0,0],[-1.502,0.776],[0,0],[1.169,2.261],[25.815,0]],"o":[[-35.625,1.044],[0,0],[0,1.043],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[0.7,0.777],[0,0],[-0.008,-1.681],[0,0],[-1.645,-0.391],[0,0],[2.261,-1.168],[-11.09,-21.453],[-0.666,0]],"v":[[1.12,-83.333],[-63.586,-15.021],[-63.585,81.796],[-61.602,82.559],[-46.88,66.238],[-41.469,66.238],[-27.469,81.758],[-22.058,81.758],[-8.057,66.238],[-2.646,66.238],[11.354,81.758],[16.765,81.758],[30.765,66.238],[36.176,66.238],[50.883,82.541],[52.866,81.774],[52.605,30.958],[49.803,27.439],[-28.921,8.747],[-29.336,5.355],[60.48,-41.031],[62.417,-47.244],[3.124,-83.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":8727,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/App/Resources/Lotties/MainThrobberX120.json b/App/Resources/Lotties/MainThrobberX120.json new file mode 100644 index 000000000..bba7a10a0 --- /dev/null +++ b/App/Resources/Lotties/MainThrobberX120.json @@ -0,0 +1 @@ +{"v":"5.9.0","fr":120,"ip":0,"op":201,"w":260,"h":260,"nm":"_MainThrobber 120","ddd":0,"assets":[{"id":"comp_0","nm":"Face Mask","fr":25,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.348],"y":[1]},"o":{"x":[0.161],"y":[0.53]},"t":0,"s":[33.333]},{"t":14.4,"s":[0]}],"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":235.2,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"main_mask","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-24,18.75,0],"ix":2,"l":2},"a":{"a":0,"k":[47.25,82.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.637],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.625],"y":[0.091]},"o":{"x":[0.304],"y":[0]},"t":14.4,"s":[0.2]},{"i":{"x":[0.551],"y":[0.681]},"o":{"x":[0.44],"y":[0.495]},"t":124.8,"s":[1.539]},{"t":211.2,"s":[3.8]}],"ix":2},"w":135,"h":135,"ip":0,"op":225.6,"st":0,"bm":0}]},{"id":"comp_1","nm":"main_mask","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"eyeL","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[94]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[102.306]},{"t":374.4,"s":[94]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyeR","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[60]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[68.306]},{"t":374.4,"s":[60]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"Jaw Corner","parent":6,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"s":true,"x":{"a":0,"k":-1.75,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.583],"y":[0.46]},"o":{"x":[0.163],"y":[0]},"t":0,"s":[29.75]},{"i":{"x":[0.872],"y":[0.799]},"o":{"x":[0.438],"y":[0.371]},"t":4.8,"s":[34.589]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.082],"y":[0.254]},"t":9.6,"s":[42]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19.2,"s":[49.55]},{"i":{"x":[0.765],"y":[0.591]},"o":{"x":[0.441],"y":[0]},"t":24,"s":[49.55]},{"i":{"x":[0.722],"y":[0.644]},"o":{"x":[0.423],"y":[0.311]},"t":38.4,"s":[52.25]},{"i":{"x":[0.833],"y":[0.83]},"o":{"x":[0.188],"y":[0.147]},"t":48,"s":[56.511]},{"i":{"x":[0.832],"y":[0.844]},"o":{"x":[0.167],"y":[0.164]},"t":62.4,"s":[66.97]},{"i":{"x":[0.868],"y":[0.857]},"o":{"x":[0.243],"y":[0.272]},"t":76.8,"s":[77.8]},{"i":{"x":[0.667],"y":[1.389]},"o":{"x":[0.219],"y":[0.635]},"t":86.4,"s":[83.8]},{"i":{"x":[0.833],"y":[0.812]},"o":{"x":[0.333],"y":[0.152]},"t":105.6,"s":[88.3]},{"i":{"x":[0.564],"y":[0.903]},"o":{"x":[0.167],"y":[0.161]},"t":124.8,"s":[76.8]},{"i":{"x":[0.657],"y":[1.158]},"o":{"x":[0.297],"y":[0.596]},"t":192,"s":[29.941]},{"i":{"x":[0.862],"y":[0.772]},"o":{"x":[0.393],"y":[0.093]},"t":220.8,"s":[27.722]},{"i":{"x":[0.746],"y":[0.815]},"o":{"x":[0.292],"y":[0.411]},"t":249.6,"s":[32.044]},{"i":{"x":[0.617],"y":[1]},"o":{"x":[0.281],"y":[0.731]},"t":307.2,"s":[42.207]},{"t":456,"s":[49.55]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-13,-13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"Lip Corner","parent":7,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0.7,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0]},"t":0,"s":[30.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9.6,"s":[31.2]},{"i":{"x":[0.832],"y":[0.762]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[31.2]},{"i":{"x":[0.831],"y":[0.726]},"o":{"x":[0.284],"y":[0.041]},"t":57.6,"s":[31.283]},{"i":{"x":[0.583],"y":[0.412]},"o":{"x":[0.32],"y":[0.162]},"t":76.8,"s":[31.75]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.417],"y":[0.315]},"t":86.4,"s":[32.5]},{"i":{"x":[0.57],"y":[0.546]},"o":{"x":[0.175],"y":[0.142]},"t":96,"s":[33.9]},{"i":{"x":[0.835],"y":[0.917]},"o":{"x":[0.342],"y":[0.243]},"t":105.6,"s":[35.959]},{"i":{"x":[0.469],"y":[1]},"o":{"x":[0.265],"y":[0.865]},"t":115.2,"s":[39.019]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[39.256]},{"i":{"x":[0.868],"y":[0.566]},"o":{"x":[0.448],"y":[0]},"t":288,"s":[39.089]},{"i":{"x":[0.756],"y":[0.85]},"o":{"x":[0.212],"y":[0.248]},"t":336,"s":[35.4]},{"i":{"x":[0.833],"y":[0.908]},"o":{"x":[0.177],"y":[0.321]},"t":350.4,"s":[32.3]},{"i":{"x":[0.575],"y":[1.021]},"o":{"x":[0.167],"y":[0.323]},"t":364.8,"s":[31.25]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.258],"y":[0.034]},"t":388.8,"s":[30.75]},{"t":456,"s":[31.283]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[13,13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":1,"nm":"Jaw","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.657],"y":[1]},"o":{"x":[0.195],"y":[0.379]},"t":0,"s":[-297.4]},{"i":{"x":[0.502],"y":[1]},"o":{"x":[0.502],"y":[0]},"t":19.2,"s":[-256.5]},{"i":{"x":[0.673],"y":[0.65]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[-256.5]},{"i":{"x":[0.846],"y":[0.907]},"o":{"x":[0.265],"y":[0.413]},"t":182.4,"s":[0]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.217],"y":[0.869]},"t":240,"s":[66.083]},{"t":456,"s":[103.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0},{"ddd":0,"ind":7,"ty":1,"nm":"Upper Lip","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.633],"y":[0.132]},"o":{"x":[0.323],"y":[0]},"t":24,"s":[-297.5]},{"i":{"x":[0.671],"y":[0.674]},"o":{"x":[0.348],"y":[0.332]},"t":182.4,"s":[-180]},{"i":{"x":[0.617],"y":[0.795]},"o":{"x":[0.305],"y":[0.534]},"t":225.6,"s":[-100.674]},{"i":{"x":[0.613],"y":[1]},"o":{"x":[0.247],"y":[0.671]},"t":364.8,"s":[43.794]},{"t":456,"s":[62.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0}]},{"id":"comp_2","nm":"Corner 2","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-53],[10.312,-14.375],[73.868,73.868]],"o":[[22.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]},{"id":"comp_3","nm":"Corner","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-54.625],[0,-25.25],[0,0]],"o":[[28.25,0],[43.625,0],[0,0]],"v":[[-24,-20.125],[18.875,24],[33.375,-32.111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Face Mask","td":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[54,54,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,21.429]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.901],"y":[0.714]},"o":{"x":[0.158],"y":[0]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0.123]},{"t":190,"s":[1.786]}],"ix":2},"w":108,"h":108,"ip":6,"op":210,"st":-152,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Blue Circ 2","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":6,"op":208,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Blue Circ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":6,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"loop start","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/TootX120.json b/App/Resources/Lotties/TootX120.json new file mode 100644 index 000000000..9ad33099e --- /dev/null +++ b/App/Resources/Lotties/TootX120.json @@ -0,0 +1 @@ +{"v":"5.9.0","fr":120,"ip":0,"op":207,"w":320,"h":320,"nm":"_Toot3x_120","ddd":0,"assets":[{"id":"comp_0","nm":"Note","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"note","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":165,"ix":3},"y":{"a":0,"k":70,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"t":50,"s":[20,20]}],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[10,0],"to":[0,0],"ti":[0,0]},{"t":50,"s":[0,0]}],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"circ_fill","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.505,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[7.75,0.121],[7.75,0.127],[7.75,0.172]],"c":false}]},{"t":50,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[15.875,-22.461],[7.75,-22.5],[7.75,0.016]],"c":false}]}],"ix":2},"nm":"angle","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"angle_stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"stroke","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":96,"st":-55,"bm":0}]},{"id":"comp_1","nm":"tooter 3","fr":120,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 35","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[108,108,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"TootRoll Mask","parent":3,"td":1,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[43.338]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[43.338]},{"t":101,"s":[43.338]}],"ix":3},"y":{"a":0,"k":-15,"ix":4}},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"s","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[131.654,106.5],[105.682,106.5],[105.682,125.199],[131.654,125.199]],"c":true}]},{"t":101,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[137.904,106.5],[111.932,106.5],[111.932,125.199],[137.904,125.199]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"w":216,"h":216,"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"toot","parent":1,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[6.337]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[37]},{"t":100,"s":[68.147]}],"ix":3},"y":{"a":0,"k":15,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.7],"y":[0.216]},"o":{"x":[0.444],"y":[0]},"t":1,"s":[0]},{"i":{"x":[0.623],"y":[1]},"o":{"x":[0.271],"y":[0.319]},"t":5,"s":[0.521]},{"t":15,"s":[4.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"toot mask","parent":3,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[50]},{"t":46,"s":[-9]}],"ix":3},"y":{"a":0,"k":-1,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2.75,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"top","parent":6,"tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-86.4,"ix":10},"p":{"s":true,"x":{"a":0,"k":16.958,"ix":3},"y":{"a":0,"k":1.203,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[10,10]},{"t":50,"s":[11,11]}],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-39,"s":[0,-7.5],"to":[0,0.051],"ti":[0,0.171]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[0,-8],"to":[0,-0.02],"ti":[0,0.018]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[0,-7.919],"to":[0,-0.034],"ti":[0,0.018]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[0,-8],"to":[0,-0.2],"ti":[0,0.034]},{"t":50,"s":[0,-8.5]}],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":15,"s":[4.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"ctr 5","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42,"ix":3},"y":{"a":0,"k":-5.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"ctr","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[41]},{"t":45,"s":[42]}],"ix":3},"y":{"a":0,"k":-5.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[2,2],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":15,"s":[2.25]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"large","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":42,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-4.5]},{"t":50,"s":[-5.5]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[20,20]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":50,"s":[22,22]},{"t":99,"s":[22,22]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[27.6]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[51]},{"t":99,"s":[100]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.7],"y":[0.216]},"o":{"x":[0.444],"y":[0]},"t":1,"s":[0]},{"i":{"x":[0.623],"y":[1]},"o":{"x":[0.271],"y":[0.319]},"t":5,"s":[0.521]},{"t":15,"s":[4.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"top 2","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":14,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"ctr 4","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[6,6],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":160,"s":[33.818]},{"t":177.5,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"ctr 3","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[-450]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[-270]},{"t":200,"s":[-90]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"ip":100,"op":267,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"large 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[28,28],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177.5,"s":[23]},{"t":200,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"bak 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[42.288,-4.125,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[88,88,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[-7.319,0.506],[-4.193,-2.377],[4.119,-2.301],[2.978,0.568]],"o":[[2.064,0],[4.193,2.377],[-1.167,0.305],[-6.539,-5.682]],"v":[[-0.71,-1.27],[4.002,1.349],[0.55,11.056],[0.506,10.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[{"i":[[-7.319,0.506],[-3.67,-3.125],[4.478,-1.483],[2.978,0.568]],"o":[[5.189,0],[3.67,3.125],[-1.203,0.08],[-6.539,-5.682]],"v":[[-0.71,-1.625],[10.041,2.699],[4.688,12.278],[0.506,11.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[{"i":[[-7.319,0.506],[-0.723,-10.227],[0.919,2.193],[2.978,0.568]],"o":[[7.319,-0.506],[-4.569,5.114],[-0.919,-2.193],[-6.539,-5.682]],"v":[[-0.71,-1.625],[16.717,14.347],[3.977,14.267],[0.506,11.506]],"c":true}]},{"t":140,"s":[{"i":[[-7.319,0.506],[-0.723,-10.227],[0,11.301],[2.978,0.568]],"o":[[7.319,-0.506],[0,15.057],[4.905,-2.335],[-6.539,-5.682]],"v":[[-0.71,-1.625],[16.717,14.347],[1.42,18.386],[0.506,11.506]],"c":true}]}],"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"bak","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[42.288,-4.125,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[88,88,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-6.075,0],[0,-6.075],[6.075,0],[0,6.075]],"o":[[6.075,0],[0,6.075],[-6.075,0],[0,-6.075]],"v":[[0,-11],[11,0],[0,11],[-11,0]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-5.762,0],[0,-5.762],[6.359,0],[0.358,5.725]],"o":[[6.684,0],[0,5.762],[-5.762,0],[-0.627,-7.032]],"v":[[0.29,-11.645],[11.306,-0.004],[0.034,11],[-10.32,-1.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[-5.579,0],[0,-5.579],[6.524,0],[0.566,5.521]],"o":[[7.039,0],[0,5.579],[-5.579,0],[-0.993,-7.59]],"v":[[0.459,-12.021],[11.485,-0.007],[0.054,11],[-9.642,-1.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-5.161,0],[0,-5.161],[6.902,0],[1.043,5.054]],"o":[[5.161,0],[0,5.161],[-5.161,0],[-1.829,-8.865]],"v":[[0.845,-12.553],[11.894,-0.013],[0.099,11],[-8.499,-3.209]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-4.925,0],[0,-6.601],[6.754,0],[0.896,4.834]],"o":[[5.547,0],[0,5.356],[-4.925,0],[-1.729,-8.396]],"v":[[1.245,-13.198],[12.107,-0.217],[0.125,11],[-6.31,-2.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-4.716,0],[0,-6.064],[6.621,0],[0.766,4.638]],"o":[[5.89,0],[0,5.529],[-4.716,0],[-1.639,-7.978]],"v":[[1.601,-13.771],[12.298,-0.399],[0.147,11],[-4.365,-2.391]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-4.481,0],[0,-5.597],[6.473,0],[0.619,4.418]],"o":[[5.033,0],[0,5.725],[-4.481,0],[0.028,-6.991]],"v":[[4.246,-11.941],[12.324,-0.227],[0.173,11],[-2.176,-1.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-4.272,0],[0,-5.181],[6.341,0],[0.489,4.222]],"o":[[4.272,0],[0,5.898],[-4.272,0],[0.09,-6.24]],"v":[[6.263,-9.308],[12.347,-0.075],[0.196,11],[-0.23,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-4.089,0],[0,-5.246],[5.675,0],[0.375,4.051]],"o":[[4.089,0],[0,5.336],[-4.089,0],[1.745,-2.124]],"v":[[5.861,-6.854],[12.275,0.417],[0.215,11],[-1.585,0.136]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":84,"s":[{"i":[[-3.376,0],[0,-3.068],[4.914,0],[0.244,3.855]],"o":[[3.3,0],[0,4.693],[-3.88,0],[2.744,-2.799]],"v":[[5.402,-4.05],[11.052,2.5],[0.238,11],[-3.133,2.088]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":92,"s":[{"i":[[-3.671,0],[0,-3.883],[4.154,0],[0.114,3.659]],"o":[[3.671,0],[0,5.426],[-3.671,0],[1.28,-3.166]],"v":[[2.671,-1.872],[8.853,3.665],[0.261,11],[-4.681,3.473]],"c":true}]},{"t":99,"s":[{"i":[[-3.488,0],[0,-3.488],[3.488,0],[0,3.488]],"o":[[3.488,0],[0,3.488],[-3.488,0],[0,-3.488]],"v":[[0.281,-1.632],[6.597,4.684],[0.281,11],[-6.035,4.684]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0}]},{"id":"comp_2","nm":"TootRoll Mask","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"toot 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":107.337,"ix":3},"y":{"a":0,"k":123,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,27.5],[-50,27.5],[-50,-27.5],[50.006,-27.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":3,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":180,"st":0,"bm":0}]},{"id":"comp_3","nm":"Eye Eye","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":720,"st":0,"bm":0}]},{"id":"comp_4","nm":"tooter fill","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"toot 2","parent":2,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":43,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,-27.5],[50,27.5],[5,27.5],[5,-27.5]],"c":true}]},{"t":73,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,-27.5],[50,27.5],[-43.938,27.5],[-43.938,-27.5]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"d":1,"ty":"el","s":{"a":0,"k":[12,12],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[42.06,-6.508],"to":[0.167,-1.589],"ti":[-0.517,1.404]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21.668,"s":[43,-13],"to":[0.583,-1.583],"ti":[-0.417,0.417]},{"t":33.33203125,"s":[45.5,-15.5]}],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"mm","mm":3,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"toot","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[114.337]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[145]},{"t":100,"s":[176.147]}],"ix":3},"y":{"a":0,"k":123,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"top","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":20.695,"ix":3},"y":{"a":0,"k":-0.114,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"ctr","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":-8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"large","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":-4.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[20,20],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[20.444]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.168,"s":[23]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[50]},{"t":100,"s":[100]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"top 2","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":14,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"ctr 4","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[6,6],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":160,"s":[33.818]},{"t":177.5,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":3,"nm":"ctr 3","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[-450]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[-270]},{"t":200,"s":[-90]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"ip":100,"op":267,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"large 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[28,28],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177.5,"s":[23]},{"t":200,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"scaler","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[160,160,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.333,0.333,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[129,129,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[117,117,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":50,"s":[120,120,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.291,0.291,0.333],"y":[0,0,0]},"t":152,"s":[120,120,100]},{"i":{"x":[0.822,0.822,0.833],"y":[0.404,0.404,9.327]},"o":{"x":[0.474,0.474,0.333],"y":[0,0,0]},"t":165,"s":[126,126,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.387,0.387,0.167],"y":[0.452,0.452,-7.012]},"t":184,"s":[89.051,89.051,100]},{"t":200,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"Note","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":160,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.477],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[181.101]},{"t":82,"s":[160]}],"ix":4}},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[150.72,150.72,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.382],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":75,"s":[0.417]},{"i":{"x":[0.831],"y":[0.672]},"o":{"x":[0.518],"y":[0]},"t":140,"s":[0.417]},{"t":166,"s":[0]}],"ix":2},"w":216,"h":216,"ip":50,"op":166,"st":50,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"cheek","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[-4.018,17,0],"ix":2,"l":2},"a":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[11,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":35,"s":[14,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[14,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":87,"s":[10.5,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[10.5,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"t":199,"s":[11,0.007,0]}],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":0,"s":[22,22]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":35,"s":[28,28]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":45,"s":[28,28]},{"i":{"x":[0.833,0.833],"y":[0.921,0.921]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":87,"s":[21,21]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.088,0.088]},"t":140,"s":[21,21]},{"t":199,"s":[22,22]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":165,"s":[73]},{"t":197,"s":[80]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":165,"s":[-220]},{"t":189,"s":[-242.598]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.727],"y":[0.727]},"o":{"x":[0.317],"y":[0]},"t":180,"s":[4.5]},{"t":194,"s":[0]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"cheek mask","parent":10,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[-12.856,13.011,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-74.652],[0,-4.604],[3.729,-4.25],[0,85.5]],"o":[[2.479,2.438],[0,3.964],[0,74.5],[0,-85.5]],"v":[[5.365,-9.49],[10.049,-0.13],[4.375,10.479],[-88.5,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"tooter 3","parent":10,"tt":2,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[23.933,10.159,0],"ix":2,"l":2},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":45,"s":[0.129]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":70,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":75,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":80,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":85,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":90,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":95,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":100,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":105,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":110,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":115,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":120,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":125,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":130,"s":[1.042]},{"i":{"x":[0.695],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":135,"s":[1.111]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":140,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":165,"s":[0.129]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.597],"y":[0]},"t":175,"s":[0.129]},{"t":194,"s":[0]}],"ix":2},"w":216,"h":216,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Hat","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.767],"y":[0.508]},"o":{"x":[0.495],"y":[0.231]},"t":55,"s":[0]},{"i":{"x":[0.393],"y":[1]},"o":{"x":[0.336],"y":[-0.114]},"t":111,"s":[7.423]},{"t":120,"s":[0]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.374],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[-36.5]},{"i":{"x":[0.782],"y":[0.604]},"o":{"x":[0.427],"y":[0]},"t":87,"s":[-53.419]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.367],"y":[1.2]},"t":111,"s":[-39.419]},{"t":120,"s":[-36.5]}],"ix":4}},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":166,"s":[0,29,0],"to":[0,-1.828,0],"ti":[0,1.828,0]},{"t":193,"s":[0,18.031,0]}],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.66,"y":0},"t":166,"s":[{"i":[[1.397,-3.361],[0,0],[-2.917,0],[0,0],[1.12,2.694],[0,0]],"o":[[0,0],[-1.12,2.694],[0,0],[2.917,0],[0,0],[-1.397,-3.361]],"v":[[-4.592,-18.985],[-23.787,27.195],[-20.01,32.856],[18.379,32.856],[22.157,27.195],[2.962,-18.985]],"c":true}]},{"t":197,"s":[{"i":[[0.007,-0.017],[0,0],[-0.015,0],[0,0],[0.006,0.014],[0,0]],"o":[[0,0],[-0.006,0.014],[0,0],[0.015,0],[0,0],[-0.007,-0.017]],"v":[[-0.835,5.129],[-0.935,5.369],[-0.915,5.398],[-0.715,5.398],[-0.696,5.369],[-0.795,5.129]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.758],"y":[0.25]},"o":{"x":[0.513],"y":[0]},"t":166,"s":[4.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.354],"y":[0.237]},"t":184,"s":[3.441]},{"t":193,"s":[1]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"EyeL","parent":10,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"s":true,"x":{"a":0,"k":-4.238,"ix":3},"y":{"a":0,"k":-10.49,"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.764,0.764,0.711],"y":[0.422,0.422,31.138]},"o":{"x":[0.431,0.431,0.302],"y":[0,0,0]},"t":165.002,"s":[175,175,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,18.588]},"o":{"x":[0.416,0.416,0.425],"y":[0.301,0.301,-12.426]},"t":190.002,"s":[85,85,100]},{"t":197.0015625,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":194,"st":-9.6,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"EyeR","parent":10,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"s":true,"x":{"a":0,"k":18.774,"ix":3},"y":{"a":0,"k":-0.722,"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.764,0.764,0.711],"y":[0.422,0.422,1]},"o":{"x":[0.431,0.431,0.302],"y":[0,0,0]},"t":165.002,"s":[175,175,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.416,0.416,0.425],"y":[0.301,0.301,0]},"t":190.002,"s":[85,85,100]},{"t":197.0015625,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":194,"st":-9.6,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"tooter fill","parent":10,"td":1,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[23.933,10.159,0],"ix":2,"l":2},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"s","pt":{"a":0,"k":{"i":[[12.725,0],[0,-8.265],[-12.725,0],[0,8.264]],"o":[[-12.725,0],[0,8.265],[12.725,0],[0,-8.264]],"v":[[62.8,110.188],[39.759,125.152],[62.8,140.116],[85.841,125.152]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"tm":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":45,"s":[0.129]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":140,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":165,"s":[0.129]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.597],"y":[0]},"t":175,"s":[0.129]},{"t":194,"s":[0]}],"ix":2},"w":216,"h":216,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"hed","parent":1,"tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.576],"y":[1]},"o":{"x":[0.36],"y":[0.074]},"t":0,"s":[-23]},{"i":{"x":[0.573],"y":[1]},"o":{"x":[0.598],"y":[0]},"t":29.453,"s":[-33]},{"i":{"x":[0.174],"y":[1]},"o":{"x":[0.459],"y":[0]},"t":36,"s":[-33]},{"i":{"x":[0.601],"y":[1]},"o":{"x":[0.48],"y":[0]},"t":110,"s":[-17]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.486],"y":[0]},"t":165,"s":[-24.436]},{"t":197,"s":[-35]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[0]},{"i":{"x":[0.336],"y":[1]},"o":{"x":[0.539],"y":[0]},"t":36,"s":[-7.536]},{"i":{"x":[0.641],"y":[1]},"o":{"x":[0.527],"y":[0]},"t":110,"s":[21.352]},{"i":{"x":[0.515],"y":[1]},"o":{"x":[0.478],"y":[0]},"t":165,"s":[-1.884]},{"t":182,"s":[0]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[125.6,125.6,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":207,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/App/Resources/Lotties/getout_v3_120.json b/App/Resources/Lotties/getout_v3_120.json new file mode 100755 index 000000000..b638a9d07 --- /dev/null +++ b/App/Resources/Lotties/getout_v3_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Adjustment Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.833],"y":[0.634]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[3.448]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":48,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Scale","parent":2,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"arrow","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"circ","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Pupil A 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-350,350,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Pupil A","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[350,350,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Eye A 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"t":57.6,"s":[{"i":[[0,-0.008],[0.008,0],[0,0.008],[-0.008,0]],"o":[[0,0.008],[-0.008,0],[0,-0.008],[0.008,0]],"v":[[0.014,0],[0,0.014],[-0.014,0],[0,-0.014]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Eye A","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"t":57.6,"s":[{"i":[[0,-0.008],[0.008,0],[0,0.008],[-0.008,0]],"o":[[0,0.008],[-0.008,0],[0,-0.008],[0.008,0]],"v":[[0.014,0],[0,0.014],[-0.014,0],[0,-0.014]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilA 2","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":4.8,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"nostrilA","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":4.8,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":4.8,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"mouth","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":14.4,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.271],"y":[0.218]},"t":175,"s":[405]},{"t":6956,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":90,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":102,"s":[120,120,100]},{"t":175,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":90,"op":7198,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.611]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.116],"y":[0.836]},"t":26.469,"s":[0.608]},{"t":90,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":90,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/getout_vP2_120.json b/App/Resources/Lotties/getout_vP2_120.json new file mode 100755 index 000000000..06dcb8158 --- /dev/null +++ b/App/Resources/Lotties/getout_vP2_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":201,"w":260,"h":260,"nm":"_MainThrobber New 120","ddd":0,"assets":[{"id":"comp_0","nm":"Face Mask","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.348],"y":[1]},"o":{"x":[0.161],"y":[0.53]},"t":0,"s":[33.333]},{"t":14.4,"s":[0]}],"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":235.2,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"main_mask","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-24,18.75,0],"ix":2,"l":2},"a":{"a":0,"k":[47.25,82.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.637],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.344],"y":[0]},"t":14.4,"s":[0.2]},{"t":211.2,"s":[3.8]}],"ix":2},"w":135,"h":135,"ip":0,"op":225.6,"st":0,"bm":0}]},{"id":"comp_1","nm":"main_mask","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"eyeL","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[94]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[102.306]},{"t":374.4,"s":[94]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyeR","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[60]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[68.306]},{"t":374.4,"s":[60]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"Jaw Corner","parent":6,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"s":true,"x":{"a":0,"k":-1.75,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.583],"y":[0.46]},"o":{"x":[0.163],"y":[0]},"t":0,"s":[29.75]},{"i":{"x":[0.872],"y":[0.799]},"o":{"x":[0.438],"y":[0.371]},"t":4.8,"s":[34.589]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.082],"y":[0.254]},"t":9.6,"s":[42]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19.2,"s":[49.55]},{"i":{"x":[0.765],"y":[0.591]},"o":{"x":[0.441],"y":[0]},"t":24,"s":[49.55]},{"i":{"x":[0.833],"y":[0.77]},"o":{"x":[0.423],"y":[0.311]},"t":38.4,"s":[52.25]},{"i":{"x":[0.833],"y":[0.836]},"o":{"x":[0.167],"y":[0.141]},"t":48,"s":[56.511]},{"i":{"x":[0.833],"y":[0.815]},"o":{"x":[0.167],"y":[0.175]},"t":62.4,"s":[66.97]},{"i":{"x":[0.833],"y":[0.851]},"o":{"x":[0.167],"y":[0.159]},"t":67.2,"s":[70.229]},{"i":{"x":[0.833],"y":[0.903]},"o":{"x":[0.167],"y":[0.188]},"t":76.8,"s":[77.8]},{"i":{"x":[0.667],"y":[1.389]},"o":{"x":[0.167],"y":[0.259]},"t":86.4,"s":[83.8]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.152]},"t":105.6,"s":[88.3]},{"i":{"x":[0.564],"y":[0.903]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[76.8]},{"i":{"x":[0.657],"y":[1.158]},"o":{"x":[0.297],"y":[0.596]},"t":192,"s":[29.941]},{"i":{"x":[0.765],"y":[0.605]},"o":{"x":[0.393],"y":[0.093]},"t":220.8,"s":[27.722]},{"i":{"x":[0.682],"y":[0.754]},"o":{"x":[0.322],"y":[0.331]},"t":249.6,"s":[32.044]},{"i":{"x":[0.812],"y":[0.807]},"o":{"x":[0.441],"y":[0.444]},"t":264,"s":[35.854]},{"i":{"x":[0.592],"y":[1]},"o":{"x":[0.218],"y":[0.553]},"t":292.8,"s":[41.7]},{"t":388.8,"s":[49.55]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-13,-13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"Lip Corner","parent":7,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0.7,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0]},"t":0,"s":[30.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9.6,"s":[31.2]},{"i":{"x":[0.838],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[31.2]},{"i":{"x":[0.833],"y":[0.533]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[31.283]},{"i":{"x":[0.583],"y":[0.412]},"o":{"x":[0.167],"y":[0.145]},"t":76.8,"s":[31.75]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.417],"y":[0.315]},"t":86.4,"s":[32.5]},{"i":{"x":[0.57],"y":[0.546]},"o":{"x":[0.175],"y":[0.142]},"t":96,"s":[33.9]},{"i":{"x":[0.706],"y":[0.797]},"o":{"x":[0.342],"y":[0.232]},"t":105.6,"s":[35.959]},{"i":{"x":[0.794],"y":[-1.24]},"o":{"x":[0.436],"y":[4.894]},"t":115.2,"s":[39.157]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[39.256]},{"i":{"x":[0.817],"y":[0.591]},"o":{"x":[0.448],"y":[0]},"t":288,"s":[39.089]},{"i":{"x":[0.833],"y":[0.888]},"o":{"x":[0.12],"y":[0.096]},"t":336,"s":[35.4]},{"i":{"x":[0.833],"y":[0.908]},"o":{"x":[0.167],"y":[0.329]},"t":350.4,"s":[32.3]},{"i":{"x":[0.575],"y":[1.021]},"o":{"x":[0.167],"y":[0.323]},"t":364.8,"s":[31.25]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.258],"y":[0.034]},"t":388.8,"s":[30.75]},{"t":456,"s":[31.283]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[13,13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":1,"nm":"Jaw","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.657],"y":[1]},"o":{"x":[0.195],"y":[0.379]},"t":0,"s":[-297.4]},{"i":{"x":[0.502],"y":[1]},"o":{"x":[0.502],"y":[0]},"t":19.2,"s":[-256.5]},{"i":{"x":[0.673],"y":[0.65]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[-256.5]},{"i":{"x":[0.461],"y":[1]},"o":{"x":[0.184],"y":[0.654]},"t":182.4,"s":[0]},{"t":388.8,"s":[103.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0},{"ddd":0,"ind":7,"ty":1,"nm":"Upper Lip","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.689],"y":[0.441]},"o":{"x":[0.368],"y":[0]},"t":57.6,"s":[-297.5]},{"i":{"x":[0.681],"y":[0.669]},"o":{"x":[0.336],"y":[0.31]},"t":182.4,"s":[-180]},{"i":{"x":[0.781],"y":[0.893]},"o":{"x":[0.327],"y":[0.599]},"t":225.6,"s":[-100.674]},{"i":{"x":[0.571],"y":[1]},"o":{"x":[0.237],"y":[0.586]},"t":364.8,"s":[43.794]},{"t":456,"s":[62.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0}]},{"id":"comp_2","nm":"Corner 2","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-53],[13.375,-18.625],[73.868,73.868]],"o":[[24.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true}]},{"t":4.8,"s":[{"i":[[0,-53],[13.375,-18.625],[73.868,73.868]],"o":[[24.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]},{"id":"comp_3","nm":"Corner","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-54.625],[0,-31.75],[0,0]],"o":[[32,0],[43.625,0],[0,0]],"v":[[-24,-20.125],[18.875,24],[33.375,-32.111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Face Mask","td":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[54,54,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.496,0.496,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.353,0.353,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.897],"y":[0.891]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0.123]},{"t":190,"s":[1.786]}],"ix":2},"w":108,"h":108,"ip":6,"op":210,"st":-152,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Blue Circ 2","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":6,"op":208,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Blue Circ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":6,"st":0,"bm":0}],"markers":[{"tm":50,"cm":"loop start","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/getout_vP3_120.json b/App/Resources/Lotties/getout_vP3_120.json new file mode 100755 index 000000000..0413b2ad8 --- /dev/null +++ b/App/Resources/Lotties/getout_vP3_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":0,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":0,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-2.25,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-2.25,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/getout_vP_120.json b/App/Resources/Lotties/getout_vP_120.json new file mode 100755 index 000000000..63cedb955 --- /dev/null +++ b/App/Resources/Lotties/getout_vP_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/getout_vZ_120.json b/App/Resources/Lotties/getout_vZ_120.json new file mode 100755 index 000000000..00b2c6aba --- /dev/null +++ b/App/Resources/Lotties/getout_vZ_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/niggly120.json b/App/Resources/Lotties/niggly120.json new file mode 100755 index 000000000..5dd3f834a --- /dev/null +++ b/App/Resources/Lotties/niggly120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":141,"w":108,"h":108,"nm":"_ niggly 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"_ throbber :0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Main Niggly","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":40,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.772],"y":[0]},"t":43.2,"s":[40]},{"i":{"x":[0.194],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[40.594]},{"t":91.2,"s":[40]}],"ix":4}},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":80,"h":80,"ip":0,"op":148.8,"st":0,"bm":0}]},{"id":"comp_1","nm":"Main Niggly","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"MOUTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-177,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[0.941]},{"t":86.4,"s":[-0.345]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[9.692]},{"t":86.4,"s":[9.893]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":67.2,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-133,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86.4,"s":[-0.133,0.788,0],"to":[0.022,-0.131,0],"ti":[-0.022,0.131,0]},{"t":100.8,"s":[0,0,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.826],"y":[0.677]},"o":{"x":[0.333],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.757],"y":[1]},"o":{"x":[0.375],"y":[0.283]},"t":100.8,"s":[53.922]},{"i":{"x":[0.435],"y":[1]},"o":{"x":[0.314],"y":[0]},"t":124.8,"s":[70]},{"t":139.2,"s":[68]}],"ix":1},"e":{"a":0,"k":32,"ix":2,"x":"var $bm_rt;\n$bm_rt = $bm_sub(100, content('Trim Paths 1').start);"},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86.4,"s":[7]},{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":100.8,"s":[4]},{"t":120,"s":[2.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":86.4,"op":168,"st":-24,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.2,"s":[0,0,0],"to":[0.033,-0.267,0],"ti":[-0.033,0.267,0]},{"t":67.2,"s":[0.2,-1.6,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.717],"y":[0.452]},"o":{"x":[0.418],"y":[0]},"t":19.2,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.138],"y":[0.12]},"t":38.4,"s":[62.291]},{"i":{"x":[0.883],"y":[0.88]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[55.948]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.2],"y":[0.624]},"t":52.8,"s":[52.948]},{"t":67.2,"s":[50]}],"ix":1},"e":{"a":0,"k":32,"ix":2,"x":"var $bm_rt;\n$bm_rt = $bm_sub(100, content('Trim Paths 1').start);"},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.492],"y":[0]},"t":28.8,"s":[2.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[4]},{"t":67.2,"s":[7]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":67.2,"st":-100.8,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"eye rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.745],"y":[0.523]},"o":{"x":[0.559],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.391],"y":[1]},"o":{"x":[0.171],"y":[0.522]},"t":67.2,"s":[48]},{"t":105.6,"s":[95]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"mouth rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.816],"y":[0.511]},"o":{"x":[0.681],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.385],"y":[1]},"o":{"x":[0.159],"y":[0.672]},"t":67.2,"s":[66.35]},{"t":105.6,"s":[133]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"EYE ROT","parent":4,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-44,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-7.97]},{"t":86.4,"s":[-7.709]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.837],"y":[0.546]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.228],"y":[0.132]},"t":67.2,"s":[-6.84]},{"t":86.4,"s":[-6.224]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"MOTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":51,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.909],"y":[0.89]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[6.872]},{"i":{"x":[0.438],"y":[1]},"o":{"x":[0.131],"y":[0.74]},"t":67.2,"s":[8.062]},{"t":86.4,"s":[8.267]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7.137]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-6.568]},{"t":86.4,"s":[-7.187]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":86.4,"st":-9.6,"bm":0}]},{"id":"comp_2","nm":"Eye Eye","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":177.6,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"outline","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":141,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"_ throbber :0","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[190,190,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":141,"s":[1.24]}],"ix":2},"w":80,"h":80,"ip":0,"op":141,"st":0,"bm":0}],"markers":[{"tm":64,"cm":"1","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties/niggly3x120.json b/App/Resources/Lotties/niggly3x120.json new file mode 100755 index 000000000..0e593beb7 --- /dev/null +++ b/App/Resources/Lotties/niggly3x120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":141,"w":108,"h":108,"nm":"_ niggly 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"_ throbber :0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Main Niggly","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":40,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.772],"y":[0]},"t":43.2,"s":[40]},{"i":{"x":[0.194],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[40.594]},{"t":91.2,"s":[40]}],"ix":4}},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":80,"h":80,"ip":0,"op":148.8,"st":0,"bm":0}]},{"id":"comp_1","nm":"Main Niggly","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"MOUTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-177,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[0.941]},{"t":86.4,"s":[-0.345]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[9.692]},{"t":86.4,"s":[9.893]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":67.2,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-133,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86.4,"s":[-0.133,0.788,0],"to":[0.022,-0.131,0],"ti":[-0.022,0.131,0]},{"t":100.8,"s":[0,0,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.681]},"o":{"x":[0.505],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.729],"y":[1]},"o":{"x":[0.167],"y":[0.13]},"t":100.8,"s":[53.922]},{"i":{"x":[0.526],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[70]},{"t":139.2,"s":[68]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.681]},"o":{"x":[0.505],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.729],"y":[1]},"o":{"x":[0.167],"y":[0.13]},"t":100.8,"s":[46.078]},{"i":{"x":[0.526],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[30]},{"t":139.2,"s":[32]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.857],"y":[0.857]},"o":{"x":[0.167],"y":[0.167]},"t":86.4,"s":[7]},{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.172],"y":[0.457]},"t":100.8,"s":[4]},{"t":120,"s":[2.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":86.4,"op":168,"st":-24,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.2,"s":[0,0,0],"to":[0.033,-0.267,0],"ti":[-0.033,0.267,0]},{"t":67.2,"s":[0.2,-1.6,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.749]},"o":{"x":[0.416],"y":[0]},"t":19.2,"s":[68]},{"i":{"x":[0.872],"y":[0.874]},"o":{"x":[0.167],"y":[0.115]},"t":38.4,"s":[62.291]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.18],"y":[0.562]},"t":52.8,"s":[52.948]},{"t":67.2,"s":[50]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.749]},"o":{"x":[0.416],"y":[0]},"t":19.2,"s":[32]},{"i":{"x":[0.874],"y":[0.874]},"o":{"x":[0.167],"y":[0.115]},"t":38.4,"s":[37.709]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.174],"y":[0.551]},"t":52.8,"s":[47.052]},{"t":67.2,"s":[50]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.815],"y":[0.648]},"o":{"x":[0.492],"y":[0]},"t":28.8,"s":[2.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.16],"y":[0.153]},"t":48,"s":[4]},{"t":67.2,"s":[7]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":67.2,"st":-100.8,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"rot","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.745],"y":[0.523]},"o":{"x":[0.559],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.391],"y":[1]},"o":{"x":[0.171],"y":[0.522]},"t":67.2,"s":[48]},{"t":105.6,"s":[95]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"mouth rot","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.816],"y":[0.511]},"o":{"x":[0.681],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.385],"y":[1]},"o":{"x":[0.159],"y":[0.672]},"t":67.2,"s":[66.35]},{"t":105.6,"s":[133]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"EYE ROT","parent":4,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-44,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-7.97]},{"t":86.4,"s":[-7.709]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.837],"y":[0.546]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.228],"y":[0.132]},"t":67.2,"s":[-6.84]},{"t":86.4,"s":[-6.224]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"MOTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":51,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.909],"y":[0.89]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[6.872]},{"i":{"x":[0.438],"y":[1]},"o":{"x":[0.131],"y":[0.74]},"t":67.2,"s":[8.062]},{"t":86.4,"s":[8.267]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7.137]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-6.568]},{"t":86.4,"s":[-7.187]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":86.4,"st":-9.6,"bm":0}]},{"id":"comp_2","nm":"Eye Eye","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":720,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"outline","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":141,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"_ throbber :0","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[190,190,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":141,"s":[1.24]}],"ix":2},"w":80,"h":80,"ip":0,"op":141,"st":0,"bm":0}],"markers":[{"tm":64,"cm":"1","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/GhostAnim.json b/App/Resources/Lotties2/GhostAnim.json new file mode 100755 index 000000000..0a4bc25c0 --- /dev/null +++ b/App/Resources/Lotties2/GhostAnim.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7201,"w":300,"h":300,"nm":"_GhostAnim","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"stroke","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":500,"ix":3},"y":{"a":0,"k":500,"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.67,-0.02],[0,-35.64],[0,0],[-0.698,0.774],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[0.005,1.045],[0,0],[1.636,0.388],[0,0],[-1.502,0.776],[0,0],[1.169,2.261],[25.815,0]],"o":[[-35.625,1.044],[0,0],[0,1.043],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[0.7,0.777],[0,0],[-0.008,-1.681],[0,0],[-1.645,-0.391],[0,0],[2.261,-1.168],[-11.09,-21.453],[-0.666,0]],"v":[[1.12,-83.333],[-63.586,-15.021],[-63.585,81.796],[-61.602,82.559],[-46.88,66.238],[-41.469,66.238],[-27.469,81.758],[-22.058,81.758],[-8.057,66.238],[-2.646,66.238],[11.354,81.758],[16.765,81.758],[30.765,66.238],[36.176,66.238],[50.883,82.541],[52.866,81.774],[52.605,30.958],[49.803,27.439],[-28.921,8.747],[-29.336,5.355],[60.48,-41.031],[62.417,-47.244],[3.124,-83.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":8727,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyes","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":500,"ix":3},"y":{"a":0,"k":500,"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,5.559],[-5.559,0],[0,-5.559],[5.558,0]],"o":[[0,-5.559],[5.559,0],[0,5.559],[-5.558,0]],"v":[[8.759,-49.973],[18.823,-60.038],[28.888,-49.973],[18.823,-39.908]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,5.559],[-5.559,0],[0,-5.559],[5.559,0]],"o":[[0,-5.559],[5.559,0],[0,5.559],[-5.559,0]],"v":[[-31.057,-29.424],[-20.992,-39.489],[-10.928,-29.424],[-20.992,-19.359]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":8727,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":1800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":2800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":3800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":4800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5000,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5200,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5400,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5600,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":5800,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6000,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6200,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6400,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6600,"s":[25]},{"i":{"x":[0.383],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":6800,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.611],"y":[0]},"t":7000,"s":[25]},{"t":7200,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.311],"y":[0.452]},"t":0,"s":[-0.519]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":1916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":2916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":3916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":4916,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5116,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5316,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5516,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5716,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":5916,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6116,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6316,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6516,"s":[2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6716,"s":[-2]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.391],"y":[0]},"t":6916,"s":[2]},{"i":{"x":[0.698],"y":[0.46]},"o":{"x":[0.384],"y":[0]},"t":7116,"s":[-2]},{"t":7200,"s":[-0.519]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":150,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":0,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":1395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":1795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":1805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":2800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":2995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":3395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":3795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":3805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":4800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":4995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5005,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5200,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":5395,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5405,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5600,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":5795,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":5805,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6000,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6195,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6205,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6400,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6595,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6605,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":6800,"s":[150.18]},{"i":{"x":[0],"y":[1]},"o":{"x":[1],"y":[0]},"t":6995,"s":[135]},{"i":{"x":[0.47],"y":[1]},"o":{"x":[0.461],"y":[0]},"t":7005,"s":[135]},{"t":7200,"s":[150.18]}],"ix":4}},"a":{"a":0,"k":[500,500,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.67,-0.02],[0,-35.64],[0,0],[-0.698,0.774],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[-1.447,1.604],[0,0],[-1.447,-1.604],[0,0],[0.005,1.045],[0,0],[1.636,0.388],[0,0],[-1.502,0.776],[0,0],[1.169,2.261],[25.815,0]],"o":[[-35.625,1.044],[0,0],[0,1.043],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[1.447,1.604],[0,0],[1.447,-1.604],[0,0],[0.7,0.777],[0,0],[-0.008,-1.681],[0,0],[-1.645,-0.391],[0,0],[2.261,-1.168],[-11.09,-21.453],[-0.666,0]],"v":[[1.12,-83.333],[-63.586,-15.021],[-63.585,81.796],[-61.602,82.559],[-46.88,66.238],[-41.469,66.238],[-27.469,81.758],[-22.058,81.758],[-8.057,66.238],[-2.646,66.238],[11.354,81.758],[16.765,81.758],[30.765,66.238],[36.176,66.238],[50.883,82.541],[52.866,81.774],[52.605,30.958],[49.803,27.439],[-28.921,8.747],[-29.336,5.355],[60.48,-41.031],[62.417,-47.244],[3.124,-83.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"tr","p":{"a":0,"k":[501.556,501.183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":8727,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/App/Resources/Lotties2/MainThrobberX120.json b/App/Resources/Lotties2/MainThrobberX120.json new file mode 100644 index 000000000..bba7a10a0 --- /dev/null +++ b/App/Resources/Lotties2/MainThrobberX120.json @@ -0,0 +1 @@ +{"v":"5.9.0","fr":120,"ip":0,"op":201,"w":260,"h":260,"nm":"_MainThrobber 120","ddd":0,"assets":[{"id":"comp_0","nm":"Face Mask","fr":25,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.348],"y":[1]},"o":{"x":[0.161],"y":[0.53]},"t":0,"s":[33.333]},{"t":14.4,"s":[0]}],"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":235.2,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"main_mask","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-24,18.75,0],"ix":2,"l":2},"a":{"a":0,"k":[47.25,82.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.637],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.625],"y":[0.091]},"o":{"x":[0.304],"y":[0]},"t":14.4,"s":[0.2]},{"i":{"x":[0.551],"y":[0.681]},"o":{"x":[0.44],"y":[0.495]},"t":124.8,"s":[1.539]},{"t":211.2,"s":[3.8]}],"ix":2},"w":135,"h":135,"ip":0,"op":225.6,"st":0,"bm":0}]},{"id":"comp_1","nm":"main_mask","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"eyeL","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[94]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[102.306]},{"t":374.4,"s":[94]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyeR","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[60]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[68.306]},{"t":374.4,"s":[60]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"Jaw Corner","parent":6,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"s":true,"x":{"a":0,"k":-1.75,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.583],"y":[0.46]},"o":{"x":[0.163],"y":[0]},"t":0,"s":[29.75]},{"i":{"x":[0.872],"y":[0.799]},"o":{"x":[0.438],"y":[0.371]},"t":4.8,"s":[34.589]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.082],"y":[0.254]},"t":9.6,"s":[42]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19.2,"s":[49.55]},{"i":{"x":[0.765],"y":[0.591]},"o":{"x":[0.441],"y":[0]},"t":24,"s":[49.55]},{"i":{"x":[0.722],"y":[0.644]},"o":{"x":[0.423],"y":[0.311]},"t":38.4,"s":[52.25]},{"i":{"x":[0.833],"y":[0.83]},"o":{"x":[0.188],"y":[0.147]},"t":48,"s":[56.511]},{"i":{"x":[0.832],"y":[0.844]},"o":{"x":[0.167],"y":[0.164]},"t":62.4,"s":[66.97]},{"i":{"x":[0.868],"y":[0.857]},"o":{"x":[0.243],"y":[0.272]},"t":76.8,"s":[77.8]},{"i":{"x":[0.667],"y":[1.389]},"o":{"x":[0.219],"y":[0.635]},"t":86.4,"s":[83.8]},{"i":{"x":[0.833],"y":[0.812]},"o":{"x":[0.333],"y":[0.152]},"t":105.6,"s":[88.3]},{"i":{"x":[0.564],"y":[0.903]},"o":{"x":[0.167],"y":[0.161]},"t":124.8,"s":[76.8]},{"i":{"x":[0.657],"y":[1.158]},"o":{"x":[0.297],"y":[0.596]},"t":192,"s":[29.941]},{"i":{"x":[0.862],"y":[0.772]},"o":{"x":[0.393],"y":[0.093]},"t":220.8,"s":[27.722]},{"i":{"x":[0.746],"y":[0.815]},"o":{"x":[0.292],"y":[0.411]},"t":249.6,"s":[32.044]},{"i":{"x":[0.617],"y":[1]},"o":{"x":[0.281],"y":[0.731]},"t":307.2,"s":[42.207]},{"t":456,"s":[49.55]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-13,-13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"Lip Corner","parent":7,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0.7,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0]},"t":0,"s":[30.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9.6,"s":[31.2]},{"i":{"x":[0.832],"y":[0.762]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[31.2]},{"i":{"x":[0.831],"y":[0.726]},"o":{"x":[0.284],"y":[0.041]},"t":57.6,"s":[31.283]},{"i":{"x":[0.583],"y":[0.412]},"o":{"x":[0.32],"y":[0.162]},"t":76.8,"s":[31.75]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.417],"y":[0.315]},"t":86.4,"s":[32.5]},{"i":{"x":[0.57],"y":[0.546]},"o":{"x":[0.175],"y":[0.142]},"t":96,"s":[33.9]},{"i":{"x":[0.835],"y":[0.917]},"o":{"x":[0.342],"y":[0.243]},"t":105.6,"s":[35.959]},{"i":{"x":[0.469],"y":[1]},"o":{"x":[0.265],"y":[0.865]},"t":115.2,"s":[39.019]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[39.256]},{"i":{"x":[0.868],"y":[0.566]},"o":{"x":[0.448],"y":[0]},"t":288,"s":[39.089]},{"i":{"x":[0.756],"y":[0.85]},"o":{"x":[0.212],"y":[0.248]},"t":336,"s":[35.4]},{"i":{"x":[0.833],"y":[0.908]},"o":{"x":[0.177],"y":[0.321]},"t":350.4,"s":[32.3]},{"i":{"x":[0.575],"y":[1.021]},"o":{"x":[0.167],"y":[0.323]},"t":364.8,"s":[31.25]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.258],"y":[0.034]},"t":388.8,"s":[30.75]},{"t":456,"s":[31.283]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[13,13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":1,"nm":"Jaw","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.657],"y":[1]},"o":{"x":[0.195],"y":[0.379]},"t":0,"s":[-297.4]},{"i":{"x":[0.502],"y":[1]},"o":{"x":[0.502],"y":[0]},"t":19.2,"s":[-256.5]},{"i":{"x":[0.673],"y":[0.65]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[-256.5]},{"i":{"x":[0.846],"y":[0.907]},"o":{"x":[0.265],"y":[0.413]},"t":182.4,"s":[0]},{"i":{"x":[0.609],"y":[1]},"o":{"x":[0.217],"y":[0.869]},"t":240,"s":[66.083]},{"t":456,"s":[103.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0},{"ddd":0,"ind":7,"ty":1,"nm":"Upper Lip","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.633],"y":[0.132]},"o":{"x":[0.323],"y":[0]},"t":24,"s":[-297.5]},{"i":{"x":[0.671],"y":[0.674]},"o":{"x":[0.348],"y":[0.332]},"t":182.4,"s":[-180]},{"i":{"x":[0.617],"y":[0.795]},"o":{"x":[0.305],"y":[0.534]},"t":225.6,"s":[-100.674]},{"i":{"x":[0.613],"y":[1]},"o":{"x":[0.247],"y":[0.671]},"t":364.8,"s":[43.794]},{"t":456,"s":[62.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0}]},{"id":"comp_2","nm":"Corner 2","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-53],[10.312,-14.375],[73.868,73.868]],"o":[[22.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]},{"id":"comp_3","nm":"Corner","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-54.625],[0,-25.25],[0,0]],"o":[[28.25,0],[43.625,0],[0,0]],"v":[[-24,-20.125],[18.875,24],[33.375,-32.111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Face Mask","td":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[54,54,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,21.429]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.901],"y":[0.714]},"o":{"x":[0.158],"y":[0]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0.123]},{"t":190,"s":[1.786]}],"ix":2},"w":108,"h":108,"ip":6,"op":210,"st":-152,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Blue Circ 2","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":6,"op":208,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Blue Circ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.553,0.553,0.667],"y":[1,1,1]},"o":{"x":[0.253,0.253,0.167],"y":[0.666,0.666,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.609,0.609,0.667],"y":[1,1,1]},"o":{"x":[0.467,0.467,0.298],"y":[0,0,0]},"t":27,"s":[129.1,129.1,100]},{"i":{"x":[0.373,0.373,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":41,"s":[116.4,116.4,100]},{"t":50,"s":[120,120,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":6,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"loop start","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/TootX120.json b/App/Resources/Lotties2/TootX120.json new file mode 100644 index 000000000..9ad33099e --- /dev/null +++ b/App/Resources/Lotties2/TootX120.json @@ -0,0 +1 @@ +{"v":"5.9.0","fr":120,"ip":0,"op":207,"w":320,"h":320,"nm":"_Toot3x_120","ddd":0,"assets":[{"id":"comp_0","nm":"Note","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"note","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":165,"ix":3},"y":{"a":0,"k":70,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"t":50,"s":[20,20]}],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[10,0],"to":[0,0],"ti":[0,0]},{"t":50,"s":[0,0]}],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"circ_fill","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.505,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[7.75,0.121],[7.75,0.127],[7.75,0.172]],"c":false}]},{"t":50,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[15.875,-22.461],[7.75,-22.5],[7.75,0.016]],"c":false}]}],"ix":2},"nm":"angle","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"angle_stroke","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"stroke","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":96,"st":-55,"bm":0}]},{"id":"comp_1","nm":"tooter 3","fr":120,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 35","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[108,108,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"TootRoll Mask","parent":3,"td":1,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[43.338]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[43.338]},{"t":101,"s":[43.338]}],"ix":3},"y":{"a":0,"k":-15,"ix":4}},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"s","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[131.654,106.5],[105.682,106.5],[105.682,125.199],[131.654,125.199]],"c":true}]},{"t":101,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[137.904,106.5],[111.932,106.5],[111.932,125.199],[137.904,125.199]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"w":216,"h":216,"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"toot","parent":1,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[6.337]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[37]},{"t":100,"s":[68.147]}],"ix":3},"y":{"a":0,"k":15,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.7],"y":[0.216]},"o":{"x":[0.444],"y":[0]},"t":1,"s":[0]},{"i":{"x":[0.623],"y":[1]},"o":{"x":[0.271],"y":[0.319]},"t":5,"s":[0.521]},{"t":15,"s":[4.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"toot mask","parent":3,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[50]},{"t":46,"s":[-9]}],"ix":3},"y":{"a":0,"k":-1,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2.75,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"top","parent":6,"tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-86.4,"ix":10},"p":{"s":true,"x":{"a":0,"k":16.958,"ix":3},"y":{"a":0,"k":1.203,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[10,10]},{"t":50,"s":[11,11]}],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":-39,"s":[0,-7.5],"to":[0,0.051],"ti":[0,0.171]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[0,-8],"to":[0,-0.02],"ti":[0,0.018]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[0,-7.919],"to":[0,-0.034],"ti":[0,0.018]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[0,-8],"to":[0,-0.2],"ti":[0,0.034]},{"t":50,"s":[0,-8.5]}],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":15,"s":[4.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"ctr 5","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42,"ix":3},"y":{"a":0,"k":-5.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"ctr","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[41]},{"t":45,"s":[42]}],"ix":3},"y":{"a":0,"k":-5.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[2,2],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":15,"s":[2.25]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"large","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":42,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-4.5]},{"t":50,"s":[-5.5]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[20,20]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":50,"s":[22,22]},{"t":99,"s":[22,22]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[27.6]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[51]},{"t":99,"s":[100]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.7],"y":[0.216]},"o":{"x":[0.444],"y":[0]},"t":1,"s":[0]},{"i":{"x":[0.623],"y":[1]},"o":{"x":[0.271],"y":[0.319]},"t":5,"s":[0.521]},{"t":15,"s":[4.5]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"top 2","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":14,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"ctr 4","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[6,6],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":160,"s":[33.818]},{"t":177.5,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"ctr 3","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[-450]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[-270]},{"t":200,"s":[-90]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"ip":100,"op":267,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"large 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[28,28],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177.5,"s":[23]},{"t":200,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"bak 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[42.288,-4.125,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[88,88,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[-7.319,0.506],[-4.193,-2.377],[4.119,-2.301],[2.978,0.568]],"o":[[2.064,0],[4.193,2.377],[-1.167,0.305],[-6.539,-5.682]],"v":[[-0.71,-1.27],[4.002,1.349],[0.55,11.056],[0.506,10.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[{"i":[[-7.319,0.506],[-3.67,-3.125],[4.478,-1.483],[2.978,0.568]],"o":[[5.189,0],[3.67,3.125],[-1.203,0.08],[-6.539,-5.682]],"v":[[-0.71,-1.625],[10.041,2.699],[4.688,12.278],[0.506,11.506]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[{"i":[[-7.319,0.506],[-0.723,-10.227],[0.919,2.193],[2.978,0.568]],"o":[[7.319,-0.506],[-4.569,5.114],[-0.919,-2.193],[-6.539,-5.682]],"v":[[-0.71,-1.625],[16.717,14.347],[3.977,14.267],[0.506,11.506]],"c":true}]},{"t":140,"s":[{"i":[[-7.319,0.506],[-0.723,-10.227],[0,11.301],[2.978,0.568]],"o":[[7.319,-0.506],[0,15.057],[4.905,-2.335],[-6.539,-5.682]],"v":[[-0.71,-1.625],[16.717,14.347],[1.42,18.386],[0.506,11.506]],"c":true}]}],"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"bak","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[42.288,-4.125,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[88,88,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-6.075,0],[0,-6.075],[6.075,0],[0,6.075]],"o":[[6.075,0],[0,6.075],[-6.075,0],[0,-6.075]],"v":[[0,-11],[11,0],[0,11],[-11,0]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[-5.762,0],[0,-5.762],[6.359,0],[0.358,5.725]],"o":[[6.684,0],[0,5.762],[-5.762,0],[-0.627,-7.032]],"v":[[0.29,-11.645],[11.306,-0.004],[0.034,11],[-10.32,-1.1]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[-5.579,0],[0,-5.579],[6.524,0],[0.566,5.521]],"o":[[7.039,0],[0,5.579],[-5.579,0],[-0.993,-7.59]],"v":[[0.459,-12.021],[11.485,-0.007],[0.054,11],[-9.642,-1.742]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-5.161,0],[0,-5.161],[6.902,0],[1.043,5.054]],"o":[[5.161,0],[0,5.161],[-5.161,0],[-1.829,-8.865]],"v":[[0.845,-12.553],[11.894,-0.013],[0.099,11],[-8.499,-3.209]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[-4.925,0],[0,-6.601],[6.754,0],[0.896,4.834]],"o":[[5.547,0],[0,5.356],[-4.925,0],[-1.729,-8.396]],"v":[[1.245,-13.198],[12.107,-0.217],[0.125,11],[-6.31,-2.776]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-4.716,0],[0,-6.064],[6.621,0],[0.766,4.638]],"o":[[5.89,0],[0,5.529],[-4.716,0],[-1.639,-7.978]],"v":[[1.601,-13.771],[12.298,-0.399],[0.147,11],[-4.365,-2.391]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[{"i":[[-4.481,0],[0,-5.597],[6.473,0],[0.619,4.418]],"o":[[5.033,0],[0,5.725],[-4.481,0],[0.028,-6.991]],"v":[[4.246,-11.941],[12.324,-0.227],[0.173,11],[-2.176,-1.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[{"i":[[-4.272,0],[0,-5.181],[6.341,0],[0.489,4.222]],"o":[[4.272,0],[0,5.898],[-4.272,0],[0.09,-6.24]],"v":[[6.263,-9.308],[12.347,-0.075],[0.196,11],[-0.23,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-4.089,0],[0,-5.246],[5.675,0],[0.375,4.051]],"o":[[4.089,0],[0,5.336],[-4.089,0],[1.745,-2.124]],"v":[[5.861,-6.854],[12.275,0.417],[0.215,11],[-1.585,0.136]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":84,"s":[{"i":[[-3.376,0],[0,-3.068],[4.914,0],[0.244,3.855]],"o":[[3.3,0],[0,4.693],[-3.88,0],[2.744,-2.799]],"v":[[5.402,-4.05],[11.052,2.5],[0.238,11],[-3.133,2.088]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":92,"s":[{"i":[[-3.671,0],[0,-3.883],[4.154,0],[0.114,3.659]],"o":[[3.671,0],[0,5.426],[-3.671,0],[1.28,-3.166]],"v":[[2.671,-1.872],[8.853,3.665],[0.261,11],[-4.681,3.473]],"c":true}]},{"t":99,"s":[{"i":[[-3.488,0],[0,-3.488],[3.488,0],[0,3.488]],"o":[[3.488,0],[0,3.488],[-3.488,0],[0,-3.488]],"v":[[0.281,-1.632],[6.597,4.684],[0.281,11],[-6.035,4.684]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0}]},{"id":"comp_2","nm":"TootRoll Mask","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"toot 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":107.337,"ix":3},"y":{"a":0,"k":123,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,27.5],[-50,27.5],[-50,-27.5],[50.006,-27.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":3,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":180,"st":0,"bm":0}]},{"id":"comp_3","nm":"Eye Eye","fr":25,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":720,"st":0,"bm":0}]},{"id":"comp_4","nm":"tooter fill","fr":120,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"toot 2","parent":2,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":43,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,-27.5],[50,27.5],[5,27.5],[5,-27.5]],"c":true}]},{"t":73,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[50,-27.5],[50,27.5],[-43.938,27.5],[-43.938,-27.5]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"d":1,"ty":"el","s":{"a":0,"k":[12,12],"ix":2},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[42.06,-6.508],"to":[0.167,-1.589],"ti":[-0.517,1.404]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21.668,"s":[43,-13],"to":[0.583,-1.583],"ti":[-0.417,0.417]},{"t":33.33203125,"s":[45.5,-15.5]}],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"mm","mm":3,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":1,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"toot","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[114.337]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[145]},{"t":100,"s":[176.147]}],"ix":3},"y":{"a":0,"k":123,"ix":4}},"a":{"a":0,"k":[50,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.301960993748,0.301960993748,0.301960993748,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"rc","d":1,"s":{"a":0,"k":[100,11],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":267,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"top","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":20.695,"ix":3},"y":{"a":0,"k":-0.114,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"ctr","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-18]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[90]},{"t":100,"s":[270]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":-8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"large","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":-4.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[20,20],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[20.444]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.168,"s":[23]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[50]},{"t":100,"s":[100]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":1,"op":100,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"top 2","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"s":true,"x":{"a":0,"k":14,"ix":3},"y":{"a":0,"k":0,"ix":4}},"a":{"a":0,"k":[0,14,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[11,11],"ix":2},"p":{"a":0,"k":[0,-8.5],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":0,"k":50,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":180,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"ctr 4","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[6,6],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":160,"s":[33.818]},{"t":177.5,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":3,"nm":"ctr 3","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[-450]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[-270]},{"t":200,"s":[-90]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"ip":100,"op":267,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"large 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-180,"ix":10},"p":{"s":true,"x":{"a":0,"k":42.5,"ix":3},"y":{"a":0,"k":8.5,"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[28,28],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"large","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":150,"s":[50]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":177.5,"s":[23]},{"t":200,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":180,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":100,"op":185,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"scaler","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[160,160,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.333,0.333,0]},"t":0,"s":[0,0,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[129,129,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[117,117,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":50,"s":[120,120,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.291,0.291,0.333],"y":[0,0,0]},"t":152,"s":[120,120,100]},{"i":{"x":[0.822,0.822,0.833],"y":[0.404,0.404,9.327]},"o":{"x":[0.474,0.474,0.333],"y":[0,0,0]},"t":165,"s":[126,126,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.387,0.387,0.167],"y":[0.452,0.452,-7.012]},"t":184,"s":[89.051,89.051,100]},{"t":200,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"Note","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":160,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.477],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[181.101]},{"t":82,"s":[160]}],"ix":4}},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[150.72,150.72,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.382],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":75,"s":[0.417]},{"i":{"x":[0.831],"y":[0.672]},"o":{"x":[0.518],"y":[0]},"t":140,"s":[0.417]},{"t":166,"s":[0]}],"ix":2},"w":216,"h":216,"ip":50,"op":166,"st":50,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"cheek","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[-4.018,17,0],"ix":2,"l":2},"a":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[11,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":35,"s":[14,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[14,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":87,"s":[10.5,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":140,"s":[10.5,0.007,0],"to":[0,0,0],"ti":[0,0,0]},{"t":199,"s":[11,0.007,0]}],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":0,"s":[22,22]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":35,"s":[28,28]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":45,"s":[28,28]},{"i":{"x":[0.833,0.833],"y":[0.921,0.921]},"o":{"x":[0.333,0.333],"y":[0,0]},"t":87,"s":[21,21]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.088,0.088]},"t":140,"s":[21,21]},{"t":199,"s":[22,22]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":165,"s":[73]},{"t":197,"s":[80]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":165,"s":[-220]},{"t":189,"s":[-242.598]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.727],"y":[0.727]},"o":{"x":[0.317],"y":[0]},"t":180,"s":[4.5]},{"t":194,"s":[0]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"cheek mask","parent":10,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[-12.856,13.011,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-74.652],[0,-4.604],[3.729,-4.25],[0,85.5]],"o":[[2.479,2.438],[0,3.964],[0,74.5],[0,-85.5]],"v":[[5.365,-9.49],[10.049,-0.13],[4.375,10.479],[-88.5,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"tooter 3","parent":10,"tt":2,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[23.933,10.159,0],"ix":2,"l":2},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":45,"s":[0.129]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":70,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":75,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":80,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":85,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":90,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":95,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":100,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":105,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":110,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":115,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":120,"s":[1.042]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":125,"s":[1.111]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.266],"y":[0]},"t":130,"s":[1.042]},{"i":{"x":[0.695],"y":[1]},"o":{"x":[0.302],"y":[0]},"t":135,"s":[1.111]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":140,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":165,"s":[0.129]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.597],"y":[0]},"t":175,"s":[0.129]},{"t":194,"s":[0]}],"ix":2},"w":216,"h":216,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Hat","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.767],"y":[0.508]},"o":{"x":[0.495],"y":[0.231]},"t":55,"s":[0]},{"i":{"x":[0.393],"y":[1]},"o":{"x":[0.336],"y":[-0.114]},"t":111,"s":[7.423]},{"t":120,"s":[0]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.374],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[-36.5]},{"i":{"x":[0.782],"y":[0.604]},"o":{"x":[0.427],"y":[0]},"t":87,"s":[-53.419]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.367],"y":[1.2]},"t":111,"s":[-39.419]},{"t":120,"s":[-36.5]}],"ix":4}},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":166,"s":[0,29,0],"to":[0,-1.828,0],"ti":[0,1.828,0]},{"t":193,"s":[0,18.031,0]}],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.66,"y":0},"t":166,"s":[{"i":[[1.397,-3.361],[0,0],[-2.917,0],[0,0],[1.12,2.694],[0,0]],"o":[[0,0],[-1.12,2.694],[0,0],[2.917,0],[0,0],[-1.397,-3.361]],"v":[[-4.592,-18.985],[-23.787,27.195],[-20.01,32.856],[18.379,32.856],[22.157,27.195],[2.962,-18.985]],"c":true}]},{"t":197,"s":[{"i":[[0.007,-0.017],[0,0],[-0.015,0],[0,0],[0.006,0.014],[0,0]],"o":[[0,0],[-0.006,0.014],[0,0],[0.015,0],[0,0],[-0.007,-0.017]],"v":[[-0.835,5.129],[-0.935,5.369],[-0.915,5.398],[-0.715,5.398],[-0.696,5.369],[-0.795,5.129]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.758],"y":[0.25]},"o":{"x":[0.513],"y":[0]},"t":166,"s":[4.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.354],"y":[0.237]},"t":184,"s":[3.441]},{"t":193,"s":[1]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"EyeL","parent":10,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"s":true,"x":{"a":0,"k":-4.238,"ix":3},"y":{"a":0,"k":-10.49,"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.764,0.764,0.711],"y":[0.422,0.422,31.138]},"o":{"x":[0.431,0.431,0.302],"y":[0,0,0]},"t":165.002,"s":[175,175,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,18.588]},"o":{"x":[0.416,0.416,0.425],"y":[0.301,0.301,-12.426]},"t":190.002,"s":[85,85,100]},{"t":197.0015625,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":194,"st":-9.6,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"EyeR","parent":10,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"s":true,"x":{"a":0,"k":18.774,"ix":3},"y":{"a":0,"k":-0.722,"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.764,0.764,0.711],"y":[0.422,0.422,1]},"o":{"x":[0.431,0.431,0.302],"y":[0,0,0]},"t":165.002,"s":[175,175,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.416,0.416,0.425],"y":[0.301,0.301,0]},"t":190.002,"s":[85,85,100]},{"t":197.0015625,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":194,"st":-9.6,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"tooter fill","parent":10,"td":1,"refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":23,"ix":10},"p":{"a":0,"k":[23.933,10.159,0],"ix":2,"l":2},"a":{"a":0,"k":[108,108,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"s","pt":{"a":0,"k":{"i":[[12.725,0],[0,-8.265],[-12.725,0],[0,8.264]],"o":[[-12.725,0],[0,8.265],[12.725,0],[0,-8.264]],"v":[[62.8,110.188],[39.759,125.152],[62.8,140.116],[85.841,125.152]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"tm":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":45,"s":[0.129]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":140,"s":[1.042]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.597],"y":[0]},"t":165,"s":[0.129]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.597],"y":[0]},"t":175,"s":[0.129]},{"t":194,"s":[0]}],"ix":2},"w":216,"h":216,"ip":0,"op":207,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"hed","parent":1,"tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.576],"y":[1]},"o":{"x":[0.36],"y":[0.074]},"t":0,"s":[-23]},{"i":{"x":[0.573],"y":[1]},"o":{"x":[0.598],"y":[0]},"t":29.453,"s":[-33]},{"i":{"x":[0.174],"y":[1]},"o":{"x":[0.459],"y":[0]},"t":36,"s":[-33]},{"i":{"x":[0.601],"y":[1]},"o":{"x":[0.48],"y":[0]},"t":110,"s":[-17]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.486],"y":[0]},"t":165,"s":[-24.436]},{"t":197,"s":[-35]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[0]},{"i":{"x":[0.336],"y":[1]},"o":{"x":[0.539],"y":[0]},"t":36,"s":[-7.536]},{"i":{"x":[0.641],"y":[1]},"o":{"x":[0.527],"y":[0]},"t":110,"s":[21.352]},{"i":{"x":[0.515],"y":[1]},"o":{"x":[0.478],"y":[0]},"t":165,"s":[-1.884]},{"t":182,"s":[0]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[125.6,125.6,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":207,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/App/Resources/Lotties2/getout_v3_120.json b/App/Resources/Lotties2/getout_v3_120.json new file mode 100755 index 000000000..b638a9d07 --- /dev/null +++ b/App/Resources/Lotties2/getout_v3_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Adjustment Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.833],"y":[0.634]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[3.448]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":48,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Scale","parent":2,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"arrow","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"circ","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":4.8,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Pupil A 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-350,350,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Pupil A","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[350,350,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Eye A 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"t":57.6,"s":[{"i":[[0,-0.008],[0.008,0],[0,0.008],[-0.008,0]],"o":[[0,0.008],[-0.008,0],[0,-0.008],[0.008,0]],"v":[[0.014,0],[0,0.014],[-0.014,0],[0,-0.014]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Eye A","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"t":57.6,"s":[{"i":[[0,-0.008],[0.008,0],[0,0.008],[-0.008,0]],"o":[[0,0.008],[-0.008,0],[0,-0.008],[0.008,0]],"v":[[0.014,0],[0,0.014],[-0.014,0],[0,-0.014]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":62.4,"st":4.8,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilA 2","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":4.8,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"nostrilA","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":4.8,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":4.8,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"mouth","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":14.4,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.271],"y":[0.218]},"t":175,"s":[405]},{"t":6956,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":90,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":102,"s":[120,120,100]},{"t":175,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":90,"op":7198,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.611]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.116],"y":[0.836]},"t":26.469,"s":[0.608]},{"t":90,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":90,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/getout_vP2_120.json b/App/Resources/Lotties2/getout_vP2_120.json new file mode 100755 index 000000000..06dcb8158 --- /dev/null +++ b/App/Resources/Lotties2/getout_vP2_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":201,"w":260,"h":260,"nm":"_MainThrobber New 120","ddd":0,"assets":[{"id":"comp_0","nm":"Face Mask","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.348],"y":[1]},"o":{"x":[0.161],"y":[0.53]},"t":0,"s":[33.333]},{"t":14.4,"s":[0]}],"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":235.2,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"main_mask","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-24,18.75,0],"ix":2,"l":2},"a":{"a":0,"k":[47.25,82.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.637],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.344],"y":[0]},"t":14.4,"s":[0.2]},{"t":211.2,"s":[3.8]}],"ix":2},"w":135,"h":135,"ip":0,"op":225.6,"st":0,"bm":0}]},{"id":"comp_1","nm":"main_mask","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"eyeL","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[94]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[102.306]},{"t":374.4,"s":[94]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"eyeR","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-21.5,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[60]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":139.2,"s":[68.306]},{"t":374.4,"s":[60]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.414,0.414],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[0,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.385,0.385],"y":[0,0]},"t":23.892,"s":[16,16]},{"i":{"x":[0.766,0.766],"y":[0.538,0.538]},"o":{"x":[0.398,0.398],"y":[0,0]},"t":57.6,"s":[16,16]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[-15.144,-15.144]},"t":139.2,"s":[0,0]},{"i":{"x":[0.516,0.516],"y":[1,1]},"o":{"x":[0.358,0.358],"y":[0.872,0.872]},"t":374.4,"s":[0,0]},{"t":456,"s":[16,16]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":-14.4,"op":465.6,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"Jaw Corner","parent":6,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"s":true,"x":{"a":0,"k":-1.75,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.583],"y":[0.46]},"o":{"x":[0.163],"y":[0]},"t":0,"s":[29.75]},{"i":{"x":[0.872],"y":[0.799]},"o":{"x":[0.438],"y":[0.371]},"t":4.8,"s":[34.589]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.082],"y":[0.254]},"t":9.6,"s":[42]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19.2,"s":[49.55]},{"i":{"x":[0.765],"y":[0.591]},"o":{"x":[0.441],"y":[0]},"t":24,"s":[49.55]},{"i":{"x":[0.833],"y":[0.77]},"o":{"x":[0.423],"y":[0.311]},"t":38.4,"s":[52.25]},{"i":{"x":[0.833],"y":[0.836]},"o":{"x":[0.167],"y":[0.141]},"t":48,"s":[56.511]},{"i":{"x":[0.833],"y":[0.815]},"o":{"x":[0.167],"y":[0.175]},"t":62.4,"s":[66.97]},{"i":{"x":[0.833],"y":[0.851]},"o":{"x":[0.167],"y":[0.159]},"t":67.2,"s":[70.229]},{"i":{"x":[0.833],"y":[0.903]},"o":{"x":[0.167],"y":[0.188]},"t":76.8,"s":[77.8]},{"i":{"x":[0.667],"y":[1.389]},"o":{"x":[0.167],"y":[0.259]},"t":86.4,"s":[83.8]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.152]},"t":105.6,"s":[88.3]},{"i":{"x":[0.564],"y":[0.903]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[76.8]},{"i":{"x":[0.657],"y":[1.158]},"o":{"x":[0.297],"y":[0.596]},"t":192,"s":[29.941]},{"i":{"x":[0.765],"y":[0.605]},"o":{"x":[0.393],"y":[0.093]},"t":220.8,"s":[27.722]},{"i":{"x":[0.682],"y":[0.754]},"o":{"x":[0.322],"y":[0.331]},"t":249.6,"s":[32.044]},{"i":{"x":[0.812],"y":[0.807]},"o":{"x":[0.441],"y":[0.444]},"t":264,"s":[35.854]},{"i":{"x":[0.592],"y":[1]},"o":{"x":[0.218],"y":[0.553]},"t":292.8,"s":[41.7]},{"t":388.8,"s":[49.55]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-13,-13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"Lip Corner","parent":7,"refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0.7,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.215],"y":[0]},"t":0,"s":[30.9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9.6,"s":[31.2]},{"i":{"x":[0.838],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[31.2]},{"i":{"x":[0.833],"y":[0.533]},"o":{"x":[1],"y":[0]},"t":57.6,"s":[31.283]},{"i":{"x":[0.583],"y":[0.412]},"o":{"x":[0.167],"y":[0.145]},"t":76.8,"s":[31.75]},{"i":{"x":[0.833],"y":[0.801]},"o":{"x":[0.417],"y":[0.315]},"t":86.4,"s":[32.5]},{"i":{"x":[0.57],"y":[0.546]},"o":{"x":[0.175],"y":[0.142]},"t":96,"s":[33.9]},{"i":{"x":[0.706],"y":[0.797]},"o":{"x":[0.342],"y":[0.232]},"t":105.6,"s":[35.959]},{"i":{"x":[0.794],"y":[-1.24]},"o":{"x":[0.436],"y":[4.894]},"t":115.2,"s":[39.157]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[39.256]},{"i":{"x":[0.817],"y":[0.591]},"o":{"x":[0.448],"y":[0]},"t":288,"s":[39.089]},{"i":{"x":[0.833],"y":[0.888]},"o":{"x":[0.12],"y":[0.096]},"t":336,"s":[35.4]},{"i":{"x":[0.833],"y":[0.908]},"o":{"x":[0.167],"y":[0.329]},"t":350.4,"s":[32.3]},{"i":{"x":[0.575],"y":[1.021]},"o":{"x":[0.167],"y":[0.323]},"t":364.8,"s":[31.25]},{"i":{"x":[0.604],"y":[1]},"o":{"x":[0.258],"y":[0.034]},"t":388.8,"s":[30.75]},{"t":456,"s":[31.283]}],"ix":4}},"a":{"a":0,"k":[48,0,0],"ix":1,"l":2},"s":{"a":0,"k":[13,13,100],"ix":6,"l":2}},"ao":0,"w":48,"h":48,"ip":0,"op":460.8,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":1,"nm":"Jaw","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.657],"y":[1]},"o":{"x":[0.195],"y":[0.379]},"t":0,"s":[-297.4]},{"i":{"x":[0.502],"y":[1]},"o":{"x":[0.502],"y":[0]},"t":19.2,"s":[-256.5]},{"i":{"x":[0.673],"y":[0.65]},"o":{"x":[0.333],"y":[0]},"t":24,"s":[-256.5]},{"i":{"x":[0.461],"y":[1]},"o":{"x":[0.184],"y":[0.654]},"t":182.4,"s":[0]},{"t":388.8,"s":[103.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0},{"ddd":0,"ind":7,"ty":1,"nm":"Upper Lip","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.689],"y":[0.441]},"o":{"x":[0.368],"y":[0]},"t":57.6,"s":[-297.5]},{"i":{"x":[0.681],"y":[0.669]},"o":{"x":[0.336],"y":[0.31]},"t":182.4,"s":[-180]},{"i":{"x":[0.781],"y":[0.893]},"o":{"x":[0.327],"y":[0.599]},"t":225.6,"s":[-100.674]},{"i":{"x":[0.571],"y":[1]},"o":{"x":[0.237],"y":[0.586]},"t":364.8,"s":[43.794]},{"t":456,"s":[62.5]}],"ix":10},"p":{"a":0,"k":[47.057,83.476,0],"ix":2,"l":2},"a":{"a":0,"k":[0,112.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":225,"sh":225,"sc":"#ff3838","ip":0,"op":480,"st":-216,"bm":0}]},{"id":"comp_2","nm":"Corner 2","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-53],[13.375,-18.625],[73.868,73.868]],"o":[[24.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true}]},{"t":4.8,"s":[{"i":[[0,-53],[13.375,-18.625],[73.868,73.868]],"o":[[24.5,0],[-12,27.5],[0,-11.514]],"v":[[-19.75,-11.25],[-2.562,21.125],[25.125,-26.236]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]},{"id":"comp_3","nm":"Corner","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[24,24,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-54.625],[0,-31.75],[0,0]],"o":[[32,0],[43.625,0],[0,0]],"v":[[-24,-20.125],[18.875,24],[33.375,-32.111]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":460.8,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Face Mask","td":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[54,54,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.496,0.496,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.353,0.353,0.819],"y":[1,1,1]},"o":{"x":[0.372,0.372,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.897],"y":[0.891]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0.123]},{"t":190,"s":[1.786]}],"ix":2},"w":108,"h":108,"ip":6,"op":210,"st":-152,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Blue Circ 2","tt":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":6,"op":208,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Blue Circ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[130,130,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.633,0.633,0.667],"y":[1,1,1]},"o":{"x":[0.38,0.38,0.332],"y":[0.65,0.65,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.528,0.528,0.667],"y":[1,1,1]},"o":{"x":[0.382,0.382,0.298],"y":[0,0,0]},"t":21,"s":[105,105,100]},{"i":{"x":[0.565,0.565,0.819],"y":[1,1,1]},"o":{"x":[0.36,0.36,0.333],"y":[0,0,0]},"t":36,"s":[97.5,97.5,100]},{"t":50,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"circ","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.40000000596,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":6,"st":0,"bm":0}],"markers":[{"tm":50,"cm":"loop start","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/getout_vP3_120.json b/App/Resources/Lotties2/getout_vP3_120.json new file mode 100755 index 000000000..0413b2ad8 --- /dev/null +++ b/App/Resources/Lotties2/getout_vP3_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":0,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":0,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-2.25,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-2.25,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/getout_vP_120.json b/App/Resources/Lotties2/getout_vP_120.json new file mode 100755 index 000000000..63cedb955 --- /dev/null +++ b/App/Resources/Lotties2/getout_vP_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Outline","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/getout_vZ_120.json b/App/Resources/Lotties2/getout_vZ_120.json new file mode 100755 index 000000000..00b2c6aba --- /dev/null +++ b/App/Resources/Lotties2/getout_vZ_120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":7198,"w":180,"h":180,"nm":"_FrogRefresh 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"FrogAnim master","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.76],"y":[0.283]},"o":{"x":[0.397],"y":[0]},"t":38.4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.162],"y":[0.128]},"t":76.8,"s":[20.301]},{"t":120,"s":[107]}],"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":38.4,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Scale","parent":1,"hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[100,100,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]},"t":9.6,"s":[97.6,97.6,100]},{"t":120,"s":[40,40,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"arrow","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[152]},{"t":120,"s":[117]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81.6,"s":[-73.325,1.854,0],"to":[-0.507,0.591,0],"ti":[0.507,-0.591,0]},{"t":120,"s":[-76.366,5.397,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[250,250,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":0,"k":[100,100],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[45.5]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":76.8,"s":[50]},{"t":120,"s":[54.5]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81.6,"s":[3]},{"t":105.6,"s":[4]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":76.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":4.8,"s":[144,144]},{"t":120,"s":[60,60]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":35,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.347],"y":[0.155]},"t":62.4,"s":[0]},{"t":120,"s":[22]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62.4,"s":[-162.631]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[-165.192]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[-166.996]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76.8,"s":[-168.8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91.2,"s":[-178]},{"t":120,"s":[-187]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":52.8,"op":283.2,"st":-67.2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"PupilA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"PupilB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,17.26]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[400,400,100]},{"t":52.8,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-0.869],[0.869,0],[0,0.869],[-0.869,0]],"o":[[0,0.869],[-0.869,0],[0,-0.869],[0.869,0]],"v":[[1.573,0],[0,1.573],[-1.573,0],[0,-1.573]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57.6,"s":[{"i":[[0,-0.543],[0.543,0],[0,0.543],[-0.543,0]],"o":[[0,0.543],[-0.543,0],[0,-0.543],[0.543,0]],"v":[[0.984,0],[0,0.984],[-0.984,0],[0,-0.984]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.017],[0.017,0],[0,0.017],[-0.017,0]],"o":[[0,0.017],[-0.017,0],[0,-0.017],[0.017,0]],"v":[[0.031,0],[0,0.031],[-0.031,0],[0,-0.031]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"PupilB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":57.6,"st":-67.2,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"EyeA","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":-36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeA_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"EyeB","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":36.988,"ix":3},"y":{"a":0,"k":-36.826,"ix":4}},"a":{"a":0,"k":[7.864,7.863,0],"ix":1,"l":2},"s":{"a":0,"k":[-325,325,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,-2.876],[2.876,0],[0,2.876],[-2.876,0]],"o":[[0,2.876],[-2.876,0],[0,-2.876],[2.876,0]],"v":[[5.208,0],[0,5.208],[-5.208,0],[0,-5.208]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52.8,"s":[{"i":[[0,-0.247],[0.247,0],[0,0.247],[-0.247,0]],"o":[[0,0.247],[-0.247,0],[0,-0.247],[0.247,0]],"v":[[0.447,0],[0,0.447],[-0.447,0],[0,-0.447]],"c":true}]},{"t":62.4,"s":[{"i":[[0,-0.244],[0.244,0],[0,0.244],[-0.244,0]],"o":[[0,0.244],[-0.244,0],[0,-0.244],[0.244,0]],"v":[[0.441,0],[0,0.441],[-0.441,0],[0,-0.441]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52.8,"s":[1.5]},{"t":62.4,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[7.864,7.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"EyeB_Fill","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":62.4,"st":-67.2,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"nostrilA","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":24.486,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[-130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"nostrilB","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":30.936,"ix":3},"y":{"a":0,"k":-1.84,"ix":4}},"a":{"a":0,"k":[0.952,1.321,0],"ix":1,"l":2},"s":{"a":1,"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]},"t":0,"s":[130,130,100]},{"t":38.4,"s":[0,0,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.522,0],[0,0.616],[0.522,0],[0,-0.616]],"o":[[0.522,0],[0,-0.616],[-0.522,0],[0,0.616]],"v":[[-0.041,1.143],[0.795,0.163],[-0.041,-0.952],[-0.878,0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.952,1.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true}],"ip":0,"op":38.4,"st":-67.2,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"mouth","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":0,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[3]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[3]},{"t":100.8,"s":[3.937]}],"ix":4}},"a":{"a":0,"k":[27.711,4.968,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4.8,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,1.219],[0.001,-1.219],[23.961,1.219]],"c":false}]},{"t":48,"s":[{"i":[[0,0],[-14.152,0],[0,0]],"o":[[0,0],[14.152,0],[0,0]],"v":[[-23.961,-0.216],[0.001,-0.262],[23.961,-0.216]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4.8,"s":[1.5]},{"t":81.6,"s":[2]}],"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.711,4.968],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":1,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":96,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":91.2,"st":-57.6,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"outline","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-0.001,0],"ix":2,"l":2},"a":{"a":0,"k":[26.505,26.505,0],"ix":1,"l":2},"s":{"a":0,"k":[300,300,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[6.471,0],[2.723,-2.392],[1.566,0],[0,0],[0,0.012],[1.177,1.034],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.177,1.034],[0,0],[-0.001,-0.013],[-1.566,0],[-2.445,-2.147],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[24,-12.282],[12.329,-24],[4.1,-20.479],[0.001,-18.638],[0.001,-18.599],[-0.001,-18.638],[-4.1,-20.479],[-12.28,-23.996],[-24,-12.42],[-23.998,12.282],[-12.28,24],[12.282,24],[24,12.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9.6,"s":[{"i":[[0,0],[6.471,0],[2.451,-2.153],[1.566,0],[0,0],[0,0.012],[1.059,0.931],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[-1.059,0.931],[0,0],[-0.001,-0.013],[-1.566,0],[-2.201,-1.932],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[23.433,-11.699],[11.762,-23.417],[3.933,-20.246],[0.001,-18.59],[0.001,-18.551],[-0.001,-18.59],[-3.933,-20.247],[-11.713,-23.413],[-23.433,-11.837],[-23.431,11.707],[-11.713,23.425],[11.715,23.425],[23.433,11.707]],"c":true}]},{"t":52.8,"s":[{"i":[[0,0],[6.471,0],[0,0],[1.566,0],[0,0],[0,0.012],[0,0],[3.577,0],[0,-6.34],[0,0],[-6.472,0],[0,0],[0,6.472]],"o":[[0,-6.471],[-3.328,0],[0,0],[0,0],[-0.001,-0.013],[-1.566,0],[0,0],[-6.327,0],[0,0],[0,6.472],[0,0],[6.472,0],[0,0]],"v":[[18.333,-6.449],[6.662,-18.167],[2.433,-18.151],[0.001,-18.153],[0.001,-18.114],[-0.001,-18.153],[-2.433,-18.156],[-6.613,-18.163],[-18.333,-6.587],[-18.331,6.532],[-6.613,18.25],[6.615,18.25],[18.333,6.532]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960784314,0.301960784314,0.301960784314,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[26.505,26.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52.8,"st":-67.2,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"rotate","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.627],"y":[0.78]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.747],"y":[0.745]},"t":135,"s":[405]},{"t":7197,"s":[21270.775]}],"ix":10},"p":{"a":0,"k":[90,90,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.15,0.15,0.667],"y":[1,1,1]},"o":{"x":[0.246,0.246,0.333],"y":[0,0,0]},"t":50,"s":[100,100,100]},{"i":{"x":[0.517,0.517,0.667],"y":[1,1,1]},"o":{"x":[0.459,0.459,0.333],"y":[0,0,0]},"t":62,"s":[120,120,100]},{"t":135,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":50,"op":7198,"st":-40,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"FrogAnim master","parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2,"l":2},"a":{"a":0,"k":[150,150,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.799],"y":[0.602]},"o":{"x":[0.651],"y":[0.159]},"t":0,"s":[0]},{"i":{"x":[0.495],"y":[1]},"o":{"x":[0.217],"y":[0.591]},"t":26.469,"s":[0.608]},{"t":50,"s":[1]}],"ix":2},"w":300,"h":300,"ip":0,"op":7198,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"1","dr":0},{"tm":50,"cm":"refresh","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/niggly120.json b/App/Resources/Lotties2/niggly120.json new file mode 100755 index 000000000..5dd3f834a --- /dev/null +++ b/App/Resources/Lotties2/niggly120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":141,"w":108,"h":108,"nm":"_ niggly 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"_ throbber :0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Main Niggly","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":40,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.772],"y":[0]},"t":43.2,"s":[40]},{"i":{"x":[0.194],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[40.594]},{"t":91.2,"s":[40]}],"ix":4}},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":80,"h":80,"ip":0,"op":148.8,"st":0,"bm":0}]},{"id":"comp_1","nm":"Main Niggly","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"MOUTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-177,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[0.941]},{"t":86.4,"s":[-0.345]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[9.692]},{"t":86.4,"s":[9.893]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":67.2,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-133,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86.4,"s":[-0.133,0.788,0],"to":[0.022,-0.131,0],"ti":[-0.022,0.131,0]},{"t":100.8,"s":[0,0,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.826],"y":[0.677]},"o":{"x":[0.333],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.757],"y":[1]},"o":{"x":[0.375],"y":[0.283]},"t":100.8,"s":[53.922]},{"i":{"x":[0.435],"y":[1]},"o":{"x":[0.314],"y":[0]},"t":124.8,"s":[70]},{"t":139.2,"s":[68]}],"ix":1},"e":{"a":0,"k":32,"ix":2,"x":"var $bm_rt;\n$bm_rt = $bm_sub(100, content('Trim Paths 1').start);"},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86.4,"s":[7]},{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":100.8,"s":[4]},{"t":120,"s":[2.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":86.4,"op":168,"st":-24,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.2,"s":[0,0,0],"to":[0.033,-0.267,0],"ti":[-0.033,0.267,0]},{"t":67.2,"s":[0.2,-1.6,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.717],"y":[0.452]},"o":{"x":[0.418],"y":[0]},"t":19.2,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.138],"y":[0.12]},"t":38.4,"s":[62.291]},{"i":{"x":[0.883],"y":[0.88]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[55.948]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.2],"y":[0.624]},"t":52.8,"s":[52.948]},{"t":67.2,"s":[50]}],"ix":1},"e":{"a":0,"k":32,"ix":2,"x":"var $bm_rt;\n$bm_rt = $bm_sub(100, content('Trim Paths 1').start);"},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.492],"y":[0]},"t":28.8,"s":[2.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[4]},{"t":67.2,"s":[7]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":67.2,"st":-100.8,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"eye rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.745],"y":[0.523]},"o":{"x":[0.559],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.391],"y":[1]},"o":{"x":[0.171],"y":[0.522]},"t":67.2,"s":[48]},{"t":105.6,"s":[95]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"mouth rotate","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.816],"y":[0.511]},"o":{"x":[0.681],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.385],"y":[1]},"o":{"x":[0.159],"y":[0.672]},"t":67.2,"s":[66.35]},{"t":105.6,"s":[133]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"EYE ROT","parent":4,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-44,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-7.97]},{"t":86.4,"s":[-7.709]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.837],"y":[0.546]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.228],"y":[0.132]},"t":67.2,"s":[-6.84]},{"t":86.4,"s":[-6.224]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"MOTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":51,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.909],"y":[0.89]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[6.872]},{"i":{"x":[0.438],"y":[1]},"o":{"x":[0.131],"y":[0.74]},"t":67.2,"s":[8.062]},{"t":86.4,"s":[8.267]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7.137]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-6.568]},{"t":86.4,"s":[-7.187]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":86.4,"st":-9.6,"bm":0}]},{"id":"comp_2","nm":"Eye Eye","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":177.6,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"outline","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":141,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"_ throbber :0","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[190,190,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":141,"s":[1.24]}],"ix":2},"w":80,"h":80,"ip":0,"op":141,"st":0,"bm":0}],"markers":[{"tm":64,"cm":"1","dr":0}]} \ No newline at end of file diff --git a/App/Resources/Lotties2/niggly3x120.json b/App/Resources/Lotties2/niggly3x120.json new file mode 100755 index 000000000..0e593beb7 --- /dev/null +++ b/App/Resources/Lotties2/niggly3x120.json @@ -0,0 +1 @@ +{"v":"5.7.13","fr":120,"ip":0,"op":141,"w":108,"h":108,"nm":"_ niggly 3x 120","ddd":0,"assets":[{"id":"comp_0","nm":"_ throbber :0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Main Niggly","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":40,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.772],"y":[0]},"t":43.2,"s":[40]},{"i":{"x":[0.194],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":67.2,"s":[40.594]},{"t":91.2,"s":[40]}],"ix":4}},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":80,"h":80,"ip":0,"op":148.8,"st":0,"bm":0}]},{"id":"comp_1","nm":"Main Niggly","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"MOUTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-177,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[0.941]},{"t":86.4,"s":[-0.345]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[9.692]},{"t":86.4,"s":[9.893]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":67.2,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-133,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86.4,"s":[-0.133,0.788,0],"to":[0.022,-0.131,0],"ti":[-0.022,0.131,0]},{"t":100.8,"s":[0,0,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.681]},"o":{"x":[0.505],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.729],"y":[1]},"o":{"x":[0.167],"y":[0.13]},"t":100.8,"s":[53.922]},{"i":{"x":[0.526],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[70]},{"t":139.2,"s":[68]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.681]},"o":{"x":[0.505],"y":[0]},"t":86.4,"s":[50]},{"i":{"x":[0.729],"y":[1]},"o":{"x":[0.167],"y":[0.13]},"t":100.8,"s":[46.078]},{"i":{"x":[0.526],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":124.8,"s":[30]},{"t":139.2,"s":[32]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.857],"y":[0.857]},"o":{"x":[0.167],"y":[0.167]},"t":86.4,"s":[7]},{"i":{"x":[0.508],"y":[1]},"o":{"x":[0.172],"y":[0.457]},"t":100.8,"s":[4]},{"t":120,"s":[2.5]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":86.4,"op":168,"st":-24,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"mouth","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.2,"s":[0,0,0],"to":[0.033,-0.267,0],"ti":[-0.033,0.267,0]},{"t":67.2,"s":[0.2,-1.6,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[23,23],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.749]},"o":{"x":[0.416],"y":[0]},"t":19.2,"s":[68]},{"i":{"x":[0.872],"y":[0.874]},"o":{"x":[0.167],"y":[0.115]},"t":38.4,"s":[62.291]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.18],"y":[0.562]},"t":52.8,"s":[52.948]},{"t":67.2,"s":[50]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.749]},"o":{"x":[0.416],"y":[0]},"t":19.2,"s":[32]},{"i":{"x":[0.874],"y":[0.874]},"o":{"x":[0.167],"y":[0.115]},"t":38.4,"s":[37.709]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.174],"y":[0.551]},"t":52.8,"s":[47.052]},{"t":67.2,"s":[50]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.815],"y":[0.648]},"o":{"x":[0.492],"y":[0]},"t":28.8,"s":[2.5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.16],"y":[0.153]},"t":48,"s":[4]},{"t":67.2,"s":[7]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":67.2,"st":-100.8,"bm":0},{"ddd":0,"ind":4,"ty":3,"nm":"rot","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.745],"y":[0.523]},"o":{"x":[0.559],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.391],"y":[1]},"o":{"x":[0.171],"y":[0.522]},"t":67.2,"s":[48]},{"t":105.6,"s":[95]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"mouth rot","hd":true,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.816],"y":[0.511]},"o":{"x":[0.681],"y":[0]},"t":43.2,"s":[0]},{"i":{"x":[0.385],"y":[1]},"o":{"x":[0.159],"y":[0.672]},"t":67.2,"s":[66.35]},{"t":105.6,"s":[133]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":168,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"EYE ROT","parent":4,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-44,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-7.97]},{"t":86.4,"s":[-7.709]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.837],"y":[0.546]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.228],"y":[0.132]},"t":67.2,"s":[-6.84]},{"t":86.4,"s":[-6.224]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":168,"st":-9.6,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"MOTH ROT","parent":5,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":51,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.909],"y":[0.89]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[6.872]},{"i":{"x":[0.438],"y":[1]},"o":{"x":[0.131],"y":[0.74]},"t":67.2,"s":[8.062]},{"t":86.4,"s":[8.267]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":43.2,"s":[-7.137]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":67.2,"s":[-6.568]},{"t":86.4,"s":[-7.187]}],"ix":4}},"a":{"a":0,"k":[3.5,3.5,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":7,"h":7,"ip":0,"op":86.4,"st":-9.6,"bm":0}]},{"id":"comp_2","nm":"Eye Eye","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.5,3.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[7,7],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":720,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"outline","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"d":1,"ty":"el","s":{"a":0,"k":[80,80],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.301960796118,0.301960796118,0.301960796118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":4.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":141,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"_ throbber :0","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[54,54,0],"ix":2,"l":2},"a":{"a":0,"k":[40,40,0],"ix":1,"l":2},"s":{"a":0,"k":[190,190,100],"ix":6,"l":2}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":141,"s":[1.24]}],"ix":2},"w":80,"h":80,"ip":0,"op":141,"st":0,"bm":0}],"markers":[{"tm":64,"cm":"1","dr":0}]} \ No newline at end of file diff --git a/App/Resources/RenderView.js b/App/Resources/RenderView.js index 47749752b..510154118 100644 --- a/App/Resources/RenderView.js +++ b/App/Resources/RenderView.js @@ -59,11 +59,34 @@ Awful.embedTweets = function() { didCompleteFetch(); }; - script.onerror = function() { - cleanUp(this); - console.error(`The embed markup for tweet ${tweetID} failed to load`); - didCompleteFetch(); - }; + script.onerror = function() { + cleanUp(this); + + console.error(`The embed markup for tweet ${tweetID} failed to load`); + + tweetIDsToLinks[tweetID].forEach(function(a) { + if (a.parentNode) { + var div = document.createElement('div'); + div.classList.add('dead-tweet-container'); + div.innerHTML = Awful.deadTweetBadgeHTML(a.href.toString(), `${tweetID}`); + a.parentNode.replaceChild(div, a); + + } + }); + + const ghostContainers = document.querySelectorAll(`.left-ghost-${tweetID}`); + Array.prototype.forEach.call(ghostContainers, function(ghostContainer) { + lottie.loadAnimation({ + container: ghostContainer, + renderer: "svg", + loop: true, + autoplay: true, + path: 'https://assets2.lottiefiles.com/packages/lf20_zsa5zkbq.json' + }); + }) + + didCompleteFetch(); + }; function cleanUp(script) { delete window[callback]; @@ -130,6 +153,20 @@ Awful.loadTwitterWidgets = function() { }; }; +/** + Loads the Lottie player library into the document + */ +Awful.loadLotties = function() { + if (document.getElementById('lottie-web')) { + return; + } + + var script = document.createElement('script'); + script.id = 'lottie-web'; + script.src = "https://cdnjs.cloudflare.com/ajax/libs/lottie-web/5.7.11/lottie.min.js"; + document.body.appendChild(script); +}; + /** Scrolls the document past a fraction of the document. @@ -509,6 +546,11 @@ Awful.markReadUpToPostWithID = function(postID) { var currentPost = lastReadPost; while (currentPost) { currentPost.classList.add('seen'); + + Array.from(currentPost.querySelectorAll('.divider')).forEach(function(el) { + el.classList.add('divider-seen'); + }); + currentPost = currentPost.previousElementSibling; } @@ -516,6 +558,11 @@ Awful.markReadUpToPostWithID = function(postID) { var currentPost = lastReadPost.nextElementSibling; while (currentPost) { currentPost.classList.remove('seen'); + + Array.from(currentPost.querySelectorAll('.divider-seen')).forEach(function(el) { + el.classList.remove('divider-seen'); + }); + currentPost = currentPost.nextElementSibling; } }; @@ -580,6 +627,23 @@ Awful.setAnnouncementHTML = function(html) { }; +Awful.deadTweetBadgeHTML = function(url, tweetID){ + // get twitter username from url + var tweeter = url.match(/(?:https?:\/\/)?(?:www\.)?twitter\.com\/(?:#!\/)?@?([^\/\?\s]*)/)[1]; + + var html = + `