diff --git a/DesignKit/Sources/Buttons/ElementActionButtonStyle.swift b/DesignKit/Sources/Buttons/ElementActionButtonStyle.swift index 7ea139886..7ae86d2a1 100644 --- a/DesignKit/Sources/Buttons/ElementActionButtonStyle.swift +++ b/DesignKit/Sources/Buttons/ElementActionButtonStyle.swift @@ -56,13 +56,14 @@ public struct ElementActionButtonStyle: ButtonStyle { .frame(maxWidth: maxWidth) .foregroundColor(fontColor) .font(.element.bodyBold) - .background(color.opacity(backgroundOpacity(when: configuration.isPressed))) - .cornerRadius(cornerRadius) + .background(Capsule() + .fill(color) + .opacity(backgroundOpacity(when: configuration.isPressed))) } private func backgroundOpacity(when isPressed: Bool) -> CGFloat { - guard isEnabled else { return 0.3 } - return isPressed ? 0.6 : 1.0 + guard isEnabled else { return colorScheme == .dark ? 0.2 : 0.1 } + return isPressed ? 0.3 : 1.0 } } diff --git a/DesignKit/Sources/Buttons/ElementGhostButtonStyle.swift b/DesignKit/Sources/Buttons/ElementGhostButtonStyle.swift index 9c684e5b3..a3d7f1d5a 100644 --- a/DesignKit/Sources/Buttons/ElementGhostButtonStyle.swift +++ b/DesignKit/Sources/Buttons/ElementGhostButtonStyle.swift @@ -22,7 +22,7 @@ public extension ButtonStyle where Self == ElementGhostButtonStyle { /// - Parameter size: The control size to use. Defaults to `regular`. /// - Parameter color: The color of the label and border. Defaults to the accent color. static func elementGhost(_ size: ElementControlSize = .regular, - color: Color = .element.accent) -> ElementGhostButtonStyle { + color: Color = .element.primaryContent) -> ElementGhostButtonStyle { ElementGhostButtonStyle(size: size, color: color) } } @@ -36,7 +36,7 @@ public struct ElementGhostButtonStyle: ButtonStyle { private var verticalPadding: CGFloat { size == .xLarge ? 12 : 4 } private var maxWidth: CGFloat? { size == .xLarge ? .infinity : nil } - public init(size: ElementControlSize = .regular, color: Color = .element.accent) { + public init(size: ElementControlSize = .regular, color: Color = .element.primaryContent) { self.size = size self.color = color } @@ -47,19 +47,19 @@ public struct ElementGhostButtonStyle: ButtonStyle { .padding(.vertical, verticalPadding) .frame(maxWidth: maxWidth) .foregroundColor(color) - .font(.element.body) + .font(.element.footnoteBold) .background(border) .opacity(opacity(when: configuration.isPressed)) } private var border: some View { - RoundedRectangle(cornerRadius: 8) + Capsule() .strokeBorder() .foregroundColor(color) } private func opacity(when isPressed: Bool) -> CGFloat { - guard isEnabled else { return 0.6 } + guard isEnabled else { return 0.5 } return isPressed ? 0.6 : 1.0 } } diff --git a/DesignKit/Sources/Colors/ElementColors.swift b/DesignKit/Sources/Colors/ElementColors.swift index 601ed0b22..b2a7ed873 100644 --- a/DesignKit/Sources/Colors/ElementColors.swift +++ b/DesignKit/Sources/Colors/ElementColors.swift @@ -38,6 +38,8 @@ public struct ElementColors { public var quinaryContent: Color { compound.quinaryContent } public var system: Color { compound.system } public var background: Color { compound.background } + // Should be the accent color + public var brand: Color { compound.accent } public var contentAndAvatars: [Color] { compound.contentAndAvatars } diff --git a/DesignKit/Sources/TextFields/ElementTextFieldStyle.swift b/DesignKit/Sources/TextFields/ElementTextFieldStyle.swift index ca2844045..d40d76af6 100644 --- a/DesignKit/Sources/TextFields/ElementTextFieldStyle.swift +++ b/DesignKit/Sources/TextFields/ElementTextFieldStyle.swift @@ -42,16 +42,16 @@ public struct ElementTextFieldStyle: TextFieldStyle { /// The color of the text field's border. private var borderColor: Color { guard !isError else { return .element.alert } - return isFocused ? .element.accent : .element.quinaryContent + return isFocused ? .element.tertiaryContent : .element.quinaryContent } /// The width of the text field's border. private var borderWidth: CGFloat { - isFocused || isError ? 2.0 : 1.5 + isFocused || isError ? 1.0 : 0 } private var accentColor: Color { - isError ? .element.alert : .element.accent + isError ? .element.alert : .element.brand } /// The color of the text inside the text field. @@ -68,7 +68,7 @@ public struct ElementTextFieldStyle: TextFieldStyle { if !isEnabled, colorScheme == .dark { return .element.quinaryContent } - return .element.background + return .element.system } /// The color of the placeholder text inside the text field. @@ -78,8 +78,7 @@ public struct ElementTextFieldStyle: TextFieldStyle { /// The color of the label above the text field. private var labelColor: Color { - guard colorScheme == .light else { return .element.tertiaryContent } - return isEnabled ? .element.primaryContent : .element.quaternaryContent + isEnabled ? .element.primaryContent : .element.quaternaryContent } /// The color of the footer label below the text field. @@ -99,13 +98,14 @@ public struct ElementTextFieldStyle: TextFieldStyle { } public func _body(configuration: TextField<_Label>) -> some View { - let rectangle = RoundedRectangle(cornerRadius: 8.0) + let rectangle = RoundedRectangle(cornerRadius: 14.0) return VStack(alignment: .leading, spacing: 8) { if let labelText { Text(labelText) - .font(.element.subheadline) + .font(.element.footnote) .foregroundColor(labelColor) + .padding(.horizontal, 16) } configuration @@ -113,8 +113,8 @@ public struct ElementTextFieldStyle: TextFieldStyle { .font(.element.callout) .foregroundColor(textColor) .accentColor(accentColor) - .padding(.vertical, 12.0) - .padding(.horizontal, 8.0) + .padding(.leading, 16.0) + .padding([.vertical, .trailing], 11.0) .background { ZStack { backgroundColor @@ -132,8 +132,9 @@ public struct ElementTextFieldStyle: TextFieldStyle { if let footerText { Text(footerText) - .font(.element.footnote) + .font(.element.caption1) .foregroundColor(footerColor) + .padding(.horizontal, 16) } } } diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index 88688c60f..be9bb9050 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -13,6 +13,7 @@ 02D8DF8EB7537EB4E9019DDB /* EventBasedTimelineItemProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 218AB05B4E3889731959C5F1 /* EventBasedTimelineItemProtocol.swift */; }; 03D684A3AE85A23B3DA3B43F /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26747B3154A5DBC3A7E24A5 /* Image.swift */; }; 04A16B45228F7678A027C079 /* RoomHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422724361B6555364C43281E /* RoomHeaderView.swift */; }; + 052BE25E8C466D3D60558DA3 /* SettingsActionButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F8435052B2488947B35942 /* SettingsActionButton.swift */; }; 059173B3C77056C406906B6D /* target.yml in Resources */ = {isa = PBXBuildFile; fileRef = D4DA544B2520BFA65D6DB4BB /* target.yml */; }; 05EC896A4B9AF4A56670C0BB /* SessionVerificationUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D4777F0142E330A75C46FE4 /* SessionVerificationUITests.swift */; }; 066A1E9B94723EE9F3038044 /* Strings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47EBB5D698CE9A25BB553A2D /* Strings.swift */; }; @@ -147,6 +148,7 @@ 447E8580A0A2569E32529E17 /* MockRoomTimelineProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D6094DEAAEB388E1AE118C6 /* MockRoomTimelineProvider.swift */; }; 44AE0752E001D1D10605CD88 /* Swipe.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9FDA5344F7C4C6E4E863E13 /* Swipe.swift */; }; 46562110EE202E580A5FFD9C /* RoomScreenViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93CF7B19FFCF8EFBE0A8696A /* RoomScreenViewModelTests.swift */; }; + 48FE5F0E3921146DBF4E61E7 /* OnboardingBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D06A27D9C70E0DCC1E199163 /* OnboardingBackgroundView.swift */; }; 492274DA6691EE985C2FCCAA /* GZIP in Frameworks */ = {isa = PBXBuildFile; productRef = 1BCD21310B997A6837B854D6 /* GZIP */; }; 49E9B99CB6A275C7744351F0 /* LoginViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2D58333B377888012740101 /* LoginViewModel.swift */; }; 49F2E7DD8CAACE09CEECE3E6 /* SeparatorRoomTimelineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6390A6DC140CA3D6865A66FF /* SeparatorRoomTimelineView.swift */; }; @@ -279,6 +281,7 @@ 878070573C7BF19E735707B4 /* RoomTimelineItemProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DE8D25D6A91030175D52A20 /* RoomTimelineItemProperties.swift */; }; 87BD4F95F9D603C309837378 /* UserNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6B262D7584C65BC5B79A0E /* UserNotification.swift */; }; 8810A2A30A68252EBB54EE05 /* HomeScreenModels.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71BC7CA1BC1041E93077BBA1 /* HomeScreenModels.swift */; }; + 88DD7573C7D1D46C0851EF8A /* FormSectionHeaderStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 733FEDC1AE17806318A4BE56 /* FormSectionHeaderStyle.swift */; }; 890F0D453FE388756479AC97 /* AnalyticsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C687844F60BFF532D49A994C /* AnalyticsTests.swift */; }; 8AB8ED1051216546CB35FA0E /* UserSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E5E9C044BEB7C70B1378E91 /* UserSession.swift */; }; 8B807DC963D1D4155A241BCC /* UserSessionFlowCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E67AAB66638C69626866C /* UserSessionFlowCoordinator.swift */; }; @@ -329,6 +332,7 @@ A021827B528F1EDC9101CA58 /* AppCoordinatorProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBC776F301D374A3298C69DA /* AppCoordinatorProtocol.swift */; }; A0A0D2A9564BDA3FDE2E360F /* FormattedBodyText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73FF1A33198F5FAE9D34B1F /* FormattedBodyText.swift */; }; A23B8B27A1436A1049EEF68E /* InfoPlistReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A580295A56B55A856CC4084 /* InfoPlistReader.swift */; }; + A2DDFA5033B535AB2BA51F5C /* SettingsDefaultRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFB3D0B0E16FEC93175ABC2D /* SettingsDefaultRow.swift */; }; A32517FB1CA0BBCE2BC75249 /* BugReportCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD6C07DA7D3FF193F7419F55 /* BugReportCoordinator.swift */; }; A33784831AD880A670CAA9F9 /* FileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04DF593C3F7AF4B2FBAEB05D /* FileManager.swift */; }; A371629728E597C5FCA3C2B2 /* Analytics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73FC861755C6388F62B9280A /* Analytics.swift */; }; @@ -789,6 +793,7 @@ 71D52BAA5BADB06E5E8C295D /* Assets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Assets.swift; sourceTree = ""; }; 72D03D36422177EF01905D20 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = ""; }; 72F37B5DA798C9AE436F2C2C /* AttributedStringBuilderProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AttributedStringBuilderProtocol.swift; sourceTree = ""; }; + 733FEDC1AE17806318A4BE56 /* FormSectionHeaderStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormSectionHeaderStyle.swift; sourceTree = ""; }; 73FC861755C6388F62B9280A /* Analytics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Analytics.swift; sourceTree = ""; }; 748AE77AC3B0A01223033B87 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 755DC0F79EF8181CC175A193 /* MessageTimelineItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTimelineItem.swift; sourceTree = ""; }; @@ -952,6 +957,7 @@ BEA38B9851CFCC4D67F5587D /* EmojiPickerScreenCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiPickerScreenCoordinator.swift; sourceTree = ""; }; BEBA759D1347CFFB3D84ED1F /* UserSessionStoreProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserSessionStoreProtocol.swift; sourceTree = ""; }; BEE6BF9BA63FF42F8AF6EEEA /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sr; path = sr.lproj/Localizable.stringsdict; sourceTree = ""; }; + BFB3D0B0E16FEC93175ABC2D /* SettingsDefaultRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsDefaultRow.swift; sourceTree = ""; }; C024C151639C4E1B91FCC68B /* ElementXAttributeScope.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ElementXAttributeScope.swift; sourceTree = ""; }; C06FCD42EEFEFC220F14EAC5 /* SessionVerificationStateMachine.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionVerificationStateMachine.swift; sourceTree = ""; }; C070FD43DC6BF4E50217965A /* LocalizationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocalizationTests.swift; sourceTree = ""; }; @@ -992,6 +998,7 @@ CDE3F3911FF7CC639BDE5844 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; CED34C87277BA3CCC6B6EC7A /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; CF48AF076424DBC1615C74AD /* AuthenticationServiceProxy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthenticationServiceProxy.swift; sourceTree = ""; }; + D06A27D9C70E0DCC1E199163 /* OnboardingBackgroundView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OnboardingBackgroundView.swift; sourceTree = ""; }; D06DFD894157A4C93A02D8B5 /* lo */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lo; path = lo.lproj/Localizable.strings; sourceTree = ""; }; D09A267106B9585D3D0CFC0D /* ClientError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ClientError.swift; sourceTree = ""; }; D0A45283CF1DB96E583BECA6 /* ImageRoomTimelineView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageRoomTimelineView.swift; sourceTree = ""; }; @@ -1073,6 +1080,7 @@ F3648F2FADEF2672D6A0D489 /* FileCacheTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileCacheTests.swift; sourceTree = ""; }; F36C0A6D59717193F49EA986 /* UserSessionTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserSessionTests.swift; sourceTree = ""; }; F3EAE3E9D5EF4A6D5D9C6CFD /* EmojiPickerScreenViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiPickerScreenViewModel.swift; sourceTree = ""; }; + F3F8435052B2488947B35942 /* SettingsActionButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsActionButton.swift; sourceTree = ""; }; F506C6ADB1E1DA6638078E11 /* UITests.xctest */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = UITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; F5C4AF6E3885730CD560311C /* ScreenshotDetector.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScreenshotDetector.swift; sourceTree = ""; }; F73FF1A33198F5FAE9D34B1F /* FormattedBodyText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormattedBodyText.swift; sourceTree = ""; }; @@ -1320,10 +1328,13 @@ isa = PBXGroup; children = ( 0960A7F5C1B0B6679BDF26F9 /* ElementToggleStyle.swift */, + 733FEDC1AE17806318A4BE56 /* FormSectionHeaderStyle.swift */, B590BD4507D4F0A377FDE01A /* LoadableAvatarImage.swift */, C352359663A0E52BA20761EE /* LoadableImage.swift */, C705E605EF57C19DBE86FFA1 /* PlaceholderAvatarImage.swift */, 839E2C35DF3F9C7B54C3CE49 /* RoundedCornerShape.swift */, + F3F8435052B2488947B35942 /* SettingsActionButton.swift */, + BFB3D0B0E16FEC93175ABC2D /* SettingsDefaultRow.swift */, ); path = Views; sourceTree = ""; @@ -1839,6 +1850,7 @@ 7B14834450AE76EEFDDBCBB8 /* View */ = { isa = PBXGroup; children = ( + D06A27D9C70E0DCC1E199163 /* OnboardingBackgroundView.swift */, 09199C43BAB209C0BD89A836 /* OnboardingPageIndicator.swift */, 1DF2717AB91060260E5F4781 /* OnboardingPageView.swift */, AB8E75B9CB6C78BE8D09B1AF /* OnboardingScreen.swift */, @@ -3078,6 +3090,7 @@ 3274219F7F26A5C6C2C55630 /* FilePreviewViewModelProtocol.swift in Sources */, D33AC79A50DFC26D2498DD28 /* FileRoomTimelineItem.swift in Sources */, 1F04C63D4FA95948E3F52147 /* FileRoomTimelineView.swift in Sources */, + 88DD7573C7D1D46C0851EF8A /* FormSectionHeaderStyle.swift in Sources */, A0A0D2A9564BDA3FDE2E360F /* FormattedBodyText.swift in Sources */, 85AFBB433AD56704A880F8A0 /* FramePreferenceKey.swift in Sources */, 964B9D2EC38C488C360CE0C9 /* HomeScreen.swift in Sources */, @@ -3147,6 +3160,7 @@ 5B8B51CEC4717AF487794685 /* NotificationServiceProxy.swift in Sources */, F61AFA8BF2E739FBC30472F5 /* NotificationServiceProxyProtocol.swift in Sources */, 563A05B43207D00A6B698211 /* OIDCService.swift in Sources */, + 48FE5F0E3921146DBF4E61E7 /* OnboardingBackgroundView.swift in Sources */, 2CB6787E25B11711518E9588 /* OnboardingCoordinator.swift in Sources */, 5D7960B32C350FA93F48D02B /* OnboardingModels.swift in Sources */, 14132418A748C988B85B025E /* OnboardingPageIndicator.swift in Sources */, @@ -3225,6 +3239,8 @@ 9E8AE387FD03E4F1C1B8815A /* SessionVerificationStateMachine.swift in Sources */, A8EC7C9D886244DAE9433E37 /* SessionVerificationViewModel.swift in Sources */, D6417E5A799C3C7F14F9EC0A /* SessionVerificationViewModelProtocol.swift in Sources */, + 052BE25E8C466D3D60558DA3 /* SettingsActionButton.swift in Sources */, + A2DDFA5033B535AB2BA51F5C /* SettingsDefaultRow.swift in Sources */, 7FED310F6AB7A70CBFB7C8A3 /* SettingsScreen.swift in Sources */, 233221E32DA045018D3D3050 /* SettingsScreenCoordinator.swift in Sources */, DBAA69CC2CE4D44BC8E20105 /* SettingsScreenModels.swift in Sources */, diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/Contents.json b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/Contents.json similarity index 75% rename from ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/Contents.json rename to ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/Contents.json index 79f65fdf9..84bb80091 100644 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/Contents.json +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "OnboardingSplashScreenPage1.pdf", + "filename" : "OnboardingSplashAppLogo.pdf", "idiom" : "universal" }, { @@ -11,7 +11,7 @@ "value" : "dark" } ], - "filename" : "OnboardingSplashScreenPage1-Dark.pdf", + "filename" : "OnboardingSplashAppLogo-Dark.pdf", "idiom" : "universal" } ], diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo-Dark.pdf new file mode 100644 index 000000000..6d3d4cc7b --- /dev/null +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo-Dark.pdf @@ -0,0 +1,2613 @@ +%PDF-1.7 + +1 0 obj + << /Length 2 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.000000 mul 1.000000 add exch dup 0.000000 sub 0.000000 mul 1.000000 add exch dup 0.000000 sub 0.000000 mul 1.000000 add exch } if dup 0.658058 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } +endstream +endobj + +2 0 obj + 336 +endobj + +3 0 obj + << /Length 4 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.000000 mul 1.000000 add exch dup 0.000000 sub 0.000000 mul 1.000000 add exch dup 0.000000 sub 0.000000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } +endstream +endobj + +4 0 obj + 336 +endobj + +5 0 obj + << /Type /XObject + /Length 6 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << >> + /BBox [ 0.000000 0.000000 250.000000 250.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +70.181450 173.575195 m +64.644295 173.575195 60.155544 169.086441 60.155544 163.549286 c +60.155544 158.012131 64.644295 153.523376 70.181450 153.523376 c +96.021507 153.523376 116.969017 132.575867 116.969017 106.735817 c +116.969017 101.198662 121.457764 96.709915 126.994926 96.709915 c +132.532089 96.709915 137.020828 101.198662 137.020828 106.735817 c +137.020828 143.650177 107.095818 173.575195 70.181450 173.575195 c +h +0.000000 76.658478 m +0.000000 71.121323 4.488751 66.632568 10.025908 66.632568 c +15.563063 66.632568 20.051815 71.121323 20.051815 76.658478 c +20.051813 102.498535 40.999321 123.446045 66.839378 123.446045 c +72.376534 123.446045 76.865280 127.934799 76.865280 133.471954 c +76.865280 139.009109 72.376534 143.497864 66.839378 143.497864 c +29.925011 143.497849 -0.000001 113.572845 0.000000 76.658478 c +h +96.917381 6.476807 m +102.454536 6.476807 106.943291 10.965561 106.943291 16.502716 c +106.943291 22.039871 102.454544 26.528625 96.917389 26.528625 c +71.077324 26.528625 50.129818 47.476135 50.129822 73.316193 c +50.129822 78.853348 45.641075 83.342094 40.103920 83.342094 c +34.566761 83.342094 30.078016 78.853348 30.078014 73.316193 c +30.078012 36.401825 60.003014 6.476807 96.917381 6.476807 c +h +157.072937 113.419434 m +162.610092 113.419434 167.098846 108.930679 167.098846 103.393524 c +167.098846 66.479156 137.173828 36.554153 100.259453 36.554153 c +94.722298 36.554153 90.233551 41.042908 90.233551 46.580055 c +90.233551 52.117218 94.722298 56.605965 100.259460 56.605965 c +126.099510 56.605957 147.047028 77.553467 147.047028 103.393524 c +147.047028 108.930687 151.535782 113.419434 157.072937 113.419434 c +h +0.000000 0.000000 0.000000 scn +f* +n + +endstream +endobj + +6 0 obj + 1764 +endobj + +7 0 obj + << /Length 8 0 R + /FunctionType 4 + /Domain [ 0.000000 1.000000 ] + /Range [ 0.000000 1.000000 ] + >> +stream +{ 0 gt { 0 } { 1 } ifelse } +endstream +endobj + +8 0 obj + 27 +endobj + +9 0 obj + << /Length 10 0 R + /Range [ 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 1.000000 exch dup 0.000000 gt { exch pop dup 0.000000 sub -1.519622 mul 1.000000 add exch } if dup 0.658058 gt { exch pop 0.000000 exch } if pop } +endstream +endobj + +10 0 obj + 149 +endobj + +11 0 obj + << /BBox [ 0.000000 0.000000 250.000000 250.000000 ] + /Resources << /Pattern << /P1 << /Matrix [ 0.000000 -167.098404 167.098404 0.000000 -125.647720 208.549316 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceGray + /Function 9 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /Subtype /Form + /Length 12 0 R + /Group << /Type /Group + /S /Transparency + /CS /DeviceGray + >> + /Type /XObject + >> +stream +/DeviceGray CS +/DeviceGray cs +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +70.181450 173.575195 m +64.644295 173.575195 60.155544 169.086441 60.155544 163.549286 c +60.155544 158.012131 64.644295 153.523376 70.181450 153.523376 c +96.021507 153.523376 116.969017 132.575867 116.969017 106.735817 c +116.969017 101.198662 121.457764 96.709915 126.994926 96.709915 c +132.532089 96.709915 137.020828 101.198662 137.020828 106.735817 c +137.020828 143.650177 107.095818 173.575195 70.181450 173.575195 c +h +0.000000 76.658478 m +0.000000 71.121323 4.488751 66.632568 10.025908 66.632568 c +15.563063 66.632568 20.051815 71.121323 20.051815 76.658478 c +20.051813 102.498535 40.999321 123.446045 66.839378 123.446045 c +72.376534 123.446045 76.865280 127.934799 76.865280 133.471954 c +76.865280 139.009109 72.376534 143.497864 66.839378 143.497864 c +29.925011 143.497849 -0.000001 113.572845 0.000000 76.658478 c +h +96.917381 6.476807 m +102.454536 6.476807 106.943291 10.965561 106.943291 16.502716 c +106.943291 22.039871 102.454544 26.528625 96.917389 26.528625 c +71.077324 26.528625 50.129818 47.476135 50.129822 73.316193 c +50.129822 78.853348 45.641075 83.342094 40.103920 83.342094 c +34.566761 83.342094 30.078016 78.853348 30.078014 73.316193 c +30.078012 36.401825 60.003014 6.476807 96.917381 6.476807 c +h +157.072937 113.419434 m +162.610092 113.419434 167.098846 108.930679 167.098846 103.393524 c +167.098846 66.479156 137.173828 36.554153 100.259453 36.554153 c +94.722298 36.554153 90.233551 41.042908 90.233551 46.580055 c +90.233551 52.117218 94.722298 56.605965 100.259460 56.605965 c +126.099510 56.605957 147.047028 77.553467 147.047028 103.393524 c +147.047028 108.930687 151.535782 113.419434 157.072937 113.419434 c +h +/Pattern cs +/P1 scn +f* +n + +endstream +endobj + +12 0 obj + 1755 +endobj + +13 0 obj + << /Length 14 0 R + /Range [ 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 1.000000 exch dup 0.000000 gt { exch pop dup 0.000000 sub -0.400000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop 0.600000 exch } if pop } +endstream +endobj + +14 0 obj + 149 +endobj + +15 0 obj + << /BBox [ 0.000000 0.000000 250.000000 250.000000 ] + /Resources << /Pattern << /P1 << /Matrix [ 0.000000 -167.098404 167.098404 0.000000 -125.647720 208.549316 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceGray + /Function 13 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /Subtype /Form + /Length 16 0 R + /Group << /Type /Group + /S /Transparency + /CS /DeviceGray + >> + /Type /XObject + >> +stream +/DeviceGray CS +/DeviceGray cs +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +70.181450 173.575195 m +64.644295 173.575195 60.155544 169.086441 60.155544 163.549286 c +60.155544 158.012131 64.644295 153.523376 70.181450 153.523376 c +96.021507 153.523376 116.969017 132.575867 116.969017 106.735817 c +116.969017 101.198662 121.457764 96.709915 126.994926 96.709915 c +132.532089 96.709915 137.020828 101.198662 137.020828 106.735817 c +137.020828 143.650177 107.095818 173.575195 70.181450 173.575195 c +h +0.000000 76.658478 m +0.000000 71.121323 4.488751 66.632568 10.025908 66.632568 c +15.563063 66.632568 20.051815 71.121323 20.051815 76.658478 c +20.051813 102.498535 40.999321 123.446045 66.839378 123.446045 c +72.376534 123.446045 76.865280 127.934799 76.865280 133.471954 c +76.865280 139.009109 72.376534 143.497864 66.839378 143.497864 c +29.925011 143.497849 -0.000001 113.572845 0.000000 76.658478 c +h +96.917381 6.476807 m +102.454536 6.476807 106.943291 10.965561 106.943291 16.502716 c +106.943291 22.039871 102.454544 26.528625 96.917389 26.528625 c +71.077324 26.528625 50.129818 47.476135 50.129822 73.316193 c +50.129822 78.853348 45.641075 83.342094 40.103920 83.342094 c +34.566761 83.342094 30.078016 78.853348 30.078014 73.316193 c +30.078012 36.401825 60.003014 6.476807 96.917381 6.476807 c +h +157.072937 113.419434 m +162.610092 113.419434 167.098846 108.930679 167.098846 103.393524 c +167.098846 66.479156 137.173828 36.554153 100.259453 36.554153 c +94.722298 36.554153 90.233551 41.042908 90.233551 46.580055 c +90.233551 52.117218 94.722298 56.605965 100.259460 56.605965 c +126.099510 56.605957 147.047028 77.553467 147.047028 103.393524 c +147.047028 108.930687 151.535782 113.419434 157.072937 113.419434 c +h +/Pattern cs +/P1 scn +f* +n + +endstream +endobj + +16 0 obj + 1755 +endobj + +17 0 obj + << /Pattern << /P2 << /Matrix [ 0.000000 -167.098404 167.098404 0.000000 -125.647720 208.549316 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 1 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> + /P1 << /Matrix [ 0.000000 -167.098404 167.098404 0.000000 -125.647720 208.549316 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 3 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> + >> + /ExtGState << /E5 << /SMask << /Type /Mask + /G 5 0 R + /S /Alpha + /TR 7 0 R + >> + /Type /ExtGState + >> + /E4 << /SMask << /Type /Mask + /G 11 0 R + /S /Luminosity + >> + /Type /ExtGState + >> + /E2 << /ca 0.800000 >> + /E3 << /SMask << /Type /Mask + /G 15 0 R + /S /Luminosity + >> + /Type /ExtGState + >> + /E1 << /ca 0.400000 >> + >> + >> +endobj + +18 0 obj + << /Length 19 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +/E1 gs +1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm +1.000000 1.000000 1.000000 scn +181.719208 19.430023 m +164.834839 10.339554 145.519806 5.181351 125.000000 5.181351 c +104.480194 5.181351 85.165154 10.339554 68.280785 19.430023 c +156.739136 19.430023 l +181.719208 19.430023 l +h +190.436569 24.611359 m +156.739151 24.611374 l +59.563412 24.611374 l +45.631973 33.710892 33.710873 45.631973 24.611364 59.563416 c +24.611364 60.144333 l +24.611364 60.748596 l +24.611364 61.353455 l +24.611364 61.958893 l +24.611364 62.564911 l +24.611364 63.171478 l +24.611364 63.778610 l +24.611364 64.386276 l +24.611364 64.994476 l +24.611364 65.603195 l +24.611364 66.212433 l +24.611364 66.822159 l +24.611364 67.432404 l +24.611364 68.043106 l +24.611364 68.654297 l +24.611364 69.265961 l +24.611364 69.878067 l +24.611364 70.490616 l +24.611364 71.103607 l +24.611364 71.717026 l +24.611364 72.330841 l +24.611364 72.945084 l +24.611364 73.559708 l +24.611364 74.174728 l +24.611364 74.790115 l +24.611364 75.405884 l +24.611364 76.021988 l +24.611364 76.638458 l +24.611364 77.255264 l +24.611364 77.872391 l +24.611364 78.489838 l +24.611364 79.107590 l +24.611364 79.725632 l +24.611364 80.343979 l +24.611364 80.962585 l +24.611364 81.581482 l +24.611364 82.200623 l +24.611364 82.820023 l +24.611364 83.439651 l +24.611364 84.059525 l +24.611364 84.679611 l +24.611364 85.299896 l +24.611364 85.920395 l +24.611364 86.541092 l +24.611364 87.161957 l +24.611364 87.782990 l +24.611364 88.404190 l +24.611364 89.025543 l +24.611364 89.647034 l +24.611364 90.268661 l +24.611364 90.890411 l +24.611364 91.512268 l +24.611364 92.134232 l +24.611364 92.756287 l +24.611364 93.378433 l +24.611364 94.000641 l +24.611364 94.622925 l +24.611364 95.245255 l +24.611364 95.867630 l +24.611364 96.490036 l +24.611364 97.112473 l +24.611364 97.734924 l +24.611364 98.357376 l +24.611364 98.979828 l +24.611364 99.602264 l +24.611364 100.224670 l +24.611364 100.847046 l +24.611364 101.469391 l +24.611364 102.091660 l +24.611364 102.713882 l +24.611364 103.336029 l +24.611364 103.958084 l +24.611364 104.580063 l +24.611364 105.201920 l +24.611364 105.823685 l +24.611364 106.445312 l +24.611364 107.066818 l +24.611364 107.688171 l +24.611364 108.309387 l +24.611364 108.930435 l +24.611364 109.551315 l +24.611364 110.172012 l +24.611364 110.792511 l +24.611364 111.412811 l +24.611364 112.032913 l +24.611364 112.652786 l +24.611364 113.272446 l +24.611364 113.891846 l +24.611364 114.511017 l +24.611364 115.129913 l +24.611364 115.748550 l +24.611364 116.366898 l +24.611364 116.984970 l +24.611364 117.602737 l +24.611364 118.220200 l +24.611364 118.837341 l +24.611364 119.454163 l +24.611364 120.070648 l +24.611364 120.686783 l +24.611364 121.302551 l +24.611364 121.917969 l +24.611364 122.533005 l +24.611364 123.147652 l +24.611364 123.761909 l +24.611364 124.375763 l +24.611364 124.989197 l +24.611364 125.602211 l +24.611364 126.214790 l +24.611364 126.826920 l +24.611364 127.438599 l +24.611364 128.049820 l +24.611364 128.660553 l +24.611364 129.270813 l +24.611364 129.880585 l +24.611364 130.489838 l +24.611364 131.098602 l +24.611364 131.706818 l +24.611364 132.314514 l +24.611364 132.921677 l +24.611364 133.528290 l +24.611364 134.134323 l +24.611364 134.739792 l +24.611364 135.344681 l +24.611364 135.948975 l +24.611364 136.552673 l +24.611364 137.155762 l +24.611364 137.758240 l +24.611364 138.360077 l +24.611364 138.961273 l +24.611364 139.561829 l +24.611364 140.161713 l +24.611364 140.760941 l +24.611364 141.359482 l +24.611364 141.957336 l +24.611364 142.554504 l +24.611364 143.150940 l +24.611364 143.746674 l +24.611364 144.341675 l +24.611364 144.935944 l +24.611364 145.529480 l +24.611364 146.122238 l +24.611364 146.714233 l +24.611364 147.305450 l +24.611364 147.895889 l +24.611364 148.485535 l +24.611364 149.074371 l +24.611364 149.662384 l +24.611364 150.249573 l +24.611364 150.835938 l +24.611364 151.421448 l +24.611364 152.006104 l +24.611364 152.589905 l +24.611364 153.172821 l +24.611364 153.754852 l +24.611364 154.335999 l +24.611364 154.916245 l +24.611364 155.495575 l +24.611364 156.073975 l +24.611364 156.651459 l +24.611364 157.227982 l +24.611364 157.803558 l +24.611364 158.378174 l +24.611364 158.951813 l +24.611364 159.524490 l +24.611364 160.096161 l +24.611364 160.666840 l +24.611364 161.236496 l +24.611364 161.805145 l +24.611364 162.372742 l +24.611364 162.939316 l +24.611364 163.504837 l +24.611364 164.069305 l +24.611364 164.632690 l +24.611364 165.195007 l +24.611364 165.756226 l +24.611364 166.316345 l +24.611364 166.875366 l +24.611364 167.433273 l +24.611364 167.990051 l +24.611364 168.545685 l +24.611364 169.100159 l +24.611364 169.653503 l +24.611364 170.205658 l +24.611364 170.756653 l +24.611364 171.306442 l +24.611364 171.855042 l +24.611364 172.402435 l +24.611364 172.948624 l +24.611364 173.493591 l +24.611364 174.037292 l +24.611364 174.579773 l +24.611364 175.121002 l +24.611364 175.660950 l +24.611364 176.199646 l +24.611364 176.737030 l +24.611364 177.273132 l +24.611364 177.807938 l +24.611364 178.341431 l +24.611364 178.873596 l +24.611364 179.404419 l +24.611364 179.933899 l +24.611364 180.462036 l +24.611364 180.988815 l +24.611364 181.514221 l +24.611364 182.038239 l +24.611364 182.560867 l +24.611364 183.082092 l +24.611364 183.601898 l +24.611364 184.120300 l +24.611364 184.637268 l +24.611364 185.152802 l +24.611364 185.666870 l +24.611364 186.179474 l +24.611364 186.690613 l +24.611364 187.200287 l +24.611364 187.708466 l +24.611364 188.215134 l +24.611364 188.720306 l +24.611364 189.223953 l +24.611364 189.726074 l +24.611364 190.226654 l +24.611364 190.436584 l +33.710880 204.368027 45.631985 216.289124 59.563431 225.388641 c +156.739136 225.388641 l +190.436569 225.388641 l +204.368011 216.289124 216.289124 204.368011 225.388641 190.436569 c +225.388641 190.159500 l +225.388641 189.650482 l +225.388641 189.139877 l +225.388641 188.627701 l +225.388641 188.113968 l +225.388641 187.598663 l +225.388641 187.081833 l +225.388641 186.563461 l +225.388641 186.043564 l +225.388641 185.522156 l +225.388641 184.999237 l +225.388641 184.474838 l +225.388641 183.948944 l +225.388641 183.421600 l +225.388641 182.892761 l +225.388641 182.362503 l +225.388641 181.830780 l +225.388641 181.297638 l +225.388641 180.763092 l +225.388641 180.227112 l +225.388641 179.689758 l +225.388641 179.151001 l +225.388641 178.610855 l +225.388641 178.069351 l +225.388641 177.526489 l +225.388641 176.982285 l +225.388641 176.436737 l +225.388641 175.889862 l +225.388641 175.341675 l +225.388641 174.792175 l +225.388641 174.241394 l +225.388641 173.689331 l +225.388641 173.135986 l +225.388641 172.581360 l +225.388641 172.025497 l +225.388641 171.468384 l +225.388641 170.910034 l +225.388641 170.350479 l +225.388641 169.789703 l +225.388641 169.227722 l +225.388641 168.664551 l +225.388641 168.100189 l +225.388641 167.534668 l +225.388641 166.967987 l +225.388641 166.400146 l +225.388641 165.831177 l +225.388641 165.261063 l +225.388641 164.689835 l +225.388641 164.117493 l +225.388641 163.544067 l +225.388641 162.969543 l +225.388641 162.393951 l +225.388641 161.817291 l +225.388641 161.239563 l +225.388641 160.660797 l +225.388641 160.080994 l +225.388641 159.500153 l +225.388641 158.918304 l +225.388641 158.335464 l +225.388641 157.751617 l +225.388641 157.166779 l +225.388641 156.580978 l +225.388641 155.994202 l +225.388641 155.406494 l +225.388641 154.817810 l +225.388641 154.228210 l +225.388641 153.637695 l +225.388641 153.046265 l +225.388641 152.453934 l +225.388641 151.860718 l +225.388641 151.266602 l +225.388641 150.671631 l +225.388641 150.075775 l +225.388641 149.479095 l +225.388641 148.881577 l +225.388641 148.283218 l +225.388641 147.684052 l +225.388641 147.084061 l +225.388641 146.483276 l +225.388641 145.881714 l +225.388641 145.279358 l +225.388641 144.676254 l +225.388641 144.072388 l +225.388641 143.467773 l +225.388641 142.862427 l +225.388641 142.256348 l +225.388641 141.649551 l +225.388641 141.042053 l +225.388641 140.433868 l +225.388641 139.824997 l +225.388641 139.215454 l +225.388641 138.605225 l +225.388641 137.994370 l +225.388641 137.382874 l +225.388641 136.770721 l +225.388641 136.157959 l +225.388641 135.544586 l +225.388641 134.930618 l +225.388641 134.316055 l +225.388641 133.700912 l +225.388641 133.085205 l +225.388641 132.468933 l +225.388641 131.852112 l +225.388641 131.234741 l +225.388641 130.616852 l +225.388641 129.998444 l +225.388641 129.379517 l +225.388641 128.760101 l +225.388641 128.140198 l +225.388641 127.519829 l +225.388641 126.898987 l +225.388641 126.277687 l +225.388641 125.655945 l +225.388641 125.033760 l +225.388641 124.411156 l +225.388641 123.788132 l +225.388641 123.164711 l +225.388641 122.540894 l +225.388641 121.916687 l +225.388641 121.292114 l +225.388641 120.667175 l +225.388641 120.041885 l +225.388641 119.416260 l +225.388641 118.790298 l +225.388641 118.164001 l +225.388641 117.537415 l +225.388641 116.910522 l +225.388641 116.283325 l +225.388641 115.655869 l +225.388641 115.028137 l +225.388641 114.400131 l +225.388641 113.771896 l +225.388641 113.143402 l +225.388641 112.514694 l +225.388641 111.885773 l +225.388641 111.256638 l +225.388641 110.627304 l +225.388641 109.997787 l +225.388641 109.368088 l +225.388641 108.738220 l +225.388641 108.108215 l +225.388641 107.478043 l +225.388641 106.847748 l +225.388641 106.217331 l +225.388641 105.586792 l +225.388641 104.956161 l +225.388641 104.325424 l +225.388641 103.694611 l +225.388641 103.063721 l +225.388641 102.432770 l +225.388641 101.801773 l +225.388641 101.170731 l +225.388641 100.539658 l +225.388641 99.908569 l +225.388641 99.277451 l +225.388641 98.646347 l +225.388641 98.015259 l +225.388641 97.384186 l +225.388641 96.753143 l +225.388641 96.122131 l +225.388641 95.491180 l +225.388641 94.860306 l +225.388641 94.229477 l +225.388641 93.598755 l +225.388641 92.968109 l +225.388641 92.337570 l +225.388641 91.707153 l +225.388641 91.076859 l +225.388641 90.446701 l +225.388641 89.816681 l +225.388641 89.186813 l +225.388641 88.557114 l +225.388641 87.927597 l +225.388641 87.298264 l +225.388641 86.669128 l +225.388641 86.040192 l +225.388641 85.411484 l +225.388641 84.783005 l +225.388641 84.154755 l +225.388641 83.526749 l +225.388641 82.899017 l +225.388641 82.271545 l +225.388641 81.644363 l +225.388641 81.017456 l +225.388641 80.390854 l +225.388641 79.764572 l +225.388641 79.138596 l +225.388641 78.512970 l +225.388641 77.887680 l +225.388641 77.262726 l +225.388641 76.638153 l +225.388641 76.013947 l +225.388641 75.390121 l +225.388641 74.766693 l +225.388641 74.143677 l +225.388641 73.521057 l +225.388641 72.898880 l +225.388641 72.277130 l +225.388641 71.655823 l +225.388641 71.034973 l +225.388641 70.414597 l +225.388641 69.794693 l +225.388641 69.175278 l +225.388641 68.556351 l +225.388641 67.937943 l +225.388641 67.320038 l +225.388641 66.702667 l +225.388641 66.085846 l +225.388641 65.469574 l +225.388641 64.853851 l +225.388641 64.238693 l +225.388641 63.624130 l +225.388641 63.010147 l +225.388641 62.396774 l +225.388641 61.784012 l +225.388641 61.171860 l +225.388641 60.560349 l +225.388641 59.949478 l +225.388641 59.563431 l +216.289124 45.631989 204.368011 33.710876 190.436569 24.611359 c +h +191.962326 19.430023 m +172.605362 7.126358 149.634903 0.000000 125.000000 0.000000 c +100.365097 0.000000 77.394638 7.126358 58.037678 19.430023 c +24.611364 19.430023 l +24.611364 19.360016 l +24.611364 18.823975 l +24.611364 18.289246 l +24.611364 17.755844 l +24.611364 17.223755 l +24.611364 16.692993 l +24.611364 16.163574 l +24.611364 15.635513 l +24.611364 15.108826 l +24.611364 14.583496 l +24.611364 14.059555 l +24.611364 13.537003 l +24.611364 13.015854 l +24.611364 12.496124 l +24.611364 11.977798 l +24.611364 11.460922 l +24.611364 10.945480 l +24.611364 10.431488 l +24.611364 9.918945 l +24.611364 9.407883 l +24.611364 8.898315 l +24.611364 8.390213 l +24.611364 7.883621 l +24.611364 7.378540 l +24.611364 6.874969 l +24.611364 6.372940 l +24.611364 5.872452 l +24.611364 5.373489 l +24.611364 4.876099 l +24.611364 4.380280 l +24.611364 3.886032 l +24.611364 2.455246 23.451481 1.295364 22.020691 1.295364 c +20.589901 1.295364 19.430017 2.455246 19.430017 3.886032 c +19.430017 4.380280 l +19.430017 4.876099 l +19.430017 5.373489 l +19.430017 5.872452 l +19.430017 6.372940 l +19.430017 6.874969 l +19.430017 7.378540 l +19.430017 7.883621 l +19.430017 8.390213 l +19.430017 8.898315 l +19.430017 9.407883 l +19.430017 9.918945 l +19.430017 10.431488 l +19.430017 10.945480 l +19.430017 11.460922 l +19.430017 11.977798 l +19.430017 12.496124 l +19.430017 13.015854 l +19.430017 13.537003 l +19.430017 14.059555 l +19.430017 14.583496 l +19.430017 15.108826 l +19.430017 15.635513 l +19.430017 16.163574 l +19.430017 16.692993 l +19.430017 17.223755 l +19.430017 17.755844 l +19.430017 18.289246 l +19.430017 18.823975 l +19.430017 19.360016 l +19.430017 19.430023 l +3.886047 19.430023 l +2.455246 19.430023 1.295364 20.589905 1.295364 22.020706 c +1.295364 23.451492 2.455246 24.611374 3.886048 24.611374 c +19.430017 24.611374 l +19.430017 24.789917 l +19.430017 25.339645 l +19.430017 25.890564 l +19.430017 26.442657 l +19.430017 26.995926 l +19.430017 27.550354 l +19.430017 28.105927 l +19.430017 28.662628 l +19.430017 29.220474 l +19.430017 29.779419 l +19.430017 30.339493 l +19.430017 30.900650 l +19.430017 31.462906 l +19.430017 32.026245 l +19.430017 32.590637 l +19.430017 33.156113 l +19.430017 33.722626 l +19.430017 34.290176 l +19.430017 34.858749 l +19.430017 35.428360 l +19.430017 35.998978 l +19.430017 36.570602 l +19.430017 37.143204 l +19.430017 37.716797 l +19.430017 38.291351 l +19.430017 38.866882 l +19.430017 39.443359 l +19.430017 40.020782 l +19.430017 40.599136 l +19.430017 41.178421 l +19.430017 41.758606 l +19.430017 42.339706 l +19.430017 42.921692 l +19.430017 43.504562 l +19.430017 44.088303 l +19.430017 44.672928 l +19.430017 45.258392 l +19.430017 45.844696 l +19.430017 46.431854 l +19.430017 47.019821 l +19.430017 47.608612 l +19.430017 48.198196 l +19.430017 48.788589 l +19.430017 49.379776 l +19.430017 49.971725 l +19.430017 50.564453 l +19.430017 51.157928 l +19.430017 51.752151 l +19.430017 52.347122 l +19.430017 52.942810 l +19.430017 53.539215 l +19.430017 54.136337 l +19.430017 54.734161 l +19.430017 55.332657 l +19.430017 55.931839 l +19.430017 56.531693 l +19.430017 57.132217 l +19.430017 57.733383 l +19.430017 58.037689 l +7.126354 77.394653 0.000000 100.365097 0.000000 125.000000 c +0.000000 149.634903 7.126354 172.605347 19.430017 191.962311 c +19.430017 192.213409 l +19.430017 192.706146 l +19.430017 193.197296 l +19.430017 193.686844 l +19.430017 194.174774 l +19.430017 194.661072 l +19.430017 195.145721 l +19.430017 195.628754 l +19.430017 196.110107 l +19.430017 196.589813 l +19.430017 197.067841 l +19.430017 197.544174 l +19.430017 198.018814 l +19.430017 198.491760 l +19.430017 198.962982 l +19.430017 199.432495 l +19.430017 199.900253 l +19.430017 200.366287 l +19.430017 200.830566 l +19.430017 201.293060 l +19.430017 201.753815 l +19.430017 202.212769 l +19.430017 202.669922 l +19.430017 203.125290 l +19.430017 203.578842 l +19.430017 204.030563 l +19.430017 204.480469 l +19.430017 204.928528 l +19.430017 205.374725 l +19.430017 205.819077 l +19.430017 206.261551 l +19.430017 206.702148 l +19.430017 207.140854 l +19.430017 207.577667 l +19.430017 208.012558 l +19.430017 208.445541 l +19.430017 208.876587 l +19.430017 209.305695 l +19.430017 209.732864 l +19.430017 210.158066 l +19.430017 210.581299 l +19.430017 211.002563 l +19.430017 211.421844 l +19.430017 211.839111 l +19.430017 212.254379 l +19.430017 212.667633 l +19.430017 213.078857 l +19.430017 213.488037 l +19.430017 213.895187 l +19.430017 214.300278 l +19.430017 214.703293 l +19.430017 215.104248 l +19.430017 215.503113 l +19.430017 215.899872 l +19.430017 216.294525 l +19.430017 216.687073 l +19.430017 217.077499 l +19.430017 217.465790 l +19.430017 217.851944 l +19.430017 218.235931 l +19.430017 218.617767 l +19.430017 218.997421 l +19.430017 219.374893 l +19.430017 219.750168 l +19.430017 220.123245 l +19.430017 220.494110 l +19.430017 220.862762 l +19.430017 221.229172 l +19.430017 221.593353 l +19.430017 221.955261 l +19.430017 222.314926 l +19.430017 222.672318 l +19.430017 223.027435 l +19.430017 223.380249 l +19.430017 223.730774 l +19.430017 224.078979 l +19.430017 224.424866 l +19.430017 224.768433 l +19.430017 225.109650 l +19.430017 225.388641 l +3.886047 225.388641 l +2.455246 225.388641 1.295364 226.548523 1.295364 227.979324 c +1.295364 229.410110 2.455246 230.569992 3.886048 230.569992 c +19.430017 230.569992 l +19.430017 230.840546 l +19.430017 231.135468 l +19.430017 231.427856 l +19.430017 231.717697 l +19.430017 232.004990 l +19.430017 232.289719 l +19.430017 232.571884 l +19.430017 232.851456 l +19.430017 233.128433 l +19.430017 233.402802 l +19.430017 233.674576 l +19.430017 233.943710 l +19.430017 234.210220 l +19.430017 234.474091 l +19.430017 234.735306 l +19.430017 234.993866 l +19.430017 235.249756 l +19.430017 235.502960 l +19.430017 235.753464 l +19.430017 236.001282 l +19.430017 236.246384 l +19.430017 236.488770 l +19.430017 236.728424 l +19.430017 236.965332 l +19.430017 237.199493 l +19.430017 237.430893 l +19.430017 237.659531 l +19.430017 237.885391 l +19.430017 238.108459 l +19.430017 238.328735 l +19.430017 238.546204 l +19.430017 238.760849 l +19.430017 238.972656 l +19.430017 239.181641 l +19.430017 239.387787 l +19.430017 239.591064 l +19.430017 239.791473 l +19.430017 239.988998 l +19.430017 240.183655 l +19.430017 240.375412 l +19.430017 240.564255 l +19.430017 240.750183 l +19.430017 240.933197 l +19.430017 241.113266 l +19.430017 241.290405 l +19.430017 241.464569 l +19.430017 241.635788 l +19.430017 241.804016 l +19.430017 241.969269 l +19.430017 242.131531 l +19.430017 242.290787 l +19.430017 242.447037 l +19.430017 242.600250 l +19.430017 242.750443 l +19.430017 242.897583 l +19.430017 243.041687 l +19.430017 243.182709 l +19.430017 243.320679 l +19.430017 243.455551 l +19.430017 243.587341 l +19.430017 243.716034 l +19.430017 243.841599 l +19.430017 243.964066 l +19.430017 244.083389 l +19.430017 244.199570 l +19.430017 244.312607 l +19.430017 244.422485 l +19.430017 244.529190 l +19.430017 244.632721 l +19.430017 244.733063 l +19.430017 244.830200 l +19.430017 244.924133 l +19.430017 245.014847 l +19.430017 245.102341 l +19.430017 245.186584 l +19.430017 245.267593 l +19.430017 245.345337 l +19.430017 245.419815 l +19.430017 245.491013 l +19.430017 245.558929 l +19.430017 245.623550 l +19.430017 245.684860 l +19.430017 245.742859 l +19.430017 245.797531 l +19.430017 245.848877 l +19.430017 245.896866 l +19.430017 245.941498 l +19.430017 245.982773 l +19.430017 246.020676 l +19.430017 246.055191 l +19.430017 246.086304 l +19.430017 246.114029 l +19.430017 247.544815 20.589901 248.704697 22.020691 248.704697 c +23.451481 248.704697 24.611364 247.544815 24.611364 246.114029 c +24.611364 246.086304 l +24.611364 246.055191 l +24.611364 246.020676 l +24.611364 245.982773 l +24.611364 245.941498 l +24.611364 245.896866 l +24.611364 245.848877 l +24.611364 245.797531 l +24.611364 245.742859 l +24.611364 245.684860 l +24.611364 245.623550 l +24.611364 245.558929 l +24.611364 245.491013 l +24.611364 245.419815 l +24.611364 245.345337 l +24.611364 245.267593 l +24.611364 245.186584 l +24.611364 245.102341 l +24.611364 245.014847 l +24.611364 244.924133 l +24.611364 244.830200 l +24.611364 244.733063 l +24.611364 244.632721 l +24.611364 244.529190 l +24.611364 244.422485 l +24.611364 244.312607 l +24.611364 244.199570 l +24.611364 244.083389 l +24.611364 243.964066 l +24.611364 243.841599 l +24.611364 243.716034 l +24.611364 243.587341 l +24.611364 243.455551 l +24.611364 243.320679 l +24.611364 243.182709 l +24.611364 243.041687 l +24.611364 242.897583 l +24.611364 242.750443 l +24.611364 242.600250 l +24.611364 242.447037 l +24.611364 242.290787 l +24.611364 242.131531 l +24.611364 241.969269 l +24.611364 241.804016 l +24.611364 241.635788 l +24.611364 241.464569 l +24.611364 241.290405 l +24.611364 241.113266 l +24.611364 240.933197 l +24.611364 240.750183 l +24.611364 240.564255 l +24.611364 240.375412 l +24.611364 240.183655 l +24.611364 239.988998 l +24.611364 239.791473 l +24.611364 239.591064 l +24.611364 239.387787 l +24.611364 239.181641 l +24.611364 238.972656 l +24.611364 238.760849 l +24.611364 238.546204 l +24.611364 238.328735 l +24.611364 238.108459 l +24.611364 237.885391 l +24.611364 237.659531 l +24.611364 237.430893 l +24.611364 237.199493 l +24.611364 236.965332 l +24.611364 236.728424 l +24.611364 236.488770 l +24.611364 236.246384 l +24.611364 236.001282 l +24.611364 235.753464 l +24.611364 235.502960 l +24.611364 235.249756 l +24.611364 234.993866 l +24.611364 234.735306 l +24.611364 234.474091 l +24.611364 234.210220 l +24.611364 233.943710 l +24.611364 233.674576 l +24.611364 233.402802 l +24.611364 233.128433 l +24.611364 232.851456 l +24.611364 232.571884 l +24.611364 232.289719 l +24.611364 232.004990 l +24.611364 231.717697 l +24.611364 231.427856 l +24.611364 231.135468 l +24.611364 230.840546 l +24.611364 230.569992 l +58.037701 230.569992 l +77.394653 242.873642 100.365105 250.000000 125.000000 250.000000 c +149.634903 250.000000 172.605347 242.873642 191.962311 230.569977 c +220.168076 230.569977 l +225.388641 230.569977 l +225.388641 230.675964 l +225.388641 230.976715 l +225.388641 231.274841 l +225.388641 231.570343 l +225.388641 231.863205 l +225.388641 232.153412 l +225.388641 232.440948 l +225.388641 232.725815 l +225.388641 233.007996 l +225.388641 233.287476 l +225.388641 233.564270 l +225.388641 233.838333 l +225.388641 234.109680 l +225.388641 234.378281 l +225.388641 234.644150 l +225.388641 234.907242 l +225.388641 235.167587 l +225.388641 235.425140 l +225.388641 235.679916 l +225.388641 235.931900 l +225.388641 236.181061 l +225.388641 236.427414 l +225.388641 236.670929 l +225.388641 236.911606 l +225.388641 237.149445 l +225.388641 237.384399 l +225.388641 237.616501 l +225.388641 237.845718 l +225.388641 238.072052 l +225.388641 238.295471 l +225.388641 238.515991 l +225.388641 238.733582 l +225.388641 238.948242 l +225.388641 239.159958 l +225.388641 239.368713 l +225.388641 239.574509 l +225.388641 239.777344 l +225.388641 239.977173 l +225.388641 240.174026 l +225.388641 240.367859 l +225.388641 240.558685 l +225.388641 240.746490 l +225.388641 240.931244 l +225.388641 241.112961 l +225.388641 241.291626 l +225.388641 241.467209 l +225.388641 241.639725 l +225.388641 241.809143 l +225.388641 241.975479 l +225.388641 242.138687 l +225.388641 242.298782 l +225.388641 242.455750 l +225.388641 242.609589 l +225.388641 242.760269 l +225.388641 242.907776 l +225.388641 243.052124 l +225.388641 243.193298 l +225.388641 243.331268 l +225.388641 243.466034 l +225.388641 243.597595 l +225.388641 243.725937 l +225.388641 243.851044 l +225.388641 243.972900 l +225.388641 244.091507 l +225.388641 244.206848 l +225.388641 244.318909 l +225.388641 244.427689 l +225.388641 244.533173 l +225.388641 244.635361 l +225.388641 244.734222 l +225.388641 244.829758 l +225.388641 244.921967 l +225.388641 245.010818 l +225.388641 245.096313 l +225.388641 245.178436 l +225.388641 245.257187 l +225.388641 245.332550 l +225.388641 245.404510 l +225.388641 245.473068 l +225.388641 245.538208 l +225.388641 245.599899 l +225.388641 245.658173 l +225.388641 245.712982 l +225.388641 245.764328 l +225.388641 245.812210 l +225.388641 245.856613 l +225.388641 245.897522 l +225.388641 245.934921 l +225.388641 245.968811 l +225.388641 245.999176 l +225.388641 246.026001 l +225.388641 246.049301 l +225.388641 246.069031 l +225.388641 246.085205 l +225.388641 246.097794 l +225.388641 246.106796 l +225.388641 246.112213 l +225.388641 246.113419 225.388641 246.114029 227.979309 246.114029 c +230.569977 246.114029 230.569977 246.113419 230.569977 246.112213 c +230.569977 246.106796 l +230.569977 246.097794 l +230.569977 246.085205 l +230.569977 246.069031 l +230.569977 246.049301 l +230.569977 246.026001 l +230.569977 245.999176 l +230.569977 245.968811 l +230.569977 245.934921 l +230.569977 245.897522 l +230.569977 245.856613 l +230.569977 245.812210 l +230.569977 245.764328 l +230.569977 245.712982 l +230.569977 245.658173 l +230.569977 245.599899 l +230.569977 245.538208 l +230.569977 245.473068 l +230.569977 245.404510 l +230.569977 245.332550 l +230.569977 245.257187 l +230.569977 245.178436 l +230.569977 245.096313 l +230.569977 245.010818 l +230.569977 244.921967 l +230.569977 244.829758 l +230.569977 244.734222 l +230.569977 244.635361 l +230.569977 244.533173 l +230.569977 244.427689 l +230.569977 244.318909 l +230.569977 244.206848 l +230.569977 244.091507 l +230.569977 243.972900 l +230.569977 243.851044 l +230.569977 243.725937 l +230.569977 243.597595 l +230.569977 243.466034 l +230.569977 243.331268 l +230.569977 243.193298 l +230.569977 243.052124 l +230.569977 242.907776 l +230.569977 242.760269 l +230.569977 242.609589 l +230.569977 242.455750 l +230.569977 242.298782 l +230.569977 242.138687 l +230.569977 241.975479 l +230.569977 241.809143 l +230.569977 241.639725 l +230.569977 241.467209 l +230.569977 241.291626 l +230.569977 241.112961 l +230.569977 240.931244 l +230.569977 240.746490 l +230.569977 240.558685 l +230.569977 240.367859 l +230.569977 240.174026 l +230.569977 239.977173 l +230.569977 239.777344 l +230.569977 239.574509 l +230.569977 239.368713 l +230.569977 239.159958 l +230.569977 238.948242 l +230.569977 238.733582 l +230.569977 238.515991 l +230.569977 238.295471 l +230.569977 238.072052 l +230.569977 237.845718 l +230.569977 237.616501 l +230.569977 237.384399 l +230.569977 237.149445 l +230.569977 236.911606 l +230.569977 236.670929 l +230.569977 236.427414 l +230.569977 236.181061 l +230.569977 235.931900 l +230.569977 235.679916 l +230.569977 235.425140 l +230.569977 235.167587 l +230.569977 234.907242 l +230.569977 234.644150 l +230.569977 234.378281 l +230.569977 234.109680 l +230.569977 233.838333 l +230.569977 233.564270 l +230.569977 233.287476 l +230.569977 233.007996 l +230.569977 232.725815 l +230.569977 232.440948 l +230.569977 232.153412 l +230.569977 231.863205 l +230.569977 231.570343 l +230.569977 231.274841 l +230.569977 230.976715 l +230.569977 230.675964 l +230.569977 230.569977 l +239.177261 230.569977 l +244.323547 230.569977 l +245.659378 230.569977 l +245.999481 230.569977 l +246.085281 230.569977 l +246.106827 230.569977 l +246.112228 230.569977 l +246.113434 230.569977 246.114029 230.569977 246.114029 227.979309 c +246.114029 225.388641 246.113434 225.388641 246.112228 225.388641 c +246.106827 225.388641 l +246.085281 225.388641 l +245.999481 225.388641 l +245.659378 225.388641 l +244.323547 225.388641 l +239.177261 225.388641 l +230.569977 225.388641 l +230.569977 225.172073 l +230.569977 224.825897 l +230.569977 224.477295 l +230.569977 224.126282 l +230.569977 223.772873 l +230.569977 223.417053 l +230.569977 223.058868 l +230.569977 222.698303 l +230.569977 222.335373 l +230.569977 221.970093 l +230.569977 221.602463 l +230.569977 221.232513 l +230.569977 220.860229 l +230.569977 220.485641 l +230.569977 220.108749 l +230.569977 219.729584 l +230.569977 219.348114 l +230.569977 218.964386 l +230.569977 218.578400 l +230.569977 218.190170 l +230.569977 217.799698 l +230.569977 217.406982 l +230.569977 217.012070 l +230.569977 216.614944 l +230.569977 216.215622 l +230.569977 215.814117 l +230.569977 215.410431 l +230.569977 215.004578 l +230.569977 214.596558 l +230.569977 214.186401 l +230.569977 213.774109 l +230.569977 213.359711 l +230.569977 212.943176 l +230.569977 212.524551 l +230.569977 212.103821 l +230.569977 211.681015 l +230.569977 211.256134 l +230.569977 210.829193 l +230.569977 210.400208 l +230.569977 209.969177 l +230.569977 209.536102 l +230.569977 209.101013 l +230.569977 208.663925 l +230.569977 208.224823 l +230.569977 207.783737 l +230.569977 207.340668 l +230.569977 206.895630 l +230.569977 206.448639 l +230.569977 205.999695 l +230.569977 205.548828 l +230.569977 205.096008 l +230.569977 204.641296 l +230.569977 204.184662 l +230.569977 203.726135 l +230.569977 203.265717 l +230.569977 202.803436 l +230.569977 202.339279 l +230.569977 201.873260 l +230.569977 201.405411 l +230.569977 200.935730 l +230.569977 200.464218 l +230.569977 199.990891 l +230.569977 199.515762 l +230.569977 199.038834 l +230.569977 198.560135 l +230.569977 198.079651 l +230.569977 197.597412 l +230.569977 197.113434 l +230.569977 196.627701 l +230.569977 196.140244 l +230.569977 195.651062 l +230.569977 195.160172 l +230.569977 194.667572 l +230.569977 194.173294 l +230.569977 193.677338 l +230.569977 193.179718 l +230.569977 192.680435 l +230.569977 192.179504 l +230.569977 191.962326 l +242.873642 172.605362 250.000000 149.634903 250.000000 125.000000 c +250.000000 100.365097 242.873642 77.394638 230.569977 58.037674 c +230.569977 57.512634 l +230.569977 56.905121 l +230.569977 56.298325 l +230.569977 55.692245 l +230.569977 55.086884 l +230.569977 54.482269 l +230.569977 53.878387 l +230.569977 53.275269 l +230.569977 52.672928 l +230.569977 52.071350 l +230.569977 51.470551 l +230.569977 50.870575 l +230.569977 50.271393 l +230.569977 49.673019 l +230.569977 49.075485 l +230.569977 48.478790 l +230.569977 47.882950 l +230.569977 47.287964 l +230.569977 46.693848 l +230.569977 46.100616 l +230.569977 45.508270 l +230.569977 44.916824 l +230.569977 44.326294 l +230.569977 43.736694 l +230.569977 43.148026 l +230.569977 42.560287 l +230.569977 41.973511 l +230.569977 41.387695 l +230.569977 40.802856 l +230.569977 40.218994 l +230.569977 39.636139 l +230.569977 39.054276 l +230.569977 38.473434 l +230.569977 37.893631 l +230.569977 37.314850 l +230.569977 36.737106 l +230.569977 36.160431 l +230.569977 35.584824 l +230.569977 35.010300 l +230.569977 34.436859 l +230.569977 33.864517 l +230.569977 33.293274 l +230.569977 32.723160 l +230.569977 32.154175 l +230.569977 31.586334 l +230.569977 31.019638 l +230.569977 30.454102 l +230.569977 29.889725 l +230.569977 29.326553 l +230.569977 28.764557 l +230.569977 28.203766 l +230.569977 27.644196 l +230.569977 27.085831 l +230.569977 26.528717 l +230.569977 25.972839 l +230.569977 25.418213 l +230.569977 24.864853 l +230.569977 24.611359 l +239.177261 24.611359 l +244.323547 24.611359 l +245.659378 24.611359 l +245.999481 24.611359 l +246.085281 24.611359 l +246.106827 24.611359 l +246.112228 24.611359 l +246.113434 24.611359 246.114029 24.611359 246.114029 22.020691 c +246.114029 19.430023 246.113434 19.430023 246.112228 19.430023 c +246.106827 19.430023 l +246.085281 19.430023 l +245.999481 19.430023 l +245.659378 19.430023 l +244.323547 19.430023 l +239.177261 19.430023 l +230.569977 19.430023 l +230.569977 19.403061 l +230.569977 18.864288 l +230.569977 18.326904 l +230.569977 17.790924 l +230.569977 17.256348 l +230.569977 16.723190 l +230.569977 16.191467 l +230.569977 15.661194 l +230.569977 15.132355 l +230.569977 14.604980 l +230.569977 14.079086 l +230.569977 13.554657 l +230.569977 13.031738 l +230.569977 12.510315 l +230.569977 11.990402 l +230.569977 11.472015 l +230.569977 10.955154 l +230.569977 10.439850 l +230.569977 9.926102 l +230.569977 9.413910 l +230.569977 8.903290 l +230.569977 8.394257 l +230.569977 7.886826 l +230.569977 7.380997 l +230.569977 6.876785 l +230.569977 6.374191 l +230.569977 5.873245 l +230.569977 5.373947 l +230.569977 4.876312 l +230.569977 4.380341 l +230.569977 3.886032 l +230.569977 2.455246 229.410095 1.295364 227.979309 1.295364 c +226.548523 1.295364 225.388641 2.455246 225.388641 3.886032 c +225.388641 4.380341 l +225.388641 4.876312 l +225.388641 5.373947 l +225.388641 5.873245 l +225.388641 6.374191 l +225.388641 6.876785 l +225.388641 7.380997 l +225.388641 7.886826 l +225.388641 8.394257 l +225.388641 8.903290 l +225.388641 9.413910 l +225.388641 9.926102 l +225.388641 10.439850 l +225.388641 10.955154 l +225.388641 11.472015 l +225.388641 11.990402 l +225.388641 12.510315 l +225.388641 13.031738 l +225.388641 13.554657 l +225.388641 14.079086 l +225.388641 14.604980 l +225.388641 15.132355 l +225.388641 15.661194 l +225.388641 16.191467 l +225.388641 16.723190 l +225.388641 17.256348 l +225.388641 17.790924 l +225.388641 18.326904 l +225.388641 18.864288 l +225.388641 19.403061 l +225.388641 19.430023 l +220.168076 19.430023 l +191.962326 19.430023 l +h +246.114029 22.020691 m +246.114029 24.611359 l +247.544815 24.611359 248.704697 23.451477 248.704697 22.020691 c +248.704697 20.589905 247.544815 19.430023 246.114029 19.430023 c +246.114029 22.020691 l +h +225.388641 50.507889 m +225.388641 50.271393 l +225.388641 49.673019 l +225.388641 49.075485 l +225.388641 48.478790 l +225.388641 47.882950 l +225.388641 47.287964 l +225.388641 46.693848 l +225.388641 46.100616 l +225.388641 45.508270 l +225.388641 44.916824 l +225.388641 44.326294 l +225.388641 43.736694 l +225.388641 43.148026 l +225.388641 42.560287 l +225.388641 41.973511 l +225.388641 41.387695 l +225.388641 40.802856 l +225.388641 40.218994 l +225.388641 39.636139 l +225.388641 39.054276 l +225.388641 38.473434 l +225.388641 37.893631 l +225.388641 37.314850 l +225.388641 36.737106 l +225.388641 36.160431 l +225.388641 35.584824 l +225.388641 35.010300 l +225.388641 34.436859 l +225.388641 33.864517 l +225.388641 33.293274 l +225.388641 32.723160 l +225.388641 32.154175 l +225.388641 31.586334 l +225.388641 31.019638 l +225.388641 30.454102 l +225.388641 29.889725 l +225.388641 29.326553 l +225.388641 28.764557 l +225.388641 28.203766 l +225.388641 27.644196 l +225.388641 27.085831 l +225.388641 26.528717 l +225.388641 25.972839 l +225.388641 25.418213 l +225.388641 24.864853 l +225.388641 24.611359 l +220.168076 24.611359 l +199.492126 24.611359 l +209.338165 31.929474 218.070526 40.661850 225.388641 50.507889 c +h +230.569977 68.280792 m +239.660446 85.165161 244.818649 104.480194 244.818649 125.000000 c +244.818649 145.519806 239.660446 164.834839 230.569977 181.719208 c +230.569977 181.297638 l +230.569977 180.763092 l +230.569977 180.227112 l +230.569977 179.689758 l +230.569977 179.151001 l +230.569977 178.610855 l +230.569977 178.069351 l +230.569977 177.526489 l +230.569977 176.982285 l +230.569977 176.436737 l +230.569977 175.889862 l +230.569977 175.341675 l +230.569977 174.792175 l +230.569977 174.241394 l +230.569977 173.689331 l +230.569977 173.135986 l +230.569977 172.581360 l +230.569977 172.025497 l +230.569977 171.468384 l +230.569977 170.910034 l +230.569977 170.350479 l +230.569977 169.789703 l +230.569977 169.227722 l +230.569977 168.664551 l +230.569977 168.100189 l +230.569977 167.534668 l +230.569977 166.967987 l +230.569977 166.400146 l +230.569977 165.831177 l +230.569977 165.261063 l +230.569977 164.689835 l +230.569977 164.117493 l +230.569977 163.544067 l +230.569977 162.969543 l +230.569977 162.393951 l +230.569977 161.817291 l +230.569977 161.239563 l +230.569977 160.660797 l +230.569977 160.080994 l +230.569977 159.500153 l +230.569977 158.918304 l +230.569977 158.335464 l +230.569977 157.751617 l +230.569977 157.166779 l +230.569977 156.580978 l +230.569977 155.994202 l +230.569977 155.406494 l +230.569977 154.817810 l +230.569977 154.228210 l +230.569977 153.637695 l +230.569977 153.046265 l +230.569977 152.453934 l +230.569977 151.860718 l +230.569977 151.266602 l +230.569977 150.671631 l +230.569977 150.075775 l +230.569977 149.479095 l +230.569977 148.881577 l +230.569977 148.283218 l +230.569977 147.684052 l +230.569977 147.084061 l +230.569977 146.483276 l +230.569977 145.881714 l +230.569977 145.279358 l +230.569977 144.676254 l +230.569977 144.072388 l +230.569977 143.467773 l +230.569977 142.862427 l +230.569977 142.256348 l +230.569977 141.649551 l +230.569977 141.042053 l +230.569977 140.433868 l +230.569977 139.824997 l +230.569977 139.215454 l +230.569977 138.605225 l +230.569977 137.994370 l +230.569977 137.382874 l +230.569977 136.770721 l +230.569977 136.157959 l +230.569977 135.544586 l +230.569977 134.930618 l +230.569977 134.316055 l +230.569977 133.700912 l +230.569977 133.085205 l +230.569977 132.468933 l +230.569977 131.852112 l +230.569977 131.234741 l +230.569977 130.616852 l +230.569977 129.998444 l +230.569977 129.379517 l +230.569977 128.760101 l +230.569977 128.140198 l +230.569977 127.519829 l +230.569977 126.898987 l +230.569977 126.277687 l +230.569977 125.655945 l +230.569977 125.033760 l +230.569977 124.411156 l +230.569977 123.788132 l +230.569977 123.164711 l +230.569977 122.540894 l +230.569977 121.916687 l +230.569977 121.292114 l +230.569977 120.667175 l +230.569977 120.041885 l +230.569977 119.416260 l +230.569977 118.790298 l +230.569977 118.164001 l +230.569977 117.537415 l +230.569977 116.910522 l +230.569977 116.283325 l +230.569977 115.655869 l +230.569977 115.028137 l +230.569977 114.400131 l +230.569977 113.771896 l +230.569977 113.143402 l +230.569977 112.514694 l +230.569977 111.885773 l +230.569977 111.256638 l +230.569977 110.627304 l +230.569977 109.997787 l +230.569977 109.368088 l +230.569977 108.738220 l +230.569977 108.108215 l +230.569977 107.478043 l +230.569977 106.847748 l +230.569977 106.217331 l +230.569977 105.586792 l +230.569977 104.956161 l +230.569977 104.325424 l +230.569977 103.694611 l +230.569977 103.063721 l +230.569977 102.432770 l +230.569977 101.801773 l +230.569977 101.170731 l +230.569977 100.539658 l +230.569977 99.908569 l +230.569977 99.277451 l +230.569977 98.646347 l +230.569977 98.015259 l +230.569977 97.384186 l +230.569977 96.753143 l +230.569977 96.122131 l +230.569977 95.491180 l +230.569977 94.860306 l +230.569977 94.229477 l +230.569977 93.598755 l +230.569977 92.968109 l +230.569977 92.337570 l +230.569977 91.707153 l +230.569977 91.076859 l +230.569977 90.446701 l +230.569977 89.816681 l +230.569977 89.186813 l +230.569977 88.557114 l +230.569977 87.927597 l +230.569977 87.298264 l +230.569977 86.669128 l +230.569977 86.040192 l +230.569977 85.411484 l +230.569977 84.783005 l +230.569977 84.154755 l +230.569977 83.526749 l +230.569977 82.899017 l +230.569977 82.271545 l +230.569977 81.644363 l +230.569977 81.017456 l +230.569977 80.390854 l +230.569977 79.764572 l +230.569977 79.138596 l +230.569977 78.512970 l +230.569977 77.887680 l +230.569977 77.262726 l +230.569977 76.638153 l +230.569977 76.013947 l +230.569977 75.390121 l +230.569977 74.766693 l +230.569977 74.143677 l +230.569977 73.521057 l +230.569977 72.898880 l +230.569977 72.277130 l +230.569977 71.655823 l +230.569977 71.034973 l +230.569977 70.414597 l +230.569977 69.794693 l +230.569977 69.175278 l +230.569977 68.556351 l +230.569977 68.280792 l +h +225.388641 199.492111 m +225.388641 199.515762 l +225.388641 199.990891 l +225.388641 200.464218 l +225.388641 200.935730 l +225.388641 201.405411 l +225.388641 201.873260 l +225.388641 202.339279 l +225.388641 202.803436 l +225.388641 203.265717 l +225.388641 203.726135 l +225.388641 204.184662 l +225.388641 204.641296 l +225.388641 205.096008 l +225.388641 205.548828 l +225.388641 205.999695 l +225.388641 206.448639 l +225.388641 206.895630 l +225.388641 207.340668 l +225.388641 207.783737 l +225.388641 208.224823 l +225.388641 208.663925 l +225.388641 209.101013 l +225.388641 209.536102 l +225.388641 209.969177 l +225.388641 210.400208 l +225.388641 210.829193 l +225.388641 211.256134 l +225.388641 211.681015 l +225.388641 212.103821 l +225.388641 212.524551 l +225.388641 212.943176 l +225.388641 213.359711 l +225.388641 213.774109 l +225.388641 214.186401 l +225.388641 214.596558 l +225.388641 215.004578 l +225.388641 215.410431 l +225.388641 215.814117 l +225.388641 216.215622 l +225.388641 216.614944 l +225.388641 217.012070 l +225.388641 217.406982 l +225.388641 217.799698 l +225.388641 218.190170 l +225.388641 218.578400 l +225.388641 218.964386 l +225.388641 219.348114 l +225.388641 219.729584 l +225.388641 220.108749 l +225.388641 220.485641 l +225.388641 220.860229 l +225.388641 221.232513 l +225.388641 221.602463 l +225.388641 221.970093 l +225.388641 222.335373 l +225.388641 222.698303 l +225.388641 223.058868 l +225.388641 223.417053 l +225.388641 223.772873 l +225.388641 224.126282 l +225.388641 224.477295 l +225.388641 224.825897 l +225.388641 225.172073 l +225.388641 225.388641 l +220.168076 225.388641 l +199.492126 225.388641 l +209.338165 218.070511 218.070526 209.338165 225.388641 199.492111 c +h +246.114029 227.979309 m +246.114029 230.569977 l +247.544815 230.569977 248.704697 229.410095 248.704697 227.979309 c +248.704697 226.548523 247.544815 225.388641 246.114029 225.388641 c +246.114029 227.979309 l +h +227.979309 246.114029 m +225.388641 246.114029 l +225.388641 247.544815 226.548523 248.704697 227.979309 248.704697 c +229.410095 248.704697 230.569977 247.544815 230.569977 246.114029 c +227.979309 246.114029 l +h +181.719208 230.569977 m +164.834839 239.660461 145.519806 244.818649 125.000000 244.818649 c +104.480202 244.818649 85.165161 239.660461 68.280800 230.569992 c +156.739151 230.569992 l +181.719208 230.569977 l +h +50.507893 225.388641 m +24.611364 225.388641 l +24.611364 225.109650 l +24.611364 224.768433 l +24.611364 224.424866 l +24.611364 224.078979 l +24.611364 223.730774 l +24.611364 223.380249 l +24.611364 223.027435 l +24.611364 222.672318 l +24.611364 222.314926 l +24.611364 221.955261 l +24.611364 221.593353 l +24.611364 221.229172 l +24.611364 220.862762 l +24.611364 220.494110 l +24.611364 220.123245 l +24.611364 219.750168 l +24.611364 219.374893 l +24.611364 218.997421 l +24.611364 218.617767 l +24.611364 218.235931 l +24.611364 217.851944 l +24.611364 217.465790 l +24.611364 217.077499 l +24.611364 216.687073 l +24.611364 216.294525 l +24.611364 215.899872 l +24.611364 215.503113 l +24.611364 215.104248 l +24.611364 214.703293 l +24.611364 214.300278 l +24.611364 213.895187 l +24.611364 213.488037 l +24.611364 213.078857 l +24.611364 212.667633 l +24.611364 212.254379 l +24.611364 211.839111 l +24.611364 211.421844 l +24.611364 211.002563 l +24.611364 210.581299 l +24.611364 210.158066 l +24.611364 209.732864 l +24.611364 209.305695 l +24.611364 208.876587 l +24.611364 208.445541 l +24.611364 208.012558 l +24.611364 207.577667 l +24.611364 207.140854 l +24.611364 206.702148 l +24.611364 206.261551 l +24.611364 205.819077 l +24.611364 205.374725 l +24.611364 204.928528 l +24.611364 204.480469 l +24.611364 204.030563 l +24.611364 203.578842 l +24.611364 203.125290 l +24.611364 202.669922 l +24.611364 202.212769 l +24.611364 201.753815 l +24.611364 201.293060 l +24.611364 200.830566 l +24.611364 200.366287 l +24.611364 199.900253 l +24.611364 199.492126 l +31.929485 209.338165 40.661850 218.070526 50.507893 225.388641 c +h +19.430017 181.719208 m +10.339542 164.834839 5.181347 145.519806 5.181347 125.000000 c +5.181347 104.480194 10.339542 85.165161 19.430017 68.280792 c +19.430017 68.654297 l +19.430017 69.265961 l +19.430017 69.878067 l +19.430017 70.490616 l +19.430017 71.103607 l +19.430017 71.717026 l +19.430017 72.330841 l +19.430017 72.945084 l +19.430017 73.559708 l +19.430017 74.174728 l +19.430017 74.790115 l +19.430017 75.405884 l +19.430017 76.021988 l +19.430017 76.638458 l +19.430017 77.255264 l +19.430017 77.872391 l +19.430017 78.489838 l +19.430017 79.107590 l +19.430017 79.725632 l +19.430017 80.343979 l +19.430017 80.962585 l +19.430017 81.581482 l +19.430017 82.200623 l +19.430017 82.820023 l +19.430017 83.439651 l +19.430017 84.059525 l +19.430017 84.679611 l +19.430017 85.299896 l +19.430017 85.920395 l +19.430017 86.541092 l +19.430017 87.161957 l +19.430017 87.782990 l +19.430017 88.404190 l +19.430017 89.025543 l +19.430017 89.647034 l +19.430017 90.268661 l +19.430017 90.890411 l +19.430017 91.512268 l +19.430017 92.134232 l +19.430017 92.756287 l +19.430017 93.378433 l +19.430017 94.000641 l +19.430017 94.622925 l +19.430017 95.245255 l +19.430017 95.867630 l +19.430017 96.490036 l +19.430017 97.112473 l +19.430017 97.734924 l +19.430017 98.357376 l +19.430017 98.979828 l +19.430017 99.602264 l +19.430017 100.224670 l +19.430017 100.847046 l +19.430017 101.469391 l +19.430017 102.091660 l +19.430017 102.713882 l +19.430017 103.336029 l +19.430017 103.958084 l +19.430017 104.580063 l +19.430017 105.201920 l +19.430017 105.823685 l +19.430017 106.445312 l +19.430017 107.066818 l +19.430017 107.688171 l +19.430017 108.309387 l +19.430017 108.930435 l +19.430017 109.551315 l +19.430017 110.172012 l +19.430017 110.792511 l +19.430017 111.412811 l +19.430017 112.032913 l +19.430017 112.652786 l +19.430017 113.272446 l +19.430017 113.891846 l +19.430017 114.511017 l +19.430017 115.129913 l +19.430017 115.748550 l +19.430017 116.366898 l +19.430017 116.984970 l +19.430017 117.602737 l +19.430017 118.220200 l +19.430017 118.837341 l +19.430017 119.454163 l +19.430017 120.070648 l +19.430017 120.686783 l +19.430017 121.302551 l +19.430017 121.917969 l +19.430017 122.533005 l +19.430017 123.147652 l +19.430017 123.761909 l +19.430017 124.375763 l +19.430017 124.989197 l +19.430017 125.602211 l +19.430017 126.214790 l +19.430017 126.826920 l +19.430017 127.438599 l +19.430017 128.049820 l +19.430017 128.660553 l +19.430017 129.270813 l +19.430017 129.880585 l +19.430017 130.489838 l +19.430017 131.098602 l +19.430017 131.706818 l +19.430017 132.314514 l +19.430017 132.921677 l +19.430017 133.528290 l +19.430017 134.134323 l +19.430017 134.739792 l +19.430017 135.344681 l +19.430017 135.948975 l +19.430017 136.552673 l +19.430017 137.155762 l +19.430017 137.758240 l +19.430017 138.360077 l +19.430017 138.961273 l +19.430017 139.561829 l +19.430017 140.161713 l +19.430017 140.760941 l +19.430017 141.359482 l +19.430017 141.957336 l +19.430017 142.554504 l +19.430017 143.150940 l +19.430017 143.746674 l +19.430017 144.341675 l +19.430017 144.935944 l +19.430017 145.529480 l +19.430017 146.122238 l +19.430017 146.714233 l +19.430017 147.305450 l +19.430017 147.895889 l +19.430017 148.485535 l +19.430017 149.074371 l +19.430017 149.662384 l +19.430017 150.249573 l +19.430017 150.835938 l +19.430017 151.421448 l +19.430017 152.006104 l +19.430017 152.589905 l +19.430017 153.172821 l +19.430017 153.754852 l +19.430017 154.335999 l +19.430017 154.916245 l +19.430017 155.495575 l +19.430017 156.073975 l +19.430017 156.651459 l +19.430017 157.227982 l +19.430017 157.803558 l +19.430017 158.378174 l +19.430017 158.951813 l +19.430017 159.524490 l +19.430017 160.096161 l +19.430017 160.666840 l +19.430017 161.236496 l +19.430017 161.805145 l +19.430017 162.372742 l +19.430017 162.939316 l +19.430017 163.504837 l +19.430017 164.069305 l +19.430017 164.632690 l +19.430017 165.195007 l +19.430017 165.756226 l +19.430017 166.316345 l +19.430017 166.875366 l +19.430017 167.433273 l +19.430017 167.990051 l +19.430017 168.545685 l +19.430017 169.100159 l +19.430017 169.653503 l +19.430017 170.205658 l +19.430017 170.756653 l +19.430017 171.306442 l +19.430017 171.855042 l +19.430017 172.402435 l +19.430017 172.948624 l +19.430017 173.493591 l +19.430017 174.037292 l +19.430017 174.579773 l +19.430017 175.121002 l +19.430017 175.660950 l +19.430017 176.199646 l +19.430017 176.737030 l +19.430017 177.273132 l +19.430017 177.807938 l +19.430017 178.341431 l +19.430017 178.873596 l +19.430017 179.404419 l +19.430017 179.933899 l +19.430017 180.462036 l +19.430017 180.988815 l +19.430017 181.514221 l +19.430017 181.719208 l +h +24.611364 50.507874 m +24.611364 49.971725 l +24.611364 49.379776 l +24.611364 48.788589 l +24.611364 48.198196 l +24.611364 47.608612 l +24.611364 47.019821 l +24.611364 46.431854 l +24.611364 45.844696 l +24.611364 45.258392 l +24.611364 44.672928 l +24.611364 44.088303 l +24.611364 43.504562 l +24.611364 42.921692 l +24.611364 42.339706 l +24.611364 41.758606 l +24.611364 41.178421 l +24.611364 40.599136 l +24.611364 40.020782 l +24.611364 39.443359 l +24.611364 38.866882 l +24.611364 38.291351 l +24.611364 37.716797 l +24.611364 37.143204 l +24.611364 36.570602 l +24.611364 35.998978 l +24.611364 35.428360 l +24.611364 34.858749 l +24.611364 34.290176 l +24.611364 33.722626 l +24.611364 33.156113 l +24.611364 32.590637 l +24.611364 32.026245 l +24.611364 31.462906 l +24.611364 30.900650 l +24.611364 30.339493 l +24.611364 29.779419 l +24.611364 29.220474 l +24.611364 28.662628 l +24.611364 28.105927 l +24.611364 27.550354 l +24.611364 26.995926 l +24.611364 26.442657 l +24.611364 25.890564 l +24.611364 25.339645 l +24.611364 24.789917 l +24.611364 24.611374 l +50.507866 24.611374 l +40.661831 31.929489 31.929480 40.661835 24.611364 50.507874 c +h +f* +n +Q +q +q +/E2 gs +/E3 gs +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +/Pattern cs +/P1 scn +70.181450 173.575195 m +64.644295 173.575195 60.155544 169.086441 60.155544 163.549286 c +60.155544 158.012131 64.644295 153.523376 70.181450 153.523376 c +96.021507 153.523376 116.969017 132.575867 116.969017 106.735817 c +116.969017 101.198662 121.457764 96.709915 126.994926 96.709915 c +132.532089 96.709915 137.020828 101.198662 137.020828 106.735817 c +137.020828 143.650177 107.095818 173.575195 70.181450 173.575195 c +h +0.000000 76.658478 m +0.000000 71.121323 4.488751 66.632568 10.025908 66.632568 c +15.563063 66.632568 20.051815 71.121323 20.051815 76.658478 c +20.051813 102.498535 40.999321 123.446045 66.839378 123.446045 c +72.376534 123.446045 76.865280 127.934799 76.865280 133.471954 c +76.865280 139.009109 72.376534 143.497864 66.839378 143.497864 c +29.925011 143.497849 -0.000001 113.572845 0.000000 76.658478 c +h +96.917381 6.476807 m +102.454536 6.476807 106.943291 10.965561 106.943291 16.502716 c +106.943291 22.039871 102.454544 26.528625 96.917389 26.528625 c +71.077324 26.528625 50.129818 47.476135 50.129822 73.316193 c +50.129822 78.853348 45.641075 83.342094 40.103920 83.342094 c +34.566761 83.342094 30.078016 78.853348 30.078014 73.316193 c +30.078012 36.401825 60.003014 6.476807 96.917381 6.476807 c +h +157.072937 113.419434 m +162.610092 113.419434 167.098846 108.930679 167.098846 103.393524 c +167.098846 66.479156 137.173828 36.554153 100.259453 36.554153 c +94.722298 36.554153 90.233551 41.042908 90.233551 46.580055 c +90.233551 52.117218 94.722298 56.605965 100.259460 56.605965 c +126.099510 56.605957 147.047028 77.553467 147.047028 103.393524 c +147.047028 108.930687 151.535782 113.419434 157.072937 113.419434 c +h +f* +n +Q +q +/E4 gs +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +/Pattern cs +/P2 scn +70.181450 173.575195 m +64.644295 173.575195 60.155544 169.086441 60.155544 163.549286 c +60.155544 158.012131 64.644295 153.523376 70.181450 153.523376 c +96.021507 153.523376 116.969017 132.575867 116.969017 106.735817 c +116.969017 101.198662 121.457764 96.709915 126.994926 96.709915 c +132.532089 96.709915 137.020828 101.198662 137.020828 106.735817 c +137.020828 143.650177 107.095818 173.575195 70.181450 173.575195 c +h +0.000000 76.658478 m +0.000000 71.121323 4.488751 66.632568 10.025908 66.632568 c +15.563063 66.632568 20.051815 71.121323 20.051815 76.658478 c +20.051813 102.498535 40.999321 123.446045 66.839378 123.446045 c +72.376534 123.446045 76.865280 127.934799 76.865280 133.471954 c +76.865280 139.009109 72.376534 143.497864 66.839378 143.497864 c +29.925011 143.497849 -0.000001 113.572845 0.000000 76.658478 c +h +96.917381 6.476807 m +102.454536 6.476807 106.943291 10.965561 106.943291 16.502716 c +106.943291 22.039871 102.454544 26.528625 96.917389 26.528625 c +71.077324 26.528625 50.129818 47.476135 50.129822 73.316193 c +50.129822 78.853348 45.641075 83.342094 40.103920 83.342094 c +34.566761 83.342094 30.078016 78.853348 30.078014 73.316193 c +30.078012 36.401825 60.003014 6.476807 96.917381 6.476807 c +h +157.072937 113.419434 m +162.610092 113.419434 167.098846 108.930679 167.098846 103.393524 c +167.098846 66.479156 137.173828 36.554153 100.259453 36.554153 c +94.722298 36.554153 90.233551 41.042908 90.233551 46.580055 c +90.233551 52.117218 94.722298 56.605965 100.259460 56.605965 c +126.099510 56.605957 147.047028 77.553467 147.047028 103.393524 c +147.047028 108.930687 151.535782 113.419434 157.072937 113.419434 c +h +f* +n +Q +/E5 gs +q +1.000000 0.000000 -0.000000 1.000000 41.450684 34.974121 cm +1.000000 1.000000 1.000000 scn +0.000000 76.658478 m +-3.238342 76.658478 l +0.000000 76.658478 l +h +20.051815 76.658478 m +23.290157 76.658478 l +23.290157 76.658478 l +20.051815 76.658478 l +h +66.839378 123.446045 m +66.839378 126.684387 l +66.839378 126.684387 l +66.839378 123.446045 l +h +66.839378 143.497864 m +66.839378 146.736206 l +66.839378 146.736206 l +66.839378 143.497864 l +h +50.129822 73.316193 m +53.368164 73.316193 l +53.368164 73.316193 l +50.129822 73.316193 l +h +30.078014 73.316193 m +26.839672 73.316193 l +26.839672 73.316193 l +30.078014 73.316193 l +h +100.259460 56.605965 m +100.259460 59.844307 l +100.259460 59.844307 l +100.259460 56.605965 l +h +63.393887 163.549286 m +63.393887 167.297958 66.432785 170.336853 70.181450 170.336853 c +70.181450 176.813538 l +62.855808 176.813538 56.917202 170.874924 56.917202 163.549286 c +63.393887 163.549286 l +h +70.181450 156.761719 m +66.432785 156.761719 63.393887 159.800613 63.393887 163.549286 c +56.917202 163.549286 l +56.917202 156.223648 62.855808 150.285034 70.181450 150.285034 c +70.181450 156.761719 l +h +120.207359 106.735817 m +120.207359 134.364365 97.809998 156.761719 70.181450 156.761719 c +70.181450 150.285034 l +94.233025 150.285034 113.730675 130.787384 113.730675 106.735817 c +120.207359 106.735817 l +h +126.994926 99.948257 m +123.246254 99.948257 120.207359 102.987144 120.207359 106.735817 c +113.730675 106.735817 l +113.730675 99.410172 119.669281 93.471573 126.994926 93.471573 c +126.994926 99.948257 l +h +133.782486 106.735817 m +133.782486 102.987144 130.743591 99.948257 126.994926 99.948257 c +126.994926 93.471573 l +134.320572 93.471573 140.259171 99.410179 140.259171 106.735817 c +133.782486 106.735817 l +h +70.181450 170.336853 m +105.307335 170.336853 133.782486 141.861694 133.782486 106.735817 c +140.259171 106.735817 l +140.259171 145.438675 108.884308 176.813538 70.181450 176.813538 c +70.181450 170.336853 l +h +10.025908 69.870911 m +6.277239 69.870911 3.238342 72.909805 3.238342 76.658478 c +-3.238342 76.658478 l +-3.238342 69.332832 2.700264 63.394226 10.025908 63.394226 c +10.025908 69.870911 l +h +16.813473 76.658478 m +16.813473 72.909805 13.774574 69.870911 10.025908 69.870911 c +10.025908 63.394226 l +17.351549 63.394226 23.290157 69.332832 23.290157 76.658478 c +16.813473 76.658478 l +h +66.839378 126.684387 m +39.210835 126.684387 16.813471 104.287018 16.813473 76.658478 c +23.290157 76.658478 l +23.290155 100.710045 42.787811 120.207703 66.839378 120.207703 c +66.839378 126.684387 l +h +73.626938 133.471954 m +73.626938 129.723282 70.588043 126.684387 66.839378 126.684387 c +66.839378 120.207703 l +74.165024 120.207703 80.103622 126.146317 80.103622 133.471954 c +73.626938 133.471954 l +h +66.839378 140.259521 m +70.588051 140.259521 73.626938 137.220627 73.626938 133.471954 c +80.103622 133.471954 l +80.103622 140.797592 74.165024 146.736206 66.839378 146.736206 c +66.839378 140.259521 l +h +3.238342 76.658478 m +3.238341 111.784355 31.713497 140.259506 66.839378 140.259521 c +66.839378 146.736206 l +28.136524 146.736191 -3.238343 115.361328 -3.238342 76.658478 c +3.238342 76.658478 l +h +103.704948 16.502716 m +103.704948 12.754044 100.666054 9.715149 96.917381 9.715149 c +96.917381 3.238464 l +104.243027 3.238464 110.181633 9.177078 110.181633 16.502716 c +103.704948 16.502716 l +h +96.917389 23.290283 m +100.666054 23.290283 103.704948 20.251389 103.704948 16.502716 c +110.181633 16.502716 l +110.181633 23.828354 104.243034 29.766968 96.917389 29.766968 c +96.917389 23.290283 l +h +46.891479 73.316193 m +46.891476 45.687645 69.288841 23.290283 96.917389 23.290283 c +96.917389 29.766968 l +72.865814 29.766968 53.368160 49.264618 53.368164 73.316193 c +46.891479 73.316193 l +h +40.103920 80.103752 m +43.852589 80.103752 46.891479 77.064857 46.891479 73.316193 c +53.368164 73.316193 l +53.368164 80.641830 47.429565 86.580437 40.103920 86.580437 c +40.103920 80.103752 l +h +33.316357 73.316193 m +33.316357 77.064857 36.355247 80.103752 40.103920 80.103752 c +40.103920 86.580437 l +32.778275 86.580437 26.839674 80.641830 26.839672 73.316193 c +33.316357 73.316193 l +h +96.917381 9.715149 m +61.791504 9.715149 33.316353 38.190308 33.316357 73.316193 c +26.839672 73.316193 l +26.839670 34.613342 58.214527 3.238464 96.917381 3.238464 c +96.917381 9.715149 l +h +170.337189 103.393524 m +170.337189 110.719162 164.398575 116.657776 157.072937 116.657776 c +157.072937 110.181091 l +160.821594 110.181091 163.860504 107.142189 163.860504 103.393524 c +170.337189 103.393524 l +h +100.259453 33.315811 m +138.962311 33.315811 170.337189 64.690666 170.337189 103.393524 c +163.860504 103.393524 l +163.860504 68.267639 135.385330 39.792496 100.259453 39.792496 c +100.259453 33.315811 l +h +86.995209 46.580055 m +86.995209 39.254425 92.933807 33.315811 100.259453 33.315811 c +100.259453 39.792496 l +96.510788 39.792496 93.471893 42.831390 93.471893 46.580055 c +86.995209 46.580055 l +h +100.259460 59.844307 m +92.933815 59.844307 86.995209 53.905701 86.995209 46.580055 c +93.471893 46.580055 l +93.471893 50.328728 96.510788 53.367622 100.259460 53.367622 c +100.259460 59.844307 l +h +143.808685 103.393524 m +143.808685 79.341949 124.311028 59.844299 100.259460 59.844307 c +100.259460 53.367622 l +127.888000 53.367615 150.285370 75.764977 150.285370 103.393524 c +143.808685 103.393524 l +h +157.072937 116.657776 m +149.747284 116.657776 143.808685 110.719177 143.808685 103.393524 c +150.285370 103.393524 l +150.285370 107.142197 153.324265 110.181091 157.072937 110.181091 c +157.072937 116.657776 l +h +f +n +Q +Q + +endstream +endobj + +19 0 obj + 55872 +endobj + +20 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 250.000000 250.000000 ] + /Resources 17 0 R + /Contents 18 0 R + /Parent 21 0 R + >> +endobj + +21 0 obj + << /Kids [ 20 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +22 0 obj + << /Pages 21 0 R + /Type /Catalog + >> +endobj + +xref +0 23 +0000000000 65535 f +0000000010 00000 n +0000000530 00000 n +0000000552 00000 n +0000001072 00000 n +0000001094 00000 n +0000003108 00000 n +0000003131 00000 n +0000003306 00000 n +0000003327 00000 n +0000003625 00000 n +0000003648 00000 n +0000006433 00000 n +0000006457 00000 n +0000006756 00000 n +0000006779 00000 n +0000009565 00000 n +0000009589 00000 n +0000011737 00000 n +0000067667 00000 n +0000067692 00000 n +0000067871 00000 n +0000067947 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 22 0 R + /Size 23 +>> +startxref +68008 +%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo.pdf new file mode 100644 index 000000000..4054363ae --- /dev/null +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding App Logo.imageset/OnboardingSplashAppLogo.pdf @@ -0,0 +1,2601 @@ +%PDF-1.7 + +1 0 obj + << /Length 2 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.625000 exch 0.625000 exch 0.625000 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.375258 mul 0.625000 add exch dup 0.000000 sub 0.375258 mul 0.625000 add exch dup 0.000000 sub 0.375258 mul 0.625000 add exch } if dup 0.999311 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } +endstream +endobj + +2 0 obj + 336 +endobj + +3 0 obj + << /Length 4 0 R + /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.437500 exch 0.437500 exch 0.437500 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 0.562500 mul 0.437500 add exch dup 0.000000 sub 0.562500 mul 0.437500 add exch dup 0.000000 sub 0.562500 mul 0.437500 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } +endstream +endobj + +4 0 obj + 336 +endobj + +5 0 obj + << /Type /XObject + /Length 6 0 R + /Group << /Type /Group + /S /Transparency + >> + /Subtype /Form + /Resources << >> + /BBox [ 0.000000 0.000000 220.000000 220.000000 ] + >> +stream +/DeviceRGB CS +/DeviceRGB cs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +61.759487 152.745850 m +56.886787 152.745850 52.936687 148.795746 52.936687 143.923050 c +52.936687 139.050354 56.886787 135.100250 61.759487 135.100250 c +84.498734 135.100250 102.932541 116.666443 102.932541 93.927200 c +102.932541 89.054504 106.882645 85.104401 111.755341 85.104401 c +116.628036 85.104401 120.578133 89.054504 120.578133 93.927200 c +120.578133 126.411842 94.244133 152.745850 61.759487 152.745850 c +h +0.000000 67.458984 m +0.000000 62.586288 3.950101 58.636185 8.822798 58.636185 c +13.695495 58.636185 17.645596 62.586288 17.645596 67.458984 c +17.645596 90.198235 36.079403 108.632050 58.818653 108.632050 c +63.691349 108.632050 67.641449 112.582146 67.641449 117.454842 c +67.641449 122.327545 63.691349 126.277634 58.818649 126.277634 c +26.334009 126.277634 0.000000 99.943626 0.000000 67.458984 c +h +85.287888 5.699493 m +90.160583 5.699493 94.110687 9.649597 94.110687 14.522293 c +94.110687 19.394989 90.160591 23.345093 85.287888 23.345093 c +62.548641 23.345093 44.114834 41.778900 44.114838 64.518150 c +44.114838 69.390846 40.164738 73.340942 35.292042 73.340950 c +30.419344 73.340950 26.469246 69.390846 26.469244 64.518150 c +26.469242 32.033508 52.803246 5.699493 85.287888 5.699493 c +h +138.224564 99.809158 m +143.097260 99.809158 147.047363 95.859062 147.047363 90.986359 c +147.047363 58.501717 120.713348 32.167717 88.228706 32.167717 c +83.356010 32.167717 79.405914 36.117813 79.405914 40.990517 c +79.405914 45.863213 83.356010 49.813309 88.228706 49.813309 c +110.967957 49.813309 129.401764 68.247116 129.401764 90.986366 c +129.401764 95.859062 133.351868 99.809158 138.224564 99.809158 c +h +0.000000 0.000000 0.000000 scn +f* +n + +endstream +endobj + +6 0 obj + 1739 +endobj + +7 0 obj + << /Length 8 0 R + /FunctionType 4 + /Domain [ 0.000000 1.000000 ] + /Range [ 0.000000 1.000000 ] + >> +stream +{ 0 gt { 0 } { 1 } ifelse } +endstream +endobj + +8 0 obj + 27 +endobj + +9 0 obj + << /Length 10 0 R + /Range [ 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.530000 exch dup 0.000000 gt { exch pop dup 0.000000 sub -0.530365 mul 0.530000 add exch } if dup 0.999311 gt { exch pop 0.000000 exch } if pop } +endstream +endobj + +10 0 obj + 149 +endobj + +11 0 obj + << /BBox [ 0.000000 0.000000 220.000000 220.000000 ] + /Resources << /Pattern << /P1 << /Matrix [ -0.000244 -111.023438 111.023438 -0.000244 -74.546875 183.523438 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceGray + /Function 9 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /Subtype /Form + /Length 12 0 R + /Group << /Type /Group + /S /Transparency + /CS /DeviceGray + >> + /Type /XObject + >> +stream +/DeviceGray CS +/DeviceGray cs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +61.759487 152.745850 m +56.886787 152.745850 52.936687 148.795746 52.936687 143.923050 c +52.936687 139.050354 56.886787 135.100250 61.759487 135.100250 c +84.498734 135.100250 102.932541 116.666443 102.932541 93.927200 c +102.932541 89.054504 106.882645 85.104401 111.755341 85.104401 c +116.628036 85.104401 120.578133 89.054504 120.578133 93.927200 c +120.578133 126.411842 94.244133 152.745850 61.759487 152.745850 c +h +0.000000 67.458984 m +0.000000 62.586288 3.950101 58.636185 8.822798 58.636185 c +13.695495 58.636185 17.645596 62.586288 17.645596 67.458984 c +17.645596 90.198235 36.079403 108.632050 58.818653 108.632050 c +63.691349 108.632050 67.641449 112.582146 67.641449 117.454842 c +67.641449 122.327545 63.691349 126.277634 58.818649 126.277634 c +26.334009 126.277634 0.000000 99.943626 0.000000 67.458984 c +h +85.287888 5.699493 m +90.160583 5.699493 94.110687 9.649597 94.110687 14.522293 c +94.110687 19.394989 90.160591 23.345093 85.287888 23.345093 c +62.548641 23.345093 44.114834 41.778900 44.114838 64.518150 c +44.114838 69.390846 40.164738 73.340942 35.292042 73.340950 c +30.419344 73.340950 26.469246 69.390846 26.469244 64.518150 c +26.469242 32.033508 52.803246 5.699493 85.287888 5.699493 c +h +138.224564 99.809158 m +143.097260 99.809158 147.047363 95.859062 147.047363 90.986359 c +147.047363 58.501717 120.713348 32.167717 88.228706 32.167717 c +83.356010 32.167717 79.405914 36.117813 79.405914 40.990517 c +79.405914 45.863213 83.356010 49.813309 88.228706 49.813309 c +110.967957 49.813309 129.401764 68.247116 129.401764 90.986366 c +129.401764 95.859062 133.351868 99.809158 138.224564 99.809158 c +h +/Pattern cs +/P1 scn +f* +n + +endstream +endobj + +12 0 obj + 1730 +endobj + +13 0 obj + << /Length 14 0 R + /Range [ 0.000000 1.000000 ] + /Domain [ 0.000000 1.000000 ] + /FunctionType 4 + >> +stream +{ 0.580000 exch dup 0.000000 gt { exch pop dup 0.000000 sub -0.580000 mul 0.580000 add exch } if dup 1.000000 gt { exch pop 0.000000 exch } if pop } +endstream +endobj + +14 0 obj + 149 +endobj + +15 0 obj + << /BBox [ 0.000000 0.000000 220.000000 220.000000 ] + /Resources << /Pattern << /P1 << /Matrix [ 50.000004 -189.000000 189.000000 50.000004 -170.635254 201.984863 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceGray + /Function 13 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> >> >> + /Subtype /Form + /Length 16 0 R + /Group << /Type /Group + /S /Transparency + /CS /DeviceGray + >> + /Type /XObject + >> +stream +/DeviceGray CS +/DeviceGray cs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +61.759487 152.745850 m +56.886787 152.745850 52.936687 148.795746 52.936687 143.923050 c +52.936687 139.050354 56.886787 135.100250 61.759487 135.100250 c +84.498734 135.100250 102.932541 116.666443 102.932541 93.927200 c +102.932541 89.054504 106.882645 85.104401 111.755341 85.104401 c +116.628036 85.104401 120.578133 89.054504 120.578133 93.927200 c +120.578133 126.411842 94.244133 152.745850 61.759487 152.745850 c +h +0.000000 67.458984 m +0.000000 62.586288 3.950101 58.636185 8.822798 58.636185 c +13.695495 58.636185 17.645596 62.586288 17.645596 67.458984 c +17.645596 90.198235 36.079403 108.632050 58.818653 108.632050 c +63.691349 108.632050 67.641449 112.582146 67.641449 117.454842 c +67.641449 122.327545 63.691349 126.277634 58.818649 126.277634 c +26.334009 126.277634 0.000000 99.943626 0.000000 67.458984 c +h +85.287888 5.699493 m +90.160583 5.699493 94.110687 9.649597 94.110687 14.522293 c +94.110687 19.394989 90.160591 23.345093 85.287888 23.345093 c +62.548641 23.345093 44.114834 41.778900 44.114838 64.518150 c +44.114838 69.390846 40.164738 73.340942 35.292042 73.340950 c +30.419344 73.340950 26.469246 69.390846 26.469244 64.518150 c +26.469242 32.033508 52.803246 5.699493 85.287888 5.699493 c +h +138.224564 99.809158 m +143.097260 99.809158 147.047363 95.859062 147.047363 90.986359 c +147.047363 58.501717 120.713348 32.167717 88.228706 32.167717 c +83.356010 32.167717 79.405914 36.117813 79.405914 40.990517 c +79.405914 45.863213 83.356010 49.813309 88.228706 49.813309 c +110.967957 49.813309 129.401764 68.247116 129.401764 90.986366 c +129.401764 95.859062 133.351868 99.809158 138.224564 99.809158 c +h +/Pattern cs +/P1 scn +f* +n + +endstream +endobj + +16 0 obj + 1730 +endobj + +17 0 obj + << /Pattern << /P2 << /Matrix [ -0.000244 -111.023438 111.023438 -0.000244 -74.546875 183.523438 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 1 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> + /P1 << /Matrix [ 50.000004 -189.000000 189.000000 50.000004 -170.635254 201.984863 ] + /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] + /ColorSpace /DeviceRGB + /Function 3 0 R + /Domain [ 0.000000 1.000000 ] + /ShadingType 2 + /Extend [ true true ] + >> + /PatternType 2 + /Type /Pattern + >> + >> + /ExtGState << /E6 << /ca 0.610000 >> + /E4 << /SMask << /Type /Mask + /G 11 0 R + /S /Luminosity + >> + /Type /ExtGState + >> + /E2 << /ca 0.800000 >> + /E5 << /SMask << /Type /Mask + /G 5 0 R + /S /Alpha + /TR 7 0 R + >> + /Type /ExtGState + >> + /E3 << /SMask << /Type /Mask + /G 15 0 R + /S /Luminosity + >> + /Type /ExtGState + >> + /E1 << /ca 0.200000 >> + >> + >> +endobj + +18 0 obj + << /Length 19 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +/E1 gs +1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm +0.000000 0.000000 0.000000 scn +159.913452 17.098709 m +145.055084 9.098907 128.057648 4.559586 110.000000 4.559586 c +91.942352 4.559586 74.944916 9.098907 60.086544 17.098709 c +137.930328 17.098709 l +159.913452 17.098709 l +h +167.584641 21.658295 m +137.930328 21.658295 l +52.415359 21.658295 l +40.155777 29.665894 29.665287 40.156479 21.657787 52.416138 c +21.657787 52.927414 l +21.657787 53.459167 l +21.657787 53.991440 l +21.657787 54.524216 l +21.657787 55.057510 l +21.657787 55.591293 l +21.657787 56.125565 l +21.657787 56.660309 l +21.657787 57.195526 l +21.657787 57.731201 l +21.657787 58.267334 l +21.657787 58.803894 l +21.657787 59.340897 l +21.657787 59.878326 l +21.657787 60.416183 l +21.657787 60.954437 l +21.657787 61.493088 l +21.657787 62.032135 l +21.657787 62.571564 l +21.657787 63.111374 l +21.657787 63.651535 l +21.657787 64.192062 l +21.657787 64.732941 l +21.657787 65.274155 l +21.657787 65.815704 l +21.657787 66.357559 l +21.657787 66.899750 l +21.657787 67.442230 l +21.657787 67.985016 l +21.657787 68.528091 l +21.657787 69.071442 l +21.657787 69.615067 l +21.657787 70.158951 l +21.657787 70.703094 l +21.657787 71.247467 l +21.657787 71.792099 l +21.657787 72.336945 l +21.657787 72.882019 l +21.657787 73.427292 l +21.657787 73.972778 l +21.657787 74.518448 l +21.657787 75.064301 l +21.657787 75.610336 l +21.657787 76.156540 l +21.657787 76.702911 l +21.657787 77.249420 l +21.657787 77.796082 l +21.657787 78.342865 l +21.657787 78.889786 l +21.657787 79.436813 l +21.657787 79.983948 l +21.657787 80.531189 l +21.657787 81.078522 l +21.657787 81.625931 l +21.657787 82.173416 l +21.657787 82.720963 l +21.657787 83.268570 l +21.657787 83.816208 l +21.657787 84.363907 l +21.657787 84.911621 l +21.657787 85.459366 l +21.657787 86.007126 l +21.657787 86.554886 l +21.657787 87.102646 l +21.657787 87.650391 l +21.657787 88.198105 l +21.657787 88.745804 l +21.657787 89.293457 l +21.657787 89.841064 l +21.657787 90.388611 l +21.657787 90.936096 l +21.657787 91.483521 l +21.657787 92.030853 l +21.657787 92.578094 l +21.657787 93.125237 l +21.657787 93.672272 l +21.657787 94.219193 l +21.657787 94.765991 l +21.657787 95.312660 l +21.657787 95.859177 l +21.657787 96.405548 l +21.657787 96.951767 l +21.657787 97.497810 l +21.657787 98.043678 l +21.657787 98.589363 l +21.657787 99.134857 l +21.657787 99.680145 l +21.657787 100.225227 l +21.657787 100.770088 l +21.657787 101.314720 l +21.657787 101.859123 l +21.657787 102.403275 l +21.657787 102.947174 l +21.657787 103.490807 l +21.657787 104.034180 l +21.657787 104.577263 l +21.657787 105.120064 l +21.657787 105.662567 l +21.657787 106.204765 l +21.657787 106.746651 l +21.657787 107.288216 l +21.657787 107.829453 l +21.657787 108.370338 l +21.657787 108.910889 l +21.657787 109.451080 l +21.657787 109.990898 l +21.657787 110.530350 l +21.657787 111.069420 l +21.657787 111.608093 l +21.657787 112.146378 l +21.657787 112.684242 l +21.657787 113.221695 l +21.657787 113.758728 l +21.657787 114.295319 l +21.657787 114.831474 l +21.657787 115.367172 l +21.657787 115.902412 l +21.657787 116.437187 l +21.657787 116.971481 l +21.657787 117.505295 l +21.657787 118.038612 l +21.657787 118.571426 l +21.657787 119.103729 l +21.657787 119.635513 l +21.657787 120.166763 l +21.657787 120.697487 l +21.657787 121.227654 l +21.657787 121.757271 l +21.657787 122.286331 l +21.657787 122.814812 l +21.657787 123.342720 l +21.657787 123.870033 l +21.657787 124.396751 l +21.657787 124.922867 l +21.657787 125.448364 l +21.657787 125.973236 l +21.657787 126.497482 l +21.657787 127.021088 l +21.657787 127.544044 l +21.657787 128.066345 l +21.657787 128.587982 l +21.657787 129.108932 l +21.657787 129.629211 l +21.657787 130.148788 l +21.657787 130.667664 l +21.657787 131.185852 l +21.657787 131.703308 l +21.657787 132.220032 l +21.657787 132.736023 l +21.657787 133.251282 l +21.657787 133.765778 l +21.657787 134.279510 l +21.657787 134.792480 l +21.657787 135.304688 l +21.657787 135.816086 l +21.657787 136.326691 l +21.657787 136.836517 l +21.657787 137.345505 l +21.657787 137.853683 l +21.657787 138.361023 l +21.657787 138.867538 l +21.657787 139.373199 l +21.657787 139.878021 l +21.657787 140.381958 l +21.657787 140.885025 l +21.657787 141.387207 l +21.657787 141.888519 l +21.657787 142.388916 l +21.657787 142.888428 l +21.657787 143.386993 l +21.657787 143.884659 l +21.657787 144.381378 l +21.657787 144.877167 l +21.657787 145.372009 l +21.657787 145.865891 l +21.657787 146.358795 l +21.657787 146.850739 l +21.657787 147.341675 l +21.657787 147.831635 l +21.657787 148.320602 l +21.657787 148.808548 l +21.657787 149.295471 l +21.657787 149.781387 l +21.657787 150.266251 l +21.657787 150.750076 l +21.657787 151.232849 l +21.657787 151.714554 l +21.657787 152.195190 l +21.657787 152.674744 l +21.657787 153.153229 l +21.657787 153.630615 l +21.657787 154.106873 l +21.657787 154.582047 l +21.657787 155.056091 l +21.657787 155.528992 l +21.657787 156.000763 l +21.657787 156.471390 l +21.657787 156.940857 l +21.657787 157.409164 l +21.657787 157.876297 l +21.657787 158.342239 l +21.657787 158.807007 l +21.657787 159.270569 l +21.657787 159.732910 l +21.657787 160.194061 l +21.657787 160.653961 l +21.657787 161.112640 l +21.657787 161.570084 l +21.657787 162.026276 l +21.657787 162.481201 l +21.657787 162.934860 l +21.657787 163.387238 l +21.657787 163.838348 l +21.657787 164.288147 l +21.657787 164.736649 l +21.657787 165.183838 l +21.657787 165.629730 l +21.657787 166.074265 l +21.657787 166.517487 l +21.657787 166.959351 l +21.657787 167.399857 l +21.657787 167.583862 l +29.665291 179.843521 40.155785 190.334106 52.415375 198.341705 c +137.930328 198.341705 l +167.584641 198.341705 l +179.844238 190.334106 190.334717 179.843521 198.342224 167.583847 c +198.342224 167.340759 l +198.342224 166.892822 l +198.342224 166.443497 l +198.342224 165.992783 l +198.342224 165.540695 l +198.342224 165.087234 l +198.342224 164.632416 l +198.342224 164.176239 l +198.342224 163.718735 l +198.342224 163.259888 l +198.342224 162.799728 l +198.342224 162.338257 l +198.342224 161.875473 l +198.342224 161.411407 l +198.342224 160.946045 l +198.342224 160.479401 l +198.342224 160.011505 l +198.342224 159.542328 l +198.342224 159.071930 l +198.342224 158.600266 l +198.342224 158.127380 l +198.342224 157.653275 l +198.342224 157.177963 l +198.342224 156.701431 l +198.342224 156.223724 l +198.342224 155.744812 l +198.342224 155.264740 l +198.342224 154.783478 l +198.342224 154.301086 l +198.342224 153.817535 l +198.342224 153.332825 l +198.342224 152.847015 l +198.342224 152.360062 l +198.342224 151.872009 l +198.342224 151.382843 l +198.342224 150.892578 l +198.342224 150.401245 l +198.342224 149.908813 l +198.342224 149.415344 l +198.342224 148.920807 l +198.342224 148.425201 l +198.342224 147.928574 l +198.342224 147.430908 l +198.342224 146.932220 l +198.342224 146.432526 l +198.342224 145.931824 l +198.342224 145.430145 l +198.342224 144.927460 l +198.342224 144.423798 l +198.342224 143.919189 l +198.342224 143.413605 l +198.342224 142.907074 l +198.342224 142.399628 l +198.342224 141.891220 l +198.342224 141.381897 l +198.342224 140.871674 l +198.342224 140.360550 l +198.342224 139.848511 l +198.342224 139.335602 l +198.342224 138.821823 l +198.342224 138.307175 l +198.342224 137.791656 l +198.342224 137.275299 l +198.342224 136.758118 l +198.342224 136.240082 l +198.342224 135.721237 l +198.342224 135.201584 l +198.342224 134.681122 l +198.342224 134.159866 l +198.342224 133.637817 l +198.342224 133.115021 l +198.342224 132.591431 l +198.342224 132.067108 l +198.342224 131.542023 l +198.342224 131.016190 l +198.342224 130.489639 l +198.342224 129.962372 l +198.342224 129.434387 l +198.342224 128.905701 l +198.342224 128.376312 l +198.342224 127.846245 l +198.342224 127.315514 l +198.342224 126.784103 l +198.342224 126.252045 l +198.342224 125.719337 l +198.342224 125.185989 l +198.342224 124.652016 l +198.342224 124.117416 l +198.342224 123.582207 l +198.342224 123.046402 l +198.342224 122.509995 l +198.342224 121.973015 l +198.342224 121.435448 l +198.342224 120.897324 l +198.342224 120.358643 l +198.342224 119.819412 l +198.342224 119.279648 l +198.342224 118.739349 l +198.342224 118.198532 l +198.342224 117.657211 l +198.342224 117.115379 l +198.342224 116.573059 l +198.342224 116.030258 l +198.342224 115.486977 l +198.342224 114.943230 l +198.342224 114.399033 l +198.342224 113.854385 l +198.342224 113.309303 l +198.342224 112.763786 l +198.342224 112.217857 l +198.342224 111.671516 l +198.342224 111.124771 l +198.342224 110.577637 l +198.342224 110.030113 l +198.342224 109.482224 l +198.342224 108.933960 l +198.342224 108.385353 l +198.342224 107.836388 l +198.342224 107.287094 l +198.342224 106.737465 l +198.342224 106.187523 l +198.342224 105.637268 l +198.342224 105.086708 l +198.342224 104.535858 l +198.342224 103.984734 l +198.342224 103.433327 l +198.342224 102.881653 l +198.342224 102.329735 l +198.342224 101.777565 l +198.342224 101.225151 l +198.342224 100.672516 l +198.342224 100.119659 l +198.342224 99.566597 l +198.342224 99.013336 l +198.342224 98.459877 l +198.342224 97.906235 l +198.342224 97.352425 l +198.342224 96.798447 l +198.342224 96.244316 l +198.342224 95.690041 l +198.342224 95.135628 l +198.342224 94.581085 l +198.342224 94.026421 l +198.342224 93.471649 l +198.342224 92.916779 l +198.342224 92.361816 l +198.342224 91.806778 l +198.342224 91.251648 l +198.342224 90.696472 l +198.342224 90.141235 l +198.342224 89.585953 l +198.342224 89.030640 l +198.342224 88.475296 l +198.342224 87.919922 l +198.342224 87.364548 l +198.342224 86.809189 l +198.342224 86.253815 l +198.342224 85.698471 l +198.342224 85.143158 l +198.342224 84.587875 l +198.342224 84.032639 l +198.342224 83.477463 l +198.342224 82.922333 l +198.342224 82.367294 l +198.342224 81.812332 l +198.342224 81.257462 l +198.342224 80.702682 l +198.342224 80.148026 l +198.342224 79.593475 l +198.342224 79.039062 l +198.342224 78.484787 l +198.342224 77.930649 l +198.342224 77.376678 l +198.342224 76.822861 l +198.342224 76.269226 l +198.342224 75.715759 l +198.342224 75.162491 l +198.342224 74.609436 l +198.342224 74.056580 l +198.342224 73.503937 l +198.342224 72.951523 l +198.342224 72.399353 l +198.342224 71.847427 l +198.342224 71.295761 l +198.342224 70.744354 l +198.342224 70.193207 l +198.342224 69.642365 l +198.342224 69.091797 l +198.342224 68.541550 l +198.342224 67.991592 l +198.342224 67.441971 l +198.342224 66.892670 l +198.342224 66.343704 l +198.342224 65.795090 l +198.342224 65.246826 l +198.342224 64.698929 l +198.342224 64.151413 l +198.342224 63.604263 l +198.342224 63.057526 l +198.342224 62.511169 l +198.342224 61.965240 l +198.342224 61.419724 l +198.342224 60.874634 l +198.342224 60.329987 l +198.342224 59.785782 l +198.342224 59.242035 l +198.342224 58.698746 l +198.342224 58.155930 l +198.342224 57.613617 l +198.342224 57.071777 l +198.342224 56.530441 l +198.342224 55.989624 l +198.342224 55.449326 l +198.342224 54.909546 l +198.342224 54.370316 l +198.342224 53.831635 l +198.342224 53.293503 l +198.342224 52.755936 l +198.342224 52.416153 l +190.334717 40.156494 179.844223 29.665909 167.584641 21.658295 c +h +168.927292 17.098709 m +151.893066 6.271301 131.678909 0.000000 110.000000 0.000000 c +88.321091 0.000000 68.106926 6.271301 51.072704 17.098709 c +21.657787 17.098709 l +21.657787 17.037201 l +21.657787 16.565491 l +21.657787 16.094940 l +21.657787 15.625534 l +21.657787 15.157288 l +21.657787 14.690231 l +21.657787 14.224350 l +21.657787 13.759644 l +21.657787 13.296158 l +21.657787 12.833878 l +21.657787 12.372803 l +21.657787 11.912964 l +21.657787 11.454346 l +21.657787 10.996979 l +21.657787 10.540863 l +21.657787 10.085999 l +21.657787 9.632416 l +21.657787 9.180099 l +21.657787 8.729065 l +21.657787 8.279343 l +21.657787 7.830902 l +21.657787 7.383789 l +21.657787 6.937988 l +21.657787 6.493515 l +21.657787 6.050369 l +21.657787 5.608582 l +21.657787 5.168152 l +21.657787 4.729065 l +21.657787 4.291367 l +21.657787 3.855042 l +21.657787 3.420105 l +21.657787 2.161011 20.637089 1.140320 19.377995 1.140320 c +18.118900 1.140320 17.098202 2.161011 17.098202 3.420105 c +17.098202 3.855042 l +17.098202 4.291367 l +17.098202 4.729065 l +17.098202 5.168152 l +17.098202 5.608582 l +17.098202 6.050369 l +17.098202 6.493515 l +17.098202 6.937988 l +17.098202 7.383789 l +17.098202 7.830902 l +17.098202 8.279343 l +17.098202 8.729065 l +17.098202 9.180099 l +17.098202 9.632416 l +17.098202 10.085999 l +17.098202 10.540863 l +17.098202 10.996979 l +17.098202 11.454346 l +17.098202 11.912964 l +17.098202 12.372803 l +17.098202 12.833878 l +17.098202 13.296158 l +17.098202 13.759644 l +17.098202 14.224350 l +17.098202 14.690231 l +17.098202 15.157288 l +17.098202 15.625534 l +17.098202 16.094940 l +17.098202 16.565491 l +17.098202 17.037201 l +17.098202 17.098709 l +3.419617 17.098709 l +2.160522 17.098709 1.139816 18.119415 1.139816 19.378510 c +1.139816 20.637604 2.160522 21.658295 3.419617 21.658295 c +17.098202 21.658295 l +17.098202 21.815521 l +17.098202 22.299286 l +17.098202 22.784088 l +17.098202 23.269943 l +17.098202 23.756805 l +17.098202 24.244705 l +17.098202 24.733612 l +17.098202 25.223511 l +17.098202 25.714401 l +17.098202 26.206284 l +17.098202 26.699142 l +17.098202 27.192963 l +17.098202 27.687759 l +17.098202 28.183487 l +17.098202 28.680161 l +17.098202 29.177765 l +17.098202 29.676300 l +17.098202 30.175751 l +17.098202 30.676102 l +17.098202 31.177353 l +17.098202 31.679489 l +17.098202 32.182510 l +17.098202 32.686417 l +17.098202 33.191177 l +17.098202 33.696793 l +17.098202 34.203247 l +17.098202 34.710556 l +17.098202 35.218689 l +17.098202 35.727631 l +17.098202 36.237396 l +17.098202 36.747971 l +17.098202 37.259323 l +17.098202 37.771484 l +17.098202 38.284409 l +17.098202 38.798111 l +17.098202 39.312561 l +17.098202 39.827774 l +17.098202 40.343735 l +17.098202 40.860413 l +17.098202 41.377838 l +17.098202 41.895966 l +17.098202 42.414810 l +17.098202 42.934357 l +17.098202 43.454590 l +17.098202 43.975510 l +17.098202 44.497101 l +17.098202 45.019363 l +17.098202 45.542282 l +17.098202 46.065857 l +17.098202 46.590057 l +17.098202 47.114899 l +17.098202 47.640366 l +17.098202 48.166443 l +17.098202 48.693130 l +17.098202 49.220413 l +17.098202 49.748291 l +17.098202 50.276733 l +17.098202 50.805771 l +17.098202 51.073502 l +6.271109 68.107559 0.000000 88.321426 0.000000 110.000000 c +0.000000 131.678574 6.271109 151.892456 17.098202 168.926498 c +17.098202 169.148193 l +17.098202 169.581818 l +17.098202 170.014023 l +17.098202 170.444824 l +17.098202 170.874207 l +17.098202 171.302139 l +17.098202 171.728638 l +17.098202 172.153702 l +17.098202 172.577301 l +17.098202 172.999435 l +17.098202 173.420105 l +17.098202 173.839279 l +17.098202 174.256958 l +17.098202 174.673157 l +17.098202 175.087830 l +17.098202 175.500992 l +17.098202 175.912628 l +17.098202 176.322739 l +17.098202 176.731293 l +17.098202 177.138306 l +17.098202 177.543762 l +17.098202 177.947632 l +17.098202 178.349945 l +17.098202 178.750656 l +17.098202 179.149780 l +17.098202 179.547302 l +17.098202 179.943207 l +17.098202 180.337509 l +17.098202 180.730164 l +17.098202 181.121185 l +17.098202 181.510574 l +17.098202 181.898285 l +17.098202 182.284363 l +17.098202 182.668747 l +17.098202 183.051453 l +17.098202 183.432480 l +17.098202 183.811798 l +17.098202 184.189423 l +17.098202 184.565323 l +17.098202 184.939499 l +17.098202 185.311951 l +17.098202 185.682663 l +17.098202 186.051620 l +17.098202 186.418823 l +17.098202 186.784256 l +17.098202 187.147919 l +17.098202 187.509796 l +17.098202 187.869873 l +17.098202 188.228165 l +17.098202 188.584641 l +17.098202 188.939301 l +17.098202 189.292145 l +17.098202 189.643127 l +17.098202 189.992294 l +17.098202 190.339600 l +17.098202 190.685028 l +17.098202 191.028610 l +17.098202 191.370300 l +17.098202 191.710114 l +17.098202 192.048019 l +17.098202 192.384033 l +17.098202 192.718124 l +17.098202 193.050308 l +17.098202 193.380554 l +17.098202 193.708862 l +17.098202 194.035233 l +17.098202 194.359634 l +17.098202 194.682083 l +17.098202 195.002548 l +17.098202 195.321045 l +17.098202 195.637543 l +17.098202 195.952042 l +17.098202 196.264542 l +17.098202 196.575027 l +17.098202 196.883484 l +17.098202 197.189896 l +17.098202 197.494293 l +17.098202 197.796616 l +17.098202 198.096893 l +17.098202 198.341721 l +3.419617 198.341721 l +2.160522 198.341721 1.139816 199.362411 1.139816 200.621506 c +1.139816 201.880600 2.160522 202.901306 3.419617 202.901306 c +17.098202 202.901306 l +17.098202 203.140076 l +17.098202 203.399612 l +17.098202 203.656921 l +17.098202 203.911987 l +17.098202 204.164795 l +17.098202 204.415359 l +17.098202 204.663651 l +17.098202 204.909683 l +17.098202 205.153427 l +17.098202 205.394867 l +17.098202 205.634033 l +17.098202 205.870865 l +17.098202 206.105408 l +17.098202 206.337601 l +17.098202 206.567474 l +17.098202 206.794998 l +17.098202 207.020187 l +17.098202 207.242996 l +17.098202 207.463455 l +17.098202 207.681534 l +17.098202 207.897217 l +17.098202 208.110519 l +17.098202 208.321411 l +17.098202 208.529892 l +17.098202 208.735962 l +17.098202 208.939590 l +17.098202 209.140793 l +17.098202 209.339554 l +17.098202 209.535858 l +17.098202 209.729691 l +17.098202 209.921051 l +17.098202 210.109940 l +17.098202 210.296341 l +17.098202 210.480255 l +17.098202 210.661652 l +17.098202 210.840530 l +17.098202 211.016891 l +17.098202 211.190735 l +17.098202 211.362015 l +17.098202 211.530762 l +17.098202 211.696945 l +17.098202 211.860565 l +17.098202 212.021622 l +17.098202 212.180084 l +17.098202 212.335953 l +17.098202 212.489227 l +17.098202 212.639893 l +17.098202 212.787933 l +17.098202 212.933365 l +17.098202 213.076157 l +17.098202 213.216293 l +17.098202 213.353790 l +17.098202 213.488617 l +17.098202 213.620789 l +17.098202 213.750275 l +17.098202 213.877075 l +17.098202 214.001190 l +17.098202 214.122589 l +17.098202 214.241287 l +17.098202 214.357254 l +17.098202 214.470505 l +17.098202 214.581009 l +17.098202 214.688782 l +17.098202 214.793777 l +17.098202 214.896027 l +17.098202 214.995499 l +17.098202 215.092194 l +17.098202 215.186096 l +17.098202 215.277191 l +17.098202 215.365494 l +17.098202 215.450989 l +17.098202 215.533646 l +17.098202 215.613464 l +17.098202 215.690460 l +17.098202 215.764603 l +17.098202 215.835876 l +17.098202 215.904297 l +17.098202 215.969833 l +17.098202 216.032501 l +17.098202 216.092270 l +17.098202 216.149124 l +17.098202 216.203079 l +17.098202 216.254120 l +17.098202 216.302231 l +17.098202 216.347412 l +17.098202 216.389648 l +17.098202 216.428925 l +17.098202 216.465240 l +17.098202 216.498596 l +17.098202 216.528961 l +17.098202 216.556351 l +17.098202 216.580734 l +17.098202 217.839844 18.118900 218.860535 19.377995 218.860535 c +20.637089 218.860535 21.657787 217.839844 21.657787 216.580734 c +21.657787 216.556351 l +21.657787 216.528961 l +21.657787 216.498596 l +21.657787 216.465240 l +21.657787 216.428925 l +21.657787 216.389648 l +21.657787 216.347412 l +21.657787 216.302231 l +21.657787 216.254120 l +21.657787 216.203079 l +21.657787 216.149124 l +21.657787 216.092270 l +21.657787 216.032501 l +21.657787 215.969833 l +21.657787 215.904297 l +21.657787 215.835876 l +21.657787 215.764603 l +21.657787 215.690460 l +21.657787 215.613464 l +21.657787 215.533646 l +21.657787 215.450989 l +21.657787 215.365494 l +21.657787 215.277191 l +21.657787 215.186096 l +21.657787 215.092194 l +21.657787 214.995499 l +21.657787 214.896027 l +21.657787 214.793777 l +21.657787 214.688782 l +21.657787 214.581009 l +21.657787 214.470505 l +21.657787 214.357254 l +21.657787 214.241287 l +21.657787 214.122589 l +21.657787 214.001190 l +21.657787 213.877075 l +21.657787 213.750275 l +21.657787 213.620789 l +21.657787 213.488617 l +21.657787 213.353790 l +21.657787 213.216293 l +21.657787 213.076157 l +21.657787 212.933365 l +21.657787 212.787933 l +21.657787 212.639893 l +21.657787 212.489227 l +21.657787 212.335953 l +21.657787 212.180084 l +21.657787 212.021622 l +21.657787 211.860565 l +21.657787 211.696945 l +21.657787 211.530762 l +21.657787 211.362015 l +21.657787 211.190735 l +21.657787 211.016891 l +21.657787 210.840530 l +21.657787 210.661652 l +21.657787 210.480255 l +21.657787 210.296341 l +21.657787 210.109940 l +21.657787 209.921051 l +21.657787 209.729691 l +21.657787 209.535858 l +21.657787 209.339554 l +21.657787 209.140793 l +21.657787 208.939590 l +21.657787 208.735962 l +21.657787 208.529892 l +21.657787 208.321411 l +21.657787 208.110519 l +21.657787 207.897217 l +21.657787 207.681534 l +21.657787 207.463455 l +21.657787 207.242996 l +21.657787 207.020187 l +21.657787 206.794998 l +21.657787 206.567474 l +21.657787 206.337601 l +21.657787 206.105408 l +21.657787 205.870865 l +21.657787 205.634033 l +21.657787 205.394867 l +21.657787 205.153427 l +21.657787 204.909683 l +21.657787 204.663651 l +21.657787 204.415359 l +21.657787 204.164795 l +21.657787 203.911987 l +21.657787 203.656921 l +21.657787 203.399612 l +21.657787 203.140076 l +21.657787 202.901306 l +51.072716 202.901306 l +68.106934 213.728699 88.321098 220.000000 110.000000 220.000000 c +131.678909 220.000000 151.893066 213.728699 168.927292 202.901291 c +193.747787 202.901291 l +198.342224 202.901291 l +198.342224 202.995255 l +198.342224 203.259918 l +198.342224 203.522263 l +198.342224 203.782303 l +198.342224 204.040024 l +198.342224 204.295395 l +198.342224 204.548431 l +198.342224 204.799118 l +198.342224 205.047440 l +198.342224 205.293381 l +198.342224 205.536957 l +198.342224 205.778137 l +198.342224 206.016922 l +198.342224 206.253296 l +198.342224 206.487244 l +198.342224 206.718781 l +198.342224 206.947876 l +198.342224 207.174530 l +198.342224 207.398727 l +198.342224 207.620468 l +198.342224 207.839737 l +198.342224 208.056519 l +198.342224 208.270813 l +198.342224 208.482620 l +198.342224 208.691910 l +198.342224 208.898682 l +198.342224 209.102936 l +198.342224 209.304642 l +198.342224 209.503815 l +198.342224 209.700424 l +198.342224 209.894470 l +198.342224 210.085953 l +198.342224 210.274857 l +198.342224 210.461166 l +198.342224 210.644867 l +198.342224 210.825974 l +198.342224 211.004456 l +198.342224 211.180313 l +198.342224 211.353546 l +198.342224 211.524124 l +198.342224 211.692047 l +198.342224 211.857315 l +198.342224 212.019897 l +198.342224 212.179810 l +198.342224 212.337021 l +198.342224 212.491547 l +198.342224 212.643356 l +198.342224 212.792450 l +198.342224 212.938812 l +198.342224 213.082443 l +198.342224 213.223343 l +198.342224 213.361465 l +198.342224 213.496841 l +198.342224 213.629440 l +198.342224 213.759247 l +198.342224 213.886276 l +198.342224 214.010498 l +198.342224 214.131912 l +198.342224 214.250519 l +198.342224 214.366287 l +198.342224 214.479218 l +198.342224 214.589310 l +198.342224 214.696548 l +198.342224 214.800919 l +198.342224 214.902420 l +198.342224 215.001038 l +198.342224 215.096771 l +198.342224 215.189606 l +198.342224 215.279526 l +198.342224 215.366516 l +198.342224 215.450592 l +198.342224 215.531723 l +198.342224 215.609924 l +198.342224 215.685165 l +198.342224 215.757431 l +198.342224 215.826736 l +198.342224 215.893051 l +198.342224 215.956375 l +198.342224 216.016708 l +198.342224 216.074020 l +198.342224 216.128326 l +198.342224 216.179596 l +198.342224 216.227829 l +198.342224 216.273010 l +198.342224 216.315155 l +198.342224 216.354218 l +198.342224 216.390213 l +198.342224 216.423126 l +198.342224 216.452957 l +198.342224 216.479675 l +198.342224 216.503296 l +198.342224 216.523788 l +198.342224 216.541153 l +198.342224 216.555374 l +198.342224 216.566467 l +198.342224 216.574387 l +198.342224 216.579147 l +198.342224 216.580215 198.342224 216.580734 200.622009 216.580734 c +202.901794 216.580734 202.901794 216.580215 202.901794 216.579147 c +202.901794 216.574387 l +202.901794 216.566467 l +202.901794 216.555374 l +202.901794 216.541153 l +202.901794 216.523788 l +202.901794 216.503296 l +202.901794 216.479675 l +202.901794 216.452957 l +202.901794 216.423126 l +202.901794 216.390213 l +202.901794 216.354218 l +202.901794 216.315155 l +202.901794 216.273010 l +202.901794 216.227829 l +202.901794 216.179596 l +202.901794 216.128326 l +202.901794 216.074020 l +202.901794 216.016708 l +202.901794 215.956375 l +202.901794 215.893051 l +202.901794 215.826736 l +202.901794 215.757431 l +202.901794 215.685165 l +202.901794 215.609924 l +202.901794 215.531723 l +202.901794 215.450592 l +202.901794 215.366516 l +202.901794 215.279526 l +202.901794 215.189606 l +202.901794 215.096771 l +202.901794 215.001038 l +202.901794 214.902420 l +202.901794 214.800919 l +202.901794 214.696548 l +202.901794 214.589310 l +202.901794 214.479218 l +202.901794 214.366287 l +202.901794 214.250519 l +202.901794 214.131912 l +202.901794 214.010498 l +202.901794 213.886276 l +202.901794 213.759247 l +202.901794 213.629440 l +202.901794 213.496841 l +202.901794 213.361465 l +202.901794 213.223343 l +202.901794 213.082443 l +202.901794 212.938812 l +202.901794 212.792450 l +202.901794 212.643356 l +202.901794 212.491547 l +202.901794 212.337021 l +202.901794 212.179810 l +202.901794 212.019897 l +202.901794 211.857315 l +202.901794 211.692047 l +202.901794 211.524124 l +202.901794 211.353546 l +202.901794 211.180313 l +202.901794 211.004456 l +202.901794 210.825974 l +202.901794 210.644867 l +202.901794 210.461166 l +202.901794 210.274857 l +202.901794 210.085953 l +202.901794 209.894470 l +202.901794 209.700424 l +202.901794 209.503815 l +202.901794 209.304642 l +202.901794 209.102936 l +202.901794 208.898682 l +202.901794 208.691910 l +202.901794 208.482620 l +202.901794 208.270813 l +202.901794 208.056519 l +202.901794 207.839737 l +202.901794 207.620468 l +202.901794 207.398727 l +202.901794 207.174530 l +202.901794 206.947876 l +202.901794 206.718781 l +202.901794 206.487244 l +202.901794 206.253296 l +202.901794 206.016922 l +202.901794 205.778137 l +202.901794 205.536957 l +202.901794 205.293381 l +202.901794 205.047440 l +202.901794 204.799118 l +202.901794 204.548431 l +202.901794 204.295395 l +202.901794 204.040024 l +202.901794 203.782303 l +202.901794 203.522263 l +202.901794 203.259918 l +202.901794 202.995255 l +202.901794 202.901291 l +210.475876 202.901291 l +215.004608 202.901291 l +216.180130 202.901291 l +216.479431 202.901291 l +216.554932 202.901291 l +216.573898 202.901291 l +216.578644 202.901291 l +216.579697 202.901291 216.580231 202.901291 216.580231 200.621506 c +216.580231 198.341705 216.579697 198.341705 216.578644 198.341705 c +216.573898 198.341705 l +216.554932 198.341705 l +216.479431 198.341705 l +216.180130 198.341705 l +215.004608 198.341705 l +210.475876 198.341705 l +202.901794 198.341705 l +202.901794 198.151825 l +202.901794 197.847198 l +202.901794 197.540436 l +202.901794 197.231537 l +202.901794 196.920532 l +202.901794 196.607422 l +202.901794 196.292206 l +202.901794 195.974915 l +202.901794 195.655533 l +202.901794 195.334076 l +202.901794 195.010574 l +202.901794 194.685013 l +202.901794 194.357407 l +202.901794 194.027771 l +202.901794 193.696106 l +202.901794 193.362427 l +202.901794 193.026749 l +202.901794 192.689072 l +202.901794 192.349396 l +202.901794 192.007751 l +202.901794 191.664139 l +202.901794 191.318558 l +202.901794 190.971024 l +202.901794 190.621552 l +202.901794 190.270142 l +202.901794 189.916824 l +202.901794 189.561569 l +202.901794 189.204422 l +202.901794 188.845383 l +202.901794 188.484436 l +202.901794 188.121628 l +202.901794 187.756943 l +202.901794 187.390396 l +202.901794 187.022003 l +202.901794 186.651764 l +202.901794 186.279694 l +202.901794 185.905807 l +202.901794 185.530090 l +202.901794 185.152588 l +202.901794 184.773270 l +202.901794 184.392181 l +202.901794 184.009308 l +202.901794 183.624664 l +202.901794 183.238251 l +202.901794 182.850098 l +202.901794 182.460205 l +202.901794 182.068573 l +202.901794 181.675217 l +202.901794 181.280151 l +202.901794 180.883362 l +202.901794 180.484894 l +202.901794 180.084747 l +202.901794 179.682907 l +202.901794 179.279404 l +202.901794 178.874237 l +202.901794 178.467422 l +202.901794 178.058960 l +202.901794 177.648880 l +202.901794 177.237167 l +202.901794 176.823837 l +202.901794 176.408905 l +202.901794 175.992386 l +202.901794 175.574280 l +202.901794 175.154587 l +202.901794 174.733322 l +202.901794 174.310501 l +202.901794 173.886139 l +202.901794 173.460220 l +202.901794 173.032776 l +202.901794 172.603821 l +202.901794 172.173340 l +202.901794 171.741348 l +202.901794 171.307877 l +202.901794 170.872910 l +202.901794 170.436462 l +202.901794 169.998550 l +202.901794 169.559174 l +202.901794 169.118362 l +202.901794 168.926514 l +213.728897 151.892456 220.000000 131.678574 220.000000 110.000000 c +220.000000 88.321426 213.728897 68.107544 202.901794 51.073486 c +202.901794 50.611511 l +202.901794 50.076904 l +202.901794 49.542923 l +202.901794 49.009567 l +202.901794 48.476852 l +202.901794 47.944794 l +202.901794 47.413376 l +202.901794 46.882629 l +202.901794 46.352570 l +202.901794 45.823181 l +202.901794 45.294479 l +202.901794 44.766495 l +202.901794 44.239212 l +202.901794 43.712646 l +202.901794 43.186829 l +202.901794 42.661728 l +202.901794 42.137390 l +202.901794 41.613800 l +202.901794 41.090973 l +202.901794 40.568939 l +202.901794 40.047668 l +202.901794 39.527206 l +202.901794 39.007538 l +202.901794 38.488678 l +202.901794 37.970657 l +202.901794 37.453445 l +202.901794 36.937088 l +202.901794 36.421570 l +202.901794 35.906906 l +202.901794 35.393112 l +202.901794 34.880188 l +202.901794 34.368164 l +202.901794 33.857025 l +202.901794 33.346786 l +202.901794 32.837463 l +202.901794 32.329056 l +202.901794 31.821579 l +202.901794 31.315048 l +202.901794 30.809464 l +202.901794 30.304825 l +202.901794 29.801163 l +202.901794 29.298477 l +202.901794 28.796783 l +202.901794 28.296066 l +202.901794 27.796356 l +202.901794 27.297668 l +202.901794 26.800003 l +202.901794 26.303360 l +202.901794 25.807755 l +202.901794 25.313202 l +202.901794 24.819702 l +202.901794 24.327286 l +202.901794 23.835922 l +202.901794 23.345657 l +202.901794 22.856491 l +202.901794 22.368423 l +202.901794 21.881454 l +202.901794 21.658279 l +210.475876 21.658279 l +215.004608 21.658279 l +216.180130 21.658279 l +216.479431 21.658279 l +216.554932 21.658279 l +216.573898 21.658279 l +216.578644 21.658279 l +216.579697 21.658279 216.580231 21.658279 216.580231 19.378494 c +216.580231 17.098694 216.579697 17.098709 216.578644 17.098709 c +216.573898 17.098709 l +216.554932 17.098709 l +216.479431 17.098709 l +216.180130 17.098709 l +215.004608 17.098709 l +210.475876 17.098709 l +202.901794 17.098709 l +202.901794 17.075089 l +202.901794 16.600967 l +202.901794 16.128067 l +202.901794 15.656403 l +202.901794 15.185974 l +202.901794 14.716812 l +202.901794 14.248886 l +202.901794 13.782242 l +202.901794 13.316864 l +202.901794 12.852783 l +202.901794 12.389984 l +202.901794 11.928497 l +202.901794 11.468323 l +202.901794 11.009476 l +202.901794 10.551941 l +202.901794 10.095764 l +202.901794 9.640930 l +202.901794 9.187469 l +202.901794 8.735352 l +202.901794 8.284637 l +202.901794 7.835281 l +202.901794 7.387344 l +202.901794 6.940796 l +202.901794 6.495667 l +202.901794 6.051956 l +202.901794 5.609695 l +202.901794 5.168854 l +202.901794 4.729477 l +202.901794 4.291550 l +202.901794 3.855087 l +202.901794 3.420105 l +202.901794 2.161011 201.881104 1.140320 200.622009 1.140320 c +199.362915 1.140320 198.342224 2.161011 198.342224 3.420105 c +198.342224 3.855087 l +198.342224 4.291550 l +198.342224 4.729477 l +198.342224 5.168854 l +198.342224 5.609695 l +198.342224 6.051956 l +198.342224 6.495667 l +198.342224 6.940796 l +198.342224 7.387344 l +198.342224 7.835281 l +198.342224 8.284637 l +198.342224 8.735352 l +198.342224 9.187469 l +198.342224 9.640930 l +198.342224 10.095764 l +198.342224 10.551941 l +198.342224 11.009476 l +198.342224 11.468323 l +198.342224 11.928497 l +198.342224 12.389984 l +198.342224 12.852783 l +198.342224 13.316864 l +198.342224 13.782242 l +198.342224 14.248886 l +198.342224 14.716812 l +198.342224 15.185974 l +198.342224 15.656403 l +198.342224 16.128067 l +198.342224 16.600967 l +198.342224 17.075089 l +198.342224 17.098709 l +193.747787 17.098709 l +168.927292 17.098709 l +h +216.580231 19.378494 m +216.580231 21.658279 l +217.839325 21.658279 218.860016 20.637589 218.860016 19.378494 c +218.860016 18.119400 217.839325 17.098694 216.580231 17.098694 c +216.580231 19.378494 l +h +198.342224 44.447235 m +198.342224 44.239212 l +198.342224 43.712646 l +198.342224 43.186829 l +198.342224 42.661728 l +198.342224 42.137390 l +198.342224 41.613800 l +198.342224 41.090973 l +198.342224 40.568939 l +198.342224 40.047668 l +198.342224 39.527206 l +198.342224 39.007538 l +198.342224 38.488678 l +198.342224 37.970657 l +198.342224 37.453445 l +198.342224 36.937088 l +198.342224 36.421570 l +198.342224 35.906906 l +198.342224 35.393112 l +198.342224 34.880188 l +198.342224 34.368164 l +198.342224 33.857025 l +198.342224 33.346786 l +198.342224 32.837463 l +198.342224 32.329056 l +198.342224 31.821579 l +198.342224 31.315048 l +198.342224 30.809464 l +198.342224 30.304825 l +198.342224 29.801163 l +198.342224 29.298477 l +198.342224 28.796783 l +198.342224 28.296066 l +198.342224 27.796356 l +198.342224 27.297668 l +198.342224 26.800003 l +198.342224 26.303360 l +198.342224 25.807755 l +198.342224 25.313202 l +198.342224 24.819702 l +198.342224 24.327286 l +198.342224 23.835922 l +198.342224 23.345657 l +198.342224 22.856491 l +198.342224 22.368423 l +198.342224 21.881454 l +198.342224 21.658295 l +193.747787 21.658295 l +175.553467 21.658295 l +184.217926 28.098251 191.902328 35.782730 198.342224 44.447235 c +h +202.901794 60.087479 m +210.901276 74.945633 215.440414 91.942734 215.440414 110.000000 c +215.440414 128.057266 210.901276 145.054367 202.901794 159.912521 c +202.901794 159.542328 l +202.901794 159.071930 l +202.901794 158.600266 l +202.901794 158.127380 l +202.901794 157.653275 l +202.901794 157.177963 l +202.901794 156.701431 l +202.901794 156.223724 l +202.901794 155.744812 l +202.901794 155.264740 l +202.901794 154.783478 l +202.901794 154.301086 l +202.901794 153.817535 l +202.901794 153.332825 l +202.901794 152.847015 l +202.901794 152.360062 l +202.901794 151.872009 l +202.901794 151.382843 l +202.901794 150.892578 l +202.901794 150.401245 l +202.901794 149.908813 l +202.901794 149.415344 l +202.901794 148.920807 l +202.901794 148.425201 l +202.901794 147.928574 l +202.901794 147.430908 l +202.901794 146.932220 l +202.901794 146.432526 l +202.901794 145.931824 l +202.901794 145.430145 l +202.901794 144.927460 l +202.901794 144.423798 l +202.901794 143.919189 l +202.901794 143.413605 l +202.901794 142.907074 l +202.901794 142.399628 l +202.901794 141.891220 l +202.901794 141.381897 l +202.901794 140.871674 l +202.901794 140.360550 l +202.901794 139.848511 l +202.901794 139.335602 l +202.901794 138.821823 l +202.901794 138.307175 l +202.901794 137.791656 l +202.901794 137.275299 l +202.901794 136.758118 l +202.901794 136.240082 l +202.901794 135.721237 l +202.901794 135.201584 l +202.901794 134.681122 l +202.901794 134.159866 l +202.901794 133.637817 l +202.901794 133.115021 l +202.901794 132.591431 l +202.901794 132.067108 l +202.901794 131.542023 l +202.901794 131.016190 l +202.901794 130.489639 l +202.901794 129.962372 l +202.901794 129.434387 l +202.901794 128.905701 l +202.901794 128.376312 l +202.901794 127.846245 l +202.901794 127.315514 l +202.901794 126.784103 l +202.901794 126.252045 l +202.901794 125.719337 l +202.901794 125.185989 l +202.901794 124.652016 l +202.901794 124.117416 l +202.901794 123.582207 l +202.901794 123.046402 l +202.901794 122.509995 l +202.901794 121.973015 l +202.901794 121.435448 l +202.901794 120.897324 l +202.901794 120.358643 l +202.901794 119.819412 l +202.901794 119.279648 l +202.901794 118.739349 l +202.901794 118.198532 l +202.901794 117.657211 l +202.901794 117.115379 l +202.901794 116.573059 l +202.901794 116.030258 l +202.901794 115.486977 l +202.901794 114.943230 l +202.901794 114.399033 l +202.901794 113.854385 l +202.901794 113.309303 l +202.901794 112.763786 l +202.901794 112.217857 l +202.901794 111.671516 l +202.901794 111.124771 l +202.901794 110.577637 l +202.901794 110.030113 l +202.901794 109.482224 l +202.901794 108.933960 l +202.901794 108.385353 l +202.901794 107.836388 l +202.901794 107.287094 l +202.901794 106.737465 l +202.901794 106.187523 l +202.901794 105.637268 l +202.901794 105.086708 l +202.901794 104.535858 l +202.901794 103.984734 l +202.901794 103.433327 l +202.901794 102.881653 l +202.901794 102.329735 l +202.901794 101.777565 l +202.901794 101.225151 l +202.901794 100.672516 l +202.901794 100.119659 l +202.901794 99.566597 l +202.901794 99.013336 l +202.901794 98.459877 l +202.901794 97.906235 l +202.901794 97.352425 l +202.901794 96.798447 l +202.901794 96.244316 l +202.901794 95.690041 l +202.901794 95.135628 l +202.901794 94.581085 l +202.901794 94.026421 l +202.901794 93.471649 l +202.901794 92.916779 l +202.901794 92.361816 l +202.901794 91.806778 l +202.901794 91.251648 l +202.901794 90.696472 l +202.901794 90.141235 l +202.901794 89.585953 l +202.901794 89.030640 l +202.901794 88.475296 l +202.901794 87.919922 l +202.901794 87.364548 l +202.901794 86.809189 l +202.901794 86.253815 l +202.901794 85.698471 l +202.901794 85.143158 l +202.901794 84.587875 l +202.901794 84.032639 l +202.901794 83.477463 l +202.901794 82.922333 l +202.901794 82.367294 l +202.901794 81.812332 l +202.901794 81.257462 l +202.901794 80.702682 l +202.901794 80.148026 l +202.901794 79.593475 l +202.901794 79.039062 l +202.901794 78.484787 l +202.901794 77.930649 l +202.901794 77.376678 l +202.901794 76.822861 l +202.901794 76.269226 l +202.901794 75.715759 l +202.901794 75.162491 l +202.901794 74.609436 l +202.901794 74.056580 l +202.901794 73.503937 l +202.901794 72.951523 l +202.901794 72.399353 l +202.901794 71.847427 l +202.901794 71.295761 l +202.901794 70.744354 l +202.901794 70.193207 l +202.901794 69.642365 l +202.901794 69.091797 l +202.901794 68.541550 l +202.901794 67.991592 l +202.901794 67.441971 l +202.901794 66.892670 l +202.901794 66.343704 l +202.901794 65.795090 l +202.901794 65.246826 l +202.901794 64.698929 l +202.901794 64.151413 l +202.901794 63.604263 l +202.901794 63.057526 l +202.901794 62.511169 l +202.901794 61.965240 l +202.901794 61.419724 l +202.901794 60.874634 l +202.901794 60.329987 l +202.901794 60.087479 l +h +198.342224 175.552765 m +198.342224 175.574280 l +198.342224 175.992386 l +198.342224 176.408905 l +198.342224 176.823837 l +198.342224 177.237167 l +198.342224 177.648880 l +198.342224 178.058960 l +198.342224 178.467422 l +198.342224 178.874237 l +198.342224 179.279404 l +198.342224 179.682907 l +198.342224 180.084747 l +198.342224 180.484894 l +198.342224 180.883362 l +198.342224 181.280151 l +198.342224 181.675217 l +198.342224 182.068573 l +198.342224 182.460205 l +198.342224 182.850098 l +198.342224 183.238251 l +198.342224 183.624664 l +198.342224 184.009308 l +198.342224 184.392181 l +198.342224 184.773270 l +198.342224 185.152588 l +198.342224 185.530090 l +198.342224 185.905807 l +198.342224 186.279694 l +198.342224 186.651764 l +198.342224 187.022003 l +198.342224 187.390396 l +198.342224 187.756943 l +198.342224 188.121628 l +198.342224 188.484436 l +198.342224 188.845383 l +198.342224 189.204422 l +198.342224 189.561569 l +198.342224 189.916824 l +198.342224 190.270142 l +198.342224 190.621552 l +198.342224 190.971024 l +198.342224 191.318558 l +198.342224 191.664139 l +198.342224 192.007751 l +198.342224 192.349396 l +198.342224 192.689072 l +198.342224 193.026749 l +198.342224 193.362427 l +198.342224 193.696106 l +198.342224 194.027771 l +198.342224 194.357407 l +198.342224 194.685013 l +198.342224 195.010574 l +198.342224 195.334076 l +198.342224 195.655533 l +198.342224 195.974915 l +198.342224 196.292206 l +198.342224 196.607422 l +198.342224 196.920532 l +198.342224 197.231537 l +198.342224 197.540436 l +198.342224 197.847198 l +198.342224 198.151825 l +198.342224 198.341705 l +193.747787 198.341705 l +175.553452 198.341705 l +184.217911 191.901749 191.902328 184.217270 198.342224 175.552765 c +h +216.580231 200.621506 m +216.580231 202.901291 l +217.839325 202.901291 218.860016 201.880600 218.860016 200.621506 c +218.860016 199.362411 217.839325 198.341705 216.580231 198.341705 c +216.580231 200.621506 l +h +200.622009 216.580734 m +198.342224 216.580734 l +198.342224 217.839844 199.362915 218.860535 200.622009 218.860535 c +201.881104 218.860535 202.901794 217.839844 202.901794 216.580734 c +200.622009 216.580734 l +h +159.913452 202.901291 m +145.055084 210.901093 128.057648 215.440414 110.000000 215.440414 c +91.942360 215.440414 74.944931 210.901093 60.086563 202.901306 c +137.930344 202.901291 l +159.913452 202.901291 l +h +44.446552 198.341721 m +21.657787 198.341721 l +21.657787 198.096893 l +21.657787 197.796616 l +21.657787 197.494293 l +21.657787 197.189896 l +21.657787 196.883484 l +21.657787 196.575027 l +21.657787 196.264542 l +21.657787 195.952042 l +21.657787 195.637543 l +21.657787 195.321045 l +21.657787 195.002548 l +21.657787 194.682083 l +21.657787 194.359634 l +21.657787 194.035233 l +21.657787 193.708862 l +21.657787 193.380554 l +21.657787 193.050308 l +21.657787 192.718124 l +21.657787 192.384033 l +21.657787 192.048019 l +21.657787 191.710114 l +21.657787 191.370300 l +21.657787 191.028610 l +21.657787 190.685028 l +21.657787 190.339600 l +21.657787 189.992294 l +21.657787 189.643127 l +21.657787 189.292145 l +21.657787 188.939301 l +21.657787 188.584641 l +21.657787 188.228165 l +21.657787 187.869873 l +21.657787 187.509796 l +21.657787 187.147919 l +21.657787 186.784256 l +21.657787 186.418823 l +21.657787 186.051620 l +21.657787 185.682663 l +21.657787 185.311951 l +21.657787 184.939499 l +21.657787 184.565323 l +21.657787 184.189423 l +21.657787 183.811798 l +21.657787 183.432480 l +21.657787 183.051453 l +21.657787 182.668747 l +21.657787 182.284363 l +21.657787 181.898285 l +21.657787 181.510574 l +21.657787 181.121185 l +21.657787 180.730164 l +21.657787 180.337509 l +21.657787 179.943207 l +21.657787 179.547302 l +21.657787 179.149780 l +21.657787 178.750656 l +21.657787 178.349945 l +21.657787 177.947632 l +21.657787 177.543762 l +21.657787 177.138306 l +21.657787 176.731293 l +21.657787 176.322739 l +21.657787 175.912628 l +21.657787 175.552780 l +28.097681 184.217285 35.782097 191.901764 44.446552 198.341721 c +h +17.098202 159.912506 m +9.098716 145.054352 4.559585 128.057266 4.559585 110.000000 c +4.559585 91.942734 9.098716 74.945648 17.098202 60.087494 c +17.098202 60.416183 l +17.098202 60.954437 l +17.098202 61.493088 l +17.098202 62.032135 l +17.098202 62.571564 l +17.098202 63.111374 l +17.098202 63.651535 l +17.098202 64.192062 l +17.098202 64.732941 l +17.098202 65.274155 l +17.098202 65.815704 l +17.098202 66.357559 l +17.098202 66.899750 l +17.098202 67.442230 l +17.098202 67.985016 l +17.098202 68.528091 l +17.098202 69.071442 l +17.098202 69.615067 l +17.098202 70.158951 l +17.098202 70.703094 l +17.098202 71.247467 l +17.098202 71.792099 l +17.098202 72.336945 l +17.098202 72.882019 l +17.098202 73.427292 l +17.098202 73.972778 l +17.098202 74.518448 l +17.098202 75.064301 l +17.098202 75.610336 l +17.098202 76.156540 l +17.098202 76.702911 l +17.098202 77.249420 l +17.098202 77.796082 l +17.098202 78.342865 l +17.098202 78.889786 l +17.098202 79.436813 l +17.098202 79.983948 l +17.098202 80.531189 l +17.098202 81.078522 l +17.098202 81.625931 l +17.098202 82.173416 l +17.098202 82.720963 l +17.098202 83.268570 l +17.098202 83.816208 l +17.098202 84.363907 l +17.098202 84.911621 l +17.098202 85.459366 l +17.098202 86.007126 l +17.098202 86.554886 l +17.098202 87.102646 l +17.098202 87.650391 l +17.098202 88.198105 l +17.098202 88.745804 l +17.098202 89.293457 l +17.098202 89.841064 l +17.098202 90.388611 l +17.098202 90.936096 l +17.098202 91.483521 l +17.098202 92.030853 l +17.098202 92.578094 l +17.098202 93.125237 l +17.098202 93.672272 l +17.098202 94.219193 l +17.098202 94.765991 l +17.098202 95.312660 l +17.098202 95.859177 l +17.098202 96.405548 l +17.098202 96.951767 l +17.098202 97.497810 l +17.098202 98.043678 l +17.098202 98.589363 l +17.098202 99.134857 l +17.098202 99.680145 l +17.098202 100.225227 l +17.098202 100.770088 l +17.098202 101.314720 l +17.098202 101.859123 l +17.098202 102.403275 l +17.098202 102.947174 l +17.098202 103.490807 l +17.098202 104.034180 l +17.098202 104.577263 l +17.098202 105.120064 l +17.098202 105.662567 l +17.098202 106.204765 l +17.098202 106.746651 l +17.098202 107.288216 l +17.098202 107.829453 l +17.098202 108.370338 l +17.098202 108.910889 l +17.098202 109.451080 l +17.098202 109.990898 l +17.098202 110.530350 l +17.098202 111.069420 l +17.098202 111.608093 l +17.098202 112.146378 l +17.098202 112.684242 l +17.098202 113.221695 l +17.098202 113.758728 l +17.098202 114.295319 l +17.098202 114.831474 l +17.098202 115.367172 l +17.098202 115.902412 l +17.098202 116.437187 l +17.098202 116.971481 l +17.098202 117.505295 l +17.098202 118.038612 l +17.098202 118.571426 l +17.098202 119.103729 l +17.098202 119.635513 l +17.098202 120.166763 l +17.098202 120.697487 l +17.098202 121.227654 l +17.098202 121.757271 l +17.098202 122.286331 l +17.098202 122.814812 l +17.098202 123.342720 l +17.098202 123.870033 l +17.098202 124.396751 l +17.098202 124.922867 l +17.098202 125.448364 l +17.098202 125.973236 l +17.098202 126.497482 l +17.098202 127.021088 l +17.098202 127.544044 l +17.098202 128.066345 l +17.098202 128.587982 l +17.098202 129.108932 l +17.098202 129.629211 l +17.098202 130.148788 l +17.098202 130.667664 l +17.098202 131.185852 l +17.098202 131.703308 l +17.098202 132.220032 l +17.098202 132.736023 l +17.098202 133.251282 l +17.098202 133.765778 l +17.098202 134.279510 l +17.098202 134.792480 l +17.098202 135.304688 l +17.098202 135.816086 l +17.098202 136.326691 l +17.098202 136.836517 l +17.098202 137.345505 l +17.098202 137.853683 l +17.098202 138.361023 l +17.098202 138.867538 l +17.098202 139.373199 l +17.098202 139.878021 l +17.098202 140.381958 l +17.098202 140.885025 l +17.098202 141.387207 l +17.098202 141.888519 l +17.098202 142.388916 l +17.098202 142.888428 l +17.098202 143.386993 l +17.098202 143.884659 l +17.098202 144.381378 l +17.098202 144.877167 l +17.098202 145.372009 l +17.098202 145.865891 l +17.098202 146.358795 l +17.098202 146.850739 l +17.098202 147.341675 l +17.098202 147.831635 l +17.098202 148.320602 l +17.098202 148.808548 l +17.098202 149.295471 l +17.098202 149.781387 l +17.098202 150.266251 l +17.098202 150.750076 l +17.098202 151.232849 l +17.098202 151.714554 l +17.098202 152.195190 l +17.098202 152.674744 l +17.098202 153.153229 l +17.098202 153.630615 l +17.098202 154.106873 l +17.098202 154.582047 l +17.098202 155.056091 l +17.098202 155.528992 l +17.098202 156.000763 l +17.098202 156.471390 l +17.098202 156.940857 l +17.098202 157.409164 l +17.098202 157.876297 l +17.098202 158.342239 l +17.098202 158.807007 l +17.098202 159.270569 l +17.098202 159.732910 l +17.098202 159.912506 l +h +21.657787 44.447220 m +21.657787 43.975510 l +21.657787 43.454590 l +21.657787 42.934357 l +21.657787 42.414810 l +21.657787 41.895966 l +21.657787 41.377838 l +21.657787 40.860413 l +21.657787 40.343735 l +21.657787 39.827774 l +21.657787 39.312561 l +21.657787 38.798111 l +21.657787 38.284409 l +21.657787 37.771484 l +21.657787 37.259323 l +21.657787 36.747971 l +21.657787 36.237396 l +21.657787 35.727631 l +21.657787 35.218689 l +21.657787 34.710556 l +21.657787 34.203247 l +21.657787 33.696793 l +21.657787 33.191177 l +21.657787 32.686417 l +21.657787 32.182510 l +21.657787 31.679489 l +21.657787 31.177353 l +21.657787 30.676102 l +21.657787 30.175751 l +21.657787 29.676300 l +21.657787 29.177765 l +21.657787 28.680161 l +21.657787 28.183487 l +21.657787 27.687759 l +21.657787 27.192963 l +21.657787 26.699142 l +21.657787 26.206284 l +21.657787 25.714401 l +21.657787 25.223511 l +21.657787 24.733612 l +21.657787 24.244705 l +21.657787 23.756805 l +21.657787 23.269943 l +21.657787 22.784088 l +21.657787 22.299286 l +21.657787 21.815521 l +21.657787 21.658295 l +44.446537 21.658295 l +35.782089 28.098251 28.097677 35.782715 21.657787 44.447220 c +h +f* +n +Q +q +q +/E2 gs +/E3 gs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +/Pattern cs +/P1 scn +61.759487 152.745850 m +56.886787 152.745850 52.936687 148.795746 52.936687 143.923050 c +52.936687 139.050354 56.886787 135.100250 61.759487 135.100250 c +84.498734 135.100250 102.932541 116.666443 102.932541 93.927200 c +102.932541 89.054504 106.882645 85.104401 111.755341 85.104401 c +116.628036 85.104401 120.578133 89.054504 120.578133 93.927200 c +120.578133 126.411842 94.244133 152.745850 61.759487 152.745850 c +h +0.000000 67.458984 m +0.000000 62.586288 3.950101 58.636185 8.822798 58.636185 c +13.695495 58.636185 17.645596 62.586288 17.645596 67.458984 c +17.645596 90.198235 36.079403 108.632050 58.818653 108.632050 c +63.691349 108.632050 67.641449 112.582146 67.641449 117.454842 c +67.641449 122.327545 63.691349 126.277634 58.818649 126.277634 c +26.334009 126.277634 0.000000 99.943626 0.000000 67.458984 c +h +85.287888 5.699493 m +90.160583 5.699493 94.110687 9.649597 94.110687 14.522293 c +94.110687 19.394989 90.160591 23.345093 85.287888 23.345093 c +62.548641 23.345093 44.114834 41.778900 44.114838 64.518150 c +44.114838 69.390846 40.164738 73.340942 35.292042 73.340950 c +30.419344 73.340950 26.469246 69.390846 26.469244 64.518150 c +26.469242 32.033508 52.803246 5.699493 85.287888 5.699493 c +h +138.224564 99.809158 m +143.097260 99.809158 147.047363 95.859062 147.047363 90.986359 c +147.047363 58.501717 120.713348 32.167717 88.228706 32.167717 c +83.356010 32.167717 79.405914 36.117813 79.405914 40.990517 c +79.405914 45.863213 83.356010 49.813309 88.228706 49.813309 c +110.967957 49.813309 129.401764 68.247116 129.401764 90.986366 c +129.401764 95.859062 133.351868 99.809158 138.224564 99.809158 c +h +f* +n +Q +q +/E4 gs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +/Pattern cs +/P2 scn +61.759487 152.745850 m +56.886787 152.745850 52.936687 148.795746 52.936687 143.923050 c +52.936687 139.050354 56.886787 135.100250 61.759487 135.100250 c +84.498734 135.100250 102.932541 116.666443 102.932541 93.927200 c +102.932541 89.054504 106.882645 85.104401 111.755341 85.104401 c +116.628036 85.104401 120.578133 89.054504 120.578133 93.927200 c +120.578133 126.411842 94.244133 152.745850 61.759487 152.745850 c +h +0.000000 67.458984 m +0.000000 62.586288 3.950101 58.636185 8.822798 58.636185 c +13.695495 58.636185 17.645596 62.586288 17.645596 67.458984 c +17.645596 90.198235 36.079403 108.632050 58.818653 108.632050 c +63.691349 108.632050 67.641449 112.582146 67.641449 117.454842 c +67.641449 122.327545 63.691349 126.277634 58.818649 126.277634 c +26.334009 126.277634 0.000000 99.943626 0.000000 67.458984 c +h +85.287888 5.699493 m +90.160583 5.699493 94.110687 9.649597 94.110687 14.522293 c +94.110687 19.394989 90.160591 23.345093 85.287888 23.345093 c +62.548641 23.345093 44.114834 41.778900 44.114838 64.518150 c +44.114838 69.390846 40.164738 73.340942 35.292042 73.340950 c +30.419344 73.340950 26.469246 69.390846 26.469244 64.518150 c +26.469242 32.033508 52.803246 5.699493 85.287888 5.699493 c +h +138.224564 99.809158 m +143.097260 99.809158 147.047363 95.859062 147.047363 90.986359 c +147.047363 58.501717 120.713348 32.167717 88.228706 32.167717 c +83.356010 32.167717 79.405914 36.117813 79.405914 40.990517 c +79.405914 45.863213 83.356010 49.813309 88.228706 49.813309 c +110.967957 49.813309 129.401764 68.247116 129.401764 90.986366 c +129.401764 95.859062 133.351868 99.809158 138.224564 99.809158 c +h +f* +n +Q +/E5 gs +q +/E6 gs +1.000000 0.000000 -0.000000 1.000000 36.476562 30.777100 cm +0.287500 0.287500 0.287500 scn +58.818649 126.277634 m +58.818649 129.127380 l +58.818649 129.127380 l +58.818649 126.277634 l +h +44.114838 64.518150 m +46.964581 64.518150 l +46.964581 64.518150 l +44.114838 64.518150 l +h +35.292042 73.340950 m +35.292046 76.190689 l +35.292042 76.190689 l +35.292042 73.340950 l +h +26.469244 64.518150 m +23.619503 64.518150 l +23.619503 64.518150 l +26.469244 64.518150 l +h +55.786430 143.923050 m +55.786430 147.221878 58.460655 149.896103 61.759487 149.896103 c +61.759487 155.595596 l +55.312920 155.595596 50.086945 150.369614 50.086945 143.923050 c +55.786430 143.923050 l +h +61.759487 137.949997 m +58.460655 137.949997 55.786430 140.624222 55.786430 143.923050 c +50.086945 143.923050 l +50.086945 137.476486 55.312920 132.250519 61.759487 132.250519 c +61.759487 137.949997 l +h +105.782280 93.927200 m +105.782280 118.240311 86.072601 137.949997 61.759487 137.949997 c +61.759487 132.250519 l +82.924866 132.250519 100.082802 115.092575 100.082802 93.927200 c +105.782280 93.927200 l +h +111.755341 87.954140 m +108.456512 87.954140 105.782280 90.628372 105.782280 93.927200 c +100.082802 93.927200 l +100.082802 87.480629 105.308777 82.254662 111.755341 82.254662 c +111.755341 87.954140 l +h +117.728394 93.927200 m +117.728394 90.628372 115.054169 87.954140 111.755341 87.954140 c +111.755341 82.254662 l +118.201904 82.254662 123.427872 87.480637 123.427872 93.927200 c +117.728394 93.927200 l +h +61.759487 149.896103 m +92.670265 149.896103 117.728394 124.837975 117.728394 93.927200 c +123.427872 93.927200 l +123.427872 127.985710 95.818001 155.595596 61.759487 155.595596 c +61.759487 149.896103 l +h +8.822798 61.485924 m +5.523971 61.485924 2.849741 64.160156 2.849741 67.458984 c +-2.849741 67.458984 l +-2.849741 61.012421 2.376232 55.786446 8.822798 55.786446 c +8.822798 61.485924 l +h +14.795855 67.458984 m +14.795855 64.160156 12.121625 61.485924 8.822798 61.485924 c +8.822798 55.786446 l +15.269364 55.786446 20.495337 61.012421 20.495337 67.458984 c +14.795855 67.458984 l +h +58.818653 111.481789 m +34.505535 111.481789 14.795855 91.772102 14.795855 67.458984 c +20.495337 67.458984 l +20.495337 88.624367 37.653271 105.782303 58.818653 105.782303 c +58.818653 111.481789 l +h +64.791710 117.454842 m +64.791710 114.156013 62.117481 111.481789 58.818653 111.481789 c +58.818653 105.782303 l +65.265221 105.782303 70.491188 111.008278 70.491188 117.454842 c +64.791710 117.454842 l +h +58.818649 123.427895 m +62.117481 123.427895 64.791710 120.753670 64.791710 117.454842 c +70.491188 117.454842 l +70.491188 123.901413 65.265213 129.127380 58.818649 129.127380 c +58.818649 123.427895 l +h +2.849741 67.458984 m +2.849741 98.369759 27.907877 123.427895 58.818649 123.427895 c +58.818649 129.127380 l +24.760141 129.127380 -2.849741 101.517494 -2.849741 67.458984 c +2.849741 67.458984 l +h +91.260948 14.522293 m +91.260948 11.223465 88.586716 8.549240 85.287888 8.549240 c +85.287888 2.849747 l +91.734451 2.849747 96.960426 8.075729 96.960426 14.522293 c +91.260948 14.522293 l +h +85.287888 20.495346 m +88.586723 20.495346 91.260948 17.821121 91.260948 14.522293 c +96.960426 14.522293 l +96.960426 20.968857 91.734459 26.194832 85.287888 26.194832 c +85.287888 20.495346 l +h +41.265095 64.518150 m +41.265091 40.205032 60.974773 20.495346 85.287888 20.495346 c +85.287888 26.194832 l +64.122513 26.194832 46.964577 43.352768 46.964581 64.518150 c +41.265095 64.518150 l +h +35.292038 70.491211 m +38.590870 70.491203 41.265095 67.816978 41.265095 64.518150 c +46.964581 64.518150 l +46.964581 70.964714 41.738605 76.190681 35.292046 76.190689 c +35.292038 70.491211 l +h +29.318985 64.518150 m +29.318987 67.816978 31.993216 70.491211 35.292042 70.491211 c +35.292042 76.190689 l +28.845472 76.190689 23.619505 70.964714 23.619503 64.518150 c +29.318985 64.518150 l +h +85.287888 8.549240 m +54.377113 8.549240 29.318983 33.607376 29.318985 64.518150 c +23.619503 64.518150 l +23.619501 30.459641 51.229378 2.849747 85.287888 2.849747 c +85.287888 8.549240 l +h +149.897110 90.986359 m +149.897110 97.432930 144.671127 102.658905 138.224564 102.658905 c +138.224564 96.959419 l +141.523392 96.959419 144.197617 94.285194 144.197617 90.986359 c +149.897110 90.986359 l +h +88.228706 29.317978 m +122.287216 29.317978 149.897110 56.927849 149.897110 90.986359 c +144.197617 90.986359 l +144.197617 60.075584 119.139481 35.017456 88.228706 35.017456 c +88.228706 29.317978 l +h +76.556175 40.990517 m +76.556175 34.543945 81.782143 29.317978 88.228706 29.317978 c +88.228706 35.017456 l +84.929878 35.017456 82.255653 37.691681 82.255653 40.990517 c +76.556175 40.990517 l +h +88.228706 52.663048 m +81.782143 52.663048 76.556175 47.437080 76.556175 40.990517 c +82.255653 40.990517 l +82.255653 44.289345 84.929878 46.963570 88.228706 46.963570 c +88.228706 52.663048 l +h +126.552025 90.986366 m +126.552025 69.820984 109.394089 52.663048 88.228706 52.663048 c +88.228706 46.963570 l +112.541824 46.963570 132.251511 66.673248 132.251511 90.986366 c +126.552025 90.986366 l +h +138.224564 102.658905 m +131.778000 102.658905 126.552025 97.432938 126.552025 90.986366 c +132.251511 90.986366 l +132.251511 94.285187 134.925735 96.959419 138.224564 96.959419 c +138.224564 102.658905 l +h +f +n +Q +Q + +endstream +endobj + +19 0 obj + 55406 +endobj + +20 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 220.000000 220.000000 ] + /Resources 17 0 R + /Contents 18 0 R + /Parent 21 0 R + >> +endobj + +21 0 obj + << /Kids [ 20 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +22 0 obj + << /Pages 21 0 R + /Type /Catalog + >> +endobj + +xref +0 23 +0000000000 65535 f +0000000010 00000 n +0000000530 00000 n +0000000552 00000 n +0000001072 00000 n +0000001094 00000 n +0000003083 00000 n +0000003106 00000 n +0000003281 00000 n +0000003302 00000 n +0000003600 00000 n +0000003623 00000 n +0000006384 00000 n +0000006408 00000 n +0000006707 00000 n +0000006730 00000 n +0000009493 00000 n +0000009517 00000 n +0000011710 00000 n +0000067174 00000 n +0000067199 00000 n +0000067378 00000 n +0000067454 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 22 0 R + /Size 23 +>> +startxref +67515 +%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/Contents.json b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/Contents.json similarity index 75% rename from ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/Contents.json rename to ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/Contents.json index 93768124d..dc8e14ebf 100644 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/Contents.json +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "OnboardingSplashScreenPage3.pdf", + "filename" : "OnboardingBackgroundPart1.pdf", "idiom" : "universal" }, { @@ -11,7 +11,7 @@ "value" : "dark" } ], - "filename" : "OnboardingSplashScreenPage3-Dark.pdf", + "filename" : "OnboardingBackgroundPart1-Dark.pdf", "idiom" : "universal" } ], diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1-Dark.pdf new file mode 100644 index 000000000..dc3999047 Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1-Dark.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1.pdf new file mode 100644 index 000000000..bcfc0ea2d Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 1.imageset/OnboardingBackgroundPart1.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/Contents.json b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/Contents.json similarity index 75% rename from ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/Contents.json rename to ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/Contents.json index a405f8767..2d2b304bd 100644 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/Contents.json +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "OnboardingSplashScreenPage4.pdf", + "filename" : "OnboardingBackgroundPart2.pdf", "idiom" : "universal" }, { @@ -11,7 +11,7 @@ "value" : "dark" } ], - "filename" : "OnboardingSplashScreenPage4-Dark.pdf", + "filename" : "OnboardingBackgroundPart2-Dark.pdf", "idiom" : "universal" } ], diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2-Dark.pdf new file mode 100644 index 000000000..e9455dfa5 Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2-Dark.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2.pdf new file mode 100644 index 000000000..70d11b846 Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 2.imageset/OnboardingBackgroundPart2.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/Contents.json b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/Contents.json similarity index 75% rename from ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/Contents.json rename to ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/Contents.json index ac814a988..78b4bc24b 100644 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/Contents.json +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "OnboardingSplashScreenPage2.pdf", + "filename" : "OnboardingBackgroundPart3.pdf", "idiom" : "universal" }, { @@ -11,7 +11,7 @@ "value" : "dark" } ], - "filename" : "OnboardingSplashScreenPage2-Dark.pdf", + "filename" : "OnboardingBackgroundPart3-Dark.pdf", "idiom" : "universal" } ], diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3-Dark.pdf new file mode 100644 index 000000000..dc3999047 Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3-Dark.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3.pdf new file mode 100644 index 000000000..24952da26 Binary files /dev/null and b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Background Part 3.imageset/OnboardingBackgroundPart3.pdf differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1-Dark.pdf deleted file mode 100644 index be0081499..000000000 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1-Dark.pdf +++ /dev/null @@ -1,872 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /Type /XObject - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 116.000000 142.000000 cm -0.083333 0.083333 0.083333 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -87.500000 13.000000 l -91.089851 13.000000 94.000000 10.089850 94.000000 6.500000 c -94.000000 6.500000 l -94.000000 2.910150 91.089851 0.000000 87.500000 0.000000 c -6.500002 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 142.000000 cm -1.000000 0.505882 0.176471 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -87.500000 13.000000 l -91.089851 13.000000 94.000000 10.089850 94.000000 6.500000 c -94.000000 6.500000 l -94.000000 2.910150 91.089851 0.000000 87.500000 0.000000 c -6.500002 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 882 -endobj - -3 0 obj - << /Type /XObject - /Length 4 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 127.119080 85.000000 cm -0.083333 0.083333 0.083333 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 127.119080 85.000000 cm -0.454902 0.819608 0.172549 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -4 0 obj - 896 -endobj - -5 0 obj - << /Type /XObject - /Length 6 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 102.000000 207.000000 cm -0.083333 0.083333 0.083333 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 207.000000 cm -0.360784 0.337255 0.960784 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -6 0 obj - 898 -endobj - -7 0 obj - << /Type /XObject - /Length 8 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /XObject << /X2 1 0 R - /X3 3 0 R - /X1 5 0 R - >> - /ExtGState << /E6 << /ca 0.400000 >> - /E4 << /ca 0.500000 >> - /E2 << /ca 0.500000 >> - /E5 << /ca 0.700000 >> - /E3 << /ca 0.700000 >> - /E1 << /ca 0.700000 >> - >> - >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 51.000000 183.000000 cm -0.054167 0.054167 0.054167 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 51.000000 183.000000 cm -0.835294 0.847059 0.968627 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E2 gs -/X1 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 184.000000 cm -0.054167 0.054167 0.054167 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -141.500000 13.000000 l -145.089859 13.000000 148.000000 10.089850 148.000000 6.500000 c -148.000000 6.500000 l -148.000000 2.910150 145.089844 0.000000 141.500000 0.000000 c -6.499999 0.000000 l -2.910148 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 184.000000 cm -0.556863 0.600000 0.643137 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -141.500000 13.000000 l -145.089859 13.000000 148.000000 10.089850 148.000000 6.500000 c -148.000000 6.500000 l -148.000000 2.910150 145.089844 0.000000 141.500000 0.000000 c -6.499999 0.000000 l -2.910148 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 60.000000 119.000000 cm -0.054167 0.054167 0.054167 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E3 gs -1.000000 0.000000 -0.000000 1.000000 60.000000 119.000000 cm -0.964706 0.878431 0.811765 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E4 gs -/X2 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 121.000000 cm -0.054167 0.054167 0.054167 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -56.500000 13.000000 l -60.089848 13.000000 63.000000 10.089850 63.000000 6.500000 c -63.000000 6.500000 l -63.000000 2.910150 60.089851 0.000000 56.500000 0.000000 c -6.500001 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 121.000000 cm -0.556863 0.600000 0.643137 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -56.500000 13.000000 l -60.089848 13.000000 63.000000 10.089850 63.000000 6.500000 c -63.000000 6.500000 l -63.000000 2.910150 60.089851 0.000000 56.500000 0.000000 c -6.500001 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 189.000000 121.000000 cm -0.054167 0.054167 0.054167 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -57.500000 13.000000 l -61.089851 13.000000 64.000000 10.089850 64.000000 6.500000 c -64.000000 6.500000 l -64.000000 2.910150 61.089851 0.000000 57.500000 0.000000 c -6.500000 0.000000 l -2.910149 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 189.000000 121.000000 cm -0.556863 0.600000 0.643137 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -57.500000 13.000000 l -61.089851 13.000000 64.000000 10.089850 64.000000 6.500000 c -64.000000 6.500000 l -64.000000 2.910150 61.089851 0.000000 57.500000 0.000000 c -6.500000 0.000000 l -2.910149 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 69.999939 60.000000 cm -1.000000 1.000000 1.000000 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 69.999939 60.000000 cm -0.054167 0.054167 0.054167 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E5 gs -1.000000 0.000000 -0.000000 1.000000 69.999939 60.000000 cm -0.894118 0.964706 0.894118 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E6 gs -/X3 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 115.999939 72.000000 cm -0.000000 0.000000 0.000000 scn -0.000000 9.000000 m -0.000000 13.970562 4.029438 18.000000 9.000000 18.000000 c -23.000000 18.000000 l -27.970562 18.000000 32.000000 13.970562 32.000000 9.000000 c -32.000000 9.000000 l -32.000000 4.029437 27.970562 0.000000 23.000000 0.000000 c -9.000000 0.000000 l -4.029438 0.000000 0.000000 4.029437 0.000000 9.000000 c -0.000000 9.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 123.366089 77.722778 cm -0.557143 0.600000 0.642857 scn -4.910892 3.273924 m -4.910892 1.917818 3.811552 0.818478 2.455446 0.818478 c -1.099341 0.818478 0.000000 1.917818 0.000000 3.273924 c -0.000000 4.630030 1.099341 5.729370 2.455446 5.729370 c -3.811552 5.729370 4.910892 4.630030 4.910892 3.273924 c -h -11.458750 2.455442 m -11.458750 1.099336 10.359408 -0.000004 9.003304 -0.000004 c -7.647198 -0.000004 6.547857 1.099336 6.547857 2.455442 c -6.547857 3.811547 7.647198 4.910888 9.003304 4.910888 c -10.359408 4.910888 11.458750 3.811547 11.458750 2.455442 c -h -15.551160 -0.000004 m -16.907265 -0.000004 18.006607 1.099336 18.006607 2.455442 c -18.006607 3.811547 16.907265 4.910888 15.551160 4.910888 c -14.195054 4.910888 13.095714 3.811547 13.095714 2.455442 c -13.095714 1.099336 14.195054 -0.000004 15.551160 -0.000004 c -h -f* -n -Q - -endstream -endobj - -8 0 obj - 6601 -endobj - -9 0 obj - << /Length 10 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.890196 exch 0.909804 exch 0.941176 exch dup 0.885417 gt { exch pop exch pop exch pop dup 0.885417 sub -1.163636 mul 0.890196 add exch dup 0.885417 sub -1.163636 mul 0.909804 add exch dup 0.885417 sub -1.197861 mul 0.941176 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.756863 exch 0.776471 exch 0.803922 exch } if pop } -endstream -endobj - -10 0 obj - 339 -endobj - -11 0 obj - << /Length 12 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.560784 exch 0.592157 exch 0.639216 exch dup 0.436121 gt { exch pop exch pop exch pop dup 0.436121 sub -1.132947 mul 0.560784 add exch dup 0.436121 sub -1.040270 mul 0.592157 add exch dup 0.436121 sub -1.080743 mul 0.639216 add exch } if dup 0.797508 gt { exch pop exch pop exch pop 0.151351 exch 0.216216 exch 0.248649 exch } if pop } -endstream -endobj - -12 0 obj - 339 -endobj - -13 0 obj - << /Length 14 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.211765 exch 0.545098 exch 0.839216 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 4.324034 mul 0.211765 add exch dup 0.000000 sub -0.215126 mul 0.545098 add exch dup 0.000000 sub -3.635630 mul 0.839216 add exch } if dup 0.182292 gt { exch pop exch pop exch pop dup 0.182292 sub -0.472174 mul 1.000000 add exch dup 0.182292 sub -0.944349 mul 0.505882 add exch dup 0.182292 sub 1.454296 mul 0.176471 add exch } if dup 0.389925 gt { exch pop exch pop exch pop dup 0.389925 sub -4.864687 mul 0.901961 add exch dup 0.389925 sub 2.143034 mul 0.309804 add exch dup 0.389925 sub 0.150013 mul 0.478431 add exch } if dup 0.572917 gt { exch pop exch pop exch pop dup 0.572917 sub 0.810860 mul 0.011765 add exch dup 0.572917 sub 0.289593 mul 0.701961 add exch dup 0.572917 sub 1.312820 mul 0.505882 add exch } if dup 0.776042 gt { exch pop exch pop exch pop dup 0.776042 sub 2.223803 mul 0.176471 add exch dup 0.776042 sub -2.363885 mul 0.760784 add exch dup 0.776042 sub -0.507798 mul 0.772549 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.674510 exch 0.231373 exch 0.658824 exch } if pop } -endstream -endobj - -14 0 obj - 1119 -endobj - -15 0 obj - << /Length 16 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.000000 exch dup 0.885417 gt { exch pop dup 0.885417 sub 8.727274 mul 0.000000 add exch } if dup 1.000000 gt { exch pop 1.000000 exch } if pop } -endstream -endobj - -16 0 obj - 148 -endobj - -17 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956726 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 15 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 18 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -18 0 obj - 396 -endobj - -19 0 obj - << /Type /XObject - /Length 20 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /Pattern << /P3 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956726 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 9 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P2 << /Matrix [ 105.999977 -284.000061 361.623688 134.972168 -115.811859 256.513977 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 11 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P1 << /Matrix [ 256.865387 -254.788467 254.788467 256.865387 -268.954285 56.983734 ] - /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] - /ColorSpace /DeviceRGB - /Function 13 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 2 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - >> - /ExtGState << /E4 << /SMask << /Type /Mask - /G 17 0 R - /S /Luminosity - >> - /Type /ExtGState - >> - /E2 << /ca 0.500000 >> - /E3 << /ca 0.400000 >> - /E1 << /ca 0.200000 >> - >> - >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -0.098039 0.113725 0.129412 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P1 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E2 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P2 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E3 gs -/E4 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P3 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q - -endstream -endobj - -20 0 obj - 1519 -endobj - -21 0 obj - << /Length 22 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.258514 gt { exch pop exch pop exch pop dup 0.258514 sub 0.000000 mul 1.000000 add exch dup 0.258514 sub 0.000000 mul 1.000000 add exch dup 0.258514 sub 0.000000 mul 1.000000 add exch } if dup 0.942462 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } -endstream -endobj - -22 0 obj - 336 -endobj - -23 0 obj - << /Length 24 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch dup 0.258514 gt { exch pop dup 0.258514 sub -1.462099 mul 1.000000 add exch } if dup 0.942462 gt { exch pop 0.000000 exch } if pop } -endstream -endobj - -24 0 obj - 149 -endobj - -25 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ 18.000000 -296.999969 296.999969 18.000000 -16.499969 313.000000 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 23 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 26 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -26 0 obj - 396 -endobj - -27 0 obj - << /Type /XObject - /Length 28 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /Pattern << /P1 << /Matrix [ 18.000000 -296.999969 296.999969 18.000000 -16.499969 313.000000 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 21 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> - /ExtGState << /E1 << /SMask << /Type /Mask - /G 25 0 R - /S /Luminosity - >> - /Type /ExtGState - >> >> - >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P1 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q - -endstream -endobj - -28 0 obj - 405 -endobj - -29 0 obj - << /XObject << /X2 7 0 R - /X1 19 0 R - >> - /ExtGState << /E2 << /SMask << /Type /Mask - /G 27 0 R - /S /Alpha - >> - /Type /ExtGState - >> - /E1 << /ca 0.600000 >> - >> - >> -endobj - -30 0 obj - << /Length 31 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -/E1 gs -/X1 Do -Q -q -/E2 gs -/X2 Do -Q - -endstream -endobj - -31 0 obj - 64 -endobj - -32 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources 29 0 R - /Contents 30 0 R - /Parent 33 0 R - >> -endobj - -33 0 obj - << /Kids [ 32 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -34 0 obj - << /Pages 33 0 R - /Type /Catalog - >> -endobj - -xref -0 35 -0000000000 65535 f -0000000010 00000 n -0000001142 00000 n -0000001164 00000 n -0000002310 00000 n -0000002332 00000 n -0000003480 00000 n -0000003502 00000 n -0000010873 00000 n -0000010896 00000 n -0000011420 00000 n -0000011443 00000 n -0000011968 00000 n -0000011991 00000 n -0000013296 00000 n -0000013320 00000 n -0000013618 00000 n -0000013641 00000 n -0000015090 00000 n -0000015113 00000 n -0000019782 00000 n -0000019806 00000 n -0000020328 00000 n -0000020351 00000 n -0000020650 00000 n -0000020673 00000 n -0000022119 00000 n -0000022142 00000 n -0000023918 00000 n -0000023941 00000 n -0000024341 00000 n -0000024463 00000 n -0000024485 00000 n -0000024664 00000 n -0000024740 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 34 0 R - /Size 35 ->> -startxref -24801 -%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1.pdf deleted file mode 100644 index 2afeae294..000000000 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 1.imageset/OnboardingSplashScreenPage1.pdf +++ /dev/null @@ -1,1067 +0,0 @@ -%PDF-1.7 - -1 0 obj - << /Type /XObject - /Length 2 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 116.000000 142.000000 cm -0.857271 0.866762 0.880049 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -87.500000 13.000000 l -91.089851 13.000000 94.000000 10.089850 94.000000 6.500000 c -94.000000 6.500000 l -94.000000 2.910150 91.089851 0.000000 87.500000 0.000000 c -6.500002 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 142.000000 cm -1.000000 0.505882 0.176471 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -87.500000 13.000000 l -91.089851 13.000000 94.000000 10.089850 94.000000 6.500000 c -94.000000 6.500000 l -94.000000 2.910150 91.089851 0.000000 87.500000 0.000000 c -6.500002 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -2 0 obj - 882 -endobj - -3 0 obj - << /Type /XObject - /Length 4 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 127.119141 85.000000 cm -0.857271 0.866762 0.880049 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 127.119141 85.000000 cm -0.454902 0.819608 0.172549 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -4 0 obj - 896 -endobj - -5 0 obj - << /Type /XObject - /Length 6 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -q -1.000000 0.000000 -0.000000 1.000000 102.000000 207.000000 cm -0.857271 0.866762 0.880049 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 207.000000 cm -0.360784 0.337255 0.960784 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -119.500000 13.000000 l -123.089851 13.000000 126.000000 10.089850 126.000000 6.500000 c -126.000000 6.500000 l -126.000000 2.910150 123.089851 0.000000 119.500000 0.000000 c -6.499998 0.000000 l -2.910147 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q - -endstream -endobj - -6 0 obj - 898 -endobj - -7 0 obj - << /Type /XObject - /Length 8 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /XObject << /X2 1 0 R - /X3 3 0 R - /X1 5 0 R - >> - /ExtGState << /E6 << /ca 0.125000 >> - /E4 << /ca 0.250000 >> - /E2 << /ca 0.250000 >> - /E5 << /ca 0.500000 >> - /E3 << /ca 0.400000 >> - /E1 << /ca 0.300000 >> - >> - >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 51.000000 183.000000 cm -0.890196 0.909804 0.941176 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 51.000000 183.000000 cm -0.835294 0.847059 0.968627 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E2 gs -/X1 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 184.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -141.500000 13.000000 l -145.089859 13.000000 148.000000 10.089850 148.000000 6.500000 c -148.000000 6.500000 l -148.000000 2.910150 145.089844 0.000000 141.500000 0.000000 c -6.499999 0.000000 l -2.910148 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 102.000000 184.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -141.500000 13.000000 l -145.089859 13.000000 148.000000 10.089850 148.000000 6.500000 c -148.000000 6.500000 l -148.000000 2.910150 145.089844 0.000000 141.500000 0.000000 c -6.499999 0.000000 l -2.910148 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 60.000000 119.000000 cm -0.890196 0.909804 0.941176 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E3 gs -1.000000 0.000000 -0.000000 1.000000 60.000000 119.000000 cm -0.964706 0.878431 0.811765 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E4 gs -/X2 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 121.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -56.500000 13.000000 l -60.089848 13.000000 63.000000 10.089850 63.000000 6.500000 c -63.000000 6.500000 l -63.000000 2.910150 60.089851 0.000000 56.500000 0.000000 c -6.500001 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 121.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -56.500000 13.000000 l -60.089848 13.000000 63.000000 10.089850 63.000000 6.500000 c -63.000000 6.500000 l -63.000000 2.910150 60.089851 0.000000 56.500000 0.000000 c -6.500001 0.000000 l -2.910151 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 189.000000 121.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -57.500000 13.000000 l -61.089851 13.000000 64.000000 10.089850 64.000000 6.500000 c -64.000000 6.500000 l -64.000000 2.910150 61.089851 0.000000 57.500000 0.000000 c -6.500000 0.000000 l -2.910149 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 189.000000 121.000000 cm -0.890196 0.909804 0.941176 scn -0.000000 6.500000 m -0.000000 10.089850 2.910149 13.000000 6.500000 13.000000 c -57.500000 13.000000 l -61.089851 13.000000 64.000000 10.089850 64.000000 6.500000 c -64.000000 6.500000 l -64.000000 2.910150 61.089851 0.000000 57.500000 0.000000 c -6.500000 0.000000 l -2.910149 0.000000 0.000000 2.910150 0.000000 6.500000 c -0.000000 6.500000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 70.000000 60.000000 cm -1.000000 1.000000 1.000000 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 70.000000 60.000000 cm -0.890196 0.909804 0.941176 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E5 gs -1.000000 0.000000 -0.000000 1.000000 70.000000 60.000000 cm -0.894118 0.964706 0.894118 scn -38.000000 19.000000 m -38.000000 8.506590 29.493410 0.000000 19.000000 0.000000 c -8.506590 0.000000 0.000000 8.506590 0.000000 19.000000 c -0.000000 29.493410 8.506590 38.000000 19.000000 38.000000 c -29.493410 38.000000 38.000000 29.493410 38.000000 19.000000 c -h -f -n -Q -q -/E6 gs -/X3 Do -Q -q -1.000000 0.000000 -0.000000 1.000000 116.000000 72.000000 cm -1.000000 1.000000 1.000000 scn -0.000000 9.000000 m -0.000000 13.970562 4.029438 18.000000 9.000000 18.000000 c -23.000000 18.000000 l -27.970562 18.000000 32.000000 13.970562 32.000000 9.000000 c -32.000000 9.000000 l -32.000000 4.029437 27.970562 0.000000 23.000000 0.000000 c -9.000000 0.000000 l -4.029438 0.000000 0.000000 4.029437 0.000000 9.000000 c -0.000000 9.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 123.366211 77.722656 cm -0.552000 0.600000 0.648000 scn -4.910892 3.274046 m -4.910892 1.917940 3.811552 0.818600 2.455446 0.818600 c -1.099341 0.818600 0.000000 1.917940 0.000000 3.274046 c -0.000000 4.630152 1.099341 5.729492 2.455446 5.729492 c -3.811552 5.729492 4.910892 4.630152 4.910892 3.274046 c -h -11.458750 2.455564 m -11.458750 1.099458 10.359408 0.000118 9.003304 0.000118 c -7.647198 0.000118 6.547857 1.099458 6.547857 2.455564 c -6.547857 3.811669 7.647198 4.911010 9.003304 4.911010 c -10.359408 4.911010 11.458750 3.811669 11.458750 2.455564 c -h -15.551160 0.000118 m -16.907265 0.000118 18.006607 1.099458 18.006607 2.455564 c -18.006607 3.811669 16.907265 4.911010 15.551160 4.911010 c -14.195054 4.911010 13.095714 3.811669 13.095714 2.455564 c -13.095714 1.099458 14.195054 0.000118 15.551160 0.000118 c -h -f* -n -Q - -endstream -endobj - -8 0 obj - 6594 -endobj - -9 0 obj - << /Length 10 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.885417 gt { exch pop exch pop exch pop dup 0.885417 sub 0.000000 mul 1.000000 add exch dup 0.885417 sub 0.000000 mul 1.000000 add exch dup 0.885417 sub 0.000000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } -endstream -endobj - -10 0 obj - 336 -endobj - -11 0 obj - << /Length 12 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.703125 gt { exch pop exch pop exch pop dup 0.703125 sub 0.000000 mul 1.000000 add exch dup 0.703125 sub 0.000000 mul 1.000000 add exch dup 0.703125 sub 0.000000 mul 1.000000 add exch } if dup 0.927083 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } -endstream -endobj - -12 0 obj - 336 -endobj - -13 0 obj - << /Length 14 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.211765 exch 0.545098 exch 0.839216 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 4.324034 mul 0.211765 add exch dup 0.000000 sub -0.215126 mul 0.545098 add exch dup 0.000000 sub -3.635630 mul 0.839216 add exch } if dup 0.182292 gt { exch pop exch pop exch pop dup 0.182292 sub -1.689030 mul 1.000000 add exch dup 0.182292 sub -1.424484 mul 0.505882 add exch dup 0.182292 sub 2.503021 mul 0.176471 add exch } if dup 0.375000 gt { exch pop exch pop exch pop dup 0.375000 sub -3.348607 mul 0.674510 add exch dup 0.375000 sub 2.377709 mul 0.231373 add exch dup 0.375000 sub -0.772755 mul 0.658824 add exch } if dup 0.572917 gt { exch pop exch pop exch pop dup 0.572917 sub 0.810860 mul 0.011765 add exch dup 0.572917 sub 0.289593 mul 0.701961 add exch dup 0.572917 sub 1.312820 mul 0.505882 add exch } if dup 0.776042 gt { exch pop exch pop exch pop dup 0.776042 sub 3.239398 mul 0.176471 add exch dup 0.776042 sub -2.013680 mul 0.760784 add exch dup 0.776042 sub -1.313270 mul 0.772549 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.901961 exch 0.309804 exch 0.478431 exch } if pop } -endstream -endobj - -14 0 obj - 1120 -endobj - -15 0 obj - << /Length 16 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.000000 exch dup 0.885417 gt { exch pop dup 0.885417 sub 8.727274 mul 0.000000 add exch } if dup 1.000000 gt { exch pop 1.000000 exch } if pop } -endstream -endobj - -16 0 obj - 148 -endobj - -17 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956787 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 15 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 18 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -18 0 obj - 396 -endobj - -19 0 obj - << /Length 20 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch dup 0.703125 gt { exch pop dup 0.703125 sub -4.465117 mul 1.000000 add exch } if dup 0.927083 gt { exch pop 0.000000 exch } if pop } -endstream -endobj - -20 0 obj - 149 -endobj - -21 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ 15.144229 -277.163422 277.163422 15.144229 -3.725922 294.591370 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 19 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 22 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -22 0 obj - 396 -endobj - -23 0 obj - << /Type /XObject - /Length 24 0 R - /Group << /Type /Group - /S /Transparency - >> - /Subtype /Form - /Resources << /Pattern << /P3 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956787 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 9 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P2 << /Matrix [ 15.144229 -277.163422 277.163422 15.144229 -3.725922 294.591370 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 11 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P1 << /Matrix [ 190.384613 -179.807693 179.807693 190.384613 -122.380447 53.989655 ] - /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] - /ColorSpace /DeviceRGB - /Function 13 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 2 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - >> - /ExtGState << /E4 << /SMask << /Type /Mask - /G 17 0 R - /S /Luminosity - >> - /Type /ExtGState - >> - /E2 << /ca 0.800000 >> - /E3 << /SMask << /Type /Mask - /G 21 0 R - /S /Luminosity - >> - /Type /ExtGState - >> - /E1 << /ca 0.100000 >> - >> - >> - /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P1 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E2 gs -/E3 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P2 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E4 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P3 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q - -endstream -endobj - -24 0 obj - 1166 -endobj - -25 0 obj - << /Length 26 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.000000 exch dup 0.885417 gt { exch pop dup 0.885417 sub 8.727274 mul 0.000000 add exch } if dup 1.000000 gt { exch pop 1.000000 exch } if pop } -endstream -endobj - -26 0 obj - 148 -endobj - -27 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956787 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 25 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 28 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -28 0 obj - 396 -endobj - -29 0 obj - << /Length 30 0 R - /Range [ 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch dup 0.703125 gt { exch pop dup 0.703125 sub -4.465117 mul 1.000000 add exch } if dup 0.927083 gt { exch pop 0.000000 exch } if pop } -endstream -endobj - -30 0 obj - 149 -endobj - -31 0 obj - << /BBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources << /Pattern << /P1 << /Matrix [ 15.144229 -277.163422 277.163422 15.144229 -3.725922 294.591370 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceGray - /Function 29 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> >> >> - /Subtype /Form - /Length 32 0 R - /Group << /Type /Group - /S /Transparency - /CS /DeviceGray - >> - /Type /XObject - >> -stream -/DeviceGray CS -/DeviceGray cs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -/Pattern cs -/P1 scn -f -n - -endstream -endobj - -32 0 obj - 396 -endobj - -33 0 obj - << /Length 34 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.885417 gt { exch pop exch pop exch pop dup 0.885417 sub 0.000000 mul 1.000000 add exch dup 0.885417 sub 0.000000 mul 1.000000 add exch dup 0.885417 sub 0.000000 mul 1.000000 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } -endstream -endobj - -34 0 obj - 336 -endobj - -35 0 obj - << /Length 36 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 1.000000 exch 1.000000 exch 1.000000 exch dup 0.703125 gt { exch pop exch pop exch pop dup 0.703125 sub 0.000000 mul 1.000000 add exch dup 0.703125 sub 0.000000 mul 1.000000 add exch dup 0.703125 sub 0.000000 mul 1.000000 add exch } if dup 0.927083 gt { exch pop exch pop exch pop 1.000000 exch 1.000000 exch 1.000000 exch } if pop } -endstream -endobj - -36 0 obj - 336 -endobj - -37 0 obj - << /Length 38 0 R - /Range [ 0.000000 1.000000 0.000000 1.000000 0.000000 1.000000 ] - /Domain [ 0.000000 1.000000 ] - /FunctionType 4 - >> -stream -{ 0.211765 exch 0.545098 exch 0.839216 exch dup 0.000000 gt { exch pop exch pop exch pop dup 0.000000 sub 4.324034 mul 0.211765 add exch dup 0.000000 sub -0.215126 mul 0.545098 add exch dup 0.000000 sub -3.635630 mul 0.839216 add exch } if dup 0.182292 gt { exch pop exch pop exch pop dup 0.182292 sub -1.689030 mul 1.000000 add exch dup 0.182292 sub -1.424484 mul 0.505882 add exch dup 0.182292 sub 2.503021 mul 0.176471 add exch } if dup 0.375000 gt { exch pop exch pop exch pop dup 0.375000 sub -3.348607 mul 0.674510 add exch dup 0.375000 sub 2.377709 mul 0.231373 add exch dup 0.375000 sub -0.772755 mul 0.658824 add exch } if dup 0.572917 gt { exch pop exch pop exch pop dup 0.572917 sub 0.810860 mul 0.011765 add exch dup 0.572917 sub 0.289593 mul 0.701961 add exch dup 0.572917 sub 1.312820 mul 0.505882 add exch } if dup 0.776042 gt { exch pop exch pop exch pop dup 0.776042 sub 3.239398 mul 0.176471 add exch dup 0.776042 sub -2.013680 mul 0.760784 add exch dup 0.776042 sub -1.313270 mul 0.772549 add exch } if dup 1.000000 gt { exch pop exch pop exch pop 0.901961 exch 0.309804 exch 0.478431 exch } if pop } -endstream -endobj - -38 0 obj - 1120 -endobj - -39 0 obj - << /XObject << /X1 7 0 R >> - /ExtGState << /E5 << /SMask << /Type /Mask - /G 23 0 R - /S /Alpha - >> - /Type /ExtGState - >> - /E4 << /SMask << /Type /Mask - /G 27 0 R - /S /Luminosity - >> - /Type /ExtGState - >> - /E2 << /ca 0.800000 >> - /E3 << /SMask << /Type /Mask - /G 31 0 R - /S /Luminosity - >> - /Type /ExtGState - >> - /E1 << /ca 0.100000 >> - >> - /Pattern << /P3 << /Matrix [ -127.403831 248.798080 -248.798080 -127.403831 347.956787 70.673119 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 33 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P2 << /Matrix [ 15.144229 -277.163422 277.163422 15.144229 -3.725922 294.591370 ] - /Shading << /Coords [ 0.500000 0.500000 0.000000 0.500000 0.500000 0.500000 ] - /ColorSpace /DeviceRGB - /Function 35 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 3 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - /P1 << /Matrix [ 190.384613 -179.807693 179.807693 190.384613 -122.380447 53.989655 ] - /Shading << /Coords [ 0.000000 0.000000 1.000000 0.000000 ] - /ColorSpace /DeviceRGB - /Function 37 0 R - /Domain [ 0.000000 1.000000 ] - /ShadingType 2 - /Extend [ true true ] - >> - /PatternType 2 - /Type /Pattern - >> - >> - >> -endobj - -40 0 obj - << /Length 41 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -0.956863 0.964706 0.980392 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E1 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P1 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E2 gs -/E3 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P2 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E4 gs -1.000000 0.000000 -0.000000 1.000000 25.000000 25.000000 cm -/Pattern cs -/P3 scn -250.000000 125.000000 m -250.000000 55.964401 194.035599 0.000000 125.000000 0.000000 c -55.964405 0.000000 0.000000 55.964401 0.000000 125.000000 c -0.000000 194.035599 55.964405 250.000000 125.000000 250.000000 c -194.035599 250.000000 250.000000 194.035599 250.000000 125.000000 c -h -f -n -Q -q -/E5 gs -/X1 Do -Q - -endstream -endobj - -41 0 obj - 1565 -endobj - -42 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources 39 0 R - /Contents 40 0 R - /Parent 43 0 R - >> -endobj - -43 0 obj - << /Kids [ 42 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -44 0 obj - << /Pages 43 0 R - /Type /Catalog - >> -endobj - -xref -0 45 -0000000000 65535 f -0000000010 00000 n -0000001142 00000 n -0000001164 00000 n -0000002310 00000 n -0000002332 00000 n -0000003480 00000 n -0000003502 00000 n -0000010866 00000 n -0000010889 00000 n -0000011410 00000 n -0000011433 00000 n -0000011955 00000 n -0000011978 00000 n -0000013284 00000 n -0000013308 00000 n -0000013606 00000 n -0000013629 00000 n -0000015078 00000 n -0000015101 00000 n -0000015400 00000 n -0000015423 00000 n -0000016868 00000 n -0000016891 00000 n -0000021481 00000 n -0000021505 00000 n -0000021803 00000 n -0000021826 00000 n -0000023275 00000 n -0000023298 00000 n -0000023597 00000 n -0000023620 00000 n -0000025065 00000 n -0000025088 00000 n -0000025610 00000 n -0000025633 00000 n -0000026155 00000 n -0000026178 00000 n -0000027484 00000 n -0000027508 00000 n -0000030295 00000 n -0000031918 00000 n -0000031942 00000 n -0000032121 00000 n -0000032197 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 44 0 R - /Size 45 ->> -startxref -32258 -%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2-Dark.pdf deleted file mode 100644 index 9c1d4b260..000000000 Binary files a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2-Dark.pdf and /dev/null differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2.pdf deleted file mode 100644 index 283dbcc94..000000000 Binary files a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 2.imageset/OnboardingSplashScreenPage2.pdf and /dev/null differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3-Dark.pdf deleted file mode 100644 index ef2dcdbc8..000000000 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3-Dark.pdf +++ /dev/null @@ -1,1451 +0,0 @@ -%PDF-1.7 - -1 0 obj - << >> -endobj - -2 0 obj - << /Length 3 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 84.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 94.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 70.000122 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 70.000122 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 70.000122 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 178.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 41.999878 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 210.000061 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 182.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 154.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 223.999985 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 223.999985 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 70.000122 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 223.999985 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 251.999985 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 233.999985 210.000061 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 154.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 262.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 98.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 126.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 126.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 126.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 70.000122 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 70.000122 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 262.000000 70.000122 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 41.999878 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 41.999878 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 41.999878 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 121.999992 154.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 223.999985 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 233.999985 182.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 223.999985 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 233.999985 154.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 121.999992 210.000061 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 237.999939 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 237.999939 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 121.999992 237.999939 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 41.999878 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 41.999878 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 178.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 237.999939 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 237.999939 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 206.000015 237.999939 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000015 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 206.000015 14.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 14.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 70.000122 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 70.000122 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 70.000122 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 27.999998 237.999939 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 237.999939 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 38.000000 237.999939 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 182.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 210.000061 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 14.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 121.999992 14.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 94.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 210.000061 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 182.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 111.999992 182.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 210.000061 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 154.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 126.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 41.999878 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 70.000122 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 237.999939 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 126.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 41.999878 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 27.999998 70.000122 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 266.000000 cm -0.223529 0.250980 0.286275 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 154.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 55.999996 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q - -endstream -endobj - -3 0 obj - 37227 -endobj - -4 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 300.000031 300.000000 ] - /Resources 1 0 R - /Contents 2 0 R - /Parent 5 0 R - >> -endobj - -5 0 obj - << /Kids [ 4 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -6 0 obj - << /Pages 5 0 R - /Type /Catalog - >> -endobj - -xref -0 7 -0000000000 65535 f -0000000010 00000 n -0000000034 00000 n -0000037317 00000 n -0000037341 00000 n -0000037516 00000 n -0000037590 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 6 0 R - /Size 7 ->> -startxref -37649 -%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3.pdf deleted file mode 100644 index 7c1c6dc76..000000000 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 3.imageset/OnboardingSplashScreenPage3.pdf +++ /dev/null @@ -1,1451 +0,0 @@ -%PDF-1.7 - -1 0 obj - << >> -endobj - -2 0 obj - << /Length 3 0 R >> -stream -/DeviceRGB CS -/DeviceRGB cs -q -1.000000 0.000000 -0.000000 1.000000 84.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 94.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 178.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 210.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 182.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 154.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 234.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 262.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 98.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 126.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 126.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 126.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 70.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 70.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 262.000000 70.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 42.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 42.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 42.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -28.000000 20.000000 l -28.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 122.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 234.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 234.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 122.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 238.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 238.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 122.000000 238.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 42.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 178.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 206.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 196.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 206.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 66.000000 98.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 224.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 150.000000 70.000000 cm -0.049479 0.742188 0.545395 scn -0.000000 20.000000 m -84.000000 20.000000 l -84.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 38.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 10.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 168.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 122.000000 14.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 140.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 94.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -0.000000 20.000000 m -56.000000 20.000000 l -56.000000 0.000000 l -0.000000 0.000000 l -0.000000 20.000000 l -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 210.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 182.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 112.000000 182.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 210.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 154.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 126.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 252.000000 42.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 70.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 0.000000 238.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 126.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 42.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 28.000000 70.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 280.000000 266.000000 cm -0.854902 0.850980 0.992157 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 84.000000 154.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q -q -1.000000 0.000000 -0.000000 1.000000 56.000000 126.000000 cm -0.049479 0.742188 0.545395 scn -20.000000 10.000000 m -20.000000 4.477153 15.522847 0.000000 10.000000 0.000000 c -4.477152 0.000000 0.000000 4.477153 0.000000 10.000000 c -0.000000 15.522848 4.477152 20.000000 10.000000 20.000000 c -15.522847 20.000000 20.000000 15.522848 20.000000 10.000000 c -h -f -n -Q - -endstream -endobj - -3 0 obj - 37227 -endobj - -4 0 obj - << /Annots [] - /Type /Page - /MediaBox [ 0.000000 0.000000 300.000000 300.000000 ] - /Resources 1 0 R - /Contents 2 0 R - /Parent 5 0 R - >> -endobj - -5 0 obj - << /Kids [ 4 0 R ] - /Count 1 - /Type /Pages - >> -endobj - -6 0 obj - << /Pages 5 0 R - /Type /Catalog - >> -endobj - -xref -0 7 -0000000000 65535 f -0000000010 00000 n -0000000034 00000 n -0000037317 00000 n -0000037341 00000 n -0000037516 00000 n -0000037590 00000 n -trailer -<< /ID [ (some) (id) ] - /Root 6 0 R - /Size 7 ->> -startxref -37649 -%%EOF \ No newline at end of file diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4-Dark.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4-Dark.pdf deleted file mode 100644 index 05a60bf8e..000000000 Binary files a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4-Dark.pdf and /dev/null differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4.pdf b/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4.pdf deleted file mode 100644 index aac8e76c0..000000000 Binary files a/ElementX/Resources/Assets.xcassets/Images/Authentication/Onboarding Screen Page 4.imageset/OnboardingSplashScreenPage4.pdf and /dev/null differ diff --git a/ElementX/Resources/Assets.xcassets/Images/Authentication/Server Selection Icon.imageset/authentication_server_selection_icon.svg b/ElementX/Resources/Assets.xcassets/Images/Authentication/Server Selection Icon.imageset/authentication_server_selection_icon.svg index 17b23458e..51b969948 100644 --- a/ElementX/Resources/Assets.xcassets/Images/Authentication/Server Selection Icon.imageset/authentication_server_selection_icon.svg +++ b/ElementX/Resources/Assets.xcassets/Images/Authentication/Server Selection Icon.imageset/authentication_server_selection_icon.svg @@ -1,5 +1,3 @@ - - - - + + diff --git a/ElementX/Resources/Localizations/en.lproj/Untranslated.strings b/ElementX/Resources/Localizations/en.lproj/Untranslated.strings index 40523ae51..2bb6fb59d 100644 --- a/ElementX/Resources/Localizations/en.lproj/Untranslated.strings +++ b/ElementX/Resources/Localizations/en.lproj/Untranslated.strings @@ -41,7 +41,7 @@ "session_verification_banner_title" = "Help keep your messages secure"; "session_verification_banner_message" = "Looks like you’re using a new device. Verify its you."; -"server_selection_server_footer" = "You can only connect to a server that has already been set up"; +"server_selection_server_footer" = "You can only connect to an existing server"; "login_mobile_device" = "Mobile"; "login_tablet_device" = "Tablet"; @@ -56,3 +56,17 @@ // Room Details "room_details_title" = "Info"; "room_details_about_section_title" = "About"; +"room_details_copy_link" = "Copy Link"; + +// Onboarding +"ftue_auth_carousel_welcome_title" = "Be in your Element"; +"ftue_auth_carousel_welcome_body" = "Welcome to the %@ Beta. Supercharged, for speed and simplicity."; + +// Sign in +"ftue_auth_sign_in_enter_details" = "Enter your details"; + +// Bug report +"bug_report_screen_title" = "Report a bug"; +"bug_report_screen_description" = "Please describe the bug. What did you do? What did you expect to happen? What actually happened. Please go into as much detail as you can."; +"bug_report_screen_include_logs" = "Send logs to help"; +"bug_report_screen_logs_description" = "To check things work as intended, logs will be sent with your message. These will be private. To just send your message, turn off this setting."; diff --git a/ElementX/Sources/Generated/Assets.swift b/ElementX/Sources/Generated/Assets.swift index f9e231a4e..c45a0f33d 100644 --- a/ElementX/Sources/Generated/Assets.swift +++ b/ElementX/Sources/Generated/Assets.swift @@ -25,10 +25,10 @@ internal enum Asset { internal enum Images { internal static let analyticsCheckmark = ImageAsset(name: "Images/AnalyticsCheckmark") internal static let analyticsLogo = ImageAsset(name: "Images/AnalyticsLogo") - internal static let onboardingScreenPage1 = ImageAsset(name: "Images/Onboarding Screen Page 1") - internal static let onboardingScreenPage2 = ImageAsset(name: "Images/Onboarding Screen Page 2") - internal static let onboardingScreenPage3 = ImageAsset(name: "Images/Onboarding Screen Page 3") - internal static let onboardingScreenPage4 = ImageAsset(name: "Images/Onboarding Screen Page 4") + internal static let onboardingAppLogo = ImageAsset(name: "Images/Onboarding App Logo") + internal static let onboardingBackgroundPart1 = ImageAsset(name: "Images/Onboarding Background Part 1") + internal static let onboardingBackgroundPart2 = ImageAsset(name: "Images/Onboarding Background Part 2") + internal static let onboardingBackgroundPart3 = ImageAsset(name: "Images/Onboarding Background Part 3") internal static let serverSelectionIcon = ImageAsset(name: "Images/Server Selection Icon") internal static let encryptionNormal = ImageAsset(name: "Images/encryption_normal") internal static let encryptionTrusted = ImageAsset(name: "Images/encryption_trusted") diff --git a/ElementX/Sources/Generated/Strings+Untranslated.swift b/ElementX/Sources/Generated/Strings+Untranslated.swift index 0d0c604d2..c2860ed6c 100644 --- a/ElementX/Sources/Generated/Strings+Untranslated.swift +++ b/ElementX/Sources/Generated/Strings+Untranslated.swift @@ -16,10 +16,26 @@ extension ElementL10n { public static let actionConfirm = ElementL10n.tr("Untranslated", "action_confirm") /// Match public static let actionMatch = ElementL10n.tr("Untranslated", "action_match") + /// Please describe the bug. What did you do? What did you expect to happen? What actually happened. Please go into as much detail as you can. + public static let bugReportScreenDescription = ElementL10n.tr("Untranslated", "bug_report_screen_description") + /// Send logs to help + public static let bugReportScreenIncludeLogs = ElementL10n.tr("Untranslated", "bug_report_screen_include_logs") + /// To check things work as intended, logs will be sent with your message. These will be private. To just send your message, turn off this setting. + public static let bugReportScreenLogsDescription = ElementL10n.tr("Untranslated", "bug_report_screen_logs_description") + /// Report a bug + public static let bugReportScreenTitle = ElementL10n.tr("Untranslated", "bug_report_screen_title") /// %@ iOS public static func defaultSessionDisplayName(_ p1: Any) -> String { return ElementL10n.tr("Untranslated", "default_session_display_name", String(describing: p1)) } + /// Welcome to the %@ Beta. Supercharged, for speed and simplicity. + public static func ftueAuthCarouselWelcomeBody(_ p1: Any) -> String { + return ElementL10n.tr("Untranslated", "ftue_auth_carousel_welcome_body", String(describing: p1)) + } + /// Be in your Element + public static let ftueAuthCarouselWelcomeTitle = ElementL10n.tr("Untranslated", "ftue_auth_carousel_welcome_title") + /// Enter your details + public static let ftueAuthSignInEnterDetails = ElementL10n.tr("Untranslated", "ftue_auth_sign_in_enter_details") /// Mobile public static let loginMobileDevice = ElementL10n.tr("Untranslated", "login_mobile_device") /// Tablet @@ -70,6 +86,8 @@ extension ElementL10n { public static let notification = ElementL10n.tr("Untranslated", "Notification") /// About public static let roomDetailsAboutSectionTitle = ElementL10n.tr("Untranslated", "room_details_about_section_title") + /// Copy Link + public static let roomDetailsCopyLink = ElementL10n.tr("Untranslated", "room_details_copy_link") /// Info public static let roomDetailsTitle = ElementL10n.tr("Untranslated", "room_details_title") /// Failed loading messages @@ -96,7 +114,7 @@ extension ElementL10n { public static let screenshotDetectedMessage = ElementL10n.tr("Untranslated", "screenshot_detected_message") /// You took a screenshot public static let screenshotDetectedTitle = ElementL10n.tr("Untranslated", "screenshot_detected_title") - /// You can only connect to a server that has already been set up + /// You can only connect to an existing server public static let serverSelectionServerFooter = ElementL10n.tr("Untranslated", "server_selection_server_footer") /// Looks like you’re using a new device. Verify its you. public static let sessionVerificationBannerMessage = ElementL10n.tr("Untranslated", "session_verification_banner_message") diff --git a/ElementX/Sources/Other/AvatarSize.swift b/ElementX/Sources/Other/AvatarSize.swift index 27e39ee7a..293f26fab 100644 --- a/ElementX/Sources/Other/AvatarSize.swift +++ b/ElementX/Sources/Other/AvatarSize.swift @@ -56,7 +56,7 @@ enum UserAvatarSizeOnScreen { case .settings: return 60 case .roomDetails: - return 32 + return 44 } } } @@ -73,7 +73,7 @@ enum RoomAvatarSizeOnScreen { case .home: return 44 case .details: - return 100 + return 70 } } } diff --git a/ElementX/Sources/Other/SwiftUI/Views/FormSectionHeaderStyle.swift b/ElementX/Sources/Other/SwiftUI/Views/FormSectionHeaderStyle.swift new file mode 100644 index 000000000..cc89728fd --- /dev/null +++ b/ElementX/Sources/Other/SwiftUI/Views/FormSectionHeaderStyle.swift @@ -0,0 +1,33 @@ +// +// Copyright 2022 New Vector Ltd +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI + +/// Style for section header +struct FormSectionHeaderStyle: ViewModifier { + func body(content: Content) -> some View { + content + .foregroundColor(.element.secondaryContent) + .font(.element.footnoteBold) + } +} + +extension View { + /// Applies the `FormSectionHeaderStyle` modifier to the view + func formSectionHeader() -> some View { + modifier(FormSectionHeaderStyle()) + } +} diff --git a/ElementX/Sources/Other/SwiftUI/Views/SettingsActionButton.swift b/ElementX/Sources/Other/SwiftUI/Views/SettingsActionButton.swift new file mode 100644 index 000000000..e386e3a79 --- /dev/null +++ b/ElementX/Sources/Other/SwiftUI/Views/SettingsActionButton.swift @@ -0,0 +1,47 @@ +// +// Copyright 2023 New Vector Ltd +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI + +/// Small squared action button for settings screens +struct SettingsActionButton: View { + // MARK: Public + + let title: String + let image: Image + let action: () -> Void + + // MARK: Private + + @ScaledMetric private var menuIconSize = 54.0 + + // MARK: Views + + var body: some View { + Button(action: action) { + VStack { + image + .renderingMode(.template) + .foregroundColor(.element.primaryContent) + .frame(width: menuIconSize, height: menuIconSize) + .background(RoundedRectangle(cornerRadius: 16).fill(Color.element.background)) + Text(title) + .foregroundColor(.element.secondaryContent) + .font(.element.subheadline) + } + } + } +} diff --git a/ElementX/Sources/Other/SwiftUI/Views/SettingsDefaultRow.swift b/ElementX/Sources/Other/SwiftUI/Views/SettingsDefaultRow.swift new file mode 100644 index 000000000..743fe6b4c --- /dev/null +++ b/ElementX/Sources/Other/SwiftUI/Views/SettingsDefaultRow.swift @@ -0,0 +1,58 @@ +// +// Copyright 2023 New Vector Ltd +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI + +/// Default row that can be reused for settings screens +struct SettingsDefaultRow: View { + // MARK: Public + + let title: String + let image: Image + let action: () -> Void + + // MARK: Private + + @ScaledMetric private var menuIconSize = 30.0 + private let listRowInsets = EdgeInsets(top: 8, leading: 16, bottom: 8, trailing: 16) + + // MARK: Views + + var body: some View { + Button(action: action) { + HStack(spacing: 16) { + image + .foregroundColor(.element.systemGray) + .padding(4) + .background(Color.element.systemGray6) + .clipShape(RoundedRectangle(cornerRadius: 8)) + .frame(width: menuIconSize, height: menuIconSize) + + Text(title) + .font(.element.body) + .foregroundColor(.element.primaryContent) + + Spacer() + + Image(systemName: "chevron.forward") + .foregroundColor(.element.tertiaryContent) + } + } + .listRowInsets(listRowInsets) + .listRowSeparator(.hidden) + .foregroundColor(.element.primaryContent) + } +} diff --git a/ElementX/Sources/Screens/Authentication/AuthenticationIconImage.swift b/ElementX/Sources/Screens/Authentication/AuthenticationIconImage.swift index 6da243a1b..3058ee3fe 100644 --- a/ElementX/Sources/Screens/Authentication/AuthenticationIconImage.swift +++ b/ElementX/Sources/Screens/Authentication/AuthenticationIconImage.swift @@ -18,16 +18,17 @@ import SwiftUI /// An image that is styled for use as the screen icon in the onboarding flow. struct AuthenticationIconImage: View { - let image: ImageAsset + let image: Image var body: some View { - Image(image.name) + image .resizable() .renderingMode(.template) - .foregroundColor(.element.accent) - .frame(width: 90, height: 90) - .background(.white, in: Circle().inset(by: 2)) + .foregroundColor(.element.secondaryContent) .accessibilityHidden(true) + .padding(20) + .frame(width: 72, height: 72) + .background(RoundedRectangle(cornerRadius: 14).fill(Color.element.quinaryContent)) } } @@ -35,6 +36,6 @@ struct AuthenticationIconImage: View { struct AuthenticationIconImage_Previews: PreviewProvider { static var previews: some View { - AuthenticationIconImage(image: Asset.Images.serverSelectionIcon) + AuthenticationIconImage(image: Image(asset: Asset.Images.serverSelectionIcon)) } } diff --git a/ElementX/Sources/Screens/Authentication/LoginScreen/LoginCoordinator.swift b/ElementX/Sources/Screens/Authentication/LoginScreen/LoginCoordinator.swift index 9209d7f07..beb08c51b 100644 --- a/ElementX/Sources/Screens/Authentication/LoginScreen/LoginCoordinator.swift +++ b/ElementX/Sources/Screens/Authentication/LoginScreen/LoginCoordinator.swift @@ -197,13 +197,11 @@ final class LoginCoordinator: CoordinatorProtocol { /// Presents the server selection screen as a modal. private func presentServerSelectionScreen() { - let serverSelectionNavigationStackCoordinator = NavigationStackCoordinator() - - let userNotificationController = UserNotificationController(rootCoordinator: serverSelectionNavigationStackCoordinator) + let userNotificationController = UserNotificationController(rootCoordinator: navigationStackCoordinator) let parameters = ServerSelectionCoordinatorParameters(authenticationService: authenticationService, userNotificationController: userNotificationController, - isModallyPresented: true) + isModallyPresented: false) let coordinator = ServerSelectionCoordinator(parameters: parameters) coordinator.callback = { [weak self, weak coordinator] action in @@ -211,9 +209,7 @@ final class LoginCoordinator: CoordinatorProtocol { self.serverSelectionCoordinator(coordinator, didCompleteWith: action) } - serverSelectionNavigationStackCoordinator.setRootCoordinator(coordinator) - - navigationStackCoordinator.setSheetCoordinator(userNotificationController) + navigationStackCoordinator.push(coordinator) } /// Handles the result from the server selection modal, dismissing it after updating the view. @@ -223,7 +219,7 @@ final class LoginCoordinator: CoordinatorProtocol { updateViewModel() } - navigationStackCoordinator.setSheetCoordinator(nil) + navigationStackCoordinator.pop() } /// Shows the forgot password screen. diff --git a/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginScreen.swift b/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginScreen.swift index 75a46cc51..cfba18304 100644 --- a/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginScreen.swift +++ b/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginScreen.swift @@ -29,15 +29,10 @@ struct LoginScreen: View { VStack(spacing: 0) { header .padding(.top, UIConstants.topPaddingToNavigationBar) - .padding(.bottom, 36) + .padding(.bottom, 32) serverInfo - .padding(.leading, 12) - - Rectangle() - .fill(Color.element.quinaryContent) - .frame(height: 1) - .padding(.vertical, 21) + .padding(.bottom, 32) switch context.viewState.loginMode { case .password: @@ -59,7 +54,7 @@ struct LoginScreen: View { /// The header containing a Welcome Back title. var header: some View { Text(ElementL10n.ftueAuthWelcomeBackTitle) - .font(.element.title2Bold) + .font(.element.title1Bold) .multilineTextAlignment(.center) .foregroundColor(.element.primaryContent) } @@ -73,7 +68,13 @@ struct LoginScreen: View { /// The form with text fields for username and password, along with a submit button. var loginForm: some View { - VStack(spacing: 14) { + VStack(alignment: .leading, spacing: 0) { + Text(ElementL10n.ftueAuthSignInEnterDetails) + .font(.element.subheadline) + .foregroundColor(.element.primaryContent) + .padding(.horizontal, 16) + .padding(.bottom, 8) + TextField(ElementL10n.loginSigninUsernameHint, text: $context.username) .focused($isUsernameFocused) .textFieldStyle(.elementInput()) @@ -84,8 +85,7 @@ struct LoginScreen: View { .onChange(of: isUsernameFocused, perform: usernameFocusChanged) .onSubmit { isPasswordFocused = true } .accessibilityIdentifier("usernameTextField") - - Spacer().frame(height: 20) + .padding(.bottom, 20) SecureField(ElementL10n.loginSignupPasswordHint, text: $context.password) .focused($isPasswordFocused) @@ -95,15 +95,18 @@ struct LoginScreen: View { .onSubmit(submit) .accessibilityIdentifier("passwordTextField") - Button { context.send(viewAction: .forgotPassword) } label: { - Text(ElementL10n.ftueAuthForgotPassword) - .font(.element.body) - } - .frame(maxWidth: .infinity, alignment: .trailing) - .padding(.bottom, 8) + // uncomment this piece of code once forgot password will be available +// Button { context.send(viewAction: .forgotPassword) } label: { +// Text(ElementL10n.ftueAuthForgotPassword) +// .font(.element.body) +// } +// .frame(maxWidth: .infinity, alignment: .trailing) +// .padding(.bottom, 8) + Spacer().frame(height: 32) + Button(action: submit) { - Text(ElementL10n.loginSignupSubmit) + Text(ElementL10n.loginContinue) } .buttonStyle(.elementAction(.xLarge)) .disabled(!context.viewState.canSubmit) diff --git a/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginServerInfoSection.swift b/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginServerInfoSection.swift index 2a7e950fe..7a282edce 100644 --- a/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginServerInfoSection.swift +++ b/ElementX/Sources/Screens/Authentication/LoginScreen/View/LoginServerInfoSection.swift @@ -29,25 +29,36 @@ struct LoginServerInfoSection: View { // MARK: - Views var body: some View { - VStack(alignment: .leading, spacing: 4) { + VStack(alignment: .leading, spacing: 8) { Text(ElementL10n.ftueAuthSignInChooseServerHeader) .font(.element.subheadline) - .foregroundColor(.element.secondaryContent) + .foregroundColor(.element.primaryContent) + .padding(.horizontal, 16) - HStack { - Text(address) - .font(.element.body) - .foregroundColor(.element.primaryContent) - - Spacer() - - Button(action: editAction) { - Text(ElementL10n.edit) - .padding(.vertical, 2) + Button(action: editAction) { + HStack { + Text(address) + .font(.element.subheadlineBold) + .foregroundColor(.element.primaryContent) + .padding(.horizontal, 16) + .padding(.vertical) + + Spacer() + + Image(systemName: "chevron.right") + .foregroundColor(.element.tertiaryContent) + .padding(.trailing, 16) } - .buttonStyle(.elementGhost()) - .accessibilityIdentifier("editServerButton") + .background(RoundedRectangle(cornerRadius: 14).fill(Color.element.system)) } + .accessibilityIdentifier("editServerButton") } } } + +struct LoginServerInfoSection_Previews: PreviewProvider { + static var previews: some View { + LoginServerInfoSection(address: "matrix.org", editAction: { }) + .padding() + } +} diff --git a/ElementX/Sources/Screens/Authentication/ServerSelection/ServerSelectionModels.swift b/ElementX/Sources/Screens/Authentication/ServerSelection/ServerSelectionModels.swift index 7cb2e3fa1..4f64cb688 100644 --- a/ElementX/Sources/Screens/Authentication/ServerSelection/ServerSelectionModels.swift +++ b/ElementX/Sources/Screens/Authentication/ServerSelection/ServerSelectionModels.swift @@ -38,7 +38,7 @@ struct ServerSelectionViewState: BindableState { /// The title shown on the confirm button. var buttonTitle: String { - isModallyPresented ? ElementL10n.actionConfirm : ElementL10n.actionNext + isModallyPresented ? ElementL10n.continue : ElementL10n.actionNext } /// The text field is showing an error. diff --git a/ElementX/Sources/Screens/Authentication/ServerSelection/View/ServerSelectionScreen.swift b/ElementX/Sources/Screens/Authentication/ServerSelection/View/ServerSelectionScreen.swift index 9ab8c448d..b54438733 100644 --- a/ElementX/Sources/Screens/Authentication/ServerSelection/View/ServerSelectionScreen.swift +++ b/ElementX/Sources/Screens/Authentication/ServerSelection/View/ServerSelectionScreen.swift @@ -40,7 +40,7 @@ struct ServerSelectionScreen: View { /// The title, message and icon at the top of the screen. var header: some View { VStack(spacing: 8) { - AuthenticationIconImage(image: Asset.Images.serverSelectionIcon) + AuthenticationIconImage(image: Image(asset: Asset.Images.serverSelectionIcon)) .padding(.bottom, 8) Text(ElementL10n.ftueAuthChooseServerTitle) @@ -51,13 +51,14 @@ struct ServerSelectionScreen: View { Text(ElementL10n.ftueAuthChooseServerSubtitle) .font(.element.body) .multilineTextAlignment(.center) - .foregroundColor(.element.secondaryContent) + .foregroundColor(.element.tertiaryContent) } + .padding(.horizontal, 16) } /// The text field and confirm button where the user enters a server URL. var serverForm: some View { - VStack(alignment: .leading, spacing: 12) { + VStack(alignment: .leading, spacing: 24) { TextField(ElementL10n.ftueAuthChooseServerEntryHint, text: $context.homeserverAddress) .textFieldStyle(.elementInput(labelText: ElementL10n.hsUrl, footerText: context.viewState.footerMessage, @@ -70,8 +71,6 @@ struct ServerSelectionScreen: View { .onSubmit(submit) .accessibilityIdentifier("addressTextField") - Divider() - TextField(ElementL10n.ftueAuthChooseServerEntryHint, text: $context.slidingSyncProxyAddress) .textFieldStyle(.elementInput(labelText: "Sliding sync proxy URL")) .keyboardType(.URL) @@ -80,6 +79,7 @@ struct ServerSelectionScreen: View { .submitLabel(.done) .onSubmit(submit) .accessibilityIdentifier("slidingSyncProxyAddressTextField") + .padding(.bottom, 8) Button(action: submit) { Text(context.viewState.buttonTitle) diff --git a/ElementX/Sources/Screens/BugReport/BugReportModels.swift b/ElementX/Sources/Screens/BugReport/BugReportModels.swift index 4dd49bfe2..f5242e437 100644 --- a/ElementX/Sources/Screens/BugReport/BugReportModels.swift +++ b/ElementX/Sources/Screens/BugReport/BugReportModels.swift @@ -38,6 +38,5 @@ struct BugReportViewStateBindings { enum BugReportViewAction { case cancel case submit - case toggleSendLogs case removeScreenshot } diff --git a/ElementX/Sources/Screens/BugReport/BugReportViewModel.swift b/ElementX/Sources/Screens/BugReport/BugReportViewModel.swift index 3f4a75acf..781f3fa91 100644 --- a/ElementX/Sources/Screens/BugReport/BugReportViewModel.swift +++ b/ElementX/Sources/Screens/BugReport/BugReportViewModel.swift @@ -41,8 +41,6 @@ class BugReportViewModel: BugReportViewModelType, BugReportViewModelProtocol { callback?(.cancel) case .submit: await submitBugReport() - case .toggleSendLogs: - context.sendingLogsEnabled.toggle() case .removeScreenshot: state.screenshot = nil } diff --git a/ElementX/Sources/Screens/BugReport/View/BugReportScreen.swift b/ElementX/Sources/Screens/BugReport/View/BugReportScreen.swift index cbca7e5ac..4d478c24e 100644 --- a/ElementX/Sources/Screens/BugReport/View/BugReportScreen.swift +++ b/ElementX/Sources/Screens/BugReport/View/BugReportScreen.swift @@ -26,93 +26,81 @@ struct BugReportScreen: View { @ObservedObject var context: BugReportViewModel.Context var body: some View { - GeometryReader { geometry in - VStack { - ScrollView { - mainContent - .padding(.top, 50) - .padding(.horizontal, horizontalPadding) - } - .introspectScrollView { scrollView in - scrollView.keyboardDismissMode = .onDrag - } - - buttons - .padding(.horizontal, horizontalPadding) - .padding(.bottom, geometry.safeAreaInsets.bottom > 0 ? 0 : 16) - } - .navigationTitle(ElementL10n.titleActivityBugReport) - .toolbar { - if context.viewState.isModallyPresented { - ToolbarItem(placement: .cancellationAction) { - Button(ElementL10n.actionCancel) { - context.send(viewAction: .cancel) - } - } - } - } - .interactiveDismissDisabled() + ScrollView { + mainContent + .padding(.top, 50) + .padding(.horizontal, horizontalPadding) } + .scrollDismissesKeyboard(.immediately) + .background(Color.element.system) + .navigationTitle(ElementL10n.bugReportScreenTitle) + .navigationBarTitleDisplayMode(.inline) + .toolbar { toolbar } + .interactiveDismissDisabled() } - + /// The main content of the view to be shown in a scroll view. var mainContent: some View { - VStack(alignment: .leading, spacing: 12) { - Text(ElementL10n.sendBugReportDescription) - .accessibilityIdentifier("reportBugDescription") - ZStack(alignment: .topLeading) { - RoundedRectangle(cornerRadius: 8, style: .continuous) - .fill(Color.element.system) - - if context.reportText.isEmpty { - Text(ElementL10n.sendBugReportPlaceholder) - .foregroundColor(Color.element.secondaryContent) - .padding(.horizontal, 8) - .padding(.vertical, 12) - } - TextEditor(text: $context.reportText) - .padding(4) - .background(Color.clear) - .cornerRadius(8) - .accessibilityIdentifier("reportTextView") - .introspectTextView { textView in - textView.backgroundColor = .clear - } - } - .frame(maxWidth: .infinity) - .frame(height: 300) - .font(.body) - Text(ElementL10n.sendBugReportLogsDescription) - .accessibilityIdentifier("sendLogsDescription") - HStack(spacing: 12) { - Toggle(ElementL10n.sendBugReportIncludeLogs, isOn: $context.sendingLogsEnabled) - .toggleStyle(ElementToggleStyle()) - .accessibilityIdentifier("sendLogsToggle") - Text(ElementL10n.sendBugReportIncludeLogs) - .accessibilityIdentifier("sendLogsText") - } - .onTapGesture { - context.send(viewAction: .toggleSendLogs) - } + VStack(alignment: .leading, spacing: 24) { + descriptionTextEditor + sendLogsToggle screenshot } } - /// The action buttons shown at the bottom of the view. - var buttons: some View { - VStack { - Button { context.send(viewAction: .submit) } label: { - Text(ElementL10n.actionSend) + @ViewBuilder + private var descriptionTextEditor: some View { + ZStack(alignment: .topLeading) { + RoundedRectangle(cornerRadius: 14, style: .continuous) + .fill(Color.element.background) + + TextEditor(text: $context.reportText) + .tint(.element.brand) + .padding(.horizontal, 10) + .padding(.vertical, 4) + .background(Color.clear) + .cornerRadius(14) + .accessibilityIdentifier("reportTextView") + .introspectTextView { textView in + textView.backgroundColor = .clear + } + + if context.reportText.isEmpty { + Text(ElementL10n.bugReportScreenDescription) + .font(.element.body) + .foregroundColor(Color.element.secondaryContent) + .padding(.horizontal, 16) + .padding(.vertical, 12) + .allowsHitTesting(false) } - .frame(maxWidth: .infinity) - .padding(.vertical, 16) - .disabled(context.reportText.count < 5) - .accessibilityIdentifier("sendButton") + + RoundedRectangle(cornerRadius: 14, style: .continuous) + .stroke(Color.element.quaternaryContent) + } + .frame(maxWidth: .infinity) + .frame(height: 300) + .font(.body) + } + + @ViewBuilder + private var sendLogsToggle: some View { + VStack(spacing: 8) { + Toggle(ElementL10n.bugReportScreenIncludeLogs, isOn: $context.sendingLogsEnabled) + .tint(Color.element.brand) + .accessibilityIdentifier("sendLogsToggle") + .padding(.horizontal, 16) + .padding(.vertical, 11) + .background(RoundedRectangle(cornerRadius: 14).fill(Color.element.background)) + + Text(ElementL10n.bugReportScreenLogsDescription) + .font(.element.caption1) + .foregroundColor(Color.element.secondaryContent) + .padding(.horizontal, -8) } } - + @ViewBuilder - var screenshot: some View { + private var screenshot: some View { if let screenshot = context.viewState.screenshot { ZStack(alignment: .topTrailing) { Image(uiImage: screenshot) @@ -126,7 +114,27 @@ struct BugReportScreen: View { .offset(x: 10, y: -10) .accessibilityIdentifier("removeScreenshotButton") } - .padding(.vertical, 10) + .padding(.vertical, 16) + .padding(.horizontal, 16) + } + } + + @ToolbarContentBuilder + private var toolbar: some ToolbarContent { + if context.viewState.isModallyPresented { + ToolbarItem(placement: .cancellationAction) { + Button(ElementL10n.actionCancel) { + context.send(viewAction: .cancel) + } + } + } + + ToolbarItem(placement: .confirmationAction) { + Button(ElementL10n.actionSend) { + context.send(viewAction: .submit) + } + .disabled(context.reportText.count < 5) + .accessibilityIdentifier("sendButton") } } } diff --git a/ElementX/Sources/Screens/OnboardingScreen/OnboardingModels.swift b/ElementX/Sources/Screens/OnboardingScreen/OnboardingModels.swift index 3a9b339ac..9a568a045 100644 --- a/ElementX/Sources/Screens/OnboardingScreen/OnboardingModels.swift +++ b/ElementX/Sources/Screens/OnboardingScreen/OnboardingModels.swift @@ -60,23 +60,10 @@ struct OnboardingViewState: BindableState { } init() { - // The pun doesn't translate, so we only use it for English. - let locale = Locale.current - let page4Title = locale.identifier.hasPrefix("en") ? "Cut the slack from teams." : ElementL10n.ftueAuthCarouselWorkplaceTitle - content = [ - OnboardingPageContent(title: ElementL10n.ftueAuthCarouselSecureTitle.tinting("."), - message: ElementL10n.ftueAuthCarouselSecureBody, - image: Asset.Images.onboardingScreenPage1), - OnboardingPageContent(title: ElementL10n.ftueAuthCarouselControlTitle.tinting("."), - message: ElementL10n.ftueAuthCarouselControlBody, - image: Asset.Images.onboardingScreenPage2), - OnboardingPageContent(title: ElementL10n.ftueAuthCarouselEncryptedTitle.tinting("."), - message: ElementL10n.ftueAuthCarouselEncryptedBody, - image: Asset.Images.onboardingScreenPage3), - OnboardingPageContent(title: page4Title.tinting("."), - message: ElementL10n.ftueAuthCarouselWorkplaceBody(InfoPlistReader.target.bundleDisplayName), - image: Asset.Images.onboardingScreenPage4) + OnboardingPageContent(title: ElementL10n.ftueAuthCarouselWelcomeTitle.tinting(".", color: .element.accent), + message: ElementL10n.ftueAuthCarouselWelcomeBody(InfoPlistReader.target.bundleDisplayName), + image: Asset.Images.onboardingAppLogo) ] bindings = OnboardingBindings() } diff --git a/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingBackgroundView.swift b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingBackgroundView.swift new file mode 100644 index 000000000..626e29955 --- /dev/null +++ b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingBackgroundView.swift @@ -0,0 +1,68 @@ +// +// Copyright 2023 New Vector Ltd +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import DesignKit +import SwiftUI + +/// A glossy animated background view designed for the onboarding screen +struct OnboardingBackgroundView: View { + @Environment(\.colorScheme) private var colorScheme + + @State private var factor = 0.0 + @State private var isReversed = false + + private let step = 0.001 + private let timer = Timer.publish(every: 0.01, on: .main, in: .common).autoconnect() + + var body: some View { + GeometryReader { geometry in + ZStack { + Image(asset: Asset.Images.onboardingBackgroundPart1) + .position(x: geometry.size.width * 0.125 - factor * geometry.size.width * 0.25, y: (1.0 - factor) * geometry.size.height * 0.55) + Image(asset: Asset.Images.onboardingBackgroundPart2) + .position(x: geometry.size.width * 1.05, y: factor * geometry.size.height * 0.45) + Image(asset: Asset.Images.onboardingBackgroundPart3) + .position(x: factor * geometry.size.width, y: geometry.size.height * 1.05 - factor * geometry.size.height * 0.08) + } + .frame(width: geometry.size.width, height: geometry.size.height) + .onReceive(timer) { _ in + if isReversed { + guard factor > 0 else { + isReversed = false + factor = step + return + } + + factor -= step + } else { + guard factor < 1 else { + isReversed = true + factor = 1 - step + return + } + + factor += 0.001 + } + } + } + } +} + +struct OnboardingBackgroundView_Previews: PreviewProvider { + static var previews: some View { + OnboardingBackgroundView() + } +} diff --git a/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingPageView.swift b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingPageView.swift index f81c2316b..7a79fc366 100644 --- a/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingPageView.swift +++ b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingPageView.swift @@ -20,27 +20,38 @@ struct OnboardingPageView: View { /// The content that this page should display. let content: OnboardingPageContent + @Environment(\.verticalSizeClass) private var verticalSizeClass + var body: some View { VStack { - Image(content.image.name) - .resizable() - .scaledToFit() - .frame(maxWidth: 310) // This value is problematic. 300 results in dropped frames - // on iPhone 12/13 Mini. 305 the same on iPhone 12/13. As of - // iOS 15, 310 seems fine on all supported screen widths 🤞. - .padding(20) - .accessibilityHidden(true) + if verticalSizeClass == .regular { + Spacer() + + Image(content.image.name) + .resizable() + .scaledToFit() + .padding(60) + .accessibilityHidden(true) + } + + Spacer() VStack(spacing: 8) { + Spacer() + Text(content.title) - .font(.element.title2Bold) + .font(.element.title1Bold) .foregroundColor(.element.primaryContent) + .multilineTextAlignment(.center) Text(content.message) .font(.element.body) .foregroundColor(.element.secondaryContent) .multilineTextAlignment(.center) } + .padding() .fixedSize(horizontal: false, vertical: true) + + Spacer() } .padding(.bottom) .padding(.horizontal, 16) diff --git a/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingScreen.swift b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingScreen.swift index 60b1abd4b..d950fc349 100644 --- a/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingScreen.swift +++ b/ElementX/Sources/Screens/OnboardingScreen/View/OnboardingScreen.swift @@ -21,7 +21,8 @@ import SwiftUI struct OnboardingScreen: View { @Environment(\.colorScheme) private var colorScheme @Environment(\.layoutDirection) private var layoutDirection - + @Environment(\.verticalSizeClass) private var verticalSizeClass + private var isLeftToRight: Bool { layoutDirection == .leftToRight } private var pageCount: Int { context.viewState.content.count } @@ -33,64 +34,68 @@ struct OnboardingScreen: View { @ObservedObject var context: OnboardingViewModel.Context var body: some View { - GeometryReader { geometry in - VStack(alignment: .leading) { - Spacer() - .frame(height: UIConstants.spacerHeight(in: geometry)) - - // The main content of the carousel - HStack(alignment: .top, spacing: 0) { - // Add a hidden page at the start of the carousel duplicating the content of the last page - OnboardingPageView(content: context.viewState.content[pageCount - 1]) - .frame(width: geometry.size.width) - .accessibilityIdentifier("hiddenPage") - - ForEach(0..