@stripe/stripe-react-native 0.20.0 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -1
- package/android/build.gradle +1 -0
- package/android/gradle.properties +1 -1
- package/android/proguard-rules.txt +7 -0
- package/android/src/main/java/com/reactnativestripesdk/CardFieldView.kt +4 -0
- package/android/src/main/java/com/reactnativestripesdk/CollectBankAccountLauncherFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/FinancialConnectionsSheetFragment.kt +4 -1
- package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonManager.kt +5 -0
- package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonView.kt +46 -8
- package/android/src/main/java/com/reactnativestripesdk/GooglePayFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/GooglePayLauncherFragment.kt +132 -0
- package/android/src/main/java/com/reactnativestripesdk/GooglePayRequestHelper.kt +144 -0
- package/android/src/main/java/com/reactnativestripesdk/PaymentLauncherFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/PaymentSheetAppearance.kt +10 -9
- package/android/src/main/java/com/reactnativestripesdk/PaymentSheetFragment.kt +8 -3
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +142 -21
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +3 -1
- package/android/src/main/java/com/reactnativestripesdk/addresssheet/AddressLauncherFragment.kt +111 -0
- package/android/src/main/java/com/reactnativestripesdk/addresssheet/AddressSheetEvent.kt +28 -0
- package/android/src/main/java/com/reactnativestripesdk/addresssheet/AddressSheetView.kt +178 -0
- package/android/src/main/java/com/reactnativestripesdk/addresssheet/AddressSheetViewManager.kt +67 -0
- package/android/src/main/java/com/reactnativestripesdk/utils/Extensions.kt +5 -0
- package/android/src/main/java/com/reactnativestripesdk/utils/Mappers.kt +1 -1
- package/android/src/main/res/drawable/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable/googlepay_button_background_shape.xml +11 -0
- package/android/src/main/res/drawable/googlepay_mark_background.xml +12 -0
- package/android/src/main/res/drawable/googlepay_mark_content.xml +27 -0
- package/android/src/main/res/drawable/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ar/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-ar/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-bg/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-bg/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ca/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-ca/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-cs/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-cs/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-da/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-da/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-de/book_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-de/buy_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-de/checkout_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-de/donate_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-de/order_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-de/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-de/subscribe_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-el/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-el/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-el/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-el/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-el/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-el/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-el/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-et/book_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-et/buy_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-et/checkout_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-et/donate_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-et/order_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-et/pay_with_googlepay_button_content.xml +8 -8
- package/android/src/main/res/drawable-et/subscribe_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/book_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/buy_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/checkout_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/donate_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/order_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fi/pay_with_googlepay_button_content.xml +8 -8
- package/android/src/main/res/drawable-fi/subscribe_with_googlepay_button_content.xml +15 -0
- package/android/src/main/res/drawable-fr/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-fr/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-fr/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-fr/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-fr/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-fr/pay_with_googlepay_button_content.xml +5 -5
- package/android/src/main/res/drawable-fr/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-hr/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-hr/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-id/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-id/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-it/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-it/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ja/pay_with_googlepay_button_content.xml +5 -5
- package/android/src/main/res/drawable-ja/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ko/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-ko/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ms/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-ms/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-nl/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-nl/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-no/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-no/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-pl/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-pl/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-ru/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-ru/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sk/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-sk/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sl/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-sl/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sr/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-sr/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-sv/pay_with_googlepay_button_content.xml +4 -4
- package/android/src/main/res/drawable-sv/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-th/pay_with_googlepay_button_content.xml +6 -6
- package/android/src/main/res/drawable-th/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-tr/pay_with_googlepay_button_content.xml +7 -7
- package/android/src/main/res/drawable-tr/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/book_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/buy_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/checkout_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/donate_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/order_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/drawable-uk/pay_with_googlepay_button_content.xml +5 -5
- package/android/src/main/res/drawable-uk/subscribe_with_googlepay_button_content.xml +14 -0
- package/android/src/main/res/layout/book_with_googlepay_button.xml +20 -0
- package/android/src/main/res/layout/buy_with_googlepay_button.xml +20 -0
- package/android/src/main/res/layout/checkout_with_googlepay_button.xml +20 -0
- package/android/src/main/res/layout/donate_with_googlepay_button.xml +20 -0
- package/android/src/main/res/layout/googlepay_mark_button.xml +18 -0
- package/android/src/main/res/layout/order_with_googlepay_button.xml +20 -0
- package/android/src/main/res/layout/pay_with_googlepay_button.xml +10 -24
- package/android/src/main/res/layout/plain_googlepay_button.xml +17 -0
- package/android/src/main/res/layout/subscribe_with_googlepay_button.xml +20 -0
- package/android/src/main/res/values/googlepay_strings.xml +3 -2
- package/ios/AddressSheet/AddressSheetUtils.swift +98 -0
- package/ios/AddressSheet/AddressSheetView.swift +131 -0
- package/ios/AddressSheet/AddressSheetViewManager.m +25 -0
- package/ios/AddressSheet/AddressSheetViewManager.swift +19 -0
- package/ios/ApplePayButtonManager.m +5 -0
- package/ios/ApplePayButtonManager.swift +3 -1
- package/ios/ApplePayButtonView.swift +21 -0
- package/ios/ApplePayUtils.swift +187 -0
- package/ios/ApplePayViewController.swift +279 -0
- package/ios/PaymentPassFinder.swift +61 -0
- package/ios/PaymentSheetAppearance.swift +24 -23
- package/ios/{pushprovisioning → PushProvisioning}/AddToWalletButtonManager.m +0 -0
- package/ios/{pushprovisioning → PushProvisioning}/AddToWalletButtonManager.swift +0 -0
- package/ios/{pushprovisioning → PushProvisioning}/AddToWalletButtonView.swift +10 -10
- package/ios/PushProvisioning/PushProvisioningUtils.swift +87 -0
- package/ios/StripeSdk.m +29 -0
- package/ios/StripeSdk.swift +200 -130
- package/ios/Tests/AddressSheetUtilsTests.swift +273 -0
- package/ios/Tests/PushProvisioningTests.swift +14 -11
- package/jest/mock.js +44 -0
- package/lib/commonjs/NativeStripeSdk.js.map +1 -1
- package/lib/commonjs/components/AddressSheet.js +2 -0
- package/lib/commonjs/components/AddressSheet.js.map +1 -0
- package/lib/commonjs/components/PlatformPayButton.js +2 -0
- package/lib/commonjs/components/PlatformPayButton.js.map +1 -0
- package/lib/commonjs/functions.js +1 -1
- package/lib/commonjs/functions.js.map +1 -1
- package/lib/commonjs/hooks/usePlatformPay.js +2 -0
- package/lib/commonjs/hooks/usePlatformPay.js.map +1 -0
- package/lib/commonjs/hooks/useStripe.js +1 -1
- package/lib/commonjs/hooks/useStripe.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/Errors.js +1 -1
- package/lib/commonjs/types/Errors.js.map +1 -1
- package/lib/commonjs/types/PlatformPay.js +2 -0
- package/lib/commonjs/types/PlatformPay.js.map +1 -0
- package/lib/commonjs/types/PushProvisioning.js +2 -0
- package/lib/commonjs/types/PushProvisioning.js.map +1 -0
- package/lib/commonjs/types/index.js +1 -1
- package/lib/commonjs/types/index.js.map +1 -1
- package/lib/module/NativeStripeSdk.js.map +1 -1
- package/lib/module/components/AddressSheet.js +2 -0
- package/lib/module/components/AddressSheet.js.map +1 -0
- package/lib/module/components/PlatformPayButton.js +2 -0
- package/lib/module/components/PlatformPayButton.js.map +1 -0
- package/lib/module/functions.js +1 -1
- package/lib/module/functions.js.map +1 -1
- package/lib/module/hooks/usePlatformPay.js +2 -0
- package/lib/module/hooks/usePlatformPay.js.map +1 -0
- package/lib/module/hooks/useStripe.js +1 -1
- package/lib/module/hooks/useStripe.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/Errors.js +1 -1
- package/lib/module/types/Errors.js.map +1 -1
- package/lib/module/types/PlatformPay.js +2 -0
- package/lib/module/types/PlatformPay.js.map +1 -0
- package/lib/module/types/PushProvisioning.js +2 -0
- package/lib/module/types/PushProvisioning.js.map +1 -0
- package/lib/module/types/index.js +1 -1
- package/lib/module/types/index.js.map +1 -1
- package/lib/typescript/src/NativeStripeSdk.d.ts +8 -1
- package/lib/typescript/src/components/AddressSheet.d.ts +53 -0
- package/lib/typescript/src/components/PlatformPayButton.d.ts +65 -0
- package/lib/typescript/src/functions.d.ts +73 -1
- package/lib/typescript/src/hooks/usePlatformPay.d.ts +70 -0
- package/lib/typescript/src/hooks/useStripe.d.ts +18 -1
- package/lib/typescript/src/index.d.ts +3 -0
- package/lib/typescript/src/types/ApplePay.d.ts +9 -0
- package/lib/typescript/src/types/Common.d.ts +12 -0
- package/lib/typescript/src/types/Errors.d.ts +9 -0
- package/lib/typescript/src/types/GooglePay.d.ts +2 -1
- package/lib/typescript/src/types/PaymentSheet.d.ts +7 -1
- package/lib/typescript/src/types/PlatformPay.d.ts +285 -0
- package/lib/typescript/src/types/PushProvisioning.d.ts +66 -0
- package/lib/typescript/src/types/components/ApplePayButtonComponent.d.ts +2 -2
- package/lib/typescript/src/types/index.d.ts +6 -44
- package/package.json +8 -1
- package/src/NativeStripeSdk.tsx +20 -0
- package/src/components/AddressSheet.tsx +82 -0
- package/src/components/PlatformPayButton.tsx +157 -0
- package/src/functions.ts +181 -0
- package/src/hooks/usePlatformPay.tsx +174 -0
- package/src/hooks/useStripe.tsx +77 -0
- package/src/index.tsx +9 -0
- package/src/types/ApplePay.ts +9 -0
- package/src/types/Common.ts +13 -0
- package/src/types/Errors.ts +11 -0
- package/src/types/GooglePay.ts +2 -1
- package/src/types/PaymentSheet.ts +7 -1
- package/src/types/PlatformPay.ts +326 -0
- package/src/types/PushProvisioning.ts +76 -0
- package/src/types/components/ApplePayButtonComponent.ts +3 -2
- package/src/types/index.ts +8 -64
- package/stripe-react-native.podspec +1 -1
- package/android/src/main/res/drawable/googlepay_button_background.xml +0 -6
- package/android/src/main/res/drawable/googlepay_button_content.xml +0 -48
- package/android/src/main/res/drawable/googlepay_button_overlay.xml +0 -12
- package/android/src/main/res/drawable-af/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-am/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-as/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-az/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-be/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bn/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bs/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cy/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-en-rau/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-en-rca/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-en-rgb/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-en-rin/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-es/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-es-res/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-eu/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fa/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fil/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr-rca/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ga/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-gl/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-gu/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-hu/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-hy/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-is/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-iw/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ka/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-kk/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-km/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-kn/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ky/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-lo/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-lt/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-lv/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-mdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-mk/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ml/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-mn/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-mr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ne/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pt-rbr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pt-rpt/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ro/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sq/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sw/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ta/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-te/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ur/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uz/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-v21/googlepay_button_background.xml +0 -7
- package/android/src/main/res/drawable-vi/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-xhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-zh-rcn/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-zh-rhk/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-zh-rtw/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-zu/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/layout/googlepay_button.xml +0 -39
- package/ios/pushprovisioning/PushProvisioningUtils.swift +0 -64
package/src/types/index.ts
CHANGED
|
@@ -26,6 +26,7 @@ import * as CardFieldInput from './components/CardFieldInput';
|
|
|
26
26
|
import * as CardFormView from './components/CardFormView';
|
|
27
27
|
import * as Token from './Token';
|
|
28
28
|
import * as FinancialConnections from './FinancialConnections';
|
|
29
|
+
import * as PlatformPay from './PlatformPay';
|
|
29
30
|
|
|
30
31
|
export {
|
|
31
32
|
ApplePay,
|
|
@@ -41,10 +42,12 @@ export {
|
|
|
41
42
|
CardFormView,
|
|
42
43
|
Token,
|
|
43
44
|
FinancialConnections,
|
|
45
|
+
PlatformPay,
|
|
44
46
|
};
|
|
45
47
|
|
|
48
|
+
export * from './PushProvisioning';
|
|
46
49
|
export * from './Errors';
|
|
47
|
-
export { Address, BillingDetails } from './Common';
|
|
50
|
+
export { Address, BillingDetails, AddressDetails } from './Common';
|
|
48
51
|
|
|
49
52
|
/**
|
|
50
53
|
* @ignore
|
|
@@ -140,15 +143,10 @@ export type InitPaymentSheetResult =
|
|
|
140
143
|
error: StripeError<PaymentSheetError>;
|
|
141
144
|
};
|
|
142
145
|
|
|
143
|
-
export type PresentPaymentSheetResult =
|
|
144
|
-
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
148
|
-
| {
|
|
149
|
-
paymentOption?: undefined;
|
|
150
|
-
error: StripeError<PaymentSheetError>;
|
|
151
|
-
};
|
|
146
|
+
export type PresentPaymentSheetResult = {
|
|
147
|
+
paymentOption?: PaymentSheet.PaymentOption | undefined;
|
|
148
|
+
error?: StripeError<PaymentSheetError> | undefined;
|
|
149
|
+
};
|
|
152
150
|
|
|
153
151
|
export type CreateTokenResult =
|
|
154
152
|
| {
|
|
@@ -270,57 +268,3 @@ export type CollectBankAccountForSetupResult =
|
|
|
270
268
|
setupIntent?: undefined;
|
|
271
269
|
error: StripeError<CollectBankAccountError>;
|
|
272
270
|
};
|
|
273
|
-
|
|
274
|
-
export type GooglePayCardToken = {
|
|
275
|
-
id: string;
|
|
276
|
-
cardLastFour: string;
|
|
277
|
-
network: number;
|
|
278
|
-
serviceProvider: number;
|
|
279
|
-
issuer: string;
|
|
280
|
-
status:
|
|
281
|
-
| 'TOKEN_STATE_NEEDS_IDENTITY_VERIFICATION'
|
|
282
|
-
| 'TOKEN_STATE_PENDING'
|
|
283
|
-
| 'TOKEN_STATE_SUSPENDED'
|
|
284
|
-
| 'TOKEN_STATE_ACTIVE'
|
|
285
|
-
| 'TOKEN_STATE_FELICA_PENDING_PROVISIONING'
|
|
286
|
-
| 'TOKEN_STATE_UNTOKENIZED';
|
|
287
|
-
};
|
|
288
|
-
|
|
289
|
-
export type IsCardInWalletResult =
|
|
290
|
-
| {
|
|
291
|
-
isInWallet: boolean;
|
|
292
|
-
token?: GooglePayCardToken;
|
|
293
|
-
error?: undefined;
|
|
294
|
-
}
|
|
295
|
-
| {
|
|
296
|
-
isInWallet?: undefined;
|
|
297
|
-
token?: undefined;
|
|
298
|
-
error: StripeError<GooglePayError>;
|
|
299
|
-
};
|
|
300
|
-
|
|
301
|
-
export type CanAddCardToWalletParams = {
|
|
302
|
-
/** The `primary_account_identifier` value from the issued card. Can be an empty string. */
|
|
303
|
-
primaryAccountIdentifier: string | null;
|
|
304
|
-
/** Last 4 digits of the card number. */
|
|
305
|
-
cardLastFour: string;
|
|
306
|
-
/** iOS only. Set this to `true` until shipping through TestFlight || App Store. If true, you must be using live cards, and have the proper iOS entitlement set up. See https://stripe.com/docs/issuing/cards/digital-wallets?platform=react-native#requesting-access-for-ios */
|
|
307
|
-
testEnv?: boolean;
|
|
308
|
-
};
|
|
309
|
-
|
|
310
|
-
export type CanAddCardToWalletResult =
|
|
311
|
-
| {
|
|
312
|
-
canAddCard: boolean;
|
|
313
|
-
details?: {
|
|
314
|
-
token?: GooglePayCardToken;
|
|
315
|
-
status?:
|
|
316
|
-
| 'MISSING_CONFIGURATION'
|
|
317
|
-
| 'UNSUPPORTED_DEVICE'
|
|
318
|
-
| 'CARD_ALREADY_EXISTS';
|
|
319
|
-
};
|
|
320
|
-
error?: undefined;
|
|
321
|
-
}
|
|
322
|
-
| {
|
|
323
|
-
canAddCard?: undefined;
|
|
324
|
-
details?: undefined;
|
|
325
|
-
error: StripeError<GooglePayError>;
|
|
326
|
-
};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
-
android:width="41dp"
|
|
3
|
-
android:height="17dp"
|
|
4
|
-
android:viewportWidth="41.0"
|
|
5
|
-
android:viewportHeight="17.0">
|
|
6
|
-
<path
|
|
7
|
-
android:pathData="M19.526,2.635L19.526,6.718L22.044,6.718C22.644,6.718 23.14,6.516 23.532,6.113C23.935,5.711 24.137,5.231 24.137,4.676C24.137,4.132 23.935,3.658 23.532,3.254C23.14,2.841 22.644,2.634 22.044,2.634L19.526,2.634L19.526,2.635ZM19.526,8.155L19.526,12.891L18.022,12.891L18.022,1.198L22.011,1.198C23.025,1.198 23.885,1.535 24.594,2.21C25.314,2.885 25.674,3.707 25.674,4.676C25.674,5.667 25.314,6.495 24.594,7.158C23.897,7.823 23.035,8.154 22.011,8.154L19.526,8.154L19.526,8.155Z"
|
|
8
|
-
android:strokeColor="#00000000"
|
|
9
|
-
android:fillType="evenOdd"
|
|
10
|
-
android:fillColor="#FFFFFF"
|
|
11
|
-
android:strokeWidth="1"/>
|
|
12
|
-
<path
|
|
13
|
-
android:pathData="M27.194,10.442C27.194,10.834 27.36,11.16 27.693,11.422C28.025,11.683 28.415,11.813 28.861,11.813C29.494,11.813 30.057,11.579 30.553,11.112C31.05,10.643 31.297,10.093 31.297,9.463C30.828,9.092 30.174,8.907 29.335,8.907C28.724,8.907 28.215,9.055 27.807,9.349C27.398,9.643 27.194,10.006 27.194,10.442M29.14,4.627C30.252,4.627 31.129,4.924 31.773,5.518C32.415,6.111 32.737,6.925 32.737,7.959L32.737,12.891L31.298,12.891L31.298,11.781L31.233,11.781C30.611,12.695 29.783,13.153 28.747,13.153C27.865,13.153 27.126,12.891 26.532,12.369C25.938,11.846 25.641,11.193 25.641,10.409C25.641,9.581 25.954,8.923 26.581,8.433C27.208,7.943 28.044,7.698 29.09,7.698C29.983,7.698 30.72,7.861 31.297,8.188L31.297,7.844C31.297,7.322 31.09,6.878 30.676,6.513C30.261,6.149 29.777,5.967 29.221,5.967C28.381,5.967 27.717,6.32 27.226,7.029L25.902,6.195C26.632,5.15 27.711,4.627 29.14,4.627"
|
|
14
|
-
android:strokeColor="#00000000"
|
|
15
|
-
android:fillType="evenOdd"
|
|
16
|
-
android:fillColor="#FFFFFF"
|
|
17
|
-
android:strokeWidth="1"/>
|
|
18
|
-
<path
|
|
19
|
-
android:pathData="M40.993,4.889l-5.02,11.531l-1.553,0l1.864,-4.035l-3.303,-7.496l1.635,0l2.387,5.749l0.033,0l2.322,-5.749z"
|
|
20
|
-
android:strokeColor="#00000000"
|
|
21
|
-
android:fillType="evenOdd"
|
|
22
|
-
android:fillColor="#FFFFFF"
|
|
23
|
-
android:strokeWidth="1"/>
|
|
24
|
-
<path
|
|
25
|
-
android:pathData="M13.448,7.134C13.448,6.661 13.408,6.205 13.332,5.768L6.988,5.768L6.988,8.356L10.622,8.356C10.466,9.199 9.994,9.917 9.278,10.398L9.278,12.079L11.447,12.079C12.716,10.908 13.448,9.179 13.448,7.134"
|
|
26
|
-
android:strokeColor="#00000000"
|
|
27
|
-
android:fillType="evenOdd"
|
|
28
|
-
android:fillColor="#4285F4"
|
|
29
|
-
android:strokeWidth="1"/>
|
|
30
|
-
<path
|
|
31
|
-
android:pathData="M6.988,13.701C8.804,13.701 10.332,13.105 11.447,12.079L9.278,10.398C8.675,10.804 7.897,11.041 6.988,11.041C5.234,11.041 3.744,9.859 3.212,8.267L0.978,8.267L0.978,9.998C2.085,12.193 4.36,13.701 6.988,13.701"
|
|
32
|
-
android:strokeColor="#00000000"
|
|
33
|
-
android:fillType="evenOdd"
|
|
34
|
-
android:fillColor="#34A853"
|
|
35
|
-
android:strokeWidth="1"/>
|
|
36
|
-
<path
|
|
37
|
-
android:pathData="M3.212,8.267C3.076,7.861 3.001,7.428 3.001,6.981C3.001,6.534 3.076,6.101 3.212,5.695L3.212,3.964L0.978,3.964C0.52,4.871 0.261,5.896 0.261,6.981C0.261,8.066 0.52,9.091 0.978,9.998L3.212,8.267Z"
|
|
38
|
-
android:strokeColor="#00000000"
|
|
39
|
-
android:fillType="evenOdd"
|
|
40
|
-
android:fillColor="#FABB05"
|
|
41
|
-
android:strokeWidth="1"/>
|
|
42
|
-
<path
|
|
43
|
-
android:pathData="M6.988,2.921C7.98,2.921 8.868,3.262 9.569,3.929L9.569,3.93L11.489,2.012C10.323,0.928 8.803,0.261 6.988,0.261C4.36,0.261 2.085,1.769 0.978,3.964L3.212,5.695C3.744,4.103 5.234,2.921 6.988,2.921"
|
|
44
|
-
android:strokeColor="#00000000"
|
|
45
|
-
android:fillType="evenOdd"
|
|
46
|
-
android:fillColor="#E94235"
|
|
47
|
-
android:strokeWidth="1"/>
|
|
48
|
-
</vector>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
3
|
-
<item android:state_enabled="false">
|
|
4
|
-
<shape
|
|
5
|
-
android:shape="rectangle" >
|
|
6
|
-
<corners android:radius="4dp"/>
|
|
7
|
-
<solid android:color="#7FFFFFFF"/>
|
|
8
|
-
</shape>
|
|
9
|
-
</item>
|
|
10
|
-
<item android:drawable="@android:color/transparent" />
|
|
11
|
-
</selector>
|
|
12
|
-
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="135dp" android:height="21dp" android:viewportWidth="135" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.47725 15.0006V3.54461h4.288c0.61867 0 1.184 0.13333 1.696 0.4 0.52267 0.26667 0.93333 0.62933 1.232 1.088 0.30934 0.45867 0.464 0.976 0.464 1.552 0 0.58667-0.14933 1.088-0.448 1.504-0.288 0.416-0.656 0.73067-1.104 0.944v0.08c0.576 0.20267 1.04534 0.53867 1.408 1.00799 0.36267 0.4587 0.544 1.0133 0.544 1.664 0 0.64-0.16533 1.2053-0.496 1.696-0.32 0.48-0.75733 0.8533-1.312 1.12-0.544 0.2667-1.14133 0.4-1.792 0.4h-4.48zm4.272-9.83999h-2.512v3.2h2.448c0.55467 0 0.98667-0.16533 1.296-0.496 0.30934-0.34133 0.464-0.71467 0.464-1.12 0-0.39467-0.14933-0.75733-0.448-1.088-0.29866-0.33067-0.71466-0.496-1.248-0.496zm-2.512 8.20799h2.72c0.576 0 1.024-0.1707 1.344-0.512 0.33067-0.352 0.496-0.752 0.496-1.2 0-0.448-0.16533-0.848-0.496-1.2-0.33066-0.352-0.8-0.52799-1.408-0.52799h-2.656v3.43999zm11.84565 1.888c-0.8 0-1.5147-0.1867-2.144-0.56-0.6294-0.3733-1.1254-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1706-1.49866 0.512-2.15999 0.3413-0.66133 0.816-1.18933 1.424-1.584 0.6186-0.40533 1.328-0.608 2.128-0.608 0.8426 0 1.5573 0.18133 2.144 0.544 0.5973 0.36267 1.0506 0.85867 1.36 1.488 0.3093 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0054 0.224-0.016 0.32 0 0.096-0.0054 0.1707-0.016 0.224h-6.304c0.0853 0.8107 0.368 1.4187 0.848 1.824 0.4906 0.4053 1.0453 0.608 1.664 0.608 0.5546 0 1.0133-0.1227 1.376-0.368 0.3626-0.256 0.6506-0.5707 0.864-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3654 0.592-2.272 0.592zm-0.08-7.19999c-0.576 0-1.0667 0.176-1.472 0.528-0.4054 0.352-0.6774 0.82133-0.816 1.408h4.528c-0.0214-0.27733-0.112-0.56533-0.272-0.864-0.16-0.29867-0.4054-0.54933-0.736-0.752-0.32-0.21333-0.7307-0.32-1.232-0.32zm6.3347 4.57599V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4534 0.32 0.848 0.32 0.2027 0 0.3734-0.0267 0.512-0.08 0.1494-0.0533 0.2987-0.128 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2026 0.0427-0.4426 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84zm7.9398 2.624c-0.5867 0-1.1094-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3946 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3734 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5866-0.288 1.2266-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2134 0.3307-0.5334 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8426-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2026-0.352 0.304-0.7307 0.304-1.136-0.2454-0.1387-0.5334-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2054 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.5022 1.408c-0.5866 0-1.1093-0.112-1.568-0.336-0.4586-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1494-1.0667 0.448-1.472 0.3094-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0774-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6934 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8106 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4266 0.256-0.9386 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3414-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3306-0.096-0.6826-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2986 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.0364 1.152V3.54461h1.728V15.0006h-1.728zm7.7996 0V6.84061h1.632v1.12h0.096c0.2347-0.39467 0.576-0.72 1.024-0.976 0.448-0.26667 0.944-0.4 1.488-0.4 0.608 0 1.1254 0.144 1.552 0.432 0.4267 0.288 0.7307 0.65067 0.912 1.088 0.2667-0.42667 0.6294-0.784 1.088-1.072 0.4587-0.29867 1.0187-0.448 1.68-0.448 0.96 0 1.6747 0.29333 2.144 0.88 0.4694 0.576 0.704 1.344 0.704 2.304v5.23199h-1.712v-4.944c0-0.65066-0.144-1.12532-0.432-1.42399-0.2773-0.30933-0.6666-0.464-1.168-0.464-0.3946 0-0.7413 0.112-1.04 0.336-0.2986 0.21333-0.5333 0.50667-0.704 0.88-0.16 0.37333-0.24 0.78929-0.24 1.24799v4.368h-1.712v-4.944c0-0.65066-0.144-1.12532-0.432-1.42399-0.288-0.30933-0.6933-0.464-1.216-0.464-0.384 0-0.72 0.112-1.008 0.336-0.288 0.224-0.5173 0.52267-0.688 0.896-0.16 0.37333-0.24 0.78929-0.24 1.24799v4.352h-1.728zm18.1436 0.256c-0.8 0-1.5146-0.1867-2.144-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1707-1.49866 0.512-2.15999 0.3414-0.66133 0.816-1.18933 1.424-1.584 0.6187-0.40533 1.328-0.608 2.128-0.608 0.8427 0 1.5574 0.18133 2.144 0.544 0.5974 0.36267 1.0507 0.85867 1.36 1.488 0.3094 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0053 0.224-0.016 0.32 0 0.096-0.0053 0.1707-0.016 0.224h-6.304c0.0854 0.8107 0.368 1.4187 0.848 1.824 0.4907 0.4053 1.0454 0.608 1.664 0.608 0.5547 0 1.0134-0.1227 1.376-0.368 0.3627-0.256 0.6507-0.5707 0.864-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3653 0.592-2.272 0.592zm-0.08-7.19999c-0.576 0-1.0666 0.176-1.472 0.528-0.4053 0.352-0.6773 0.82133-0.816 1.408h4.528c-0.0213-0.27733-0.112-0.56533-0.272-0.864-0.16-0.29867-0.4053-0.54933-0.736-0.752-0.32-0.21333-0.7306-0.32-1.232-0.32zm6.3348 4.57599V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4533 0.32 0.848 0.32 0.2027 0 0.3733-0.0267 0.512-0.08 0.1493-0.0533 0.2987-0.128 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M109.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM118.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3646-1.034-2.2744 0-0.9607 0.363-1.7243 1.09-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M134.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M102.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.3615v3.00336h4.2165c-0.181 0.9789-0.7286 1.8119-1.5591 2.3697v1.9506h2.5165c1.4736-1.3582 2.3226-3.3651 2.3226-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M94.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M90.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C87.3003 6.01833 87 7.20753 87 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M94.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2279-2.22567c-1.3529-1.25851-3.1169-2.031812-5.2225-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<vector android:width="119dp" android:height="21dp" android:viewportWidth="119" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M4.15475 14.9526l-1.584 0.128c-0.192 0.0213-0.33067 0-0.416-0.064-0.08533-0.064-0.16533-0.192-0.24-0.384-0.096-0.2667-0.18667-0.688-0.272-1.264-0.08533-0.5867-0.128-1.4133-0.128-2.48 0-1.23732 0.08533-2.36266 0.256-3.37599 0.18133-1.024 0.45867-1.90933 0.832-2.656 0.384-0.74667 0.88-1.32267 1.488-1.728 0.608-0.40533 1.344-0.608 2.208-0.608 1.07733 0 1.856 0.30933 2.336 0.928 0.49067 0.61867 0.736 1.57867 0.736 2.88 0 0.77867-0.02133 1.504-0.064 2.176-0.04267 0.66133-0.08533 1.312-0.128 1.95199-0.04267 0.64-0.064 1.3173-0.064 2.032 0 0.5973 0.03733 1.056 0.112 1.376 0.07467 0.32 0.17067 0.56 0.288 0.72 0.11733 0.1493 0.23467 0.272 0.352 0.368l-1.632 0.128c-0.192 0.0213-0.352-0.0373-0.48-0.176s-0.22933-0.3893-0.304-0.752c-0.064-0.3733-0.096-0.9013-0.096-1.584 0-1.056 0.04267-2.064 0.128-3.02399 0.096-0.96 0.144-1.97867 0.144-3.056 0-0.896-0.128-1.52533-0.384-1.888-0.24533-0.36267-0.624-0.544-1.136-0.544-0.65067 0-1.184 0.29867-1.6 0.896-0.416 0.58667-0.72533 1.392-0.928 2.416-0.20267 1.024-0.304 2.176-0.304 3.45599 0 0.8853 0.04267 1.6053 0.128 2.16 0.08533 0.5547 0.192 0.9867 0.32 1.296 0.13867 0.3093 0.28267 0.5333 0.432 0.672z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M39.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM48.2546 12.4831c0 0.4549 0.193 0.8339 0.5791 1.1372 0.3859 0.3033 0.838 0.4549 1.3563 0.4549 0.734 0 1.3878-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9137-0.5443-0.43-1.3032-0.6444-2.2769-0.6444-0.7089 0-1.2998 0.1711-1.7737 0.5122-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74741c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63325 1.1188 2.83327v5.72391h-1.6696v-1.2888h-0.076c-0.721 1.0613-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3646-1.0342-2.2744 0-0.9607 0.3631-1.7243 1.0906-2.2928 0.7275-0.56862 1.698-0.85347 2.9124-0.85347 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46897c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7455 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8479-1.21302 2.1001-1.81953 3.7579-1.81953M64.2687 6.03894L58.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M32.3029 8.64473c0-0.5491-0.0466-1.07872-0.1345-1.58559h-7.3619v3.00336h4.2166c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M24.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M20.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C17.3003 6.01833 17 7.20753 17 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M24.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
<path android:pathData="M78.378 14.3926c-0.5226 0-1.024-0.08-1.504-0.24-0.4693-0.16-0.912-0.384-1.328-0.672-0.48 0.0747-0.9706 0.1813-1.472 0.32-0.4906 0.128-0.8693 0.2453-1.136 0.352 0 0.2133-0.0106 0.4533-0.032 0.72-0.0106 0.2667-0.0266 0.5227-0.048 0.768-0.0213 0.2453-0.0533 0.4373-0.096 0.576l-1.712-0.128c0.0534-0.2133 0.0854-0.464 0.096-0.752 0.0214-0.288 0.032-0.5653 0.032-0.832 0-0.2133-0.0106-0.4373-0.032-0.672-0.0213-0.2453-0.0426-0.432-0.064-0.56 0.192-0.096 0.4534-0.1973 0.784-0.304 0.3414-0.1173 0.7147-0.2347 1.12-0.352 0.416-0.1173 0.8267-0.2293 1.232-0.336-0.4693-0.5333-0.8746-1.1253-1.216-1.776-0.3306-0.66132-0.5866-1.33866-0.768-2.03199-0.1706-0.704-0.256-1.38667-0.256-2.048 0-0.81067 0.1494-1.52533 0.448-2.144 0.3094-0.62933 0.7574-1.12 1.344-1.472 0.5974-0.36267 1.3174-0.544 2.16-0.544 0.9707 0 1.6854 0.25067 2.144 0.752 0.4694 0.49067 0.704 1.14667 0.704 1.968 0 0.82133-0.1973 1.49333-0.592 2.016-0.3946 0.512-0.9333 0.912-1.616 1.2-0.672 0.288-1.4346 0.50667-2.288 0.656 0.1494 0.43733 0.3627 0.896 0.64 1.37599 0.2774 0.4693 0.6027 0.9067 0.976 1.312 0.3734 0.4053 0.7787 0.736 1.216 0.992 0.4374 0.256 0.896 0.384 1.376 0.384 0.5334 0 0.9067-0.1227 1.12-0.368 0.224-0.2453 0.336-0.5867 0.336-1.024 0-0.3307-0.048-0.6507-0.144-0.96-0.096-0.3093-0.1813-0.5227-0.256-0.63999l1.744-0.208c0.0854 0.128 0.176 0.35199 0.272 0.67199 0.096 0.3093 0.144 0.688 0.144 1.136 0 0.4587-0.096 0.9067-0.288 1.344-0.1813 0.4373-0.5173 0.8-1.008 1.088-0.48 0.288-1.1573 0.432-2.032 0.432zm-4.512-6.99199c1.1094-0.192 1.9094-0.49067 2.4-0.896 0.5014-0.40533 0.752-0.90133 0.752-1.488 0-0.37333-0.1013-0.67733-0.304-0.912-0.192-0.24533-0.4906-0.368-0.896-0.368-0.6506 0-1.1626 0.24533-1.536 0.736-0.3626 0.48-0.544 1.09867-0.544 1.856 0 0.24533 0.0107 0.45867 0.032 0.64 0.032 0.17067 0.064 0.31467 0.096 0.432zm11.2474 7.67999c-0.2773 0.032-0.4907-0.0853-0.64-0.352-0.096-0.1707-0.1867-0.4213-0.272-0.752-0.0747-0.3307-0.112-0.704-0.112-1.12 0-0.736 0.0907-1.344 0.272-1.824 0.192-0.48 0.3627-0.8213 0.512-1.024h-1.184c0.0533-1.94132 0.6347-3.39732 1.744-4.36799h-1.056v-2.24c0-0.48-0.0533-0.848-0.16-1.104-0.096-0.256-0.2613-0.48-0.496-0.672l1.616-0.112c0.3093-0.032 0.5173 0.096 0.624 0.384 0.1067 0.27733 0.16 0.75733 0.16 1.44v1.808c0.6613-0.36267 1.408-0.544 2.24-0.544 1.1627 0 2.0053 0.304 2.528 0.912 0.5227 0.608 0.784 1.51467 0.784 2.72 0 0.71467-0.0427 1.42933-0.128 2.14399-0.0853 0.7147-0.128 1.4453-0.128 2.192 0 0.5653 0.0373 1.008 0.112 1.328 0.0747 0.3093 0.1707 0.5387 0.288 0.688 0.1173 0.1493 0.2347 0.272 0.352 0.368l-1.632 0.128c-0.288 0.032-0.5067-0.1173-0.656-0.448-0.1493-0.3413-0.224-1.0027-0.224-1.984 0-0.8 0.0427-1.536 0.128-2.208 0.096-0.67199 0.144-1.34932 0.144-2.03199 0-0.82133-0.1387-1.40267-0.416-1.744-0.2773-0.352-0.7147-0.528-1.312-0.528-0.7573 0-1.344 0.24533-1.76 0.736-0.416 0.48-0.6773 1.088-0.784 1.824h2.128c-0.2987 0.256-0.5973 0.58133-0.896 0.976-0.2987 0.38399-0.5493 0.83199-0.752 1.34399-0.192 0.5013-0.288 1.0613-0.288 1.68 0 0.576 0.0853 1.04 0.256 1.392 0.1707 0.352 0.368 0.64 0.592 0.864l-1.584 0.128zm11.5206 0.176c-0.96 0-1.664-0.224-2.112-0.672-0.448-0.4587-0.672-1.1093-0.672-1.952 0-0.5867 0.128-1.1307 0.384-1.632 0.256-0.512 0.6347-1.03466 1.136-1.56799 0.5014-0.53333 1.1094-1.136 1.824-1.808 0.544-0.512 0.976-0.93867 1.296-1.28 0.32-0.352 0.56-0.64533 0.72-0.88 0.1707-0.24533 0.2827-0.448 0.336-0.608 0.064-0.17067 0.096-0.336 0.096-0.496 0-0.34133-0.1226-0.58667-0.368-0.736l1.712-0.144c0.096 0.032 0.192 0.11733 0.288 0.256 0.096 0.13867 0.144 0.34667 0.144 0.624 0 0.352-0.085 0.70933-0.256 1.072-0.16 0.36267-0.459 0.78933-0.896 1.28-0.4266 0.49067-1.024 1.10933-1.792 1.856-0.2453 0.23467-0.4746 0.45333-0.688 0.656-0.2026 0.192-0.3893 0.37867-0.56 0.56 0.256-0.04267 0.5067-0.064 0.752-0.064 0.5547 0 1.0454 0.07467 1.472 0.224 0.4267 0.13869 0.763 0.38399 1.008 0.73599 0.245 0.352 0.368 0.8427 0.368 1.472 0 0.2453-0.032 0.48-0.096 0.704h1.52c0-0.1493 0.016-0.3253 0.048-0.528 0.043-0.2027 0.091-0.352 0.144-0.448h1.696c-0.032 0.1387-0.069 0.3573-0.112 0.656-0.032 0.2987-0.048 0.6347-0.048 1.008 0 0.32 0.011 0.6453 0.032 0.976 0.032 0.32 0.075 0.56 0.128 0.72h-1.68c-0.053-0.1067-0.101-0.272-0.144-0.496-0.043-0.224-0.064-0.4-0.064-0.528h-2.4c-0.3946 0.3307-0.8746 0.5867-1.44 0.768-0.5546 0.1813-1.1466 0.272-1.776 0.272zm-1.008-2.768c0 0.3733 0.1014 0.672 0.304 0.896 0.2134 0.224 0.5547 0.336 1.024 0.336 0.576 0 1.0667-0.144 1.472-0.432 0.416-0.2987 0.624-0.6667 0.624-1.104 0-0.3627-0.112-0.6293-0.336-0.8-0.224-0.1813-0.5813-0.272-1.072-0.272-0.4266 0-0.784 0.0373-1.072 0.112-0.288 0.0747-0.528 0.16-0.72 0.256-0.1493 0.3093-0.224 0.6453-0.224 1.008zm17.726 2.608c-0.202 0.0213-0.384 0-0.544-0.064-0.149-0.064-0.272-0.208-0.368-0.432-0.096-0.2347-0.165-0.592-0.208-1.072l-0.256-2.48c-0.128-1.16266-0.32-2.12799-0.576-2.89599-0.256-0.768-0.624-1.312-1.104-1.632-0.746 0.52267-1.344 1.25867-1.792 2.208-0.437 0.94933-0.656 1.98929-0.656 3.11999 0 0.8213 0.075 1.4933 0.224 2.016 0.16 0.512 0.358 0.8747 0.592 1.088l-1.584 0.128c-0.192 0.0213-0.336 0-0.432-0.064-0.085-0.064-0.16-0.192-0.224-0.384-0.106-0.2667-0.186-0.6187-0.24-1.056-0.053-0.4373-0.08-0.9493-0.08-1.536 0-1.4613 0.288-2.79999 0.864-4.01599 0.587-1.22667 1.424-2.22933 2.512-3.008l-0.432-2.224 1.744-0.32 0.432 2.448c0.587 0.39467 1.04 0.89067 1.36 1.488 0.331 0.59733 0.576 1.27467 0.736 2.032 0.16 0.74667 0.288 1.54667 0.384 2.39999l0.288 2.544c0.054 0.5013 0.155 0.8533 0.304 1.056 0.16 0.2027 0.336 0.3733 0.528 0.512l-1.472 0.144zm2.368-3.824c-0.053-0.128-0.112-0.2987-0.176-0.512-0.064-0.224-0.122-0.448-0.176-0.672-0.053-0.23466-0.096-0.43199-0.128-0.59199l-2.288 0.432-0.256-1.36 4.048-0.784c0.011 0.14933 0.027 0.34667 0.048 0.592 0.032 0.23467 0.07 0.464 0.112 0.688 0.075 0.416 0.155 0.77333 0.24 1.07199 0.086 0.288 0.166 0.5227 0.24 0.704l-1.664 0.432z" android:fillColor="#ffffff"/>
|
|
15
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="224dp" android:height="21dp" android:viewportWidth="224" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4549 0.193 0.8339 0.5791 1.1372 0.3859 0.3033 0.838 0.4549 1.3563 0.4549 0.734 0 1.3878-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9137-0.5443-0.43-1.3032-0.6444-2.2769-0.6444-0.7089 0-1.2998 0.1711-1.7737 0.5122-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74741c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63325 1.1188 2.83327v5.72391h-1.6696v-1.2888h-0.076c-0.721 1.0613-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3646-1.0342-2.2744 0-0.9607 0.3631-1.7243 1.0906-2.2928 0.7275-0.56862 1.698-0.85347 2.9124-0.85347 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46897c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7455 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8479-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0466-1.07872-0.1345-1.58559H7.80649v3.00336h4.21661c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80647 16.2651c2.10667 0 3.88043-0.691 5.17393-1.8823l-2.5165-1.9506c-0.70039 0.4711-1.60247 0.7462-2.65743 0.7462-2.03619 0-3.76445-1.3711-4.38247-3.21884H0.831604v2.00904C2.11642 14.516 4.75653 16.2651 7.80647 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.95957C3.26571 9.48844 3.17897 8.9859 3.17897 8.46712S3.26571 7.4458 3.42401 6.97467V4.96561H0.831606C0.300332 6.01833 0 7.20753 0 8.46712 0 9.72671 0.300332 10.916 0.831606 11.9686L3.42401 9.95957z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80647 3.75583c1.15037 0 2.18148 0.39532 2.99463 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11715-2.031812-5.22273-2.031812-3.04994 0-5.69005 1.749132-6.974866 4.296472L3.424 6.97467c0.61802-1.84769 2.34628-3.21884 4.38247-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M60.658 15.0006c-0.704-0.9387-1.6107-1.7653-2.72-2.48-1.0987-0.7147-2.2667-1.28-3.504-1.696V9.65661c0.8853-0.81067 1.84-1.456 2.864-1.936 1.0347-0.48 2.0747-0.8 3.12-0.96v-1.136H53.33v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-2.304-6.07999l2.064 1.24799V8.29661c-0.7253 0.13867-1.4133 0.34667-2.064 0.624zm2.064 3.83999h0.08l-0.08-1.248v-0.368l-2.96-1.77599c-0.384 0.20267-0.752 0.43733-1.104 0.70399 0.736 0.288 1.456 0.6667 2.16 1.136 0.7147 0.4587 1.3493 0.976 1.904 1.552zm17.9824 2.24c-0.416-1.1733-0.624-2.4-0.624-3.68 0-0.5013 0.0373-1.0027 0.112-1.50399 0.0746-0.50133 0.1973-0.99733 0.368-1.488-1.0134-0.07467-1.8187-0.31467-2.416-0.72-0.5867-0.40533-0.9814-0.98133-1.184-1.728-0.6827 0.07467-1.2267 0.30933-1.632 0.704-0.3947 0.39467-0.592 0.87467-0.592 1.44 0 0.384 0.096 0.69333 0.288 0.928 0.2026 0.224 0.48 0.336 0.832 0.336 0.3093 0 0.5706-0.05867 0.784-0.176 0.2133-0.128 0.4213-0.31467 0.624-0.56l1.376 0.32c0.128 0.30933 0.2186 0.624 0.272 0.944 0.0533 0.30929 0.08 0.61869 0.08 0.92799 0 0.992-0.2987 1.7973-0.896 2.416-0.5974 0.6187-1.4774 0.928-2.64 0.928-1.5254 0-2.7414-0.608-3.648-1.824-0.896-1.216-1.4507-2.97066-1.664-5.26399l1.376-0.176c0.224 1.97333 0.64 3.43999 1.248 4.39999 0.608 0.9493 1.4453 1.424 2.512 1.424 0.7253 0 1.2746-0.1813 1.648-0.544 0.384-0.3733 0.576-0.8213 0.576-1.344 0-0.0853-0.0054-0.1707-0.016-0.256 0-0.0853-0.0107-0.1707-0.032-0.256l-0.064-0.016c-0.192 0.128-0.416 0.2347-0.672 0.32-0.256 0.0853-0.5494 0.128-0.88 0.128-0.7894 0-1.4294-0.2453-1.92-0.73599-0.48-0.50133-0.72-1.152-0.72-1.952 0-0.46933 0.0906-0.90667 0.272-1.312 0.192-0.416 0.4693-0.768 0.832-1.056v-0.08l-1.088 0.08h-4.048v-1.296h14.4v1.296h-5.12c0.1813 0.416 0.448 0.72533 0.8 0.928 0.3626 0.20267 0.7893 0.304 1.28 0.304 0.1813 0 0.336-0.01067 0.464-0.032 0.128-0.02133 0.2613-0.048 0.4-0.08l1.008 1.28c-0.2667 0.46933-0.4694 0.98667-0.608 1.552-0.128 0.56529-0.192 1.15199-0.192 1.75999 0 0.576 0.0426 1.136 0.128 1.68 0.0853 0.544 0.208 1.0827 0.368 1.616l-1.392 0.368zm3.9476 0V5.62461H80.78v-1.296h1.376c-0.0427-0.17067-0.08-0.352-0.112-0.544-0.0213-0.192-0.032-0.4-0.032-0.624 0-0.93867 0.352-1.696 1.056-2.272 0.704-0.586667 1.744-0.88 3.12-0.88 1.1627 0 2.2773 0.170666 3.344 0.512 1.0667 0.330667 2.048 0.74133 2.944 1.232l-0.64 1.152c-0.9707-0.49067-1.8987-0.85333-2.784-1.088-0.8853-0.23467-1.776-0.352-2.672-0.352-1.0133 0-1.7493 0.18133-2.208 0.544-0.4587 0.352-0.688 0.84267-0.688 1.472 0 0.29867 0.0427 0.58133 0.128 0.848h1.792v1.296h-1.568v9.37599h-1.488zm9.8944 0c-0.704-0.9387-1.6107-1.7653-2.72-2.48-1.0987-0.7147-2.2667-1.28-3.504-1.696V9.65661c0.8853-0.81067 1.84-1.456 2.864-1.936 1.0346-0.48 2.0746-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-2.304-6.07999l2.064 1.24799V8.29661c-0.7254 0.13867-1.4134 0.34667-2.064 0.624zm2.064 3.83999h0.08l-0.08-1.248v-0.368l-2.96-1.77599c-0.384 0.20267-0.752 0.43733-1.104 0.70399 0.736 0.288 1.456 0.6667 2.16 1.136 0.7146 0.4587 1.3493 0.976 1.904 1.552zm9.9856 2.24c-0.586-0.672-1.232-1.2693-1.936-1.792-0.693-0.5227-1.4183-0.9653-2.1756-1.328-0.7467-0.3733-1.4827-0.6613-2.208-0.864V9.78461c0.48-0.384 0.9866-0.72533 1.52-1.024 0.544-0.30933 1.056-0.54933 1.536-0.72-0.5547-0.384-1.0934-0.70933-1.616-0.976-0.5227-0.26667-1.072-0.50667-1.648-0.72l0.256-0.72h-1.152v-1.296h10.2716v1.296h-1.568v9.37599h-1.28zm-0.208-2.128h0.08l-0.08-1.248V5.62461h-3.3916l-1.088-0.08v0.08c0.3946 0.20267 0.784 0.42133 1.168 0.656 0.3946 0.224 0.7573 0.45333 1.088 0.688 0.3306 0.224 0.5976 0.432 0.7996 0.624v1.408c-0.4583 0.128-0.917 0.29333-1.3756 0.496-0.4587 0.20267-0.9227 0.448-1.392 0.73599 0.704 0.2453 1.424 0.5973 2.16 1.056 0.7356 0.4587 1.4136 0.9867 2.0316 1.584zm-3.9996 2.608c-0.3414 0-0.6187-0.112-0.832-0.336-0.2134-0.2133-0.32-0.4853-0.32-0.816 0-0.3307 0.1066-0.6027 0.32-0.816 0.2133-0.224 0.4906-0.336 0.832-0.336 0.3306 0 0.6026 0.112 0.816 0.336 0.224 0.2133 0.336 0.4853 0.336 0.816 0 0.3307-0.112 0.6027-0.336 0.816-0.2134 0.224-0.4854 0.336-0.816 0.336zm11.8226-0.224c-0.48 0-0.949-0.1333-1.408-0.4-0.448-0.2667-0.858-0.64-1.232-1.12-0.362-0.4907-0.656-1.0613-0.88-1.712-0.224-0.6507-0.336-1.36-0.336-2.12799 0-0.928 0.15-1.75467 0.448-2.48 0.31-0.736 0.736-1.33333 1.28-1.792v-0.08l-1.024 0.08h-2.112v-1.296h6.672v1.296h-0.272c-0.672 0-1.269 0.17067-1.792 0.512-0.512 0.34133-0.917 0.82133-1.216 1.44-0.288 0.61867-0.432 1.33867-0.432 2.16 0 0.76799 0.102 1.44529 0.304 2.03199 0.214 0.5867 0.544 1.0827 0.992 1.488 0.096-0.224 0.251-0.4053 0.464-0.544 0.224-0.1387 0.48-0.208 0.768-0.208 0.374 0 0.688 0.1333 0.944 0.4 0.256 0.256 0.384 0.576 0.384 0.96 0 0.4053-0.144 0.7413-0.432 1.008-0.277 0.256-0.65 0.384-1.12 0.384zm0.918-9.63199v-1.296h12.176v1.296h-12.176zm6.944 8.95999c-1.728 0-3.099-0.64-4.112-1.92-1.003-1.2907-1.622-3.11999-1.856-5.48799l1.408-0.208c0.277 2.06933 0.773 3.61599 1.488 4.63999 0.725 1.0133 1.738 1.52 3.04 1.52 0.81 0 1.445-0.2293 1.904-0.688 0.458-0.4587 0.688-1.0827 0.688-1.872 0-0.63999-0.16-1.17866-0.48-1.61599-0.31-0.448-0.726-0.72533-1.248-0.832 0.106 0.20267 0.16 0.432 0.16 0.688 0 0.39467-0.139 0.72-0.416 0.976-0.267 0.25599-0.608 0.38399-1.024 0.38399-0.448 0-0.816-0.144-1.104-0.43199-0.288-0.29867-0.432-0.68267-0.432-1.152 0-0.56533 0.213-1.02933 0.64-1.392 0.426-0.36267 1.008-0.544 1.744-0.544 0.725 0 1.37 0.176 1.936 0.528 0.565 0.34133 1.002 0.816 1.312 1.424 0.32 0.608 0.48 1.30667 0.48 2.09599 0 0.7893-0.171 1.4773-0.512 2.064-0.331 0.576-0.806 1.024-1.424 1.344-0.608 0.32-1.339 0.48-2.192 0.48zm17.853 0.416V9.92861c0-0.45867-0.048-0.88-0.144-1.264-0.085-0.39467-0.213-0.752-0.384-1.072l-4.72 4.19199-1.056-1.024c0.246-0.224 0.438-0.4693 0.576-0.736 0.139-0.27732 0.208-0.53866 0.208-0.78399 0-0.32-0.096-0.57067-0.288-0.752-0.181-0.18133-0.426-0.272-0.736-0.272-0.394 0-0.8 0.11733-1.216 0.352l-0.784-0.912c0.182-0.74667 0.496-1.38133 0.944-1.904 0.459-0.52267 0.998-0.91733 1.616-1.184 0.619-0.27733 1.28-0.416 1.984-0.416 0.79 0 1.547 0.18667 2.272 0.56 0.726 0.37333 1.302 0.896 1.728 1.568h0.08l-0.08-1.168v-2.192h1.504v1.408h1.552v1.296h-1.552v9.37599h-1.504zm-6.304-8.11199c0.598 0.01067 1.088 0.208 1.472 0.592 0.395 0.384 0.592 0.85867 0.592 1.424l2.784-2.464c-0.704-0.56533-1.541-0.848-2.512-0.848-0.522 0-1.013 0.10667-1.472 0.32-0.448 0.21333-0.821 0.52267-1.12 0.928l0.032 0.064h0.096c0.043-0.01067 0.086-0.016 0.128-0.016zm10.431 8.11199V5.62461h-1.568v-1.296h1.376c-0.043-0.17067-0.08-0.352-0.112-0.544-0.021-0.192-0.032-0.4-0.032-0.624 0-0.93867 0.352-1.696 1.056-2.272 0.704-0.586667 1.744-0.88 3.12-0.88 1.163 0 2.277 0.170666 3.344 0.512 1.067 0.330667 2.048 0.74133 2.944 1.232l-0.64 1.152c-0.971-0.49067-1.899-0.85333-2.784-1.088-0.885-0.23467-1.776-0.352-2.672-0.352-1.013 0-1.749 0.18133-2.208 0.544-0.459 0.352-0.688 0.84267-0.688 1.472 0 0.29867 0.043 0.58133 0.128 0.848h1.792v1.296h-1.568v9.37599h-1.488zm9.894 0c-0.704-0.9387-1.61-1.7653-2.72-2.48-1.098-0.7147-2.266-1.28-3.504-1.696V9.65661c0.886-0.81067 1.84-1.456 2.864-1.936 1.035-0.48 2.075-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-2.304-6.07999l2.064 1.24799V8.29661c-0.725 0.13867-1.413 0.34667-2.064 0.624zm2.064 3.83999h0.08l-0.08-1.248v-0.368l-2.96-1.77599c-0.384 0.20267-0.752 0.43733-1.104 0.70399 0.736 0.288 1.456 0.6667 2.16 1.136 0.715 0.4587 1.35 0.976 1.904 1.552zm7.826 2.496c-0.48 0-0.949-0.1333-1.408-0.4-0.448-0.2667-0.858-0.64-1.232-1.12-0.362-0.4907-0.656-1.0613-0.88-1.712-0.224-0.6507-0.336-1.36-0.336-2.12799 0-0.928 0.15-1.75467 0.448-2.48 0.31-0.736 0.736-1.33333 1.28-1.792v-0.08l-1.024 0.08h-2.112v-1.296h6.672v1.296h-0.272c-0.672 0-1.269 0.17067-1.792 0.512-0.512 0.34133-0.917 0.82133-1.216 1.44-0.288 0.61867-0.432 1.33867-0.432 2.16 0 0.76799 0.102 1.44529 0.304 2.03199 0.214 0.5867 0.544 1.0827 0.992 1.488 0.096-0.224 0.251-0.4053 0.464-0.544 0.224-0.1387 0.48-0.208 0.768-0.208 0.374 0 0.688 0.1333 0.944 0.4 0.256 0.256 0.384 0.576 0.384 0.96 0 0.4053-0.144 0.7413-0.432 1.008-0.277 0.256-0.65 0.384-1.12 0.384zm9.573-0.256V7.43261c0-0.50133-0.144-0.90667-0.432-1.216-0.288-0.32-0.682-0.48-1.184-0.48-0.458 0-0.842 0.15467-1.152 0.464-0.298 0.29867-0.48 0.72-0.544 1.264 0.438 0.128 0.779 0.336 1.024 0.624 0.246 0.27733 0.368 0.58133 0.368 0.912 0 0.36267-0.112 0.65067-0.336 0.864-0.224 0.21329-0.517 0.31999-0.88 0.31999-0.32 0-0.634-0.1013-0.944-0.30399-0.309-0.21333-0.512-0.53867-0.608-0.976h-0.08c-0.096 0.43733-0.298 0.76267-0.608 0.976-0.298 0.20269-0.608 0.30399-0.928 0.30399-0.362 0-0.656-0.1067-0.88-0.31999-0.213-0.21333-0.32-0.50133-0.32-0.864 0-0.34133 0.123-0.65067 0.368-0.928 0.256-0.288 0.603-0.49067 1.04-0.608-0.053-0.58667-0.229-1.04-0.528-1.36-0.288-0.32-0.768-0.48-1.44-0.48h-0.592v-1.296h0.64c0.544 0 1.056 0.10133 1.536 0.304s0.875 0.52267 1.184 0.96c0.32 0.43733 0.496 1.008 0.528 1.712h0.08c0.043-0.704 0.214-1.27467 0.512-1.712 0.299-0.43733 0.662-0.75733 1.088-0.96 0.427-0.20267 0.843-0.304 1.248-0.304 0.758 0 1.371 0.24533 1.84 0.736h0.08l-0.08-1.2v-0.944h1.504v1.408h1.568v1.296h-1.568v9.37599h-1.504zm4.156 0V6.72861c0-0.37333-0.08-0.65067-0.24-0.832-0.149-0.18133-0.394-0.272-0.736-0.272h-0.592v-1.296h0.592c0.459 0 0.784 0.10133 0.976 0.304h0.08l-0.08-1.152v-0.56h1.488v1.408h1.568v1.296h-1.568v9.37599h-1.488zm9.863 0c-0.395-0.5653-0.918-1.1147-1.568-1.648-0.651-0.5333-1.376-1.0187-2.176-1.456-0.79-0.4373-1.606-0.7893-2.448-1.056V9.65661c0.277-0.256 0.57-0.50133 0.88-0.736 0.32-0.23467 0.656-0.44267 1.008-0.624v-0.08c-0.534-0.18133-0.939-0.464-1.216-0.848-0.278-0.39467-0.416-0.85333-0.416-1.376 0-0.672 0.234-1.20533 0.704-1.6 0.469-0.40533 1.056-0.608 1.76-0.608 0.618 0 1.12 0.15467 1.504 0.464 0.384 0.30933 0.576 0.71467 0.576 1.216 0 0.32-0.096 0.58133-0.288 0.784-0.192 0.192-0.448 0.288-0.768 0.288-0.288 0-0.528-0.08533-0.72-0.256-0.182-0.17067-0.272-0.39467-0.272-0.672 0-0.20267 0.064-0.37333 0.192-0.512h-0.112c-0.299 0-0.555 0.10133-0.768 0.304-0.203 0.192-0.304 0.448-0.304 0.768 0 0.352 0.133 0.65067 0.4 0.896 0.266 0.23467 0.64 0.352 1.12 0.352 0.213 0 0.426-0.02667 0.64-0.08 0.224-0.05333 0.496-0.128 0.816-0.224 0.192-0.064 0.389-0.11733 0.592-0.16 0.202-0.05333 0.421-0.096 0.656-0.128v-2.496h3.056v1.296h-1.552v9.37599h-1.296zm-0.208-2.24h0.08l-0.08-1.248V8.28061c-0.768 0.13867-1.494 0.368-2.176 0.688-0.672 0.30933-1.291 0.66667-1.856 1.07199 0.746 0.288 1.472 0.672 2.176 1.152 0.714 0.4693 1.333 0.992 1.856 1.568zm13.118 2.24c-0.416-0.608-0.928-1.1733-1.536-1.696-0.608-0.5227-1.264-0.9867-1.968-1.392-0.704-0.416-1.392-0.7573-2.064-1.024V9.72061c0.715-0.768 1.531-1.40267 2.448-1.904 0.928-0.512 1.904-0.85867 2.928-1.04v-1.152h-6.48v-1.296h13.76v1.296h-5.824v1.04c0.96 0.01067 1.792 0.17067 2.496 0.48 0.715 0.29867 1.264 0.71467 1.648 1.248 0.384 0.53333 0.576 1.152 0.576 1.85599 0 0.704-0.213 1.2853-0.64 1.744-0.427 0.4587-0.965 0.688-1.616 0.688-0.437 0-0.795-0.1173-1.072-0.352-0.277-0.2453-0.416-0.544-0.416-0.896 0-0.3307 0.107-0.5973 0.32-0.8 0.213-0.2027 0.491-0.304 0.832-0.304 0.405 0 0.704 0.16 0.896 0.48 0.117-0.1707 0.176-0.3787 0.176-0.624 0-0.58666-0.272-1.07732-0.816-1.47199-0.544-0.40533-1.296-0.61333-2.256-0.624h-0.112v6.91199h-1.28zm-0.208-2.288h0.08l-0.08-1.248V8.31261c-1.408 0.30933-2.613 0.92267-3.616 1.83999 0.608 0.2667 1.216 0.608 1.824 1.024 0.608 0.416 1.205 0.928 1.792 1.536zm14.139 2.288c-0.704-0.9387-1.611-1.7653-2.72-2.48-1.099-0.7147-2.267-1.28-3.504-1.696V9.65661c0.885-0.81067 1.84-1.456 2.864-1.936 1.035-0.48 2.075-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-2.304-6.07999l2.064 1.24799V8.29661c-0.725 0.13867-1.413 0.34667-2.064 0.624zm2.064 3.83999h0.08l-0.08-1.248v-0.368l-2.96-1.77599c-0.384 0.20267-0.752 0.43733-1.104 0.70399 0.736 0.288 1.456 0.6667 2.16 1.136 0.715 0.4587 1.349 0.976 1.904 1.552zm9.234 2.24c-0.416-0.608-0.928-1.1733-1.536-1.696-0.608-0.5227-1.264-0.9867-1.968-1.392-0.704-0.416-1.392-0.7573-2.064-1.024V9.72061c0.715-0.768 1.531-1.40267 2.448-1.904 0.928-0.512 1.904-0.85867 2.928-1.04v-1.152h-6.48v-1.296h13.76v1.296h-5.824v1.04c0.96 0.01067 1.792 0.17067 2.496 0.48 0.715 0.29867 1.264 0.71467 1.648 1.248 0.384 0.53333 0.576 1.152 0.576 1.85599 0 0.704-0.213 1.2853-0.64 1.744-0.427 0.4587-0.965 0.688-1.616 0.688-0.437 0-0.795-0.1173-1.072-0.352-0.277-0.2453-0.416-0.544-0.416-0.896 0-0.3307 0.107-0.5973 0.32-0.8 0.213-0.2027 0.491-0.304 0.832-0.304 0.405 0 0.704 0.16 0.896 0.48 0.117-0.1707 0.176-0.3787 0.176-0.624 0-0.58666-0.272-1.07732-0.816-1.47199-0.544-0.40533-1.296-0.61333-2.256-0.624h-0.112v6.91199h-1.28zm-0.208-2.288h0.08l-0.08-1.248V8.31261c-1.408 0.30933-2.613 0.92267-3.616 1.83999 0.608 0.2667 1.216 0.608 1.824 1.024 0.608 0.416 1.205 0.928 1.792 1.536z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="127dp" android:height="21dp" android:viewportWidth="127" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4549 0.193 0.8339 0.5791 1.1372 0.3859 0.3033 0.838 0.4549 1.3563 0.4549 0.734 0 1.3878-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9137-0.5443-0.43-1.3032-0.6444-2.2769-0.6444-0.7089 0-1.2998 0.1711-1.7737 0.5122-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74741c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63325 1.1188 2.83327v5.72391h-1.6696v-1.2888h-0.076c-0.721 1.0613-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3646-1.0342-2.2744 0-0.9607 0.3631-1.7243 1.0906-2.2928 0.7275-0.56862 1.698-0.85347 2.9124-0.85347 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46897c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7455 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8479-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0466-1.07872-0.1345-1.58559H7.80649v3.00336h4.21661c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80647 16.2651c2.10667 0 3.88043-0.691 5.17393-1.8823l-2.5165-1.9506c-0.70039 0.4711-1.60247 0.7462-2.65743 0.7462-2.03619 0-3.76445-1.3711-4.38247-3.21884H0.831604v2.00904C2.11642 14.516 4.75653 16.2651 7.80647 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.95957C3.26571 9.48844 3.17897 8.9859 3.17897 8.46712S3.26571 7.4458 3.42401 6.97467V4.96561H0.831606C0.300332 6.01833 0 7.20753 0 8.46712 0 9.72671 0.300332 10.916 0.831606 11.9686L3.42401 9.95957z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80647 3.75583c1.15037 0 2.18148 0.39532 2.99463 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11715-2.031812-5.22273-2.031812-3.04994 0-5.69005 1.749132-6.974866 4.296472L3.424 6.97467c0.61802-1.84769 2.34628-3.21884 4.38247-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M55.65 5.64061c-0.32 0-0.5973-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2347-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2347 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1173 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.038 0V3.54461h1.728V15.0006h-1.728zm11.4531-4.096c0 0.7787-0.1706 1.4987-0.512 2.16-0.3413 0.6613-0.8213 1.1947-1.44 1.6-0.608 0.3947-1.3173 0.592-2.128 0.592-0.8426 0-1.5573-0.1813-2.144-0.544-0.5866-0.3627-1.04-0.8587-1.36-1.488-0.3093-0.6293-0.464-1.3387-0.464-2.128 0-0.1173 0.0054-0.224 0.016-0.32 0.0107-0.096 0.0214-0.1707 0.032-0.224h6.304c-0.0533-0.55466-0.2026-1.00799-0.448-1.35999-0.2453-0.36267-0.5546-0.62933-0.928-0.8-0.3626-0.18133-0.7413-0.272-1.136-0.272-0.5546 0-1.0133 0.128-1.376 0.384-0.3626 0.24533-0.6506 0.55467-0.864 0.928l-1.424-0.688c0.352-0.64 0.832-1.15733 1.44-1.552 0.608-0.40533 1.36-0.608 2.256-0.608 0.8107 0 1.5307 0.18667 2.16 0.56 0.6294 0.37333 1.12 0.88533 1.472 1.536 0.3627 0.65067 0.544 1.39199 0.544 2.22399zm-4.08 2.88c0.5227 0 0.9974-0.1653 1.424-0.496 0.4267-0.3307 0.72-0.8107 0.88-1.44h-4.544c0.0214 0.2773 0.112 0.5653 0.272 0.864 0.16 0.2987 0.4 0.5547 0.72 0.768 0.3307 0.2027 0.7467 0.304 1.248 0.304zm13.5415 1.472c-0.8426 0-1.584-0.192-2.224-0.576-0.64-0.384-1.1413-0.9013-1.504-1.552-0.3626-0.6507-0.544-1.3867-0.544-2.208 0-0.8107 0.1814-1.54132 0.544-2.19199 0.3627-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.3814-0.576 2.224-0.576 0.832 0 1.568 0.192 2.208 0.576 0.64 0.384 1.1414 0.90667 1.504 1.568 0.3627 0.65067 0.544 1.38129 0.544 2.19199 0 0.8213-0.1813 1.5573-0.544 2.208-0.3626 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.6934-0.5387 0.928-0.944 0.2454-0.416 0.368-0.912 0.368-1.488s-0.1226-1.06666-0.368-1.47199c-0.2346-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.8693 0.112-1.264 0.336-0.384 0.21333-0.6986 0.528-0.944 0.944-0.2346 0.40533-0.352 0.89599-0.352 1.47199s0.1174 1.072 0.352 1.488c0.2454 0.4053 0.56 0.72 0.944 0.944 0.3947 0.2133 0.816 0.32 1.264 0.32zm1.408-8.49599c-0.2666 0-0.5013-0.096-0.704-0.288-0.192-0.20267-0.288-0.44267-0.288-0.72 0-0.27733 0.096-0.50667 0.288-0.688 0.2027-0.192 0.4374-0.288 0.704-0.288 0.288 0 0.528 0.096 0.72 0.288 0.192 0.18133 0.288 0.41067 0.288 0.688 0 0.27733-0.096 0.51733-0.288 0.72-0.192 0.192-0.432 0.288-0.72 0.288zm-2.832 0c-0.2666 0-0.5013-0.096-0.704-0.288-0.192-0.20267-0.288-0.44267-0.288-0.72 0-0.27733 0.096-0.50667 0.288-0.688 0.2027-0.192 0.4374-0.288 0.704-0.288 0.288 0 0.5227 0.096 0.704 0.288 0.192 0.18133 0.288 0.41067 0.288 0.688 0 0.27733-0.096 0.51733-0.288 0.72-0.1813 0.192-0.416 0.288-0.704 0.288zM89.2241 15.2566c-0.736 0-1.4026-0.1813-2-0.544-0.5866-0.3733-1.056-0.8853-1.408-1.536-0.3413-0.6613-0.512-1.4133-0.512-2.256 0-0.8427 0.1707-1.58932 0.512-2.23999 0.352-0.65067 0.8214-1.16267 1.408-1.536 0.5974-0.37333 1.264-0.56 2-0.56 0.6294 0 1.168 0.13867 1.616 0.416 0.4587 0.27733 0.7947 0.592 1.008 0.944h0.096l-0.096-1.136v-3.264h1.712V15.0006h-1.616v-1.088h-0.096c-0.2133 0.352-0.5493 0.6667-1.008 0.944-0.448 0.2667-0.9866 0.4-1.616 0.4zm0.256-1.584c0.4267 0 0.8267-0.112 1.2-0.336 0.384-0.224 0.688-0.5387 0.912-0.944 0.2347-0.416 0.352-0.9067 0.352-1.472s-0.1173-1.05066-0.352-1.45599c-0.224-0.416-0.528-0.736-0.912-0.96-0.3733-0.224-0.7733-0.336-1.2-0.336-0.4266 0-0.8266 0.112-1.2 0.336-0.3733 0.224-0.6773 0.544-0.912 0.96-0.2346 0.40533-0.352 0.89069-0.352 1.45599 0 0.5653 0.1174 1.056 0.352 1.472 0.2347 0.4053 0.5387 0.72 0.912 0.944 0.3734 0.224 0.7734 0.336 1.2 0.336zm13.8029-2.768c0 0.7787-0.17 1.4987-0.512 2.16-0.341 0.6613-0.821 1.1947-1.44 1.6-0.608 0.3947-1.317 0.592-2.1276 0.592-0.8427 0-1.5574-0.1813-2.144-0.544-0.5867-0.3627-1.04-0.8587-1.36-1.488-0.3094-0.6293-0.464-1.3387-0.464-2.128 0-0.1173 0.0053-0.224 0.016-0.32 0.0106-0.096 0.0213-0.1707 0.032-0.224h6.3036c-0.053-0.55466-0.202-1.00799-0.448-1.35999-0.245-0.36267-0.554-0.62933-0.928-0.8-0.3623-0.18133-0.741-0.272-1.1356-0.272-0.5547 0-1.0134 0.128-1.376 0.384-0.3627 0.24533-0.6507 0.55467-0.864 0.928l-1.424-0.688c0.352-0.64 0.832-1.15733 1.44-1.552 0.608-0.40533 1.36-0.608 2.256-0.608 0.8106 0 1.5306 0.18667 2.1596 0.56 0.63 0.37333 1.12 0.88533 1.472 1.536 0.363 0.65067 0.544 1.39199 0.544 2.22399zm-4.0796 2.88c0.5226 0 0.9976-0.1653 1.4236-0.496 0.427-0.3307 0.72-0.8107 0.88-1.44h-4.5436c0.0213 0.2773 0.112 0.5653 0.272 0.864 0.16 0.2987 0.4 0.5547 0.72 0.768 0.3306 0.2027 0.7466 0.304 1.248 0.304zm8.2886 4.272c-0.032 0.0853-0.069 0.1653-0.112 0.24-0.032 0.0747-0.053 0.128-0.064 0.16h-1.84c0.053-0.1173 0.128-0.288 0.224-0.512 0.107-0.2133 0.208-0.4213 0.304-0.624s0.197-0.432 0.304-0.688c0.117-0.256 0.235-0.5067 0.352-0.752l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.117 0.2773-0.245 0.5653-0.384 0.864-0.128 0.3093-0.213 0.5173-0.256 0.624zm7.155-12.41599c-0.32 0-0.597-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.235-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.235 0.224 0.352 0.496 0.352 0.816 0 0.32-0.117 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.022 0V6.84061h1.632v1.12h0.096c0.235-0.39467 0.581-0.72 1.04-0.976 0.469-0.26667 0.981-0.4 1.536-0.4 1.003 0 1.755 0.29867 2.256 0.896 0.501 0.59733 0.752 1.38667 0.752 2.368v5.15199h-1.712v-4.928c0-0.66132-0.165-1.14132-0.496-1.43999-0.331-0.30933-0.763-0.464-1.296-0.464-0.416 0-0.779 0.11733-1.088 0.352-0.309 0.224-0.555 0.52267-0.736 0.896-0.171 0.37333-0.256 0.77329-0.256 1.19999v4.384h-1.728z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="232dp" android:height="21dp" android:viewportWidth="232" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M5.52138 15.2566c-1.04534 0-1.94667-0.2453-2.704-0.736-0.75734-0.4907-1.26934-1.1413-1.536-1.952l1.488-0.784c0.23466 0.5333 0.576 0.976 1.024 1.328 0.45866 0.3413 1.04 0.512 1.744 0.512 0.64 0 1.18933-0.16 1.648-0.48 0.46933-0.32 0.704-0.7947 0.704-1.424 0-0.544-0.192-0.9973-0.576-1.36-0.37334-0.37332-0.90667-0.55999-1.6-0.55999h-1.552v-1.568h1.552c0.58666 0 1.02933-0.15467 1.328-0.464 0.29866-0.32 0.448-0.72 0.448-1.2 0-0.55467-0.18134-0.976-0.544-1.264-0.36267-0.288-0.864-0.432-1.504-0.432-0.56534 0-1.072 0.11733-1.52 0.352-0.43734 0.23467-0.768 0.56-0.992 0.976l-1.44-0.688c0.34133-0.69333 0.85333-1.23733 1.536-1.632 0.68266-0.39467 1.488-0.592 2.416-0.592 0.77866 0 1.45066 0.13333 2.016 0.4 0.576 0.26667 1.01866 0.63467 1.328 1.104 0.30933 0.45867 0.464 0.992 0.464 1.6 0 0.544-0.13867 1.03467-0.41601 1.472-0.26666 0.42667-0.66666 0.768-1.19999 1.024v0.096c0.59733 0.24533 1.08266 0.59733 1.456 1.05599 0.37333 0.4587 0.55999 1.0293 0.55999 1.712 0 0.64-0.16533 1.2267-0.49599 1.76-0.33067 0.5333-0.80534 0.96-1.424 1.28-0.61867 0.3093-1.35467 0.464-2.208 0.464zm8.52472 0c-0.5866 0-1.1093-0.112-1.568-0.336-0.4586-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1494-1.0667 0.448-1.472 0.3094-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0774-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6934 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8106 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4266 0.256-0.9386 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3414-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3306-0.096-0.6826-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2986 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.0204 1.152V6.84061h7.168v8.15999h-1.728V8.34461h-3.712v6.65599h-1.728zm9.4655 0.128c-0.2453 0-0.48-0.0267-0.704-0.08v-1.6c0.1493 0.0747 0.3147 0.112 0.496 0.112 0.3627 0 0.6187-0.1387 0.768-0.416 0.1493-0.288 0.24-0.6507 0.272-1.088 0.032-0.4373 0.048-0.8907 0.048-1.36V6.84061h6.24v8.15999h-1.712V8.34461h-2.896v2.62399c0 0.5547-0.0373 1.0827-0.112 1.584-0.064 0.4907-0.1867 0.9333-0.368 1.328-0.1813 0.384-0.4373 0.688-0.768 0.912-0.32 0.224-0.7413 0.336-1.264 0.336zm11.7851 0.128c-0.5866 0-1.1093-0.112-1.568-0.336-0.4586-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1494-1.0667 0.448-1.472 0.3094-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0774-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6934 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8106 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4266 0.256-0.9386 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3414-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3306-0.096-0.6826-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2986 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm12.6284 3.584v-2.432h-6.608V6.84061h1.728v6.65599h3.552V6.84061h1.728v6.65599h1.184v3.936h-1.584zm4.2684-11.79199c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2346 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1174 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm10.63 2.432v-2.432h-6.608V6.84061h1.728v6.65599h3.552V6.84061h1.728v6.65599h1.184v3.936h-1.584zm5.0043-10.59199v2.72h1.872c0.5547 0 1.0507 0.11733 1.488 0.352 0.448 0.23469 0.8 0.55999 1.056 0.97599 0.256 0.4053 0.384 0.8693 0.384 1.392 0 0.5227-0.128 0.9867-0.384 1.392-0.256 0.4053-0.608 0.7307-1.056 0.976-0.4373 0.2347-0.9333 0.352-1.488 0.352h-3.6V6.84061h1.728zm0 6.71999h1.728c0.384 0 0.704-0.1227 0.96-0.368s0.384-0.5493 0.384-0.912-0.128-0.6667-0.384-0.912c-0.256-0.256-0.576-0.384-0.96-0.384h-1.728v2.576zm13.1872 1.696c-0.448 0-0.896-0.0533-1.344-0.16-0.448-0.1067-0.8694-0.288-1.264-0.544-0.384-0.2667-0.704-0.6347-0.96-1.104l1.376-0.8c0.2986 0.416 0.64 0.704 1.024 0.864 0.3946 0.1493 0.784 0.224 1.168 0.224 0.5546 0 0.976-0.1067 1.264-0.32 0.288-0.2133 0.432-0.4907 0.432-0.832 0-0.2987-0.1334-0.5387-0.4-0.72-0.256-0.192-0.6187-0.288-1.088-0.288h-1.328v-1.36h1.328c0.4053 0 0.7146-0.096 0.928-0.28799 0.224-0.192 0.336-0.43733 0.336-0.736 0-0.352-0.1494-0.62933-0.448-0.832-0.2987-0.21333-0.6774-0.32-1.136-0.32-0.4054 0-0.7947 0.08533-1.168 0.256-0.3734 0.16-0.656 0.37867-0.848 0.656l-1.28-0.848c0.3733-0.46933 0.8426-0.83733 1.408-1.104 0.576-0.27733 1.2106-0.416 1.904-0.416 0.5973 0 1.136 0.10133 1.616 0.304 0.4906 0.20267 0.8746 0.48533 1.152 0.848 0.288 0.352 0.432 0.76267 0.432 1.232 0 0.40533-0.1014 0.768-0.304 1.08799-0.2027 0.3093-0.4694 0.544-0.8 0.704v0.096c0.416 0.1707 0.752 0.4267 1.008 0.768s0.384 0.7307 0.384 1.168c0 0.48-0.1387 0.9067-0.416 1.28-0.2774 0.3627-0.672 0.6507-1.184 0.864-0.512 0.2133-1.1094 0.32-1.792 0.32zm8.2952 2.176v-3.936h0.896c0.1707-0.2027 0.32-0.4907 0.448-0.864 0.1387-0.384 0.2454-0.816 0.32-1.296 0.0854-0.48 0.128-0.9653 0.128-1.45599v-3.04h6.1124v6.65599h1.184v3.936h-1.584v-2.432h-5.9044v2.432h-1.6zm2.752-3.936h3.4404V8.34461h-2.7684v1.67999c0 0.7467-0.0533 1.392-0.16 1.936-0.1066 0.5333-0.2773 1.0133-0.512 1.44v0.096zm10.5824 1.76c-0.587 0-1.11-0.112-1.568-0.336-0.459-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.149-1.0667 0.448-1.472 0.309-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.077-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.394 0.09599 0.693 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.811 0.096-1.184 0.288-0.374 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.586-0.288 1.226-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.214 0.3307-0.534 0.624-0.96 0.88-0.427 0.256-0.939 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.842-0.1067 1.184-0.32 0.341-0.2133 0.608-0.4907 0.8-0.832 0.202-0.352 0.304-0.7307 0.304-1.136-0.246-0.1387-0.534-0.2507-0.864-0.336-0.331-0.096-0.683-0.144-1.056-0.144-0.704 0-1.206 0.144-1.504 0.432-0.299 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.02 1.152V6.84061h7.168v8.15999h-1.728V8.34461h-3.712v6.65599h-1.728zm11.819 0.256c-0.586 0-1.109-0.112-1.568-0.336-0.458-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.15-1.0667 0.448-1.472 0.31-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.078-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.395 0.09599 0.694 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.81 0.096-1.184 0.288-0.373 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.587-0.288 1.227-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.213 0.3307-0.533 0.624-0.96 0.88-0.426 0.256-0.938 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.843-0.1067 1.184-0.32 0.342-0.2133 0.608-0.4907 0.8-0.832 0.203-0.352 0.304-0.7307 0.304-1.136-0.245-0.1387-0.533-0.2507-0.864-0.336-0.33-0.096-0.682-0.144-1.056-0.144-0.704 0-1.205 0.144-1.504 0.432-0.298 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.021 1.152V6.84061h2.048l2.512 4.99199h0.08l2.528-4.99199h2v8.15999h-1.648v-3.968l0.08-1.56799h-0.096l-2.352 4.49599h-1.136l-2.352-4.49599h-0.096l0.08 1.56799v3.968h-1.648zm15.099 0.256c-0.843 0-1.584-0.192-2.224-0.576-0.64-0.384-1.141-0.9013-1.504-1.552-0.363-0.6507-0.544-1.3867-0.544-2.208 0-0.8107 0.181-1.54132 0.544-2.19199 0.363-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.381-0.576 2.224-0.576 0.832 0 1.568 0.192 2.208 0.576 0.64 0.384 1.141 0.90667 1.504 1.568 0.363 0.65067 0.544 1.38129 0.544 2.19199 0 0.8213-0.181 1.5573-0.544 2.208-0.363 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.693-0.5387 0.928-0.944 0.245-0.416 0.368-0.912 0.368-1.488s-0.123-1.06666-0.368-1.47199c-0.235-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.869 0.112-1.264 0.336-0.384 0.21333-0.699 0.528-0.944 0.944-0.235 0.40533-0.352 0.89599-0.352 1.47199s0.117 1.072 0.352 1.488c0.245 0.4053 0.56 0.72 0.944 0.944 0.395 0.2133 0.816 0.32 1.264 0.32zm5.841 1.328V6.84061h5.344v1.504h-3.616v6.65599h-1.728zm9.32 0.256c-0.587 0-1.11-0.112-1.568-0.336-0.459-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.149-1.0667 0.448-1.472 0.309-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.077-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.394 0.09599 0.693 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.811 0.096-1.184 0.288-0.374 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.586-0.288 1.226-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.214 0.3307-0.534 0.624-0.96 0.88-0.427 0.256-0.939 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.842-0.1067 1.184-0.32 0.341-0.2133 0.608-0.4907 0.8-0.832 0.202-0.352 0.304-0.7307 0.304-1.136-0.246-0.1387-0.534-0.2507-0.864-0.336-0.331-0.096-0.683-0.144-1.056-0.144-0.704 0-1.206 0.144-1.504 0.432-0.299 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.02 1.152V6.84061h1.728v4.17599l-0.096 1.536h0.096l4.08-5.71199h1.712v8.15999h-1.712v-4.16l0.096-1.53599h-0.096l-4.08 5.69599h-1.728zm3.776-9.34399c-0.459 0-0.88-0.08533-1.264-0.256s-0.688-0.41067-0.912-0.72c-0.224-0.32-0.336-0.68267-0.336-1.088h1.328c0 0.256 0.107 0.48 0.32 0.672 0.224 0.192 0.512 0.288 0.864 0.288 0.341 0 0.619-0.096 0.832-0.288 0.224-0.192 0.336-0.416 0.336-0.672h1.312c0 0.40533-0.112 0.768-0.336 1.088-0.224 0.30933-0.523 0.54933-0.896 0.72s-0.789 0.256-1.248 0.256z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M206.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM215.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3646-1.034-2.2744 0-0.9607 0.363-1.7243 1.09-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M231.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M199.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.362v3.00336h4.217c-0.181 0.9789-0.729 1.8119-1.559 2.3697v1.9506h2.516c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M191.806 16.2651c2.107 0 3.881-0.691 5.174-1.8823l-2.516-1.9506c-0.7 0.4711-1.603 0.7462-2.658 0.7462-2.036 0-3.764-1.3711-4.382-3.21884h-2.592v2.00904c1.284 2.5474 3.925 4.2965 6.974 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M187.424 9.95957c-0.158-0.47113-0.245-0.97367-0.245-1.49245s0.087-1.02132 0.245-1.49245V4.96561h-2.592C184.3 6.01833 184 7.20753 184 8.46712c0 1.25959 0.3 2.44888 0.832 3.50148l2.592-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M191.806 3.75583c1.151 0 2.182 0.39532 2.995 1.1697v0.00108l2.228-2.22567c-1.353-1.25851-3.117-2.031812-5.223-2.031812-3.049 0-5.69 1.749132-6.974 4.296472l2.592 2.00907c0.618-1.84769 2.346-3.21884 4.382-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="229dp" android:height="21dp" android:viewportWidth="229" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4549 0.193 0.8339 0.5791 1.1372 0.3859 0.3033 0.838 0.4549 1.3563 0.4549 0.734 0 1.3878-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9137-0.5443-0.43-1.3032-0.6444-2.2769-0.6444-0.7089 0-1.2998 0.1711-1.7737 0.5122-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74741c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63325 1.1188 2.83327v5.72391h-1.6696v-1.2888h-0.076c-0.721 1.0613-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3646-1.0342-2.2744 0-0.9607 0.3631-1.7243 1.0906-2.2928 0.7275-0.56862 1.698-0.85347 2.9124-0.85347 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46897c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7455 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8479-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0466-1.07872-0.1345-1.58559H7.80649v3.00336h4.21661c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80647 16.2651c2.10667 0 3.88043-0.691 5.17393-1.8823l-2.5165-1.9506c-0.70039 0.4711-1.60247 0.7462-2.65743 0.7462-2.03619 0-3.76445-1.3711-4.38247-3.21884H0.831604v2.00904C2.11642 14.516 4.75653 16.2651 7.80647 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.95957C3.26571 9.48844 3.17897 8.9859 3.17897 8.46712S3.26571 7.4458 3.42401 6.97467V4.96561H0.831606C0.300332 6.01833 0 7.20753 0 8.46712 0 9.72671 0.300332 10.916 0.831606 11.9686L3.42401 9.95957z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80647 3.75583c1.15037 0 2.18148 0.39532 2.99463 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11715-2.031812-5.22273-2.031812-3.04994 0-5.69005 1.749132-6.974866 4.296472L3.424 6.97467c0.61802-1.84769 2.34628-3.21884 4.38247-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M60.658 15.0006c-0.704-0.9387-1.6107-1.7653-2.72-2.48-1.0987-0.7147-2.2667-1.28-3.504-1.696V9.65661c0.8853-0.81067 1.84-1.456 2.864-1.936 1.0347-0.48 2.0747-0.8 3.12-0.96v-1.136H53.33v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-0.24-2.24h0.08l-0.08-1.248V8.29661c-0.7253 0.13867-1.4293 0.352-2.112 0.64-0.6827 0.288-1.3333 0.66667-1.952 1.13599 0.736 0.288 1.456 0.6667 2.16 1.136 0.7147 0.4587 1.3493 0.976 1.904 1.552zm4.626 2.336l-0.512-1.2c0.5013-0.2027 0.896-0.4373 1.184-0.704 0.2987-0.2773 0.448-0.672 0.448-1.184 0-0.3307-0.08-0.6613-0.24-0.992-0.16-0.3307-0.3627-0.6933-0.608-1.08799-0.2453-0.39467-0.4427-0.77333-0.592-1.136-0.1493-0.37333-0.224-0.77867-0.224-1.216 0-0.32 0.064-0.65067 0.192-0.992 0.1387-0.352 0.352-0.672 0.64-0.96v-0.08l-1.088 0.08H62.98v-1.296h5.76v1.296h-1.872c-0.5653 0.55467-0.848 1.15733-0.848 1.808 0 0.39467 0.0747 0.752 0.224 1.072 0.1493 0.32 0.3573 0.71467 0.624 1.184 0.256 0.42669 0.4533 0.81599 0.592 1.16799 0.1493 0.352 0.224 0.7413 0.224 1.168 0 0.5547-0.1227 1.0293-0.368 1.424-0.2347 0.3947-0.5547 0.7253-0.96 0.992-0.3947 0.2667-0.832 0.4853-1.312 0.656zm10.539-0.096c-0.704-0.9387-1.6107-1.7653-2.72-2.48-1.0987-0.7147-2.2667-1.28-3.504-1.696V9.65661c0.8853-0.81067 1.84-1.456 2.864-1.936 1.0347-0.48 2.0747-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-0.24-2.24h0.08l-0.08-1.248V8.29661c-0.7253 0.13867-1.4293 0.352-2.112 0.64-0.6827 0.288-1.3333 0.66667-1.952 1.13599 0.736 0.288 1.456 0.6667 2.16 1.136 0.7147 0.4587 1.3493 0.976 1.904 1.552zm2.562-7.13599v-1.296h10.336v1.296h-5.088c0.1067 0.352 0.176 0.72 0.208 1.104 1.0453 0.11733 1.8453 0.47467 2.4 1.072 0.5653 0.58667 0.848 1.296 0.848 2.128 0 0.74669-0.2347 1.36529-0.704 1.85599-0.4587 0.48-1.0773 0.7733-1.856 0.88l-0.016 0.08c0.8533 0.3947 1.6587 0.8053 2.416 1.232 0.7573 0.4267 1.4027 0.8373 1.936 1.232l-0.736 1.136c-0.832-0.544-1.728-1.0613-2.688-1.552-0.9493-0.4907-1.92-0.9333-2.912-1.328-0.9813-0.3947-1.9413-0.7147-2.88-0.96l0.384-1.408c0.672 0.1707 1.2107 0.2933 1.616 0.368 0.416 0.064 0.8107 0.096 1.184 0.096 0.7893 0 1.424-0.1547 1.904-0.464 0.4907-0.3093 0.736-0.7467 0.736-1.31199 0-0.416-0.144-0.768-0.432-1.056-0.288-0.288-0.72-0.47467-1.296-0.56-0.1173 0.384-0.3147 0.70933-0.592 0.976-0.2773 0.26667-0.6507 0.4-1.12 0.4-0.3413 0-0.6347-0.10667-0.88-0.32-0.2453-0.224-0.368-0.51733-0.368-0.88 0-0.39467 0.1387-0.73067 0.416-1.008 0.288-0.288 0.6773-0.48 1.168-0.576-0.0213-0.192-0.0533-0.37867-0.096-0.56-0.032-0.192-0.08-0.384-0.144-0.576h-3.744zm11.4211 9.37599V6.72861c0-0.37333-0.08-0.65067-0.24-0.832-0.1493-0.18133-0.3946-0.272-0.736-0.272h-0.592v-1.296h0.592c0.4587 0 0.784 0.10133 0.976 0.304h0.08l-0.08-1.152v-0.56h1.488v1.408h1.568v1.296h-1.568v9.37599h-1.488zm9.8944 0c-0.704-0.9387-1.6107-1.7653-2.72-2.48-1.0987-0.7147-2.2667-1.28-3.504-1.696V9.65661c0.8853-0.81067 1.84-1.456 2.864-1.936 1.0347-0.48 2.0747-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.1435v1.296h-1.552v9.37599h-1.2635zm-0.24-2.24h0.08l-0.08-1.248V8.29661c-0.7253 0.13867-1.4293 0.352-2.112 0.64-0.6827 0.288-1.3333 0.66667-1.952 1.13599 0.736 0.288 1.456 0.6667 2.16 1.136 0.7147 0.4587 1.3493 0.976 1.904 1.552zm-4.144 2.512c-0.3413 0-0.6187-0.1067-0.832-0.32-0.2133-0.224-0.32-0.5013-0.32-0.832s0.1067-0.6027 0.32-0.816c0.2133-0.224 0.4907-0.336 0.832-0.336 0.3307 0 0.6027 0.112 0.816 0.336 0.224 0.2133 0.336 0.4853 0.336 0.816 0 0.3307-0.112 0.608-0.336 0.832-0.2133 0.2133-0.4853 0.32-0.816 0.32zm17.2625-0.272c-0.416-0.608-0.928-1.1733-1.536-1.696-0.608-0.5227-1.264-0.9867-1.968-1.392-0.704-0.416-1.392-0.7573-2.064-1.024V9.72061c0.715-0.768 1.531-1.40267 2.448-1.904 0.928-0.512 1.904-0.85867 2.928-1.04v-1.152h-6.48v-1.296h13.76v1.296h-5.824v1.04c0.96 0.01067 1.792 0.17067 2.496 0.48 0.715 0.29867 1.264 0.71467 1.648 1.248 0.384 0.53333 0.576 1.152 0.576 1.85599 0 0.704-0.213 1.2853-0.64 1.744-0.427 0.4587-0.965 0.688-1.616 0.688-0.437 0-0.795-0.1173-1.072-0.352-0.277-0.2453-0.416-0.544-0.416-0.896 0-0.3307 0.107-0.5973 0.32-0.8 0.213-0.2027 0.491-0.304 0.832-0.304 0.405 0 0.704 0.16 0.896 0.48 0.117-0.1707 0.176-0.3787 0.176-0.624 0-0.58666-0.272-1.07732-0.816-1.47199-0.544-0.40533-1.296-0.61333-2.256-0.624h-0.112v6.91199h-1.28zm-0.208-2.288h0.08l-0.08-1.248V8.31261c-1.408 0.30933-2.613 0.92267-3.616 1.83999 0.608 0.2667 1.216 0.608 1.824 1.024 0.608 0.416 1.205 0.928 1.792 1.536zm12.075 2.544c-0.48 0-0.949-0.1333-1.408-0.4-0.448-0.2667-0.859-0.64-1.232-1.12-0.363-0.4907-0.656-1.0613-0.88-1.712-0.224-0.6507-0.336-1.36-0.336-2.12799 0-0.928 0.149-1.75467 0.448-2.48 0.309-0.736 0.736-1.33333 1.28-1.792v-0.08l-1.024 0.08h-2.112v-1.296h6.672v1.296h-0.272c-0.672 0-1.269 0.17067-1.792 0.512-0.512 0.34133-0.917 0.82133-1.216 1.44-0.288 0.61867-0.432 1.33867-0.432 2.16 0 0.76799 0.101 1.44529 0.304 2.03199 0.213 0.5867 0.544 1.0827 0.992 1.488 0.096-0.224 0.251-0.4053 0.464-0.544 0.224-0.1387 0.48-0.208 0.768-0.208 0.373 0 0.688 0.1333 0.944 0.4 0.256 0.256 0.384 0.576 0.384 0.96 0 0.4053-0.144 0.7413-0.432 1.008-0.277 0.256-0.651 0.384-1.12 0.384zm8.245-0.256c-0.704-0.9387-1.611-1.7653-2.72-2.48-1.099-0.7147-2.267-1.28-3.504-1.696V9.65661c0.885-0.81067 1.84-1.456 2.864-1.936 1.035-0.48 2.075-0.8 3.12-0.96v-1.136h-7.088v-1.296h10.144v1.296h-1.552v9.37599h-1.264zm-0.24-2.24h0.08l-0.08-1.248V8.29661c-0.725 0.13867-1.429 0.352-2.112 0.64-0.683 0.288-1.333 0.66667-1.952 1.13599 0.736 0.288 1.456 0.6667 2.16 1.136 0.715 0.4587 1.349 0.976 1.904 1.552zm-4.144 2.512c-0.341 0-0.619-0.1067-0.832-0.32-0.213-0.224-0.32-0.5013-0.32-0.832s0.107-0.6027 0.32-0.816c0.213-0.224 0.491-0.336 0.832-0.336 0.331 0 0.603 0.112 0.816 0.336 0.224 0.2133 0.336 0.4853 0.336 0.816 0 0.3307-0.112 0.608-0.336 0.832-0.213 0.2133-0.485 0.32-0.816 0.32zm15.854-0.016c-0.458 0-0.917-0.1387-1.376-0.416-0.448-0.2773-0.858-0.6667-1.232-1.168-0.373-0.5013-0.677-1.088-0.912-1.76-0.224-0.672-0.336-1.3973-0.336-2.17599 0-1.13067 0.198-2.10133 0.592-2.912 0.406-0.81067 0.96-1.42933 1.664-1.856 0.715-0.42667 1.552-0.64 2.512-0.64h0.544v1.296h-0.288c-1.045 0-1.888 0.35733-2.528 1.072-0.629 0.71467-0.944 1.712-0.944 2.992 0 0.79999 0.112 1.49869 0.336 2.09599 0.224 0.5867 0.539 1.0827 0.944 1.488 0.107-0.224 0.267-0.4053 0.48-0.544 0.224-0.1493 0.48-0.224 0.768-0.224 0.374 0 0.688 0.1333 0.944 0.4 0.256 0.256 0.384 0.576 0.384 0.96 0 0.4053-0.144 0.7413-0.432 1.008-0.277 0.256-0.65 0.384-1.12 0.384zm10.15-0.256V9.92861c0-0.45867-0.048-0.88-0.144-1.264-0.086-0.39467-0.214-0.752-0.384-1.072l-4.72 4.19199-1.056-1.024c0.245-0.224 0.437-0.4693 0.576-0.736 0.138-0.27732 0.208-0.53866 0.208-0.78399 0-0.32-0.096-0.57067-0.288-0.752-0.182-0.18133-0.427-0.272-0.736-0.272-0.395 0-0.8 0.11733-1.216 0.352l-0.784-0.912c0.181-0.74667 0.496-1.38133 0.944-1.904 0.458-0.52267 0.997-0.91733 1.616-1.184 0.618-0.27733 1.28-0.416 1.984-0.416 0.789 0 1.546 0.18667 2.272 0.56 0.725 0.37333 1.301 0.896 1.728 1.568h0.08l-0.08-1.168v-2.192h1.504v1.408h1.552v1.296h-1.552v9.37599h-1.504zm-6.304-8.11199c0.597 0.01067 1.088 0.208 1.472 0.592 0.394 0.384 0.592 0.85867 0.592 1.424l2.784-2.464c-0.704-0.56533-1.542-0.848-2.512-0.848-0.523 0-1.014 0.10667-1.472 0.32-0.448 0.21333-0.822 0.52267-1.12 0.928l0.032 0.064h0.096c0.042-0.01067 0.085-0.016 0.128-0.016zm14.126 8.36799c-0.48 0-0.949-0.1333-1.408-0.4-0.448-0.2667-0.858-0.64-1.232-1.12-0.362-0.4907-0.656-1.0613-0.88-1.712-0.224-0.6507-0.336-1.36-0.336-2.12799 0-0.928 0.15-1.75467 0.448-2.48 0.31-0.736 0.736-1.33333 1.28-1.792v-0.08l-1.024 0.08h-2.112v-1.296h6.672v1.296h-0.272c-0.672 0-1.269 0.17067-1.792 0.512-0.512 0.34133-0.917 0.82133-1.216 1.44-0.288 0.61867-0.432 1.33867-0.432 2.16 0 0.76799 0.102 1.44529 0.304 2.03199 0.214 0.5867 0.544 1.0827 0.992 1.488 0.096-0.224 0.251-0.4053 0.464-0.544 0.224-0.1387 0.48-0.208 0.768-0.208 0.374 0 0.688 0.1333 0.944 0.4 0.256 0.256 0.384 0.576 0.384 0.96 0 0.4053-0.144 0.7413-0.432 1.008-0.277 0.256-0.65 0.384-1.12 0.384zm8.486-0.256c-0.214-0.9387-0.555-1.7387-1.024-2.4-0.459-0.672-0.998-1.1467-1.616-1.424-0.064 0.416-0.251 0.7573-0.56 1.024-0.299 0.2667-0.678 0.4-1.136 0.4-0.438 0-0.8-0.1333-1.088-0.4-0.278-0.2773-0.416-0.6293-0.416-1.056 0-0.448 0.144-0.8213 0.432-1.12 0.288-0.30932 0.672-0.50666 1.152-0.59199-0.086-0.74667-0.326-1.36533-0.72-1.856-0.384-0.49067-0.95-0.896-1.696-1.216l0.256-0.736h-1.152v-1.296h10.496v1.296h-1.552v9.37599h-1.376zm-0.128-3.536h0.08l-0.08-1.232V5.62461h-3.664l-1.088-0.08v0.08c0.608 0.416 1.098 0.96 1.472 1.632 0.384 0.66133 0.608 1.424 0.672 2.288 1.034 0.27733 1.904 0.91729 2.608 1.91999zm2.569-5.83999v-1.296h5.984v1.296h-5.984zm6.784 5.15199v-0.096c0-0.3307-0.133-0.656-0.4-0.97599-0.267-0.33067-0.603-0.624-1.008-0.88-0.213-0.13867-0.475-0.26667-0.784-0.384-0.309-0.11733-0.603-0.18133-0.88-0.192 0.075 0.16 0.112 0.336 0.112 0.528 0 0.352-0.107 0.65067-0.32 0.896-0.203 0.24533-0.528 0.36799-0.976 0.36799-0.437 0-0.779-0.13866-1.024-0.41599-0.245-0.288-0.368-0.64533-0.368-1.072 0-0.55467 0.197-0.99733 0.592-1.328 0.395-0.33067 0.917-0.496 1.568-0.496s1.269 0.13867 1.856 0.416c0.587 0.27733 1.093 0.61867 1.52 1.024h0.384v2.60799h-0.272zm2.841 3.888c-0.886 0-1.563-0.2613-2.032-0.784-0.459-0.5333-0.688-1.3067-0.688-2.32V5.62461h-1.536v-1.296h6.848c-0.032-0.50133-0.16-0.84267-0.384-1.024s-0.603-0.272-1.136-0.272h-2.112c-0.864 0-1.536-0.21867-2.016-0.656s-0.72-1.00267-0.72-1.696c0-0.234667 0.026-0.464 0.08-0.688l1.6 0.304c-0.043 0.117333-0.064 0.24-0.064 0.368 0 0.352 0.106 0.61333 0.32 0.784 0.224 0.17067 0.517 0.256 0.88 0.256h2.112c0.928 0 1.642 0.24533 2.144 0.736 0.512 0.48 0.805 1.10933 0.88 1.888h1.408v1.296h-6.8v5.95199c0 0.5973 0.09 1.024 0.272 1.28 0.181 0.2453 0.485 0.368 0.912 0.368 0.352 0 0.704-0.08 1.056-0.24 0.352-0.1707 0.672-0.3947 0.96-0.672 0.288-0.288 0.517-0.6133 0.688-0.976 0.17-0.3627 0.256-0.7413 0.256-1.136 0-0.24532-0.027-0.43732-0.08-0.57599-0.203 0.21333-0.475 0.32-0.816 0.32-0.395 0-0.72-0.13333-0.976-0.4s-0.384-0.59733-0.384-0.992c0-0.40533 0.144-0.74133 0.432-1.008 0.288-0.27733 0.645-0.416 1.072-0.416 0.458 0 0.864 0.128 1.216 0.384s0.624 0.61333 0.816 1.072c0.192 0.448 0.288 0.96533 0.288 1.55199 0 0.6187-0.123 1.2-0.368 1.744-0.235 0.544-0.56 1.024-0.976 1.44-0.416 0.416-0.896 0.7467-1.44 0.992-0.544 0.2347-1.115 0.352-1.712 0.352zm15.653 0.336c-0.416-0.608-0.928-1.1733-1.536-1.696-0.608-0.5227-1.264-0.9867-1.968-1.392-0.704-0.416-1.392-0.7573-2.064-1.024V9.72061c0.715-0.768 1.531-1.40267 2.448-1.904 0.928-0.512 1.904-0.85867 2.928-1.04v-1.152h-6.48v-1.296h13.76v1.296h-5.824v1.04c0.96 0.01067 1.792 0.17067 2.496 0.48 0.715 0.29867 1.264 0.71467 1.648 1.248 0.384 0.53333 0.576 1.152 0.576 1.85599 0 0.704-0.213 1.2853-0.64 1.744-0.426 0.4587-0.965 0.688-1.616 0.688-0.437 0-0.794-0.1173-1.072-0.352-0.277-0.2453-0.416-0.544-0.416-0.896 0-0.3307 0.107-0.5973 0.32-0.8 0.214-0.2027 0.491-0.304 0.832-0.304 0.406 0 0.704 0.16 0.896 0.48 0.118-0.1707 0.176-0.3787 0.176-0.624 0-0.58666-0.272-1.07732-0.816-1.47199-0.544-0.40533-1.296-0.61333-2.256-0.624h-0.112v6.91199h-1.28zm-0.208-2.288h0.08l-0.08-1.248V8.31261c-1.408 0.30933-2.613 0.92267-3.616 1.83999 0.608 0.2667 1.216 0.608 1.824 1.024 0.608 0.416 1.206 0.928 1.792 1.536zm14.139 2.288c-0.704-0.9387-1.61-1.7653-2.72-2.48-1.098-0.7147-2.266-1.28-3.504-1.696V9.65661c0.886-0.81067 1.84-1.456 2.864-1.936 1.035-0.48 2.075-0.8 3.12-0.96v-1.136h-7.088v-1.296h14.24v1.296h-5.648v2.816c0 0.58667 0.096 1.06667 0.288 1.44 0.203 0.37329 0.459 0.65599 0.768 0.84799 0.32 0.1813 0.667 0.272 1.04 0.272 0.384 0 0.699-0.096 0.944-0.288 0.246-0.2027 0.368-0.5013 0.368-0.89599 0-0.43733-0.149-0.736-0.448-0.896 0.011 0.05333 0.016 0.112 0.016 0.176 0 0.23467-0.085 0.432-0.256 0.592-0.17 0.16-0.4 0.24-0.688 0.24-0.277 0-0.538-0.09067-0.784-0.272-0.234-0.18133-0.352-0.47467-0.352-0.88 0-0.352 0.134-0.65067 0.4-0.896 0.278-0.24533 0.656-0.368 1.136-0.368 0.48 0 0.896 0.112 1.248 0.336 0.363 0.21333 0.64 0.50667 0.832 0.88 0.203 0.36267 0.304 0.76267 0.304 1.2 0 0.82129-0.245 1.43469-0.736 1.83999-0.49 0.4053-1.082 0.608-1.776 0.608-0.437 0-0.858-0.0853-1.264-0.256-0.405-0.1707-0.752-0.4427-1.04-0.816v3.696h-1.264zm-0.24-2.24h0.08l-0.08-1.248V8.29661c-0.725 0.13867-1.429 0.352-2.112 0.64-0.682 0.288-1.333 0.66667-1.952 1.13599 0.736 0.288 1.456 0.6667 2.16 1.136 0.715 0.4587 1.35 0.976 1.904 1.552zm-4.144 2.496c-0.33 0-0.608-0.1067-0.832-0.32-0.213-0.2133-0.32-0.4907-0.32-0.832 0-0.3307 0.107-0.6027 0.32-0.816 0.224-0.2133 0.502-0.32 0.832-0.32 0.331 0 0.603 0.1067 0.816 0.32 0.224 0.2133 0.336 0.4853 0.336 0.816 0 0.3413-0.112 0.6187-0.336 0.832-0.213 0.2133-0.485 0.32-0.816 0.32zm17.936-0.256c-0.192-0.9173-0.464-1.7493-0.816-2.496-0.352-0.7573-0.747-1.392-1.184-1.904-0.427-0.5227-0.859-0.87466-1.296-1.05599 0.053 0.14933 0.08 0.31467 0.08 0.49599 0 0.3947-0.139 0.72-0.416 0.976-0.267 0.256-0.608 0.384-1.024 0.384-0.448 0-0.816-0.144-1.104-0.432-0.288-0.2987-0.432-0.6827-0.432-1.15199 0-0.56533 0.203-1.02933 0.608-1.392 0.416-0.36267 0.976-0.544 1.68-0.544 0.725 0 1.424 0.26667 2.096 0.8 0.672 0.52267 1.237 1.26933 1.696 2.23999h0.08l-0.08-1.23199v-4.064h-7.024v-1.296h10.08v1.296h-1.568v9.37599h-1.376z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="139dp" android:height="21dp" android:viewportWidth="139" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.63975 15.0006V3.54461h3.936c0.69333 0 1.32267 0.14933 1.888 0.448 0.56533 0.29867 1.01333 0.70933 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824s-0.17067 1.30667-0.512 1.84c-0.33067 0.52267-0.77867 0.93333-1.344 1.23199-0.56533 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm3.984-9.79199h-2.224v3.68h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50667-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14933-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272zm5.45645 9.79199V3.54461h1.728V15.0006h-1.728zm6.3972 0.256c-0.5867 0-1.1094-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3946 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3734 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5866-0.288 1.2266-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2134 0.3307-0.5334 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8426-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2026-0.352 0.304-0.7307 0.304-1.136-0.2454-0.1387-0.5334-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2054 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm9.7182 1.408c-0.8213 0-1.5466-0.1867-2.176-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.3626-0.6613-0.544-1.408-0.544-2.24 0-0.832 0.1814-1.57332 0.544-2.22399 0.3627-0.66133 0.8587-1.17867 1.488-1.552 0.6294-0.37333 1.3547-0.56 2.176-0.56 0.9067 0 1.6694 0.20267 2.288 0.608 0.6294 0.40533 1.0774 0.95467 1.344 1.648l-1.568 0.64c-0.3733-0.87467-1.072-1.312-2.096-1.312-0.448 0-0.8586 0.11733-1.232 0.352-0.3733 0.224-0.672 0.544-0.896 0.96-0.224 0.40533-0.336 0.88529-0.336 1.43999 0 0.5547 0.112 1.04 0.336 1.456 0.224 0.416 0.5227 0.736 0.896 0.96 0.3734 0.224 0.784 0.336 1.232 0.336 0.5227 0 0.9654-0.1173 1.328-0.352 0.3627-0.2453 0.6454-0.576 0.848-0.992l1.536 0.672c-0.288 0.6507-0.7466 1.1893-1.376 1.616-0.6293 0.4267-1.3973 0.64-2.304 0.64zm-0.72-9.98399l0.752-2.048h1.952l-1.28 2.048h-1.424zm8.5134 9.98399c-0.5867 0-1.1093-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.0204 1.152V6.84061h1.632v1.12h0.096c0.2346-0.39467 0.5813-0.72 1.04-0.976 0.4693-0.26667 0.9813-0.4 1.536-0.4 1.0026 0 1.7546 0.29867 2.256 0.896 0.5013 0.59733 0.752 1.38667 0.752 2.368v5.15199h-1.712v-4.928c0-0.66132-0.1654-1.14132-0.496-1.43999-0.3307-0.30933-0.7627-0.464-1.296-0.464-0.416 0-0.7787 0.11733-1.088 0.352-0.3094 0.224-0.5547 0.52267-0.736 0.896-0.1707 0.37333-0.256 0.77329-0.256 1.19999v4.384h-1.728zm10.4232-9.35999c-0.32 0-0.5973-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2347-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2347 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1173 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-1.552 12.97599c-0.3306 0-0.6293-0.0373-0.896-0.112v-1.664c0.1067 0.064 0.2294 0.112 0.368 0.144 0.128 0.0427 0.256 0.064 0.384 0.064 0.3094 0 0.5227-0.096 0.64-0.288 0.128-0.1813 0.192-0.448 0.192-0.8V6.84061h1.728v9.13599c0 0.9387-0.2293 1.6107-0.688 2.016-0.4586 0.416-1.0346 0.624-1.728 0.624zm8.3599-3.36c-0.8 0-1.5147-0.1867-2.144-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1707-1.49866 0.512-2.15999 0.3413-0.66133 0.816-1.18933 1.424-1.584 0.6187-0.40533 1.328-0.608 2.128-0.608 0.8427 0 1.5573 0.18133 2.144 0.544 0.5973 0.36267 1.0507 0.85867 1.36 1.488 0.3093 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0053 0.224-0.016 0.32 0 0.096-0.0053 0.1707-0.016 0.224h-6.304c0.0853 0.8107 0.368 1.4187 0.848 1.824 0.4907 0.4053 1.0453 0.608 1.664 0.608 0.5547 0 1.0133-0.1227 1.376-0.368 0.3627-0.256 0.6507-0.5707 0.864-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3653 0.592-2.272 0.592zm-0.08-7.19999c-0.576 0-1.0667 0.176-1.472 0.528-0.4053 0.352-0.6773 0.82133-0.816 1.408h4.528c-0.0213-0.27733-0.112-0.56533-0.272-0.864-0.16-0.29867-0.4053-0.54933-0.736-0.752-0.32-0.21333-0.7307-0.32-1.232-0.32zM71.318 15.2566c-1.0027 0-1.76-0.2987-2.272-0.896-0.5013-0.608-0.752-1.4293-0.752-2.464V6.84061h1.728v4.81599c0 0.6933 0.16 1.2053 0.48 1.536 0.3307 0.32 0.7413 0.48 1.232 0.48 0.4373 0 0.816-0.112 1.136-0.336 0.3307-0.2347 0.5813-0.5333 0.752-0.896 0.1813-0.3733 0.272-0.7787 0.272-1.216V6.84061h1.712v8.15999H73.99v-1.104h-0.096c-0.2347 0.384-0.5867 0.7093-1.056 0.976-0.4587 0.256-0.9653 0.384-1.52 0.384zm6.2896-0.256v-1.44l4.544-5.21599h-4.4v-1.504h6.512v1.44l-4.528 5.21599h4.656v1.504h-6.784z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M113.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM122.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3646-1.034-2.2744 0-0.9607 0.363-1.7243 1.09-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M138.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M106.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.3615v3.00336h4.2165c-0.181 0.9789-0.729 1.8119-1.559 2.3697v1.9506h2.516c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M98.8065 16.2651c2.1065 0 3.8805-0.691 5.1735-1.8823l-2.516-1.9506c-0.7 0.4711-1.6026 0.7462-2.6575 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M94.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C91.3003 6.01833 91 7.20753 91 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M98.8065 3.75583c1.1503 0 2.1815 0.39532 2.9945 1.1697v0.00108l2.228-2.22567c-1.353-1.25851-3.117-2.031812-5.2225-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="97dp" android:height="21dp" android:viewportWidth="97" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M3.83513 15.0006V5.20861H0.619125v-1.664H8.77913v1.664h-3.2v9.79199h-1.744zm7.86727 0.256c-0.5867 0-1.1094-0.112-1.568-0.336-0.45869-0.2347-0.81603-0.56-1.07203-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.14934-1.0667 0.448-1.472 0.30934-0.416 0.72-0.7307 1.23203-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3946 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3734 0.18133-0.672 0.432-0.896 0.752l-1.18403-0.912c0.352-0.49067 0.816-0.87467 1.39203-1.152 0.5866-0.288 1.2266-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2134 0.3307-0.5334 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8426-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2026-0.352 0.304-0.7307 0.304-1.136-0.2454-0.1387-0.5334-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2054 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm6.0363 1.152V3.54461h1.728V15.0006h-1.728zm6.8753 0.256c-1.0027 0-1.76-0.2987-2.272-0.896-0.5013-0.608-0.752-1.4293-0.752-2.464V6.84061h1.728v4.81599c0 0.6933 0.16 1.2053 0.48 1.536 0.3307 0.32 0.7413 0.48 1.232 0.48 0.4373 0 0.816-0.112 1.136-0.336 0.3307-0.2347 0.5813-0.5333 0.752-0.896 0.1813-0.3733 0.272-0.7787 0.272-1.216V6.84061h1.712v8.15999H27.59v-1.104h-0.096c-0.2347 0.384-0.5867 0.7093-1.056 0.976-0.4587 0.256-0.9653 0.384-1.52 0.384zm12.9156 0c-0.5866 0-1.1093-0.112-1.568-0.336-0.4586-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1494-1.0667 0.448-1.472 0.3094-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0774-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6934 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8106 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4266 0.256-0.9386 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3414-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3306-0.096-0.6826-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2986 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm-2.128-8.57599v-0.112l1.712-1.936h1.52l1.728 1.936v0.112h-1.664l-0.752-0.992h-0.16l-0.736 0.992h-1.648z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M71.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6296c1.1765 0 2.1751 0.39207 2.9979 1.17512 0.835 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4174 2.11088-1.2523 2.88093-0.8099 0.77113-1.8096 1.15562-2.9979 1.15562h-2.884v0.00108zM80.2545 12.4831c0 0.4549 0.193 0.8339 0.5791 1.1372 0.3859 0.3033 0.838 0.4549 1.3564 0.4549 0.7339 0 1.3877-0.272 1.9634-0.8145 0.5759-0.5437 0.8631-1.1816 0.8631-1.9137-0.5443-0.43-1.3033-0.6444-2.2769-0.6444-0.709 0-1.2999 0.1711-1.7737 0.5122-0.4739 0.3411-0.7114 0.7625-0.7114 1.2683m2.2585-6.74741c1.2902 0 2.3083 0.34441 3.0555 1.03323 0.7459 0.68882 1.1188 1.63325 1.1188 2.83327v5.72391h-1.6696v-1.2888h-0.076c-0.7211 1.0613-1.6828 1.5921-2.884 1.5921-1.0246 0-1.8822-0.3033-2.5708-0.9098-0.6895-0.6065-1.0343-1.3646-1.0343-2.2744 0-0.9607 0.3631-1.7243 1.0907-2.2928 0.7275-0.56862 1.698-0.85347 2.9123-0.85347 1.0364 0 1.8908 0.18954 2.5609 0.56861V9.46897c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0432-0.63467-1.6883-0.63467-0.9747 0-1.7455 0.41048-2.3147 1.23251L78.755 7.55522c0.8479-1.21302 2.1002-1.81953 3.758-1.81953M96.2687 6.03894L90.4432 19.4201h-1.8021l2.1631-4.6821-3.8328-8.69906h1.8974l2.7702 6.67166h0.0379l2.6944-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M64.3029 8.64473c0-0.5491-0.0466-1.07872-0.1345-1.58559h-7.3619v3.00336h4.2166c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M56.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M52.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C49.3003 6.01833 49 7.20753 49 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M56.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="118dp" android:height="21dp" android:viewportWidth="118" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.51163 15.0006V3.54461h3.936c0.69333 0 1.32266 0.14933 1.888 0.448 0.56533 0.29867 1.01333 0.70933 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824s-0.17067 1.30667-0.512 1.84c-0.33067 0.52267-0.77867 0.93333-1.344 1.23199-0.56534 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm3.984-9.79199h-2.224v3.68h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50666-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14934-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272zM13.1055 15.2566c-0.5867 0-1.1093-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.6481 4.208c-0.032 0.0853-0.0693 0.1653-0.112 0.24-0.032 0.0747-0.0533 0.128-0.064 0.16h-1.84c0.0534-0.1173 0.128-0.288 0.224-0.512 0.1067-0.2133 0.208-0.4213 0.304-0.624s0.1974-0.432 0.304-0.688c0.1174-0.256 0.2347-0.5067 0.352-0.752l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.1173 0.2773-0.2453 0.5653-0.384 0.864-0.128 0.3093-0.2133 0.5173-0.256 0.624zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm12.305-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2346 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1174 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.8079-2.368V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.2026 0 0.3733-0.0267 0.512-0.08 0.1493-0.0533 0.2986-0.128 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84zm5.6141 2.368V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 1.0133 0 1.776 0.304 2.288 0.912 0.512 0.59733 0.768 1.38133 0.768 2.352v5.15199h-1.712v-4.928c0-0.66132-0.176-1.14132-0.528-1.43999-0.3414-0.30933-0.7627-0.464-1.264-0.464-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M92.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6296c1.1765 0 2.1751 0.39207 2.9979 1.17512 0.835 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4174 2.11088-1.2523 2.88093-0.8099 0.77113-1.8096 1.15562-2.9979 1.15562h-2.884v0.00108zM101.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.6896-0.6065-1.0344-1.3646-1.0344-2.2744 0-0.9607 0.3631-1.7243 1.0904-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M117.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M85.3028 8.64473c0-0.5491-0.0466-1.07872-0.1344-1.58559h-7.3619v3.00336h4.2165c-0.181 0.9789-0.7286 1.8119-1.5591 2.3697v1.9506h2.5165c1.4735-1.3582 2.3224-3.3651 2.3224-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M77.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M73.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C70.3003 6.01833 70 7.20753 70 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M77.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="118dp" android:height="21dp" android:viewportWidth="118" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.51163 15.0006V3.54461h3.936c0.69333 0 1.32266 0.14933 1.888 0.448 0.56533 0.29867 1.01333 0.70933 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824s-0.17067 1.30667-0.512 1.84c-0.33067 0.52267-0.77867 0.93333-1.344 1.23199-0.56534 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm3.984-9.79199h-2.224v3.68h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50666-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14934-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272zM13.1055 15.2566c-0.5867 0-1.1093-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.6481 4.208c-0.032 0.0853-0.0693 0.1653-0.112 0.24-0.032 0.0747-0.0533 0.128-0.064 0.16h-1.84c0.0534-0.1173 0.128-0.288 0.224-0.512 0.1067-0.2133 0.208-0.4213 0.304-0.624s0.1974-0.432 0.304-0.688c0.1174-0.256 0.2347-0.5067 0.352-0.752l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.1173 0.2773-0.2453 0.5653-0.384 0.864-0.128 0.3093-0.2133 0.5173-0.256 0.624zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm12.305-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2346 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1174 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.8079-2.368V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.2026 0 0.3733-0.0267 0.512-0.08 0.1493-0.0533 0.2986-0.128 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84zm5.6141 2.368V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 1.0133 0 1.776 0.304 2.288 0.912 0.512 0.59733 0.768 1.38133 0.768 2.352v5.15199h-1.712v-4.928c0-0.66132-0.176-1.14132-0.528-1.43999-0.3414-0.30933-0.7627-0.464-1.264-0.464-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M92.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6296c1.1765 0 2.1751 0.39207 2.9979 1.17512 0.835 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4174 2.11088-1.2523 2.88093-0.8099 0.77113-1.8096 1.15562-2.9979 1.15562h-2.884v0.00108zM101.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.6896-0.6065-1.0344-1.3646-1.0344-2.2744 0-0.9607 0.3631-1.7243 1.0904-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M117.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M85.3028 8.64473c0-0.5491-0.0466-1.07872-0.1344-1.58559h-7.3619v3.00336h4.2165c-0.181 0.9789-0.7286 1.8119-1.5591 2.3697v1.9506h2.5165c1.4735-1.3582 2.3224-3.3651 2.3224-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M77.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M73.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C70.3003 6.01833 70 7.20753 70 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M77.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="118dp" android:height="21dp" android:viewportWidth="118" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.51163 15.0006V3.54461h3.936c0.69333 0 1.32266 0.14933 1.888 0.448 0.56533 0.29867 1.01333 0.70933 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824s-0.17067 1.30667-0.512 1.84c-0.33067 0.52267-0.77867 0.93333-1.344 1.23199-0.56534 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm3.984-9.79199h-2.224v3.68h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50666-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14934-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272zM13.1055 15.2566c-0.5867 0-1.1093-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.6481 4.208c-0.032 0.0853-0.0693 0.1653-0.112 0.24-0.032 0.0747-0.0533 0.128-0.064 0.16h-1.84c0.0534-0.1173 0.128-0.288 0.224-0.512 0.1067-0.2133 0.208-0.4213 0.304-0.624s0.1974-0.432 0.304-0.688c0.1174-0.256 0.2347-0.5067 0.352-0.752l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.1173 0.2773-0.2453 0.5653-0.384 0.864-0.128 0.3093-0.2133 0.5173-0.256 0.624zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm12.305-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2346 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1174 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.8079-2.368V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.2026 0 0.3733-0.0267 0.512-0.08 0.1493-0.0533 0.2986-0.128 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84zm5.6141 2.368V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 1.0133 0 1.776 0.304 2.288 0.912 0.512 0.59733 0.768 1.38133 0.768 2.352v5.15199h-1.712v-4.928c0-0.66132-0.176-1.14132-0.528-1.43999-0.3414-0.30933-0.7627-0.464-1.264-0.464-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M92.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6296c1.1765 0 2.1751 0.39207 2.9979 1.17512 0.835 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4174 2.11088-1.2523 2.88093-0.8099 0.77113-1.8096 1.15562-2.9979 1.15562h-2.884v0.00108zM101.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.6896-0.6065-1.0344-1.3646-1.0344-2.2744 0-0.9607 0.3631-1.7243 1.0904-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M117.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M85.3028 8.64473c0-0.5491-0.0466-1.07872-0.1344-1.58559h-7.3619v3.00336h4.2165c-0.181 0.9789-0.7286 1.8119-1.5591 2.3697v1.9506h2.5165c1.4735-1.3582 2.3224-3.3651 2.3224-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M77.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M73.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C70.3003 6.01833 70 7.20753 70 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M77.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="118dp" android:height="21dp" android:viewportWidth="118" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.51163 15.0006V3.54461h3.936c0.69333 0 1.32266 0.14933 1.888 0.448 0.56533 0.29867 1.01333 0.70933 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824s-0.17067 1.30667-0.512 1.84c-0.33067 0.52267-0.77867 0.93333-1.344 1.23199-0.56534 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm3.984-9.79199h-2.224v3.68h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50666-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14934-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272zM13.1055 15.2566c-0.5867 0-1.1093-0.112-1.568-0.336-0.4587-0.2347-0.816-0.56-1.072-0.976-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.576 0.1493-1.0667 0.448-1.472 0.3093-0.416 0.72-0.7307 1.232-0.944 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.512 0 0.96 0.048 1.344 0.144 0.3947 0.09599 0.6933 0.19729 0.896 0.30399V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.352-0.49067 0.816-0.87467 1.392-1.152 0.5867-0.288 1.2267-0.432 1.92-0.432 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.2133 0.3307-0.5333 0.624-0.96 0.88-0.4267 0.256-0.9387 0.384-1.536 0.384zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.3413-0.2133 0.608-0.4907 0.8-0.832 0.2027-0.352 0.304-0.7307 0.304-1.136-0.2453-0.1387-0.5333-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.144-1.504 0.432-0.2987 0.2773-0.448 0.6187-0.448 1.024 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.6481 4.208c-0.032 0.0853-0.0693 0.1653-0.112 0.24-0.032 0.0747-0.0533 0.128-0.064 0.16h-1.84c0.0534-0.1173 0.128-0.288 0.224-0.512 0.1067-0.2133 0.208-0.4213 0.304-0.624s0.1974-0.432 0.304-0.688c0.1174-0.256 0.2347-0.5067 0.352-0.752l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.1173 0.2773-0.2453 0.5653-0.384 0.864-0.128 0.3093-0.2133 0.5173-0.256 0.624zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm12.305-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.32 0.112-0.592 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.32 0 0.592 0.112 0.816 0.336 0.2346 0.224 0.352 0.496 0.352 0.816 0 0.32-0.1174 0.59733-0.352 0.832-0.224 0.224-0.496 0.336-0.816 0.336zm-0.864 9.35999V6.84061h1.728v8.15999h-1.728zm4.8079-2.368V8.34461h-1.424v-1.504h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.2026 0 0.3733-0.0267 0.512-0.08 0.1493-0.0533 0.2986-0.128 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84zm5.6141 2.368V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 1.0133 0 1.776 0.304 2.288 0.912 0.512 0.59733 0.768 1.38133 0.768 2.352v5.15199h-1.712v-4.928c0-0.66132-0.176-1.14132-0.528-1.43999-0.3414-0.30933-0.7627-0.464-1.264-0.464-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M92.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6296c1.1765 0 2.1751 0.39207 2.9979 1.17512 0.835 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4174 2.11088-1.2523 2.88093-0.8099 0.77113-1.8096 1.15562-2.9979 1.15562h-2.884v0.00108zM101.255 12.4831c0 0.4549 0.193 0.8339 0.579 1.1372 0.385 0.3033 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.863-1.1816 0.863-1.9137-0.544-0.43-1.303-0.6444-2.276-0.6444-0.709 0-1.3 0.1711-1.774 0.5122-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74741c1.29 0 2.308 0.34441 3.055 1.03323 0.746 0.68882 1.119 1.63325 1.119 2.83327v5.72391h-1.669v-1.2888h-0.076c-0.721 1.0613-1.683 1.5921-2.884 1.5921-1.025 0-1.883-0.3033-2.571-0.9098-0.6896-0.6065-1.0344-1.3646-1.0344-2.2744 0-0.9607 0.3631-1.7243 1.0904-2.2928 0.728-0.56862 1.698-0.85347 2.913-0.85347 1.036 0 1.89 0.18954 2.56 0.56861V9.46897c0-0.60651-0.24-1.12096-0.72-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M117.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M85.3028 8.64473c0-0.5491-0.0466-1.07872-0.1344-1.58559h-7.3619v3.00336h4.2165c-0.181 0.9789-0.7286 1.8119-1.5591 2.3697v1.9506h2.5165c1.4735-1.3582 2.3224-3.3651 2.3224-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M77.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21884h-2.5924v2.00904c1.2848 2.5474 3.9249 4.2965 6.9749 4.2965" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M73.424 9.95957c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96561h-2.5924C70.3003 6.01833 70 7.20753 70 8.46712c0 1.25959 0.3003 2.44888 0.8316 3.50148l2.5924-2.00903z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M77.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1171-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|