mirror of
https://github.com/michaldrabik/showly.git
synced 2025-05-17 10:45:57 +08:00
Reformat
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
# noinspection EditorConfigKeyCorrectness
|
||||
|
||||
[*.{kt,kts}]
|
||||
indent_size=2
|
||||
insert_final_newline=true
|
||||
max_line_length=120
|
||||
indent_size = 2
|
||||
insert_final_newline = true
|
||||
max_line_length = 120
|
||||
|
||||
ktlint_standard_package-name = disabled
|
||||
ktlint_standard_import-ordering = disabled
|
||||
|
3
.github/ISSUE_TEMPLATE/bug-problem-report.md
vendored
3
.github/ISSUE_TEMPLATE/bug-problem-report.md
vendored
@ -7,7 +7,8 @@ assignees: ''
|
||||
|
||||
---
|
||||
|
||||
If you have an idea for a new feature or how to improve the app please use [Discussions](https://github.com/michaldrabik/showly-2.0/discussions) for that purpose.
|
||||
If you have an idea for a new feature or how to improve the app please use [Discussions](https://github.com/michaldrabik/showly-2.0/discussions) for
|
||||
that purpose.
|
||||
|
||||
**Describe the bug**
|
||||
A clear description of what the problem is.
|
||||
|
26
README.md
26
README.md
@ -7,11 +7,12 @@
|
||||
If you use and enjoy Showly OSS, consider buying me a coffee as a support for my work. Thanks!
|
||||
|
||||
# Showly
|
||||
|
||||
<img src="https://i.ibb.co/ChBN7Lg/ic-launcher.png" align="left" width="180" hspace="10" vspace="10" />
|
||||
|
||||
Showly is a modern Android TV Shows Tracker.
|
||||
|
||||
The OSS version available in this repo is completely free of all Google services.
|
||||
The OSS version available in this repo is completely free of all Google services.
|
||||
|
||||
<a href="https://play.google.com/store/apps/details?id=com.michaldrabik.showly2">
|
||||
<img
|
||||
@ -34,18 +35,23 @@ The OSS version available in this repo is completely free of all Google services
|
||||
1. Clone repository and open project in the latest version of Android Studio.
|
||||
2. Create `keystore.properties` file and put it in the `/app` folder.
|
||||
3. Add following properties into `keystore.properties` file (values are not important at this moment):
|
||||
|
||||
```
|
||||
keyAlias=github
|
||||
keyPassword=github
|
||||
storePassword=github
|
||||
```
|
||||
4. Add your [Trakt.tv](https://trakt.tv/oauth/applications), [TMDB](https://developers.themoviedb.org/3/), [OMDB](http://www.omdbapi.com) API keys as following properties into your `local.properties` file located in the root directory of the project:
|
||||
|
||||
4. Add your [Trakt.tv](https://trakt.tv/oauth/applications), [TMDB](https://developers.themoviedb.org/3/), [OMDB](http://www.omdbapi.com) API keys as
|
||||
following properties into your `local.properties` file located in the root directory of the project:
|
||||
|
||||
```
|
||||
traktClientId="your trakt client id"
|
||||
traktClientSecret="your trakt client secret"
|
||||
tmdbApiKey="your tmdb api key (v4)"
|
||||
omdbApiKey="your omdb api key"
|
||||
```
|
||||
|
||||
5. Rebuild and start the app.
|
||||
|
||||
## Issues & Contributions
|
||||
@ -81,21 +87,19 @@ Few things surely could be adressed:
|
||||
|
||||
**1. Can I watch/stream/download shows and movies with Showly app?**
|
||||
|
||||
No, that is not possible. Showly is a progress tracking type of app - not a streaming service.
|
||||
|
||||
No, that is not possible. Showly is a progress tracking type of app - not a streaming service.
|
||||
|
||||
**2. I'm a user from India. I can't see any images and also encounter errors!**
|
||||
|
||||
There is a known issue with TMDB API being blocked by India gov.
|
||||
For more details and a possible solution please see the thread here:
|
||||
[https://www.themoviedb.org/talk/65d226e5c433ea0187b5b958#65d2dd5128d7fe017c34e9b5](https://www.themoviedb.org/talk/65d226e5c433ea0187b5b958#65d2dd5128d7fe017c34e9b5)
|
||||
|
||||
There is a known issue with TMDB API being blocked by India gov.
|
||||
For more details and a possible solution please see the thread here:
|
||||
[https://www.themoviedb.org/talk/65d226e5c433ea0187b5b958#65d2dd5128d7fe017c34e9b5](https://www.themoviedb.org/talk/65d226e5c433ea0187b5b958#65d2dd5128d7fe017c34e9b5)
|
||||
|
||||
**3. Show/Episode/Movie I'm looking for seems to be missing. What can I do?**
|
||||
|
||||
Showly uses [Trakt.tv](https://trakt.tv) as its main data source.
|
||||
If something is missing please use "Import Show" / "Import Movie" option located at the bottom of Trakt.tv website.
|
||||
It's also possible to contact Trakt.tv support about any related issue.
|
||||
Showly uses [Trakt.tv](https://trakt.tv) as its main data source.
|
||||
If something is missing please use "Import Show" / "Import Movie" option located at the bottom of Trakt.tv website.
|
||||
It's also possible to contact Trakt.tv support about any related issue.
|
||||
|
||||
## Contact
|
||||
|
||||
|
@ -222,7 +222,7 @@ class MainActivity :
|
||||
R.id.followedShowsFragment,
|
||||
R.id.followedMoviesFragment,
|
||||
R.id.listsFragment,
|
||||
-> {
|
||||
-> {
|
||||
bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuProgress
|
||||
}
|
||||
else -> {
|
||||
|
@ -35,6 +35,6 @@ class WelcomeLanguageView : FrameLayout {
|
||||
// This text will always be English.
|
||||
binding.viewWelcomeLanguageMessage.text =
|
||||
"It seems like your device\'s language is ${appLanguage.displayNameRaw}.\n" +
|
||||
"Would you like to use it in Showly app?"
|
||||
"Would you like to use it in Showly app?"
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ class TraktSourceResolver : SourceResolver {
|
||||
!(
|
||||
linkPath[0] == DeepLinkResolver.TRAKT_TYPE_TV ||
|
||||
linkPath[0] == DeepLinkResolver.TRAKT_TYPE_MOVIE
|
||||
)
|
||||
)
|
||||
) {
|
||||
return null
|
||||
}
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"
|
||||
/>
|
||||
</vector>
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<locale-config
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<locale android:name="en" />
|
||||
<locale android:name="ar" />
|
||||
<locale android:name="de" />
|
||||
|
@ -3,36 +3,36 @@ apply plugin: 'kotlin-android'
|
||||
apply from: '../versions.gradle'
|
||||
|
||||
android {
|
||||
kotlinOptions { jvmTarget = "17" }
|
||||
compileOptions {
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
kotlinOptions { jvmTarget = "17" }
|
||||
compileOptions {
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
compileSdkVersion versions.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion versions.minSdk
|
||||
targetSdkVersion versions.targetSdk
|
||||
compileSdkVersion versions.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion versions.minSdk
|
||||
targetSdkVersion versions.targetSdk
|
||||
compileSdkVersion versions.compileSdk
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
}
|
||||
}
|
||||
|
||||
namespace 'com.michaldrabik.test_base'
|
||||
namespace 'com.michaldrabik.test_base'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':common')
|
||||
implementation project(':common')
|
||||
|
||||
implementation libs.coroutinesTest
|
||||
implementation libs.junit
|
||||
coreLibraryDesugaring libs.android.desugar
|
||||
implementation libs.coroutinesTest
|
||||
implementation libs.junit
|
||||
coreLibraryDesugaring libs.android.desugar
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.database.dao
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:max-line-length")
|
||||
|
||||
package com.michaldrabik.data_local.sources
|
||||
|
@ -16,8 +16,7 @@ kotlin.code.style=official
|
||||
android.enableJetifier=false
|
||||
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
|
||||
android.useAndroidX=true
|
||||
|
||||
# Stop generating the BuildConfig file by default on all your android modules
|
||||
android.defaults.buildfeatures.buildconfig = false
|
||||
android.defaults.buildfeatures.buildconfig=false
|
||||
android.nonTransitiveRClass=false
|
||||
android.nonFinalResIds=false
|
@ -70,9 +70,11 @@ class LinksBottomSheet : BaseBottomSheetFragment(R.layout.view_links) {
|
||||
viewLinksJustWatch.onClick {
|
||||
val country = viewModel.loadCountry()
|
||||
openWebUrl(
|
||||
"https://www.justwatch.com/${country.code}/${country.justWatchQuery}?content_type=${type.type}&q=${Uri.encode(
|
||||
title,
|
||||
)}",
|
||||
"https://www.justwatch.com/${country.code}/${country.justWatchQuery}?content_type=${type.type}&q=${
|
||||
Uri.encode(
|
||||
title,
|
||||
)
|
||||
}",
|
||||
)
|
||||
}
|
||||
viewLinksYouTube.onClick {
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_base.common.sheets.ratings
|
||||
|
@ -58,7 +58,7 @@ abstract class MovieView<Item : MovieListItem> : FrameLayout {
|
||||
width * item.image.type
|
||||
.getSpan(isTablet)
|
||||
.toFloat()
|
||||
).toInt(),
|
||||
).toInt(),
|
||||
height.toInt(),
|
||||
)
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ abstract class ShowView<Item : ListItem> : FrameLayout {
|
||||
width * item.image.type
|
||||
.getSpan(isTablet)
|
||||
.toFloat()
|
||||
).toInt(),
|
||||
).toInt(),
|
||||
height.toInt(),
|
||||
)
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
Copyright 2019 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -17,10 +16,10 @@
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 24% opacity -->
|
||||
<item android:alpha="1" android:color="?colorBottomMenuBackground" android:state_enabled="true" android:state_selected="true"/>
|
||||
<item android:alpha="1" android:color="?colorBottomMenuBackground" android:state_enabled="true" android:state_checked="true"/>
|
||||
<item android:alpha="1" android:color="?colorBottomMenuBackground" android:state_enabled="true" android:state_selected="true" />
|
||||
<item android:alpha="1" android:color="?colorBottomMenuBackground" android:state_enabled="true" android:state_checked="true" />
|
||||
<!-- 12% of 87% opacity -->
|
||||
<item android:alpha="0.24" android:color="?colorBottomMenuBackground" android:state_enabled="true"/>
|
||||
<item android:alpha="0.12" android:color="?colorBottomMenuBackground"/>
|
||||
<item android:alpha="0.24" android:color="?colorBottomMenuBackground" android:state_enabled="true" />
|
||||
<item android:alpha="0.12" android:color="?colorBottomMenuBackground" />
|
||||
|
||||
</selector>
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
Copyright 2019 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -17,11 +16,11 @@
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:color="?android:textColorPrimary" android:state_enabled="true" android:state_selected="true"/>
|
||||
<item android:color="?android:textColorPrimary" android:state_enabled="true" android:state_checked="true"/>
|
||||
<item android:color="?android:textColorPrimary" android:state_enabled="true" android:state_selected="true" />
|
||||
<item android:color="?android:textColorPrimary" android:state_enabled="true" android:state_checked="true" />
|
||||
<!-- 87% opacity. -->
|
||||
<item android:alpha="0.2" android:color="?android:textColorPrimary" android:state_enabled="true"/>
|
||||
<item android:alpha="0.2" android:color="?android:textColorPrimary" android:state_enabled="true" />
|
||||
<!-- 38% of 87% opacity. -->
|
||||
<item android:alpha="0.12" android:color="?android:textColorPrimary"/>
|
||||
<item android:alpha="0.12" android:color="?android:textColorPrimary" />
|
||||
|
||||
</selector>
|
||||
|
@ -1,5 +1,14 @@
|
||||
<vector android:autoMirrored="true" android:height="24dp"
|
||||
android:tint="#FFFFFF" android:viewportHeight="24"
|
||||
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4z"/>
|
||||
<vector
|
||||
android:autoMirrored="true"
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M16.01,11H4v2h12.01v3L20,12l-3.99,-4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,7 +1,20 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:tint="#FFFFFF" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp">
|
||||
|
||||
<path android:fillColor="@android:color/white" android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
|
||||
|
||||
<path android:fillColor="@android:color/white" android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"/>
|
||||
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
>
|
||||
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M17.59,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"
|
||||
/>
|
||||
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M11,18l1.41,-1.41l-4.58,-4.59l4.58,-4.59l-1.41,-1.41l-6,6z"
|
||||
/>
|
||||
|
||||
</vector>
|
||||
|
@ -1,80 +1,109 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="256dp"
|
||||
android:height="255dp"
|
||||
android:viewportWidth="256"
|
||||
android:viewportHeight="255">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="256dp"
|
||||
android:height="255dp"
|
||||
android:viewportWidth="256"
|
||||
android:viewportHeight="255"
|
||||
>
|
||||
<path
|
||||
android:pathData="M128.145,18.841C188.147,18.841 236.788,67.482 236.788,127.484C236.788,187.485 188.147,236.126 128.145,236.126C68.144,236.126 19.503,187.485 19.503,127.484C19.503,67.482 68.144,18.841 128.145,18.841"
|
||||
android:fillColor="#DE5833"/>
|
||||
android:pathData="M128.145,18.841C188.147,18.841 236.788,67.482 236.788,127.484C236.788,187.485 188.147,236.126 128.145,236.126C68.144,236.126 19.503,187.485 19.503,127.484C19.503,67.482 68.144,18.841 128.145,18.841"
|
||||
android:fillColor="#DE5833"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M128.143,254.922C198.526,254.922 255.583,197.865 255.583,127.482C255.583,57.099 198.526,0.042 128.143,0.042C57.76,0.042 0.703,57.099 0.703,127.482C0.703,197.865 57.76,254.922 128.143,254.922L128.143,254.922ZM128.143,244.302C63.625,244.302 11.323,192 11.323,127.482C11.323,62.964 63.625,10.662 128.143,10.662C192.661,10.662 244.963,62.964 244.963,127.482C244.963,192 192.661,244.302 128.143,244.302L128.143,244.302Z"
|
||||
android:fillColor="#DE5833"/>
|
||||
android:pathData="M128.143,254.922C198.526,254.922 255.583,197.865 255.583,127.482C255.583,57.099 198.526,0.042 128.143,0.042C57.76,0.042 0.703,57.099 0.703,127.482C0.703,197.865 57.76,254.922 128.143,254.922L128.143,254.922ZM128.143,244.302C63.625,244.302 11.323,192 11.323,127.482C11.323,62.964 63.625,10.662 128.143,10.662C192.661,10.662 244.963,62.964 244.963,127.482C244.963,192 192.661,244.302 128.143,244.302L128.143,244.302Z"
|
||||
android:fillColor="#DE5833"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M75.219,54.13C75.198,52.303 76.525,51.28 78.288,50.563C77.481,50.695 76.708,50.897 76.012,51.209C74.174,52.042 72.8,55.196 72.813,56.689C81.736,55.787 94.931,56.411 104.58,59.291C105.292,59.191 106.004,59.091 106.727,59.008C97.103,54.735 85.661,53.085 75.219,54.13"
|
||||
android:fillColor="#D5D7D8"/>
|
||||
android:pathData="M75.219,54.13C75.198,52.303 76.525,51.28 78.288,50.563C77.481,50.695 76.708,50.897 76.012,51.209C74.174,52.042 72.8,55.196 72.813,56.689C81.736,55.787 94.931,56.411 104.58,59.291C105.292,59.191 106.004,59.091 106.727,59.008C97.103,54.735 85.661,53.085 75.219,54.13"
|
||||
android:fillColor="#D5D7D8"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M77.048,43.15C77.249,43.114 77.453,43.089 77.655,43.055C75.73,43.294 74.715,43.982 73.27,44.219C74.839,44.358 80.784,47.133 84.52,48.659C85.044,48.46 85.516,48.239 85.901,47.978C83.964,47.692 79.151,43.342 77.048,43.15"
|
||||
android:fillColor="#D5D7D8"/>
|
||||
android:pathData="M77.048,43.15C77.249,43.114 77.453,43.089 77.655,43.055C75.73,43.294 74.715,43.982 73.27,44.219C74.839,44.358 80.784,47.133 84.52,48.659C85.044,48.46 85.516,48.239 85.901,47.978C83.964,47.692 79.151,43.342 77.048,43.15"
|
||||
android:fillColor="#D5D7D8"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M86.326,64.756C85.791,64.962 85.283,65.177 84.843,65.408C70.298,73.071 63.873,90.97 67.702,112.418C71.197,131.936 85.522,198.623 92.081,229.989C93.996,230.662 95.934,231.287 97.896,231.854C92.055,203.614 76.112,129.614 72.392,108.831C68.621,87.688 72.29,72.517 86.326,64.756"
|
||||
android:fillColor="#D5D7D8"/>
|
||||
android:pathData="M86.326,64.756C85.791,64.962 85.283,65.177 84.843,65.408C70.298,73.071 63.873,90.97 67.702,112.418C71.197,131.936 85.522,198.623 92.081,229.989C93.996,230.662 95.934,231.287 97.896,231.854C92.055,203.614 76.112,129.614 72.392,108.831C68.621,87.688 72.29,72.517 86.326,64.756"
|
||||
android:fillColor="#D5D7D8"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M145.184,218.618C144.944,218.778 144.658,218.928 144.353,219.074C144.127,219.95 143.782,220.614 143.279,220.948C140.275,222.941 131.79,223.945 127.31,222.941C126.539,222.77 125.955,222.487 125.499,222.098C117.85,226.345 106.85,231.999 104.616,230.725C101.126,228.724 100.62,202.274 101.126,195.783C101.495,190.883 118.707,198.82 127.08,202.983C128.931,201.254 133.466,200.097 137.48,199.704C131.415,184.943 126.942,168.059 129.684,156.086C125.894,153.445 120.871,147.32 121.917,140.927C122.723,136.061 135.297,126.855 144.2,126.299C153.123,125.736 155.904,125.863 163.338,124.083C163.71,123.994 164.119,123.896 164.547,123.793C169.123,107.706 158.148,79.719 145.906,67.472C141.915,63.481 135.779,60.969 128.865,59.643C126.206,55.994 121.917,52.505 115.845,49.274C104.57,43.288 90.636,40.851 77.655,43.055C77.453,43.089 77.249,43.114 77.048,43.15C79.151,43.342 83.964,47.692 85.901,47.978C85.516,48.239 85.044,48.46 84.52,48.659C82.702,49.351 80.231,49.771 78.288,50.563C76.525,51.28 75.198,52.303 75.219,54.13C85.661,53.085 97.103,54.735 106.727,59.008C106.004,59.091 105.292,59.191 104.58,59.291C97.755,60.251 91.482,62.019 86.95,64.41C86.737,64.521 86.535,64.641 86.326,64.756C72.29,72.517 68.621,87.688 72.392,108.831C76.112,129.614 92.159,204.76 98,233C107.603,235.779 116.582,238 127.08,238C135.992,238 146.711,236.025 155,234C152.089,228.387 148.344,222.18 146.036,217.729C145.728,218.096 145.485,218.417 145.184,218.618ZM151.057,112.057C147.253,112.057 144.15,108.963 144.15,105.137C144.15,101.329 147.253,98.234 151.057,98.234C154.882,98.234 157.973,101.329 157.973,105.137C157.973,108.963 154.882,112.057 151.057,112.057L151.057,112.057ZM155.218,86.049C155.218,86.049 150.861,83.56 147.48,83.602C140.532,83.693 138.64,86.763 138.64,86.763C138.64,86.763 139.806,79.445 148.691,80.913C153.508,81.714 155.218,86.049 155.218,86.049L155.218,86.049ZM81.963,95.046C81.963,95.046 78.834,88.073 87.173,84.656C95.521,81.238 99.586,86.601 99.586,86.601C99.586,86.601 93.524,83.859 87.63,87.563C81.746,91.263 81.963,95.046 81.963,95.046L81.963,95.046ZM89.253,109.908C89.253,105.462 92.848,101.864 97.3,101.864C101.74,101.864 105.34,105.462 105.34,109.908C105.34,114.355 101.74,117.949 97.3,117.949C92.848,117.951 89.253,114.355 89.253,109.908L89.253,109.908Z"
|
||||
android:fillColor="#FFFFFF"/>
|
||||
android:pathData="M145.184,218.618C144.944,218.778 144.658,218.928 144.353,219.074C144.127,219.95 143.782,220.614 143.279,220.948C140.275,222.941 131.79,223.945 127.31,222.941C126.539,222.77 125.955,222.487 125.499,222.098C117.85,226.345 106.85,231.999 104.616,230.725C101.126,228.724 100.62,202.274 101.126,195.783C101.495,190.883 118.707,198.82 127.08,202.983C128.931,201.254 133.466,200.097 137.48,199.704C131.415,184.943 126.942,168.059 129.684,156.086C125.894,153.445 120.871,147.32 121.917,140.927C122.723,136.061 135.297,126.855 144.2,126.299C153.123,125.736 155.904,125.863 163.338,124.083C163.71,123.994 164.119,123.896 164.547,123.793C169.123,107.706 158.148,79.719 145.906,67.472C141.915,63.481 135.779,60.969 128.865,59.643C126.206,55.994 121.917,52.505 115.845,49.274C104.57,43.288 90.636,40.851 77.655,43.055C77.453,43.089 77.249,43.114 77.048,43.15C79.151,43.342 83.964,47.692 85.901,47.978C85.516,48.239 85.044,48.46 84.52,48.659C82.702,49.351 80.231,49.771 78.288,50.563C76.525,51.28 75.198,52.303 75.219,54.13C85.661,53.085 97.103,54.735 106.727,59.008C106.004,59.091 105.292,59.191 104.58,59.291C97.755,60.251 91.482,62.019 86.95,64.41C86.737,64.521 86.535,64.641 86.326,64.756C72.29,72.517 68.621,87.688 72.392,108.831C76.112,129.614 92.159,204.76 98,233C107.603,235.779 116.582,238 127.08,238C135.992,238 146.711,236.025 155,234C152.089,228.387 148.344,222.18 146.036,217.729C145.728,218.096 145.485,218.417 145.184,218.618ZM151.057,112.057C147.253,112.057 144.15,108.963 144.15,105.137C144.15,101.329 147.253,98.234 151.057,98.234C154.882,98.234 157.973,101.329 157.973,105.137C157.973,108.963 154.882,112.057 151.057,112.057L151.057,112.057ZM155.218,86.049C155.218,86.049 150.861,83.56 147.48,83.602C140.532,83.693 138.64,86.763 138.64,86.763C138.64,86.763 139.806,79.445 148.691,80.913C153.508,81.714 155.218,86.049 155.218,86.049L155.218,86.049ZM81.963,95.046C81.963,95.046 78.834,88.073 87.173,84.656C95.521,81.238 99.586,86.601 99.586,86.601C99.586,86.601 93.524,83.859 87.63,87.563C81.746,91.263 81.963,95.046 81.963,95.046L81.963,95.046ZM89.253,109.908C89.253,105.462 92.848,101.864 97.3,101.864C101.74,101.864 105.34,105.462 105.34,109.908C105.34,114.355 101.74,117.949 97.3,117.949C92.848,117.951 89.253,114.355 89.253,109.908L89.253,109.908Z"
|
||||
android:fillColor="#FFFFFF"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M105.34,109.908C105.34,105.462 101.74,101.864 97.3,101.864C92.848,101.864 89.253,105.462 89.253,109.908C89.253,114.355 92.848,117.951 97.3,117.949C101.74,117.949 105.34,114.355 105.34,109.908L105.34,109.908ZM100.862,109.317C99.72,109.32 98.781,108.381 98.781,107.227C98.781,106.07 99.717,105.139 100.862,105.139C102.016,105.139 102.952,106.07 102.952,107.227C102.952,108.381 102.016,109.317 100.862,109.317L100.862,109.317Z"
|
||||
android:fillColor="#2D4F8E"/>
|
||||
android:pathData="M105.34,109.908C105.34,105.462 101.74,101.864 97.3,101.864C92.848,101.864 89.253,105.462 89.253,109.908C89.253,114.355 92.848,117.951 97.3,117.949C101.74,117.949 105.34,114.355 105.34,109.908L105.34,109.908ZM100.862,109.317C99.72,109.32 98.781,108.381 98.781,107.227C98.781,106.07 99.717,105.139 100.862,105.139C102.016,105.139 102.952,106.07 102.952,107.227C102.952,108.381 102.016,109.317 100.862,109.317L100.862,109.317Z"
|
||||
android:fillColor="#2D4F8E"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M100.862,105.139C99.717,105.139 98.781,106.07 98.781,107.227C98.781,108.381 99.72,109.32 100.862,109.317C102.016,109.317 102.952,108.381 102.952,107.227C102.952,106.07 102.016,105.139 100.862,105.139"
|
||||
android:fillColor="#FFFFFF"/>
|
||||
android:pathData="M100.862,105.139C99.717,105.139 98.781,106.07 98.781,107.227C98.781,108.381 99.72,109.32 100.862,109.317C102.016,109.317 102.952,108.381 102.952,107.227C102.952,106.07 102.016,105.139 100.862,105.139"
|
||||
android:fillColor="#FFFFFF"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M151.057,98.234C147.253,98.234 144.15,101.329 144.15,105.137C144.15,108.963 147.253,112.057 151.057,112.057C154.882,112.057 157.973,108.963 157.973,105.137C157.973,101.329 154.882,98.234 151.057,98.234L151.057,98.234ZM154.124,104.628C153.149,104.628 152.344,103.835 152.344,102.839C152.344,101.856 153.149,101.049 154.124,101.049C155.141,101.049 155.921,101.856 155.921,102.839C155.921,103.835 155.141,104.628 154.124,104.628L154.124,104.628Z"
|
||||
android:fillColor="#2D4F8E"/>
|
||||
android:pathData="M151.057,98.234C147.253,98.234 144.15,101.329 144.15,105.137C144.15,108.963 147.253,112.057 151.057,112.057C154.882,112.057 157.973,108.963 157.973,105.137C157.973,101.329 154.882,98.234 151.057,98.234L151.057,98.234ZM154.124,104.628C153.149,104.628 152.344,103.835 152.344,102.839C152.344,101.856 153.149,101.049 154.124,101.049C155.141,101.049 155.921,101.856 155.921,102.839C155.921,103.835 155.141,104.628 154.124,104.628L154.124,104.628Z"
|
||||
android:fillColor="#2D4F8E"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M154.124,101.049C153.149,101.049 152.344,101.856 152.344,102.839C152.344,103.835 153.149,104.628 154.124,104.628C155.141,104.628 155.921,103.835 155.921,102.839C155.921,101.856 155.141,101.049 154.124,101.049"
|
||||
android:fillColor="#FFFFFF"/>
|
||||
<path
|
||||
android:pathData="M99.586,86.601C99.586,86.601 95.521,81.238 87.173,84.656C78.834,88.073 81.963,95.046 81.963,95.046C81.963,95.046 81.746,91.263 87.63,87.563C93.524,83.859 99.586,86.601 99.586,86.601">
|
||||
android:pathData="M154.124,101.049C153.149,101.049 152.344,101.856 152.344,102.839C152.344,103.835 153.149,104.628 154.124,104.628C155.141,104.628 155.921,103.835 155.921,102.839C155.921,101.856 155.141,101.049 154.124,101.049"
|
||||
android:fillColor="#FFFFFF"
|
||||
/>
|
||||
<path android:pathData="M99.586,86.601C99.586,86.601 95.521,81.238 87.173,84.656C78.834,88.073 81.963,95.046 81.963,95.046C81.963,95.046 81.746,91.263 87.63,87.563C93.524,83.859 99.586,86.601 99.586,86.601">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="95.046"
|
||||
android:startX="93.56888"
|
||||
android:endY="95.046"
|
||||
android:endX="78.834"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FF394A9F"/>
|
||||
<item android:offset="1" android:color="#FF6176B9"/>
|
||||
<gradient
|
||||
android:startY="95.046"
|
||||
android:startX="93.56888"
|
||||
android:endY="95.046"
|
||||
android:endX="78.834"
|
||||
android:type="linear"
|
||||
>
|
||||
<item
|
||||
android:offset="0"
|
||||
android:color="#FF394A9F"
|
||||
/>
|
||||
<item
|
||||
android:offset="1"
|
||||
android:color="#FF6176B9"
|
||||
/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:pathData="M148.691,80.913C139.806,79.445 138.64,86.763 138.64,86.763C138.64,86.763 140.532,83.693 147.48,83.602C150.861,83.56 155.218,86.049 155.218,86.049C155.218,86.049 153.508,81.714 148.691,80.913">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="86.763"
|
||||
android:startX="150.41115"
|
||||
android:endY="86.763"
|
||||
android:endX="138.64"
|
||||
android:type="linear"
|
||||
>
|
||||
<item
|
||||
android:offset="0"
|
||||
android:color="#FF394A9F"
|
||||
/>
|
||||
<item
|
||||
android:offset="1"
|
||||
android:color="#FF6176B9"
|
||||
/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="M148.691,80.913C139.806,79.445 138.64,86.763 138.64,86.763C138.64,86.763 140.532,83.693 147.48,83.602C150.861,83.56 155.218,86.049 155.218,86.049C155.218,86.049 153.508,81.714 148.691,80.913">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="86.763"
|
||||
android:startX="150.41115"
|
||||
android:endY="86.763"
|
||||
android:endX="138.64"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FF394A9F"/>
|
||||
<item android:offset="1" android:color="#FF6176B9"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
android:pathData="M144.2,126.299C135.297,126.855 122.723,136.061 121.917,140.927C120.871,147.32 125.894,153.445 129.684,156.086C129.694,156.093 129.705,156.102 129.715,156.109C133.504,158.745 158.733,167.256 171.25,167.02C183.781,166.776 204.361,159.102 202.101,152.953C199.851,146.802 179.412,158.38 158.094,156.404C142.306,154.937 139.519,147.864 143.015,142.698C147.412,136.205 155.421,143.93 168.631,139.977C181.861,136.035 200.363,128.979 207.228,125.137C223.101,116.288 200.586,112.618 195.268,115.073C190.227,117.402 172.681,121.83 164.547,123.793C164.119,123.896 163.71,123.994 163.338,124.083C155.904,125.863 153.123,125.736 144.2,126.299"
|
||||
android:fillColor="#FDD209"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M144.2,126.299C135.297,126.855 122.723,136.061 121.917,140.927C120.871,147.32 125.894,153.445 129.684,156.086C129.694,156.093 129.705,156.102 129.715,156.109C133.504,158.745 158.733,167.256 171.25,167.02C183.781,166.776 204.361,159.102 202.101,152.953C199.851,146.802 179.412,158.38 158.094,156.404C142.306,154.937 139.519,147.864 143.015,142.698C147.412,136.205 155.421,143.93 168.631,139.977C181.861,136.035 200.363,128.979 207.228,125.137C223.101,116.288 200.586,112.618 195.268,115.073C190.227,117.402 172.681,121.83 164.547,123.793C164.119,123.896 163.71,123.994 163.338,124.083C155.904,125.863 153.123,125.736 144.2,126.299"
|
||||
android:fillColor="#FDD209"/>
|
||||
android:pathData="M124.316,206.97C124.316,206.049 125.057,205.234 126.233,204.539C126.266,203.98 126.57,203.46 127.08,202.983C118.707,198.82 101.495,190.883 101.126,195.783C100.62,202.274 101.126,228.724 104.616,230.725C106.85,231.999 117.85,226.345 125.499,222.098C123.292,220.217 124.316,215.651 124.316,206.97"
|
||||
android:fillColor="#65BC46"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M124.316,206.97C124.316,206.049 125.057,205.234 126.233,204.539C126.266,203.98 126.57,203.46 127.08,202.983C118.707,198.82 101.495,190.883 101.126,195.783C100.62,202.274 101.126,228.724 104.616,230.725C106.85,231.999 117.85,226.345 125.499,222.098C123.292,220.217 124.316,215.651 124.316,206.97"
|
||||
android:fillColor="#65BC46"/>
|
||||
android:pathData="M145.925,217.686C145.961,217.7 146,217.715 146.036,217.729C152.89,220.374 166.534,225.353 169.497,224.266C173.492,222.739 172.492,190.813 168.008,189.796C164.416,188.999 150.665,198.688 145.255,202.635C146.212,206.676 147.37,214.68 145.925,217.686"
|
||||
android:fillColor="#65BC46"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M145.925,217.686C145.961,217.7 146,217.715 146.036,217.729C152.89,220.374 166.534,225.353 169.497,224.266C173.492,222.739 172.492,190.813 168.008,189.796C164.416,188.999 150.665,198.688 145.255,202.635C146.212,206.676 147.37,214.68 145.925,217.686"
|
||||
android:fillColor="#65BC46"/>
|
||||
android:pathData="M129.214,220.611C124.719,219.615 126.221,215.118 126.221,204.64C126.221,204.606 126.231,204.573 126.233,204.539C125.057,205.234 124.316,206.049 124.316,206.97C124.316,215.651 123.292,220.217 125.499,222.098C125.955,222.487 126.539,222.77 127.31,222.941C131.79,223.945 140.275,222.941 143.279,220.948C143.782,220.614 144.127,219.95 144.353,219.074C140.837,220.758 133.329,221.547 129.214,220.611"
|
||||
android:fillColor="#43A244"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M129.214,220.611C124.719,219.615 126.221,215.118 126.221,204.64C126.221,204.606 126.231,204.573 126.233,204.539C125.057,205.234 124.316,206.049 124.316,206.97C124.316,215.651 123.292,220.217 125.499,222.098C125.955,222.487 126.539,222.77 127.31,222.941C131.79,223.945 140.275,222.941 143.279,220.948C143.782,220.614 144.127,219.95 144.353,219.074C140.837,220.758 133.329,221.547 129.214,220.611"
|
||||
android:fillColor="#43A244"/>
|
||||
<path
|
||||
android:pathData="M127.08,202.983C126.57,203.46 126.266,203.98 126.233,204.539C126.231,204.573 126.221,204.606 126.221,204.64C126.221,215.118 124.719,219.615 129.214,220.611C133.329,221.547 140.837,220.758 144.353,219.074C144.658,218.928 144.944,218.778 145.184,218.618C145.485,218.417 145.728,218.096 145.925,217.686C147.37,214.68 146.212,206.676 145.255,202.635C145.044,201.746 144.844,201.046 144.683,200.636C144.27,199.614 141.089,199.351 137.48,199.704C133.466,200.097 128.931,201.254 127.08,202.983"
|
||||
android:fillColor="#65BC46"/>
|
||||
android:pathData="M127.08,202.983C126.57,203.46 126.266,203.98 126.233,204.539C126.231,204.573 126.221,204.606 126.221,204.64C126.221,215.118 124.719,219.615 129.214,220.611C133.329,221.547 140.837,220.758 144.353,219.074C144.658,218.928 144.944,218.778 145.184,218.618C145.485,218.417 145.728,218.096 145.925,217.686C147.37,214.68 146.212,206.676 145.255,202.635C145.044,201.746 144.844,201.046 144.683,200.636C144.27,199.614 141.089,199.351 137.48,199.704C133.466,200.097 128.931,201.254 127.08,202.983"
|
||||
android:fillColor="#65BC46"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,11 +1,48 @@
|
||||
<vector android:height="24dp" android:viewportHeight="20"
|
||||
android:viewportWidth="16.32" android:width="20dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#000" android:fillType="evenOdd" android:pathData="M2.331,2.286L13.99,2.286v15.428L2.33,17.714z"/>
|
||||
<path android:fillColor="#04ff8e" android:fillType="nonZero" android:pathData="M0,1.714h2.331v16.572L0,18.286z"/>
|
||||
<path android:fillColor="#8e2eff" android:fillType="nonZero" android:pathData="M13.989,6.286h2.331v12h-2.331z"/>
|
||||
<path android:fillColor="#00c5ff" android:fillType="nonZero" android:pathData="M0,17.714h16.32L16.32,20L0,20z"/>
|
||||
<path android:fillColor="#fff152" android:fillType="nonZero" android:pathData="M0,0h9.326v2.286L0,2.286z"/>
|
||||
<path android:fillColor="#ff5b5b" android:fillType="nonZero" android:pathData="M13.989,4.571L13.989,2.286h-2.332L11.657,0h-2.331v6.857h6.994L16.32,4.571"/>
|
||||
<path android:fillColor="#551c99" android:fillType="nonZero" android:pathData="M13.989,9.143L13.989,6.857h2.331"/>
|
||||
<path android:fillColor="#999131" android:fillType="evenOdd" android:pathData="M9.326,0v2.286h-2.332"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:viewportHeight="20"
|
||||
android:viewportWidth="16.32"
|
||||
android:width="20dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M2.331,2.286L13.99,2.286v15.428L2.33,17.714z"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#04ff8e"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M0,1.714h2.331v16.572L0,18.286z"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#8e2eff"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M13.989,6.286h2.331v12h-2.331z"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#00c5ff"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M0,17.714h16.32L16.32,20L0,20z"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#fff152"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M0,0h9.326v2.286L0,2.286z"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#ff5b5b"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M13.989,4.571L13.989,2.286h-2.332L11.657,0h-2.331v6.857h6.994L16.32,4.571"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#551c99"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M13.989,9.143L13.989,6.857h2.331"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#999131"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M9.326,0v2.286h-2.332"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,18 +1,24 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24"
|
||||
>
|
||||
<path
|
||||
android:pathData="M23.745,12.27C23.745,11.48 23.675,10.73 23.555,10L12.255,10L12.255,14.51L18.725,14.51C18.435,15.99 17.585,17.24 16.325,18.09L16.325,21.09L20.185,21.09C22.445,19 23.745,15.92 23.745,12.27Z"
|
||||
android:fillColor="#4285F4"/>
|
||||
android:pathData="M23.745,12.27C23.745,11.48 23.675,10.73 23.555,10L12.255,10L12.255,14.51L18.725,14.51C18.435,15.99 17.585,17.24 16.325,18.09L16.325,21.09L20.185,21.09C22.445,19 23.745,15.92 23.745,12.27Z"
|
||||
android:fillColor="#4285F4"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M12.255,24C15.495,24 18.205,22.92 20.185,21.09L16.325,18.09C15.245,18.81 13.875,19.25 12.255,19.25C9.125,19.25 6.475,17.14 5.525,14.29L1.545,14.29L1.545,17.38C3.515,21.3 7.565,24 12.255,24Z"
|
||||
android:fillColor="#34A853"/>
|
||||
android:pathData="M12.255,24C15.495,24 18.205,22.92 20.185,21.09L16.325,18.09C15.245,18.81 13.875,19.25 12.255,19.25C9.125,19.25 6.475,17.14 5.525,14.29L1.545,14.29L1.545,17.38C3.515,21.3 7.565,24 12.255,24Z"
|
||||
android:fillColor="#34A853"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M5.525,14.29C5.275,13.57 5.145,12.8 5.145,12C5.145,11.2 5.285,10.43 5.525,9.71L5.525,6.62L1.545,6.62C0.725,8.24 0.255,10.06 0.255,12C0.255,13.94 0.725,15.76 1.545,17.38L5.525,14.29Z"
|
||||
android:fillColor="#FBBC05"/>
|
||||
android:pathData="M5.525,14.29C5.275,13.57 5.145,12.8 5.145,12C5.145,11.2 5.285,10.43 5.525,9.71L5.525,6.62L1.545,6.62C0.725,8.24 0.255,10.06 0.255,12C0.255,13.94 0.725,15.76 1.545,17.38L5.525,14.29Z"
|
||||
android:fillColor="#FBBC05"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M12.255,4.75C14.025,4.75 15.605,5.36 16.855,6.55L20.275,3.13C18.205,1.19 15.495,0 12.255,0C7.565,0 3.515,2.7 1.545,6.62L5.525,9.71C6.475,6.86 9.125,4.75 12.255,4.75Z"
|
||||
android:fillColor="#EA4335"/>
|
||||
android:pathData="M12.255,4.75C14.025,4.75 15.605,5.36 16.855,6.55L20.275,3.13C18.205,1.19 15.495,0 12.255,0C7.565,0 3.515,2.7 1.545,6.62L5.525,9.71C6.475,6.86 9.125,4.75 12.255,4.75Z"
|
||||
android:fillColor="#EA4335"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M13,3c-4.97,0 -9,4.03 -9,9L1,12l3.89,3.89 0.07,0.14L9,12L6,12c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zM12,8v5l4.28,2.54 0.72,-1.21 -3.5,-2.08L13.5,8L12,8z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,61 +1,73 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="575dp"
|
||||
android:height="289.83dp"
|
||||
android:viewportWidth="575"
|
||||
android:viewportHeight="289.83">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="575dp"
|
||||
android:height="289.83dp"
|
||||
android:viewportWidth="575"
|
||||
android:viewportHeight="289.83"
|
||||
>
|
||||
<path
|
||||
android:pathData="M575,24.91C573.44,12.15 563.97,1.98 551.91,0C499.05,0 76.18,0 23.32,0C10.11,2.17 0,14.16 0,28.61C0,51.84 0,237.64 0,260.86C0,276.86 12.37,289.83 27.64,289.83C79.63,289.83 495.6,289.83 547.59,289.83C561.65,289.83 573.26,278.82 575,264.57C575,216.64 575,48.87 575,24.91Z"
|
||||
android:fillColor="#f6c700"
|
||||
android:fillAlpha="1"/>
|
||||
android:pathData="M575,24.91C573.44,12.15 563.97,1.98 551.91,0C499.05,0 76.18,0 23.32,0C10.11,2.17 0,14.16 0,28.61C0,51.84 0,237.64 0,260.86C0,276.86 12.37,289.83 27.64,289.83C79.63,289.83 495.6,289.83 547.59,289.83C561.65,289.83 573.26,278.82 575,264.57C575,216.64 575,48.87 575,24.91Z"
|
||||
android:fillColor="#f6c700"
|
||||
android:fillAlpha="1"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M575,24.91C573.44,12.15 563.97,1.98 551.91,0C499.05,0 76.18,0 23.32,0C10.11,2.17 0,14.16 0,28.61C0,51.84 0,237.64 0,260.86C0,276.86 12.37,289.83 27.64,289.83C79.63,289.83 495.6,289.83 547.59,289.83C561.65,289.83 573.26,278.82 575,264.57C575,216.64 575,48.87 575,24.91Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M575,24.91C573.44,12.15 563.97,1.98 551.91,0C499.05,0 76.18,0 23.32,0C10.11,2.17 0,14.16 0,28.61C0,51.84 0,237.64 0,260.86C0,276.86 12.37,289.83 27.64,289.83C79.63,289.83 495.6,289.83 547.59,289.83C561.65,289.83 573.26,278.82 575,264.57C575,216.64 575,48.87 575,24.91Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M69.35,58.24L114.98,58.24L114.98,233.89L69.35,233.89L69.35,58.24Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"/>
|
||||
android:pathData="M69.35,58.24L114.98,58.24L114.98,233.89L69.35,233.89L69.35,58.24Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M69.35,58.24L114.98,58.24L114.98,233.89L69.35,233.89L69.35,58.24Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M69.35,58.24L114.98,58.24L114.98,233.89L69.35,233.89L69.35,58.24Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M201.2,139.15C197.28,112.38 195.1,97.5 194.67,94.53C192.76,80.2 190.94,67.73 189.2,57.09C185.25,57.09 165.54,57.09 130.04,57.09L130.04,232.74L170.01,232.74L170.15,116.76L186.97,232.74L215.44,232.74L231.39,114.18L231.54,232.74L271.38,232.74L271.38,57.09L211.77,57.09L201.2,139.15Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"/>
|
||||
android:pathData="M201.2,139.15C197.28,112.38 195.1,97.5 194.67,94.53C192.76,80.2 190.94,67.73 189.2,57.09C185.25,57.09 165.54,57.09 130.04,57.09L130.04,232.74L170.01,232.74L170.15,116.76L186.97,232.74L215.44,232.74L231.39,114.18L231.54,232.74L271.38,232.74L271.38,57.09L211.77,57.09L201.2,139.15Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M201.2,139.15C197.28,112.38 195.1,97.5 194.67,94.53C192.76,80.2 190.94,67.73 189.2,57.09C185.25,57.09 165.54,57.09 130.04,57.09L130.04,232.74L170.01,232.74L170.15,116.76L186.97,232.74L215.44,232.74L231.39,114.18L231.54,232.74L271.38,232.74L271.38,57.09L211.77,57.09L201.2,139.15Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M201.2,139.15C197.28,112.38 195.1,97.5 194.67,94.53C192.76,80.2 190.94,67.73 189.2,57.09C185.25,57.09 165.54,57.09 130.04,57.09L130.04,232.74L170.01,232.74L170.15,116.76L186.97,232.74L215.44,232.74L231.39,114.18L231.54,232.74L271.38,232.74L271.38,57.09L211.77,57.09L201.2,139.15Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M346.71,93.63C347.21,95.87 347.47,100.95 347.47,108.89C347.47,115.7 347.47,170.18 347.47,176.99C347.47,188.68 346.71,195.84 345.2,198.48C343.68,201.12 339.64,202.43 333.09,202.43C333.09,190.9 333.09,98.66 333.09,87.13C338.06,87.13 341.45,87.66 343.25,88.7C345.05,89.75 346.21,91.39 346.71,93.63ZM367.32,230.95C372.75,229.76 377.31,227.66 381.01,224.67C384.7,221.67 387.29,217.52 388.77,212.21C390.26,206.91 391.14,196.38 391.14,180.63C391.14,174.47 391.14,125.12 391.14,118.95C391.14,102.33 390.49,91.19 389.48,85.53C388.46,79.86 385.93,74.71 381.88,70.09C377.82,65.47 371.9,62.15 364.12,60.13C356.33,58.11 343.63,57.09 321.54,57.09C319.27,57.09 307.93,57.09 287.5,57.09L287.5,232.74L342.78,232.74C355.52,232.34 363.7,231.75 367.32,230.95Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"/>
|
||||
android:pathData="M346.71,93.63C347.21,95.87 347.47,100.95 347.47,108.89C347.47,115.7 347.47,170.18 347.47,176.99C347.47,188.68 346.71,195.84 345.2,198.48C343.68,201.12 339.64,202.43 333.09,202.43C333.09,190.9 333.09,98.66 333.09,87.13C338.06,87.13 341.45,87.66 343.25,88.7C345.05,89.75 346.21,91.39 346.71,93.63ZM367.32,230.95C372.75,229.76 377.31,227.66 381.01,224.67C384.7,221.67 387.29,217.52 388.77,212.21C390.26,206.91 391.14,196.38 391.14,180.63C391.14,174.47 391.14,125.12 391.14,118.95C391.14,102.33 390.49,91.19 389.48,85.53C388.46,79.86 385.93,74.71 381.88,70.09C377.82,65.47 371.9,62.15 364.12,60.13C356.33,58.11 343.63,57.09 321.54,57.09C319.27,57.09 307.93,57.09 287.5,57.09L287.5,232.74L342.78,232.74C355.52,232.34 363.7,231.75 367.32,230.95Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M346.71,93.63C347.21,95.87 347.47,100.95 347.47,108.89C347.47,115.7 347.47,170.18 347.47,176.99C347.47,188.68 346.71,195.84 345.2,198.48C343.68,201.12 339.64,202.43 333.09,202.43C333.09,190.9 333.09,98.66 333.09,87.13C338.06,87.13 341.45,87.66 343.25,88.7C345.05,89.75 346.21,91.39 346.71,93.63ZM367.32,230.95C372.75,229.76 377.31,227.66 381.01,224.67C384.7,221.67 387.29,217.52 388.77,212.21C390.26,206.91 391.14,196.38 391.14,180.63C391.14,174.47 391.14,125.12 391.14,118.95C391.14,102.33 390.49,91.19 389.48,85.53C388.46,79.86 385.93,74.71 381.88,70.09C377.82,65.47 371.9,62.15 364.12,60.13C356.33,58.11 343.63,57.09 321.54,57.09C319.27,57.09 307.93,57.09 287.5,57.09L287.5,232.74L342.78,232.74C355.52,232.34 363.7,231.75 367.32,230.95Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M346.71,93.63C347.21,95.87 347.47,100.95 347.47,108.89C347.47,115.7 347.47,170.18 347.47,176.99C347.47,188.68 346.71,195.84 345.2,198.48C343.68,201.12 339.64,202.43 333.09,202.43C333.09,190.9 333.09,98.66 333.09,87.13C338.06,87.13 341.45,87.66 343.25,88.7C345.05,89.75 346.21,91.39 346.71,93.63ZM367.32,230.95C372.75,229.76 377.31,227.66 381.01,224.67C384.7,221.67 387.29,217.52 388.77,212.21C390.26,206.91 391.14,196.38 391.14,180.63C391.14,174.47 391.14,125.12 391.14,118.95C391.14,102.33 390.49,91.19 389.48,85.53C388.46,79.86 385.93,74.71 381.88,70.09C377.82,65.47 371.9,62.15 364.12,60.13C356.33,58.11 343.63,57.09 321.54,57.09C319.27,57.09 307.93,57.09 287.5,57.09L287.5,232.74L342.78,232.74C355.52,232.34 363.7,231.75 367.32,230.95Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M464.76,204.7C463.92,206.93 460.24,208.06 457.46,208.06C454.74,208.06 452.93,206.98 452.01,204.81C451.09,202.65 450.64,197.72 450.64,190C450.64,185.36 450.64,148.22 450.64,143.58C450.64,135.58 451.04,130.59 451.85,128.6C452.65,126.63 454.41,125.63 457.13,125.63C459.91,125.63 463.64,126.76 464.6,129.03C465.55,131.3 466.03,136.15 466.03,143.58C466.03,146.58 466.03,161.58 466.03,188.59C465.74,197.84 465.32,203.21 464.76,204.7ZM406.68,231.21L447.76,231.21C449.47,224.5 450.41,220.77 450.6,220.02C454.32,224.52 458.41,227.9 462.9,230.14C467.37,232.39 474.06,233.51 479.24,233.51C486.45,233.51 492.67,231.62 497.92,227.83C503.16,224.05 506.5,219.57 507.92,214.42C509.34,209.26 510.05,201.42 510.05,190.88C510.05,185.95 510.05,146.53 510.05,141.6C510.05,131 509.81,124.08 509.34,120.83C508.87,117.58 507.47,114.27 505.14,110.88C502.81,107.49 499.42,104.86 494.98,102.98C490.54,101.1 485.3,100.16 479.26,100.16C474.01,100.16 467.29,101.21 462.81,103.28C458.34,105.35 454.28,108.49 450.64,112.7C450.64,108.89 450.64,89.85 450.64,55.56L406.68,55.56L406.68,231.21Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"/>
|
||||
android:pathData="M464.76,204.7C463.92,206.93 460.24,208.06 457.46,208.06C454.74,208.06 452.93,206.98 452.01,204.81C451.09,202.65 450.64,197.72 450.64,190C450.64,185.36 450.64,148.22 450.64,143.58C450.64,135.58 451.04,130.59 451.85,128.6C452.65,126.63 454.41,125.63 457.13,125.63C459.91,125.63 463.64,126.76 464.6,129.03C465.55,131.3 466.03,136.15 466.03,143.58C466.03,146.58 466.03,161.58 466.03,188.59C465.74,197.84 465.32,203.21 464.76,204.7ZM406.68,231.21L447.76,231.21C449.47,224.5 450.41,220.77 450.6,220.02C454.32,224.52 458.41,227.9 462.9,230.14C467.37,232.39 474.06,233.51 479.24,233.51C486.45,233.51 492.67,231.62 497.92,227.83C503.16,224.05 506.5,219.57 507.92,214.42C509.34,209.26 510.05,201.42 510.05,190.88C510.05,185.95 510.05,146.53 510.05,141.6C510.05,131 509.81,124.08 509.34,120.83C508.87,117.58 507.47,114.27 505.14,110.88C502.81,107.49 499.42,104.86 494.98,102.98C490.54,101.1 485.3,100.16 479.26,100.16C474.01,100.16 467.29,101.21 462.81,103.28C458.34,105.35 454.28,108.49 450.64,112.7C450.64,108.89 450.64,89.85 450.64,55.56L406.68,55.56L406.68,231.21Z"
|
||||
android:fillColor="#000000"
|
||||
android:fillAlpha="1"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M464.76,204.7C463.92,206.93 460.24,208.06 457.46,208.06C454.74,208.06 452.93,206.98 452.01,204.81C451.09,202.65 450.64,197.72 450.64,190C450.64,185.36 450.64,148.22 450.64,143.58C450.64,135.58 451.04,130.59 451.85,128.6C452.65,126.63 454.41,125.63 457.13,125.63C459.91,125.63 463.64,126.76 464.6,129.03C465.55,131.3 466.03,136.15 466.03,143.58C466.03,146.58 466.03,161.58 466.03,188.59C465.74,197.84 465.32,203.21 464.76,204.7ZM406.68,231.21L447.76,231.21C449.47,224.5 450.41,220.77 450.6,220.02C454.32,224.52 458.41,227.9 462.9,230.14C467.37,232.39 474.06,233.51 479.24,233.51C486.45,233.51 492.67,231.62 497.92,227.83C503.16,224.05 506.5,219.57 507.92,214.42C509.34,209.26 510.05,201.42 510.05,190.88C510.05,185.95 510.05,146.53 510.05,141.6C510.05,131 509.81,124.08 509.34,120.83C508.87,117.58 507.47,114.27 505.14,110.88C502.81,107.49 499.42,104.86 494.98,102.98C490.54,101.1 485.3,100.16 479.26,100.16C474.01,100.16 467.29,101.21 462.81,103.28C458.34,105.35 454.28,108.49 450.64,112.7C450.64,108.89 450.64,89.85 450.64,55.56L406.68,55.56L406.68,231.21Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M464.76,204.7C463.92,206.93 460.24,208.06 457.46,208.06C454.74,208.06 452.93,206.98 452.01,204.81C451.09,202.65 450.64,197.72 450.64,190C450.64,185.36 450.64,148.22 450.64,143.58C450.64,135.58 451.04,130.59 451.85,128.6C452.65,126.63 454.41,125.63 457.13,125.63C459.91,125.63 463.64,126.76 464.6,129.03C465.55,131.3 466.03,136.15 466.03,143.58C466.03,146.58 466.03,161.58 466.03,188.59C465.74,197.84 465.32,203.21 464.76,204.7ZM406.68,231.21L447.76,231.21C449.47,224.5 450.41,220.77 450.6,220.02C454.32,224.52 458.41,227.9 462.9,230.14C467.37,232.39 474.06,233.51 479.24,233.51C486.45,233.51 492.67,231.62 497.92,227.83C503.16,224.05 506.5,219.57 507.92,214.42C509.34,209.26 510.05,201.42 510.05,190.88C510.05,185.95 510.05,146.53 510.05,141.6C510.05,131 509.81,124.08 509.34,120.83C508.87,117.58 507.47,114.27 505.14,110.88C502.81,107.49 499.42,104.86 494.98,102.98C490.54,101.1 485.3,100.16 479.26,100.16C474.01,100.16 467.29,101.21 462.81,103.28C458.34,105.35 454.28,108.49 450.64,112.7C450.64,108.89 450.64,89.85 450.64,55.56L406.68,55.56L406.68,231.21Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,15 +1,56 @@
|
||||
<vector android:height="24dp" android:viewportHeight="408.759"
|
||||
android:viewportWidth="408.759" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FFBE00" android:pathData="M204.384,408.759c-58.121,0 -113.674,-24.869 -152.417,-68.227C18.459,303.057 0.004,254.703 0.004,204.378C0.004,91.683 91.689,0 204.384,0c50.317,0 98.674,18.453 136.165,51.964c43.346,38.761 68.205,94.314 68.205,152.415C408.755,317.074 317.075,408.759 204.384,408.759"/>
|
||||
<path android:fillColor="#F4502A" android:pathData="M377.752,204.38c0,18.081 -2.77,35.522 -7.911,51.901c-20.391,65.09 -78.11,113.66 -148.079,120.61c-5.721,0.58 -11.51,0.87 -17.38,0.87c-3.551,0 -7.071,-0.111 -10.561,-0.321c-47.13,-2.829 -89.19,-24.488 -118.74,-57.559c-0.26,-0.29 -0.521,-0.589 -0.79,-0.879C47.34,288.44 30.999,248.321 30.999,204.38c0,-95.749 77.621,-173.379 173.381,-173.379c43.95,0 84.069,16.35 114.629,43.291c0.29,0.27 0.591,0.53 0.881,0.79c33.06,29.57 54.71,71.599 57.539,118.731C377.641,197.312 377.752,200.831 377.752,204.38"/>
|
||||
<path android:fillColor="#C29100" android:pathData="M336.32,91.898c0.047,0.056 0.094,0.111 0.142,0.167C336.413,92.007 336.368,91.956 336.32,91.898M335.92,91.432c0.081,0.095 0.164,0.191 0.245,0.286C336.083,91.622 336.003,91.527 335.92,91.432M319.275,74.533c0.206,0.185 0.414,0.367 0.616,0.549c5.678,5.079 11.019,10.524 15.986,16.3C330.732,85.397 325.183,79.766 319.275,74.533M296.518,57.479c0.066,0.041 0.132,0.083 0.198,0.125C296.65,57.563 296.585,57.521 296.518,57.479M296.052,57.188c0.117,0.073 0.234,0.146 0.351,0.219C296.288,57.334 296.167,57.259 296.052,57.188M204.384,30.999c-66.957,0 -125.049,37.955 -153.935,93.516c28.887,-55.563 86.974,-93.514 153.931,-93.514c33.641,0 65.035,9.578 91.618,26.154C269.421,40.577 238.022,30.999 204.384,30.999"/>
|
||||
<path android:fillColor="#BA3D20" android:pathData="M204.382,31.001c-66.957,0 -125.045,37.951 -153.931,93.514c-12.426,23.901 -19.445,51.054 -19.445,79.854c0,53.1 23.858,100.621 61.459,132.419c-25.53,-30.2 -40.919,-69.239 -40.919,-111.88c0,-95.751 77.619,-173.37 173.38,-173.37c42.629,0 81.68,15.39 111.87,40.919c-0.111,-0.131 -0.223,-0.263 -0.334,-0.394c-0.047,-0.056 -0.094,-0.111 -0.142,-0.167c-0.051,-0.06 -0.104,-0.122 -0.154,-0.181c-0.081,-0.095 -0.164,-0.191 -0.245,-0.286c-0.014,-0.016 -0.029,-0.034 -0.043,-0.05c-4.968,-5.776 -10.308,-11.221 -15.986,-16.3c-0.203,-0.182 -0.41,-0.364 -0.616,-0.549c-7.034,-6.23 -14.574,-11.895 -22.559,-16.929c-0.066,-0.041 -0.132,-0.083 -0.198,-0.125c-0.038,-0.024 -0.078,-0.049 -0.116,-0.073c-0.116,-0.073 -0.234,-0.146 -0.351,-0.219c-0.018,-0.011 -0.034,-0.021 -0.052,-0.033C269.417,40.579 238.021,31.001 204.382,31.001"/>
|
||||
<path android:fillColor="#BA3D20" android:pathData="M167.02,201.44L167.02,201.44l-38.89,38.892c-11.12,11.109 -11.12,29.189 0,40.299c5.556,5.556 12.853,8.333 20.15,8.333s14.595,-2.778 20.15,-8.333l32.65,-32.65l6.24,-6.24l0,0c0.132,0.025 0.265,0.049 0.397,0.072l0,0c-0.132,-0.023 -0.265,-0.047 -0.397,-0.072l0,0c-9.671,-1.8 -18.921,-6.441 -26.39,-13.911C173.462,220.361 168.82,211.111 167.02,201.44M192.145,188.156c-0.007,0 -0.013,0 -0.02,0c-1.245,0.001 -2.49,0.083 -3.726,0.246l0,0c-1.119,8.479 1.581,17.369 8.09,23.869c5.548,5.548 12.828,8.327 20.115,8.327c1.251,0 2.503,-0.082 3.746,-0.246l0,0l0,0c0.166,-1.259 0.248,-2.526 0.246,-3.793c-0.012,-7.271 -2.792,-14.532 -8.327,-20.067l0,0c-0.045,-0.045 -0.09,-0.09 -0.135,-0.134c-0.062,-0.061 -0.124,-0.122 -0.186,-0.182c-5.484,-5.323 -12.597,-7.998 -19.717,-8.02C192.202,188.156 192.174,188.156 192.145,188.156M260.48,119.789c-7.297,0 -14.595,2.778 -20.149,8.333l-38.901,38.899c9.68,1.8 18.93,6.439 26.401,13.911c7.469,7.47 12.108,16.719 13.909,26.39l0,0l0,0l38.89,-38.89c11.111,-11.111 11.111,-29.191 0,-40.31C275.076,122.567 267.778,119.789 260.48,119.789M296.19,112.572c19.691,19.69 19.691,51.729 0,71.42l-43.839,43.839c-4.31,4.31 -9.2,7.671 -14.43,10.09c3.136,-6.757 4.695,-14.073 4.68,-21.383c0.015,7.311 -1.544,14.626 -4.68,21.383c-0.147,0.068 -0.295,0.136 -0.443,0.203l0,0c0.148,-0.066 0.296,-0.134 0.443,-0.203l0,0l0,0l0,0l0,0l0,0c-2.421,5.231 -5.78,10.121 -10.09,14.431l-43.841,43.839c-9.845,9.845 -22.778,14.768 -35.71,14.768s-25.865,-4.923 -35.71,-14.768l0,0l81.25,81.25c3.49,0.21 7.01,0.321 10.561,0.321c5.87,0 11.66,-0.29 17.38,-0.87c69.969,-6.951 127.688,-55.521 148.079,-120.61c5.141,-16.379 7.911,-33.821 7.911,-51.901c0,-3.549 -0.111,-7.069 -0.321,-10.568l0,0L296.19,112.572"/>
|
||||
<path android:fillColor="#FFFFFF" android:pathData="M207.32,241.741l-38.89,38.89c-11.111,11.111 -29.19,11.111 -40.301,0c-11.12,-11.109 -11.12,-29.189 0,-40.299l38.89,-38.892l4.951,-4.949c1.939,-1.941 4.09,-3.54 6.38,-4.801c3.139,-1.739 6.559,-2.838 10.049,-3.289c8.48,-1.119 17.369,1.581 23.87,8.09c6.5,6.5 9.2,15.38 8.081,23.86c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949c-1.8,-9.671 -6.439,-18.92 -13.909,-26.39c-7.471,-7.472 -16.721,-12.11 -26.401,-13.911c-1.93,-0.36 -3.88,-0.609 -5.839,-0.741c-8.421,-0.568 -16.95,0.951 -24.75,4.562c-5.23,2.419 -10.12,5.78 -14.429,10.09L112.57,224.77c-19.691,19.69 -19.691,51.731 0,71.42c19.691,19.69 51.729,19.69 71.42,0l43.841,-43.839c4.31,-4.31 7.669,-9.2 10.09,-14.431C228.311,242.382 217.572,243.651 207.32,241.741"/>
|
||||
<path android:fillColor="#C2C2C2" android:pathData="M237.921,237.921c-0.147,0.068 -0.295,0.136 -0.443,0.203c-0.238,0.108 -0.476,0.213 -0.715,0.317c-6.372,2.764 -13.204,4.149 -20.037,4.161c-0.029,0 -0.057,0 -0.085,0l0,0l0,0c-0.014,0 -0.028,0 -0.042,0c-2.974,-0.002 -5.946,-0.265 -8.881,-0.788c-0.132,-0.023 -0.265,-0.047 -0.397,-0.072l0,0l-6.24,6.24l15.56,15.56l11.191,-11.188C232.141,248.042 235.501,243.152 237.921,237.921"/>
|
||||
<path android:fillColor="#8E2E18" android:pathData="M212.134,196.357c0.045,0.044 0.09,0.089 0.135,0.134C212.225,196.447 212.179,196.402 212.134,196.357M192.231,188.156c7.12,0.021 14.233,2.696 19.717,8.02C206.464,190.852 199.352,188.177 192.231,188.156M192.145,188.156c-0.006,0 -0.013,0 -0.02,0C192.133,188.156 192.139,188.156 192.145,188.156L192.145,188.156"/>
|
||||
<path android:fillColor="#C2C2C2" android:pathData="M201.43,167.021l-4.94,4.939c-4.609,4.611 -7.311,10.421 -8.09,16.441l0,0l0,0c1.236,-0.163 2.481,-0.245 3.726,-0.246c0.006,0 0.013,0 0.02,0l0,0l0,0c0.029,0 0.057,0 0.085,0c7.12,0.021 14.233,2.696 19.717,8.02c0.062,0.061 0.124,0.121 0.186,0.182c0.045,0.044 0.09,0.089 0.135,0.134l0,0c5.535,5.535 8.315,12.796 8.327,20.067c0.002,1.267 -0.08,2.535 -0.246,3.793c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949c-1.8,-9.671 -6.439,-18.92 -13.909,-26.39C220.359,173.46 211.11,168.822 201.43,167.021"/>
|
||||
<path android:fillColor="#1CA4BA" android:pathData="M296.19,112.572c-19.689,-19.69 -51.729,-19.69 -71.418,0l-43.841,43.839c-4.31,4.31 -7.671,9.2 -10.09,14.432c-4.46,9.61 -5.73,20.35 -3.821,30.598c1.8,9.671 6.441,18.921 13.911,26.39c7.47,7.47 16.719,12.11 26.39,13.911l4.949,-4.949c4.611,-4.611 7.311,-10.42 8.081,-16.44c-8.48,1.119 -17.36,-1.581 -23.86,-8.081c-6.509,-6.5 -9.209,-15.39 -8.09,-23.869c0.779,-6.02 3.481,-11.83 8.09,-16.441l43.841,-43.838c11.109,-11.111 29.19,-11.111 40.299,0c11.111,11.118 11.111,29.199 0,40.31l-38.89,38.89c1.911,10.249 0.641,20.989 -3.819,30.599c5.23,-2.419 10.12,-5.78 14.43,-10.09l43.839,-43.839C315.881,164.301 315.881,132.262 296.19,112.572"/>
|
||||
<path android:fillColor="#FFFFFF" android:pathData="M237.921,237.921c-9.61,4.461 -20.35,5.73 -30.6,3.82l4.949,-4.949c4.611,-4.611 7.311,-10.42 8.081,-16.44c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949C243.651,217.571 242.38,228.311 237.921,237.921"/>
|
||||
<path android:fillColor="#C2C2C2" android:pathData="M241.74,207.322L241.74,207.322l-6.545,0.398c-4.611,4.611 -8.875,2.438 -14.845,12.632l0,0c-0.77,6.02 -3.47,11.83 -8.081,16.44l-4.949,4.949c0.5,2.979 4.627,5.479 7.749,5.479c7.276,0 19.25,-1.5 22.851,-9.299c3.123,-6.763 4.695,-14.073 4.68,-21.383C242.594,213.451 242.307,210.365 241.74,207.322L241.74,207.322"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:viewportHeight="408.759"
|
||||
android:viewportWidth="408.759"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#FFBE00"
|
||||
android:pathData="M204.384,408.759c-58.121,0 -113.674,-24.869 -152.417,-68.227C18.459,303.057 0.004,254.703 0.004,204.378C0.004,91.683 91.689,0 204.384,0c50.317,0 98.674,18.453 136.165,51.964c43.346,38.761 68.205,94.314 68.205,152.415C408.755,317.074 317.075,408.759 204.384,408.759"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#F4502A"
|
||||
android:pathData="M377.752,204.38c0,18.081 -2.77,35.522 -7.911,51.901c-20.391,65.09 -78.11,113.66 -148.079,120.61c-5.721,0.58 -11.51,0.87 -17.38,0.87c-3.551,0 -7.071,-0.111 -10.561,-0.321c-47.13,-2.829 -89.19,-24.488 -118.74,-57.559c-0.26,-0.29 -0.521,-0.589 -0.79,-0.879C47.34,288.44 30.999,248.321 30.999,204.38c0,-95.749 77.621,-173.379 173.381,-173.379c43.95,0 84.069,16.35 114.629,43.291c0.29,0.27 0.591,0.53 0.881,0.79c33.06,29.57 54.71,71.599 57.539,118.731C377.641,197.312 377.752,200.831 377.752,204.38"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#C29100"
|
||||
android:pathData="M336.32,91.898c0.047,0.056 0.094,0.111 0.142,0.167C336.413,92.007 336.368,91.956 336.32,91.898M335.92,91.432c0.081,0.095 0.164,0.191 0.245,0.286C336.083,91.622 336.003,91.527 335.92,91.432M319.275,74.533c0.206,0.185 0.414,0.367 0.616,0.549c5.678,5.079 11.019,10.524 15.986,16.3C330.732,85.397 325.183,79.766 319.275,74.533M296.518,57.479c0.066,0.041 0.132,0.083 0.198,0.125C296.65,57.563 296.585,57.521 296.518,57.479M296.052,57.188c0.117,0.073 0.234,0.146 0.351,0.219C296.288,57.334 296.167,57.259 296.052,57.188M204.384,30.999c-66.957,0 -125.049,37.955 -153.935,93.516c28.887,-55.563 86.974,-93.514 153.931,-93.514c33.641,0 65.035,9.578 91.618,26.154C269.421,40.577 238.022,30.999 204.384,30.999"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#BA3D20"
|
||||
android:pathData="M204.382,31.001c-66.957,0 -125.045,37.951 -153.931,93.514c-12.426,23.901 -19.445,51.054 -19.445,79.854c0,53.1 23.858,100.621 61.459,132.419c-25.53,-30.2 -40.919,-69.239 -40.919,-111.88c0,-95.751 77.619,-173.37 173.38,-173.37c42.629,0 81.68,15.39 111.87,40.919c-0.111,-0.131 -0.223,-0.263 -0.334,-0.394c-0.047,-0.056 -0.094,-0.111 -0.142,-0.167c-0.051,-0.06 -0.104,-0.122 -0.154,-0.181c-0.081,-0.095 -0.164,-0.191 -0.245,-0.286c-0.014,-0.016 -0.029,-0.034 -0.043,-0.05c-4.968,-5.776 -10.308,-11.221 -15.986,-16.3c-0.203,-0.182 -0.41,-0.364 -0.616,-0.549c-7.034,-6.23 -14.574,-11.895 -22.559,-16.929c-0.066,-0.041 -0.132,-0.083 -0.198,-0.125c-0.038,-0.024 -0.078,-0.049 -0.116,-0.073c-0.116,-0.073 -0.234,-0.146 -0.351,-0.219c-0.018,-0.011 -0.034,-0.021 -0.052,-0.033C269.417,40.579 238.021,31.001 204.382,31.001"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#BA3D20"
|
||||
android:pathData="M167.02,201.44L167.02,201.44l-38.89,38.892c-11.12,11.109 -11.12,29.189 0,40.299c5.556,5.556 12.853,8.333 20.15,8.333s14.595,-2.778 20.15,-8.333l32.65,-32.65l6.24,-6.24l0,0c0.132,0.025 0.265,0.049 0.397,0.072l0,0c-0.132,-0.023 -0.265,-0.047 -0.397,-0.072l0,0c-9.671,-1.8 -18.921,-6.441 -26.39,-13.911C173.462,220.361 168.82,211.111 167.02,201.44M192.145,188.156c-0.007,0 -0.013,0 -0.02,0c-1.245,0.001 -2.49,0.083 -3.726,0.246l0,0c-1.119,8.479 1.581,17.369 8.09,23.869c5.548,5.548 12.828,8.327 20.115,8.327c1.251,0 2.503,-0.082 3.746,-0.246l0,0l0,0c0.166,-1.259 0.248,-2.526 0.246,-3.793c-0.012,-7.271 -2.792,-14.532 -8.327,-20.067l0,0c-0.045,-0.045 -0.09,-0.09 -0.135,-0.134c-0.062,-0.061 -0.124,-0.122 -0.186,-0.182c-5.484,-5.323 -12.597,-7.998 -19.717,-8.02C192.202,188.156 192.174,188.156 192.145,188.156M260.48,119.789c-7.297,0 -14.595,2.778 -20.149,8.333l-38.901,38.899c9.68,1.8 18.93,6.439 26.401,13.911c7.469,7.47 12.108,16.719 13.909,26.39l0,0l0,0l38.89,-38.89c11.111,-11.111 11.111,-29.191 0,-40.31C275.076,122.567 267.778,119.789 260.48,119.789M296.19,112.572c19.691,19.69 19.691,51.729 0,71.42l-43.839,43.839c-4.31,4.31 -9.2,7.671 -14.43,10.09c3.136,-6.757 4.695,-14.073 4.68,-21.383c0.015,7.311 -1.544,14.626 -4.68,21.383c-0.147,0.068 -0.295,0.136 -0.443,0.203l0,0c0.148,-0.066 0.296,-0.134 0.443,-0.203l0,0l0,0l0,0l0,0l0,0c-2.421,5.231 -5.78,10.121 -10.09,14.431l-43.841,43.839c-9.845,9.845 -22.778,14.768 -35.71,14.768s-25.865,-4.923 -35.71,-14.768l0,0l81.25,81.25c3.49,0.21 7.01,0.321 10.561,0.321c5.87,0 11.66,-0.29 17.38,-0.87c69.969,-6.951 127.688,-55.521 148.079,-120.61c5.141,-16.379 7.911,-33.821 7.911,-51.901c0,-3.549 -0.111,-7.069 -0.321,-10.568l0,0L296.19,112.572"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M207.32,241.741l-38.89,38.89c-11.111,11.111 -29.19,11.111 -40.301,0c-11.12,-11.109 -11.12,-29.189 0,-40.299l38.89,-38.892l4.951,-4.949c1.939,-1.941 4.09,-3.54 6.38,-4.801c3.139,-1.739 6.559,-2.838 10.049,-3.289c8.48,-1.119 17.369,1.581 23.87,8.09c6.5,6.5 9.2,15.38 8.081,23.86c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949c-1.8,-9.671 -6.439,-18.92 -13.909,-26.39c-7.471,-7.472 -16.721,-12.11 -26.401,-13.911c-1.93,-0.36 -3.88,-0.609 -5.839,-0.741c-8.421,-0.568 -16.95,0.951 -24.75,4.562c-5.23,2.419 -10.12,5.78 -14.429,10.09L112.57,224.77c-19.691,19.69 -19.691,51.731 0,71.42c19.691,19.69 51.729,19.69 71.42,0l43.841,-43.839c4.31,-4.31 7.669,-9.2 10.09,-14.431C228.311,242.382 217.572,243.651 207.32,241.741"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#C2C2C2"
|
||||
android:pathData="M237.921,237.921c-0.147,0.068 -0.295,0.136 -0.443,0.203c-0.238,0.108 -0.476,0.213 -0.715,0.317c-6.372,2.764 -13.204,4.149 -20.037,4.161c-0.029,0 -0.057,0 -0.085,0l0,0l0,0c-0.014,0 -0.028,0 -0.042,0c-2.974,-0.002 -5.946,-0.265 -8.881,-0.788c-0.132,-0.023 -0.265,-0.047 -0.397,-0.072l0,0l-6.24,6.24l15.56,15.56l11.191,-11.188C232.141,248.042 235.501,243.152 237.921,237.921"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#8E2E18"
|
||||
android:pathData="M212.134,196.357c0.045,0.044 0.09,0.089 0.135,0.134C212.225,196.447 212.179,196.402 212.134,196.357M192.231,188.156c7.12,0.021 14.233,2.696 19.717,8.02C206.464,190.852 199.352,188.177 192.231,188.156M192.145,188.156c-0.006,0 -0.013,0 -0.02,0C192.133,188.156 192.139,188.156 192.145,188.156L192.145,188.156"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#C2C2C2"
|
||||
android:pathData="M201.43,167.021l-4.94,4.939c-4.609,4.611 -7.311,10.421 -8.09,16.441l0,0l0,0c1.236,-0.163 2.481,-0.245 3.726,-0.246c0.006,0 0.013,0 0.02,0l0,0l0,0c0.029,0 0.057,0 0.085,0c7.12,0.021 14.233,2.696 19.717,8.02c0.062,0.061 0.124,0.121 0.186,0.182c0.045,0.044 0.09,0.089 0.135,0.134l0,0c5.535,5.535 8.315,12.796 8.327,20.067c0.002,1.267 -0.08,2.535 -0.246,3.793c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949c-1.8,-9.671 -6.439,-18.92 -13.909,-26.39C220.359,173.46 211.11,168.822 201.43,167.021"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#1CA4BA"
|
||||
android:pathData="M296.19,112.572c-19.689,-19.69 -51.729,-19.69 -71.418,0l-43.841,43.839c-4.31,4.31 -7.671,9.2 -10.09,14.432c-4.46,9.61 -5.73,20.35 -3.821,30.598c1.8,9.671 6.441,18.921 13.911,26.39c7.47,7.47 16.719,12.11 26.39,13.911l4.949,-4.949c4.611,-4.611 7.311,-10.42 8.081,-16.44c-8.48,1.119 -17.36,-1.581 -23.86,-8.081c-6.509,-6.5 -9.209,-15.39 -8.09,-23.869c0.779,-6.02 3.481,-11.83 8.09,-16.441l43.841,-43.838c11.109,-11.111 29.19,-11.111 40.299,0c11.111,11.118 11.111,29.199 0,40.31l-38.89,38.89c1.911,10.249 0.641,20.989 -3.819,30.599c5.23,-2.419 10.12,-5.78 14.43,-10.09l43.839,-43.839C315.881,164.301 315.881,132.262 296.19,112.572"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M237.921,237.921c-9.61,4.461 -20.35,5.73 -30.6,3.82l4.949,-4.949c4.611,-4.611 7.311,-10.42 8.081,-16.44c6.02,-0.77 11.829,-3.47 16.44,-8.081l4.949,-4.949C243.651,217.571 242.38,228.311 237.921,237.921"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#C2C2C2"
|
||||
android:pathData="M241.74,207.322L241.74,207.322l-6.545,0.398c-4.611,4.611 -8.875,2.438 -14.845,12.632l0,0c-0.77,6.02 -3.47,11.83 -8.081,16.44l-4.949,4.949c0.5,2.979 4.627,5.479 7.749,5.479c7.276,0 19.25,-1.5 22.851,-9.299c3.123,-6.763 4.695,-14.073 4.68,-21.383C242.594,213.451 242.307,210.365 241.74,207.322L241.74,207.322"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,5v14L5,19L5,5h14m1.1,-2L3.9,3c-0.5,0 -0.9,0.4 -0.9,0.9v16.2c0,0.4 0.4,0.9 0.9,0.9h16.2c0.4,0 0.9,-0.5 0.9,-0.9L21,3.9c0,-0.5 -0.5,-0.9 -0.9,-0.9zM11,7h6v2h-6L11,7zM11,11h6v2h-6v-2zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M19,5v14L5,19L5,5h14m1.1,-2L3.9,3c-0.5,0 -0.9,0.4 -0.9,0.9v16.2c0,0.4 0.4,0.9 0.9,0.9h16.2c0.4,0 0.9,-0.5 0.9,-0.9L21,3.9c0,-0.5 -0.5,-0.9 -0.9,-0.9zM11,7h6v2h-6L11,7zM11,11h6v2h-6v-2zM11,15h6v2h-6zM7,7h2v2L7,9zM7,11h2v2L7,13zM7,15h2v2L7,17z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h4v-2L5,18L5,8h14v10h-4v2h4c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM12,10l-4,4h3v6h2v-6h3l-4,-4z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M19,4L5,4c-1.11,0 -2,0.9 -2,2v12c0,1.1 0.89,2 2,2h4v-2L5,18L5,8h14v10h-4v2h4c1.1,0 2,-0.9 2,-2L21,6c0,-1.1 -0.89,-2 -2,-2zM12,10l-4,4h3v6h2v-6h3l-4,-4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M7,2h10v2l-2,1v5l3,3v3h-5v4l-1,3l-1,-3v-4L6,16v-3l3,-3L9,5L7,4L7,2zM13,4h-2v6.828l-3,3L8,14h8v-0.172l-3,-3L13,4z"/>
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M7,2h10v2l-2,1v5l3,3v3h-5v4l-1,3l-1,-3v-4L6,16v-3l3,-3L9,5L7,4L7,2zM13,4h-2v6.828l-3,3L8,14h8v-0.172l-3,-3L13,4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0"
|
||||
android:viewportWidth="24.0"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM16.23,18L12,15.45 7.77,18l1.12,-4.81 -3.73,-3.23 4.92,-0.42L12,5l1.92,4.53 4.92,0.42 -3.73,3.23L16.23,18z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0"
|
||||
android:viewportWidth="24.0"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM16.23,18L12,15.45 7.77,18l1.12,-4.81 -3.73,-3.23 4.92,-0.42L12,5l1.92,4.53 4.92,0.42 -3.73,3.23L16.23,18z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -5,12 +5,12 @@
|
||||
android:width="50dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#1DA1F2"
|
||||
android:pathData="M200,200m-200,0a200,200 0,1 1,400 0a200,200 0,1 1,-400 0"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M163.4,305.5c88.7,0 137.2,-73.5 137.2,-137.2c0,-2.1 0,-4.2 -0.1,-6.2c9.4,-6.8 17.6,-15.3 24.1,-25c-8.6,3.8 -17.9,6.4 -27.7,7.6c10,-6 17.6,-15.4 21.2,-26.7c-9.3,5.5 -19.6,9.5 -30.6,11.7c-8.8,-9.4 -21.3,-15.2 -35.2,-15.2c-26.6,0 -48.2,21.6 -48.2,48.2c0,3.8 0.4,7.5 1.3,11c-40.1,-2 -75.6,-21.2 -99.4,-50.4c-4.1,7.1 -6.5,15.4 -6.5,24.2c0,16.7 8.5,31.5 21.5,40.1c-7.9,-0.2 -15.3,-2.4 -21.8,-6c0,0.2 0,0.4 0,0.6c0,23.4 16.6,42.8 38.7,47.3c-4,1.1 -8.3,1.7 -12.7,1.7c-3.1,0 -6.1,-0.3 -9.1,-0.9c6.1,19.2 23.9,33.1 45,33.5c-16.5,12.9 -37.3,20.6 -59.9,20.6c-3.9,0 -7.7,-0.2 -11.5,-0.7C110.8,297.5 136.2,305.5 163.4,305.5"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#1DA1F2"
|
||||
android:pathData="M200,200m-200,0a200,200 0,1 1,400 0a200,200 0,1 1,-400 0"
|
||||
/>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M163.4,305.5c88.7,0 137.2,-73.5 137.2,-137.2c0,-2.1 0,-4.2 -0.1,-6.2c9.4,-6.8 17.6,-15.3 24.1,-25c-8.6,3.8 -17.9,6.4 -27.7,7.6c10,-6 17.6,-15.4 21.2,-26.7c-9.3,5.5 -19.6,9.5 -30.6,11.7c-8.8,-9.4 -21.3,-15.2 -35.2,-15.2c-26.6,0 -48.2,21.6 -48.2,48.2c0,3.8 0.4,7.5 1.3,11c-40.1,-2 -75.6,-21.2 -99.4,-50.4c-4.1,7.1 -6.5,15.4 -6.5,24.2c0,16.7 8.5,31.5 21.5,40.1c-7.9,-0.2 -15.3,-2.4 -21.8,-6c0,0.2 0,0.4 0,0.6c0,23.4 16.6,42.8 38.7,47.3c-4,1.1 -8.3,1.7 -12.7,1.7c-3.1,0 -6.1,-0.3 -9.1,-0.9c6.1,19.2 23.9,33.1 45,33.5c-16.5,12.9 -37.3,20.6 -59.9,20.6c-3.9,0 -7.7,-0.2 -11.5,-0.7C110.8,297.5 136.2,305.5 163.4,305.5"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -6,17 +6,19 @@
|
||||
android:viewportHeight="128"
|
||||
>
|
||||
<path
|
||||
android:pathData="M96.869,23.909L96.869,26.048C94.047,26.549 91.912,27.436 90.462,28.707C88.385,30.596 85.937,33.486 84.33,37.379L51.645,104.091L49.47,104.091L16.657,36.512C15.129,33.043 13.051,30.923 12.424,30.153C11.445,28.958 10.24,28.023 8.81,27.349C7.379,26.674 5.449,26.241 3.02,26.048L3.02,23.909L34.948,23.909L34.948,26.048C31.265,26.395 29.509,27.012 28.411,27.898C27.314,28.784 26.766,29.921 26.766,31.309C26.766,33.236 27.667,36.242 29.469,40.327L53.702,86.286L77.394,40.905C79.236,36.435 80.764,33.332 80.764,31.598C80.764,30.48 80.196,29.411 79.06,28.389C77.923,27.368 76.637,26.645 73.934,26.221C73.738,26.183 73.405,26.125 72.934,26.048L72.934,23.909L96.869,23.909z"
|
||||
android:strokeLineJoin="miter"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeColor="#ffffff"
|
||||
android:strokeLineCap="butt"/>
|
||||
android:pathData="M96.869,23.909L96.869,26.048C94.047,26.549 91.912,27.436 90.462,28.707C88.385,30.596 85.937,33.486 84.33,37.379L51.645,104.091L49.47,104.091L16.657,36.512C15.129,33.043 13.051,30.923 12.424,30.153C11.445,28.958 10.24,28.023 8.81,27.349C7.379,26.674 5.449,26.241 3.02,26.048L3.02,23.909L34.948,23.909L34.948,26.048C31.265,26.395 29.509,27.012 28.411,27.898C27.314,28.784 26.766,29.921 26.766,31.309C26.766,33.236 27.667,36.242 29.469,40.327L53.702,86.286L77.394,40.905C79.236,36.435 80.764,33.332 80.764,31.598C80.764,30.48 80.196,29.411 79.06,28.389C77.923,27.368 76.637,26.645 73.934,26.221C73.738,26.183 73.405,26.125 72.934,26.048L72.934,23.909L96.869,23.909z"
|
||||
android:strokeLineJoin="miter"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeColor="#ffffff"
|
||||
android:strokeLineCap="butt"
|
||||
/>
|
||||
<path
|
||||
android:pathData="M124.98,23.909L124.98,26.048C122.159,26.549 120.023,27.436 118.573,28.707C116.497,30.596 114.048,33.486 112.441,37.379L83.756,104.091L81.581,104.091L51.268,36.512C49.74,33.043 47.662,30.923 47.036,30.153C46.056,28.958 44.851,28.023 43.421,27.349C41.991,26.674 40.695,26.241 38.265,26.048L38.265,23.909L69.559,23.909L69.559,26.048C65.876,26.395 64.12,27.012 63.023,27.898C61.925,28.784 61.377,29.921 61.377,31.309C61.377,33.236 62.278,36.242 64.081,40.327L85.813,86.286L105.506,40.905C107.347,36.435 108.875,33.332 108.875,31.598C108.875,30.48 108.307,29.411 107.171,28.389C106.034,27.368 104.114,26.645 101.411,26.221C101.215,26.183 100.882,26.125 100.411,26.048L100.411,23.909L124.98,23.909z"
|
||||
android:strokeLineJoin="miter"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeColor="#ffffff"
|
||||
android:strokeLineCap="butt"/>
|
||||
android:pathData="M124.98,23.909L124.98,26.048C122.159,26.549 120.023,27.436 118.573,28.707C116.497,30.596 114.048,33.486 112.441,37.379L83.756,104.091L81.581,104.091L51.268,36.512C49.74,33.043 47.662,30.923 47.036,30.153C46.056,28.958 44.851,28.023 43.421,27.349C41.991,26.674 40.695,26.241 38.265,26.048L38.265,23.909L69.559,23.909L69.559,26.048C65.876,26.395 64.12,27.012 63.023,27.898C61.925,28.784 61.377,29.921 61.377,31.309C61.377,33.236 62.278,36.242 64.081,40.327L85.813,86.286L105.506,40.905C107.347,36.435 108.875,33.332 108.875,31.598C108.875,30.48 108.307,29.411 107.171,28.389C106.034,27.368 104.114,26.645 101.411,26.221C101.215,26.183 100.882,26.125 100.411,26.048L100.411,23.909L124.98,23.909z"
|
||||
android:strokeLineJoin="miter"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeColor="#ffffff"
|
||||
android:strokeLineCap="butt"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,12 +1,16 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="159dp"
|
||||
android:height="110dp"
|
||||
android:viewportWidth="159"
|
||||
android:viewportHeight="110">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="159dp"
|
||||
android:height="110dp"
|
||||
android:viewportWidth="159"
|
||||
android:viewportHeight="110"
|
||||
>
|
||||
<path
|
||||
android:pathData="m154,17.5c-1.82,-6.73 -7.07,-12 -13.8,-13.8 -9.04,-3.49 -96.6,-5.2 -122,0.1 -6.73,1.82 -12,7.07 -13.8,13.8 -4.08,17.9 -4.39,56.6 0.1,74.9 1.82,6.73 7.07,12 13.8,13.8 17.9,4.12 103,4.7 122,0 6.73,-1.82 12,-7.07 13.8,-13.8 4.35,-19.5 4.66,-55.8 -0.1,-75z"
|
||||
android:fillColor="#f00"/>
|
||||
android:pathData="m154,17.5c-1.82,-6.73 -7.07,-12 -13.8,-13.8 -9.04,-3.49 -96.6,-5.2 -122,0.1 -6.73,1.82 -12,7.07 -13.8,13.8 -4.08,17.9 -4.39,56.6 0.1,74.9 1.82,6.73 7.07,12 13.8,13.8 17.9,4.12 103,4.7 122,0 6.73,-1.82 12,-7.07 13.8,-13.8 4.35,-19.5 4.66,-55.8 -0.1,-75z"
|
||||
android:fillColor="#f00"
|
||||
/>
|
||||
<path
|
||||
android:pathData="m105,55 l-40.8,-23.4v46.8z"
|
||||
android:fillColor="#fff"/>
|
||||
android:pathData="m105,55 l-40.8,-23.4v46.8z"
|
||||
android:fillColor="#fff"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM17,11h-4v4h-2v-4H7V9h4V5h2v4h4v2z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M21.99,4c0,-1.1 -0.89,-2 -1.99,-2H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h14l4,4 -0.01,-18zM17,11h-4v4h-2v-4H7V9h4V5h2v4h4v2z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M10,9V5l-7,7 7,7v-4.1c5,0 8.5,1.6 11,5.1 -1,-5 -4,-10 -11,-11z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_discover_movies.filters.feed
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_discover_movies.filters.genres
|
||||
|
@ -16,8 +16,8 @@ class DiscoverMoviesAdapter(
|
||||
private val missingImageListener: (DiscoverMovieListItem, Boolean) -> Unit,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseMovieAdapter<DiscoverMovieListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
init {
|
||||
stateRestorationPolicy = StateRestorationPolicy.PREVENT_WHEN_EMPTY
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_discover.filters.feed
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_discover.filters.genres
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_discover.filters.networks
|
||||
|
@ -19,8 +19,8 @@ class DiscoverAdapter(
|
||||
private val twitterCancelClickListener: (() -> Unit)?,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseAdapter<DiscoverListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
override val asyncDiffer = AsyncListDiffer(this, DiscoverItemDiffCallback())
|
||||
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM17,13l-5,5 -5,-5h3V9h4v4h3z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM17,13l-5,5 -5,-5h3V9h4v4h3z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_lists.details
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4V15z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4V15z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M14,10L2,10v2h12v-2zM14,6L2,6v2h12L14,6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2,16h8v-2L2,14v2z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M14,10L2,10v2h12v-2zM14,6L2,6v2h12L14,6zM18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2,16h8v-2L2,14v2z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,13 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M14,5h8v2h-8zM14,10.5h8v2h-8zM14,16h8v2h-8zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"/>
|
||||
<vector
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24"
|
||||
android:width="24dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M14,5h8v2h-8zM14,10.5h8v2h-8zM14,16h8v2h-8zM2,11.5C2,15.08 4.92,18 8.5,18L9,18v2l3,-3 -3,-3v2h-0.5C6.02,16 4,13.98 4,11.5S6.02,7 8.5,7L12,7L12,5L8.5,5C4.92,5 2,7.92 2,11.5z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application android:theme="@style/AppTheme" />
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_movie
|
||||
|
@ -25,8 +25,8 @@ class CollectionAdapter(
|
||||
private val missingTranslationListener: (CollectionListItem) -> Unit,
|
||||
private val upcomingChipVisible: Boolean = true,
|
||||
) : BaseMovieAdapter<CollectionListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_SHOW = 1
|
||||
|
@ -28,10 +28,10 @@ sealed class CollectionListItem(
|
||||
val sortOrder: SortOrder? = null,
|
||||
val spoilers: Spoilers,
|
||||
) : CollectionListItem(
|
||||
movie = movie,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
) {
|
||||
movie = movie,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
) {
|
||||
|
||||
data class Spoilers(
|
||||
val isSpoilerHidden: Boolean,
|
||||
@ -46,10 +46,10 @@ sealed class CollectionListItem(
|
||||
val upcoming: UpcomingFilter,
|
||||
val genres: List<Genre>,
|
||||
) : CollectionListItem(
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
|
||||
fun hasActiveFilters() = upcoming.isActive() || genres.isNotEmpty()
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_my_movies.filters
|
||||
|
@ -24,8 +24,8 @@ class MyMoviesAdapter(
|
||||
private val onListViewModeClickListener: () -> Unit,
|
||||
listChangeListener: (() -> Unit),
|
||||
) : BaseMovieAdapter<MyMoviesItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_HEADER = 1
|
||||
|
@ -20,10 +20,10 @@ sealed class WatchlistListItem(
|
||||
val sortType: SortType,
|
||||
val isUpcoming: Boolean,
|
||||
) : WatchlistListItem(
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
|
||||
data class MovieItem(
|
||||
override val movie: Movie,
|
||||
@ -34,8 +34,8 @@ sealed class WatchlistListItem(
|
||||
val dateFormat: DateTimeFormatter? = null,
|
||||
val fullDateFormat: DateTimeFormatter? = null,
|
||||
) : WatchlistListItem(
|
||||
movie = movie,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
)
|
||||
movie = movie,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_my_shows.common.filters
|
||||
|
@ -27,8 +27,8 @@ class CollectionAdapter(
|
||||
private val missingTranslationListener: (CollectionListItem) -> Unit,
|
||||
private val upcomingChipVisible: Boolean = true,
|
||||
) : BaseAdapter<CollectionListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_SHOW = 1
|
||||
|
@ -32,10 +32,10 @@ sealed class CollectionListItem(
|
||||
val sortOrder: SortOrder? = null,
|
||||
val spoilers: Spoilers,
|
||||
) : CollectionListItem(
|
||||
show = show,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
) {
|
||||
show = show,
|
||||
image = image,
|
||||
isLoading = isLoading,
|
||||
) {
|
||||
|
||||
data class Spoilers(
|
||||
val isSpoilerHidden: Boolean,
|
||||
@ -51,10 +51,10 @@ sealed class CollectionListItem(
|
||||
val genres: List<Genre>,
|
||||
val upcoming: UpcomingFilter,
|
||||
) : CollectionListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
|
||||
fun hasActiveFilters() = upcoming.isActive() || networks.isNotEmpty() || genres.isNotEmpty()
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_my_shows.myshows.filters
|
||||
|
@ -27,8 +27,8 @@ class MyShowsAdapter(
|
||||
private val missingTranslationListener: (ListItem) -> Unit,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseAdapter<MyShowsItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_HEADER = 1
|
||||
|
@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application android:theme="@style/AppTheme" />
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_people.details
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="64dp"
|
||||
android:height="64dp"
|
||||
android:viewportWidth="64"
|
||||
android:viewportHeight="64">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="64dp"
|
||||
android:height="64dp"
|
||||
android:viewportWidth="64"
|
||||
android:viewportHeight="64"
|
||||
>
|
||||
<path
|
||||
android:pathData="M50.9453,0.8906C50.7188,0.8984 50.4961,0.9883 50.3203,1.1602L45.3711,5.8008C38.7383,2.0195 31.0391,1.0078 23.6523,2.9492C16.1523,4.9102 9.8711,9.6797 5.9609,16.3594C2.0508,23.0508 0.9805,30.8594 2.9492,38.3477C4.8594,45.668 9.4609,51.8281 15.8906,55.75L12.7188,61.5508C12.4922,61.9805 12.6016,62.5195 12.9883,62.8203C13.1719,62.9609 13.3789,63.0313 13.5977,63.0313C13.8477,63.0313 14.0898,62.9414 14.2813,62.7695L19.7383,57.7383C23.3086,59.2383 27.1094,60.0117 30.9492,60.0117C33.418,60.0117 35.8984,59.6914 38.3477,59.0508C45.8477,57.0898 52.1289,52.3203 56.0391,45.6406C59.9492,38.9492 61.0195,31.1406 59.0508,23.6523C57.4219,17.4297 53.8594,12.0391 48.8789,8.1719L51.8906,2.3398C52.1094,1.9102 51.9883,1.3789 51.5977,1.0898C51.4063,0.9453 51.1719,0.8789 50.9453,0.8906ZM31.0508,3.9922C35.4805,3.9922 39.8594,5.0898 43.8398,7.2422L21.4023,28.2695C21.1016,28.5508 21,28.9883 21.1523,29.3711C21.3008,29.75 21.6719,30 22.0781,30L25.8281,30L16.2813,42.3906C16.0508,42.6914 16.0117,43.0977 16.1719,43.4375C16.3398,43.7813 16.6914,44 17.0703,44L22.3203,44L19.75,48.707C15.2578,45.8555 12.043,41.4922 10.6875,36.3281C9.2656,30.8984 10.0391,25.2461 12.8711,20.4023C15.7031,15.5586 20.25,12.1094 25.6758,10.6875C27.2539,10.2734 28.875,10.043 30.4883,10C31.0391,9.9883 31.4766,9.5273 31.4648,8.9766C31.4492,8.4258 30.9844,7.9648 30.4375,8C28.668,8.0469 26.8945,8.3008 25.168,8.75C19.2266,10.3086 14.2461,14.0898 11.1445,19.3906C8.043,24.6953 7.1953,30.8906 8.75,36.832C10.2461,42.5313 13.8086,47.3477 18.7852,50.4688L16.8594,53.9883C13.9688,52.2305 11.4805,49.9688 9.4805,47.3281C7.3594,44.5391 5.8008,41.3398 4.8828,37.8477C3.0508,30.8711 4.0508,23.5977 7.6875,17.3711C11.3281,11.1484 17.1797,6.7109 24.1523,4.8828C26.4414,4.2813 28.75,3.9922 31.0508,3.9922ZM47.4609,6.5781L47.25,6.9922L46.3281,8.7813L44.2383,12.8281L43.6602,13.9492L39.2305,22.5391C39.0703,22.8477 39.0781,23.2188 39.2617,23.5195C39.4414,23.8203 39.7695,24 40.1211,24L44.9102,24.0117L35.5977,34.3789C35.3398,34.6719 35.2695,35.0898 35.4375,35.4492C35.5977,35.8086 35.9492,36.0391 36.3477,36.0391L40.3398,36.0391L19.3711,55.3711L17.7891,56.8203L17.4023,57.1797L17.6406,56.7383L18.5977,54.9883L24.8906,43.4805C25.0625,43.1719 25.0508,42.7891 24.8711,42.4883C24.6875,42.1914 24.3594,42 24.0117,42L19.0977,42L28.6602,29.6094C28.8906,29.3086 28.9297,28.9023 28.7617,28.5625C28.6016,28.2188 28.25,28 27.8711,28L24.6094,28L45.6211,8.3125L47.1211,6.8984ZM34.9688,8.3398C34.4219,8.2461 33.9102,8.6094 33.8125,9.1523C33.7148,9.6953 34.082,10.2148 34.625,10.3125C35.3594,10.4414 36.0977,10.6094 36.8164,10.8164C36.9102,10.8438 37.0039,10.8594 37.0938,10.8594C37.5313,10.8594 37.9258,10.5742 38.0547,10.1367C38.207,9.6055 37.9023,9.0508 37.3711,8.8984C36.582,8.668 35.7773,8.4805 34.9688,8.3398ZM47.9492,9.9805C52.4297,13.582 55.6406,18.5 57.1211,24.1523C58.9492,31.1289 57.9492,38.4023 54.3125,44.6289C50.6719,50.8516 44.8203,55.2891 37.8477,57.1211C32.3203,58.5586 26.6094,58.2422 21.3789,56.2305L43.5781,35.7813C43.8789,35.5 43.9805,35.0586 43.8281,34.6797C43.6914,34.3008 43.3203,34.0391 42.9023,34.0391L38.5898,34.0391L47.8906,23.6797C48.1523,23.3789 48.2188,22.9609 48.0625,22.5977C47.9023,22.2383 47.5391,22.0117 47.1523,22.0117L41.7617,22L45.1289,15.4688C52.3789,22.0625 54.1406,33.0195 49.1406,41.5781C48.8594,42.0586 49.0195,42.668 49.5,42.9492C49.6602,43.0391 49.8281,43.0781 50,43.0781C50.3516,43.0781 50.6797,42.9102 50.8711,42.5898C56.4375,33.0508 54.3516,20.7891 46.0703,13.6289ZM44.8477,45.3477C44.5898,45.3477 44.3359,45.4414 44.1406,45.6367C43.7461,46.0234 43.7422,46.6563 44.1289,47.0508L45.5352,48.4727C45.7305,48.6719 45.9883,48.7695 46.2461,48.7695C46.5,48.7695 46.7539,48.6719 46.9492,48.4805C47.3438,48.0938 47.3438,47.4609 46.957,47.0664L45.5508,45.6445C45.3594,45.4492 45.1055,45.3477 44.8477,45.3477ZM40.668,48.4297C40.5391,48.4453 40.4102,48.4844 40.2891,48.5547C39.8086,48.8281 39.6445,49.4375 39.918,49.918L40.9063,51.6563C41.0898,51.9805 41.4258,52.1602 41.7773,52.1602C41.9453,52.1602 42.1133,52.1172 42.2695,52.0313C42.75,51.7578 42.918,51.1445 42.6445,50.668L41.6563,48.9258C41.4492,48.5664 41.0547,48.3828 40.668,48.4297ZM36.2148,50.3555C36.0859,50.3359 35.9531,50.3438 35.8164,50.3789C35.2852,50.5195 34.9648,51.0664 35.1055,51.5977L35.6094,53.5352C35.7305,53.9844 36.1328,54.2813 36.5781,54.2813C36.6641,54.2813 36.7461,54.2695 36.832,54.25C37.3672,54.1094 37.6875,53.5625 37.5469,53.0273L37.0391,51.0938C36.9336,50.6914 36.6016,50.4102 36.2148,50.3555ZM31.0195,50.9844C30.4727,50.9844 30.0234,51.4258 30.0195,51.9805L30.0117,53.9805C30.0078,54.5313 30.4531,54.9805 31.0039,54.9844L31.0117,54.9844C31.5625,54.9844 32.0078,54.5391 32.0117,53.9883L32.0195,51.9883C32.0234,51.4375 31.5781,50.9844 31.0273,50.9844Z"
|
||||
android:fillColor="#000000"/>
|
||||
android:pathData="M50.9453,0.8906C50.7188,0.8984 50.4961,0.9883 50.3203,1.1602L45.3711,5.8008C38.7383,2.0195 31.0391,1.0078 23.6523,2.9492C16.1523,4.9102 9.8711,9.6797 5.9609,16.3594C2.0508,23.0508 0.9805,30.8594 2.9492,38.3477C4.8594,45.668 9.4609,51.8281 15.8906,55.75L12.7188,61.5508C12.4922,61.9805 12.6016,62.5195 12.9883,62.8203C13.1719,62.9609 13.3789,63.0313 13.5977,63.0313C13.8477,63.0313 14.0898,62.9414 14.2813,62.7695L19.7383,57.7383C23.3086,59.2383 27.1094,60.0117 30.9492,60.0117C33.418,60.0117 35.8984,59.6914 38.3477,59.0508C45.8477,57.0898 52.1289,52.3203 56.0391,45.6406C59.9492,38.9492 61.0195,31.1406 59.0508,23.6523C57.4219,17.4297 53.8594,12.0391 48.8789,8.1719L51.8906,2.3398C52.1094,1.9102 51.9883,1.3789 51.5977,1.0898C51.4063,0.9453 51.1719,0.8789 50.9453,0.8906ZM31.0508,3.9922C35.4805,3.9922 39.8594,5.0898 43.8398,7.2422L21.4023,28.2695C21.1016,28.5508 21,28.9883 21.1523,29.3711C21.3008,29.75 21.6719,30 22.0781,30L25.8281,30L16.2813,42.3906C16.0508,42.6914 16.0117,43.0977 16.1719,43.4375C16.3398,43.7813 16.6914,44 17.0703,44L22.3203,44L19.75,48.707C15.2578,45.8555 12.043,41.4922 10.6875,36.3281C9.2656,30.8984 10.0391,25.2461 12.8711,20.4023C15.7031,15.5586 20.25,12.1094 25.6758,10.6875C27.2539,10.2734 28.875,10.043 30.4883,10C31.0391,9.9883 31.4766,9.5273 31.4648,8.9766C31.4492,8.4258 30.9844,7.9648 30.4375,8C28.668,8.0469 26.8945,8.3008 25.168,8.75C19.2266,10.3086 14.2461,14.0898 11.1445,19.3906C8.043,24.6953 7.1953,30.8906 8.75,36.832C10.2461,42.5313 13.8086,47.3477 18.7852,50.4688L16.8594,53.9883C13.9688,52.2305 11.4805,49.9688 9.4805,47.3281C7.3594,44.5391 5.8008,41.3398 4.8828,37.8477C3.0508,30.8711 4.0508,23.5977 7.6875,17.3711C11.3281,11.1484 17.1797,6.7109 24.1523,4.8828C26.4414,4.2813 28.75,3.9922 31.0508,3.9922ZM47.4609,6.5781L47.25,6.9922L46.3281,8.7813L44.2383,12.8281L43.6602,13.9492L39.2305,22.5391C39.0703,22.8477 39.0781,23.2188 39.2617,23.5195C39.4414,23.8203 39.7695,24 40.1211,24L44.9102,24.0117L35.5977,34.3789C35.3398,34.6719 35.2695,35.0898 35.4375,35.4492C35.5977,35.8086 35.9492,36.0391 36.3477,36.0391L40.3398,36.0391L19.3711,55.3711L17.7891,56.8203L17.4023,57.1797L17.6406,56.7383L18.5977,54.9883L24.8906,43.4805C25.0625,43.1719 25.0508,42.7891 24.8711,42.4883C24.6875,42.1914 24.3594,42 24.0117,42L19.0977,42L28.6602,29.6094C28.8906,29.3086 28.9297,28.9023 28.7617,28.5625C28.6016,28.2188 28.25,28 27.8711,28L24.6094,28L45.6211,8.3125L47.1211,6.8984ZM34.9688,8.3398C34.4219,8.2461 33.9102,8.6094 33.8125,9.1523C33.7148,9.6953 34.082,10.2148 34.625,10.3125C35.3594,10.4414 36.0977,10.6094 36.8164,10.8164C36.9102,10.8438 37.0039,10.8594 37.0938,10.8594C37.5313,10.8594 37.9258,10.5742 38.0547,10.1367C38.207,9.6055 37.9023,9.0508 37.3711,8.8984C36.582,8.668 35.7773,8.4805 34.9688,8.3398ZM47.9492,9.9805C52.4297,13.582 55.6406,18.5 57.1211,24.1523C58.9492,31.1289 57.9492,38.4023 54.3125,44.6289C50.6719,50.8516 44.8203,55.2891 37.8477,57.1211C32.3203,58.5586 26.6094,58.2422 21.3789,56.2305L43.5781,35.7813C43.8789,35.5 43.9805,35.0586 43.8281,34.6797C43.6914,34.3008 43.3203,34.0391 42.9023,34.0391L38.5898,34.0391L47.8906,23.6797C48.1523,23.3789 48.2188,22.9609 48.0625,22.5977C47.9023,22.2383 47.5391,22.0117 47.1523,22.0117L41.7617,22L45.1289,15.4688C52.3789,22.0625 54.1406,33.0195 49.1406,41.5781C48.8594,42.0586 49.0195,42.668 49.5,42.9492C49.6602,43.0391 49.8281,43.0781 50,43.0781C50.3516,43.0781 50.6797,42.9102 50.8711,42.5898C56.4375,33.0508 54.3516,20.7891 46.0703,13.6289ZM44.8477,45.3477C44.5898,45.3477 44.3359,45.4414 44.1406,45.6367C43.7461,46.0234 43.7422,46.6563 44.1289,47.0508L45.5352,48.4727C45.7305,48.6719 45.9883,48.7695 46.2461,48.7695C46.5,48.7695 46.7539,48.6719 46.9492,48.4805C47.3438,48.0938 47.3438,47.4609 46.957,47.0664L45.5508,45.6445C45.3594,45.4492 45.1055,45.3477 44.8477,45.3477ZM40.668,48.4297C40.5391,48.4453 40.4102,48.4844 40.2891,48.5547C39.8086,48.8281 39.6445,49.4375 39.918,49.918L40.9063,51.6563C41.0898,51.9805 41.4258,52.1602 41.7773,52.1602C41.9453,52.1602 42.1133,52.1172 42.2695,52.0313C42.75,51.7578 42.918,51.1445 42.6445,50.668L41.6563,48.9258C41.4492,48.5664 41.0547,48.3828 40.668,48.4297ZM36.2148,50.3555C36.0859,50.3359 35.9531,50.3438 35.8164,50.3789C35.2852,50.5195 34.9648,51.0664 35.1055,51.5977L35.6094,53.5352C35.7305,53.9844 36.1328,54.2813 36.5781,54.2813C36.6641,54.2813 36.7461,54.2695 36.832,54.25C37.3672,54.1094 37.6875,53.5625 37.5469,53.0273L37.0391,51.0938C36.9336,50.6914 36.6016,50.4102 36.2148,50.3555ZM31.0195,50.9844C30.4727,50.9844 30.0234,51.4258 30.0195,51.9805L30.0117,53.9805C30.0078,54.5313 30.4531,54.9805 31.0039,54.9844L31.0117,54.9844C31.5625,54.9844 32.0078,54.5391 32.0117,53.9883L32.0195,51.9883C32.0234,51.4375 31.5781,50.9844 31.0273,50.9844Z"
|
||||
android:fillColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50"
|
||||
>
|
||||
<path
|
||||
android:pathData="M38.5,5C34.9219,5 32,7.9219 32,11.5C32,13.3945 32.7305,14.8906 33.6758,15.9258C34.6211,16.9648 35.7461,17.582 36.6328,17.9297C38.6836,18.7383 40.1563,19.3711 41.0156,19.9063C41.0703,19.9414 41.0977,19.9688 41.1445,20L40.1719,20C39.9492,20 39.7344,20.0742 39.5625,20.207C37.5703,21.7344 33.4922,22.9414 28.7813,22.9883C27.5781,21.0977 25.9961,19.5117 24.2188,18.668C24.6992,18.0703 25,17.3203 25,16.5C25,14.5781 23.4219,13 21.5,13C19.5781,13 18,14.5781 18,16.5C18,17.3203 18.3008,18.0664 18.7813,18.668C16.8828,19.5625 15.2148,21.3008 13.9844,23.3594C13.1289,23.6641 12.3594,24.1563 11.7344,24.793C11.7148,24.7031 11.7148,24.6211 11.6914,24.5352C11.457,23.5 11.0664,22.418 10.3242,21.5313C9.582,20.6445 8.418,20 7,20C5.2305,20 4.0625,21.0664 3.5547,22.0313C3.043,23 3,23.9453 3,23.9453L3,24C3,25.707 3.5703,27.0977 4.4141,28.1797C5.2617,29.2617 6.3477,30.0547 7.4219,30.8164C8.7422,31.7461 9.3906,32.6055 9.5547,32.9219C9.4336,32.957 9.3906,33 9,33C8.6406,32.9961 8.3047,33.1836 8.1211,33.4961C7.9414,33.8086 7.9414,34.1914 8.1211,34.5039C8.3047,34.8164 8.6406,35.0039 9,35C9.8164,35 10.4883,34.9102 11.0625,34.4688C11.4453,34.1758 11.6406,33.6836 11.6836,33.2031C12.2148,33.8398 12.8164,34.3906 13.4219,34.8164C13.4258,34.8203 13.4258,34.8203 13.4258,34.8164C15.1055,36 17.1328,36.6563 19.6211,36.875C19.2969,37.2461 19.0898,37.707 19.0313,38.2188C18.0898,38.3789 17.2227,38.6289 16.4844,38.9688C15.8086,39.2813 15.2266,39.6641 14.7734,40.1563C14.3203,40.6484 14,41.293 14,42L14,43L29,43L29,42C29,41.293 28.6797,40.6484 28.2266,40.1563C27.7734,39.6641 27.1914,39.2813 26.5156,38.9688C25.7773,38.6289 24.9102,38.3789 23.9688,38.2188C23.9102,37.7148 23.707,37.2578 23.3906,36.8906C28.4922,36.3711 32.082,33.8242 36.6641,29.7461C39.9922,26.7852 43.5938,23.0195 46.3633,21.9336C46.8125,21.7578 47.0742,21.2852 46.9844,20.8125C46.8945,20.3398 46.4805,20 46,20L45.9063,20C45.625,18.2695 44.5898,16.2578 42.1367,15.0703C41.9805,14.9922 41.8438,14.9219 41.6875,14.8438C42.6094,14.6758 43.457,14.2813 44.0352,13.5938L44.0703,13.5508L44.1016,13.5039C44.5742,12.7969 44.8633,11.9766 44.9609,11.1211C45,10.8242 45,10.7266 45,10.5C45,7.4727 42.5273,5 39.5,5ZM38.5,7L39.5,7C41.4531,7 43,8.5469 43,10.5C43,10.4648 42.9531,11.0391 42.9805,10.8594L42.9805,10.875L42.9766,10.8906C42.918,11.4219 42.7266,11.9063 42.4648,12.3242C42.1094,12.7227 41.5938,13 41,13C40.3398,13 39.7734,12.6875 39.4023,12.2031C39.1523,11.8594 39,11.4531 39,11L39,10L38,10C36.9063,10 36,10.9063 36,12C36,12.1367 36.0156,12.2266 36.0273,12.3008C36.1133,13.1797 36.6016,13.8984 37.1914,14.4531C37.7852,15.0078 38.5039,15.4492 39.2695,15.8711L39.2734,15.8711C39.9141,16.2148 40.5938,16.5391 41.2578,16.8672L41.2617,16.8711L41.2656,16.8711C42.9922,17.707 43.5313,18.8906 43.7539,20L43.6563,20C43.5664,19.7969 43.5742,19.5547 43.4375,19.3789C43.0898,18.918 42.6289,18.5547 42.0781,18.207C40.9688,17.5195 39.4414,16.8867 37.3672,16.0703C36.6992,15.8086 35.8242,15.3164 35.1563,14.582C34.4883,13.8477 34,12.8984 34,11.5C34,9 36,7 38.5,7ZM21.5,15C22.3398,15 23,15.6602 23,16.5C23,17.3398 22.3398,18 21.5,18C20.6602,18 20,17.3398 20,16.5C20,15.6602 20.6602,15 21.5,15ZM21.5,20C22.9375,20 24.6211,21.2891 26.0742,23L16.9375,23C18.3906,21.2969 20.0625,20 21.5,20ZM7,22C7.8711,22 8.3555,22.2969 8.7891,22.8164C9.2266,23.3359 9.5508,24.1328 9.7422,24.9805C10.1289,26.668 10.0039,28.4375 10.0039,28.4375C9.9922,28.5352 9.9961,28.6406 10.0156,28.7383C10.0117,28.8281 10,28.9141 10,29C10,29.5156 10.0898,30.0156 10.2266,30.5C9.7578,30.0664 9.2188,29.6367 8.5781,29.1836C7.5273,28.4453 6.6133,27.7383 5.9922,26.9453C5.375,26.1602 5.0117,25.3008 5.0078,24.0313C5.0078,24.0078 5.0469,23.4883 5.3203,22.9688C5.6016,22.4336 5.9375,22 7,22ZM40.4258,22L42.3789,22C39.9336,23.8125 37.5664,26.2695 35.3359,28.2539C30.4648,32.5898 27.2969,34.7969 22.0664,34.9844C22.0664,34.9805 22.0664,34.9805 22.0625,34.9844C21.8516,34.9922 21.668,35 21.5,35C21.5469,35 21.5273,35 21.4414,35C21.4414,34.9961 21.4414,34.9961 21.4375,35C21.418,34.9961 21.3984,34.9961 21.375,34.9961C18.3203,34.9688 16.2578,34.3633 14.5781,33.1836C13.3477,32.3164 12,30.3867 12,29C12,27.2813 13.0742,25.832 14.5898,25.2656L14.9023,25.1758C15.0781,25.125 15.2461,25.0898 15.4102,25.0586C15.6055,25.0313 15.7969,25 16,25L29.9844,25L29.9648,24.957C34.2969,24.7617 38.0234,23.6953 40.4258,22ZM21.5,40C21.9258,40 22.3398,40.0234 22.7422,40.0625C23.9063,40.1758 24.9336,40.4453 25.6758,40.7852C25.8242,40.8555 25.8711,40.9297 25.9961,41L17.0039,41C17.1289,40.9297 17.1758,40.8555 17.3242,40.7852C18.0664,40.4453 19.0938,40.1758 20.2578,40.0625C20.6602,40.0234 21.0742,40 21.5,40Z"
|
||||
android:fillColor="#000000"/>
|
||||
android:pathData="M38.5,5C34.9219,5 32,7.9219 32,11.5C32,13.3945 32.7305,14.8906 33.6758,15.9258C34.6211,16.9648 35.7461,17.582 36.6328,17.9297C38.6836,18.7383 40.1563,19.3711 41.0156,19.9063C41.0703,19.9414 41.0977,19.9688 41.1445,20L40.1719,20C39.9492,20 39.7344,20.0742 39.5625,20.207C37.5703,21.7344 33.4922,22.9414 28.7813,22.9883C27.5781,21.0977 25.9961,19.5117 24.2188,18.668C24.6992,18.0703 25,17.3203 25,16.5C25,14.5781 23.4219,13 21.5,13C19.5781,13 18,14.5781 18,16.5C18,17.3203 18.3008,18.0664 18.7813,18.668C16.8828,19.5625 15.2148,21.3008 13.9844,23.3594C13.1289,23.6641 12.3594,24.1563 11.7344,24.793C11.7148,24.7031 11.7148,24.6211 11.6914,24.5352C11.457,23.5 11.0664,22.418 10.3242,21.5313C9.582,20.6445 8.418,20 7,20C5.2305,20 4.0625,21.0664 3.5547,22.0313C3.043,23 3,23.9453 3,23.9453L3,24C3,25.707 3.5703,27.0977 4.4141,28.1797C5.2617,29.2617 6.3477,30.0547 7.4219,30.8164C8.7422,31.7461 9.3906,32.6055 9.5547,32.9219C9.4336,32.957 9.3906,33 9,33C8.6406,32.9961 8.3047,33.1836 8.1211,33.4961C7.9414,33.8086 7.9414,34.1914 8.1211,34.5039C8.3047,34.8164 8.6406,35.0039 9,35C9.8164,35 10.4883,34.9102 11.0625,34.4688C11.4453,34.1758 11.6406,33.6836 11.6836,33.2031C12.2148,33.8398 12.8164,34.3906 13.4219,34.8164C13.4258,34.8203 13.4258,34.8203 13.4258,34.8164C15.1055,36 17.1328,36.6563 19.6211,36.875C19.2969,37.2461 19.0898,37.707 19.0313,38.2188C18.0898,38.3789 17.2227,38.6289 16.4844,38.9688C15.8086,39.2813 15.2266,39.6641 14.7734,40.1563C14.3203,40.6484 14,41.293 14,42L14,43L29,43L29,42C29,41.293 28.6797,40.6484 28.2266,40.1563C27.7734,39.6641 27.1914,39.2813 26.5156,38.9688C25.7773,38.6289 24.9102,38.3789 23.9688,38.2188C23.9102,37.7148 23.707,37.2578 23.3906,36.8906C28.4922,36.3711 32.082,33.8242 36.6641,29.7461C39.9922,26.7852 43.5938,23.0195 46.3633,21.9336C46.8125,21.7578 47.0742,21.2852 46.9844,20.8125C46.8945,20.3398 46.4805,20 46,20L45.9063,20C45.625,18.2695 44.5898,16.2578 42.1367,15.0703C41.9805,14.9922 41.8438,14.9219 41.6875,14.8438C42.6094,14.6758 43.457,14.2813 44.0352,13.5938L44.0703,13.5508L44.1016,13.5039C44.5742,12.7969 44.8633,11.9766 44.9609,11.1211C45,10.8242 45,10.7266 45,10.5C45,7.4727 42.5273,5 39.5,5ZM38.5,7L39.5,7C41.4531,7 43,8.5469 43,10.5C43,10.4648 42.9531,11.0391 42.9805,10.8594L42.9805,10.875L42.9766,10.8906C42.918,11.4219 42.7266,11.9063 42.4648,12.3242C42.1094,12.7227 41.5938,13 41,13C40.3398,13 39.7734,12.6875 39.4023,12.2031C39.1523,11.8594 39,11.4531 39,11L39,10L38,10C36.9063,10 36,10.9063 36,12C36,12.1367 36.0156,12.2266 36.0273,12.3008C36.1133,13.1797 36.6016,13.8984 37.1914,14.4531C37.7852,15.0078 38.5039,15.4492 39.2695,15.8711L39.2734,15.8711C39.9141,16.2148 40.5938,16.5391 41.2578,16.8672L41.2617,16.8711L41.2656,16.8711C42.9922,17.707 43.5313,18.8906 43.7539,20L43.6563,20C43.5664,19.7969 43.5742,19.5547 43.4375,19.3789C43.0898,18.918 42.6289,18.5547 42.0781,18.207C40.9688,17.5195 39.4414,16.8867 37.3672,16.0703C36.6992,15.8086 35.8242,15.3164 35.1563,14.582C34.4883,13.8477 34,12.8984 34,11.5C34,9 36,7 38.5,7ZM21.5,15C22.3398,15 23,15.6602 23,16.5C23,17.3398 22.3398,18 21.5,18C20.6602,18 20,17.3398 20,16.5C20,15.6602 20.6602,15 21.5,15ZM21.5,20C22.9375,20 24.6211,21.2891 26.0742,23L16.9375,23C18.3906,21.2969 20.0625,20 21.5,20ZM7,22C7.8711,22 8.3555,22.2969 8.7891,22.8164C9.2266,23.3359 9.5508,24.1328 9.7422,24.9805C10.1289,26.668 10.0039,28.4375 10.0039,28.4375C9.9922,28.5352 9.9961,28.6406 10.0156,28.7383C10.0117,28.8281 10,28.9141 10,29C10,29.5156 10.0898,30.0156 10.2266,30.5C9.7578,30.0664 9.2188,29.6367 8.5781,29.1836C7.5273,28.4453 6.6133,27.7383 5.9922,26.9453C5.375,26.1602 5.0117,25.3008 5.0078,24.0313C5.0078,24.0078 5.0469,23.4883 5.3203,22.9688C5.6016,22.4336 5.9375,22 7,22ZM40.4258,22L42.3789,22C39.9336,23.8125 37.5664,26.2695 35.3359,28.2539C30.4648,32.5898 27.2969,34.7969 22.0664,34.9844C22.0664,34.9805 22.0664,34.9805 22.0625,34.9844C21.8516,34.9922 21.668,35 21.5,35C21.5469,35 21.5273,35 21.4414,35C21.4414,34.9961 21.4414,34.9961 21.4375,35C21.418,34.9961 21.3984,34.9961 21.375,34.9961C18.3203,34.9688 16.2578,34.3633 14.5781,33.1836C13.3477,32.3164 12,30.3867 12,29C12,27.2813 13.0742,25.832 14.5898,25.2656L14.9023,25.1758C15.0781,25.125 15.2461,25.0898 15.4102,25.0586C15.6055,25.0313 15.7969,25 16,25L29.9844,25L29.9648,24.957C34.2969,24.7617 38.0234,23.6953 40.4258,22ZM21.5,40C21.9258,40 22.3398,40.0234 22.7422,40.0625C23.9063,40.1758 24.9336,40.4453 25.6758,40.7852C25.8242,40.8555 25.8711,40.9297 25.9961,41L17.0039,41C17.1289,40.9297 17.1758,40.8555 17.3242,40.7852C18.0664,40.4453 19.0938,40.1758 20.2578,40.0625C20.6602,40.0234 21.0742,40 21.5,40Z"
|
||||
android:fillColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50"
|
||||
>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M25,3C20.391,3 17.313,5.781 15.512,8.438C13.848,10.891 13.219,13.121 13.121,13.488C12.809,13.77 12,14.566 12,16L12,16.609C10.223,17.523 9,19.375 9,21.5C9,23.047 9.648,24.445 10.688,25.449C10.262,26.027 10,26.734 10,27.5L10,28.5L10.203,28.5C10.277,28.73 10.375,28.945 10.488,29.156C10.398,29.254 10.32,29.332 10.223,29.469C9.871,29.938 9.441,30.652 9.063,31.645C9.078,31.609 8.945,31.855 8.758,32.125C8.566,32.402 8.313,32.742 8.063,33.129C7.559,33.906 7,34.848 7,36C7,36.148 7.035,36.297 7.098,36.434C7.098,36.434 7.609,37.445 8.836,38.313C9.395,38.715 10.125,39.098 11.027,39.402C11.047,39.539 11.055,39.668 11.086,39.813C11.289,40.754 11.973,41.852 13.176,42.578C13.363,42.938 13.785,43.844 14.777,44.598C15.117,44.859 15.527,45.09 16,45.297L16,46C15.996,46.359 16.184,46.695 16.496,46.879C16.809,47.059 17.191,47.059 17.504,46.879C17.816,46.695 18.004,46.359 18,46L18,45.848C18.598,45.941 19.258,46 20,46C23.785,46 25.969,44.254 26.988,42.504C27.957,40.844 27.988,39.277 27.988,39.109C27.992,39.09 28.156,37.832 27.672,36.25C27.184,34.652 26.016,32.656 23.516,31.145C19.926,28.969 14.711,29 14.711,29L13.5,29C12.672,29 12,28.328 12,27.5C12,26.672 12.672,26 13.5,26L18.035,26C19.195,27.801 21.211,29 23.5,29C27.078,29 30,26.078 30,22.5C30,18.922 27.078,16 23.5,16C21.641,16 19.961,16.793 18.773,18.059C17.762,16.805 16.223,16 14.5,16C14.332,16 14.164,16.012 14,16.027L14,16C14,15.469 14.656,14.75 14.656,14.75C14.809,14.621 14.918,14.445 14.969,14.25C14.969,14.25 15.578,11.902 17.168,9.563C18.754,7.223 21.176,5.004 24.996,5C24.996,5 28.344,5.031 31.633,6.336C33.277,6.984 34.879,7.945 36.051,9.32C37.223,10.699 38,12.484 38,15C38,16.605 37.992,18.238 37.516,20.145C37.352,20.043 37.164,19.996 36.969,20C36.629,20.012 36.316,20.195 36.141,20.484L33.141,25.484C32.945,25.793 32.93,26.184 33.102,26.504C33.277,26.828 33.613,27.027 33.977,27.031C34.344,27.031 34.68,26.832 34.859,26.516L36,24.609L36,27C36,27.449 36.301,27.844 36.734,27.961C37.168,28.082 37.625,27.898 37.859,27.516L39,25.609L39,28C38.996,28.359 39.184,28.695 39.496,28.879C39.809,29.059 40.191,29.059 40.504,28.879C40.816,28.695 41.004,28.359 41,28L41,22C41,21.59 40.75,21.223 40.371,21.074C39.992,20.922 39.559,21.016 39.277,21.313C39.996,18.852 40,16.773 40,15C40,12.055 39.027,9.734 37.574,8.023C36.121,6.316 34.223,5.207 32.367,4.477C28.656,3.008 25.004,3 25.004,3C25.004,3 25,3 25,3ZM14.5,18C15.836,18 16.988,18.746 17.578,19.836C17.211,20.648 17,21.551 17,22.5C17,23.016 17.07,23.516 17.184,24L13.5,24C13.082,24 12.684,24.086 12.313,24.223C11.516,23.586 11,22.609 11,21.5C11,19.555 12.555,18 14.5,18ZM23.5,18C25.996,18 28,20.004 28,22.5C28,24.996 25.996,27 23.5,27C21.004,27 19,24.996 19,22.5C19,20.004 21.004,18 23.5,18ZM14,21C13.449,21 13,21.449 13,22C13,22.551 13.449,23 14,23C14.551,23 15,22.551 15,22C15,21.449 14.551,21 14,21ZM25,22C24.449,22 24,22.449 24,23C24,23.551 24.449,24 25,24C25.551,24 26,23.551 26,23C26,22.449 25.551,22 25,22ZM35.895,29C34.906,29 34.148,29.344 33.684,29.727C33.215,30.109 32.984,30.594 32.984,30.594C32.758,31.098 32.984,31.688 33.488,31.914C33.992,32.141 34.586,31.914 34.813,31.406C34.813,31.406 34.801,31.391 34.949,31.273C35.094,31.156 35.336,31 35.895,31C36.469,31 36.605,31.109 36.734,31.281C36.863,31.449 37,31.855 37,32.531C37,32.488 36.859,32.988 36.465,33.348C36.07,33.711 35.508,34 34.75,34C34.477,34 34.215,34.109 34.023,34.309C33.836,34.504 33.738,34.77 33.75,35.043C33.75,35.043 34.031,42.547 35.035,46.262C35.121,46.617 35.391,46.895 35.742,46.992C36.094,47.086 36.469,46.984 36.723,46.727C36.977,46.465 37.07,46.086 36.965,45.738C36.207,42.934 35.871,37.059 35.805,35.797C36.598,35.602 37.313,35.285 37.813,34.824C38.535,34.164 39,33.43 39,32.531C39,31.625 38.859,30.766 38.328,30.066C37.793,29.367 36.875,29 35.895,29ZM11.891,30.59C12.367,30.848 12.914,31 13.5,31L14.688,31C14.688,31 19.68,31.156 22.484,32.855C24.563,34.117 25.391,35.621 25.762,36.832C26.129,38.043 26.012,38.863 26.012,38.863L26,38.934L26,39C26,39 25.992,40.246 25.262,41.496C24.531,42.746 23.215,44 20,44C17.777,44 16.637,43.504 15.988,43.012C15.34,42.516 15.156,42.035 14.879,41.527L14.715,41.219L14.391,41.078C13.699,40.785 13.367,40.359 13.184,39.883C13.746,39.953 14.344,40 15,40C17.84,40 19.664,39.746 20.816,39.473C21.391,39.336 21.801,39.195 22.078,39.078C22.355,38.961 22.57,38.82 22.57,38.82C22.883,38.625 23.059,38.273 23.035,37.906C23.008,37.539 22.785,37.215 22.449,37.063C22.113,36.91 21.723,36.957 21.43,37.18C21.43,37.18 21.465,37.164 21.297,37.234C21.133,37.305 20.836,37.414 20.355,37.527C19.398,37.754 17.723,38 15,38C12.398,38 10.879,37.316 9.992,36.688C9.266,36.168 9.172,35.902 9.098,35.766C9.164,35.348 9.363,34.797 9.738,34.223C9.953,33.891 10.188,33.57 10.395,33.273C10.602,32.977 10.789,32.738 10.938,32.355C11.246,31.535 11.586,30.988 11.828,30.656C11.875,30.602 11.855,30.633 11.891,30.59Z"/>
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M25,3C20.391,3 17.313,5.781 15.512,8.438C13.848,10.891 13.219,13.121 13.121,13.488C12.809,13.77 12,14.566 12,16L12,16.609C10.223,17.523 9,19.375 9,21.5C9,23.047 9.648,24.445 10.688,25.449C10.262,26.027 10,26.734 10,27.5L10,28.5L10.203,28.5C10.277,28.73 10.375,28.945 10.488,29.156C10.398,29.254 10.32,29.332 10.223,29.469C9.871,29.938 9.441,30.652 9.063,31.645C9.078,31.609 8.945,31.855 8.758,32.125C8.566,32.402 8.313,32.742 8.063,33.129C7.559,33.906 7,34.848 7,36C7,36.148 7.035,36.297 7.098,36.434C7.098,36.434 7.609,37.445 8.836,38.313C9.395,38.715 10.125,39.098 11.027,39.402C11.047,39.539 11.055,39.668 11.086,39.813C11.289,40.754 11.973,41.852 13.176,42.578C13.363,42.938 13.785,43.844 14.777,44.598C15.117,44.859 15.527,45.09 16,45.297L16,46C15.996,46.359 16.184,46.695 16.496,46.879C16.809,47.059 17.191,47.059 17.504,46.879C17.816,46.695 18.004,46.359 18,46L18,45.848C18.598,45.941 19.258,46 20,46C23.785,46 25.969,44.254 26.988,42.504C27.957,40.844 27.988,39.277 27.988,39.109C27.992,39.09 28.156,37.832 27.672,36.25C27.184,34.652 26.016,32.656 23.516,31.145C19.926,28.969 14.711,29 14.711,29L13.5,29C12.672,29 12,28.328 12,27.5C12,26.672 12.672,26 13.5,26L18.035,26C19.195,27.801 21.211,29 23.5,29C27.078,29 30,26.078 30,22.5C30,18.922 27.078,16 23.5,16C21.641,16 19.961,16.793 18.773,18.059C17.762,16.805 16.223,16 14.5,16C14.332,16 14.164,16.012 14,16.027L14,16C14,15.469 14.656,14.75 14.656,14.75C14.809,14.621 14.918,14.445 14.969,14.25C14.969,14.25 15.578,11.902 17.168,9.563C18.754,7.223 21.176,5.004 24.996,5C24.996,5 28.344,5.031 31.633,6.336C33.277,6.984 34.879,7.945 36.051,9.32C37.223,10.699 38,12.484 38,15C38,16.605 37.992,18.238 37.516,20.145C37.352,20.043 37.164,19.996 36.969,20C36.629,20.012 36.316,20.195 36.141,20.484L33.141,25.484C32.945,25.793 32.93,26.184 33.102,26.504C33.277,26.828 33.613,27.027 33.977,27.031C34.344,27.031 34.68,26.832 34.859,26.516L36,24.609L36,27C36,27.449 36.301,27.844 36.734,27.961C37.168,28.082 37.625,27.898 37.859,27.516L39,25.609L39,28C38.996,28.359 39.184,28.695 39.496,28.879C39.809,29.059 40.191,29.059 40.504,28.879C40.816,28.695 41.004,28.359 41,28L41,22C41,21.59 40.75,21.223 40.371,21.074C39.992,20.922 39.559,21.016 39.277,21.313C39.996,18.852 40,16.773 40,15C40,12.055 39.027,9.734 37.574,8.023C36.121,6.316 34.223,5.207 32.367,4.477C28.656,3.008 25.004,3 25.004,3C25.004,3 25,3 25,3ZM14.5,18C15.836,18 16.988,18.746 17.578,19.836C17.211,20.648 17,21.551 17,22.5C17,23.016 17.07,23.516 17.184,24L13.5,24C13.082,24 12.684,24.086 12.313,24.223C11.516,23.586 11,22.609 11,21.5C11,19.555 12.555,18 14.5,18ZM23.5,18C25.996,18 28,20.004 28,22.5C28,24.996 25.996,27 23.5,27C21.004,27 19,24.996 19,22.5C19,20.004 21.004,18 23.5,18ZM14,21C13.449,21 13,21.449 13,22C13,22.551 13.449,23 14,23C14.551,23 15,22.551 15,22C15,21.449 14.551,21 14,21ZM25,22C24.449,22 24,22.449 24,23C24,23.551 24.449,24 25,24C25.551,24 26,23.551 26,23C26,22.449 25.551,22 25,22ZM35.895,29C34.906,29 34.148,29.344 33.684,29.727C33.215,30.109 32.984,30.594 32.984,30.594C32.758,31.098 32.984,31.688 33.488,31.914C33.992,32.141 34.586,31.914 34.813,31.406C34.813,31.406 34.801,31.391 34.949,31.273C35.094,31.156 35.336,31 35.895,31C36.469,31 36.605,31.109 36.734,31.281C36.863,31.449 37,31.855 37,32.531C37,32.488 36.859,32.988 36.465,33.348C36.07,33.711 35.508,34 34.75,34C34.477,34 34.215,34.109 34.023,34.309C33.836,34.504 33.738,34.77 33.75,35.043C33.75,35.043 34.031,42.547 35.035,46.262C35.121,46.617 35.391,46.895 35.742,46.992C36.094,47.086 36.469,46.984 36.723,46.727C36.977,46.465 37.07,46.086 36.965,45.738C36.207,42.934 35.871,37.059 35.805,35.797C36.598,35.602 37.313,35.285 37.813,34.824C38.535,34.164 39,33.43 39,32.531C39,31.625 38.859,30.766 38.328,30.066C37.793,29.367 36.875,29 35.895,29ZM11.891,30.59C12.367,30.848 12.914,31 13.5,31L14.688,31C14.688,31 19.68,31.156 22.484,32.855C24.563,34.117 25.391,35.621 25.762,36.832C26.129,38.043 26.012,38.863 26.012,38.863L26,38.934L26,39C26,39 25.992,40.246 25.262,41.496C24.531,42.746 23.215,44 20,44C17.777,44 16.637,43.504 15.988,43.012C15.34,42.516 15.156,42.035 14.879,41.527L14.715,41.219L14.391,41.078C13.699,40.785 13.367,40.359 13.184,39.883C13.746,39.953 14.344,40 15,40C17.84,40 19.664,39.746 20.816,39.473C21.391,39.336 21.801,39.195 22.078,39.078C22.355,38.961 22.57,38.82 22.57,38.82C22.883,38.625 23.059,38.273 23.035,37.906C23.008,37.539 22.785,37.215 22.449,37.063C22.113,36.91 21.723,36.957 21.43,37.18C21.43,37.18 21.465,37.164 21.297,37.234C21.133,37.305 20.836,37.414 20.355,37.527C19.398,37.754 17.723,38 15,38C12.398,38 10.879,37.316 9.992,36.688C9.266,36.168 9.172,35.902 9.098,35.766C9.164,35.348 9.363,34.797 9.738,34.223C9.953,33.891 10.188,33.57 10.395,33.273C10.602,32.977 10.789,32.738 10.938,32.355C11.246,31.535 11.586,30.988 11.828,30.656C11.875,30.602 11.855,30.633 11.891,30.59Z"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50"
|
||||
>
|
||||
<path
|
||||
android:pathData="M8.1563,2C6.4258,2 5.0347,3.4987 5.1641,5.2246L8.002,43.0742A1.0001,1.0001 0,0 0,9 44L21.5,44L24.1992,47.5996A1.0001,1.0001 0,0 0,25.8008 47.5996L28.5,44L41,44A1.0001,1.0001 0,0 0,41.998 43.0742L44.8359,5.2246C44.9652,3.4993 43.5761,2 41.8457,2L8.1563,2zM8.1563,4L41.8457,4C42.4433,4 42.8865,4.4795 42.8418,5.0762L40.748,33L37.1992,33A1.0001,1.0001 0,0 0,36.8477 33L25.127,33A1.0001,1.0001 0,0 0,25.0977 32.9961A1.0001,1.0001 0,0 0,25.0313 32.9922A1.0001,1.0001 0,0 0,24.9727 32.9922A1.0001,1.0001 0,0 0,24.8613 33L13.125,33A1.0001,1.0001 0,0 0,12.998 32.9902A1.0001,1.0001 0,0 0,12.8555 33L9.252,33L7.1582,5.0762C7.1135,4.4801 7.5587,4 8.1563,4zM19,7C15.1457,7 12,10.1457 12,14C12,17.8543 15.1457,21 19,21C19.7181,21 20.4095,20.8841 21.0645,20.6816C21.1957,21.4385 21.5348,22.1288 22.0273,22.6758A1.0001,1.0001 0,1 0,23.5137 21.3379C23.193,20.9818 23,20.5207 23,20C23,19.7996 23.0387,19.6113 23.0918,19.4297A1.0001,1.0001 0,0 0,23.0977 19.4063C23.3479,18.588 24.0923,18 25,18C25.1879,18 25.3655,18.0331 25.5371,18.0801A1.0001,1.0001 0,0 0,25.668 18.1211C26.2262,18.3159 26.6625,18.7436 26.8672,19.2969A1.0001,1.0001 0,0 0,26.9297 19.5C26.9703,19.6605 27,19.8256 27,20C27,20.5189 26.8072,20.9797 26.4883,21.334A1.0005,1.0005 0,1 0,27.9746 22.6738C28.4669,22.1269 28.8047,21.4376 28.9355,20.6816C29.5902,20.8838 30.2815,21 31,21C34.8543,21 38,17.8543 38,14C38,10.1457 34.8543,7 31,7C28.3969,7 26.2059,8.4964 25,10.6152C23.7941,8.4964 21.6031,7 19,7zM19,9C21.7737,9 24,11.2263 24,14C24,14.8508 23.7803,15.639 23.4082,16.3379C22.4851,16.7429 21.7429,17.4851 21.3379,18.4082C20.64,18.7799 19.8508,19 19,19C16.2263,19 14,16.7737 14,14C14,11.2263 16.2263,9 19,9zM31,9C33.7737,9 36,11.2263 36,14C36,16.7737 33.7737,19 31,19C30.149,19 29.3606,18.7795 28.6621,18.4082C28.2571,17.4851 27.5149,16.7429 26.5918,16.3379C26.2201,15.6395 26,14.8512 26,14C26,11.2263 28.2263,9 31,9zM20,12A2,2 0,0 0,20 16A2,2 0,0 0,20 12zM30,12A2,2 0,0 0,30 16A2,2 0,0 0,30 12zM38.25,19.9844A1.0001,1.0001 0,0 0,37.4883 20.3711C35.133,23.2827 31.5756,25 27.7891,25L27.168,25A1.0001,1.0001 0,0 0,26.8418 25L25,25L23.168,25A1.0001,1.0001 0,0 0,22.8418 25L22.2109,25C18.4244,25 14.8678,23.2826 12.5137,20.3711A1.0001,1.0001 0,0 0,11.7324 19.9883A1.0001,1.0001 0,0 0,10.959 21.6289C12.7853,23.8876 15.2637,25.4544 18,26.293L18,30A1.0001,1.0001 0,0 0,19 31L23,31A1.0001,1.0001 0,0 0,24 30L24,27L25,27L26,27L26,30A1.0001,1.0001 0,0 0,27 31L31,31A1.0001,1.0001 0,0 0,32 30L32,26.293C34.7364,25.4544 37.216,23.8875 39.043,21.6289A1.0001,1.0001 0,0 0,38.25 19.9844zM20,26.752C20.6614,26.855 21.3209,26.9665 22,26.9766L22,29L20,29L20,26.752zM30,26.752L30,29L28,29L28,26.9766C28.6791,26.9665 29.3386,26.855 30,26.752zM9.4023,35L12.6387,35L18.3594,39.7676A1.0001,1.0001 0,0 0,19.6406 39.7676L21.6504,38.0938L22.7793,39.2031L21.3809,42L9.9277,42L9.4023,35zM15.7617,35L22.2402,35L19,37.6992L15.7617,35zM27.7617,35L34.2383,35L31,37.6992L27.7617,35zM37.3613,35L40.5977,35L40.0723,42L28.6172,42L27.2148,39.1934L28.3223,38.0703L30.3594,39.7676A1.0001,1.0001 0,0 0,31.6406 39.7676L37.3613,35zM25,35.3008L26.7793,36.7852L25.582,38L24.4082,38L23.1934,36.8066L25,35.3008zM24.6172,40L25.3828,40L26.8301,42.8945L25,45.334L23.1699,42.8945L24.6172,40z"
|
||||
android:fillColor="#000000"/>
|
||||
android:pathData="M8.1563,2C6.4258,2 5.0347,3.4987 5.1641,5.2246L8.002,43.0742A1.0001,1.0001 0,0 0,9 44L21.5,44L24.1992,47.5996A1.0001,1.0001 0,0 0,25.8008 47.5996L28.5,44L41,44A1.0001,1.0001 0,0 0,41.998 43.0742L44.8359,5.2246C44.9652,3.4993 43.5761,2 41.8457,2L8.1563,2zM8.1563,4L41.8457,4C42.4433,4 42.8865,4.4795 42.8418,5.0762L40.748,33L37.1992,33A1.0001,1.0001 0,0 0,36.8477 33L25.127,33A1.0001,1.0001 0,0 0,25.0977 32.9961A1.0001,1.0001 0,0 0,25.0313 32.9922A1.0001,1.0001 0,0 0,24.9727 32.9922A1.0001,1.0001 0,0 0,24.8613 33L13.125,33A1.0001,1.0001 0,0 0,12.998 32.9902A1.0001,1.0001 0,0 0,12.8555 33L9.252,33L7.1582,5.0762C7.1135,4.4801 7.5587,4 8.1563,4zM19,7C15.1457,7 12,10.1457 12,14C12,17.8543 15.1457,21 19,21C19.7181,21 20.4095,20.8841 21.0645,20.6816C21.1957,21.4385 21.5348,22.1288 22.0273,22.6758A1.0001,1.0001 0,1 0,23.5137 21.3379C23.193,20.9818 23,20.5207 23,20C23,19.7996 23.0387,19.6113 23.0918,19.4297A1.0001,1.0001 0,0 0,23.0977 19.4063C23.3479,18.588 24.0923,18 25,18C25.1879,18 25.3655,18.0331 25.5371,18.0801A1.0001,1.0001 0,0 0,25.668 18.1211C26.2262,18.3159 26.6625,18.7436 26.8672,19.2969A1.0001,1.0001 0,0 0,26.9297 19.5C26.9703,19.6605 27,19.8256 27,20C27,20.5189 26.8072,20.9797 26.4883,21.334A1.0005,1.0005 0,1 0,27.9746 22.6738C28.4669,22.1269 28.8047,21.4376 28.9355,20.6816C29.5902,20.8838 30.2815,21 31,21C34.8543,21 38,17.8543 38,14C38,10.1457 34.8543,7 31,7C28.3969,7 26.2059,8.4964 25,10.6152C23.7941,8.4964 21.6031,7 19,7zM19,9C21.7737,9 24,11.2263 24,14C24,14.8508 23.7803,15.639 23.4082,16.3379C22.4851,16.7429 21.7429,17.4851 21.3379,18.4082C20.64,18.7799 19.8508,19 19,19C16.2263,19 14,16.7737 14,14C14,11.2263 16.2263,9 19,9zM31,9C33.7737,9 36,11.2263 36,14C36,16.7737 33.7737,19 31,19C30.149,19 29.3606,18.7795 28.6621,18.4082C28.2571,17.4851 27.5149,16.7429 26.5918,16.3379C26.2201,15.6395 26,14.8512 26,14C26,11.2263 28.2263,9 31,9zM20,12A2,2 0,0 0,20 16A2,2 0,0 0,20 12zM30,12A2,2 0,0 0,30 16A2,2 0,0 0,30 12zM38.25,19.9844A1.0001,1.0001 0,0 0,37.4883 20.3711C35.133,23.2827 31.5756,25 27.7891,25L27.168,25A1.0001,1.0001 0,0 0,26.8418 25L25,25L23.168,25A1.0001,1.0001 0,0 0,22.8418 25L22.2109,25C18.4244,25 14.8678,23.2826 12.5137,20.3711A1.0001,1.0001 0,0 0,11.7324 19.9883A1.0001,1.0001 0,0 0,10.959 21.6289C12.7853,23.8876 15.2637,25.4544 18,26.293L18,30A1.0001,1.0001 0,0 0,19 31L23,31A1.0001,1.0001 0,0 0,24 30L24,27L25,27L26,27L26,30A1.0001,1.0001 0,0 0,27 31L31,31A1.0001,1.0001 0,0 0,32 30L32,26.293C34.7364,25.4544 37.216,23.8875 39.043,21.6289A1.0001,1.0001 0,0 0,38.25 19.9844zM20,26.752C20.6614,26.855 21.3209,26.9665 22,26.9766L22,29L20,29L20,26.752zM30,26.752L30,29L28,29L28,26.9766C28.6791,26.9665 29.3386,26.855 30,26.752zM9.4023,35L12.6387,35L18.3594,39.7676A1.0001,1.0001 0,0 0,19.6406 39.7676L21.6504,38.0938L22.7793,39.2031L21.3809,42L9.9277,42L9.4023,35zM15.7617,35L22.2402,35L19,37.6992L15.7617,35zM27.7617,35L34.2383,35L31,37.6992L27.7617,35zM37.3613,35L40.5977,35L40.0723,42L28.6172,42L27.2148,39.1934L28.3223,38.0703L30.3594,39.7676A1.0001,1.0001 0,0 0,31.6406 39.7676L37.3613,35zM25,35.3008L26.7793,36.7852L25.582,38L24.4082,38L23.1934,36.8066L25,35.3008zM24.6172,40L25.3828,40L26.8301,42.8945L25,45.334L23.1699,42.8945L24.6172,40z"
|
||||
android:fillColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50"
|
||||
>
|
||||
<path
|
||||
android:pathData="M13.5,3C12.8906,3 12.2695,3.2305 11.8594,3.6641C11.4531,4.0977 11.2734,4.6367 11.207,5.1758L11.2031,5.1953L10.2813,16L4,16C3.2695,16 2.5703,16.5469 2.3906,17.1875C2.207,17.8281 2.4063,18.5234 2.8906,19.0078L2.9922,19.1055L3.1172,19.1719C4.4883,19.9375 6.793,20.8008 10,21.5156L10,22.5234C8.3242,23.3398 7,24.8633 7,26.9023C7,28.9023 8.2617,30.5977 10,31.418L10,35C10,36.1367 10.4648,37.3789 11.2148,38.75C11.9648,40.1172 13.0352,41.5781 14.3594,42.9375C16.0781,44.6953 18.25,46.2891 20.7227,47.2031C21.5625,47.707 22.5469,48 23.5977,48L26.4023,48C27.4883,48 28.5039,47.6875 29.3594,47.1523C31.8047,46.207 33.9492,44.582 35.6445,42.8164C36.9688,41.4414 38.0352,39.9766 38.7813,38.625C39.5313,37.2773 40,36.0938 40,35L40,31.5742C41.9258,30.8359 43.4023,29.0977 43.4023,26.9023C43.4023,24.7031 41.9258,22.9648 40,22.2305L40,21.5352C43.2617,20.7891 45.5391,19.8984 46.9492,19.1953L47.0938,19.1211L47.207,19.0078C47.7148,18.5 47.8711,17.7305 47.6367,17.1094C47.3984,16.4844 46.7305,16 46,16L40.1211,16L39.1953,5.1953L39.1914,5.1758C39.1289,4.6797 39.0078,4.1641 38.6289,3.7109C38.2539,3.2539 37.6094,3 37,3ZM37.0938,4.9922C37.0898,4.9844 37.168,5.1211 37.207,5.4219L37.7695,12L12.6328,12L13.1953,5.4141C13.2305,5.168 13.2969,5.0547 13.3125,5.0391C13.332,5.0195 13.3086,5 13.5,5L37,5C37.1914,5 37.0977,4.9961 37.0938,4.9922ZM12.2031,17L38.1953,17L38.2813,18L44.6172,18C41.4492,19.3164 35.5078,21 25.3008,21C15.0273,21 8.5859,19.3242 5.4531,18L12.1211,18ZM12,21.9141C15.5078,22.5469 19.8867,23 25.3008,23C30.5156,23 34.668,22.5508 38,21.9375L38,23.7109L38.7969,23.8789C40.2734,24.1914 41.4023,25.4023 41.4023,26.9023C41.4023,28.4023 40.2734,29.6094 38.7969,29.9219L38,30.0898L38,35C38,35.4063 37.6914,36.4727 37.0352,37.6563C36.3789,38.8359 35.4063,40.1836 34.2031,41.4336C33.5078,42.1563 32.7305,42.8359 31.8984,43.4492C31.9609,43.1094 32,42.7578 32,42.4023L32,38C32,35.8008 30.1992,34 28,34L22,34C19.8008,34 18,35.8008 18,38L18,42.4023C18,42.7891 18.0391,43.168 18.1133,43.5313C17.2773,42.9297 16.4922,42.2578 15.793,41.5391C14.5938,40.3086 13.6211,38.9766 12.9688,37.7852C12.3125,36.5938 12,35.5117 12,35L12,30.0508L11.2813,29.8398C10.0039,29.4648 9,28.2188 9,26.9023C9,25.457 9.9688,24.3438 11.2813,23.957L12,23.75ZM12,24L13.5,29.3008C13.8008,30.3008 14.6992,31 15.8008,31L20.3008,31C21.3008,31 22.3008,30.3984 22.6992,29.5C22.6992,29.5 23.6992,27.6016 24.4023,26.3008C24.5,26 24.8008,25.9023 25.0977,25.9023C25.3984,25.9023 25.6992,26.1016 25.8008,26.3008L27.4023,29.5C27.9023,30.3984 28.8008,31 29.8008,31L34.3008,31C35.4023,31 36.3008,30.3008 36.5977,29.3008L38,24ZM14.5977,26L22.3008,26C21.6992,27.1992 20.9023,28.5977 20.9023,28.5977L20.9023,28.8008C20.8008,28.9023 20.6016,29.0977 20.3008,29.0977L15.8008,29.0977C15.5,29.0977 15.4023,28.9023 15.4023,28.9023ZM27.9023,26L35.4023,26L34.6992,28.6992C34.6992,28.8008 34.6016,29 34.3008,29L29.8008,29C29.6016,29 29.3008,28.8008 29.1992,28.5977ZM22,38L28,38C29.1016,38 30,38.8984 30,40L30,41L27,44L27,42C27,40.8984 26.1016,40 25,40C23.8984,40 23,40.8984 23,42L23,44L20,41L20,40C20,38.8984 20.8984,38 22,38Z"
|
||||
android:fillColor="#000000"/>
|
||||
android:pathData="M13.5,3C12.8906,3 12.2695,3.2305 11.8594,3.6641C11.4531,4.0977 11.2734,4.6367 11.207,5.1758L11.2031,5.1953L10.2813,16L4,16C3.2695,16 2.5703,16.5469 2.3906,17.1875C2.207,17.8281 2.4063,18.5234 2.8906,19.0078L2.9922,19.1055L3.1172,19.1719C4.4883,19.9375 6.793,20.8008 10,21.5156L10,22.5234C8.3242,23.3398 7,24.8633 7,26.9023C7,28.9023 8.2617,30.5977 10,31.418L10,35C10,36.1367 10.4648,37.3789 11.2148,38.75C11.9648,40.1172 13.0352,41.5781 14.3594,42.9375C16.0781,44.6953 18.25,46.2891 20.7227,47.2031C21.5625,47.707 22.5469,48 23.5977,48L26.4023,48C27.4883,48 28.5039,47.6875 29.3594,47.1523C31.8047,46.207 33.9492,44.582 35.6445,42.8164C36.9688,41.4414 38.0352,39.9766 38.7813,38.625C39.5313,37.2773 40,36.0938 40,35L40,31.5742C41.9258,30.8359 43.4023,29.0977 43.4023,26.9023C43.4023,24.7031 41.9258,22.9648 40,22.2305L40,21.5352C43.2617,20.7891 45.5391,19.8984 46.9492,19.1953L47.0938,19.1211L47.207,19.0078C47.7148,18.5 47.8711,17.7305 47.6367,17.1094C47.3984,16.4844 46.7305,16 46,16L40.1211,16L39.1953,5.1953L39.1914,5.1758C39.1289,4.6797 39.0078,4.1641 38.6289,3.7109C38.2539,3.2539 37.6094,3 37,3ZM37.0938,4.9922C37.0898,4.9844 37.168,5.1211 37.207,5.4219L37.7695,12L12.6328,12L13.1953,5.4141C13.2305,5.168 13.2969,5.0547 13.3125,5.0391C13.332,5.0195 13.3086,5 13.5,5L37,5C37.1914,5 37.0977,4.9961 37.0938,4.9922ZM12.2031,17L38.1953,17L38.2813,18L44.6172,18C41.4492,19.3164 35.5078,21 25.3008,21C15.0273,21 8.5859,19.3242 5.4531,18L12.1211,18ZM12,21.9141C15.5078,22.5469 19.8867,23 25.3008,23C30.5156,23 34.668,22.5508 38,21.9375L38,23.7109L38.7969,23.8789C40.2734,24.1914 41.4023,25.4023 41.4023,26.9023C41.4023,28.4023 40.2734,29.6094 38.7969,29.9219L38,30.0898L38,35C38,35.4063 37.6914,36.4727 37.0352,37.6563C36.3789,38.8359 35.4063,40.1836 34.2031,41.4336C33.5078,42.1563 32.7305,42.8359 31.8984,43.4492C31.9609,43.1094 32,42.7578 32,42.4023L32,38C32,35.8008 30.1992,34 28,34L22,34C19.8008,34 18,35.8008 18,38L18,42.4023C18,42.7891 18.0391,43.168 18.1133,43.5313C17.2773,42.9297 16.4922,42.2578 15.793,41.5391C14.5938,40.3086 13.6211,38.9766 12.9688,37.7852C12.3125,36.5938 12,35.5117 12,35L12,30.0508L11.2813,29.8398C10.0039,29.4648 9,28.2188 9,26.9023C9,25.457 9.9688,24.3438 11.2813,23.957L12,23.75ZM12,24L13.5,29.3008C13.8008,30.3008 14.6992,31 15.8008,31L20.3008,31C21.3008,31 22.3008,30.3984 22.6992,29.5C22.6992,29.5 23.6992,27.6016 24.4023,26.3008C24.5,26 24.8008,25.9023 25.0977,25.9023C25.3984,25.9023 25.6992,26.1016 25.8008,26.3008L27.4023,29.5C27.9023,30.3984 28.8008,31 29.8008,31L34.3008,31C35.4023,31 36.3008,30.3008 36.5977,29.3008L38,24ZM14.5977,26L22.3008,26C21.6992,27.1992 20.9023,28.5977 20.9023,28.5977L20.9023,28.8008C20.8008,28.9023 20.6016,29.0977 20.3008,29.0977L15.8008,29.0977C15.5,29.0977 15.4023,28.9023 15.4023,28.9023ZM27.9023,26L35.4023,26L34.6992,28.6992C34.6992,28.8008 34.6016,29 34.3008,29L29.8008,29C29.6016,29 29.3008,28.8008 29.1992,28.5977ZM22,38L28,38C29.1016,38 30,38.8984 30,40L30,41L27,44L27,42C27,40.8984 26.1016,40 25,40C23.8984,40 23,40.8984 23,42L23,44L20,41L20,40C20,38.8984 20.8984,38 22,38Z"
|
||||
android:fillColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,9 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50">
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="50dp"
|
||||
android:height="50dp"
|
||||
android:viewportWidth="50"
|
||||
android:viewportHeight="50"
|
||||
>
|
||||
<path
|
||||
android:pathData="M20,1C16.3095,1 12.8234,2.0506 10.2305,4.2344C7.6375,6.4181 6.002,9.75 6.002,14C6.002,18.6111 6.7895,21.2785 7.5352,24.0137C8.2809,26.7488 9,29.5909 9,35L9,48A1.0001,1.0001 0,1 0,11 48L11,35C11,29.4091 10.2186,26.2512 9.4648,23.4863C8.711,20.7215 8.002,18.3889 8.002,14C8.002,10.25 9.363,7.5819 11.5195,5.7656C13.6761,3.9494 16.6905,3 20,3C24.2963,3 27.5231,4.2865 29.9648,6.4375C32.4065,8.5885 34.071,11.6495 35.0332,15.2578C35.2012,15.89 35.583,16.2911 36.0039,16.6641C36.4248,17.037 36.9147,17.3536 37.4297,17.5938C37.7005,17.7202 37.8703,17.9111 37.9492,18.1758C37.4949,18.0655 37.0124,18 36.5,18C34.75,18 33.3102,18.6923 32.377,19.7422C31.4866,20.7438 31.0547,22.0287 31.0156,23.3145A1.0001,1.0001 0,0 0,31 23.5L31,24C31,26.7667 32.1644,28.8285 33.668,30.332C35.137,31.8011 36.8963,32.8098 38.3359,33.7617A1.0001,1.0001 0,0 0,38.541 33.9023C40.7723,35.4203 42,37.2853 42,41.5C42,42.3408 41.3408,43 40.5,43C40.312,43 40.1382,42.9563 39.9727,42.8887C39.9012,40.3575 39.4331,38.5129 38.9219,37.2988C38.3683,35.9841 37.707,35.293 37.707,35.293A1.0001,1.0001 0,0 0,36.9902 34.9902A1.0001,1.0001 0,0 0,36.293 36.707C36.293,36.707 36.6317,37.0159 37.0781,38.0762C37.5246,39.1365 38,40.8712 38,43.5L38,44.4727A1.0001,1.0001 0,0 0,37.9883 44.5742C37.9482,45.3772 37.3128,46 36.5,46C35.6592,46 35,45.3408 35,44.5C35,41.6894 34.7445,39.7461 34.4785,38.4824C34.2125,37.2188 33.8945,36.5527 33.8945,36.5527A1.0001,1.0001 0,0 0,33.0156 35.9883A1.0001,1.0001 0,0 0,32.1055 37.4473C32.1055,37.4473 32.2875,37.7812 32.5215,38.8926C32.755,40.0019 32.9991,41.8051 33,44.4863A1.0001,1.0001 0,0 0,33 44.5L33,45.5C33,46.3408 32.3408,47 31.5,47C30.6592,47 30,46.3408 30,45.5L30,41.125C30,39.4558 29.7317,38.2962 29.4316,37.5273C29.1316,36.7585 28.707,36.293 28.707,36.293A1.0001,1.0001 0,0 0,27.9902 35.9902A1.0001,1.0001 0,0 0,27.293 37.707C27.293,37.707 27.3684,37.7415 27.5684,38.2539C27.7683,38.7663 28,39.6692 28,41.125L28,45.5C28,46.3408 27.3408,47 26.5,47C25.6592,47 25,46.3408 25,45.5C25,43.75 25.0053,41.715 24.7402,39.8594C24.4751,38.0038 23.9836,36.2372 22.5996,35.1992A1.0004,1.0004 0,1 0,21.4004 36.8008C22.0164,37.2628 22.5249,38.4962 22.7598,40.1406C22.9947,41.785 23,43.75 23,45.5C23,47.4212 24.5788,49 26.5,49C27.4792,49 28.3624,48.5843 29,47.9277C29.6376,48.5843 30.5208,49 31.5,49C32.7689,49 33.8392,48.2771 34.4531,47.2559C35.0367,47.6915 35.722,48 36.5,48C38.2135,48 39.5923,46.7243 39.8828,45.0918A1.0001,1.0001 0,0 0,39.9805 44.8223C40.1682,44.855 40.3024,45 40.5,45C42.4212,45 44,43.4212 44,41.5C44,37.0497 42.4419,34.3133 40,32.502L40,27.8359C40.2251,27.6575 40.4367,27.4674 40.623,27.2578C41.5563,26.2079 42,24.8472 42,23.5C42,22.1528 41.5563,20.7921 40.623,19.7422C40.4367,19.5326 40.2251,19.3425 40,19.1641L40,18.416L39.998,18.3945C39.9492,17.2908 39.3008,16.2601 38.2754,15.7813C37.9413,15.6254 37.5844,15.3933 37.3301,15.168C37.0758,14.9427 36.9548,14.697 36.9668,14.7422C35.929,10.8505 34.0935,7.4115 31.2852,4.9375C28.4769,2.4635 24.7037,1 20,1zM23,17C21.0833,17 19.5186,17.7548 18.502,18.8984C17.4853,20.0421 17,21.5278 17,23C17,24.4722 17.4853,25.9579 18.502,27.1016C19.5186,28.2452 21.0833,29 23,29C26.3019,29 29,26.3019 29,23C29,19.6981 26.3019,17 23,17zM23,19C25.221,19 27,20.779 27,23C27,25.221 25.221,27 23,27C21.5833,27 20.6481,26.5048 19.998,25.7734C19.348,25.0421 19,24.0278 19,23C19,21.9722 19.348,20.9579 19.998,20.2266C20.6481,19.4952 21.5833,19 23,19zM36.5,20C37.75,20 38.5602,20.4327 39.127,21.0703C39.6937,21.7079 40,22.5972 40,23.5C40,24.4028 39.6937,25.2921 39.127,25.9297C39.0175,26.0528 38.8888,26.1594 38.7598,26.2656A1.0001,1.0001 0,0 0,38.2129 26.6211C37.7538,26.8533 37.2014,27 36.5,27C35.25,27 34.4398,26.5673 33.873,25.9297C33.3063,25.2921 33,24.4028 33,23.5C33,22.5972 33.3063,21.7079 33.873,21.0703C34.4398,20.4327 35.25,20 36.5,20zM24,22A1,1 0,0 0,24 24A1,1 0,0 0,24 22zM38,22A1,1 0,0 0,38 24A1,1 0,0 0,38 22zM34.9766,28.8047C35.4522,28.9269 35.9594,29 36.5,29C37.0317,29 37.5311,28.929 38,28.8105L38,31.1465C36.9481,30.4584 35.9158,29.7517 35.082,28.918C35.0452,28.8812 35.0127,28.8419 34.9766,28.8047zM18.0156,28.9883A1.0001,1.0001 0,0 0,17.1055 30.4473C17.1055,30.4473 17.4726,31.1594 18.25,31.7813C19.0274,32.4031 20.2778,33 22,33C23.1667,33 24.078,32.7042 24.6973,32.3945C25.3165,32.0849 25.707,31.707 25.707,31.707A1.0001,1.0001 0,1 0,24.293 30.293C24.293,30.293 24.1835,30.4151 23.8027,30.6055C23.422,30.7958 22.8333,31 22,31C20.7222,31 19.9726,30.5969 19.5,30.2188C19.0274,29.8406 18.8945,29.5527 18.8945,29.5527A1.0001,1.0001 0,0 0,18.0156 28.9883z"
|
||||
android:fillColor="#000000"/>
|
||||
android:pathData="M20,1C16.3095,1 12.8234,2.0506 10.2305,4.2344C7.6375,6.4181 6.002,9.75 6.002,14C6.002,18.6111 6.7895,21.2785 7.5352,24.0137C8.2809,26.7488 9,29.5909 9,35L9,48A1.0001,1.0001 0,1 0,11 48L11,35C11,29.4091 10.2186,26.2512 9.4648,23.4863C8.711,20.7215 8.002,18.3889 8.002,14C8.002,10.25 9.363,7.5819 11.5195,5.7656C13.6761,3.9494 16.6905,3 20,3C24.2963,3 27.5231,4.2865 29.9648,6.4375C32.4065,8.5885 34.071,11.6495 35.0332,15.2578C35.2012,15.89 35.583,16.2911 36.0039,16.6641C36.4248,17.037 36.9147,17.3536 37.4297,17.5938C37.7005,17.7202 37.8703,17.9111 37.9492,18.1758C37.4949,18.0655 37.0124,18 36.5,18C34.75,18 33.3102,18.6923 32.377,19.7422C31.4866,20.7438 31.0547,22.0287 31.0156,23.3145A1.0001,1.0001 0,0 0,31 23.5L31,24C31,26.7667 32.1644,28.8285 33.668,30.332C35.137,31.8011 36.8963,32.8098 38.3359,33.7617A1.0001,1.0001 0,0 0,38.541 33.9023C40.7723,35.4203 42,37.2853 42,41.5C42,42.3408 41.3408,43 40.5,43C40.312,43 40.1382,42.9563 39.9727,42.8887C39.9012,40.3575 39.4331,38.5129 38.9219,37.2988C38.3683,35.9841 37.707,35.293 37.707,35.293A1.0001,1.0001 0,0 0,36.9902 34.9902A1.0001,1.0001 0,0 0,36.293 36.707C36.293,36.707 36.6317,37.0159 37.0781,38.0762C37.5246,39.1365 38,40.8712 38,43.5L38,44.4727A1.0001,1.0001 0,0 0,37.9883 44.5742C37.9482,45.3772 37.3128,46 36.5,46C35.6592,46 35,45.3408 35,44.5C35,41.6894 34.7445,39.7461 34.4785,38.4824C34.2125,37.2188 33.8945,36.5527 33.8945,36.5527A1.0001,1.0001 0,0 0,33.0156 35.9883A1.0001,1.0001 0,0 0,32.1055 37.4473C32.1055,37.4473 32.2875,37.7812 32.5215,38.8926C32.755,40.0019 32.9991,41.8051 33,44.4863A1.0001,1.0001 0,0 0,33 44.5L33,45.5C33,46.3408 32.3408,47 31.5,47C30.6592,47 30,46.3408 30,45.5L30,41.125C30,39.4558 29.7317,38.2962 29.4316,37.5273C29.1316,36.7585 28.707,36.293 28.707,36.293A1.0001,1.0001 0,0 0,27.9902 35.9902A1.0001,1.0001 0,0 0,27.293 37.707C27.293,37.707 27.3684,37.7415 27.5684,38.2539C27.7683,38.7663 28,39.6692 28,41.125L28,45.5C28,46.3408 27.3408,47 26.5,47C25.6592,47 25,46.3408 25,45.5C25,43.75 25.0053,41.715 24.7402,39.8594C24.4751,38.0038 23.9836,36.2372 22.5996,35.1992A1.0004,1.0004 0,1 0,21.4004 36.8008C22.0164,37.2628 22.5249,38.4962 22.7598,40.1406C22.9947,41.785 23,43.75 23,45.5C23,47.4212 24.5788,49 26.5,49C27.4792,49 28.3624,48.5843 29,47.9277C29.6376,48.5843 30.5208,49 31.5,49C32.7689,49 33.8392,48.2771 34.4531,47.2559C35.0367,47.6915 35.722,48 36.5,48C38.2135,48 39.5923,46.7243 39.8828,45.0918A1.0001,1.0001 0,0 0,39.9805 44.8223C40.1682,44.855 40.3024,45 40.5,45C42.4212,45 44,43.4212 44,41.5C44,37.0497 42.4419,34.3133 40,32.502L40,27.8359C40.2251,27.6575 40.4367,27.4674 40.623,27.2578C41.5563,26.2079 42,24.8472 42,23.5C42,22.1528 41.5563,20.7921 40.623,19.7422C40.4367,19.5326 40.2251,19.3425 40,19.1641L40,18.416L39.998,18.3945C39.9492,17.2908 39.3008,16.2601 38.2754,15.7813C37.9413,15.6254 37.5844,15.3933 37.3301,15.168C37.0758,14.9427 36.9548,14.697 36.9668,14.7422C35.929,10.8505 34.0935,7.4115 31.2852,4.9375C28.4769,2.4635 24.7037,1 20,1zM23,17C21.0833,17 19.5186,17.7548 18.502,18.8984C17.4853,20.0421 17,21.5278 17,23C17,24.4722 17.4853,25.9579 18.502,27.1016C19.5186,28.2452 21.0833,29 23,29C26.3019,29 29,26.3019 29,23C29,19.6981 26.3019,17 23,17zM23,19C25.221,19 27,20.779 27,23C27,25.221 25.221,27 23,27C21.5833,27 20.6481,26.5048 19.998,25.7734C19.348,25.0421 19,24.0278 19,23C19,21.9722 19.348,20.9579 19.998,20.2266C20.6481,19.4952 21.5833,19 23,19zM36.5,20C37.75,20 38.5602,20.4327 39.127,21.0703C39.6937,21.7079 40,22.5972 40,23.5C40,24.4028 39.6937,25.2921 39.127,25.9297C39.0175,26.0528 38.8888,26.1594 38.7598,26.2656A1.0001,1.0001 0,0 0,38.2129 26.6211C37.7538,26.8533 37.2014,27 36.5,27C35.25,27 34.4398,26.5673 33.873,25.9297C33.3063,25.2921 33,24.4028 33,23.5C33,22.5972 33.3063,21.7079 33.873,21.0703C34.4398,20.4327 35.25,20 36.5,20zM24,22A1,1 0,0 0,24 24A1,1 0,0 0,24 22zM38,22A1,1 0,0 0,38 24A1,1 0,0 0,38 22zM34.9766,28.8047C35.4522,28.9269 35.9594,29 36.5,29C37.0317,29 37.5311,28.929 38,28.8105L38,31.1465C36.9481,30.4584 35.9158,29.7517 35.082,28.918C35.0452,28.8812 35.0127,28.8419 34.9766,28.8047zM18.0156,28.9883A1.0001,1.0001 0,0 0,17.1055 30.4473C17.1055,30.4473 17.4726,31.1594 18.25,31.7813C19.0274,32.4031 20.2778,33 22,33C23.1667,33 24.078,32.7042 24.6973,32.3945C25.3165,32.0849 25.707,31.707 25.707,31.707A1.0001,1.0001 0,1 0,24.293 30.293C24.293,30.293 24.1835,30.4151 23.8027,30.6055C23.422,30.7958 22.8333,31 22,31C20.7222,31 19.9726,30.5969 19.5,30.2188C19.0274,29.8406 18.8945,29.5527 18.8945,29.5527A1.0001,1.0001 0,0 0,18.0156 28.9883z"
|
||||
android:fillColor="#000000"
|
||||
/>
|
||||
</vector>
|
||||
|
@ -24,10 +24,10 @@ class CalendarMoviesFutureCase @Inject constructor(
|
||||
override val grouper: CalendarFutureGrouper,
|
||||
override val sorter: CalendarFutureSorter,
|
||||
) : CalendarMoviesItemsCase(
|
||||
dispatchers,
|
||||
moviesRepository,
|
||||
translationsRepository,
|
||||
settingsSpoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
)
|
||||
dispatchers,
|
||||
moviesRepository,
|
||||
translationsRepository,
|
||||
settingsSpoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
)
|
||||
|
@ -24,10 +24,10 @@ class CalendarMoviesRecentsCase @Inject constructor(
|
||||
override val grouper: CalendarRecentsGrouper,
|
||||
override val sorter: CalendarRecentsSorter,
|
||||
) : CalendarMoviesItemsCase(
|
||||
dispatchers,
|
||||
moviesRepository,
|
||||
translationsRepository,
|
||||
settingsSpoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
)
|
||||
dispatchers,
|
||||
moviesRepository,
|
||||
translationsRepository,
|
||||
settingsSpoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
)
|
||||
|
@ -31,10 +31,10 @@ sealed class CalendarMovieListItem(
|
||||
@StringRes val textResId: Int,
|
||||
val calendarMode: CalendarMode,
|
||||
) : CalendarMovieListItem(
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
fun create(
|
||||
@ -52,8 +52,8 @@ sealed class CalendarMovieListItem(
|
||||
data class Filters(
|
||||
val mode: CalendarMode,
|
||||
) : CalendarMovieListItem(
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_progress_movies.main
|
||||
|
@ -53,8 +53,8 @@ sealed class ProgressMovieListItem(
|
||||
val sortOrder: SortOrder,
|
||||
val sortType: SortType,
|
||||
) : ProgressMovieListItem(
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
movie = Movie.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
}
|
||||
|
@ -18,8 +18,8 @@ class ProgressMoviesAdapter(
|
||||
private val checkClickListener: (ProgressMovieListItem.MovieItem) -> Unit,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseMovieAdapter<ProgressMovieListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_MOVIE = 1
|
||||
|
@ -29,16 +29,16 @@ class CalendarFutureCase @Inject constructor(
|
||||
override val filter: CalendarFutureFilter,
|
||||
override val grouper: CalendarFutureGrouper,
|
||||
) : CalendarItemsCase(
|
||||
dispatchers,
|
||||
localSource,
|
||||
mappers,
|
||||
showsRepository,
|
||||
translationsRepository,
|
||||
spoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
watchlistAppender,
|
||||
) {
|
||||
dispatchers,
|
||||
localSource,
|
||||
mappers,
|
||||
showsRepository,
|
||||
translationsRepository,
|
||||
spoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
watchlistAppender,
|
||||
) {
|
||||
|
||||
override fun sortEpisodes() =
|
||||
compareBy<Episode> { it.firstAired }
|
||||
|
@ -29,16 +29,16 @@ class CalendarRecentsCase @Inject constructor(
|
||||
override val filter: CalendarRecentsFilter,
|
||||
override val grouper: CalendarRecentsGrouper,
|
||||
) : CalendarItemsCase(
|
||||
dispatchers,
|
||||
localSource,
|
||||
mappers,
|
||||
showsRepository,
|
||||
translationsRepository,
|
||||
spoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
watchlistAppender,
|
||||
) {
|
||||
dispatchers,
|
||||
localSource,
|
||||
mappers,
|
||||
showsRepository,
|
||||
translationsRepository,
|
||||
spoilersRepository,
|
||||
imagesProvider,
|
||||
dateFormatProvider,
|
||||
watchlistAppender,
|
||||
) {
|
||||
|
||||
override fun sortEpisodes() =
|
||||
compareByDescending<Episode> { it.firstAired }
|
||||
|
@ -39,10 +39,10 @@ sealed class CalendarListItem(
|
||||
@StringRes val textResId: Int,
|
||||
val calendarMode: CalendarMode,
|
||||
) : CalendarListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
fun create(
|
||||
@ -60,8 +60,8 @@ sealed class CalendarListItem(
|
||||
data class Filters(
|
||||
val mode: CalendarMode,
|
||||
) : CalendarListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
)
|
||||
}
|
||||
|
@ -34,10 +34,10 @@ internal sealed class HistoryListItem(
|
||||
val date: LocalDateTime,
|
||||
val language: String,
|
||||
) : HistoryListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
override fun isSameAs(other: ListItem): Boolean {
|
||||
val otherHeader = (other as? Header) ?: return false
|
||||
return date.isEqual(otherHeader.date)
|
||||
@ -47,10 +47,10 @@ internal sealed class HistoryListItem(
|
||||
data class Filters(
|
||||
val period: HistoryPeriod,
|
||||
) : HistoryListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
override fun isSameAs(other: ListItem): Boolean = period == (other as? Filters)?.period
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_progress.main
|
||||
|
@ -45,7 +45,7 @@ class ProgressMainEpisodesCase @Inject constructor(
|
||||
spoilersSettings.isEpisodesDescriptionHidden ||
|
||||
spoilersSettings.isEpisodesImageHidden ||
|
||||
spoilersSettings.isEpisodesRatingHidden
|
||||
)
|
||||
)
|
||||
) {
|
||||
return@withContext false
|
||||
}
|
||||
|
@ -21,8 +21,8 @@ class ProgressAdapter(
|
||||
private val missingTranslationListener: (ProgressListItem) -> Unit,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseAdapter<ProgressListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private const val VIEW_TYPE_ITEM = 1
|
||||
|
@ -90,10 +90,10 @@ sealed class ProgressListItem(
|
||||
val isOnHold: Boolean,
|
||||
val newAtTop: Boolean,
|
||||
) : ProgressListItem(
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
show = Show.EMPTY,
|
||||
image = Image.createUnknown(ImageType.POSTER),
|
||||
isLoading = false,
|
||||
) {
|
||||
|
||||
fun hasActiveFilters() = isUpcoming || isOnHold
|
||||
}
|
||||
|
@ -12,8 +12,8 @@ class SearchAdapter(
|
||||
private val missingImageListener: (SearchListItem, Boolean) -> Unit,
|
||||
listChangeListener: () -> Unit,
|
||||
) : BaseAdapter<SearchListItem>(
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
listChangeListener = listChangeListener,
|
||||
) {
|
||||
|
||||
override val asyncDiffer = AsyncListDiffer(this, SearchItemDiffCallback())
|
||||
|
||||
|
@ -17,13 +17,13 @@ class SettingsViewModel @Inject constructor() :
|
||||
ViewModel(),
|
||||
ChannelsDelegate by DefaultChannelsDelegate() {
|
||||
|
||||
private val premiumState = MutableStateFlow(false)
|
||||
private val premiumState = MutableStateFlow(false)
|
||||
|
||||
val uiState = premiumState
|
||||
.map { SettingsUiState(it) }
|
||||
.stateIn(
|
||||
scope = viewModelScope,
|
||||
started = SharingStarted.WhileSubscribed(SUBSCRIBE_STOP_TIMEOUT),
|
||||
initialValue = SettingsUiState(),
|
||||
)
|
||||
}
|
||||
val uiState = premiumState
|
||||
.map { SettingsUiState(it) }
|
||||
.stateIn(
|
||||
scope = viewModelScope,
|
||||
started = SharingStarted.WhileSubscribed(SUBSCRIBE_STOP_TIMEOUT),
|
||||
initialValue = SettingsUiState(),
|
||||
)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
@file:Suppress("ktlint:standard:filename")
|
||||
|
||||
package com.michaldrabik.ui_settings.sections.notifications
|
||||
|
@ -4,5 +4,8 @@
|
||||
android:shape="rectangle"
|
||||
>
|
||||
<corners android:radius="6dp" />
|
||||
<stroke android:width="1dp" android:color="?android:attr/textColorPrimary"/>
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="?android:attr/textColorPrimary"
|
||||
/>
|
||||
</shape>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user