├── OnboardingExample ├── OnboardingExample │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── illu_onboarding_1.dataset │ │ │ ├── Contents.json │ │ │ └── illu_onboarding_1.json │ │ ├── illu_onboarding_2.dataset │ │ │ └── Contents.json │ │ ├── illu_onboarding_3.dataset │ │ │ └── Contents.json │ │ ├── illu_onboarding_4.dataset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── onboarding-background-1.imageset │ │ │ ├── onboarding-background-1.svg │ │ │ └── Contents.json │ │ ├── onboarding-background-4.imageset │ │ │ ├── onboarding-background-4.svg │ │ │ └── Contents.json │ │ ├── onboarding-background-2.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding-background-2.svg │ │ ├── onboarding-background-3.imageset │ │ │ ├── Contents.json │ │ │ └── onboarding-background-3.svg │ │ └── logo-text.imageset │ │ │ ├── Contents.json │ │ │ ├── logo_text_light.svg │ │ │ └── logo_text_dark.svg │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── OnboardingExampleApp.swift │ └── ContentView.swift └── OnboardingExample.xcodeproj │ └── project.pbxproj ├── .gitignore ├── Package.resolved ├── Tests └── InfomaniakOnboardingTests │ └── InfomaniakOnboardingTests.swift ├── file-header-template.txt ├── Package.swift ├── Sources └── InfomaniakOnboarding │ ├── OnboardingConfiguration.swift │ ├── IKLottieConfiguration.swift │ ├── Slide.swift │ ├── SlideCollectionViewCell │ ├── SlideCollectionViewCell.swift │ └── SlideCollectionViewCell.xib │ ├── SlideCarouselViewController.swift │ └── OnboardingViewController.swift └── LICENSE /OnboardingExample/OnboardingExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | DerivedData/ 6 | .swiftpm/configuration/registries.json 7 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 8 | .netrc 9 | 10 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/illu_onboarding_1.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "data" : [ 3 | { 4 | "filename" : "illu_onboarding_1.json", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/illu_onboarding_2.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "data" : [ 3 | { 4 | "filename" : "illu_onboarding_2.json", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/illu_onboarding_3.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "data" : [ 3 | { 4 | "filename" : "illu_onboarding_3.json", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/illu_onboarding_4.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "data" : [ 3 | { 4 | "filename" : "illu_onboarding_4.json", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "platform" : "ios", 6 | "size" : "1024x1024" 7 | } 8 | ], 9 | "info" : { 10 | "author" : "xcode", 11 | "version" : 1 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-1.imageset/onboarding-background-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-4.imageset/onboarding-background-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding-background-1.svg", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "original" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding-background-2.svg", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "original" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding-background-3.svg", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "original" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding-background-4.svg", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "original" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- 1 | { 2 | "originHash" : "9e7b3522a857818e39876c1330a6c37a5f2697e5d2ef874a802b3d01a0a8f0fe", 3 | "pins" : [ 4 | { 5 | "identity" : "lottie-spm", 6 | "kind" : "remoteSourceControl", 7 | "location" : "https://github.com/airbnb/lottie-spm.git", 8 | "state" : { 9 | "revision" : "1d29eccc24cc8b75bff9f6804155112c0ffc9605", 10 | "version" : "4.4.3" 11 | } 12 | } 13 | ], 14 | "version" : 3 15 | } 16 | -------------------------------------------------------------------------------- /Tests/InfomaniakOnboardingTests/InfomaniakOnboardingTests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | @testable import InfomaniakOnboarding 3 | 4 | final class InfomaniakOnboardingTests: XCTestCase { 5 | func testExample() throws { 6 | // XCTest Documentation 7 | // https://developer.apple.com/documentation/xctest 8 | 9 | // Defining Test Cases and Test Methods 10 | // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-2.imageset/onboarding-background-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/onboarding-background-3.imageset/onboarding-background-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/logo-text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "logo_text_light.svg", 5 | "idiom" : "universal" 6 | }, 7 | { 8 | "appearances" : [ 9 | { 10 | "appearance" : "luminosity", 11 | "value" : "dark" 12 | } 13 | ], 14 | "filename" : "logo_text_dark.svg", 15 | "idiom" : "universal" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | }, 22 | "properties" : { 23 | "preserves-vector-representation" : true 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /file-header-template.txt: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | Infomaniak Onboarding - iOS 4 | Copyright (C) 2024 Infomaniak Network SA 5 | 6 | This program is free software: you can redistribute it and/or modify 7 | it under the terms of the GNU General Public License as published by 8 | the Free Software Foundation, either version 3 of the License, or 9 | (at your option) any later version. 10 | 11 | This program is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License 17 | along with this program. If not, see . 18 | */ 19 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version: 6.0 2 | 3 | import PackageDescription 4 | 5 | let package = Package( 6 | name: "InfomaniakOnboarding", 7 | platforms: [.iOS(.v13)], 8 | products: [ 9 | .library( 10 | name: "InfomaniakOnboarding", 11 | targets: ["InfomaniakOnboarding"] 12 | ), 13 | ], 14 | dependencies: [ 15 | .package(url: "https://github.com/airbnb/lottie-spm.git", from: "4.4.3") 16 | ], 17 | targets: [ 18 | .target( 19 | name: "InfomaniakOnboarding", 20 | dependencies: [.product(name: "Lottie", package: "lottie-spm")] 21 | ), 22 | .testTarget( 23 | name: "InfomaniakOnboardingTests", 24 | dependencies: ["InfomaniakOnboarding"] 25 | ), 26 | ] 27 | ) 28 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/OnboardingExampleApp.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import SwiftUI 20 | 21 | @main 22 | struct OnboardingExampleApp: App { 23 | var body: some Scene { 24 | WindowGroup { 25 | ContentView() 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/OnboardingConfiguration.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import SwiftUI 20 | 21 | public struct OnboardingConfiguration: Sendable { 22 | /// The image displayed at the top of the view, usually the app logo 23 | public let headerImage: UIImage? 24 | /// The slides to be displayed 25 | public let slides: [Slide] 26 | /// Custom color for the page indicator 27 | public let pageIndicatorColor: UIColor? 28 | /// Allow or not the slides to scroll 29 | public let isScrollEnabled: Bool 30 | /// Show or hide points on slides 31 | public let isPageIndicatorHidden: Bool 32 | 33 | /// Action to perform when the close button is tapped 34 | /// The button is only displayed when the handler is not nil 35 | public let dismissHandler: (@Sendable () -> Void)? 36 | 37 | public init( 38 | headerImage: UIImage?, 39 | slides: [Slide], 40 | pageIndicatorColor: UIColor?, 41 | isScrollEnabled: Bool, 42 | dismissHandler: (@Sendable () -> Void)?, 43 | isPageIndicatorHidden: Bool 44 | ) { 45 | self.headerImage = headerImage 46 | self.slides = slides 47 | self.pageIndicatorColor = pageIndicatorColor 48 | self.isScrollEnabled = isScrollEnabled 49 | self.dismissHandler = dismissHandler 50 | self.isPageIndicatorHidden = isPageIndicatorHidden 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/IKLottieConfiguration.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import Foundation 20 | @preconcurrency import Lottie 21 | import UIKit 22 | 23 | public struct IKLottieConfiguration: Sendable { 24 | public enum AnimationType: Sendable { 25 | case json 26 | case dotLottie 27 | } 28 | 29 | public let id: Int 30 | public let filename: String 31 | public let bundle: Bundle 32 | public let animationType: AnimationType 33 | public let loopMode: LottieLoopMode 34 | public let contentMode: UIView.ContentMode 35 | public let loopFrameStart: Int? 36 | public let loopFrameEnd: Int? 37 | public let lottieConfiguration: LottieConfiguration 38 | 39 | public init( 40 | id: Int, 41 | filename: String, 42 | bundle: Bundle, 43 | animationType: AnimationType = .json, 44 | loopMode: LottieLoopMode = .playOnce, 45 | contentMode: UIView.ContentMode = UIView.ContentMode.scaleAspectFit, 46 | loopFrameStart: Int? = nil, 47 | loopFrameEnd: Int? = nil, 48 | lottieConfiguration: LottieConfiguration = LottieConfiguration() 49 | ) { 50 | self.id = id 51 | self.filename = filename 52 | self.bundle = bundle 53 | self.animationType = animationType 54 | self.loopMode = loopMode 55 | self.contentMode = contentMode 56 | self.loopFrameStart = loopFrameStart 57 | self.loopFrameEnd = loopFrameEnd 58 | self.lottieConfiguration = lottieConfiguration 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/Slide.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import Lottie 20 | import SwiftUI 21 | import UIKit 22 | 23 | public enum SlideContent { 24 | case illustration(UIImage) 25 | case animation(IKLottieConfiguration) 26 | } 27 | 28 | @MainActor 29 | public struct Slide { 30 | /// An image displayed behind the main illustration (usually a wave) 31 | public let backgroundImage: UIImage 32 | /// The color to apply to the background image 33 | public let backgroundImageTintColor: UIColor? 34 | /// The main content displayed either a Lottie animation or an image 35 | public let content: SlideContent 36 | /// The view displayed directly under the illustration 37 | public let bottomViewController: UIViewController 38 | 39 | public init( 40 | backgroundImage: UIImage, 41 | backgroundImageTintColor: UIColor?, 42 | content: SlideContent, 43 | bottomViewController: UIViewController 44 | ) { 45 | self.backgroundImage = backgroundImage 46 | self.backgroundImageTintColor = backgroundImageTintColor 47 | self.content = content 48 | self.bottomViewController = bottomViewController 49 | } 50 | 51 | public init( 52 | backgroundImage: UIImage, 53 | backgroundImageTintColor: UIColor?, 54 | content: SlideContent, 55 | bottomView: some View 56 | ) { 57 | self.backgroundImage = backgroundImage 58 | self.backgroundImageTintColor = backgroundImageTintColor 59 | self.content = content 60 | bottomViewController = UIHostingController(rootView: bottomView) 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/ContentView.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import InfomaniakOnboarding 20 | import Lottie 21 | import SwiftUI 22 | 23 | struct ContentView: View { 24 | var body: some View { 25 | OnboardingView() 26 | .ignoresSafeArea() 27 | } 28 | } 29 | 30 | struct OnboardingView: UIViewControllerRepresentable { 31 | @State var selectedSlide = 0 32 | 33 | func makeUIViewController(context: Context) -> OnboardingViewController { 34 | let slides: [Slide] = [ 35 | Slide( 36 | backgroundImage: .onboardingBackground1, 37 | backgroundImageTintColor: nil, 38 | content: .animation(IKLottieConfiguration(id: 1, 39 | filename: "illu_onboarding_1", 40 | bundle: .main, 41 | loopFrameStart: 54, 42 | loopFrameEnd: 138, 43 | lottieConfiguration: LottieConfiguration( 44 | renderingEngine: .mainThread 45 | ))), 46 | bottomView: Text("Choisissez votre thème") 47 | ), 48 | Slide( 49 | backgroundImage: .onboardingBackground2, 50 | backgroundImageTintColor: nil, 51 | content: .animation(IKLottieConfiguration( 52 | id: 2, 53 | filename: "illu_onboarding_2", 54 | bundle: .main, 55 | loopFrameStart: 108, 56 | loopFrameEnd: 253, 57 | lottieConfiguration: LottieConfiguration(renderingEngine: .mainThread) 58 | )), 59 | bottomView: VStack { 60 | Text("Gagnez du temps avec les actions de balayage") 61 | Text("Personnalisez librement vos raccourcis dans les paramètres de l'app.") 62 | } 63 | ), 64 | Slide( 65 | backgroundImage: .onboardingBackground3, 66 | backgroundImageTintColor: nil, 67 | content: .animation(IKLottieConfiguration( 68 | id: 3, 69 | filename: "illu_onboarding_3", 70 | bundle: .main, 71 | loopFrameStart: 111, 72 | loopFrameEnd: 187, 73 | lottieConfiguration: LottieConfiguration(renderingEngine: .mainThread) 74 | )), 75 | bottomView: VStack { 76 | Text("Appuyez quelques secondes sur un message pour en sélectionner plusieurs") 77 | Text("Archivez, supprimez, déplacez ou mettez en favoris plusieurs messages en une fois.") 78 | } 79 | ), 80 | Slide( 81 | backgroundImage: .onboardingBackground4, 82 | backgroundImageTintColor: nil, 83 | content: .animation(IKLottieConfiguration( 84 | id: 4, 85 | filename: "illu_onboarding_4", 86 | bundle: .main, 87 | loopFrameStart: 127, 88 | loopFrameEnd: 236, 89 | lottieConfiguration: LottieConfiguration(renderingEngine: .mainThread) 90 | )), 91 | bottomView: VStack { 92 | Text("Lancez vous !") 93 | Text("Créez une adresse gratuite ou connectez-vous à un compte Infomaniak existant.") 94 | } 95 | ) 96 | ] 97 | 98 | let configuration = OnboardingConfiguration( 99 | headerImage: .logoText, 100 | slides: slides, 101 | pageIndicatorColor: UIColor(Color.accentColor), 102 | isScrollEnabled: true, 103 | dismissHandler: {}, 104 | isPageIndicatorHidden: true 105 | ) 106 | 107 | let controller = OnboardingViewController(configuration: configuration) 108 | controller.delegate = context.coordinator 109 | return controller 110 | } 111 | 112 | func updateUIViewController(_ uiViewController: OnboardingViewController, context: Context) { 113 | uiViewController.setSelectedSlide(index: selectedSlide) 114 | } 115 | 116 | func makeCoordinator() -> Coordinator { 117 | return Coordinator() 118 | } 119 | 120 | class Coordinator: OnboardingViewControllerDelegate { 121 | func currentIndexChanged(newIndex: Int) {} 122 | 123 | func willDisplaySlideViewCell(_ slideViewCell: SlideCollectionViewCell, at index: Int) {} 124 | 125 | func bottomViewForIndex(_ index: Int) -> (any View)? { 126 | if index == 3 { 127 | return Text("Last") 128 | } else { 129 | return Text("Coucou") 130 | } 131 | } 132 | 133 | func shouldAnimateBottomViewForIndex(_ index: Int) -> Bool { 134 | if index == 3 { 135 | return true 136 | } else { 137 | return false 138 | } 139 | } 140 | } 141 | } 142 | 143 | #Preview { 144 | ContentView() 145 | } 146 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/SlideCollectionViewCell/SlideCollectionViewCell.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import Foundation 20 | import Lottie 21 | import UIKit 22 | 23 | struct AnimationState { 24 | let fromFrame: AnimationFrameTime? 25 | let toFrame: AnimationFrameTime? 26 | } 27 | 28 | public class SlideCollectionViewCell: UICollectionViewCell { 29 | @IBOutlet public private(set) weak var backgroundImageView: UIImageView! 30 | @IBOutlet public private(set) weak var illustrationAnimationView: LottieAnimationView! 31 | @IBOutlet public private(set) weak var bottomView: UIView! 32 | @IBOutlet public private(set) weak var illustrationImageView: UIImageView! 33 | 34 | var configuration: IKLottieConfiguration? 35 | 36 | private var dotLottieLoaded = false 37 | private var onDotLottieLoaded: (() -> Void)? 38 | 39 | override public func prepareForReuse() { 40 | super.prepareForReuse() 41 | illustrationImageView.image = nil 42 | illustrationAnimationView.animation = nil 43 | illustrationAnimationView.configuration = LottieConfiguration() 44 | for view in bottomView.subviews { 45 | view.removeFromSuperview() 46 | } 47 | } 48 | 49 | func configureCell(slide: Slide) { 50 | backgroundImageView.image = slide.backgroundImage 51 | backgroundImageView.tintColor = slide.backgroundImageTintColor 52 | 53 | switch slide.content { 54 | case .illustration(let image): 55 | illustrationAnimationView.isHidden = true 56 | illustrationImageView.isHidden = false 57 | illustrationImageView.image = image 58 | case .animation(let animationConfiguration): 59 | illustrationAnimationView.isHidden = false 60 | illustrationImageView.isHidden = true 61 | 62 | configuration = animationConfiguration 63 | illustrationAnimationView.configuration = animationConfiguration.lottieConfiguration 64 | 65 | switch animationConfiguration.animationType { 66 | case .json: 67 | let jsonAnimation = LottieAnimation.named(animationConfiguration.filename, bundle: animationConfiguration.bundle) 68 | illustrationAnimationView.animation = jsonAnimation 69 | case .dotLottie: 70 | Task { 71 | dotLottieLoaded = false 72 | 73 | let dotLottieAnimation = try await DotLottieFile.named( 74 | animationConfiguration.filename, 75 | bundle: animationConfiguration.bundle 76 | ) 77 | illustrationAnimationView.loadAnimation(from: dotLottieAnimation) 78 | 79 | onDotLottieLoaded?() 80 | onDotLottieLoaded = nil 81 | dotLottieLoaded = true 82 | } 83 | } 84 | } 85 | 86 | if let slideBottomView = slide.bottomViewController.view { 87 | slideBottomView.backgroundColor = .clear 88 | slideBottomView.isOpaque = false 89 | 90 | bottomView.addSubview(slideBottomView) 91 | slideBottomView.translatesAutoresizingMaskIntoConstraints = false 92 | 93 | NSLayoutConstraint.activate([ 94 | slideBottomView.topAnchor.constraint(equalTo: bottomView.topAnchor), 95 | slideBottomView.bottomAnchor.constraint(equalTo: bottomView.bottomAnchor), 96 | slideBottomView.leadingAnchor.constraint(equalTo: bottomView.leadingAnchor), 97 | slideBottomView.trailingAnchor.constraint(equalTo: bottomView.trailingAnchor) 98 | ]) 99 | } 100 | } 101 | 102 | func resumePlaying(animationState: AnimationState?) { 103 | guard let configuration, 104 | !illustrationAnimationView.isAnimationPlaying else { return } 105 | 106 | if configuration.animationType == .dotLottie { 107 | if dotLottieLoaded { 108 | resumePlayingAfterLoading(configuration: configuration, animationState: animationState) 109 | } else { 110 | onDotLottieLoaded = { [weak self] in 111 | self?.resumePlayingAfterLoading(configuration: configuration, animationState: animationState) 112 | } 113 | } 114 | } else { 115 | resumePlayingAfterLoading(configuration: configuration, animationState: animationState) 116 | } 117 | } 118 | 119 | private func resumePlayingAfterLoading(configuration: IKLottieConfiguration, animationState: AnimationState?) { 120 | if let fromFrame = animationState?.fromFrame, 121 | let toFrame = animationState?.toFrame { 122 | illustrationAnimationView.play(fromFrame: fromFrame, toFrame: toFrame, loopMode: .playOnce) { [weak self] _ in 123 | self?.afterInitialLoopPlay(configuration: configuration) 124 | } 125 | } else { 126 | illustrationAnimationView.play { [weak self] _ in 127 | self?.afterInitialLoopPlay(configuration: configuration) 128 | } 129 | } 130 | } 131 | 132 | func afterInitialLoopPlay(configuration: IKLottieConfiguration) { 133 | guard let loopFrameStart = configuration.loopFrameStart, 134 | let loopFrameEnd = configuration.loopFrameEnd else { return } 135 | 136 | illustrationAnimationView.play( 137 | fromFrame: AnimationFrameTime(loopFrameStart), 138 | toFrame: AnimationFrameTime(loopFrameEnd), 139 | loopMode: .loop 140 | ) 141 | } 142 | 143 | func pausePlaying() { 144 | guard illustrationAnimationView.isAnimationPlaying else { return } 145 | illustrationAnimationView.pause() 146 | } 147 | } 148 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/SlideCarouselViewController.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import Foundation 20 | import Lottie 21 | import SwiftUI 22 | import UIKit 23 | 24 | class SlideCarouselViewController: UICollectionViewController { 25 | let slideCellIdentifier = "SlideCollectionViewCell" 26 | 27 | let slides: [Slide] 28 | let pageIndicator: UIPageControl 29 | let isPageIndicatorHidden: Bool 30 | 31 | var onSlideChanged: ((Int) -> Void)? 32 | var willDisplaySlideViewCell: ((SlideCollectionViewCell, Int) -> Void)? 33 | 34 | var animationStateForSlide = [IndexPath: AnimationState]() 35 | 36 | var currentSlideIndex = 0 { 37 | didSet { 38 | guard oldValue != currentSlideIndex else { return } 39 | 40 | pageIndicator.currentPage = currentSlideIndex 41 | onSlideChanged?(currentSlideIndex) 42 | } 43 | } 44 | 45 | init(slides: [Slide], pageIndicatorColor: UIColor?, isPageIndicatorHidden: Bool) { 46 | self.slides = slides 47 | self.isPageIndicatorHidden = isPageIndicatorHidden 48 | let layout = UICollectionViewFlowLayout() 49 | layout.scrollDirection = .horizontal 50 | layout.sectionInsetReference = .fromContentInset 51 | 52 | pageIndicator = UIPageControl(frame: .zero) 53 | if !isPageIndicatorHidden { 54 | pageIndicator.numberOfPages = slides.count 55 | pageIndicator.pageIndicatorTintColor = .systemGray4 56 | pageIndicator.currentPageIndicatorTintColor = pageIndicatorColor 57 | } 58 | 59 | super.init(collectionViewLayout: layout) 60 | collectionView.register( 61 | UINib(nibName: slideCellIdentifier, bundle: Bundle.module), 62 | forCellWithReuseIdentifier: slideCellIdentifier 63 | ) 64 | collectionView.isPagingEnabled = true 65 | collectionView.bounces = false 66 | collectionView.showsHorizontalScrollIndicator = false 67 | collectionView.showsVerticalScrollIndicator = false 68 | collectionView.isPrefetchingEnabled = true 69 | collectionView.contentInsetAdjustmentBehavior = .never 70 | collectionView.backgroundColor = .clear 71 | 72 | pageIndicator.addTarget(self, action: #selector(pageChanged), for: .valueChanged) 73 | } 74 | 75 | @available(*, unavailable) 76 | required init?(coder: NSCoder) { 77 | fatalError("init(coder:) has not been implemented") 78 | } 79 | 80 | override func viewDidLoad() { 81 | super.viewDidLoad() 82 | addPageIndicatorIfNeeded() 83 | } 84 | 85 | func addPageIndicatorIfNeeded() { 86 | guard slides.count > 1 else { return } 87 | view.addSubview(pageIndicator) 88 | 89 | pageIndicator.translatesAutoresizingMaskIntoConstraints = false 90 | NSLayoutConstraint.activate([ 91 | pageIndicator.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -16), 92 | pageIndicator.centerXAnchor.constraint(equalTo: view.centerXAnchor), 93 | ]) 94 | } 95 | 96 | @objc func pageChanged() { 97 | setSelectedSlide(index: pageIndicator.currentPage) 98 | } 99 | 100 | func setSelectedSlide(index: Int) { 101 | guard index < slides.count, 102 | index != currentSlideIndex else { return } 103 | 104 | let indexPath = IndexPath(row: index, section: 0) 105 | collectionView.scrollToItem(at: indexPath, at: .left, animated: true) 106 | } 107 | 108 | override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) { 109 | super.viewWillTransition(to: size, with: coordinator) 110 | 111 | let currentIndexPath = IndexPath(row: pageIndicator.currentPage, section: 0) 112 | if #available(iOS 16, *) { 113 | coordinator.animate { _ in 114 | self.collectionView?.collectionViewLayout.invalidateLayout() 115 | } completion: { _ in 116 | self.collectionView.scrollToItem(at: currentIndexPath, at: .left, animated: false) 117 | } 118 | } else { 119 | coordinator.animate { _ in 120 | } completion: { _ in 121 | self.collectionView?.collectionViewLayout.invalidateLayout() 122 | self.collectionView.scrollToItem(at: currentIndexPath, at: .left, animated: false) 123 | } 124 | } 125 | } 126 | 127 | override func scrollViewDidScroll(_ scrollView: UIScrollView) { 128 | let pageIndex = round(scrollView.contentOffset.x / view.frame.width) 129 | 130 | guard !pageIndex.isNaN, pageIndex >= 0 else { return } 131 | 132 | currentSlideIndex = Int(pageIndex) 133 | } 134 | } 135 | 136 | extension SlideCarouselViewController { 137 | override func numberOfSections(in collectionView: UICollectionView) -> Int { 138 | return 1 139 | } 140 | 141 | override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 142 | return slides.count 143 | } 144 | 145 | override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 146 | guard let cell = collectionView 147 | .dequeueReusableCell(withReuseIdentifier: slideCellIdentifier, for: indexPath) as? SlideCollectionViewCell 148 | else { 149 | fatalError("Only \(slideCellIdentifier) are supported") 150 | } 151 | 152 | cell.configureCell(slide: slides[indexPath.row]) 153 | return cell 154 | } 155 | 156 | override func collectionView( 157 | _ collectionView: UICollectionView, 158 | willDisplay cell: UICollectionViewCell, 159 | forItemAt indexPath: IndexPath 160 | ) { 161 | guard let cell = cell as? SlideCollectionViewCell else { return } 162 | 163 | let animationState = animationStateForSlide[indexPath] 164 | cell.resumePlaying(animationState: animationState) 165 | willDisplaySlideViewCell?(cell, indexPath.row) 166 | } 167 | 168 | override func collectionView( 169 | _ collectionView: UICollectionView, 170 | didEndDisplaying cell: UICollectionViewCell, 171 | forItemAt indexPath: IndexPath 172 | ) { 173 | guard let cell = cell as? SlideCollectionViewCell else { return } 174 | cell.pausePlaying() 175 | animationStateForSlide[indexPath] = AnimationState( 176 | fromFrame: cell.illustrationAnimationView.currentFrame, 177 | toFrame: cell.illustrationAnimationView.animation?.endFrame 178 | ) 179 | } 180 | 181 | func collectionView( 182 | _ collectionView: UICollectionView, 183 | layout collectionViewLayout: UICollectionViewLayout, 184 | minimumInteritemSpacingForSectionAt section: Int 185 | ) -> CGFloat { 186 | return 0 187 | } 188 | 189 | func collectionView( 190 | _ collectionView: UICollectionView, 191 | layout collectionViewLayout: UICollectionViewLayout, 192 | minimumLineSpacingForSectionAt section: Int 193 | ) -> CGFloat { 194 | return 0 195 | } 196 | } 197 | 198 | extension SlideCarouselViewController: UICollectionViewDelegateFlowLayout { 199 | func collectionView(_ collectionView: UICollectionView, 200 | layout collectionViewLayout: UICollectionViewLayout, 201 | insetForSectionAt section: Int) -> UIEdgeInsets { 202 | return .zero 203 | } 204 | 205 | func collectionView(_ collectionView: UICollectionView, 206 | layout collectionViewLayout: UICollectionViewLayout, 207 | sizeForItemAt indexPath: IndexPath) -> CGSize { 208 | return CGSize(width: collectionView.frame.width, height: collectionView.frame.height) 209 | } 210 | } 211 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/OnboardingViewController.swift: -------------------------------------------------------------------------------- 1 | /* 2 | Infomaniak Onboarding - iOS 3 | Copyright (C) 2024 Infomaniak Network SA 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | */ 18 | 19 | import SwiftUI 20 | import UIKit 21 | 22 | @MainActor 23 | public protocol OnboardingViewControllerDelegate: AnyObject { 24 | func currentIndexChanged(newIndex: Int) 25 | func bottomUIViewForIndex(_ index: Int) -> UIView? 26 | func bottomViewForIndex(_ index: Int) -> (any View)? 27 | func shouldAnimateBottomViewForIndex(_ index: Int) -> Bool 28 | func willDisplaySlideViewCell(_ slideViewCell: SlideCollectionViewCell, at index: Int) 29 | } 30 | 31 | public extension OnboardingViewControllerDelegate { 32 | func bottomUIViewForIndex(_ index: Int) -> UIView? { 33 | return nil 34 | } 35 | 36 | func bottomViewForIndex(_ index: Int) -> (any View)? { 37 | return nil 38 | } 39 | } 40 | 41 | public class OnboardingViewController: UIViewController { 42 | public var currentSlideViewCell: SlideCollectionViewCell? { 43 | slideCarouselViewController.collectionView.visibleCells.first as? SlideCollectionViewCell 44 | } 45 | 46 | public var pageIndicator: UIPageControl { 47 | slideCarouselViewController.pageIndicator 48 | } 49 | 50 | public weak var delegate: OnboardingViewControllerDelegate? 51 | 52 | let configuration: OnboardingConfiguration 53 | 54 | let headerImageView: UIImageView? 55 | 56 | let stackView = UIStackView() 57 | let slideCarouselViewController: SlideCarouselViewController 58 | let bottomContainerView = UIView(frame: .zero) 59 | 60 | var bottomViewCache: [Int: UIView] = [:] 61 | 62 | public init(configuration: OnboardingConfiguration) { 63 | slideCarouselViewController = SlideCarouselViewController( 64 | slides: configuration.slides, 65 | pageIndicatorColor: configuration.pageIndicatorColor, 66 | isPageIndicatorHidden: configuration.isPageIndicatorHidden 67 | ) 68 | self.configuration = configuration 69 | if let headerImage = configuration.headerImage { 70 | headerImageView = UIImageView(image: headerImage) 71 | } else { 72 | headerImageView = nil 73 | } 74 | super.init(nibName: nil, bundle: nil) 75 | 76 | slideCarouselViewController.collectionView.isScrollEnabled = configuration.isScrollEnabled 77 | 78 | slideCarouselViewController.onSlideChanged = onSlideChanged(newSlideIndex:) 79 | slideCarouselViewController.willDisplaySlideViewCell = willDisplaySlideViewCell(_:at:) 80 | } 81 | 82 | @available(*, unavailable) 83 | required init?(coder: NSCoder) { 84 | fatalError("init(coder:) has not been implemented") 85 | } 86 | 87 | override public func viewDidLoad() { 88 | super.viewDidLoad() 89 | 90 | view.addSubview(stackView) 91 | if let headerImageView { 92 | view.addSubview(headerImageView) 93 | headerImageView.translatesAutoresizingMaskIntoConstraints = false 94 | NSLayoutConstraint.activate([ 95 | headerImageView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 24), 96 | headerImageView.centerXAnchor.constraint(equalTo: view.centerXAnchor), 97 | headerImageView.leadingAnchor.constraint(greaterThanOrEqualTo: view.leadingAnchor, constant: 48), 98 | headerImageView.trailingAnchor.constraint(lessThanOrEqualTo: view.trailingAnchor, constant: -48) 99 | ]) 100 | } 101 | 102 | if configuration.dismissHandler != nil { 103 | let closeButton = UIButton(type: .system) 104 | closeButton.translatesAutoresizingMaskIntoConstraints = false 105 | closeButton.setImage(UIImage(systemName: "xmark"), for: .normal) 106 | closeButton.addTarget(self, action: #selector(didTapCloseButton), for: .touchUpInside) 107 | view.addSubview(closeButton) 108 | 109 | NSLayoutConstraint.activate([ 110 | closeButton.widthAnchor.constraint(equalToConstant: 40), 111 | closeButton.heightAnchor.constraint(equalToConstant: 40), 112 | closeButton.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 24), 113 | closeButton.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 16) 114 | ]) 115 | } 116 | 117 | stackView.axis = .vertical 118 | stackView.alignment = .fill 119 | stackView.translatesAutoresizingMaskIntoConstraints = false 120 | stackView.distribution = .fillProportionally 121 | 122 | stackView.addArrangedSubview(slideCarouselViewController.view) 123 | addChild(slideCarouselViewController) 124 | slideCarouselViewController.view.heightAnchor.constraint(equalTo: view.heightAnchor, multiplier: 0.8).isActive = true 125 | 126 | stackView.addArrangedSubview(bottomContainerView) 127 | bottomContainerView.heightAnchor.constraint(equalTo: view.heightAnchor, multiplier: 0.2).isActive = true 128 | 129 | NSLayoutConstraint.activate([ 130 | stackView.topAnchor.constraint(equalTo: view.topAnchor), 131 | stackView.bottomAnchor.constraint(equalTo: view.bottomAnchor), 132 | stackView.leadingAnchor.constraint(equalTo: view.leadingAnchor), 133 | stackView.trailingAnchor.constraint(equalTo: view.trailingAnchor) 134 | ]) 135 | 136 | onSlideChanged(newSlideIndex: 0) 137 | } 138 | 139 | public func setSelectedSlide(index: Int) { 140 | slideCarouselViewController.setSelectedSlide(index: index) 141 | } 142 | 143 | public func reloadView(at index: Int) { 144 | bottomViewCache[index] = nil 145 | if index == slideCarouselViewController.currentSlideIndex { 146 | onSlideChanged(newSlideIndex: index) 147 | } 148 | } 149 | 150 | func resolveBottomView(newSlideIndex: Int) -> UIView { 151 | if let cachedView = bottomViewCache[newSlideIndex] { 152 | return cachedView 153 | } 154 | 155 | if let uiView = delegate?.bottomUIViewForIndex(newSlideIndex) { 156 | bottomViewCache[newSlideIndex] = uiView 157 | return uiView 158 | } else if let view = delegate?.bottomViewForIndex(newSlideIndex) { 159 | let controller = UIHostingController(rootView: AnyView(view)) 160 | controller.view.backgroundColor = .clear 161 | 162 | bottomViewCache[newSlideIndex] = controller.view 163 | return controller.view 164 | } else { 165 | return UIView(frame: .zero) 166 | } 167 | } 168 | 169 | func onSlideChanged(newSlideIndex: Int) { 170 | let oldBottomView = bottomContainerView.subviews.last 171 | 172 | let newBottomView = resolveBottomView(newSlideIndex: newSlideIndex) 173 | newBottomView.translatesAutoresizingMaskIntoConstraints = false 174 | 175 | if delegate?.shouldAnimateBottomViewForIndex(newSlideIndex) ?? false { 176 | UIView.transition(with: bottomContainerView, duration: 0.25, options: .transitionCrossDissolve) { [weak self] in 177 | self?.switchBottomViews(oldBottomView: oldBottomView, newBottomView: newBottomView) 178 | } 179 | } else { 180 | switchBottomViews(oldBottomView: oldBottomView, newBottomView: newBottomView) 181 | } 182 | 183 | delegate?.currentIndexChanged(newIndex: newSlideIndex) 184 | } 185 | 186 | func switchBottomViews(oldBottomView: UIView?, newBottomView: UIView) { 187 | bottomContainerView.addSubview(newBottomView) 188 | oldBottomView?.removeFromSuperview() 189 | 190 | NSLayoutConstraint.activate([ 191 | newBottomView.topAnchor.constraint(equalTo: bottomContainerView.topAnchor), 192 | newBottomView.bottomAnchor.constraint(equalTo: bottomContainerView.bottomAnchor), 193 | newBottomView.leadingAnchor.constraint(equalTo: bottomContainerView.leadingAnchor), 194 | newBottomView.trailingAnchor.constraint(equalTo: bottomContainerView.trailingAnchor) 195 | ]) 196 | } 197 | 198 | func willDisplaySlideViewCell(_ slideViewCell: SlideCollectionViewCell, at index: Int) { 199 | delegate?.willDisplaySlideViewCell(slideViewCell, at: index) 200 | } 201 | 202 | @objc func didTapCloseButton() { 203 | configuration.dismissHandler?() 204 | } 205 | } 206 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/logo-text.imageset/logo_text_light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/logo-text.imageset/logo_text_dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Sources/InfomaniakOnboarding/SlideCollectionViewCell/SlideCollectionViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 56; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3758B0F42BE4B00600B084B4 /* OnboardingExampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3758B0F32BE4B00600B084B4 /* OnboardingExampleApp.swift */; }; 11 | 3758B0F62BE4B00600B084B4 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3758B0F52BE4B00600B084B4 /* ContentView.swift */; }; 12 | 3758B0F82BE4B00700B084B4 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3758B0F72BE4B00700B084B4 /* Assets.xcassets */; }; 13 | 3758B0FB2BE4B00700B084B4 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3758B0FA2BE4B00700B084B4 /* Preview Assets.xcassets */; }; 14 | 3758B1062BE4B12C00B084B4 /* InfomaniakOnboarding in Frameworks */ = {isa = PBXBuildFile; productRef = 3758B1052BE4B12C00B084B4 /* InfomaniakOnboarding */; }; 15 | /* End PBXBuildFile section */ 16 | 17 | /* Begin PBXFileReference section */ 18 | 3758B0F02BE4B00600B084B4 /* OnboardingExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OnboardingExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 19 | 3758B0F32BE4B00600B084B4 /* OnboardingExampleApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OnboardingExampleApp.swift; sourceTree = ""; }; 20 | 3758B0F52BE4B00600B084B4 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 21 | 3758B0F72BE4B00700B084B4 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 22 | 3758B0FA2BE4B00700B084B4 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 23 | 3758B1032BE4B03700B084B4 /* ios-onboarding */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = "ios-onboarding"; path = ../..; sourceTree = ""; }; 24 | /* End PBXFileReference section */ 25 | 26 | /* Begin PBXFrameworksBuildPhase section */ 27 | 3758B0ED2BE4B00600B084B4 /* Frameworks */ = { 28 | isa = PBXFrameworksBuildPhase; 29 | buildActionMask = 2147483647; 30 | files = ( 31 | 3758B1062BE4B12C00B084B4 /* InfomaniakOnboarding in Frameworks */, 32 | ); 33 | runOnlyForDeploymentPostprocessing = 0; 34 | }; 35 | /* End PBXFrameworksBuildPhase section */ 36 | 37 | /* Begin PBXGroup section */ 38 | 3758B0E72BE4B00600B084B4 = { 39 | isa = PBXGroup; 40 | children = ( 41 | 3758B0F22BE4B00600B084B4 /* OnboardingExample */, 42 | 3758B0F12BE4B00600B084B4 /* Products */, 43 | 3758B1042BE4B12C00B084B4 /* Frameworks */, 44 | ); 45 | sourceTree = ""; 46 | }; 47 | 3758B0F12BE4B00600B084B4 /* Products */ = { 48 | isa = PBXGroup; 49 | children = ( 50 | 3758B0F02BE4B00600B084B4 /* OnboardingExample.app */, 51 | ); 52 | name = Products; 53 | sourceTree = ""; 54 | }; 55 | 3758B0F22BE4B00600B084B4 /* OnboardingExample */ = { 56 | isa = PBXGroup; 57 | children = ( 58 | 3758B1032BE4B03700B084B4 /* ios-onboarding */, 59 | 3758B0F32BE4B00600B084B4 /* OnboardingExampleApp.swift */, 60 | 3758B0F52BE4B00600B084B4 /* ContentView.swift */, 61 | 3758B0F72BE4B00700B084B4 /* Assets.xcassets */, 62 | 3758B0F92BE4B00700B084B4 /* Preview Content */, 63 | ); 64 | path = OnboardingExample; 65 | sourceTree = ""; 66 | }; 67 | 3758B0F92BE4B00700B084B4 /* Preview Content */ = { 68 | isa = PBXGroup; 69 | children = ( 70 | 3758B0FA2BE4B00700B084B4 /* Preview Assets.xcassets */, 71 | ); 72 | path = "Preview Content"; 73 | sourceTree = ""; 74 | }; 75 | 3758B1042BE4B12C00B084B4 /* Frameworks */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | ); 79 | name = Frameworks; 80 | sourceTree = ""; 81 | }; 82 | /* End PBXGroup section */ 83 | 84 | /* Begin PBXNativeTarget section */ 85 | 3758B0EF2BE4B00600B084B4 /* OnboardingExample */ = { 86 | isa = PBXNativeTarget; 87 | buildConfigurationList = 3758B0FE2BE4B00700B084B4 /* Build configuration list for PBXNativeTarget "OnboardingExample" */; 88 | buildPhases = ( 89 | 3758B0EC2BE4B00600B084B4 /* Sources */, 90 | 3758B0ED2BE4B00600B084B4 /* Frameworks */, 91 | 3758B0EE2BE4B00600B084B4 /* Resources */, 92 | ); 93 | buildRules = ( 94 | ); 95 | dependencies = ( 96 | ); 97 | name = OnboardingExample; 98 | packageProductDependencies = ( 99 | 3758B1052BE4B12C00B084B4 /* InfomaniakOnboarding */, 100 | ); 101 | productName = OnboardingExample; 102 | productReference = 3758B0F02BE4B00600B084B4 /* OnboardingExample.app */; 103 | productType = "com.apple.product-type.application"; 104 | }; 105 | /* End PBXNativeTarget section */ 106 | 107 | /* Begin PBXProject section */ 108 | 3758B0E82BE4B00600B084B4 /* Project object */ = { 109 | isa = PBXProject; 110 | attributes = { 111 | BuildIndependentTargetsInParallel = 1; 112 | LastSwiftUpdateCheck = 1530; 113 | LastUpgradeCheck = 1530; 114 | TargetAttributes = { 115 | 3758B0EF2BE4B00600B084B4 = { 116 | CreatedOnToolsVersion = 15.3; 117 | }; 118 | }; 119 | }; 120 | buildConfigurationList = 3758B0EB2BE4B00600B084B4 /* Build configuration list for PBXProject "OnboardingExample" */; 121 | compatibilityVersion = "Xcode 14.0"; 122 | developmentRegion = en; 123 | hasScannedForEncodings = 0; 124 | knownRegions = ( 125 | en, 126 | Base, 127 | ); 128 | mainGroup = 3758B0E72BE4B00600B084B4; 129 | productRefGroup = 3758B0F12BE4B00600B084B4 /* Products */; 130 | projectDirPath = ""; 131 | projectRoot = ""; 132 | targets = ( 133 | 3758B0EF2BE4B00600B084B4 /* OnboardingExample */, 134 | ); 135 | }; 136 | /* End PBXProject section */ 137 | 138 | /* Begin PBXResourcesBuildPhase section */ 139 | 3758B0EE2BE4B00600B084B4 /* Resources */ = { 140 | isa = PBXResourcesBuildPhase; 141 | buildActionMask = 2147483647; 142 | files = ( 143 | 3758B0FB2BE4B00700B084B4 /* Preview Assets.xcassets in Resources */, 144 | 3758B0F82BE4B00700B084B4 /* Assets.xcassets in Resources */, 145 | ); 146 | runOnlyForDeploymentPostprocessing = 0; 147 | }; 148 | /* End PBXResourcesBuildPhase section */ 149 | 150 | /* Begin PBXSourcesBuildPhase section */ 151 | 3758B0EC2BE4B00600B084B4 /* Sources */ = { 152 | isa = PBXSourcesBuildPhase; 153 | buildActionMask = 2147483647; 154 | files = ( 155 | 3758B0F62BE4B00600B084B4 /* ContentView.swift in Sources */, 156 | 3758B0F42BE4B00600B084B4 /* OnboardingExampleApp.swift in Sources */, 157 | ); 158 | runOnlyForDeploymentPostprocessing = 0; 159 | }; 160 | /* End PBXSourcesBuildPhase section */ 161 | 162 | /* Begin XCBuildConfiguration section */ 163 | 3758B0FC2BE4B00700B084B4 /* Debug */ = { 164 | isa = XCBuildConfiguration; 165 | buildSettings = { 166 | ALWAYS_SEARCH_USER_PATHS = NO; 167 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; 168 | CLANG_ANALYZER_NONNULL = YES; 169 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 170 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; 171 | CLANG_ENABLE_MODULES = YES; 172 | CLANG_ENABLE_OBJC_ARC = YES; 173 | CLANG_ENABLE_OBJC_WEAK = YES; 174 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 175 | CLANG_WARN_BOOL_CONVERSION = YES; 176 | CLANG_WARN_COMMA = YES; 177 | CLANG_WARN_CONSTANT_CONVERSION = YES; 178 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 179 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 180 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 181 | CLANG_WARN_EMPTY_BODY = YES; 182 | CLANG_WARN_ENUM_CONVERSION = YES; 183 | CLANG_WARN_INFINITE_RECURSION = YES; 184 | CLANG_WARN_INT_CONVERSION = YES; 185 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 186 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 187 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 188 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 189 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 190 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 191 | CLANG_WARN_STRICT_PROTOTYPES = YES; 192 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 193 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 194 | CLANG_WARN_UNREACHABLE_CODE = YES; 195 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 196 | COPY_PHASE_STRIP = NO; 197 | DEBUG_INFORMATION_FORMAT = dwarf; 198 | ENABLE_STRICT_OBJC_MSGSEND = YES; 199 | ENABLE_TESTABILITY = YES; 200 | ENABLE_USER_SCRIPT_SANDBOXING = YES; 201 | GCC_C_LANGUAGE_STANDARD = gnu17; 202 | GCC_DYNAMIC_NO_PIC = NO; 203 | GCC_NO_COMMON_BLOCKS = YES; 204 | GCC_OPTIMIZATION_LEVEL = 0; 205 | GCC_PREPROCESSOR_DEFINITIONS = ( 206 | "DEBUG=1", 207 | "$(inherited)", 208 | ); 209 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 210 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 211 | GCC_WARN_UNDECLARED_SELECTOR = YES; 212 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 213 | GCC_WARN_UNUSED_FUNCTION = YES; 214 | GCC_WARN_UNUSED_VARIABLE = YES; 215 | IPHONEOS_DEPLOYMENT_TARGET = 17.4; 216 | LOCALIZATION_PREFERS_STRING_CATALOGS = YES; 217 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 218 | MTL_FAST_MATH = YES; 219 | ONLY_ACTIVE_ARCH = YES; 220 | SDKROOT = iphoneos; 221 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; 222 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 223 | }; 224 | name = Debug; 225 | }; 226 | 3758B0FD2BE4B00700B084B4 /* Release */ = { 227 | isa = XCBuildConfiguration; 228 | buildSettings = { 229 | ALWAYS_SEARCH_USER_PATHS = NO; 230 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; 231 | CLANG_ANALYZER_NONNULL = YES; 232 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 233 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; 234 | CLANG_ENABLE_MODULES = YES; 235 | CLANG_ENABLE_OBJC_ARC = YES; 236 | CLANG_ENABLE_OBJC_WEAK = YES; 237 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 238 | CLANG_WARN_BOOL_CONVERSION = YES; 239 | CLANG_WARN_COMMA = YES; 240 | CLANG_WARN_CONSTANT_CONVERSION = YES; 241 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 242 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 243 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 244 | CLANG_WARN_EMPTY_BODY = YES; 245 | CLANG_WARN_ENUM_CONVERSION = YES; 246 | CLANG_WARN_INFINITE_RECURSION = YES; 247 | CLANG_WARN_INT_CONVERSION = YES; 248 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 249 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 250 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 251 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 252 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 253 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 254 | CLANG_WARN_STRICT_PROTOTYPES = YES; 255 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 256 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 257 | CLANG_WARN_UNREACHABLE_CODE = YES; 258 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 259 | COPY_PHASE_STRIP = NO; 260 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 261 | ENABLE_NS_ASSERTIONS = NO; 262 | ENABLE_STRICT_OBJC_MSGSEND = YES; 263 | ENABLE_USER_SCRIPT_SANDBOXING = YES; 264 | GCC_C_LANGUAGE_STANDARD = gnu17; 265 | GCC_NO_COMMON_BLOCKS = YES; 266 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 267 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 268 | GCC_WARN_UNDECLARED_SELECTOR = YES; 269 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 270 | GCC_WARN_UNUSED_FUNCTION = YES; 271 | GCC_WARN_UNUSED_VARIABLE = YES; 272 | IPHONEOS_DEPLOYMENT_TARGET = 17.4; 273 | LOCALIZATION_PREFERS_STRING_CATALOGS = YES; 274 | MTL_ENABLE_DEBUG_INFO = NO; 275 | MTL_FAST_MATH = YES; 276 | SDKROOT = iphoneos; 277 | SWIFT_COMPILATION_MODE = wholemodule; 278 | VALIDATE_PRODUCT = YES; 279 | }; 280 | name = Release; 281 | }; 282 | 3758B0FF2BE4B00700B084B4 /* Debug */ = { 283 | isa = XCBuildConfiguration; 284 | buildSettings = { 285 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 286 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 287 | CODE_SIGN_STYLE = Automatic; 288 | CURRENT_PROJECT_VERSION = 1; 289 | DEVELOPMENT_ASSET_PATHS = "\"OnboardingExample/Preview Content\""; 290 | DEVELOPMENT_TEAM = 864VDCS2QY; 291 | ENABLE_PREVIEWS = YES; 292 | GENERATE_INFOPLIST_FILE = YES; 293 | INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; 294 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 295 | INFOPLIST_KEY_UILaunchScreen_Generation = YES; 296 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 297 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 298 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 299 | LD_RUNPATH_SEARCH_PATHS = ( 300 | "$(inherited)", 301 | "@executable_path/Frameworks", 302 | ); 303 | MARKETING_VERSION = 1.0; 304 | PRODUCT_BUNDLE_IDENTIFIER = ch.OnboardingExample; 305 | PRODUCT_NAME = "$(TARGET_NAME)"; 306 | SWIFT_EMIT_LOC_STRINGS = YES; 307 | SWIFT_VERSION = 5.0; 308 | TARGETED_DEVICE_FAMILY = "1,2"; 309 | }; 310 | name = Debug; 311 | }; 312 | 3758B1002BE4B00700B084B4 /* Release */ = { 313 | isa = XCBuildConfiguration; 314 | buildSettings = { 315 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 316 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 317 | CODE_SIGN_STYLE = Automatic; 318 | CURRENT_PROJECT_VERSION = 1; 319 | DEVELOPMENT_ASSET_PATHS = "\"OnboardingExample/Preview Content\""; 320 | DEVELOPMENT_TEAM = 864VDCS2QY; 321 | ENABLE_PREVIEWS = YES; 322 | GENERATE_INFOPLIST_FILE = YES; 323 | INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; 324 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 325 | INFOPLIST_KEY_UILaunchScreen_Generation = YES; 326 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 327 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 328 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 329 | LD_RUNPATH_SEARCH_PATHS = ( 330 | "$(inherited)", 331 | "@executable_path/Frameworks", 332 | ); 333 | MARKETING_VERSION = 1.0; 334 | PRODUCT_BUNDLE_IDENTIFIER = ch.OnboardingExample; 335 | PRODUCT_NAME = "$(TARGET_NAME)"; 336 | SWIFT_EMIT_LOC_STRINGS = YES; 337 | SWIFT_VERSION = 5.0; 338 | TARGETED_DEVICE_FAMILY = "1,2"; 339 | }; 340 | name = Release; 341 | }; 342 | /* End XCBuildConfiguration section */ 343 | 344 | /* Begin XCConfigurationList section */ 345 | 3758B0EB2BE4B00600B084B4 /* Build configuration list for PBXProject "OnboardingExample" */ = { 346 | isa = XCConfigurationList; 347 | buildConfigurations = ( 348 | 3758B0FC2BE4B00700B084B4 /* Debug */, 349 | 3758B0FD2BE4B00700B084B4 /* Release */, 350 | ); 351 | defaultConfigurationIsVisible = 0; 352 | defaultConfigurationName = Release; 353 | }; 354 | 3758B0FE2BE4B00700B084B4 /* Build configuration list for PBXNativeTarget "OnboardingExample" */ = { 355 | isa = XCConfigurationList; 356 | buildConfigurations = ( 357 | 3758B0FF2BE4B00700B084B4 /* Debug */, 358 | 3758B1002BE4B00700B084B4 /* Release */, 359 | ); 360 | defaultConfigurationIsVisible = 0; 361 | defaultConfigurationName = Release; 362 | }; 363 | /* End XCConfigurationList section */ 364 | 365 | /* Begin XCSwiftPackageProductDependency section */ 366 | 3758B1052BE4B12C00B084B4 /* InfomaniakOnboarding */ = { 367 | isa = XCSwiftPackageProductDependency; 368 | productName = InfomaniakOnboarding; 369 | }; 370 | /* End XCSwiftPackageProductDependency section */ 371 | }; 372 | rootObject = 3758B0E82BE4B00600B084B4 /* Project object */; 373 | } 374 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /OnboardingExample/OnboardingExample/Assets.xcassets/illu_onboarding_1.dataset/illu_onboarding_1.json: -------------------------------------------------------------------------------- 1 | {"v":"4.8.0","meta":{"g":"LottieFiles AE 3.1.1","a":"","k":"","d":"","tc":""},"fr":29.9700012207031,"ip":0,"op":240.0000097754,"w":1678,"h":1522,"nm":"Animation 1 V2 Infomaniak Mail","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"POINT 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":215,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":222,"s":[70]},{"t":229.000009327361,"s":[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":68,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[364.964,830.015,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[364.964,830.015,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[364.964,830.015,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[364.964,830.015,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":187,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":194,"s":[364.964,830.015,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":208,"s":[364.964,830.015,0],"to":[0,-5.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":215,"s":[364.964,795.015,0],"to":[0,0,0],"ti":[0,-5.833,0]},{"t":222.000009042245,"s":[364.964,830.015,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.149,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.778,0],[0,-8.777],[-8.783,0],[0,8.784]],"o":[[-8.783,0],[0,8.784],[8.778,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":879.000035802404,"st":-21.0000008553475,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"POINT 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":215,"s":[70]},{"t":222.000009042245,"s":[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":61,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[314.27,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[314.27,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[314.27,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[314.27,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":187,"s":[314.27,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":201,"s":[314.27,830.328,0],"to":[0,-6,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":208,"s":[314.27,794.328,0],"to":[0,0,0],"ti":[0,-6,0]},{"t":215.00000875713,"s":[314.27,830.328,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.15,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.783,0],[0,-8.777],[-8.778,0],[0,8.784]],"o":[[-8.778,0],[0,8.784],[8.783,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":879.000035802404,"st":-21.0000008553475,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"POINT 1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[70]},{"t":215.00000875713,"s":[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":54,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[263.577,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[263.577,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[263.577,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[263.577,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[263.577,830.328,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":194,"s":[263.577,830.328,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":201,"s":[263.577,801.328,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"t":208.000008472014,"s":[263.577,830.328,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.15,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.778,0],[0,-8.777],[-8.783,0],[0,8.784]],"o":[[-8.783,0],[0,8.784],[8.778,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":879.000035802404,"st":-21.0000008553475,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"POINT 4","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":215,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":222,"s":[70]},{"t":229.000009327361,"s":[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":68,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[1418.125,295.428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[1418.125,295.428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[1418.125,295.428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[1418.125,295.428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":187,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":194,"s":[1418.125,295.428,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":208,"s":[1418.125,295.428,0],"to":[0,-5.167,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":215,"s":[1418.125,264.428,0],"to":[0,0,0],"ti":[0,-5.167,0]},{"t":222.000009042245,"s":[1418.125,295.428,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.149,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.778,0],[0,-8.777],[-8.783,0],[0,8.784]],"o":[[-8.783,0],[0,8.784],[8.778,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"POINT 5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":215,"s":[70]},{"t":222.000009042245,"s":[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":61,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[1367.431,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[1367.431,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[1367.431,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[1367.431,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":187,"s":[1367.431,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":201,"s":[1367.431,295.741,0],"to":[0,-4.833,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":208,"s":[1367.431,266.741,0],"to":[0,0,0],"ti":[0,-4.833,0]},{"t":215.00000875713,"s":[1367.431,295.741,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.15,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.783,0],[0,-8.777],[-8.778,0],[0,8.784]],"o":[[-8.778,0],[0,8.784],[8.783,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"POINT 6","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":180,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":187,"s":[70]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":194,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":201,"s":[50]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":208,"s":[70]},{"t":215.00000875713,"s":[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":54,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[1316.738,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[1316.738,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[1316.738,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[1316.738,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":180,"s":[1316.738,295.741,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":194,"s":[1316.738,295.741,0],"to":[0,-5,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":201,"s":[1316.738,265.741,0],"to":[0,0,0],"ti":[0,-5,0]},{"t":208.000008472014,"s":[1316.738,295.741,0]}],"ix":2},"a":{"a":0,"k":[16.15,16.15,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.778,0],[0,-8.777],[-8.783,0],[0,8.784]],"o":[[-8.783,0],[0,8.784],[8.778,0],[0,-8.777]],"v":[[0,-15.9],[-15.9,0],[0,15.9],[15.9,0]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[16.15,16.15],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"CHAT 1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"t":41.0000016699642,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[328.454,827.714,0],"ix":2},"a":{"a":0,"k":[186.251,59.139,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-28.812,-6.421],[0,0],[0,29.457],[0,0],[-29.445,0],[0,0],[0,-29.442],[0,0]],"o":[[0,0],[-29.445,0],[0,0],[0,-29.442],[0,0],[29.452,0],[0,0],[0,29.457]],"v":[[186.001,58.889],[-132.461,58.889],[-186.001,5.345],[-186.001,-5.35],[-132.461,-58.889],[103.645,-58.889],[157.189,-5.35],[157.189,5.345]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[186.251,59.139],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":896.000036494828,"st":-4.00000016292334,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"CHAT 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"t":33,"s":[0]},{"t":41.0000016699642,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1349.542,295.741,0],"ix":2},"a":{"a":0,"k":[186.251,59.139,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[28.811,-6.421],[0,0],[0,29.459],[0,0],[29.448,0],[0,0],[0,-29.445],[0,0]],"o":[[0,0],[29.448,0],[0,0],[0,-29.445],[0,0],[-29.452,0],[0,0],[0,29.459]],"v":[[-186.001,58.889],[132.462,58.889],[186.001,5.344],[186.001,-5.348],[132.462,-58.889],[-103.641,-58.889],[-157.191,-5.348],[-157.191,5.344]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.741176470588,0.58431372549,0.654901960784,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[186.252,59.14],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":33.0000013441176,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"IPHONE SCREEN","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[862.499,760.095,0],"ix":2},"a":{"a":0,"k":[401.717,721.482,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.539,0.539,0.667],"y":[0.998,0.998,1]},"o":{"x":[0.575,0.575,0.333],"y":[0.009,0.009,0]},"t":0,"s":[70,70,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":14,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20,"s":[97,97,100]},{"t":27.0000010997325,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.003,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.004,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.006],[0.007,11.766],[-11.765,0.006]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[193.503,1301.448],"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":"Transformer "}],"nm":"Groupe 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.003,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.004,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.006],[0.007,11.766],[-11.765,0.006]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[172.313,1129.685],"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":"Transformer "}],"nm":"Groupe 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.004,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.003,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.007],[0.007,11.766],[-11.766,0.007]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[153.566,977.74],"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":"Transformer "}],"nm":"Groupe 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.004,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.003,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.006],[0.007,11.766],[-11.766,0.007]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[134.819,825.8],"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":"Transformer "}],"nm":"Groupe 4","np":4,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.004,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.003,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.007],[0.007,11.765],[-11.766,0.006]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[115.256,667.249],"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":"Transformer "}],"nm":"Groupe 5","np":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.498,0.004],[-0.003,-6.498],[6.498,-0.004],[0.004,6.498]],"o":[[6.498,-0.004],[0.004,6.497],[-6.498,0.004],[-0.003,-6.497]],"v":[[-0.007,-11.766],[11.765,-0.006],[0.007,11.766],[-11.766,0.007]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.324,521.915],"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":"Transformer "}],"nm":"Groupe 6","np":4,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.081,1.987],[1.676,0.636],[-0.135,-0.981],[-0.635,0.066],[-2.502,0.334],[-0.255,4.04],[0.145,1.069],[0.15,0.283]],"o":[[-0.405,2.098],[-0.541,0.215],[0.14,1.07],[1.312,3.831],[2.497,-0.334],[0.631,-0.103],[-0.05,-0.379],[-0.961,-0.308]],"v":[[2.523,-7.7],[-6.351,-3.357],[-7.086,-1.305],[-5.685,0.497],[1.282,7.366],[6.195,-1.091],[7.076,-3.196],[6.766,-4.2]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[558.769,160.48],"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":"Transformer "}],"nm":"Groupe 7","np":4,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.742,0.233],[-0.831,1.24],[0.235,1.772],[0,0],[0,0],[0,0],[-0.025,-0.83]],"o":[[1.081,-0.145],[-0.771,-1.261],[0,0],[0,0],[0,0],[0.11,0.846],[1.532,2.269]],"v":[[1.596,5.506],[4.524,3.271],[3.263,-1.612],[2.707,-5.74],[-4.524,-4.772],[-3.973,-0.646],[-3.738,1.896]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.827451040231,0.713725490196,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[559.815,164.755],"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":"Transformer "}],"nm":"Groupe 8","np":4,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.088,0.51],[4.139,-0.553],[2.268,3.188],[-0.44,-3.271],[0,0],[-5.615,0.75],[-3.508,3.916],[0,0]],"o":[[-1.351,3.66],[-4.144,0.553],[-2.872,1.288],[0,0],[4.409,2.859],[5.616,-0.75],[0,0],[-0.436,-3.249]],"v":[[8.541,-9.62],[-0.227,-2.596],[-10.547,-7.087],[-14.812,0.546],[-14.166,5.397],[1.269,8.87],[15.251,1.469],[14.601,-3.383]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.35686275363,0.592156887054,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[561.479,179.173],"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":"Transformer "}],"nm":"Groupe 9","np":4,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.731,-0.098],[0.44,3.305],[0,0],[0,0],[0,0],[3.594,-0.48],[0.626,-0.278],[-4.144,0.552],[-1.356,3.659]],"o":[[-3.854,0.515],[0,0],[0,0],[0,0],[0.445,3.305],[-0.71,0.095],[2.268,3.187],[4.139,-0.553],[-0.696,-0.116]],"v":[[7.4,1.452],[2.625,-4.934],[2.075,-9.061],[-5.162,-8.095],[-4.611,-3.968],[-7.539,3.447],[-9.547,4.017],[0.774,8.509],[9.547,1.486]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[560.453,168.078],"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":"Transformer "}],"nm":"Groupe 10","np":4,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.619,-0.617],[0,0],[-0.616,-4.618],[0,0],[-4.619,0.617],[0,0],[0.616,4.619],[0,0]],"o":[[0,0],[-4.615,0.617],[0,0],[0.615,4.619],[0,0],[4.619,-0.617],[0,0],[-0.616,-4.618]],"v":[[-0.73,-10.86],[-2.146,-10.67],[-9.423,-1.152],[-8.787,3.584],[0.731,10.86],[2.148,10.669],[9.423,1.152],[8.788,-3.584]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.815686334348,0.745098039216,0.486274539723,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[558.614,157.127],"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":"Transformer "}],"nm":"Groupe 11","np":4,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.502,-1.669],[-1.672,-12.501],[-12.502,1.67],[1.666,12.502]],"o":[[-12.502,1.67],[1.671,12.502],[12.501,-1.67],[-1.672,-12.502]],"v":[[-3.02,-22.636],[-22.633,3.023],[3.026,22.635],[22.639,-3.023]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.670588235294,0.141176470588,0.337254901961,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[559.722,165.412],"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":"Transformer "}],"nm":"Groupe 12","np":4,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.872,3.428],[2.898,1.096],[-0.225,-1.691],[-1.096,0.115],[-4.309,0.576],[-0.441,6.971],[0.25,1.847],[0.255,0.485]],"o":[[-0.696,3.623],[-0.931,0.37],[0.245,1.847],[2.257,6.606],[4.314,-0.575],[1.091,-0.176],[-0.085,-0.65],[-1.662,-0.531]],"v":[[4.347,-13.28],[-10.957,-5.788],[-12.228,-2.25],[-9.806,0.858],[2.204,12.704],[10.683,-1.879],[12.204,-5.513],[11.668,-7.239]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.84313731474,0.678431372549,0.513725490196,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[187.49,633.83],"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":"Transformer "}],"nm":"Groupe 13","np":4,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.003,0.4],[-1.432,2.142],[0.41,3.058],[0,0],[0,0],[0,0],[-0.045,-1.431]],"o":[[1.867,-0.25],[-1.337,-2.172],[0,0],[0,0],[0,0],[0.195,1.457],[2.643,3.914]],"v":[[2.755,9.496],[7.805,5.643],[5.623,-2.779],[4.672,-9.896],[-7.805,-8.229],[-6.854,-1.114],[-6.449,3.271]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.772549079446,0.572549019608,0.392156892664,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[189.286,641.207],"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":"Transformer "}],"nm":"Groupe 14","np":4,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.32,0.881],[7.137,-0.956],[3.903,5.5],[-0.751,-5.64],[0,0],[-9.688,1.297],[-6.046,6.751],[0,0]],"o":[[-2.332,6.311],[-7.146,0.956],[-4.96,2.222],[0,0],[7.602,4.929],[9.684,-1.291],[0,0],[-0.751,-5.605]],"v":[[14.731,-16.591],[-0.393,-4.479],[-18.189,-12.227],[-25.551,0.94],[-24.43,9.309],[2.189,15.294],[26.302,2.533],[25.186,-5.836]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[192.164,666.083],"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":"Transformer "}],"nm":"Groupe 15","np":4,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.261,-0.17],[0.761,5.7],[0,0],[0,0],[0,0],[6.206,-0.826],[1.076,-0.48],[-7.147,0.951],[-2.337,6.311]],"o":[[-6.641,0.886],[0,0],[0,0],[0,0],[0.761,5.701],[-1.221,0.165],[3.909,5.495],[7.136,-0.956],[-1.196,-0.2]],"v":[[12.765,2.505],[4.531,-8.51],[3.581,-15.627],[-8.901,-13.96],[-7.95,-6.844],[-13.005,5.943],[-16.463,6.929],[1.334,14.676],[16.463,2.56]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.84313731474,0.678431372549,0.513725490196,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[190.382,646.937],"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":"Transformer "}],"nm":"Groupe 16","np":4,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.962,-1.066],[0,0],[-1.061,-7.967],[0,0],[-7.962,1.062],[0,0],[1.061,7.967],[0,0]],"o":[[0,0],[-7.963,1.066],[0,0],[1.066,7.967],[0,0],[7.962,-1.061],[0,0],[-1.066,-7.963]],"v":[[-1.256,-18.728],[-3.703,-18.403],[-16.25,-1.982],[-15.159,6.18],[1.256,18.732],[3.704,18.401],[16.25,1.987],[15.159,-6.18]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.141176477075,0.117647066712,0.1254902035,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[187.227,628.043],"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":"Transformer "}],"nm":"Groupe 17","np":4,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.56,-2.878],[-2.883,-21.56],[-21.565,2.878],[2.882,21.565]],"o":[[-21.565,2.883],[2.877,21.56],[21.56,-2.883],[-2.878,-21.56]],"v":[[-5.212,-39.041],[-39.038,5.215],[5.218,39.041],[39.039,-5.215]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784375668,0.960784375668,0.960784375668,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[189.136,642.341],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transformer "}],"nm":"Groupe 18","np":4,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.46,1.306],[1.306,10.463],[0,0],[10.46,-1.306],[-1.306,-10.463]],"o":[[1.306,10.463],[10.464,-1.306],[0,0],[-1.307,-10.463],[-10.465,1.306],[0,0]],"v":[[-18.842,3.154],[2.463,19.733],[19.042,-1.576],[18.847,-3.154],[-2.463,-19.733],[-19.042,1.576]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[98.395,222.932],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transformer "}],"nm":"Groupe 19","np":4,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.465,1.306],[1.306,10.462],[0,0],[10.465,-1.305],[-1.306,-10.463]],"o":[[1.306,10.463],[10.459,-1.306],[0,0],[-1.307,-10.463],[-10.46,1.307],[0,0]],"v":[[-18.842,3.154],[2.467,19.733],[19.042,-1.576],[18.847,-3.154],[-2.463,-19.734],[-19.043,1.576]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[496.377,173.813],"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":"Transformer "}],"nm":"Groupe 20","np":4,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.465,1.306],[1.306,10.462],[0,0],[10.465,-1.306],[-1.306,-10.462]],"o":[[1.306,10.462],[10.459,-1.306],[0,0],[-1.307,-10.462],[-10.46,1.307],[0,0]],"v":[[-18.847,3.154],[2.463,19.734],[19.042,-1.576],[18.842,-3.154],[-2.468,-19.733],[-19.042,1.576]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.400000029919,0.400000029919,0.400000029919,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[555.987,165.806],"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":"Transformer "}],"nm":"Groupe 21","np":4,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.361,-10.898],[-10.901,1.36],[0,0],[1.361,10.898],[10.9,-1.361],[0,0]],"o":[[1.361,10.899],[0,0],[10.9,-1.36],[-1.361,-10.899],[0,0],[-10.9,1.361]],"v":[[-112.874,14.091],[-90.673,31.362],[95.603,8.106],[112.874,-14.09],[90.679,-31.36],[-95.603,-8.105]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8784314394,0.8784314394,0.8784314394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[302.658,197.564],"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":"Transformer "}],"nm":"Groupe 22","np":4,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-10.465,1.306],[1.306,10.462],[0,0],[10.465,-1.306],[-1.306,-10.462]],"o":[[1.306,10.462],[10.459,-1.306],[0,0],[-1.306,-10.462],[-10.46,1.307],[0,0]],"v":[[-18.847,3.154],[2.462,19.734],[19.042,-1.576],[18.842,-3.154],[-2.468,-19.733],[-19.042,1.576]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[571.351,243.127],"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":"Transformer "}],"nm":"Groupe 23","np":4,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.232,-17.872],[-17.877,2.232],[0,0],[2.232,17.876],[17.872,-2.232],[0,0]],"o":[[2.232,17.871],[0,0],[17.871,-2.232],[-2.232,-17.872],[0,0],[-17.871,2.233]],"v":[[-75.775,9.461],[-39.371,37.782],[47.454,26.943],[75.775,-9.46],[39.371,-37.782],[-47.454,-26.943]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254901961,0,0.333333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[634.744,1251.204],"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":"Transformer "}],"nm":"Groupe 24","np":4,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.091,8.763],[-10.75,1.342],[0,0],[-1.096,-8.76],[10.745,-1.342],[0,0]],"o":[[-1.096,-8.761],[0,0],[10.75,-1.342],[1.091,8.761],[0,0],[-10.745,1.342]],"v":[[-138.826,17.332],[-121.345,-0.961],[117.385,-30.764],[138.831,-17.331],[121.349,0.962],[-117.386,30.764]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[229.789,288.949],"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":"Transformer "}],"nm":"Groupe 25","np":4,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"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":[[-303.02,8.068],[295.69,-66.732],[303.02,-8.068],[-295.691,66.732]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980392217636,0.980392217636,0.980392217636,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[356.694,365.84],"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":"Transformer "}],"nm":"Groupe 26","np":4,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"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":[[71.156,-18.733],[-73.573,-0.826],[-71.151,18.732],[73.573,0.825]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[411.924,1300.807],"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":"Transformer "}],"nm":"Groupe 27","np":4,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"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":[[137.652,-26.958],[-140.069,7.4],[-137.652,26.958],[140.069,-7.4]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[472.615,1245.644],"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":"Transformer "}],"nm":"Groupe 28","np":4,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"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":[[88.482,-20.875],[-90.898,1.315],[-88.482,20.875],[90.898,-1.317]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[412.8,1130.641],"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":"Transformer "}],"nm":"Groupe 29","np":4,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"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":[[170.9,-31.068],[-173.317,11.516],[-170.9,31.068],[173.317,-11.51]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.413,1073.503],"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":"Transformer "}],"nm":"Groupe 30","np":4,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"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":[[71.156,-18.73],[-73.573,-0.829],[-71.156,18.73],[73.573,0.828]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[379.024,969.76],"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":"Transformer "}],"nm":"Groupe 31","np":4,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"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":[[137.649,-26.955],[-140.072,7.397],[-137.65,26.955],[140.071,-7.397]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[439.712,914.596],"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":"Transformer "}],"nm":"Groupe 32","np":4,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"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":[[71.156,-18.733],[-73.573,-0.827],[-71.156,18.732],[73.573,0.826]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[362.088,807.833],"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":"Transformer "}],"nm":"Groupe 33","np":4,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"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":[[137.65,-26.958],[-140.072,7.4],[-137.65,26.958],[140.072,-7.399]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[422.776,752.67],"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":"Transformer "}],"nm":"Groupe 34","np":4,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"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":[[87.461,-20.749],[-89.883,1.191],[-87.461,20.749],[89.883,-1.191]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[361.943,652.805],"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":"Transformer "}],"nm":"Groupe 35","np":4,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"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":[[168.946,-30.829],[-171.363,11.27],[-168.94,30.828],[171.363,-11.271]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[437.617,595.788],"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":"Transformer "}],"nm":"Groupe 36","np":4,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"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":[[71.156,-18.73],[-73.573,-0.829],[-71.156,18.73],[73.573,0.828]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[329.668,510.727],"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":"Transformer "}],"nm":"Groupe 37","np":4,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"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":[[137.652,-26.955],[-140.069,7.397],[-137.652,26.955],[140.069,-7.402]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[390.359,455.564],"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":"Transformer "}],"nm":"Groupe 38","np":4,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.616,0.215],[-0.26,1.722],[-2.547,1.611],[-0.59,-4.404],[-1.692,0.231],[4.744,2.933],[4.069,-3.243],[-1.146,-8.548]],"o":[[-0.43,-3.228],[9.554,-2.842],[2.438,2.017],[1.637,-0.235],[-1.246,-7.847],[-4.71,-2.908],[-3.908,3.112],[1.821,0.22]],"v":[[-7.314,11.628],[-7.459,6.564],[7.143,-1.534],[10.447,9.257],[11.984,4.526],[6.434,-8.935],[-8.175,-6.208],[-9.846,7.33]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.776470648074,0.674509803922,0.623529411765,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[168.958,479.222],"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":"Transformer "}],"nm":"Groupe 39","np":4,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.011,0.095],[5.94,-0.795],[-0.236,-12.577],[-0.226,-1.712],[-1.106,0.15],[-0.11,0.05],[-2.022,-0.986],[-1.061,0.14],[-0.956,0.851],[-0.755,5.11],[-0.126,0.02],[0.25,1.867]],"o":[[-3.073,-12.196],[-5.936,0.791],[-0.946,0.35],[0.25,1.862],[0.125,-0.015],[2.067,4.739],[1.136,0.55],[1.076,-0.145],[1.641,-1.451],[0.125,0.02],[1.111,-0.145],[-0.225,-1.707]],"v":[[10.022,-3.794],[-2.189,-15.365],[-10.937,-0.99],[-12.228,2.573],[-9.771,5.676],[-9.421,5.57],[-1.739,15.609],[1.97,15.789],[5.543,14.609],[10.277,2.938],[10.648,2.948],[12.204,-0.695]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[170.374,487.388],"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":"Transformer "}],"nm":"Groupe 40","np":4,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.546,-0.751],[-1.056,0.145],[-0.961,0.851],[-0.801,1.756],[0.516,3.859],[-0.806,-6.015],[-0.04,-0.791]],"o":[[1.131,0.551],[1.081,-0.14],[0.725,-0.64],[-0.666,-1.081],[-0.815,-6.09],[0.155,1.156],[1.997,3.328]],"v":[[-1.286,8.557],[2.417,8.733],[5.991,7.556],[8.378,3.798],[6.811,-3.019],[-7.572,-1.097],[-7.282,1.796]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.827451040231,0.713725490196,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[171.652,497.347],"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":"Transformer "}],"nm":"Groupe 41","np":4,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.806,6.016],[-0.816,-6.09],[-1.776,-0.881],[9.804,-1.312]],"o":[[1.576,-2.122],[-0.805,-6.015],[0.81,6.091],[0,0],[-9.809,1.306]],"v":[[-10.159,4.569],[-8.609,-3.899],[5.776,-5.821],[8.852,2.312],[0.355,10.605]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[172.689,500.15],"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":"Transformer "}],"nm":"Groupe 42","np":4,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.32,0.881],[0,0],[0,0],[1.296,0.66],[0,0],[1.076,-0.48],[0,-0.005],[-0.751,-5.625],[0,0],[-9.985,1.337],[-6.085,7.137],[0,0]],"o":[[0,0],[0,0],[-1.196,-0.195],[0,0],[-1.051,1.241],[0.005,0.005],[-4.935,2.232],[0,0],[7.728,5.244],[10.029,-1.341],[0,0],[-0.746,-5.606]],"v":[[14.892,-16.551],[14.841,-16.51],[14.841,-16.546],[7.389,-18.893],[-11.623,-16.63],[-18.084,-12.177],[-18.074,-12.161],[-26.597,2.036],[-24.72,11.105],[2.6,17.555],[27.348,4.078],[26.777,-5.089]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.741176470588,0.58431372549,0.654901960784,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[174.152,521.344],"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":"Transformer "}],"nm":"Groupe 43","np":4,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.565,-2.878],[-2.878,-21.56],[-21.56,2.878],[2.882,21.565]],"o":[[-21.56,2.883],[2.883,21.56],[21.56,-2.883],[-2.878,-21.56]],"v":[[-5.217,-39.041],[-39.043,5.215],[5.213,39.041],[39.039,-5.215]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784375668,0.960784375668,0.960784375668,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[171.545,499.864],"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":"Transformer "}],"nm":"Groupe 44","np":4,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.606,1.852],[3.023,-0.811],[2.632,1.316],[0.485,-0.275],[-0.095,-0.681],[-1.091,0.115],[-4.309,0.575],[-0.441,6.972],[0.245,1.847],[0.265,0.491]],"o":[[-1.757,1.757],[-3.923,1.046],[-0.05,1.271],[-0.135,0.556],[0.245,1.847],[2.257,6.611],[4.314,-0.581],[1.086,-0.175],[-0.085,-0.661],[-1.442,-0.58]],"v":[[7.735,-12.594],[0.397,-8.555],[-9.957,-9.131],[-12.209,-4.827],[-12.288,-2.94],[-9.871,0.168],[2.139,12.019],[10.618,-2.57],[12.139,-6.203],[11.588,-7.955]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.158,793.527],"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":"Transformer "}],"nm":"Groupe 45","np":4,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.003,0.4],[-1.432,2.142],[0.405,3.057],[0,0],[0,0],[0,0],[-0.04,-1.431]],"o":[[1.867,-0.25],[-1.337,-2.172],[0,0],[0,0],[0,0],[0.195,1.461],[2.643,3.914]],"v":[[2.755,9.499],[7.805,5.64],[5.628,-2.782],[4.677,-9.899],[-7.805,-8.232],[-6.854,-1.116],[-6.449,3.268]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.827451040231,0.713725490196,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.889,800.211],"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":"Transformer "}],"nm":"Groupe 46","np":4,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.261,-0.165],[0.761,5.7],[0,0],[0,0],[0,0],[6.206,-0.831],[1.071,-0.48],[-7.147,0.956],[-2.332,6.311]],"o":[[-6.646,0.886],[0,0],[0,0],[0,0],[0.761,5.701],[-1.221,0.165],[3.904,5.495],[7.136,-0.956],[-1.196,-0.2]],"v":[[12.762,2.502],[4.529,-8.513],[3.579,-15.63],[-8.903,-13.963],[-7.952,-6.847],[-13.007,5.945],[-16.46,6.926],[1.332,14.673],[16.46,2.562]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[209.988,805.941],"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":"Transformer "}],"nm":"Groupe 47","np":4,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.32,0.881],[0,0],[-0.756,-5.64],[0,0],[-9.683,1.292],[-6.041,6.756],[0,0]],"o":[[0,0],[-4.96,2.217],[0,0],[7.602,4.929],[9.684,-1.296],[0,0],[-0.751,-5.605]],"v":[[14.736,-16.591],[-18.189,-12.221],[-25.546,0.94],[-24.43,9.309],[2.189,15.299],[26.302,2.533],[25.186,-5.836]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.749019607843,0.298039215686,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[211.767,825.084],"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":"Transformer "}],"nm":"Groupe 48","np":4,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-7.967,1.061],[0,0],[-1.066,-7.968],[0,0]],"o":[[0,0],[-1.061,-7.967],[0,0],[7.963,-1.061],[0,0],[0,0]],"v":[[-13.32,22.756],[-17.023,-4.95],[-4.472,-21.365],[-2.03,-21.695],[14.386,-9.143],[18.084,18.562]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.776470661163,0.674509823322,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[207.603,790.012],"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":"Transformer "}],"nm":"Groupe 49","np":4,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.56,-2.883],[-2.883,-21.565],[-21.565,2.883],[2.877,21.56]],"o":[[-21.56,2.878],[2.877,21.56],[21.559,-2.878],[-2.883,-21.565]],"v":[[-5.212,-39.039],[-39.038,5.218],[5.218,39.039],[39.044,-5.212]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784373564,0.960784373564,0.960784373564,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.739,801.344],"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":"Transformer "}],"nm":"Groupe 50","np":4,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.611,0.225],[-0.581,1.721],[-5.866,-5.085],[-0.615,-4.399],[-1.687,0.236],[15.325,-1.746],[0,0],[-0.085,-4.119],[0,0]],"o":[[-0.45,-3.223],[0.58,-1.727],[0.966,2.632],[1.617,-0.225],[0.2,-3.923],[-3.848,0.441],[0,0],[0.08,4.119],[1.821,0.205]],"v":[[-7.842,11.48],[-8.347,2.487],[8.222,0.175],[9.904,9.008],[11.341,4.308],[-3.104,-9.959],[-10.726,-9.474],[-12.136,-2.593],[-10.575,7.307]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.141176470588,0.117647066303,0.125490196078,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[223.405,939.094],"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":"Transformer "}],"nm":"Groupe 51","np":4,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.006,0.09],[5.935,-0.825],[-0.305,-12.572],[-0.386,-1.667],[-1.106,0.155],[-0.11,0.05],[-2.032,-0.976],[-1.061,0.145],[-0.951,0.856],[-0.73,5.115],[-0.125,0.015],[0.26,1.862]],"o":[[-3.143,-12.176],[-5.931,0.826],[-0.946,0.36],[0.42,1.832],[0.12,-0.02],[2.092,4.729],[1.136,0.54],[1.076,-0.15],[1.637,-1.461],[0.125,0.02],[1.106,-0.155],[-0.235,-1.707]],"v":[[10.072,-3.844],[-2.209,-15.344],[-11.298,-0.675],[-12.143,2.648],[-9.671,5.741],[-9.321,5.631],[-1.579,15.63],[2.13,15.785],[5.693,14.583],[10.362,2.888],[10.733,2.898],[12.269,-0.755]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.529411764706,0.341176470588,0.266666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[224.128,947.076],"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":"Transformer "}],"nm":"Groupe 52","np":4,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.546,-0.741],[-1.061,0.145],[-0.956,0.856],[-0.791,1.757],[0.541,3.859],[-0.841,-6.01],[-0.05,-0.791]],"o":[[1.136,0.545],[1.071,-0.15],[0.725,-0.646],[-0.676,-1.075],[-0.845,-6.085],[0.16,1.156],[2.012,3.318]],"v":[[-1.636,7.471],[2.077,7.631],[5.641,6.43],[8.008,2.661],[6.396,-4.15],[-7.972,-2.148],[-7.662,0.745]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - 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":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.927,958.127],"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":"Transformer "}],"nm":"Groupe 53","np":4,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.836,6.016],[-0.851,-6.085],[-1.781,-0.871],[0,0]],"o":[[1.561,-2.132],[-0.84,-6.01],[0.845,6.086],[0,0],[0,0]],"v":[[-9.498,3.095],[-7.997,-5.383],[6.377,-7.385],[9.498,0.728],[1.656,13.47]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.529411764706,0.341176470588,0.266666666667,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.957,961.362],"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":"Transformer "}],"nm":"Groupe 54","np":4,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.325,0.851],[0,0],[0,0],[1.301,0.651],[0,0],[0,0],[1.071,-0.485],[0,-0.005],[-0.786,-5.62],[0,0],[-9.979,1.391],[-6.046,7.167],[0,0]],"o":[[0,0],[0,0],[-1.196,-0.19],[0,0],[0,0],[-1.041,1.246],[0.005,0.005],[-4.92,2.257],[0,0],[7.757,5.199],[10.019,-1.397],[0,0],[-0.781,-5.6]],"v":[[14.796,-16.635],[14.746,-16.595],[14.746,-16.63],[7.279,-18.932],[-0.558,-6.195],[-11.718,-16.565],[-18.154,-12.076],[-18.144,-12.061],[-26.582,2.187],[-24.66,11.245],[2.7,17.542],[27.368,3.924],[26.747,-5.245]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.741176470588,0.800000059838,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[228.177,981.018],"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":"Transformer "}],"nm":"Groupe 55","np":4,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.545,-3.003],[-3.003,-21.545],[-21.545,2.998],[3.003,21.545]],"o":[[-21.545,3.003],[3.003,21.545],[21.545,-3.003],[-3.003,-21.545]],"v":[[-5.435,-39.008],[-39.011,5.438],[5.435,39.014],[39.011,-5.432]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784375668,0.960784375668,0.960784375668,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.437,959.55],"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":"Transformer "}],"nm":"Groupe 56","np":4,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.616,0.215],[-0.26,1.722],[-2.552,1.601],[-0.58,-4.404],[-1.692,0.221],[4.744,2.938],[4.074,-3.238],[-1.131,-8.548]],"o":[[-0.425,-3.223],[9.564,-2.827],[2.433,2.017],[1.642,-0.23],[-1.236,-7.857],[-4.705,-2.913],[-3.913,3.102],[1.821,0.225]],"v":[[-7.329,11.618],[-7.469,6.558],[7.148,-1.514],[10.432,9.276],[11.979,4.556],[6.448,-8.921],[-8.161,-6.213],[-9.857,7.319]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.513725490196,0.513725490196,0.513725490196,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[239.137,1098.233],"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":"Transformer "}],"nm":"Groupe 57","np":4,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.011,0.095],[5.94,-0.785],[-0.215,-12.577],[-0.225,-1.707],[-1.106,0.145],[-0.11,0.055],[-2.022,-0.991],[-1.061,0.14],[-0.961,0.851],[-0.766,5.11],[-0.125,0.02],[0.25,1.866]],"o":[[-3.053,-12.201],[-5.941,0.781],[-0.951,0.35],[0.246,1.867],[0.125,-0.015],[2.062,4.749],[1.131,0.55],[1.075,-0.14],[1.641,-1.446],[0.125,0.02],[1.112,-0.145],[-0.225,-1.707]],"v":[[10.03,-3.781],[-2.161,-15.372],[-10.93,-1.013],[-12.232,2.545],[-9.779,5.658],[-9.428,5.548],[-1.761,15.607],[1.948,15.787],[5.526,14.611],[10.275,2.95],[10.645,2.96],[12.206,-0.678]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[240.541,1106.411],"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":"Transformer "}],"nm":"Groupe 58","np":4,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.541,-0.756],[-1.056,0.14],[-0.961,0.846],[-0.806,1.751],[0.511,3.864],[-0.795,-6.02],[-0.045,-0.786]],"o":[[1.136,0.551],[1.076,-0.14],[0.73,-0.64],[-0.666,-1.081],[-0.8,-6.09],[0.15,1.156],[1.987,3.338]],"v":[[-1.309,8.552],[2.399,8.732],[5.973,7.561],[8.37,3.808],[6.808,-3.014],[-7.575,-1.112],[-7.285,1.776]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.827451040231,0.713725490196,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[241.81,1116.373],"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":"Transformer "}],"nm":"Groupe 59","np":4,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.796,6.021],[-0.801,-6.09],[-1.771,-0.886],[9.809,-1.291]],"o":[[1.576,-2.122],[-0.795,-6.015],[0.805,6.096],[0,0],[-9.809,1.297]],"v":[[-10.154,4.559],[-8.594,-3.914],[5.79,-5.811],[8.857,2.327],[0.346,10.604]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[242.828,1119.17],"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":"Transformer "}],"nm":"Groupe 60","np":4,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.32,0.886],[0,0],[0,0.01],[1.291,0.661],[0,0],[1.076,-0.48],[-0.005,-0.005],[-0.741,-5.63],[0,0],[-9.99,1.317],[-6.095,7.122],[0,0]],"o":[[0,0],[-0.005,-0.015],[-1.196,-0.2],[0,0],[-1.056,1.241],[0.005,0.005],[-4.935,2.222],[0,0],[7.723,5.26],[10.029,-1.326],[0,0],[-0.741,-5.611]],"v":[[14.917,-16.526],[14.871,-16.485],[14.866,-16.521],[7.42,-18.878],[-11.592,-16.651],[-18.064,-12.207],[-18.053,-12.192],[-26.596,1.996],[-24.741,11.065],[2.576,17.56],[27.337,4.124],[26.788,-5.045]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.737254917622,0,0.333333343267,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[244.267,1140.37],"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":"Transformer "}],"nm":"Groupe 61","np":4,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.565,-2.848],[-2.848,-21.565],[-21.564,2.848],[2.842,21.565]],"o":[[-21.57,2.843],[2.842,21.57],[21.57,-2.843],[-2.848,-21.565]],"v":[[-5.149,-39.046],[-39.046,5.15],[5.149,39.046],[39.052,-5.15]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784373564,0.960784373564,0.960784373564,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[241.692,1118.885],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transformer "}],"nm":"Groupe 62","np":4,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.591,1.857],[3.023,-0.786],[2.627,1.341],[0.49,-0.27],[-0.085,-0.681],[-1.096,0.105],[-4.319,0.54],[-0.496,6.967],[0.23,1.847],[0.26,0.496]],"o":[[-1.772,1.742],[-3.933,1.021],[-0.06,1.276],[-0.14,0.556],[0.236,1.846],[2.207,6.626],[4.314,-0.546],[1.091,-0.17],[-0.085,-0.661],[-1.437,-0.595]],"v":[[7.803,-12.554],[0.436,-8.575],[-9.918,-9.231],[-12.201,-4.942],[-12.301,-3.055],[-9.904,0.073],[2.017,12.014],[10.605,-2.505],[12.156,-6.128],[11.621,-7.885]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[256.265,1282.332],"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":"Transformer "}],"nm":"Groupe 63","np":4,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.008,0.375],[-1.447,2.128],[0.385,3.058],[0,0],[0,0],[0,0],[-0.03,-1.431]],"o":[[1.867,-0.235],[-1.317,-2.181],[0,0],[0,0],[0,0],[0.185,1.462],[2.617,3.934]],"v":[[2.673,9.504],[7.753,5.685],[5.635,-2.752],[4.745,-9.879],[-7.753,-8.307],[-6.857,-1.186],[-6.485,3.203]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.827451040231,0.713725490196,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.922,1289.026],"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":"Transformer "}],"nm":"Groupe 64","np":4,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.261,-0.155],[0.716,5.705],[0,0],[0,0],[0,0],[6.211,-0.781],[1.076,-0.475],[-7.151,0.901],[-2.382,6.296]],"o":[[-6.651,0.836],[0,0],[0,0],[0,0],[0.716,5.706],[-1.226,0.155],[3.864,5.525],[7.147,-0.896],[-1.196,-0.205]],"v":[[12.78,2.61],[4.632,-8.465],[3.736,-15.592],[-8.756,-14.02],[-7.86,-6.899],[-13.014,5.853],[-16.478,6.809],[1.254,14.691],[16.478,2.695]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.937254961799,0.839215746113,0.807843197093,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[258.93,1294.739],"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":"Transformer "}],"nm":"Groupe 65","np":4,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.315,0.921],[0,0],[-0.706,-5.645],[0,0],[-9.694,1.216],[-6.096,6.706],[0,0]],"o":[[0,0],[-4.975,2.187],[0,0],[7.562,4.989],[9.699,-1.216],[0,0],[-0.706,-5.61]],"v":[[14.851,-16.502],[-18.104,-12.394],[-25.566,0.714],[-24.51,9.092],[2.059,15.286],[26.272,2.71],[25.221,-5.667]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.509803950787,0.301960796118,0.396078467369,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[260.607,1313.931],"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":"Transformer "}],"nm":"Groupe 66","np":4,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-7.972,1.006],[0,0],[-1.001,-7.973],[0,0]],"o":[[0,0],[-1.001,-7.972],[0,0],[7.972,-1.001],[0,0],[0,0]],"v":[[-13.477,22.681],[-16.961,-5.055],[-4.289,-21.375],[-1.841,-21.68],[14.479,-9.003],[17.961,18.732]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.203921586275,0.054901964962,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[256.686,1278.772],"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":"Transformer "}],"nm":"Groupe 67","np":4,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[21.58,-2.712],[-2.713,-21.58],[-21.585,2.712],[2.712,21.585]],"o":[[-21.585,2.712],[2.712,21.584],[21.585,-2.708],[-2.713,-21.584]],"v":[[-4.909,-39.078],[-39.08,4.913],[4.91,39.079],[39.082,-4.907]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.960784375668,0.960784375668,0.960784375668,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.757,1290.14],"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":"Transformer "}],"nm":"Groupe 68","np":4,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[12.542,9.739],[2.002,15.755],[0,0],[-9.774,12.515],[-15.76,1.967],[0,0],[0,0],[-9.995,-7.815],[-12.596,1.521],[0,0],[-7.812,10.025],[1.532,12.614],[0,0],[0,0],[-12.517,-9.743],[-1.992,-15.736],[0,0],[9.749,-12.511],[15.739,-1.987]],"o":[[-15.76,1.962],[-12.546,-9.744],[0,0],[-1.907,-15.766],[9.779,-12.516],[0,0],[0,0],[1.566,12.592],[9.999,7.814],[0,0],[12.606,-1.604],[7.807,-10.025],[0,0],[0,0],[15.745,-1.928],[12.516,9.743],[0,0],[1.921,15.745],[-9.749,12.512],[0,0]],"v":[[-157.55,694.749],[-201.751,682.598],[-224.472,642.781],[-375.03,-568.266],[-362.744,-612.427],[-322.867,-635.042],[-255.851,-643.373],[-255.245,-638.502],[-237.193,-606.637],[-201.911,-596.81],[49.616,-628.08],[81.49,-646.237],[91.289,-681.583],[90.684,-686.454],[157.675,-694.782],[201.801,-682.578],[224.457,-642.795],[375.016,568.246],[362.789,612.368],[322.993,635.009]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[401.794,721.53],"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":"Transformer "}],"nm":"Groupe 69","np":4,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[22.05,-2.703],[0,0],[13.652,-17.528],[-2.712,-22.052],[0,0],[-17.531,-13.653],[-22.05,2.713],[0,0],[-13.652,17.531],[2.707,22.05],[0,0],[17.521,13.652]],"o":[[0,0],[-22.045,2.771],[-13.653,17.529],[0,0],[2.767,22.045],[17.531,13.652],[0,0],[22.045,-2.772],[13.653,-17.526],[0,0],[-2.772,-22.039],[-17.521,-13.651]],"v":[[154.73,-718.529],[-325.923,-658.774],[-381.669,-627.074],[-398.755,-565.266],[-248.206,645.691],[-216.507,701.438],[-154.7,718.518],[325.928,658.768],[381.674,627.069],[398.76,565.262],[248.211,-645.698],[216.522,-701.432]],"c":true},"ix":2},"nm":"Tracé 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431432387,0.878431432387,0.878431432387,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fond 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[401.717,721.482],"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":"Transformer "}],"nm":"Groupe 70","np":4,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":901.000036698482,"st":1.00000004073083,"bm":0}],"markers":[]} 2 | --------------------------------------------------------------------------------