Implement retrieving backgrounds from Danbooru-based imageboards.

This commit is contained in:
Kevin Alberts 2024-12-27 02:00:59 +01:00
parent 2a6c87df54
commit 4fbefdf15f
30 changed files with 1015 additions and 280 deletions

View file

@ -1,46 +1,20 @@
# Projectivy Plugin : Wallpaper Provider
# Projectivy Plugin : Booru Wallpaper Provider
This is a sample project for developing a wallpaper provider plugin for Projectivy Launcher.
- /sample : sample code for the plugin service and its setting activity
- /api : api used to communicate with Projectivy through AIDL (don't change it)
- Version: 1
This is a [Projectivy](https://xdaforums.com/t/app-android-tv-projectivy-launcher.4436549/) Plugin that allows you to set a wallpaper from a Booru imageboard.
## Repository layout
- /booru : code for the Booru plugin service and its setting activity
- /api : api used to communicate with Projectivy through AIDL
# Usage
- fork/clone the repo
- adapt the sample manifest according to your needs (at least modify the unique id)
- customize the Wallpaper provider service and Settings fragment
# Manifest parameters
- apiVersion: api version used in your code. Projectivy will use it to detect if your plugin is compatible with its own code
- uuid: unique id (format : UUID V4) used to identify your plugin. *You must generate one*
- name: plugin name as displayed in Projectivy plugins list
- settingsActivity: class name of your settings activity. Projectivy will launch it when users click on settings button
- itemsCacheDurationMillis: how long should Projectivy keep the last wallpapers returned by this plugin before considering them expired
- updateMode: int representing the events your plugin is interested in. This should be a combination of TIME_ELAPSED, NOW_PLAYING_CHANGED, CARD_FOCUSED, PROGRAM_CARD_FOCUSED, LAUNCHER_IDLE_MODE_CHANGED (check class WallpaperUpdateEventType)
# How it works
## Timer event
For standard wallpaper providers such as the stock Reddit wallpaper provider, the wallpapers will change according to time events.
First, Projectivy will request wallpaper(s) to the provider selected in the settings, and keep them in cache for itemsCacheDurationMillis.
Then, each X minutes (depending on user settings), Projectivy will refresh the wallpaper by fetching a random one in its cache.
When itemsCacheDurationMillis has expired, Projectivy will ask the plugin again.
## Other events
Other events might lead to wallpaper requests if you set the corresponding updateMode (in that case, there is no cache on Projectivy side, these events are considered dynamic and only the provider knows how to react).
- card focused: each time a card is focused (used by the stock "dynamic colors" wallpaper provider)
- program card focused: each time a program card is focused (used by the stock "current focused program" wallpaper provider)
- now playing changed: each time the "now playing" metadata has changed (could be used to set wallpaper according to the music currently playing)
- launcher idle mode changed: when Projectivy enters/exits launcher idle mode
Each of these events will lead to a call to getWallpapers() depending on your updateMode. They will also provide this function an object containing details regarding this particular event (check the Event class for more details)
# Hints
- Be responsible : even though getWallpapers() isn't called from the UI thread, it doesn't mean you can waste precious device resources (keep in mind that many Android Tv devices have less memory or cpu power than most smartphones).
- If you're fetching wallpapers from an external source, consider using an http cache to prevent flooding it with requests.
- Don't request an update mode you won't use. This is particularly true with card focused events. Those requests might be sent each second or so when a user navigates in the launcher.
- Take advantage of the itemsCacheDurationMillis to limit requests to your plugin and leverage Projectivy's cache (the stock "Reddit" wallpaper provider uses a 12h cache, meaning you will cycle through the same wallpapers for 12 hours before they are updated)
- Don't send to many wallpapers to Projectivy: it will cache them and only use them for itemsCacheDurationMillis, so this will waste memory
- Respect authors : the wallpaper class allows you to define an author and source uri, fill them to give credit when possible
- Download the `booru-release.apk` from the releases tab and install it on your TV
- Navigate to Projectivy -> Launcher settings -> Appearance -> Wallpaper -> Launcher wallpaper
- The "Booru Wallpaper Provider" should be available.
- Configure the plugin via the "Configure" button. The following settings are available:
- Booru URL: The base URL to the Booru site, including protocol. For example: `https://danbooru.donmai.us`
- Booru Type: Only `danbooru`-based boards are currently supported. Support for more types is planned.
- Search query: The search query from which images are pulled. This is the same as you would fill in on the imageboard website's search box. Check the help pages of your booru for guidance. (i.e. the [cheatsheet](https://danbooru.donmai.us/wiki_pages/help%3Acheatsheet) for Danbooru) All tag types should work normally (including ordering, ratio, and other metatags).
- Username and API Key: These are optional. Some boorus have limitations on how many tags can be searched anonymously or by standard users. For example, Danbooru allows 2 tags for logged out and normal users, but 6 for premium accounts. Fill in these fields to authenticate.
# Note
This sample is provided as is. It is by no means perfect and should serve as a quick start.
This plugin is provided as an open-source project and is distributed "as is." While the author may offer voluntary support, there is no guarantee of availability or resolution. The author is not responsible for any damages, data loss, or issues arising from the use of this plugin. Use at your own risk.

2
booru/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/build
/release

View file

@ -6,15 +6,15 @@ plugins {
}
android {
namespace = "tv.projectivy.plugin.wallpaperprovider.sample"
namespace = "nl.kurocon.plugin.wallpaperprovider.booru"
compileSdk = 35
defaultConfig {
applicationId = "tv.projectivy.plugin.wallpaperprovider.sample"
applicationId = "nl.kurocon.plugin.wallpaperprovider.booru"
minSdk = 23
targetSdk = 35
versionCode = 1
versionName = "1.01"
versionName = "1.0"
}
@ -45,5 +45,7 @@ dependencies {
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.preference:preference-ktx:1.2.1")
implementation("com.google.code.gson:gson:2.11.0")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.json:json:20210307")
implementation(project(":api"))
}

View file

@ -16,8 +16,8 @@
android:allowBackup="true"
android:label="@string/plugin_name"
android:supportsRtl="true"
android:icon="@mipmap/ic_launcher"
android:banner="@mipmap/ic_banner"
android:icon="@drawable/danbooru_logo_500"
android:banner="@drawable/danbooru_banner"
android:theme="@style/Theme.ProjectivyWallpaperProvider">
<activity
android:name=".SettingsActivity"
@ -36,8 +36,8 @@
android:name=".WallpaperProviderService"
android:exported="true"
android:label="@string/plugin_name"
android:icon="@mipmap/ic_launcher"
android:banner="@mipmap/ic_banner"
android:icon="@drawable/danbooru_logo_500"
android:banner="@drawable/danbooru_banner"
tools:ignore="ExportedService">
<!-- Mandatory for the plugin to be detected, DO NOT CHANGE -->
@ -50,8 +50,7 @@
android:name="apiVersion"
android:value="1"/>
<!--Plugin UUID *** YOU NEED TO CHANGE IT *** -->
<!--https://www.uuidgenerator.net/version4 -->
<!--Booru Plugin UUID -->
<meta-data
android:name="uuid"
android:value="@string/plugin_uuid"/>
@ -71,10 +70,10 @@
android:name="itemsCacheDurationMillis"
android:value="@integer/items_cache_duration_millis"/>
<!-- This sample plugin will receive time_elapsed and launcher_idle_mode_changed events -->
<!-- This plugin will only receive time_elapsed events -->
<meta-data
android:name="updateMode"
android:value="17"/>
android:value="1"/>
</service>
</application>

View file

@ -0,0 +1,75 @@
package nl.kurocon.plugin.wallpaperprovider.booru
import android.content.Context
import okhttp3.OkHttpClient
import okhttp3.Request
import org.json.JSONArray
import org.json.JSONObject
import java.io.IOException
import java.net.URLEncoder
class BooruAPI(context: Context) {
private val client = OkHttpClient()
init {
PreferencesManager.init(context)
}
@Throws(IOException::class)
fun getImageUrls(limit: Int = 20): List<BooruImage> {
return when (PreferencesManager.booruType) {
"danbooru" -> getDanbooruImageUrls(limit = limit)
else -> getDanbooruImageUrls(limit = limit)
}
}
@Throws(IOException::class)
fun getDanbooruImageUrls(limit: Int = 20): List<BooruImage> {
val tags = PreferencesManager.booruTagSearch
val encodedTags = URLEncoder.encode(tags, "UTF-8")
val url = "${PreferencesManager.booruUrl}/posts.json?tags=$encodedTags&limit=$limit"
var requestBuilder = Request.Builder()
.url(url)
if (PreferencesManager.booruUserId.isNotEmpty() && PreferencesManager.booruApiKey.isNotEmpty()) {
requestBuilder = requestBuilder.addHeader("Authorization", okhttp3.Credentials.basic(PreferencesManager.booruUserId, PreferencesManager.booruApiKey))
}
val request = requestBuilder.build()
client.newCall(request).execute().use { response ->
if (!response.isSuccessful) {
// Try to parse error message from body
val responseBody = response.body?.string() ?: throw IOException("Unexpected code ${response.code}, and response body is empty")
val jsonBody = JSONObject(responseBody)
val errorMessage = jsonBody.optString("message")
if (errorMessage.isNotEmpty()) {
throw IOException("Error ${response.code}. $errorMessage")
}
throw IOException("Unexpected code ${response.code} - ${response.body}")
}
val responseBody = response.body?.string() ?: throw IOException("Response body is null")
val jsonArray = JSONArray(responseBody)
// Parse JSON response into BooruImage instances
val images = mutableListOf<BooruImage>()
for (i in 0 until jsonArray.length()) {
val jsonObject = jsonArray.getJSONObject(i)
val imageUrl = jsonObject.optString("file_url")
val title = jsonObject.optString("tag_string")
val author = jsonObject.optString("tag_string_artist")
val sourceUri = jsonObject.optString("source")
if (imageUrl.isNotEmpty()) {
images.add(BooruImage(imageUrl, title, author, sourceUri))
}
}
return images
}
}
}
class BooruImage(
var imageUrl: String,
var title: String,
var author: String,
var sourceUri: String
) {}

View file

@ -1,4 +1,4 @@
package tv.projectivy.plugin.wallpaperprovider.sample
package nl.kurocon.plugin.wallpaperprovider.booru
import android.content.Context
import android.content.SharedPreferences
@ -9,7 +9,11 @@ import com.google.gson.ToNumberPolicy
import com.google.gson.reflect.TypeToken
object PreferencesManager {
private const val IMAGE_URL_KEY = "image_url_key"
private const val BOORU_URL_KEY = "booru_url_key"
private const val BOORU_TYPE_KEY = "booru_type_key"
private const val BOORU_TAG_SEARCH_KEY = "booru_tag_search_key"
private const val BOORU_USER_ID_KEY = "booru_user_id_key"
private const val BOORU_API_KEY_KEY = "booru_api_key_key"
lateinit var preferences: SharedPreferences
@ -46,9 +50,21 @@ object PreferencesManager {
else -> throw UnsupportedOperationException("Not yet implemented")
}
var imageUrl: String
get() = PreferencesManager[IMAGE_URL_KEY, "https://images.pexels.com/photos/462162/pexels-photo-462162.jpeg"]
set(value) { PreferencesManager[IMAGE_URL_KEY]=value }
var booruUrl: String
get () = PreferencesManager[BOORU_URL_KEY, "https://danbooru.donmai.us"]
set(value) { PreferencesManager[BOORU_URL_KEY] = value }
var booruType: String
get () = PreferencesManager[BOORU_TYPE_KEY, "danbooru"]
set(value) { PreferencesManager[BOORU_TYPE_KEY] = value }
var booruTagSearch: String
get () = PreferencesManager[BOORU_TAG_SEARCH_KEY, "ratio:16:9 rating:general order:random"]
set(value) { PreferencesManager[BOORU_TAG_SEARCH_KEY] = value }
var booruUserId: String
get () = PreferencesManager[BOORU_USER_ID_KEY, ""]
set(value) { PreferencesManager[BOORU_USER_ID_KEY] = value }
var booruApiKey: String
get () = PreferencesManager[BOORU_API_KEY_KEY, ""]
set(value) { PreferencesManager[BOORU_API_KEY_KEY] = value }
fun export(): String {
return Gson().toJson(preferences.all)

View file

@ -1,4 +1,4 @@
package tv.projectivy.plugin.wallpaperprovider.sample
package nl.kurocon.plugin.wallpaperprovider.booru
import android.os.Bundle
import androidx.fragment.app.FragmentActivity

View file

@ -0,0 +1,155 @@
package nl.kurocon.plugin.wallpaperprovider.booru
import android.os.Bundle
import androidx.appcompat.content.res.AppCompatResources
import androidx.leanback.app.GuidedStepSupportFragment
import androidx.leanback.widget.GuidanceStylist.Guidance
import androidx.leanback.widget.GuidedAction
import kotlin.CharSequence
class SettingsFragment : GuidedStepSupportFragment() {
override fun onCreateGuidance(savedInstanceState: Bundle?): Guidance {
return Guidance(
getString(R.string.plugin_name),
getString(R.string.plugin_description),
getString(R.string.settings),
AppCompatResources.getDrawable(requireActivity(), R.drawable.danbooru_logo_500)
)
}
override fun onCreateActions(actions: MutableList<GuidedAction>, savedInstanceState: Bundle?) {
PreferencesManager.init(requireContext())
// Booru URL setting
val currentBooruUrl = PreferencesManager.booruUrl
val actionBooruUrl = GuidedAction.Builder(context)
.id(ACTION_ID_BOORU_URL)
.title(R.string.setting_booru_url_title)
.description(currentBooruUrl)
.editDescription(currentBooruUrl)
.descriptionEditable(true)
.build()
actions.add(actionBooruUrl)
// Booru Type setting (choice menu with only Danbooru currently)
val booruTypeSubActions: MutableList<GuidedAction> = mutableListOf();
val typeDanbooruSubAction = GuidedAction.Builder(context)
.id(SUBACTION_ID_BOORU_TYPE_DANBOORU)
.title(R.string.setting_booru_type_subtype_danbooru_title)
.description(R.string.setting_booru_type_subtype_danbooru_description)
.build()
booruTypeSubActions.add(typeDanbooruSubAction)
val currentBooruType = PreferencesManager.booruType
val actionBooruType = GuidedAction.Builder(context)
.id(ACTION_ID_BOORU_TYPE)
.title(R.string.setting_booru_type_title)
.description(currentBooruType)
.subActions(booruTypeSubActions)
.build()
actions.add(actionBooruType)
// Booru search tags setting
val currentBooruTagSearch = PreferencesManager.booruTagSearch
val actionBooruTagSearch = GuidedAction.Builder(context)
.id(ACTION_ID_BOORU_TAG_SEARCH)
.title(R.string.setting_booru_tag_search_title)
.description(currentBooruTagSearch)
.editDescription(currentBooruTagSearch)
.descriptionEditable(true)
.build()
actions.add(actionBooruTagSearch)
// Divider
actions.add(GuidedAction.Builder(context)
.title("")
.description("")
.focusable(false)
.build()
)
// User settings information box
actions.add(GuidedAction.Builder(context)
.id(ACTION_ID_USER_SETTINGS_LABEL)
.title(R.string.setting_users_title)
.description(R.string.setting_users_description)
.infoOnly(true)
.focusable(false)
.build()
)
// Booru username setting
val currentBooruUserId = PreferencesManager.booruUserId
val actionBooruUserId = GuidedAction.Builder(context)
.id(ACTION_ID_BOORU_USER_ID)
.title(R.string.setting_booru_user_id_title)
.description(currentBooruUserId)
.editDescription(currentBooruUserId)
.descriptionEditable(true)
.build()
actions.add(actionBooruUserId)
// Booru API key setting
val currentBooruApiKey = PreferencesManager.booruApiKey
val actionBooruApiKey = GuidedAction.Builder(context)
.id(ACTION_ID_BOORU_API_KEY)
.title(R.string.setting_booru_api_key_title)
.description(currentBooruApiKey)
.editDescription(currentBooruApiKey)
.descriptionEditable(true)
.build()
actions.add(actionBooruApiKey)
}
override fun onSubGuidedActionClicked(action: GuidedAction): Boolean {
when (action.id) {
SUBACTION_ID_BOORU_TYPE_DANBOORU -> {
findActionById(ACTION_ID_BOORU_TYPE)?.description = "danbooru"
notifyActionChanged(findActionPositionById(ACTION_ID_BOORU_TYPE))
PreferencesManager.booruType = "danbooru"
}
}
return true
}
override fun onGuidedActionClicked(action: GuidedAction) {
when (action.id) {
ACTION_ID_BOORU_URL -> {
val params: CharSequence? = action.editDescription
findActionById(ACTION_ID_BOORU_URL)?.description = params
notifyActionChanged(findActionPositionById(ACTION_ID_BOORU_URL))
PreferencesManager.booruUrl = params.toString()
}
ACTION_ID_BOORU_TAG_SEARCH -> {
val params: CharSequence? = action.editDescription
findActionById(ACTION_ID_BOORU_TAG_SEARCH)?.description = params
notifyActionChanged(findActionPositionById(ACTION_ID_BOORU_TAG_SEARCH))
PreferencesManager.booruTagSearch = params.toString()
}
ACTION_ID_BOORU_USER_ID -> {
val params: CharSequence? = action.editDescription
findActionById(ACTION_ID_BOORU_USER_ID)?.description = params
notifyActionChanged(findActionPositionById(ACTION_ID_BOORU_USER_ID))
PreferencesManager.booruUserId = params.toString()
}
ACTION_ID_BOORU_API_KEY -> {
val params: CharSequence? = action.editDescription
findActionById(ACTION_ID_BOORU_API_KEY)?.description = params
notifyActionChanged(findActionPositionById(ACTION_ID_BOORU_API_KEY))
PreferencesManager.booruApiKey = params.toString()
}
}
}
companion object {
private const val ACTION_ID_BOORU_URL = 1L
private const val ACTION_ID_BOORU_TYPE = 2L
private const val ACTION_ID_BOORU_TAG_SEARCH = 3L
private const val ACTION_ID_USER_SETTINGS_LABEL = 4L
private const val ACTION_ID_BOORU_USER_ID = 5L
private const val ACTION_ID_BOORU_API_KEY = 6L
private const val SUBACTION_ID_BOORU_TYPE_DANBOORU = 7L
}
}

View file

@ -1,14 +1,20 @@
package tv.projectivy.plugin.wallpaperprovider.sample
package nl.kurocon.plugin.wallpaperprovider.booru
import android.app.Service
import android.content.ContentResolver
import android.content.Intent
import android.net.Uri
import android.os.IBinder
import android.widget.Toast
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import tv.projectivy.plugin.wallpaperprovider.api.Event
import tv.projectivy.plugin.wallpaperprovider.api.IWallpaperProviderService
import tv.projectivy.plugin.wallpaperprovider.api.Wallpaper
import tv.projectivy.plugin.wallpaperprovider.api.WallpaperType
import java.io.IOException
class WallpaperProviderService: Service() {
@ -22,6 +28,32 @@ class WallpaperProviderService: Service() {
return binder
}
private fun getNewWallpapers(): List<Wallpaper> {
try {
return BooruAPI(this).getImageUrls(20).map {
Wallpaper(
uri = it.imageUrl,
type = WallpaperType.IMAGE,
author = it.author,
actionUri = it.sourceUri,
title = it.title,
source = it.author
)
}
} catch (e: IOException) {
CoroutineScope(Dispatchers.IO).launch {
withContext(Dispatchers.Main) {
Toast.makeText(
this@WallpaperProviderService,
"Failed to fetch new images: ${e.message}",
Toast.LENGTH_LONG
).show()
}
}
return emptyList()
}
}
private val binder = object : IWallpaperProviderService.Stub() {
override fun getWallpapers(event: Event?): List<Wallpaper> {
@ -29,18 +61,7 @@ class WallpaperProviderService: Service() {
return when (event) {
is Event.TimeElapsed -> {
// This is where you generate the wallpaper list that will be cycled every x minute
return listOf(
// DRAWABLE can be served from app drawable/
Wallpaper(getDrawableUri(R.drawable.ic_banner_drawable).toString(), WallpaperType.DRAWABLE),
// IMAGE can be served from app drawable/, local storage or internet
Wallpaper(PreferencesManager.imageUrl, WallpaperType.IMAGE, author = "Pixabay"),
// ANIMATED_DRAWABLE can be served from app drawable/
Wallpaper(getDrawableUri(R.drawable.anim_sample).toString(), WallpaperType.ANIMATED_DRAWABLE),
// LOTTIE can be served from app raw/, local storage or internet
Wallpaper(getDrawableUri(R.raw.gradient).toString(), WallpaperType.LOTTIE),
// VIDEO can be served from app raw/, local storage or internet (some formats might not be supported, though)
Wallpaper(getDrawableUri(R.raw.light).toString(), WallpaperType.VIDEO)
)
return getNewWallpapers()
}
// Below are "dynamic events" that might interest you in special cases
@ -57,7 +78,7 @@ class WallpaperProviderService: Service() {
is Event.ProgramCardFocused -> emptyList()
// When Projectivy enters or exits idle mode
is Event.LauncherIdleModeChanged -> {
return if (event.isIdle) { listOf(Wallpaper(getDrawableUri(R.drawable.ic_plugin).toString(), WallpaperType.DRAWABLE)) }
return if (event.isIdle) { getNewWallpapers() }
else emptyList()
}
else -> emptyList() // Returning an empty list won't change the currently displayed wallpaper

View file

@ -0,0 +1,269 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="320dp"
android:height="180dp"
android:viewportWidth="160"
android:viewportHeight="90">
<path
android:pathData="m73.6,50.58h-0.7c-0.5,0 -0.8,-0.4 -0.8,-0.9 0,-0.2 0.1,-0.4 0.2,-0.6l0.5,-0.5C73.1,48.28 73.1,47.78 72.8,47.48l-1.2,-1.2c-0.3,-0.3 -0.8,-0.3 -1.1,0L70,46.78c-0.3,0.3 -0.8,0.3 -1.1,0 -0.2,-0.2 -0.2,-0.4 -0.2,-0.6v-0.7c0,-0.4 -0.4,-0.8 -0.8,-0.8v0L66.1,44.68c-0.4,0 -0.8,0.4 -0.8,0.8v0,0.7c0,0.5 -0.4,0.8 -0.9,0.8 -0.2,0 -0.3,-0.1 -0.5,-0.2l-0.5,-0.5c-0.3,-0.3 -0.8,-0.3 -1.1,0L61.1,47.48c-0.3,0.3 -0.3,0.8 0,1.1 0,0 0,0 0,0l0.4,0.4c0.4,0.3 0.4,0.9 0,1.3 -0.2,0.2 -0.4,0.3 -0.6,0.3h-0.7c-0.4,0 -0.8,0.4 -0.8,0.8 0,0 0,0 0,0v1.6c0,0.4 0.4,0.8 0.8,0.8 0,0 0,0 0,0h0.7c0.5,0 0.9,0.5 0.8,1 0,0.2 -0.1,0.4 -0.2,0.5L61.1,55.88c-0.3,0.3 -0.3,0.8 0,1.1 0,0 0,0 0,0l1.2,1.2c0.3,0.3 0.8,0.3 1.1,0 0,0 0,0 0,0l0.5,-0.5c0.4,-0.3 0.9,-0.3 1.2,0.1 0.1,0.1 0.2,0.3 0.2,0.5v0.7c0,0.4 0.3,0.8 0.8,0.9 0,0 0,0 0,0h1.6c0.4,0 0.8,-0.4 0.8,-0.8 0,0 0,0 0,0v-0.7c0,-0.5 0.5,-0.8 0.9,-0.8 0.2,0 0.4,0.1 0.5,0.2l0.5,0.5c0.3,0.3 0.8,0.3 1.1,0 0,0 0,0 0,0l1.2,-1.2c0.3,-0.3 0.3,-0.8 0,-1.1 0,0 0,0 0,0l-0.4,-0.4c-0.4,-0.4 -0.3,-1 0,-1.3 0.2,-0.1 0.4,-0.2 0.6,-0.3h0.7c0.4,0 0.8,-0.4 0.8,-0.8 0,0 0,0 0,0v-1.7c0,-0.5 -0.4,-0.9 -0.8,-0.9zM66.9,54.98c-1.5,0 -2.7,-1.2 -2.7,-2.7 0,-1.5 1.2,-2.7 2.7,-2.7 1.5,0 2.7,1.2 2.7,2.7v0c0,1.5 -1.2,2.7 -2.7,2.7z"
android:fillColor="#ffffff"/>
<path
android:pathData="m81,49.18c-0.4,-0.9 -2.4,-1.7 -5.7,-2.3 2.9,4.6 1.6,10.7 -3,13.7 -4.6,2.9 -10.7,1.6 -13.7,-3 -2.4,-3.7 -2,-8.6 1,-11.9 -2.9,-0.1 -6.1,-0.1 -9.7,-0.1 -19.6,0 -30,1.4 -31.1,3.7 0,0 -1.1,2.1 -1,6.8h11.1c0.5,-0.1 0.9,0.2 1,0.7 0,0 0,0.1 0,0.1 0,0.5 -0.6,0.8 -1.2,0.8L17.9,57.68c0.1,0.7 0.2,1.5 0.3,2.3h13.1c0.5,-0.1 0.9,0.2 1,0.7 0,0 0,0.1 0,0.1 0,0.5 -0.6,0.8 -1.2,0.8L18.4,61.58c0.1,0.8 0.3,1.5 0.4,2.2h14.8c0.5,-0.1 0.9,0.2 1,0.7 0,0 0,0.1 0,0.1 0,0.4 -0.6,0.8 -1.2,0.8L19.2,65.38c1.5,5.7 2.9,5.7 2.9,5.7h2v1.2c0,0.6 1.2,1 2.4,1L36.1,73.28c1.2,0 2.4,-0.5 2.4,-1v-1.2h22.7v1.2c0,0.6 1.2,1 2.4,1h9.6c1.2,0 2.4,-0.5 2.4,-1v-1.2h2c0,0 2.2,0 4,-10.8 1.3,-7.8 -0.6,-11.1 -0.6,-11.1z"
android:fillColor="#904049"/>
<path
android:pathData="M100,59.9v5h-1V53.1h1v1.5h0c0.3,-0.6 0.7,-1 1.2,-1.3s1.1,-0.4 1.7,-0.4c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.8s0.5,0.8 0.6,1.2s0.2,1 0.2,1.6c0,0.7 -0.1,1.3 -0.2,1.8s-0.4,1 -0.7,1.4s-0.7,0.7 -1.1,0.9s-0.9,0.3 -1.5,0.3C101.4,61.3 100.6,60.8 100,59.9L100,59.9zM100,57.8c0,0.4 0.1,0.7 0.2,1s0.3,0.6 0.5,0.8s0.5,0.4 0.8,0.6s0.7,0.2 1,0.2c0.4,0 0.8,-0.1 1.1,-0.3s0.6,-0.4 0.8,-0.7s0.4,-0.7 0.5,-1.1s0.2,-0.9 0.2,-1.5c0,-0.5 -0.1,-0.9 -0.2,-1.3s-0.3,-0.7 -0.5,-1s-0.5,-0.5 -0.8,-0.6s-0.6,-0.2 -1,-0.2c-0.4,0 -0.8,0.1 -1.1,0.2s-0.6,0.4 -0.9,0.6s-0.4,0.6 -0.5,0.9s-0.2,0.7 -0.2,1.1V57.8z"
android:fillColor="#904049"/>
<path
android:pathData="M109.2,61.1V49.3h1v11.8H109.2z"
android:fillColor="#904049"/>
<path
android:pathData="M119.7,61.1v-1.4h0c-0.5,1 -1.4,1.5 -2.5,1.5c-1.9,0 -2.9,-1.2 -2.9,-3.5v-4.7h1v4.5c0,1 0.2,1.7 0.5,2.1s0.9,0.7 1.6,0.7c0.3,0 0.7,-0.1 0.9,-0.2s0.5,-0.3 0.7,-0.6s0.4,-0.5 0.5,-0.9s0.2,-0.7 0.2,-1.1v-4.6h1v8H119.7z"
android:fillColor="#904049"/>
<path
android:pathData="M130.5,60.5c0,1.5 -0.3,2.6 -1,3.3c-0.7,0.7 -1.7,1.1 -3.1,1.1c-0.9,0 -1.7,-0.2 -2.5,-0.6v-1c0.9,0.5 1.7,0.7 2.5,0.7c2.1,0 3.1,-1.1 3.1,-3.3v-1h0c-0.6,1.1 -1.6,1.6 -2.8,1.6c-0.5,0 -0.9,-0.1 -1.4,-0.3s-0.8,-0.4 -1.1,-0.8s-0.5,-0.8 -0.7,-1.3s-0.2,-1 -0.2,-1.7c0,-0.7 0.1,-1.3 0.3,-1.8s0.4,-1 0.7,-1.4s0.7,-0.7 1.2,-0.9s1,-0.3 1.5,-0.3c1.1,0 2,0.5 2.5,1.4h0v-1.2h1V60.5zM129.5,56.3c0,-0.3 -0.1,-0.6 -0.2,-0.9s-0.3,-0.6 -0.5,-0.8s-0.5,-0.4 -0.8,-0.5c-0.3,-0.1 -0.6,-0.2 -1,-0.2c-0.4,0 -0.8,0.1 -1.1,0.2s-0.6,0.4 -0.9,0.7s-0.4,0.7 -0.5,1.1s-0.2,0.9 -0.2,1.4c0,0.5 0.1,0.9 0.2,1.3s0.3,0.7 0.5,1s0.5,0.5 0.8,0.6s0.7,0.2 1,0.2c0.4,0 0.8,-0.1 1.1,-0.2c0.3,-0.1 0.6,-0.3 0.8,-0.6s0.4,-0.5 0.5,-0.9s0.2,-0.7 0.2,-1.1V56.3z"
android:fillColor="#904049"/>
<path
android:pathData="M135,51.1c-0.2,0 -0.4,-0.1 -0.5,-0.2s-0.2,-0.3 -0.2,-0.5c0,-0.2 0.1,-0.4 0.2,-0.5s0.3,-0.2 0.5,-0.2c0.1,0 0.2,0 0.3,0.1s0.2,0.1 0.2,0.1s0.1,0.1 0.2,0.2s0.1,0.2 0.1,0.3c0,0.1 0,0.2 -0.1,0.3s-0.1,0.2 -0.2,0.2s-0.1,0.1 -0.2,0.2S135.1,51.1 135,51.1zM134.5,61.1v-8h1v8H134.5z"
android:fillColor="#904049"/>
<path
android:pathData="M144.4,61.1v-4.6c0,-1.8 -0.7,-2.7 -2,-2.7c-0.3,0 -0.7,0.1 -1,0.2s-0.6,0.3 -0.8,0.6s-0.4,0.5 -0.5,0.9s-0.2,0.7 -0.2,1.1v4.6h-1v-8h1v1.4h0c0.6,-1.1 1.5,-1.6 2.7,-1.6c0.9,0 1.5,0.3 2,0.9s0.7,1.4 0.7,2.5v4.9H144.4z"
android:fillColor="#904049"/>
<path
android:pathData="m91.22,39.61q0,1.35 -0.62,2.43 -0.62,1.07 -1.56,1.64 -0.71,0.43 -1.56,0.6 -0.85,0.17 -2.01,0.17h-3.42v-9.69h3.52q1.18,0 2.04,0.2 0.86,0.2 1.45,0.56 1,0.61 1.58,1.65 0.58,1.04 0.58,2.44zM88.63,39.59q0,-0.96 -0.35,-1.63 -0.35,-0.68 -1.1,-1.07 -0.38,-0.19 -0.79,-0.25 -0.4,-0.07 -1.2,-0.07h-0.63v6.07h0.63q0.89,0 1.31,-0.08 0.42,-0.08 0.81,-0.3 0.68,-0.39 1,-1.04 0.32,-0.66 0.32,-1.62zM97.42,42.54L97.42,41.02q-0.48,0.04 -1.03,0.11 -0.55,0.07 -0.84,0.16 -0.35,0.11 -0.54,0.33 -0.18,0.21 -0.18,0.55 0,0.23 0.04,0.37 0.04,0.14 0.2,0.27 0.15,0.13 0.36,0.2 0.21,0.06 0.65,0.06 0.35,0 0.71,-0.14 0.36,-0.14 0.64,-0.38zM97.42,43.68q-0.19,0.14 -0.47,0.35 -0.28,0.2 -0.53,0.32 -0.35,0.16 -0.72,0.23 -0.37,0.08 -0.81,0.08 -1.04,0 -1.74,-0.64 -0.7,-0.64 -0.7,-1.65 0,-0.8 0.36,-1.31 0.36,-0.51 1.02,-0.8 0.65,-0.29 1.61,-0.42 0.96,-0.12 2,-0.18v-0.04q0,-0.61 -0.49,-0.83 -0.49,-0.23 -1.46,-0.23 -0.58,0 -1.24,0.21 -0.66,0.2 -0.94,0.31h-0.21v-1.76q0.37,-0.1 1.2,-0.23 0.84,-0.14 1.68,-0.14 2,0 2.88,0.62 0.89,0.61 0.89,1.93v4.97h-2.32zM109.24,44.45h-2.36v-3.63q0,-0.44 -0.05,-0.88 -0.05,-0.44 -0.16,-0.65 -0.13,-0.24 -0.38,-0.35 -0.25,-0.11 -0.7,-0.11 -0.32,0 -0.65,0.1 -0.33,0.1 -0.71,0.33v5.18h-2.34v-7.31h2.34v0.81q0.63,-0.49 1.2,-0.75 0.58,-0.26 1.28,-0.26 1.18,0 1.85,0.69 0.67,0.69 0.67,2.06zM119.03,40.69q0,1.73 -0.96,2.81 -0.95,1.09 -2.38,1.09 -0.61,0 -1.07,-0.13 -0.46,-0.13 -0.88,-0.38l-0.1,0.36h-2.25L111.4,34.32h2.34v3.58q0.54,-0.43 1.1,-0.7 0.57,-0.27 1.3,-0.27 1.39,0 2.14,1 0.75,1 0.75,2.75zM116.61,40.74q0,-0.98 -0.33,-1.5 -0.33,-0.53 -1.18,-0.53 -0.33,0 -0.68,0.1 -0.35,0.1 -0.67,0.29v3.67q0.25,0.09 0.48,0.12 0.23,0.03 0.55,0.03 0.93,0 1.39,-0.55 0.46,-0.55 0.46,-1.64zM128.2,40.8q0,1.8 -1.05,2.85 -1.05,1.04 -2.95,1.04 -1.9,0 -2.96,-1.04 -1.05,-1.04 -1.05,-2.85 0,-1.82 1.05,-2.85 1.06,-1.04 2.95,-1.04 1.91,0 2.96,1.04 1.05,1.04 1.05,2.85zM125.31,42.58q0.23,-0.28 0.34,-0.67 0.12,-0.4 0.12,-1.09 0,-0.64 -0.12,-1.08 -0.12,-0.44 -0.33,-0.7 -0.21,-0.27 -0.5,-0.38 -0.29,-0.11 -0.63,-0.11 -0.34,0 -0.61,0.09 -0.26,0.09 -0.5,0.36 -0.21,0.25 -0.35,0.7 -0.12,0.44 -0.12,1.11 0,0.6 0.11,1.04 0.11,0.44 0.33,0.7 0.21,0.25 0.49,0.37 0.29,0.12 0.66,0.12 0.32,0 0.61,-0.1 0.29,-0.11 0.49,-0.36zM137.35,40.8q0,1.8 -1.05,2.85 -1.05,1.04 -2.95,1.04 -1.9,0 -2.96,-1.04 -1.05,-1.04 -1.05,-2.85 0,-1.82 1.05,-2.85 1.06,-1.04 2.95,-1.04 1.91,0 2.96,1.04 1.05,1.04 1.05,2.85zM134.47,42.58q0.23,-0.28 0.34,-0.67 0.12,-0.4 0.12,-1.09 0,-0.64 -0.12,-1.08 -0.12,-0.44 -0.33,-0.7 -0.21,-0.27 -0.5,-0.38 -0.29,-0.11 -0.63,-0.11 -0.34,0 -0.61,0.09 -0.26,0.09 -0.5,0.36 -0.21,0.25 -0.35,0.7 -0.12,0.44 -0.12,1.11 0,0.6 0.11,1.04 0.11,0.44 0.33,0.7 0.21,0.25 0.49,0.37 0.29,0.12 0.66,0.12 0.32,0 0.61,-0.1 0.29,-0.11 0.49,-0.36zM144.33,39.37h-0.21q-0.15,-0.05 -0.48,-0.08 -0.33,-0.03 -0.55,-0.03 -0.5,0 -0.89,0.07 -0.38,0.07 -0.83,0.22v4.9h-2.34v-7.31h2.34v1.07q0.77,-0.66 1.35,-0.88 0.57,-0.22 1.05,-0.22 0.12,0 0.28,0.01 0.16,0.01 0.27,0.02zM152.94,44.45h-2.34v-0.81q-0.65,0.49 -1.19,0.76 -0.54,0.25 -1.29,0.25 -1.21,0 -1.87,-0.7 -0.65,-0.7 -0.65,-2.06v-4.76h2.36v3.63q0,0.55 0.03,0.92 0.04,0.36 0.17,0.61 0.12,0.24 0.37,0.35 0.25,0.11 0.7,0.11 0.3,0 0.66,-0.11 0.36,-0.11 0.7,-0.33v-5.18h2.34z"
android:strokeLineJoin="round"
android:strokeWidth="3.77953"
android:fillColor="#009be6"/>
<path
android:pathData="M30.15,63.88C27.26,63.45 25,62.31 23.11,60.32 21.57,58.71 20.67,56.92 20.15,54.45 19.91,53.36 19.83,51.13 19.97,49.89c0.48,-4.18 2.27,-8.27 5.24,-11.95 0.85,-1.05 2.77,-2.98 3.86,-3.88 5.76,-4.74 12.66,-6.57 18.21,-4.81 0.99,0.31 2.02,0.8 2.87,1.38 1,0.67 2.49,2.17 3.15,3.17 1.83,2.77 2.43,6.58 1.64,10.28 -0.31,1.46 -0.5,1.82 -1.35,2.69 -0.42,0.43 -1,1.15 -1.31,1.63 -0.37,0.57 -0.86,1.15 -1.47,1.75L49.91,51.04l0,0.75c0,0.49 -0.04,0.83 -0.12,0.98 -0.07,0.13 -1.68,1.79 -3.58,3.69l-3.46,3.45 -0.88,0.04c-0.86,0.04 -0.89,0.05 -1.18,0.32 -0.16,0.15 -0.64,0.5 -1.07,0.77 -0.42,0.27 -1.13,0.84 -1.58,1.28 -0.79,0.76 -0.84,0.79 -1.63,1.05 -0.45,0.15 -1.18,0.33 -1.62,0.41 -1.11,0.2 -3.56,0.24 -4.62,0.09z"
android:fillColor="#fdf6f1"/>
<path
android:pathData="M30.11,63.79C26.99,63.36 24.35,61.88 22.44,59.49 21.22,57.95 20.42,56.02 20.05,53.7 19.89,52.7 19.92,50.31 20.09,49.15 20.82,44.39 23.3,39.73 27.16,35.87 33.79,29.24 42.74,26.84 48.98,30.02c3.2,1.63 5.38,4.64 6.02,8.33 0.28,1.62 0.24,3.63 -0.1,5.16 -0.13,0.58 -0.18,0.66 -0.76,1.26 -0.53,0.55 -0.7,0.81 -1.22,1.88l-0.61,1.24 -1.12,1.11C50.57,49.62 50.08,50.04 50.08,49.97c0,-0.08 0.1,-0.39 0.21,-0.71 0.3,-0.8 0.28,-0.92 -0.08,-0.57l-0.29,0.28 -0.03,1.81c-0.02,1.51 -0.05,1.85 -0.17,2.02 -0.31,0.46 -6.9,7 -7.09,7.04 -0.11,0.02 -0.7,0.06 -1.3,0.08l-1.1,0.04 -0.59,0.57c-0.5,0.48 -0.77,0.66 -1.77,1.13 -1.02,0.49 -1.27,0.65 -1.82,1.18 -0.58,0.55 -0.7,0.63 -1.2,0.76 -1.28,0.32 -3.25,0.4 -4.74,0.19z"
android:fillColor="#fcf2ea"/>
<path
android:pathData="M29.6,63.67C24.89,62.81 21.52,59.68 20.37,55.13 20.07,53.97 19.98,53.07 19.98,51.52 19.98,48.59 20.66,45.85 22.16,42.84 23.47,40.18 24.95,38.15 27.19,35.9 29.44,33.66 31.47,32.18 34.13,30.86c2.21,-1.09 4.29,-1.75 6.5,-2.06 1.4,-0.19 4,-0.13 5.18,0.13 4.81,1.04 8.01,4.22 9.07,9 0.16,0.74 0.2,1.14 0.2,2.43 0,2.15 -0.02,2.26 -0.68,2.95 -0.5,0.52 -0.56,0.63 -0.9,1.59 -0.53,1.51 -0.74,1.86 -1.76,2.87 -0.49,0.49 -0.9,0.84 -0.9,0.78 0,-0.06 0.12,-0.5 0.26,-0.97 0.39,-1.31 0.37,-1.34 -0.46,-0.51l-0.71,0.71 -0.06,2.44c-0.03,1.34 -0.09,2.5 -0.14,2.58 -0.04,0.08 -1.65,1.71 -3.57,3.62L42.68,59.88l-1.57,0.04 -1.57,0.04 -0.74,0.73c-0.83,0.82 -1.13,0.99 -2.62,1.52 -0.95,0.33 -1.07,0.4 -1.54,0.87 -0.28,0.28 -0.65,0.55 -0.81,0.6 -0.16,0.05 -0.99,0.11 -1.84,0.13 -1.23,0.03 -1.71,-0 -2.39,-0.13z"
android:fillColor="#fcede2"/>
<path
android:pathData="m30.35,63.73c-1.67,-0.16 -3.58,-0.8 -4.96,-1.67C22.65,60.35 20.96,57.84 20.22,54.43 20.05,53.65 20.03,53.27 20.02,51.6 20.02,49.5 20.1,48.83 20.58,46.99 22.3,40.44 27.52,34.19 34,30.93 35.92,29.97 37.89,29.3 39.93,28.92 40.81,28.76 41.26,28.73 42.89,28.73c1.67,0 2.04,0.03 2.82,0.2 2.49,0.54 4.46,1.58 6.1,3.22C53.9,34.25 55.04,37.1 55.04,40.21l0,1.15l-0.5,0.53c-0.44,0.46 -0.52,0.59 -0.61,1.04 -0.17,0.85 -0.68,2.45 -0.92,2.89 -0.24,0.45 -1.57,1.78 -1.62,1.62 -0.02,-0.05 0.08,-0.57 0.22,-1.15 0.14,-0.58 0.28,-1.23 0.31,-1.44l0.06,-0.38 -1.03,1.03 -1.03,1.03 -0.06,3.04c-0.04,2.22 -0.09,3.09 -0.17,3.25 -0.19,0.37 -6.9,7 -7.14,7.05 -0.12,0.03 -1.54,0.06 -3.16,0.08l-2.94,0.04 -0.35,0.35 -0.35,0.35 0.38,-0.06c0.21,-0.03 0.86,-0.17 1.44,-0.31 0.58,-0.14 1.1,-0.24 1.15,-0.22 0.15,0.05 -1.17,1.38 -1.62,1.62 -0.45,0.24 -2.09,0.77 -2.88,0.93 -0.44,0.09 -0.58,0.16 -1.01,0.57 -0.66,0.63 -1.02,0.7 -2.86,0.52z"
android:fillColor="#fce9db"/>
<path
android:pathData="m30.28,63.69c-0.66,-0.07 -2.04,-0.39 -2.77,-0.65C25.86,62.46 24.45,61.55 23.23,60.28 21.63,58.61 20.68,56.68 20.17,54.13 19.96,53.04 19.96,50.12 20.18,48.91 21.04,44.11 23.42,39.69 27.2,35.91 30.98,32.13 35.39,29.75 40.2,28.89c1.33,-0.24 4.23,-0.22 5.41,0.04 2.52,0.55 4.28,1.42 5.88,2.94 2.14,2.02 3.44,4.91 3.49,7.74l0.02,0.87 -0.44,0.45 -0.44,0.45 -0.18,0.98c-0.24,1.27 -0.48,2.17 -0.73,2.65 -0.21,0.41 -1.36,1.61 -1.46,1.52 -0.03,-0.03 0.03,-0.43 0.13,-0.89 0.1,-0.46 0.21,-1.17 0.23,-1.57l0.05,-0.73 -1.12,1.11 -1.12,1.11 -0.05,3.5c-0.04,2.61 -0.08,3.56 -0.16,3.72 -0.19,0.37 -6.9,7 -7.13,7.05 -0.12,0.03 -1.74,0.06 -3.61,0.07l-3.4,0.02 -0.45,0.46 -0.45,0.46 0.73,-0.05c0.4,-0.03 1.1,-0.13 1.57,-0.23 0.46,-0.1 0.87,-0.16 0.9,-0.13 0.03,0.03 -0.27,0.38 -0.68,0.77 -0.72,0.7 -0.76,0.72 -1.58,0.97 -0.46,0.14 -1.3,0.34 -1.87,0.44l-1.03,0.18 -0.45,0.44c-0.45,0.44 -0.45,0.44 -1.03,0.45 -0.32,0.01 -0.73,-0 -0.92,-0.02z"
android:fillColor="#fce5d3"/>
<path
android:pathData="M29.04,63.44C26.77,62.95 24.94,61.97 23.4,60.42 21.47,58.48 20.37,56.08 20.06,53.12 19.74,50.1 20.44,46.54 21.99,43.25 24.49,37.94 29.24,33.2 34.54,30.7c6.58,-3.1 13.2,-2.56 17.16,1.4 1.55,1.55 2.55,3.41 2.99,5.56 0.09,0.47 0.17,1.05 0.17,1.3 0,0.43 -0.03,0.48 -0.4,0.86l-0.4,0.4 -0.08,0.88c-0.1,1.11 -0.37,2.51 -0.58,2.99C53.23,44.52 52.04,45.74 52.04,45.51c0,-0.08 0.05,-0.52 0.12,-0.98 0.17,-1.19 0.25,-2.39 0.16,-2.44 -0.04,-0.03 -0.61,0.48 -1.25,1.13l-1.18,1.18 -0.05,4.1c-0.04,3.11 -0.08,4.15 -0.16,4.31 -0.19,0.37 -6.9,7 -7.14,7.05 -0.12,0.03 -2.01,0.06 -4.21,0.07L34.35,59.94l-0.51,0.51c-0.28,0.28 -0.49,0.54 -0.46,0.59 0.06,0.09 1.24,0.02 2.44,-0.16C36.28,60.81 36.72,60.75 36.8,60.75c0.18,0 -0.92,1.14 -1.28,1.33 -0.39,0.21 -1.62,0.46 -2.86,0.59l-1.18,0.12 -0.39,0.39c-0.39,0.38 -0.4,0.39 -0.95,0.38C29.85,63.56 29.35,63.51 29.04,63.44Z"
android:fillColor="#fce1cc"/>
<path
android:pathData="M28.19,63.19C26.09,62.65 24.04,61.32 22.68,59.63 19.63,55.84 19.16,50.42 21.39,44.65c0.57,-1.48 1.8,-3.75 2.76,-5.1 2.12,-2.98 5.01,-5.7 7.96,-7.51 6.98,-4.28 14.39,-4.44 19.07,-0.42 1.8,1.54 3.24,4.13 3.48,6.24l0.06,0.51 -0.35,0.36 -0.35,0.36 -0.09,1.54c-0.06,1.01 -0.15,1.77 -0.26,2.22 -0.17,0.65 -0.2,0.71 -0.78,1.28l-0.6,0.6 0.07,-0.9c0.08,-1.11 0.08,-2.88 -0,-2.96 -0.04,-0.04 -0.61,0.48 -1.27,1.14l-1.2,1.2 -0.04,4.69c-0.03,3.61 -0.07,4.74 -0.16,4.91 -0.19,0.37 -6.9,7 -7.14,7.05 -0.12,0.03 -2.28,0.06 -4.81,0.07l-4.6,0.02 -0.53,0.53c-0.29,0.29 -0.5,0.56 -0.47,0.59 0.09,0.09 1.85,0.09 2.96,0l0.9,-0.07 -0.61,0.61c-0.58,0.59 -0.64,0.62 -1.28,0.78 -0.4,0.1 -1.31,0.2 -2.21,0.26l-1.54,0.09 -0.35,0.33c-0.42,0.4 -0.65,0.42 -1.83,0.12z"
android:fillColor="#fcdcc4"/>
<path
android:pathData="M27.37,62.88C25.87,62.37 24.41,61.43 23.24,60.2 21.56,58.44 20.5,56.19 20.15,53.63 20.02,52.66 20.04,50.26 20.19,49.21 20.49,47.11 21.22,44.83 22.25,42.77 25.64,36.03 32.26,30.67 39.06,29.17c1.56,-0.34 2.47,-0.42 4.33,-0.37 1.82,0.05 2.75,0.21 4.12,0.7 3.14,1.13 5.62,3.59 6.63,6.55 0.28,0.81 0.27,0.99 -0.07,1.33l-0.28,0.29 -0,2.15c-0,2.48 -0,2.48 -0.75,3.21l-0.47,0.46 -0.05,-1.52c-0.05,-1.43 -0.17,-2.47 -0.31,-2.61 -0.03,-0.03 -0.57,0.45 -1.2,1.08l-1.14,1.15 -0.04,5.5C49.81,51.39 49.78,52.63 49.69,52.8 49.5,53.17 42.79,59.8 42.55,59.85c-0.12,0.03 -2.65,0.06 -5.62,0.07l-5.41,0.02 -0.47,0.47c-0.26,0.26 -0.44,0.49 -0.41,0.53 0.15,0.14 1.18,0.26 2.61,0.31l1.52,0.05 -0.53,0.53c-0.34,0.34 -0.63,0.56 -0.8,0.59 -0.72,0.15 -2.14,0.2 -3.25,0.12l-1.18,-0.09 -0.32,0.31c-0.37,0.36 -0.58,0.38 -1.34,0.13z"
android:fillColor="#fbd5b7"/>
<path
android:pathData="M26.65,62.51C24.06,61.56 21.66,58.9 20.7,55.93 20.21,54.39 20.11,53.68 20.11,51.6 20.1,49.43 20.23,48.49 20.78,46.59 23.04,38.76 30.05,31.75 37.88,29.49 39.78,28.94 40.72,28.81 42.89,28.82c1.66,0 2.04,0.03 2.79,0.19 2.43,0.53 4.35,1.52 5.9,3.05 1.02,1.01 1.92,2.37 2.26,3.41 0.1,0.32 0.1,0.34 -0.21,0.66l-0.32,0.33 0.18,0.89c0.34,1.69 0.39,3.62 0.12,4.13 -0.05,0.09 -0.26,0.33 -0.47,0.54 -0.46,0.44 -0.45,0.46 -0.53,-0.84 -0.08,-1.34 -0.5,-3.25 -0.72,-3.25 -0.03,0 -0.5,0.44 -1.04,0.98l-0.98,0.98 -0.03,6.31c-0.02,3.87 -0.06,6.39 -0.11,6.53 -0.13,0.32 -6.92,7.07 -7.18,7.13 -0.12,0.03 -3.03,0.06 -6.47,0.07l-6.26,0.02 -0.3,0.29C29.35,60.4 29.21,60.56 29.21,60.59c0,0.22 1.91,0.64 3.29,0.73 0.52,0.03 0.99,0.08 1.05,0.12 0.07,0.04 -0.04,0.2 -0.34,0.5 -0.43,0.43 -0.47,0.45 -1.13,0.54 -0.8,0.11 -2.1,0.01 -3.47,-0.27l-0.87,-0.18 -0.31,0.31c-0.35,0.34 -0.35,0.34 -0.78,0.18z"
android:fillColor="#d8d4d1"/>
<path
android:pathData="M26.65,62.51C24.06,61.56 21.66,58.9 20.7,55.93 20.21,54.39 20.11,53.68 20.11,51.6 20.1,49.43 20.23,48.49 20.78,46.59 23.04,38.76 30.05,31.75 37.88,29.49 39.78,28.94 40.72,28.81 42.89,28.82c1.66,0 2.04,0.03 2.79,0.19 2.43,0.53 4.35,1.52 5.9,3.05 1.02,1.01 1.92,2.37 2.26,3.41 0.1,0.32 0.1,0.34 -0.21,0.66l-0.32,0.33 0.18,0.89c0.34,1.69 0.39,3.62 0.12,4.13 -0.05,0.09 -0.26,0.33 -0.47,0.54 -0.46,0.44 -0.45,0.46 -0.53,-0.84 -0.08,-1.34 -0.5,-3.25 -0.72,-3.25 -0.03,0 -0.5,0.44 -1.04,0.98l-0.98,0.98 -0.03,6.18c-0.02,3.4 -0.06,6.31 -0.11,6.48 -0.06,0.24 -0.79,1.01 -3.56,3.77L42.68,59.79l-2.05,0.05c-1.13,0.03 -3.75,0.05 -5.82,0.05 -4.72,0.01 -4.96,0.03 -5.32,0.37 -0.15,0.14 -0.28,0.29 -0.28,0.32 0,0.22 1.91,0.64 3.29,0.73 0.52,0.03 0.99,0.08 1.05,0.12 0.07,0.04 -0.04,0.2 -0.34,0.5 -0.43,0.43 -0.47,0.45 -1.13,0.54 -0.8,0.11 -2.1,0.01 -3.47,-0.27l-0.87,-0.18 -0.31,0.31c-0.35,0.34 -0.35,0.34 -0.78,0.18z"
android:fillColor="#fbd0ae"/>
<path
android:pathData="m29.82,62.38c-0.3,-0.04 -1.04,-0.2 -1.65,-0.35l-1.1,-0.28 -0.28,0.27C26.64,62.17 26.44,62.29 26.36,62.29 25.9,62.29 24.28,61.21 23.37,60.29 21.83,58.73 20.85,56.84 20.31,54.38 20.08,53.37 20,51.03 20.14,49.81 20.53,46.45 22.02,42.65 24.15,39.63 25.9,37.14 28.43,34.61 30.92,32.86 33.94,30.73 37.74,29.23 41.1,28.85 42.35,28.71 44.57,28.79 45.67,29.03c2.97,0.63 5.29,2.05 6.91,4.23 0.51,0.68 1,1.59 1,1.84 0,0.07 -0.12,0.25 -0.26,0.38 -0.31,0.29 -0.3,0.34 0.03,1.58 0.26,0.98 0.44,2.37 0.39,3.13 -0.03,0.54 -0.05,0.56 -0.52,1.03l-0.48,0.48 -0.05,-0.42c-0.26,-2.12 -0.65,-3.72 -0.96,-3.98 -0.1,-0.08 -0.28,0.05 -0.99,0.77l-0.87,0.87 -0.03,6.65C49.82,49.25 49.77,52.38 49.73,52.54c-0.06,0.24 -0.8,1.02 -3.56,3.77L42.68,59.79l-2.05,0.05c-1.13,0.03 -3.98,0.05 -6.33,0.05 -4.81,0.01 -5.44,0.04 -5.65,0.27 -0.22,0.24 -0.04,0.38 0.9,0.68 0.71,0.23 1.43,0.36 3.08,0.56l0.38,0.05 -0.48,0.48 -0.48,0.48 -0.83,0.01c-0.46,0.01 -1.08,-0.02 -1.38,-0.06z"
android:fillColor="#fbcdaa"/>
<path
android:pathData="m29.08,62.21c-0.43,-0.09 -1.17,-0.29 -1.66,-0.46l-0.89,-0.31 -0.32,0.31 -0.32,0.31 -0.4,-0.19C24.92,61.59 23.87,60.78 23.26,60.14 21.29,58.11 20.21,55.4 20.09,52.2 19.97,49.08 20.64,46.18 22.24,42.92 23.54,40.27 25.14,38.07 27.38,35.85 33.33,29.96 41.2,27.43 47.28,29.47c2.55,0.85 4.83,2.71 5.87,4.77l0.19,0.37 -0.31,0.32 -0.31,0.32 0.34,1.02c0.41,1.24 0.61,2.3 0.61,3.33l0,0.77 -0.43,0.42c-0.23,0.23 -0.44,0.4 -0.46,0.38 -0.02,-0.02 -0.1,-0.46 -0.18,-0.98 -0.18,-1.18 -0.48,-2.22 -0.86,-3.03l-0.3,-0.64 -0.79,0.79 -0.79,0.79 -0.03,7.08c-0.01,3.89 -0.06,7.21 -0.1,7.38 -0.06,0.24 -0.8,1.02 -3.56,3.77L42.68,59.79l-2.05,0.05c-1.13,0.03 -4.15,0.05 -6.71,0.05 -4.61,0.01 -5.95,0.05 -6.03,0.18 -0.06,0.1 1.01,0.62 1.72,0.83 0.33,0.1 1.1,0.26 1.71,0.36 0.61,0.1 1.13,0.2 1.15,0.22 0.02,0.02 -0.15,0.22 -0.38,0.46L31.66,62.38 30.75,62.37c-0.5,-0 -1.25,-0.08 -1.68,-0.16z"
android:fillColor="#fbc9a3"/>
<path
android:pathData="m28.9,62.12c-0.79,-0.17 -1.52,-0.42 -2.66,-0.94l-0.62,-0.28 -0.3,0.29 -0.3,0.29 -0.31,-0.16C23.82,60.83 22.41,59.31 21.69,58.05 18.59,52.65 20.03,44.73 25.31,38.13 26.19,37.04 28.33,34.89 29.43,34.01 32.82,31.3 36.37,29.65 40.29,28.97c1.17,-0.2 3.88,-0.21 4.95,-0.01 2.27,0.42 4,1.2 5.64,2.53 0.64,0.52 1.45,1.43 1.71,1.93l0.16,0.31 -0.29,0.3 -0.29,0.3 0.2,0.45c0.83,1.88 1.09,2.77 1.17,4l0.05,0.81 -0.43,0.42 -0.43,0.42 -0.1,-0.5C52.45,38.91 52.11,37.78 51.82,37.15c-0.33,-0.72 -0.8,-1.45 -0.93,-1.45 -0.05,-0 -0.3,0.21 -0.56,0.47l-0.47,0.47 -0.03,7.8c-0.01,4.31 -0.06,7.93 -0.1,8.1 -0.06,0.24 -0.81,1.03 -3.57,3.78l-3.49,3.48 -1.41,0.02c-0.77,0.01 -1.79,0.03 -2.26,0.03 -0.47,0.01 -3.25,0.02 -6.18,0.02 -3.7,0.01 -5.32,0.04 -5.32,0.1 0,0.05 0.36,0.26 0.79,0.46 0.75,0.35 1.82,0.68 2.92,0.9l0.5,0.1 -0.41,0.42 -0.41,0.42 -0.6,-0.01c-0.33,-0 -0.96,-0.08 -1.39,-0.17z"
android:fillColor="#fbc398"/>
<path
android:pathData="m28.44,61.95c-0.85,-0.21 -1.88,-0.65 -2.77,-1.19C25.27,60.52 24.89,60.33 24.83,60.33c-0.06,0 -0.23,0.11 -0.36,0.25 -0.29,0.31 -0.37,0.28 -1.1,-0.42C21.98,58.84 20.88,56.79 20.4,54.61 19.3,49.62 21.16,43.35 25.28,38.18 26.2,37.02 28.32,34.91 29.47,33.99 32.45,31.61 36.14,29.82 39.4,29.16 44.23,28.18 48.53,29.2 51.34,31.99c0.39,0.39 0.71,0.77 0.71,0.86 0,0.09 -0.1,0.25 -0.21,0.36 -0.28,0.26 -0.27,0.35 0.08,0.93 0.85,1.42 1.4,2.87 1.48,3.93l0.05,0.62 -0.33,0.34C52.93,39.22 52.75,39.37 52.72,39.37c-0.03,0 -0.2,-0.43 -0.37,-0.96 -0.38,-1.18 -0.94,-2.34 -1.46,-3 -0.47,-0.59 -0.59,-0.66 -0.84,-0.41l-0.19,0.19 -0.03,8.53c-0.02,4.73 -0.06,8.66 -0.1,8.83 -0.06,0.24 -0.8,1.03 -3.57,3.78l-3.49,3.48 -1.41,0.02c-0.77,0.01 -1.79,0.03 -2.26,0.03 -0.47,0.01 -3.32,0.02 -6.33,0.03 -5.02,0.01 -5.46,0.02 -5.3,0.15 0.31,0.25 1.53,0.78 2.42,1.05 0.48,0.15 0.87,0.3 0.87,0.33 0,0.04 -0.15,0.21 -0.32,0.38 -0.3,0.29 -0.36,0.32 -0.79,0.31C29.29,62.11 28.79,62.04 28.44,61.95Z"
android:fillColor="#d7c5b7"/>
<path
android:pathData="m28.44,61.95c-0.85,-0.21 -1.88,-0.65 -2.77,-1.19C25.27,60.52 24.89,60.33 24.83,60.33c-0.06,0 -0.23,0.11 -0.36,0.25 -0.29,0.31 -0.37,0.28 -1.1,-0.42C21.98,58.84 20.88,56.79 20.4,54.61 19.3,49.62 21.16,43.35 25.28,38.18 26.2,37.02 28.32,34.91 29.47,33.99 32.45,31.61 36.14,29.82 39.4,29.16 44.23,28.18 48.53,29.2 51.34,31.99c0.39,0.39 0.71,0.77 0.71,0.86 0,0.09 -0.1,0.25 -0.21,0.36 -0.28,0.26 -0.27,0.35 0.08,0.93 0.85,1.42 1.4,2.87 1.48,3.93l0.05,0.62 -0.33,0.34C52.93,39.22 52.75,39.37 52.72,39.37c-0.03,0 -0.2,-0.43 -0.37,-0.96 -0.38,-1.18 -0.94,-2.34 -1.46,-3 -0.46,-0.59 -0.59,-0.65 -0.83,-0.42 -0.17,0.17 -0.17,0.29 -0.25,8.92 -0.07,8.4 -0.08,8.75 -0.24,8.97 -0.09,0.12 -1.68,1.74 -3.53,3.58L42.68,59.81l-2.7,0c-1.48,0 -4.96,0.03 -7.73,0.06 -4.42,0.05 -5.01,0.07 -4.87,0.18 0.31,0.24 1.54,0.77 2.41,1.04 0.48,0.15 0.87,0.3 0.87,0.33 0,0.04 -0.15,0.21 -0.32,0.38 -0.3,0.29 -0.36,0.32 -0.79,0.31C29.29,62.11 28.79,62.04 28.44,61.95Z"
android:fillColor="#f9be91"/>
<path
android:pathData="M28.48,61.91C27.38,61.67 26.03,61.02 24.84,60.14 24.53,59.91 24.22,59.73 24.15,59.73c-0.07,0 -0.21,0.1 -0.33,0.21 -0.11,0.12 -0.25,0.21 -0.31,0.21 -0.15,0 -1.09,-1.04 -1.5,-1.66C19.12,54.11 19.54,47.45 23.1,41.36 25.33,37.56 28.85,34.04 32.65,31.81 38.86,28.18 45.67,27.82 49.98,30.89 50.67,31.38 51.45,32.09 51.45,32.23c0,0.05 -0.11,0.2 -0.25,0.35l-0.25,0.26 0.56,0.81c0.66,0.95 1.42,2.47 1.6,3.2 0.26,1.07 0.26,1.04 -0.13,1.46 -0.19,0.21 -0.38,0.35 -0.42,0.32 -0.04,-0.04 -0.2,-0.42 -0.36,-0.85 -0.55,-1.43 -1.14,-2.38 -1.94,-3.15 -0.6,-0.57 -0.86,-0.66 -0.55,-0.18 0.12,0.19 0.14,0.77 0.13,5.36 -0,2.83 -0.03,6.91 -0.06,9.05l-0.05,3.89 -3.52,3.53 -3.52,3.53 -3.93,0.01c-2.16,0.01 -5.67,0.04 -7.78,0.06l-3.85,0.05 0.47,0.28c0.26,0.15 0.87,0.44 1.37,0.63 0.49,0.19 0.93,0.37 0.97,0.39 0.1,0.06 -0.64,0.79 -0.8,0.79 -0.07,-0 -0.37,-0.06 -0.65,-0.12z"
android:fillColor="#fab987"/>
<path
android:pathData="M27.84,61.64C26.7,61.34 24.99,60.31 23.95,59.29 23.67,59.01 23.39,58.79 23.34,58.79 23.3,58.79 23.16,58.88 23.05,59 22.94,59.12 22.81,59.21 22.75,59.21 22.55,59.21 21.85,58.23 21.39,57.29 20.52,55.53 20.15,53.8 20.15,51.57 20.15,48.88 20.73,46.36 22,43.52 24.41,38.17 29.46,33.11 34.81,30.71c2.82,-1.27 5.36,-1.85 8.02,-1.85 2.7,0 4.93,0.61 6.75,1.83 0.98,0.66 1.04,0.74 0.73,1.06C50.18,31.88 50.08,32.02 50.08,32.05c0,0.04 0.25,0.34 0.56,0.68 1.09,1.2 1.8,2.33 2.19,3.45 0.24,0.71 0.22,0.97 -0.12,1.29 -0.16,0.15 -0.31,0.27 -0.34,0.27 -0.03,0 -0.24,-0.36 -0.45,-0.79 -0.55,-1.09 -1.05,-1.82 -1.69,-2.48C49.68,33.94 48.94,33.39 48.76,33.39c-0.05,0 -0.27,0.17 -0.47,0.38l-0.38,0.38l0.62,0c0.66,0 1.06,0.14 1.21,0.42 0.1,0.19 0.12,9.01 0.03,14.68L49.71,52.76 46.2,56.29 42.68,59.81l-2.66,0c-1.46,0 -4.98,0.03 -7.81,0.06 -4.14,0.05 -5.13,0.08 -5.04,0.16 0.06,0.06 0.51,0.3 0.99,0.54 0.48,0.24 0.88,0.47 0.88,0.5 0,0.07 -0.62,0.7 -0.69,0.69 -0.02,-0 -0.25,-0.06 -0.51,-0.13z"
android:fillColor="#d2baa8"/>
<path
android:pathData="M27.84,61.64C26.7,61.34 24.99,60.31 23.95,59.29 23.67,59.01 23.39,58.79 23.34,58.79 23.3,58.79 23.16,58.88 23.05,59 22.94,59.12 22.81,59.21 22.75,59.21 22.55,59.21 21.85,58.23 21.39,57.29 20.52,55.53 20.15,53.8 20.15,51.57 20.15,48.88 20.73,46.36 22,43.52 24.41,38.17 29.46,33.11 34.81,30.71c2.82,-1.27 5.36,-1.85 8.02,-1.85 2.7,0 4.93,0.61 6.75,1.83 0.98,0.66 1.04,0.74 0.73,1.06C50.18,31.88 50.08,32.02 50.08,32.05c0,0.04 0.25,0.34 0.56,0.68 1.09,1.2 1.8,2.33 2.19,3.45 0.24,0.71 0.22,0.97 -0.12,1.29 -0.16,0.15 -0.31,0.27 -0.34,0.27 -0.03,0 -0.24,-0.36 -0.45,-0.79 -0.55,-1.09 -1.05,-1.82 -1.69,-2.48C49.68,33.94 48.94,33.39 48.76,33.39c-0.05,0 -0.27,0.17 -0.47,0.38l-0.38,0.38l0.62,0c0.68,0 1.06,0.14 1.22,0.44 0.07,0.14 0.08,2.41 0.04,9.13 -0.06,8.45 -0.07,8.96 -0.22,9.16 -0.09,0.12 -1.67,1.72 -3.52,3.57l-3.37,3.36 -5.04,0c-6.89,0 -10.6,0.08 -10.46,0.22 0.06,0.06 0.51,0.3 0.99,0.54 0.48,0.24 0.88,0.47 0.88,0.5 0,0.07 -0.62,0.7 -0.69,0.69 -0.02,-0 -0.25,-0.06 -0.51,-0.13z"
android:fillColor="#fab27a"/>
<path
android:pathData="M27.03,61.27C26.4,61.05 26,60.83 25.24,60.28 24.37,59.67 24.21,59.51 23.42,58.57c-0.36,-0.42 -0.68,-0.78 -0.73,-0.8 -0.04,-0.02 -0.21,0.09 -0.36,0.24l-0.28,0.27 -0.27,-0.4C21.22,57.09 20.64,55.57 20.36,54.15 20.17,53.25 20.1,50.9 20.23,49.81 20.66,45.96 22.5,41.76 25.28,38.26 26.2,37.11 28.4,34.91 29.55,33.99 32.34,31.78 35.6,30.13 38.75,29.36c1.94,-0.48 4.12,-0.63 5.86,-0.42 1.57,0.19 3.43,0.81 4.48,1.48l0.5,0.32 -0.27,0.28C49.17,31.18 49.05,31.34 49.05,31.39c0,0.05 0.18,0.22 0.41,0.4 0.63,0.48 1.56,1.42 2.03,2.06 0.52,0.7 1.07,1.77 1.12,2.19 0.03,0.27 -0,0.35 -0.26,0.59l-0.3,0.29 -0.64,-0.97C50.46,34.49 49.18,33.32 48,32.83l-0.33,-0.14 -0.73,0.72 -0.73,0.72 1.53,0.06c1.65,0.06 1.87,0.13 2.03,0.58 0.04,0.12 0.05,4.05 0.01,9.1L49.72,52.76 46.2,56.29 42.68,59.81l-5.73,0.01c-3.15,0.01 -6.69,0.04 -7.87,0.06l-2.14,0.05 0.63,0.41 0.63,0.41 -0.25,0.26c-0.37,0.39 -0.46,0.42 -0.93,0.25z"
android:fillColor="#faad72"/>
<path
android:pathData="M26.19,60.84C24.97,60.22 23.83,59.17 22.84,57.75 22.58,57.38 22.34,57.08 22.31,57.08c-0.03,0 -0.18,0.12 -0.33,0.27l-0.27,0.27 -0.22,-0.33C20.98,56.51 20.47,54.89 20.27,53.43 19.61,48.34 21.72,42.41 25.95,37.49 31.7,30.8 40.31,27.46 46.72,29.42c0.85,0.26 1.55,0.56 1.91,0.82l0.26,0.18 -0.27,0.28c-0.15,0.15 -0.25,0.32 -0.22,0.37 0.03,0.05 0.36,0.3 0.73,0.56 0.84,0.59 1.59,1.28 2.14,1.97 0.49,0.61 1.12,1.73 1.12,1.98 0,0.16 -0.56,0.8 -0.62,0.72 -0.02,-0.02 -0.31,-0.41 -0.65,-0.87 -1.02,-1.38 -2.37,-2.45 -3.64,-2.9L46.97,32.35 46.08,33.23 45.2,34.11l0.88,0.05c0.48,0.03 1.41,0.06 2.06,0.06L49.32,34.24l0.26,0.26 0.26,0.26 -0.06,8.95c-0.06,8.46 -0.07,8.97 -0.22,9.17 -0.09,0.12 -1.67,1.72 -3.52,3.57l-3.37,3.36 -5,0c-2.75,0 -6.31,0.03 -7.9,0.06 -3.2,0.06 -3.01,0.02 -2.32,0.51 0.16,0.11 0.16,0.13 -0.12,0.42 -0.16,0.17 -0.37,0.3 -0.47,0.3 -0.1,-0 -0.4,-0.12 -0.68,-0.26z"
android:fillColor="#faaa6b"/>
<path
android:pathData="M25.26,60.22C24.16,59.49 23.49,58.7 22.06,56.41l-0.12,-0.19 -0.26,0.3C21.53,56.68 21.38,56.82 21.35,56.82 21.26,56.82 20.88,55.95 20.67,55.26 20.32,54.11 20.2,53.17 20.2,51.56 20.19,48.6 20.83,46.05 22.36,42.92 24.86,37.85 29.14,33.57 34.21,31.07 37.31,29.55 39.88,28.9 42.81,28.9c1.53,-0 2.27,0.08 3.42,0.4 0.75,0.2 1.88,0.66 1.88,0.75 0,0.04 -0.14,0.19 -0.31,0.34 -0.24,0.21 -0.28,0.29 -0.19,0.34C49.16,31.64 49.58,31.95 50.51,32.87 51.47,33.84 52.04,34.66 52.04,35.07c0,0.09 -0.12,0.28 -0.26,0.42L51.52,35.74 51.03,35.18c-1.16,-1.34 -2.37,-2.25 -3.63,-2.74 -1.24,-0.48 -1.15,-0.51 -2.32,0.67l-1.01,1.02 1.35,0.06c0.74,0.03 1.92,0.06 2.62,0.06l1.27,0 0.26,0.26 0.26,0.26 -0.06,8.95c-0.06,8.46 -0.07,8.97 -0.22,9.17 -0.09,0.12 -1.67,1.72 -3.52,3.56L42.68,59.79l-7.89,0.04c-4.34,0.02 -7.92,0.07 -7.94,0.09 -0.03,0.03 0,0.11 0.06,0.18 0.09,0.11 0.07,0.17 -0.13,0.39 -0.36,0.37 -0.59,0.33 -1.51,-0.28zM24.12,54.78 L24.06,54.15 23.71,54.5 23.36,54.85 23.46,55.31c0.05,0.25 0.22,0.72 0.38,1.05l0.29,0.59 0.03,-0.77c0.02,-0.42 0,-1.05 -0.03,-1.4z"
android:fillColor="#d1ad90"/>
<path
android:pathData="M25.26,60.22C24.16,59.49 23.49,58.7 22.06,56.41l-0.12,-0.19 -0.26,0.3C21.53,56.68 21.38,56.82 21.35,56.82 21.26,56.82 20.88,55.95 20.67,55.26 20.32,54.11 20.2,53.17 20.2,51.56 20.19,48.6 20.83,46.05 22.36,42.92 24.86,37.85 29.14,33.57 34.21,31.07 37.31,29.55 39.88,28.9 42.81,28.9c1.53,-0 2.27,0.08 3.42,0.4 0.75,0.2 1.88,0.66 1.88,0.75 0,0.04 -0.14,0.19 -0.31,0.34 -0.24,0.21 -0.28,0.29 -0.19,0.34C49.16,31.64 49.58,31.95 50.51,32.87 51.47,33.84 52.04,34.66 52.04,35.07c0,0.09 -0.12,0.28 -0.26,0.42L51.52,35.74 51.03,35.18c-1.16,-1.34 -2.37,-2.25 -3.63,-2.74 -1.24,-0.48 -1.15,-0.51 -2.32,0.67l-1.01,1.02 1.35,0.06c0.74,0.03 1.92,0.06 2.61,0.06 1.2,0 1.27,0.01 1.5,0.21l0.24,0.21l0,1.7c0,0.93 -0.01,5 -0.02,9.05L49.74,52.75 46.23,56.26 42.73,59.77 34.82,59.81c-4.35,0.02 -7.93,0.07 -7.97,0.1 -0.03,0.03 -0.01,0.12 0.05,0.2 0.09,0.11 0.07,0.17 -0.13,0.39 -0.36,0.37 -0.59,0.33 -1.51,-0.28zM24.12,54.78 L24.06,54.15 23.71,54.5 23.36,54.85 23.46,55.31c0.05,0.25 0.22,0.72 0.38,1.05l0.29,0.59 0.03,-0.77c0.02,-0.42 0,-1.05 -0.03,-1.4z"
android:fillColor="#aeaeae"/>
<path
android:pathData="M25.26,60.22C24.16,59.49 23.49,58.7 22.06,56.41l-0.12,-0.19 -0.26,0.3C21.53,56.68 21.38,56.82 21.35,56.82 21.26,56.82 20.88,55.95 20.67,55.26 20.32,54.11 20.2,53.17 20.2,51.56 20.19,48.6 20.83,46.05 22.36,42.92 24.86,37.85 29.14,33.57 34.21,31.07 37.31,29.55 39.88,28.9 42.81,28.9c1.53,-0 2.27,0.08 3.42,0.4 0.75,0.2 1.88,0.66 1.88,0.75 0,0.04 -0.14,0.19 -0.31,0.34 -0.24,0.21 -0.28,0.29 -0.19,0.34C49.16,31.64 49.58,31.95 50.51,32.87 51.47,33.84 52.04,34.66 52.04,35.07c0,0.09 -0.12,0.28 -0.26,0.42L51.52,35.74 51.03,35.18c-1.16,-1.34 -2.37,-2.25 -3.63,-2.74 -1.24,-0.48 -1.15,-0.51 -2.32,0.67l-1.01,1.02 1.35,0.06c0.74,0.03 1.92,0.06 2.61,0.06 1.2,0 1.27,0.01 1.5,0.21l0.24,0.21 -0.03,8.92C49.73,48.49 49.68,52.58 49.65,52.67c-0.04,0.09 -1.63,1.73 -3.54,3.63l-3.47,3.46 -7.86,0.04c-4.32,0.02 -7.89,0.07 -7.92,0.1 -0.03,0.03 -0.01,0.12 0.05,0.2 0.09,0.11 0.07,0.17 -0.13,0.39 -0.36,0.37 -0.59,0.33 -1.51,-0.28zM24.12,54.78 L24.06,54.15 23.71,54.5 23.36,54.85 23.46,55.31c0.05,0.25 0.22,0.72 0.38,1.05l0.29,0.59 0.03,-0.77c0.02,-0.42 0,-1.05 -0.03,-1.4z"
android:fillColor="#f9a563"/>
<path
android:pathData="M25.1,60.07C24.15,59.49 23.02,58.06 22.15,56.36l-0.51,-1 -0.32,0.31 -0.32,0.31 -0.14,-0.34C20.4,54.56 20.09,52.34 20.19,50.88 20.37,48.1 21.03,45.66 22.33,43.01 25.53,36.45 31.81,31.19 38.49,29.47c1.95,-0.5 3.94,-0.69 5.56,-0.53 1.03,0.1 2.29,0.38 2.9,0.63l0.34,0.14 -0.32,0.33 -0.32,0.33 0.89,0.43c1.22,0.59 2.13,1.22 2.9,1.98C51.1,33.45 51.7,34.27 51.7,34.5 51.7,34.64 51.28,35.1 51.15,35.1c-0.04,0 -0.46,-0.38 -0.95,-0.83C48.87,32.99 47.34,32.18 45.81,31.92L45.19,31.82 44.04,32.97 42.89,34.11l0.79,0.05c0.44,0.03 1.88,0.06 3.2,0.06L49.3,34.24l0.24,0.21 0.24,0.21 -0.03,8.92C49.73,48.49 49.68,52.58 49.65,52.67c-0.04,0.09 -1.63,1.73 -3.54,3.63l-3.47,3.46 -7.93,0.05c-4.36,0.03 -8.03,0.08 -8.16,0.12 -0.13,0.04 -0.32,0.16 -0.42,0.27 -0.11,0.11 -0.25,0.2 -0.33,0.2 -0.07,-0 -0.39,-0.16 -0.7,-0.35zM24.12,53.5 L24.06,52.95 23.6,53.41 23.13,53.87 23.18,54.31c0.06,0.57 0.43,1.74 0.72,2.29L24.12,57.03 24.15,55.54c0.01,-0.82 0,-1.74 -0.03,-2.04z"
android:fillColor="#f9a15c"/>
<path
android:pathData="m24.79,59.86c-0.15,-0.07 -0.43,-0.33 -0.62,-0.58 -0.19,-0.25 -0.52,-0.66 -0.72,-0.9C22.72,57.48 22.18,56.45 21.56,54.74l-0.15,-0.41 -0.31,0.31c-0.17,0.17 -0.34,0.31 -0.37,0.31 -0.08,0 -0.22,-0.49 -0.37,-1.33 -0.18,-1.02 -0.18,-3.12 0,-4.36C20.81,46.2 22,43.18 23.87,40.31 25.71,37.49 28.78,34.42 31.61,32.57 34.47,30.71 37.49,29.52 40.54,29.07c1.24,-0.19 3.34,-0.19 4.36,-0 0.84,0.15 1.33,0.29 1.33,0.37 0,0.03 -0.14,0.2 -0.31,0.37l-0.31,0.31 0.41,0.15c1.7,0.63 2.17,0.86 3.26,1.6 0.65,0.44 1.76,1.54 1.92,1.91 0.09,0.19 0.07,0.24 -0.2,0.51L50.72,34.58 50.16,34.1C48.52,32.69 46.67,31.87 44.76,31.71l-0.67,-0.06 -1.24,1.23 -1.24,1.23 0.84,0.05c0.46,0.03 2.19,0.06 3.85,0.06L49.3,34.24l0.24,0.21 0.24,0.21 -0.03,8.92C49.73,48.49 49.68,52.58 49.65,52.67 49.61,52.77 48.02,54.4 46.11,56.31l-3.47,3.46 -8.36,0.05c-4.6,0.03 -8.55,0.08 -8.79,0.11 -0.29,0.04 -0.51,0.01 -0.7,-0.07zM24.12,52.21 L24.06,51.67 23.52,52.21c-0.51,0.51 -0.55,0.57 -0.55,0.93 0,0.96 0.34,2.32 0.84,3.34L24.12,57.12 24.15,54.94c0.01,-1.2 0,-2.43 -0.03,-2.73z"
android:fillColor="#f99c54"/>
<path
android:pathData="m24.68,59.8c-0.09,-0.03 -0.23,-0.16 -0.32,-0.28 -0.09,-0.12 -0.42,-0.55 -0.73,-0.95 -1.01,-1.27 -1.5,-2.24 -2,-3.87 -0.16,-0.55 -0.32,-1.05 -0.34,-1.12 -0.03,-0.09 -0.15,-0.02 -0.42,0.24l-0.37,0.37 -0.05,-0.24C19.97,51.56 20.28,48.47 21.3,45.55 23.28,39.87 27.76,34.66 33.27,31.6 37.25,29.39 41.81,28.46 45.23,29.17l0.24,0.05 -0.37,0.37c-0.26,0.27 -0.33,0.39 -0.24,0.42 0.07,0.02 0.58,0.18 1.14,0.35 1.8,0.54 3.23,1.35 4.26,2.42 0.32,0.33 0.58,0.63 0.58,0.68 0,0.04 -0.13,0.2 -0.28,0.35l-0.28,0.27 -0.77,-0.55C47.76,32.25 45.79,31.59 43.8,31.59L43.12,31.59l-1.27,1.26 -1.27,1.26 0.71,0.06c0.39,0.03 2.35,0.06 4.36,0.06l3.65,0.01 0.24,0.21 0.24,0.21 -0.03,8.92C49.73,48.49 49.68,52.58 49.65,52.67c-0.04,0.09 -1.63,1.73 -3.54,3.63l-3.47,3.46 -0.83,0.02c-2.15,0.05 -16.98,0.06 -17.12,0.01zM24.1,50.91 L24.03,50.65 23.46,51.25 22.88,51.84l0,0.72c0,1.31 0.43,3.09 1,4.19L24.12,57.2 24.15,54.18c0.01,-1.66 -0.01,-3.14 -0.04,-3.28z"
android:fillColor="#f9984c"/>
<path
android:pathData="M24.69,59.8C24.48,59.72 24.17,59.32 24.17,59.13 24.17,59.04 23.96,58.77 23.72,58.52 22.55,57.33 21.66,55.25 21.3,52.83c-0.07,-0.45 -0.15,-0.85 -0.17,-0.87 -0.03,-0.03 -0.22,0.12 -0.42,0.32l-0.38,0.37 -0.06,-0.49C20.15,51.15 20.41,48.89 20.85,47.2 22.24,41.82 25.91,36.71 30.96,33.09c2.17,-1.55 5,-2.88 7.53,-3.53 1.7,-0.44 3.87,-0.69 4.92,-0.57l0.53,0.06 -0.37,0.37c-0.2,0.21 -0.34,0.4 -0.32,0.42 0.03,0.03 0.31,0.09 0.64,0.13 1.49,0.2 2.9,0.62 4.01,1.17 0.74,0.37 1.79,1.09 2.02,1.38l0.17,0.22 -0.29,0.29 -0.29,0.29 -0.91,-0.49c-1.01,-0.54 -1.99,-0.9 -3.06,-1.13 -0.78,-0.16 -2.81,-0.21 -3.7,-0.08l-0.51,0.07 -1.23,1.21 -1.23,1.21 0.8,0.05c0.44,0.03 2.79,0.06 5.22,0.06L49.3,34.24l0.24,0.21 0.24,0.21 -0.03,8.92C49.73,48.49 49.68,52.58 49.65,52.67c-0.04,0.09 -1.63,1.73 -3.54,3.63l-3.47,3.46 -0.83,0.02c-2.12,0.05 -16.98,0.06 -17.12,0.01zM24.12,49.38 L24.06,48.91 23.53,49.47c-0.29,0.31 -0.56,0.68 -0.59,0.81 -0.03,0.14 -0.08,0.79 -0.11,1.45 -0.08,1.84 0.27,3.59 1.02,5.02L24.12,57.29 24.15,53.57c0.01,-2.05 0,-3.93 -0.03,-4.19z"
android:fillColor="#ca966d"/>
<path
android:pathData="m24.56,59.68c-0.15,-0.1 -0.31,-0.33 -0.39,-0.53 -0.07,-0.19 -0.25,-0.46 -0.4,-0.58 -0.15,-0.12 -0.46,-0.5 -0.68,-0.83 -0.93,-1.4 -1.49,-2.93 -1.78,-4.91 -0.07,-0.45 -0.15,-0.85 -0.17,-0.87 -0.03,-0.03 -0.22,0.12 -0.42,0.32l-0.38,0.37 -0.06,-0.49C20.15,51.15 20.41,48.89 20.85,47.2 22.24,41.82 25.91,36.71 30.96,33.09c2.17,-1.55 5,-2.88 7.53,-3.53 1.7,-0.44 3.87,-0.69 4.92,-0.57l0.53,0.06 -0.37,0.37c-0.2,0.21 -0.34,0.4 -0.32,0.42 0.03,0.03 0.31,0.09 0.64,0.13 1.49,0.2 2.9,0.62 4.01,1.17 0.74,0.37 1.79,1.09 2.02,1.38l0.17,0.22 -0.29,0.29 -0.29,0.29 -0.91,-0.49c-1.01,-0.54 -1.99,-0.9 -3.06,-1.13 -0.78,-0.16 -2.81,-0.21 -3.7,-0.08l-0.51,0.07 -1.22,1.2c-0.67,0.66 -1.2,1.23 -1.17,1.25 0.03,0.03 2.37,0.07 5.21,0.09l5.16,0.04 0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.19,56.22c-2.74,2.74 -3.56,3.52 -3.76,3.55 -0.14,0.02 -4.16,0.05 -8.93,0.06 -8.59,0.02 -8.68,0.02 -8.93,-0.15zM24.18,53.31c-0.02,-2.11 -0.06,-3.96 -0.09,-4.11l-0.06,-0.28 -0.52,0.56c-0.29,0.31 -0.55,0.67 -0.58,0.8 -0.03,0.13 -0.08,0.79 -0.11,1.45 -0.06,1.4 0.08,2.51 0.49,3.73 0.28,0.86 0.75,1.82 0.84,1.74 0.03,-0.03 0.04,-1.78 0.03,-3.89z"
android:fillColor="#f99140"/>
<path
android:pathData="m24.59,59.71c-0.33,-0.2 -0.4,-0.36 -0.47,-1.17l-0.06,-0.71 -0.23,0.22 -0.23,0.22 -0.22,-0.24C23.04,57.68 22.48,56.71 22.15,55.92 21.4,54.1 21.01,51.07 21.3,49.21 21.61,47.15 22.2,45.35 23.32,43.08 23.74,42.22 24.08,41.44 24.08,41.34c0,-0.1 0.2,-0.4 0.45,-0.67C24.78,40.4 25.12,40.01 25.28,39.8 25.97,38.9 27.61,36.98 28.11,36.5 29.02,35.62 30.91,34.1 31.99,33.37 33.84,32.14 36.69,30.86 38.79,30.34c1.91,-0.48 3.03,-0.53 5.26,-0.28 1.73,0.2 3.64,0.87 4.87,1.71 0.61,0.41 0.65,0.52 0.35,0.84C49.13,32.76 48.97,32.87 48.91,32.87c-0.06,0 -0.38,-0.14 -0.71,-0.3 -1.46,-0.74 -2.97,-1.07 -4.88,-1.07 -1.3,-0 -2.33,0.13 -3.32,0.43 -2.52,0.74 -3.28,1.03 -4.75,1.78l-0.77,0.4 0.86,0.02c0.47,0.01 3.81,0.05 7.41,0.09l6.56,0.06 0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.19,56.22c-2.74,2.74 -3.56,3.52 -3.76,3.55 -0.14,0.02 -4.16,0.05 -8.93,0.06 -8.03,0.02 -8.69,0.01 -8.91,-0.12zM24.16,51.99c-0.04,-2.73 -0.07,-5.19 -0.08,-5.47l-0.01,-0.51 -0.17,0.43c-0.1,0.24 -0.29,0.85 -0.42,1.37 -0.14,0.52 -0.33,1.23 -0.42,1.57 -0.24,0.88 -0.36,2.62 -0.26,3.68 0.13,1.41 0.47,2.65 1.01,3.72 0.27,0.54 0.31,0.58 0.36,0.38 0.03,-0.12 0.03,-2.45 -0.01,-5.17z"
android:fillColor="#f8903e"/>
<path
android:pathData="m24.59,59.71c-0.47,-0.28 -0.43,0.42 -0.43,-8.11 -0,-3.17 -0.03,-5.8 -0.07,-5.84 -0.15,-0.15 -0.85,2.31 -1.16,4.08 -0.4,2.23 -0.14,4.65 0.68,6.58C23.77,56.81 23.91,57.18 23.91,57.26c0,0.07 -0.13,0.26 -0.29,0.41l-0.29,0.28 -0.36,-0.53C21.64,55.47 20.98,52.17 21.38,49.47c0.32,-2.19 0.9,-3.99 1.99,-6.17 0.39,-0.78 0.74,-1.55 0.76,-1.71 0.03,-0.17 0.2,-0.45 0.41,-0.67 0.2,-0.21 0.82,-0.96 1.38,-1.67 2.54,-3.19 5.32,-5.5 8.66,-7.17C36.77,30.99 38.56,30.41 40.76,30.09c2.13,-0.31 4.86,0.06 6.76,0.92 0.7,0.32 1.62,0.91 1.62,1.05 0,0.06 -0.13,0.22 -0.28,0.37l-0.28,0.27 -0.6,-0.26C46.36,31.74 45.05,31.48 43.28,31.48 41.42,31.49 39.09,31.94 37.24,32.66 36.14,33.09 34.1,34.1 34.26,34.13c0.07,0.02 3.48,0.06 7.58,0.09l7.45,0.06 0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.19,56.22c-2.74,2.74 -3.56,3.52 -3.76,3.55 -0.14,0.02 -4.16,0.05 -8.93,0.06 -8.03,0.02 -8.69,0.01 -8.91,-0.12z"
android:fillColor="#f88d3a"/>
<path
android:pathData="M24.59,59.71C24.17,59.45 24.14,59.32 24.18,57.47 24.23,54.28 24.17,45.41 24.09,45.49c-0.17,0.18 -0.79,2.21 -1.05,3.46 -0.25,1.21 -0.28,1.46 -0.28,2.95 -0.01,1.8 0.08,2.38 0.59,3.96l0.29,0.88 -0.29,0.31L23.05,57.38 22.87,57.16c-0.28,-0.33 -0.81,-1.5 -1.05,-2.35 -0.34,-1.18 -0.47,-2.18 -0.47,-3.6 -0,-2.58 0.68,-5.15 2.15,-8.06C23.86,42.42 24.17,41.73 24.17,41.62c0,-0.12 0.18,-0.4 0.45,-0.69 0.25,-0.27 0.85,-1.01 1.35,-1.64 3.66,-4.65 8.48,-7.82 13.6,-8.94 1.43,-0.31 3.66,-0.39 4.98,-0.17 1.57,0.26 3.32,0.89 3.91,1.4l0.21,0.18 -0.32,0.3 -0.32,0.3 -0.41,-0.13c-1.26,-0.41 -1.86,-0.56 -2.71,-0.68 -2.18,-0.32 -5.17,0.11 -7.78,1.11C36.03,33.08 34.09,34.04 34.09,34.16c0,0.04 3.21,0.09 7.6,0.1l7.6,0.02 0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.19,56.22c-2.74,2.74 -3.56,3.52 -3.76,3.55 -0.14,0.02 -4.16,0.05 -8.93,0.06 -8.03,0.02 -8.69,0.01 -8.91,-0.12z"
android:fillColor="#f88a33"/>
<path
android:pathData="M24.59,59.71C24.17,59.45 24.14,59.32 24.18,57.47 24.19,56.52 24.2,53.38 24.18,50.49 24.16,44.59 24.19,44.81 23.57,46.69 22.66,49.45 22.43,52.34 22.94,54.62 23.18,55.69 23.18,55.64 22.84,55.96l-0.31,0.3 -0.15,-0.19c-0.08,-0.1 -0.27,-0.54 -0.42,-0.98C20.83,51.67 21.33,47.7 23.44,43.42 23.89,42.51 24.17,41.85 24.17,41.68c0,-0.22 0.11,-0.39 0.54,-0.84C25.01,40.53 25.47,39.98 25.75,39.63 28.39,36.26 31.29,33.84 34.72,32.15 38.36,30.35 41.81,29.72 44.82,30.28c1.19,0.22 2.52,0.67 2.66,0.9 0.03,0.05 -0.08,0.23 -0.25,0.4l-0.3,0.3 -0.88,-0.2C44.82,31.41 42.46,31.34 41.13,31.55 39.9,31.73 38.41,32.11 37.37,32.49 36.4,32.85 33.92,34.05 33.92,34.16c0,0.04 3.31,0.09 7.69,0.1l7.69,0.02 0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.19,56.22c-2.74,2.74 -3.56,3.52 -3.76,3.55 -0.14,0.02 -4.16,0.05 -8.93,0.06 -8.03,0.02 -8.69,0.01 -8.91,-0.12z"
android:fillColor="#d3894f"/>
<path
android:pathData="m24.61,59.68c-0.44,-0.31 -0.47,-0.51 -0.4,-2.44 0.03,-0.98 0.03,-4.08 -0,-6.89 -0.07,-5.72 -0.03,-5.49 -0.64,-3.66 -0.91,2.76 -1.14,5.65 -0.63,7.92 0.24,1.08 0.24,1.02 -0.1,1.35l-0.31,0.3 -0.15,-0.19c-0.08,-0.1 -0.27,-0.54 -0.42,-0.98C20.83,51.67 21.33,47.7 23.44,43.42 23.89,42.51 24.17,41.85 24.17,41.68c0,-0.22 0.11,-0.39 0.54,-0.84C25.01,40.53 25.47,39.98 25.75,39.63 28.39,36.26 31.29,33.84 34.72,32.15 38.36,30.35 41.81,29.72 44.82,30.28c1.19,0.22 2.52,0.67 2.66,0.9 0.03,0.05 -0.08,0.23 -0.25,0.4l-0.3,0.3 -0.88,-0.2C44.82,31.41 42.46,31.34 41.13,31.55 39.9,31.73 38.41,32.11 37.37,32.49 36.39,32.85 33.92,34.05 33.92,34.17 33.92,34.24 38.73,34.29 46.2,34.29l3.09,0l0.22,0.21 0.22,0.21 -0.02,9.01L49.69,52.71 46.17,56.24 42.64,59.77 33.72,59.79c-8,0.02 -8.94,0.01 -9.11,-0.11z"
android:fillColor="#968e87"/>
<path
android:pathData="m24.61,59.68c-0.43,-0.3 -0.47,-0.51 -0.4,-2.44 0.03,-0.98 0.03,-4.08 -0,-6.89 -0.07,-5.72 -0.03,-5.49 -0.64,-3.66 -0.91,2.76 -1.14,5.65 -0.63,7.92 0.24,1.08 0.24,1.02 -0.1,1.35l-0.31,0.3 -0.15,-0.19c-0.08,-0.1 -0.27,-0.54 -0.42,-0.98C20.83,51.67 21.33,47.7 23.44,43.42 23.89,42.51 24.17,41.85 24.17,41.68c0,-0.22 0.11,-0.39 0.54,-0.84C25.01,40.53 25.47,39.98 25.75,39.63 28.39,36.26 31.29,33.84 34.72,32.15 38.36,30.35 41.81,29.72 44.82,30.28c1.19,0.22 2.52,0.67 2.66,0.9 0.03,0.05 -0.08,0.23 -0.25,0.4l-0.3,0.3 -0.88,-0.2C44.82,31.41 42.46,31.34 41.13,31.55 39.9,31.73 38.41,32.11 37.37,32.49 36.39,32.85 33.92,34.05 33.92,34.17 33.92,34.24 38.73,34.29 46.2,34.29l3.09,0l0.22,0.21 0.22,0.21l0,8.74c0,4.81 -0.02,8.87 -0.05,9.03 -0.04,0.24 -0.67,0.9 -3.53,3.76L42.68,59.71l-5.29,0.05c-9.4,0.09 -12.55,0.07 -12.77,-0.08z"
android:fillColor="#b28d69"/>
<path
android:pathData="m24.61,59.68c-0.43,-0.3 -0.47,-0.51 -0.4,-2.44 0.03,-0.98 0.03,-4.08 -0,-6.89 -0.07,-5.72 -0.03,-5.49 -0.64,-3.66 -0.91,2.76 -1.14,5.65 -0.63,7.92 0.24,1.08 0.24,1.02 -0.1,1.35l-0.31,0.3 -0.15,-0.19c-0.08,-0.1 -0.27,-0.54 -0.42,-0.98C20.83,51.67 21.33,47.7 23.44,43.42 23.89,42.51 24.17,41.85 24.17,41.68c0,-0.22 0.11,-0.39 0.54,-0.84C25.01,40.53 25.47,39.98 25.75,39.63 28.39,36.26 31.29,33.84 34.72,32.15 38.36,30.35 41.81,29.72 44.82,30.28c1.19,0.22 2.52,0.67 2.66,0.9 0.03,0.05 -0.08,0.23 -0.25,0.4l-0.3,0.3 -0.88,-0.2C44.82,31.41 42.46,31.34 41.13,31.55 39.9,31.73 38.41,32.11 37.37,32.49 36.39,32.85 33.92,34.05 33.92,34.17c0,0.05 1.26,0.08 3.01,0.08 1.66,0 5.13,0.03 7.71,0.06l4.7,0.06 0.2,0.2 0.2,0.2l0,8.72c0,4.79 -0.02,8.85 -0.05,9 -0.04,0.24 -0.67,0.9 -3.53,3.76L42.68,59.71l-5.29,0.05c-9.4,0.09 -12.55,0.07 -12.77,-0.08zM41.51,50.38 L41.48,42.58 33.68,42.56 25.88,42.54L25.88,50.36 25.88,58.19l7.83,0 7.83,0zM48.2,44.55l0,-7.44L45.72,39.59 43.24,42.07l0,7.44 0,7.44L45.72,54.47 48.2,51.99Z"
android:fillColor="#f88328"/>
<path
android:pathData="m24.61,59.68c-0.43,-0.3 -0.47,-0.52 -0.4,-2.37 0.03,-0.94 0.03,-4.08 -0,-6.97C24.14,44.41 24.18,44.67 23.53,46.64 22.82,48.81 22.59,50.38 22.65,52.69l0.04,1.64 -0.32,0.31 -0.32,0.31 -0.14,-0.37C21.51,53.51 21.32,51.27 21.51,49.85 21.83,47.43 22.59,45.07 23.75,42.91 24.06,42.33 24.17,42.03 24.17,41.76c0,-0.33 0.05,-0.41 0.63,-1.01C25.14,40.39 25.82,39.62 26.31,39.03 30.5,33.98 35.59,30.95 41.14,30.22c1.42,-0.19 3.66,0 4.73,0.4l0.37,0.14 -0.32,0.33 -0.32,0.33 -1.51,-0.05C41.26,31.27 38.67,31.79 35.97,33c-1.02,0.46 -2.14,1.07 -2.14,1.17 0,0.04 1.38,0.07 3.06,0.07 1.68,0 5.17,0.03 7.76,0.06l4.7,0.06 0.2,0.2 0.2,0.2l0,8.72c0,4.79 -0.02,8.85 -0.05,9 -0.04,0.24 -0.67,0.9 -3.53,3.76L42.68,59.71l-5.29,0.05c-9.4,0.09 -12.55,0.07 -12.77,-0.08zM41.51,50.38 L41.48,42.58 33.68,42.56 25.88,42.54L25.88,50.36 25.88,58.19l7.83,0 7.83,0zM48.2,44.55l0,-7.44L45.72,39.59 43.24,42.07l0,7.44 0,7.44L45.72,54.47 48.2,51.99Z"
android:fillColor="#aa8765"/>
<path
android:pathData="m24.61,59.68c-0.43,-0.3 -0.47,-0.52 -0.4,-2.37 0.03,-0.94 0.03,-4.08 -0,-6.97C24.14,44.41 24.18,44.67 23.53,46.64 22.82,48.81 22.59,50.38 22.65,52.69l0.04,1.64 -0.32,0.31 -0.32,0.31 -0.14,-0.37C21.51,53.51 21.32,51.27 21.51,49.85 21.83,47.43 22.59,45.07 23.75,42.91 24.06,42.33 24.17,42.03 24.17,41.76c0,-0.33 0.05,-0.41 0.63,-1.01C25.14,40.39 25.82,39.62 26.31,39.03 30.5,33.98 35.59,30.95 41.14,30.22c1.42,-0.19 3.66,0 4.73,0.4l0.37,0.14 -0.32,0.33 -0.32,0.33 -1.51,-0.05C41.26,31.27 38.67,31.79 35.97,33c-1.02,0.46 -2.14,1.07 -2.14,1.17 0,0.04 1.38,0.07 3.06,0.07 1.68,0 5.17,0.03 7.76,0.06l4.7,0.06 0.2,0.2 0.2,0.2l0,8.72c0,4.79 -0.02,8.85 -0.05,9 -0.04,0.24 -0.67,0.9 -3.53,3.76L42.68,59.71l-5.29,0.05c-9.4,0.09 -12.55,0.07 -12.77,-0.08zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#f67e20"/>
<path
android:pathData="m24.61,59.68c-0.43,-0.3 -0.43,-0.35 -0.39,-3.93 0.02,-1.83 0.01,-5.02 -0.03,-7.08L24.12,44.92 23.8,45.76C23.06,47.65 22.64,49.69 22.57,51.77l-0.05,1.33 -0.35,0.37 -0.35,0.37 -0.11,-0.32C21.53,52.99 21.43,51.26 21.52,50.22 21.72,47.89 22.57,45.17 23.79,42.9 24.08,42.36 24.17,42.11 24.17,41.8c0,-0.39 0.02,-0.42 0.88,-1.3 0.48,-0.5 1.18,-1.28 1.55,-1.74 1.34,-1.68 3.49,-3.63 5.44,-4.96 3.69,-2.5 8,-3.85 11.42,-3.57 0.55,0.04 1.15,0.13 1.34,0.18l0.33,0.1 -0.36,0.37L44.4,31.25l-0.74,0c-3.04,0 -6.64,0.98 -9.35,2.55L33.62,34.2 38.96,34.25c2.94,0.03 6.47,0.06 7.85,0.06L49.32,34.33l0.21,0.21 0.21,0.21l0,8.72c0,4.79 -0.02,8.85 -0.05,9 -0.04,0.24 -0.67,0.9 -3.53,3.76L42.68,59.71l-5.29,0.05c-9.4,0.09 -12.55,0.07 -12.77,-0.08zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#988476"/>
<path
android:pathData="m24.61,59.69c-0.43,-0.32 -0.44,-0.36 -0.39,-3.94 0.02,-1.83 0.01,-5.02 -0.03,-7.08L24.12,44.92 23.8,45.76C23.06,47.65 22.64,49.69 22.57,51.77l-0.05,1.33 -0.35,0.37 -0.35,0.37 -0.11,-0.32C21.53,52.99 21.43,51.26 21.52,50.22 21.72,47.89 22.57,45.17 23.79,42.9 24.08,42.36 24.17,42.11 24.17,41.8c0,-0.39 0.02,-0.42 0.88,-1.3 0.48,-0.5 1.18,-1.28 1.55,-1.74 1.34,-1.68 3.49,-3.63 5.44,-4.96 3.69,-2.5 8,-3.85 11.42,-3.57 0.55,0.04 1.15,0.13 1.34,0.18l0.33,0.1 -0.36,0.37L44.4,31.25l-0.74,0c-3.04,0 -6.64,0.98 -9.35,2.55L33.62,34.2 38.96,34.25c2.94,0.03 6.47,0.06 7.85,0.06L49.32,34.33l0.22,0.22 0.22,0.22 -0.04,8.92c-0.04,8.87 -0.04,8.92 -0.22,9.17 -0.1,0.13 -1.67,1.74 -3.5,3.56L42.68,59.73l-4.79,0c-2.63,0 -6.65,0.02 -8.93,0.05 -3.78,0.05 -4.16,0.04 -4.34,-0.09zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#f87c1b"/>
<path
android:pathData="M24.61,59.69C24.18,59.37 24.18,59.33 24.22,55.75 24.24,53.91 24.23,50.7 24.19,48.61 24.11,44.26 24.17,44.41 23.43,46.61 23.05,47.78 22.81,48.81 22.59,50.32l-0.13,0.9 -0.42,0.42 -0.42,0.42 -0.06,-0.55c-0.19,-1.78 0.67,-5.26 1.96,-7.92C24.06,42.47 24.17,42.19 24.17,41.83l0,-0.43l0.93,-0.95C25.6,39.93 26.28,39.19 26.6,38.82c1.66,-1.96 4.06,-4.11 5.83,-5.22C35.41,31.73 38.4,30.63 41.4,30.3 41.87,30.25 42.5,30.24 42.8,30.27l0.55,0.06 -0.48,0.46C42.48,31.17 42.34,31.25 42.1,31.25c-0.41,0 -2.41,0.38 -3.38,0.64 -0.44,0.12 -1.25,0.39 -1.8,0.61 -1.02,0.4 -3.03,1.4 -3.26,1.62 -0.11,0.11 0.29,0.12 3.08,0.12 1.76,0 5.32,0.03 7.9,0.06l4.7,0.06 0.21,0.21 0.21,0.21 -0.04,8.92c-0.04,8.87 -0.04,8.92 -0.22,9.17 -0.1,0.13 -1.67,1.74 -3.5,3.56L42.68,59.73l-4.79,0c-2.63,0 -6.65,0.02 -8.93,0.05 -3.78,0.05 -4.16,0.04 -4.34,-0.09zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#f87610"/>
<path
android:pathData="m24.62,59.69c-0.11,-0.08 -0.23,-0.22 -0.28,-0.31 -0.06,-0.12 -0.1,-2.97 -0.13,-9.08L24.16,41.39 27.73,37.82 31.31,34.24l4.32,0c2.37,0 6.43,0.03 9.02,0.06l4.7,0.06 0.21,0.21 0.21,0.21 -0.04,8.92c-0.04,8.87 -0.04,8.92 -0.22,9.17 -0.1,0.13 -1.67,1.74 -3.5,3.56L42.68,59.73l-4.79,0c-2.63,0 -6.65,0.02 -8.93,0.05 -3.78,0.05 -4.16,0.04 -4.34,-0.09zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#d07934"/>
<path
android:pathData="M24.52,59.58 L24.25,59.31 24.23,52.1c-0.03,-10.05 -0.03,-10.35 0.04,-10.61 0.04,-0.15 1.35,-1.53 3.55,-3.74L31.31,34.24 35.63,34.24c2.38,0 6.43,0.03 9.02,0.06l4.7,0.06 0.21,0.21 0.21,0.21 -0.04,8.92c-0.04,8.87 -0.04,8.92 -0.22,9.17 -0.1,0.13 -1.67,1.74 -3.5,3.56L42.68,59.73l-4.79,0c-2.63,0 -6.66,0.03 -8.95,0.06l-4.16,0.06zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#907968"/>
<path
android:pathData="M24.52,59.58 L24.25,59.31 24.23,52.1c-0.03,-10.05 -0.03,-10.35 0.04,-10.61 0.04,-0.15 1.35,-1.53 3.55,-3.74L31.31,34.24 35.63,34.24c2.38,0 6.43,0.03 9.02,0.06l4.7,0.06 0.2,0.2 0.2,0.2 -0.05,8.96c-0.05,8.54 -0.06,8.97 -0.21,9.17 -0.09,0.12 -1.65,1.71 -3.48,3.53L42.68,59.73l-5.56,0c-3.06,0 -7.08,0.03 -8.95,0.06l-3.39,0.06zM41.53,50.41l0,-7.87l-7.87,0 -7.87,0l0,7.87 0,7.87l7.87,0 7.87,0zM48.2,44.55l0,-7.53L45.67,39.55 43.15,42.07l0,7.53 0,7.53L45.67,54.6 48.2,52.07Z"
android:fillColor="#99795a"/>
<path
android:pathData="M24.51,59.58 L24.25,59.31 24.23,52.1c-0.03,-10.05 -0.03,-10.35 0.04,-10.61 0.04,-0.15 1.35,-1.53 3.55,-3.74l3.48,-3.51 4.33,0c2.38,0 6.42,0.03 8.98,0.06l4.65,0.06 0.24,0.24 0.24,0.24 -0.05,8.92c-0.05,8.5 -0.06,8.93 -0.21,9.13 -0.09,0.12 -1.65,1.71 -3.48,3.53L42.68,59.73l-7.35,0c-4.04,0 -8.07,0.03 -8.95,0.06l-1.6,0.06zM41.57,50.36l0,-7.87l-7.86,-0.02c-6.23,-0.02 -7.88,0 -7.93,0.09 -0.08,0.13 -0.1,15.58 -0.01,15.66 0.03,0.03 3.6,0.05 7.93,0.04L41.57,58.23ZM45.78,54.57 L48.28,52.07L48.28,44.52C48.28,40.37 48.25,36.98 48.22,36.98c-0.04,0 -1.19,1.13 -2.57,2.5L43.15,41.99l0,7.54C43.15,53.68 43.18,57.08 43.22,57.08c0.04,0 1.19,-1.13 2.57,-2.5z"
android:fillColor="#777777"/>
<path
android:pathData="M24.51,59.58 L24.25,59.31 24.23,52.1c-0.03,-10.05 -0.03,-10.35 0.04,-10.61 0.04,-0.15 1.36,-1.54 3.55,-3.76l3.49,-3.52 8.92,0.06c9.6,0.06 9.17,0.04 9.41,0.49 0.07,0.12 0.08,2.72 0.04,9.04L49.63,52.67 46.11,56.2 42.59,59.73l-7.31,0c-4.02,0 -8.03,0.03 -8.91,0.06l-1.6,0.06zM41.57,50.36l0,-7.87l-7.86,-0.02c-6.23,-0.02 -7.88,0 -7.93,0.09 -0.08,0.13 -0.1,15.58 -0.01,15.66 0.03,0.03 3.6,0.05 7.93,0.04L41.57,58.23ZM45.78,54.57 L48.28,52.07L48.28,44.52C48.28,40.37 48.25,36.98 48.22,36.98c-0.04,0 -1.19,1.13 -2.57,2.5L43.15,41.99l0,7.54C43.15,53.68 43.18,57.08 43.22,57.08c0.04,0 1.19,-1.13 2.57,-2.5z"
android:fillColor="#ba6d32"/>
<path
android:pathData="m24.68,59.71c-0.12,-0.06 -0.26,-0.21 -0.31,-0.33C24.29,59.23 24.26,56.83 24.24,50.41 24.22,42.14 24.22,41.62 24.37,41.36 24.45,41.2 26.03,39.55 27.88,37.68l3.36,-3.39 8.97,0.03c9.61,0.03 9.21,0.01 9.44,0.44 0.07,0.12 0.08,2.72 0.04,9.04L49.63,52.67 46.11,56.2 42.59,59.73l-7.32,0c-4.03,0 -8.01,0.02 -8.85,0.05C25.23,59.81 24.85,59.8 24.68,59.71ZM41.57,50.36l0,-7.87l-7.86,-0.02c-6.23,-0.02 -7.88,0 -7.93,0.09 -0.08,0.13 -0.1,15.58 -0.01,15.66 0.03,0.03 3.6,0.05 7.93,0.04L41.57,58.23ZM45.78,54.57 L48.28,52.07L48.28,44.52C48.28,40.37 48.25,36.98 48.22,36.98c-0.04,0 -1.19,1.13 -2.57,2.5L43.15,41.99l0,7.54C43.15,53.68 43.18,57.08 43.22,57.08c0.04,0 1.19,-1.13 2.57,-2.5z"
android:fillColor="#8e7054"/>
<path
android:pathData="m24.68,59.71c-0.12,-0.06 -0.26,-0.21 -0.31,-0.33C24.29,59.23 24.26,56.83 24.24,50.41 24.22,42.14 24.22,41.62 24.37,41.36 24.45,41.2 26.03,39.55 27.88,37.68l3.36,-3.39 8.97,0.03c9.68,0.03 9.27,0.01 9.42,0.47 0.03,0.1 0.04,4.18 0.02,9.06L49.61,52.72 46.1,56.22 42.59,59.73 35.2,59.73C31.13,59.73 27.15,59.75 26.35,59.78 25.22,59.81 24.85,59.8 24.68,59.71ZM41.59,50.38 L41.61,42.45 33.68,42.47L25.75,42.5 25.73,50.32c-0.01,4.3 -0,7.87 0.02,7.93 0.03,0.09 1.66,0.1 7.93,0.09L41.57,58.32ZM45.74,54.62 L48.28,52.07L48.28,44.53C48.28,40.38 48.25,36.98 48.22,36.98c-0.04,0 -1.21,1.15 -2.61,2.55L43.07,42.07l0,7.54c0,4.15 0.03,7.54 0.06,7.54 0.03,0 1.21,-1.14 2.61,-2.54z"
android:fillColor="#cc620e"/>
<path
android:pathData="m24.68,59.71c-0.44,-0.24 -0.43,0.08 -0.43,-9.33 -0,-7.46 0.02,-8.83 0.12,-9.02C24.44,41.23 26.03,39.6 27.9,37.73L31.31,34.33L40.26,34.33 49.21,34.33l0.24,0.21c0.22,0.19 0.24,0.25 0.24,0.83 -0,0.35 -0.01,4.38 -0.02,8.96L49.65,52.67 46.12,56.2 42.59,59.73l-7.4,0c-4.07,0 -8.05,0.02 -8.85,0.05 -1.12,0.04 -1.5,0.02 -1.67,-0.07zM41.59,50.38 L41.61,42.45 33.68,42.47 25.75,42.5 25.73,50.32c-0.01,4.3 -0,7.87 0.02,7.93 0.03,0.09 1.66,0.1 7.93,0.09L41.57,58.32ZM45.74,54.62 L48.28,52.07L48.28,44.53C48.28,40.38 48.25,36.98 48.22,36.98c-0.04,0 -1.21,1.15 -2.61,2.55L43.07,42.07l0,7.54c0,4.15 0.03,7.54 0.06,7.54 0.03,0 1.21,-1.14 2.61,-2.54z"
android:fillColor="#956139"/>
<path
android:pathData="M24.51,59.52 L24.32,59.31 24.28,50.46C24.25,42.73 24.26,41.58 24.37,41.37 24.44,41.24 26.03,39.6 27.9,37.73L31.31,34.33L40.26,34.33 49.21,34.33l0.24,0.21c0.22,0.19 0.24,0.25 0.24,0.83 -0,0.35 -0.01,4.38 -0.02,8.96L49.65,52.67 46.12,56.2 42.59,59.73L33.65,59.73 24.71,59.73ZM41.59,50.38 L41.61,42.45 33.68,42.47L25.75,42.5 25.73,50.32c-0.01,4.3 -0,7.87 0.02,7.93 0.03,0.09 1.66,0.1 7.93,0.09L41.57,58.32ZM45.74,54.62 L48.28,52.07L48.28,44.53C48.28,40.38 48.25,36.98 48.22,36.98c-0.04,0 -1.21,1.15 -2.61,2.55L43.07,42.07l0,7.54c0,4.15 0.03,7.54 0.06,7.54 0.03,0 1.21,-1.14 2.61,-2.54z"
android:fillColor="#7a6148"/>
<path
android:pathData="M24.51,59.52 L24.32,59.31 24.28,50.46c-0.03,-7.74 -0.02,-8.88 0.09,-9.09 0.07,-0.13 1.66,-1.77 3.54,-3.64l3.41,-3.4 9,0.02 9,0.02 0.16,0.2C49.65,34.77 49.65,35.04 49.65,43.72L49.65,52.67L46.12,56.2 42.59,59.73L33.65,59.73 24.71,59.73ZM41.61,50.41l0,-7.95l-7.95,0 -7.95,0l0,7.9c0,4.34 0.03,7.92 0.06,7.95 0.03,0.03 3.61,0.06 7.95,0.06L41.61,58.36ZM45.78,54.66 L48.28,52.16L48.28,44.53C48.28,40.33 48.25,36.89 48.21,36.89c-0.04,0 -1.21,1.15 -2.61,2.55L43.07,41.99l0,7.58C43.07,55.57 43.09,57.16 43.17,57.16c0.06,0 1.23,-1.13 2.61,-2.5z"
android:fillColor="#92572a"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31 24.32,52.1c-0.03,-10.13 -0.03,-10.35 0.05,-10.61 0.04,-0.15 1.31,-1.49 3.51,-3.7L31.31,34.32l9.01,0.02 9.01,0.02 0.16,0.2C49.65,34.77 49.65,35.04 49.65,43.72L49.65,52.67L46.12,56.2 42.59,59.73L33.67,59.73 24.76,59.73ZM41.61,50.41l0,-7.95l-7.95,0 -7.95,0l0,7.9c0,4.34 0.03,7.92 0.06,7.95 0.03,0.03 3.61,0.06 7.95,0.06L41.61,58.36ZM45.78,54.66 L48.28,52.16L48.28,44.53C48.28,40.33 48.25,36.89 48.21,36.89c-0.04,0 -1.21,1.15 -2.61,2.55L43.07,41.99l0,7.58C43.07,55.57 43.09,57.16 43.17,57.16c0.06,0 1.23,-1.13 2.61,-2.5z"
android:fillColor="#735b44"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31 24.32,52.1c-0.03,-10.13 -0.03,-10.35 0.05,-10.61 0.04,-0.15 1.3,-1.49 3.51,-3.7L31.31,34.32l8.21,0.01c9.08,0.01 9.83,0.03 10.01,0.29C49.63,34.76 49.65,36.14 49.65,43.73L49.65,52.67L46.14,56.18 42.64,59.68 33.7,59.71 24.76,59.73ZM41.61,50.41l0,-7.95l-7.95,0 -7.95,0l0,7.95 0,7.95l7.95,0 7.95,0zM45.76,54.68 L48.32,52.12 48.35,44.57c0.02,-5.17 -0.01,-7.57 -0.07,-7.63 -0.06,-0.06 -0.87,0.69 -2.65,2.48L43.07,41.99l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.04,0 1.22,-1.15 2.63,-2.57z"
android:fillColor="#6d5740"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31 24.32,52.1c-0.03,-10.13 -0.03,-10.35 0.05,-10.61 0.04,-0.15 1.3,-1.49 3.51,-3.7L31.31,34.32l8.21,0.01c9.09,0.01 9.83,0.03 10.01,0.29 0.1,0.14 0.12,1.46 0.1,9.13L49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.75 -0,-7.89 -0.07,-7.97 -0.08,-0.1 -1.41,-0.11 -7.97,-0.09L25.75,42.41l-0.02,7.97 -0.02,7.97 7.97,-0.02L41.65,58.32ZM45.78,54.66 L48.37,52.07L48.37,44.48C48.37,38.49 48.35,36.89 48.26,36.89c-0.06,0 -1.25,1.14 -2.65,2.54L43.07,41.98l0,7.63C43.07,53.81 43.1,57.25 43.13,57.25c0.04,0 1.23,-1.17 2.65,-2.59z"
android:fillColor="#715132"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31 24.32,52.1c-0.03,-10.13 -0.03,-10.35 0.05,-10.61 0.04,-0.15 1.3,-1.49 3.51,-3.7L31.31,34.32l3.09,0c1.7,0 5.75,0.03 9.01,0.06 5.61,0.05 5.94,0.07 6.09,0.21 0.15,0.15 0.16,0.5 0.14,9.14L49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.75 -0,-7.89 -0.07,-7.97 -0.08,-0.1 -1.41,-0.11 -7.97,-0.09L25.75,42.41l-0.02,7.97 -0.02,7.97 7.97,-0.02L41.65,58.32ZM45.78,54.66 L48.37,52.07L48.37,44.48C48.37,38.49 48.35,36.89 48.26,36.89c-0.06,0 -1.25,1.14 -2.65,2.54L43.07,41.98l0,7.63C43.07,53.81 43.1,57.25 43.13,57.25c0.04,0 1.23,-1.17 2.65,-2.59zM46.53,36.25l0.43,-0.38 -7.46,-0 -7.46,-0 -0.3,0.32c-0.16,0.18 -0.3,0.35 -0.3,0.38 -0,0.04 3.3,0.06 7.33,0.06l7.33,-0z"
android:fillColor="#6c5035"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31 24.32,52.1C24.29,41.97 24.29,41.75 24.36,41.49 24.4,41.33 25.67,39.99 27.87,37.77l3.45,-3.47 8.97,0.06c8.97,0.06 8.97,0.06 9.17,0.24l0.19,0.18L49.63,43.75 49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.74 -0,-7.89 -0.07,-7.97C41.47,42.32 25.88,42.31 25.72,42.47c-0.08,0.08 -0.1,1.96 -0.1,7.94 0,4.31 0.03,7.86 0.06,7.89 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.32ZM45.78,54.66 L48.37,52.07l0,-7.58c0,-4.17 -0.03,-7.6 -0.06,-7.64 -0.03,-0.03 -1.23,1.11 -2.65,2.53L43.07,41.98l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.03,0 1.23,-1.16 2.65,-2.59zM46.53,36.25 L46.96,35.87 39.5,35.87 32.04,35.87 31.74,36.19c-0.16,0.18 -0.3,0.35 -0.3,0.38 -0,0.04 3.3,0.06 7.33,0.06l7.33,-0z"
android:fillColor="#97490b"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31L24.34,50.35 24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.13,-0.13 9.06,-0.07 8.8,0.06 8.81,0.06 9,0.24l0.19,0.18L49.63,43.75 49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.74 -0,-7.89 -0.07,-7.97C41.47,42.32 25.88,42.31 25.72,42.47c-0.08,0.08 -0.1,1.96 -0.1,7.94 0,4.31 0.03,7.86 0.06,7.89 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.32ZM45.78,54.66 L48.37,52.07l0,-7.58c0,-4.17 -0.03,-7.6 -0.06,-7.64 -0.03,-0.03 -1.23,1.11 -2.65,2.53L43.07,41.98l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.03,0 1.23,-1.16 2.65,-2.59zM46.53,36.25 L46.96,35.87 39.5,35.87 32.04,35.87 31.74,36.19c-0.16,0.18 -0.3,0.35 -0.3,0.38 -0,0.04 3.3,0.06 7.33,0.06l7.33,-0z"
android:fillColor="#6b4e31"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31L24.34,50.35 24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.13,-0.13 9.06,-0.07 8.8,0.06 8.81,0.06 9,0.24l0.19,0.18L49.63,43.75 49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.74 -0,-7.89 -0.07,-7.97C41.47,42.32 25.88,42.31 25.72,42.47c-0.08,0.08 -0.1,1.96 -0.1,7.94 0,4.31 0.03,7.86 0.06,7.89 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.32ZM45.78,54.66 L48.37,52.07l0,-7.58c0,-4.17 -0.03,-7.6 -0.06,-7.64 -0.03,-0.03 -1.23,1.11 -2.65,2.53L43.07,41.98l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.03,0 1.23,-1.16 2.65,-2.59zM46.21,36.62 L47,35.91 39.5,35.89 31.99,35.86 31.37,36.53c-0.34,0.37 -0.62,0.7 -0.62,0.73 -0,0.04 3.3,0.06 7.34,0.06l7.34,0z"
android:fillColor="#694b2d"/>
<path
android:pathData="M24.55,59.52 L24.34,59.31L24.34,50.35 24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.13,-0.13 9.06,-0.07 8.8,0.06 8.81,0.06 9,0.24l0.19,0.18L49.63,43.75 49.61,52.71 46.12,56.2 42.64,59.68 33.7,59.71 24.76,59.73ZM41.68,50.46c0.02,-5.74 -0,-7.89 -0.07,-7.97C41.47,42.32 25.88,42.31 25.72,42.47c-0.08,0.08 -0.1,1.96 -0.1,7.94 0,4.31 0.03,7.86 0.06,7.89 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.32ZM45.78,54.66 L48.37,52.07l0,-7.58c0,-4.17 -0.03,-7.6 -0.06,-7.64 -0.03,-0.03 -1.23,1.11 -2.65,2.53L43.07,41.98l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.03,0 1.23,-1.16 2.65,-2.59zM45.92,36.93c0.6,-0.54 1.07,-1.02 1.04,-1.07 -0.03,-0.05 -2.92,-0.08 -7.46,-0.08l-7.41,-0 -0.87,0.88c-0.48,0.49 -0.91,0.97 -0.97,1.07L30.15,37.92l7.34,0 7.34,0z"
android:fillColor="#66482b"/>
<path
android:pathData="m24.71,59.64c-0.1,-0.04 -0.23,-0.15 -0.28,-0.25C24.37,59.28 24.34,56.45 24.34,50.31L24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.13,-0.13 9.06,-0.07 8.8,0.06 8.81,0.06 9,0.24l0.19,0.18L49.63,43.75 49.61,52.71 46.12,56.2 42.64,59.68 33.77,59.7c-5.01,0.01 -8.95,-0.02 -9.06,-0.06zM41.68,50.46c0.02,-5.74 -0,-7.89 -0.07,-7.97C41.47,42.32 25.88,42.31 25.72,42.47c-0.08,0.08 -0.1,1.96 -0.1,7.94 0,4.31 0.03,7.86 0.06,7.89 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.32ZM45.78,54.66 L48.37,52.07l0,-7.58c0,-4.17 -0.03,-7.6 -0.06,-7.64 -0.03,-0.03 -1.23,1.11 -2.65,2.53L43.07,41.98l0,7.63C43.07,53.81 43.09,57.25 43.13,57.25c0.03,0 1.23,-1.16 2.65,-2.59zM44.75,38.08C45.67,37.24 47,35.92 47,35.85 47,35.81 43.63,35.78 39.52,35.78l-7.48,0l-0.21,0.19C31.46,36.3 29.47,38.47 29.47,38.54 29.47,38.57 32.78,38.6 36.82,38.6l7.35,0z"
android:fillColor="#594737"/>
<path
android:pathData="m24.68,59.63c-0.09,-0.03 -0.2,-0.14 -0.25,-0.23C24.37,59.28 24.34,56.45 24.34,50.31L24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.14,-0.13 9.06,-0.08l8.81,0.06 0.19,0.22 0.19,0.22L49.63,43.78 49.61,52.71 46.12,56.2 42.64,59.68l-8.9,0c-4.89,0 -8.97,-0.03 -9.06,-0.06zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM44.75,38.08C45.67,37.24 47,35.92 47,35.85 47,35.81 43.63,35.78 39.52,35.78l-7.48,0l-0.21,0.19C31.46,36.3 29.47,38.47 29.47,38.54 29.47,38.57 32.78,38.6 36.82,38.6l7.35,0z"
android:fillColor="#4b4744"/>
<path
android:pathData="m24.69,59.63c-0.09,-0.03 -0.21,-0.14 -0.26,-0.23C24.37,59.28 24.34,56.45 24.34,50.31L24.34,41.39l3.4,-3.41c1.87,-1.87 3.51,-3.47 3.65,-3.54 0.23,-0.12 1.14,-0.13 9.06,-0.08l8.81,0.06 0.21,0.23 0.21,0.23 -0.05,8.89 -0.05,8.89 -3.49,3.48 -3.49,3.48 -8.87,0.03c-4.88,0.02 -8.95,0 -9.04,-0.03zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM44.75,38.08C45.67,37.24 47,35.92 47,35.85 47,35.81 43.63,35.78 39.52,35.78l-7.48,0l-0.21,0.19C31.46,36.3 29.47,38.47 29.47,38.54 29.47,38.57 32.78,38.6 36.82,38.6l7.35,0z"
android:fillColor="#75431d"/>
<path
android:pathData="m24.68,59.63c-0.1,-0.04 -0.21,-0.16 -0.26,-0.29C24.37,59.2 24.34,55.89 24.34,50.31L24.34,41.51l0.85,-0.92c1.35,-1.46 6.12,-6.18 6.25,-6.19 0.07,-0 4.11,-0 8.98,0l8.85,0.01 0.21,0.23 0.21,0.23 -0.05,8.89 -0.05,8.89 -3.49,3.48 -3.49,3.48 -8.87,0.03c-4.88,0.02 -8.95,0 -9.04,-0.03zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM44.75,38.08C45.67,37.24 47,35.92 47,35.85 47,35.81 43.63,35.78 39.52,35.78l-7.48,0l-0.21,0.19C31.46,36.3 29.47,38.47 29.47,38.54 29.47,38.57 32.78,38.6 36.82,38.6l7.35,0z"
android:fillColor="#624528"/>
<path
android:pathData="m24.7,59.61c-0.09,-0.04 -0.21,-0.17 -0.26,-0.28C24.36,59.18 24.34,56.6 24.34,50.31L24.34,41.51l0.85,-0.92c1.35,-1.46 6.12,-6.18 6.25,-6.19 0.07,-0 4.11,-0 8.98,0l8.85,0.01 0.21,0.23 0.21,0.23 -0.05,8.89 -0.05,8.89 -3.49,3.48 -3.49,3.48 -8.86,0.03c-5.03,0.02 -8.94,-0 -9.03,-0.04zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM43.84,38.98C44.52,38.38 47.08,35.9 47.08,35.83c0,-0.03 -3.41,-0.04 -7.58,-0.03l-7.58,0.02 -1.57,1.66c-0.86,0.92 -1.61,1.73 -1.65,1.82C28.61,39.45 28.93,39.46 35.94,39.46l7.34,0z"
android:fillColor="#5d4125"/>
<path
android:pathData="m24.7,59.61c-0.09,-0.04 -0.21,-0.17 -0.26,-0.28C24.36,59.18 24.34,56.6 24.34,50.31L24.34,41.5l0.44,-0.49C25.8,39.9 31.15,34.57 31.35,34.47c0.17,-0.08 2.19,-0.1 9.06,-0.07l8.84,0.03 0.22,0.22 0.22,0.22 -0.05,8.9 -0.05,8.9 -3.49,3.48 -3.49,3.48 -8.86,0.03c-5.03,0.02 -8.94,-0 -9.03,-0.04zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM42.59,40.15C42.91,39.96 47.08,35.96 47.08,35.86 47.08,35.81 43.93,35.78 39.54,35.78l-7.55,0l-1.12,1.13c-1.81,1.83 -3.11,3.24 -3.06,3.32 0.03,0.04 3.25,0.07 7.29,0.07 6.93,-0 7.25,-0.01 7.5,-0.16z"
android:fillColor="#593d22"/>
<path
android:pathData="M24.77,59.63C24.69,59.6 24.55,59.48 24.47,59.37 24.35,59.2 24.34,58.32 24.34,50.34L24.34,41.5l0.44,-0.49C25.8,39.9 31.15,34.57 31.35,34.47c0.17,-0.08 2.19,-0.1 9.06,-0.07l8.84,0.03 0.22,0.22 0.22,0.22 -0.05,8.9 -0.05,8.9 -3.49,3.48L42.59,59.63 33.77,59.66c-4.86,0.02 -8.9,0 -8.99,-0.03zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM43.98,38.96c1.07,-1.03 2.24,-2.17 2.59,-2.52L47.21,35.78l-7.62,0 -7.62,0l-1.7,1.73C27.96,39.86 27.16,40.7 27.16,40.77 27.16,40.8 30.5,40.83 34.59,40.83l7.43,0z"
android:fillColor="#53381e"/>
<path
android:pathData="m24.88,59.66c-0.1,-0.01 -0.25,-0.11 -0.34,-0.2 -0.15,-0.17 -0.16,-0.54 -0.18,-8.87 -0.01,-4.78 -0,-8.82 0.03,-8.98 0.04,-0.24 0.65,-0.89 3.4,-3.66 1.84,-1.86 3.45,-3.42 3.56,-3.48 0.16,-0.08 2.34,-0.09 9.06,-0.07l8.84,0.03 0.22,0.22 0.22,0.22 -0.05,8.9 -0.05,8.9 -3.49,3.48L42.59,59.63 33.83,59.66c-4.82,0.02 -8.85,0.02 -8.95,0zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM44.62,38.35 L47.21,35.79 39.56,35.79 31.92,35.78 29.47,38.27c-1.34,1.37 -2.46,2.52 -2.47,2.57C26.99,40.88 30.32,40.91 34.51,40.91l7.53,0z"
android:fillColor="#6b3409"/>
<path
android:pathData="m24.88,59.66c-0.1,-0.01 -0.25,-0.11 -0.34,-0.2C24.39,59.29 24.38,58.93 24.38,50.35L24.38,41.42L27.89,37.92 31.4,34.41l8.92,0 8.92,0l0.22,0.22 0.22,0.22 -0.05,8.9 -0.05,8.9 -3.49,3.48L42.59,59.63 33.83,59.66c-4.82,0.02 -8.85,0.02 -8.95,0zM41.65,50.41L41.65,42.41L33.66,42.41 25.66,42.41l-0.02,7.95c-0.02,6.3 0,7.96 0.09,8.02 0.06,0.04 3.67,0.06 8.02,0.05L41.65,58.4ZM45.87,54.66 L48.37,52.15L48.37,44.48C48.37,38.28 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.61c0,4.19 0.02,7.64 0.05,7.67 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.26,-1.21 2.64,-2.59zM44.62,38.35 L47.21,35.79 39.56,35.79 31.92,35.78 29.47,38.27c-1.34,1.37 -2.46,2.52 -2.47,2.57C26.99,40.88 30.32,40.91 34.51,40.91l7.53,0z"
android:fillColor="#493524"/>
<path
android:pathData="m24.88,59.66c-0.1,-0.01 -0.25,-0.1 -0.34,-0.2 -0.15,-0.16 -0.16,-0.58 -0.16,-9.1L24.38,41.43l3.51,-3.51 3.51,-3.51 8.95,0.02c8.46,0.02 8.96,0.03 9.1,0.18 0.15,0.15 0.15,0.6 0.12,9.11L49.55,52.67 46.07,56.15 42.59,59.63 33.83,59.66c-4.82,0.01 -8.85,0.01 -8.95,-0zM41.68,50.38 L41.7,42.37 33.68,42.39L25.66,42.41 25.64,50.32c-0.01,4.35 -0,7.96 0.02,8.02 0.03,0.09 1.68,0.1 8.02,0.09L41.65,58.4ZM45.78,54.75 L48.37,52.16L48.37,44.48C48.37,38.33 48.35,36.81 48.26,36.81c-0.06,0 -1.27,1.17 -2.69,2.59L42.98,41.99l0,7.67C42.98,55.72 43,57.33 43.09,57.33c0.06,0 1.27,-1.16 2.69,-2.59zM44.61,38.42C46.02,37.04 47.17,35.87 47.17,35.81c0,-0.09 -1.46,-0.11 -7.59,-0.11l-7.59,-0 -2.5,2.54C28.11,39.63 26.99,40.81 26.99,40.85 26.99,40.88 30.38,40.91 34.52,40.91l7.53,0z"
android:fillColor="#3c3023"/>
<path
android:pathData="m24.88,59.67c-0.1,-0.02 -0.25,-0.12 -0.34,-0.21 -0.15,-0.16 -0.16,-0.58 -0.16,-9.1L24.38,41.43 27.89,37.92 31.4,34.41l8.82,0c6.54,0 8.88,0.03 9.04,0.1 0.13,0.06 0.25,0.2 0.28,0.34 0.03,0.13 0.04,4.21 0.02,9.05L49.52,52.72 46.06,56.18 42.59,59.64 34.9,59.64C30.66,59.64 26.72,59.66 26.13,59.68c-0.59,0.02 -1.15,0.02 -1.25,-0.01zM41.68,50.38 L41.7,42.37L33.66,42.37 25.62,42.37l0,7.98c0,4.39 0.03,8.01 0.06,8.04 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.4ZM45.8,54.72 L48.41,52.12l0,-7.65c0,-4.21 -0.03,-7.68 -0.07,-7.71 -0.04,-0.04 -1.26,1.12 -2.72,2.58L42.98,41.98l0,7.68C42.98,55.76 43,57.33 43.09,57.33c0.06,0 1.28,-1.17 2.72,-2.61zM44.65,38.38c1.43,-1.4 2.58,-2.57 2.56,-2.61C47.18,35.73 43.74,35.7 39.56,35.7l-7.6,0l-2.47,2.52c-1.36,1.39 -2.48,2.56 -2.49,2.61C26.98,40.88 29.47,40.91 34.51,40.91l7.54,0z"
android:fillColor="#452d17"/>
<path
android:pathData="m24.6,59.48c-0.16,-0.16 -0.16,-0.47 -0.19,-8.72 -0.02,-4.71 -0.02,-8.74 -0,-8.97L24.44,41.38 27.79,38.02c1.84,-1.85 3.45,-3.42 3.58,-3.48C31.56,34.43 32.93,34.41 40.32,34.41c6.47,0 8.78,0.03 8.94,0.1 0.13,0.06 0.25,0.2 0.28,0.34 0.03,0.13 0.04,4.21 0.02,9.05L49.52,52.72 46.06,56.18 42.59,59.64L33.68,59.64C25.06,59.64 24.76,59.64 24.6,59.48ZM41.68,50.38 L41.7,42.37L33.66,42.37 25.62,42.37l0,7.98c0,4.39 0.03,8.01 0.06,8.04 0.03,0.03 3.64,0.05 8.02,0.04L41.65,58.4ZM45.8,54.72 L48.41,52.12l0,-7.65c0,-4.21 -0.03,-7.68 -0.07,-7.71 -0.04,-0.04 -1.26,1.12 -2.72,2.58L42.98,41.98l0,7.68C42.98,55.76 43,57.33 43.09,57.33c0.06,0 1.28,-1.17 2.72,-2.61zM44.64,38.42c1.43,-1.42 2.59,-2.61 2.56,-2.65C47.18,35.73 43.86,35.7 39.58,35.7L31.99,35.7l-2.54,2.54C28.05,39.64 26.9,40.83 26.9,40.89 26.9,40.98 28.45,41 34.47,41l7.57,0z"
android:fillColor="#382c21"/>
<path
android:pathData="m24.6,59.48c-0.16,-0.16 -0.16,-0.47 -0.19,-8.72 -0.02,-4.71 -0.02,-8.74 -0,-8.97L24.44,41.38 27.79,38.02c1.84,-1.85 3.45,-3.42 3.58,-3.48C31.56,34.43 32.93,34.41 40.28,34.41c8.63,0 9.05,0.01 9.22,0.28 0.04,0.06 0.07,4.12 0.07,9.04L49.56,52.67 46.08,56.16 42.59,59.64L33.68,59.64C25.06,59.64 24.76,59.64 24.6,59.48ZM41.73,58.31C41.76,58.23 41.78,54.66 41.78,50.36c0,-6.99 -0.01,-7.83 -0.13,-7.95C41.53,42.3 40.69,42.28 33.7,42.28c-4.3,0 -7.87,0.02 -7.95,0.05 -0.12,0.05 -0.14,0.84 -0.14,8.08L25.62,58.44l8.03,0c7.24,0 8.03,-0.01 8.08,-0.14zM48.45,44.5c-0,-4.69 -0.03,-7.61 -0.08,-7.69 -0.07,-0.1 -0.62,0.41 -2.74,2.52L42.98,41.98l0,7.66c0,4.21 0.03,7.69 0.06,7.72 0.03,0.03 1.27,-1.14 2.74,-2.62L48.45,52.07ZM44.64,38.42c1.43,-1.42 2.59,-2.61 2.56,-2.65C47.18,35.73 43.86,35.7 39.56,35.7L31.96,35.7l-2.51,2.53c-1.38,1.39 -2.52,2.58 -2.53,2.65C26.89,40.98 27.94,41 34.46,41l7.57,0z"
android:fillColor="#34261a"/>
<path
android:pathData="m24.6,59.48c-0.16,-0.16 -0.16,-0.47 -0.19,-8.72 -0.02,-4.71 -0.02,-8.74 -0,-8.97L24.44,41.38 27.79,38.02c1.84,-1.85 3.46,-3.42 3.6,-3.5 0.23,-0.12 1.14,-0.13 9.06,-0.07 7.84,0.06 8.83,0.08 8.96,0.2 0.14,0.13 0.15,0.67 0.15,9.08L49.56,52.67L46.08,56.16 42.59,59.64L33.68,59.64C25.06,59.64 24.76,59.64 24.6,59.48ZM41.73,58.31c0.03,-0.07 0.05,-3.66 0.05,-7.98 0,-5.99 -0.02,-7.87 -0.1,-7.95 -0.08,-0.08 -1.97,-0.1 -7.99,-0.1 -7.06,0 -7.9,0.01 -8.02,0.13C25.55,42.54 25.53,43.37 25.53,50.36c0,4.3 0.02,7.87 0.05,7.95C25.63,58.43 26.42,58.44 33.66,58.44c7.23,0 8.03,-0.01 8.07,-0.14zM45.91,54.7 L48.45,52.15l0,-7.66c0,-5.54 -0.03,-7.68 -0.1,-7.72 -0.06,-0.03 -1.18,1.03 -2.74,2.58L42.98,41.98l0,7.66c0,4.21 0.02,7.69 0.05,7.72 0.03,0.03 0.12,0.02 0.19,-0.02 0.08,-0.04 1.28,-1.23 2.68,-2.63zM44.64,38.46c1.42,-1.4 2.59,-2.59 2.6,-2.65C47.26,35.72 45.91,35.7 39.57,35.7l-7.69,0l-2.53,2.58C27.96,39.69 26.82,40.89 26.82,40.93 26.82,40.97 30.25,41 34.44,41l7.62,0z"
android:fillColor="#2d231a"/>
<path
android:pathData="m24.6,59.48c-0.16,-0.16 -0.16,-0.47 -0.19,-8.72 -0.02,-4.71 -0.02,-8.74 -0,-8.97L24.44,41.38 27.79,38.02c1.84,-1.85 3.46,-3.42 3.6,-3.5 0.23,-0.12 1.14,-0.13 9.06,-0.07 7.84,0.06 8.83,0.08 8.96,0.2 0.14,0.13 0.15,0.66 0.15,8.98 0,7.52 -0.02,8.88 -0.12,9.07 -0.15,0.28 -6.6,6.72 -6.86,6.85 -0.13,0.07 -2.74,0.09 -9,0.09 -8.52,0 -8.82,-0.01 -8.98,-0.16zM41.62,58.44c0.16,-0.09 0.17,-0.27 0.17,-8.02 0,-6.06 -0.02,-7.96 -0.1,-8.04 -0.15,-0.15 -15.89,-0.15 -16.04,0 -0.08,0.08 -0.1,1.98 -0.1,8.03 0,7.46 0.01,7.94 0.15,8.02 0.21,0.12 15.71,0.13 15.93,0zM45.83,54.79 L48.45,52.15l0,-7.67c0,-6.96 -0.01,-7.68 -0.14,-7.73 -0.1,-0.04 -0.87,0.68 -2.76,2.57L42.94,41.94l-0.02,7.55c-0.01,4.15 -0,7.63 0.02,7.74 0.03,0.11 0.1,0.19 0.15,0.19 0.06,0 1.29,-1.18 2.73,-2.63zM44.66,38.46C46.09,37.07 47.26,35.87 47.26,35.81 47.26,35.72 45.89,35.7 39.57,35.7l-7.69,0l-2.53,2.57C27.96,39.68 26.82,40.87 26.82,40.92 26.82,40.97 29.51,41 34.44,41l7.62,0z"
android:fillColor="#341b07"/>
<path
android:pathData="m24.59,59.47c-0.17,-0.17 -0.17,-0.29 -0.17,-9.09L24.42,41.47L27.91,37.99 31.39,34.5l8.94,0c8.56,0 8.95,0.01 9.09,0.16 0.13,0.14 0.14,0.89 0.14,8.98 0,7.5 -0.02,8.86 -0.12,9.06 -0.15,0.28 -6.6,6.72 -6.86,6.85C42.45,59.61 39.84,59.64 33.58,59.64 24.88,59.64 24.76,59.64 24.59,59.47ZM41.62,58.44c0.16,-0.09 0.17,-0.27 0.17,-8.02 0,-6.06 -0.02,-7.96 -0.1,-8.04 -0.15,-0.15 -15.89,-0.15 -16.04,0 -0.08,0.08 -0.1,1.98 -0.1,8.03 0,7.46 0.01,7.94 0.15,8.02 0.21,0.12 15.71,0.13 15.93,0zM45.83,54.79 L48.45,52.15l0,-7.67c0,-6.96 -0.01,-7.68 -0.14,-7.73 -0.1,-0.04 -0.87,0.68 -2.76,2.57L42.94,41.94l-0.02,7.55c-0.01,4.15 -0,7.63 0.02,7.74 0.03,0.11 0.1,0.19 0.15,0.19 0.06,0 1.29,-1.18 2.73,-2.63zM44.66,38.46C46.09,37.07 47.26,35.87 47.26,35.81 47.26,35.72 45.89,35.7 39.57,35.7l-7.69,0l-2.53,2.57C27.96,39.68 26.82,40.87 26.82,40.92 26.82,40.97 29.51,41 34.44,41l7.62,0z"
android:fillColor="#291c11"/>
<path
android:pathData="m24.79,59.56c-0.1,-0.04 -0.23,-0.15 -0.28,-0.25C24.45,59.19 24.42,56.39 24.42,50.31L24.42,41.47L27.91,37.99 31.39,34.5l8.91,0c8.8,0 8.92,0 9.09,0.17 0.17,0.17 0.17,0.29 0.17,8.98 0,7.49 -0.02,8.85 -0.12,9.04 -0.15,0.28 -6.6,6.72 -6.86,6.85 -0.23,0.12 -17.5,0.12 -17.79,0.01zM41.69,58.41c0.07,-0.08 0.09,-2.27 0.07,-8.1L41.74,42.32 33.75,42.3c-5.83,-0.02 -8.02,0 -8.1,0.07 -0.16,0.13 -0.17,15.89 -0.01,16.05 0.16,0.16 15.92,0.15 16.05,-0.01zM45.83,54.79 L48.45,52.15L48.45,44.44C48.45,37.11 48.45,36.72 48.3,36.72c-0.08,0 -1.31,1.16 -2.78,2.63L42.89,41.99l0,7.66c0,4.21 0.03,7.68 0.06,7.71 0.03,0.03 0.1,0.06 0.15,0.06 0.05,0 1.28,-1.18 2.72,-2.63zM44.72,38.44c1.58,-1.58 2.62,-2.68 2.58,-2.74C47.26,35.64 45.19,35.61 39.65,35.61c-4.18,0 -7.65,0.02 -7.72,0.05 -0.22,0.09 -5.21,5.25 -5.15,5.34 0.04,0.06 2.62,0.09 7.68,0.09l7.62,0z"
android:fillColor="#1a1816"/>
<path
android:pathData="M24.79,59.56C24.69,59.52 24.56,59.4 24.51,59.31 24.45,59.19 24.42,56.39 24.42,50.31L24.42,41.47L27.91,37.99 31.39,34.5l8.91,0c8.83,0 8.92,0 9.09,0.17 0.17,0.17 0.17,0.24 0.15,9.06L49.52,52.63 46.06,56.09l-3.46,3.46 -8.81,0.05c-5.58,0.03 -8.88,0.02 -9,-0.04zM41.74,50.41L41.74,42.32L33.66,42.32 25.58,42.32l-0.02,8.03c-0.02,6.37 0,8.05 0.09,8.1 0.06,0.04 3.71,0.06 8.1,0.05L41.74,58.49ZM45.82,54.79 L48.45,52.16l0,-7.71c0,-5.58 -0.03,-7.73 -0.1,-7.77 -0.06,-0.03 -1.2,1.04 -2.78,2.62L42.89,41.98l0,7.66c0,4.21 0.03,7.69 0.06,7.72 0.03,0.03 0.1,0.06 0.15,0.06 0.05,0 1.28,-1.18 2.72,-2.63zM44.72,38.44c1.58,-1.58 2.62,-2.68 2.58,-2.74C47.26,35.64 45.19,35.61 39.65,35.61c-4.18,0 -7.66,0.02 -7.72,0.05 -0.22,0.09 -5.2,5.25 -5.15,5.34C26.81,41.06 29.37,41.08 34.45,41.08l7.62,0z"
android:fillColor="#17110c"/>
<path
android:pathData="m24.82,59.51c-0.18,-0.06 -0.28,-0.16 -0.32,-0.33 -0.04,-0.13 -0.07,-4.13 -0.07,-8.87 -0.01,-7.51 0.01,-8.66 0.12,-8.86 0.07,-0.13 1.64,-1.75 3.49,-3.59L31.39,34.5l8.88,0 8.88,0 0.21,0.21 0.21,0.21 -0.06,8.83c-0.03,4.86 -0.09,8.89 -0.13,8.96 -0.04,0.07 -1.58,1.64 -3.43,3.48L42.59,59.55 33.84,59.57C28.16,59.59 24.99,59.57 24.82,59.51ZM41.74,50.41L41.74,42.32L33.66,42.32 25.58,42.32l-0.02,8c-0.01,4.4 -0,8.04 0.02,8.1 0.03,0.09 1.7,0.1 8.1,0.09L41.74,58.49ZM45.82,54.87 L48.45,52.24L48.45,44.44C48.45,38.27 48.43,36.64 48.35,36.64c-0.06,0 -1.31,1.2 -2.78,2.67L42.89,41.98l0,7.7c0,4.24 0.03,7.73 0.06,7.76 0.03,0.03 0.1,0.06 0.15,0.06 0.05,0 1.28,-1.18 2.72,-2.63zM44.81,38.44c1.54,-1.54 2.62,-2.68 2.58,-2.74C47.35,35.64 45.16,35.61 39.62,35.61l-7.71,0l-2.63,2.63C27.83,39.69 26.65,40.92 26.65,40.98 26.65,41.06 28.23,41.08 34.41,41.08l7.76,0z"
android:fillColor="#120c08"/>
<path
android:pathData="m24.68,59.39c-0.17,-0.17 -0.17,-0.29 -0.17,-9.04L24.51,41.47l3.36,-3.36c1.85,-1.85 3.43,-3.41 3.53,-3.46 0.23,-0.13 17.82,-0.09 17.98,0.04 0.08,0.07 0.11,1.97 0.11,8.99L49.48,52.58L46,56.07 42.51,59.56L33.68,59.56C24.96,59.56 24.85,59.55 24.68,59.39ZM41.73,58.48c0.12,-0.12 0.13,-0.97 0.13,-8.11 0,-6.09 -0.02,-8 -0.1,-8.08 -0.15,-0.15 -16.07,-0.15 -16.21,0 -0.08,0.08 -0.1,1.99 -0.1,8.08 0,7.13 0.01,7.99 0.13,8.11C25.7,58.6 26.55,58.62 33.66,58.62c7.1,0 7.96,-0.01 8.08,-0.13zM45.87,54.83 L48.54,52.16L48.54,44.45c0,-6.91 -0.01,-7.72 -0.13,-7.82 -0.12,-0.1 -0.49,0.25 -2.86,2.62L42.81,41.99l0,7.7c0,4.24 0.03,7.73 0.06,7.76C42.9,57.48 42.98,57.5 43.06,57.5c0.07,0 1.34,-1.2 2.81,-2.67zM44.78,38.55C46.24,37.1 47.43,35.86 47.43,35.78c0,-0.08 -0.06,-0.17 -0.14,-0.2C47.22,35.55 43.73,35.53 39.53,35.53l-7.62,0l-2.6,2.59c-1.43,1.42 -2.63,2.66 -2.68,2.74 -0.05,0.08 -0.06,0.19 -0.03,0.24 0.03,0.05 2.83,0.08 7.79,0.08l7.74,0z"
android:fillColor="#000000"/>
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 115 KiB

View file

@ -0,0 +1,24 @@
<resources>
<string name="plugin_name">Booru Wallpaper Provider</string>
<string name="plugin_description">
A wallpaper provider that can talk to Booru sites running Danbooru software.
</string>
<string name="plugin_uuid">893434d0-4901-4ad9-a366-50f93ea2f285</string>
<!-- Setting parameters -->
<string name="settings">Settings</string>
<string name="setting_image_url_title">Image URL</string>
<string name="setting_booru_url_title">Booru URL - e.g. \'https://danbooru.donmai.us/\'</string>
<string name="setting_booru_type_title">Booru Type</string>
<string name="setting_booru_tag_search_title">Search query - e.g. \'ratio:16:9 rating:general\'</string>
<string name="setting_booru_user_id_title">Booru Username </string>
<string name="setting_booru_api_key_title">Booru API Key</string>
<string name="setting_users_title">User settings (optional)</string>
<string name="setting_users_description">
Logging in is optional, but if you have a premium account you can use more tags in your search.
</string>
<string name="setting_booru_type_subtype_danbooru_title">Danbooru</string>
<string name="setting_booru_type_subtype_danbooru_description">Danbooru-based (danbooru.donmai.us) - Currently the only supported type</string>
</resources>

1
sample/.gitignore vendored
View file

@ -1 +0,0 @@
/build

View file

@ -1,50 +0,0 @@
package tv.projectivy.plugin.wallpaperprovider.sample
import android.os.Bundle
import android.util.Log
import androidx.appcompat.content.res.AppCompatResources
import androidx.leanback.app.GuidedStepSupportFragment
import androidx.leanback.widget.GuidanceStylist.Guidance
import androidx.leanback.widget.GuidedAction
import kotlin.CharSequence
class SettingsFragment : GuidedStepSupportFragment() {
override fun onCreateGuidance(savedInstanceState: Bundle?): Guidance {
return Guidance(
getString(R.string.plugin_name),
getString(R.string.plugin_description),
getString(R.string.settings),
AppCompatResources.getDrawable(requireActivity(), R.drawable.ic_plugin)
)
}
override fun onCreateActions(actions: MutableList<GuidedAction>, savedInstanceState: Bundle?) {
PreferencesManager.init(requireContext())
val currentImageUrl = PreferencesManager.imageUrl
val action = GuidedAction.Builder(context)
.id(ACTION_ID_IMAGE_URL)
.title(R.string.setting_image_url_title)
.description(currentImageUrl)
.editDescription(currentImageUrl)
.descriptionEditable(true)
.build()
actions.add(action)
}
override fun onGuidedActionClicked(action: GuidedAction) {
when (action.id) {
ACTION_ID_IMAGE_URL -> {
val params: CharSequence? = action.editDescription
findActionById(ACTION_ID_IMAGE_URL)?.description = params
notifyActionChanged(findActionPositionById(ACTION_ID_IMAGE_URL))
PreferencesManager.imageUrl = params.toString()
}
}
}
companion object {
private const val ACTION_ID_IMAGE_URL = 1L
}
}

View file

@ -1,89 +0,0 @@
<animated-vector
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt">
<aapt:attr name="android:drawable">
<vector android:height="100dp" android:viewportHeight="1333.3"
android:viewportWidth="1333.3" android:width="100dp">
<group
android:name="group"
android:rotation="0"
android:pivotX="666"
android:pivotY="666"
android:scaleX="1.5"
android:scaleY="1.5"
>
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C807.3,378.3 585.1,156 0,-0L95.2,-0C648.3,173.6 838.7,395.8 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c201.3,-249.9 42.6,-472.1 -476.2,-666.7l95.2,-0C767.7,218.7 894.7,440.9 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c251.9,-198.8 156.6,-421 -285.7,-666.7l95.2,-0C875.7,275.1 939.2,497.3 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c289.8,-137.8 258.1,-360 -95.2,-666.7L666.7,-0c303.4,340 303.4,562.2 0,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c313.2,-69.8 344.9,-292.1 95.2,-666.7l95.2,-0C1049.2,410.1 985.7,632.3 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c320.9,1.6 416.1,-220.6 285.7,-666.7l95.2,-0C1112.3,482 985.4,704.2 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c312.5,73 471.2,-149.3 476.2,-666.7l95.2,-0C1159.5,551.9 969,774.2 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="m666.7,666.7c288.4,140.7 510.6,-81.6 666.7,-666.7L1333.3,95.2C1159.7,648.3 937.5,838.7 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C916.5,868 1138.8,709.3 1333.3,190.5L1333.3,285.7C1114.7,767.7 892.4,894.7 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C865.5,918.5 1087.7,823.3 1333.3,381L1333.3,476.2C1058.3,875.7 836,939.2 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C804.5,956.5 1026.7,924.7 1333.3,571.4L1333.3,666.7C993.4,970.1 771.1,970.1 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C736.5,979.9 958.7,1011.6 1333.3,761.9L1333.3,857.1C923.2,1049.2 701,985.7 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C665.1,987.6 887.3,1082.8 1333.3,952.4L1333.3,1047.6C851.4,1112.3 629.1,985.4 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C593.7,979.1 815.9,1137.9 1333.3,1142.9L1333.3,1238.1C781.4,1159.5 559.2,969 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C526,955.1 748.2,1177.3 1333.3,1333.3L1238.1,1333.3C685.1,1159.7 494.6,937.5 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C465.3,916.5 624.1,1138.8 1142.9,1333.3L1047.6,1333.3C565.6,1114.7 438.6,892.4 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C414.8,865.5 510,1087.7 952.4,1333.3L857.1,1333.3C457.6,1058.3 394.1,836 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C376.9,804.5 408.6,1026.7 761.9,1333.3L666.7,1333.3c-303.4,-340 -303.4,-562.2 0,-666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C353.5,736.5 321.7,958.7 571.4,1333.3L476.2,1333.3C284.1,923.2 347.6,701 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C345.8,665.1 250.5,887.3 381,1333.3L285.7,1333.3C221,851.4 348,629.1 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C354.2,593.7 195.5,815.9 190.5,1333.3L95.2,1333.3C173.8,781.4 364.3,559.2 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C378.3,526 156,748.2 0,1333.3L0,1238.1C173.6,685.1 395.8,494.6 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C416.8,465.3 194.6,624.1 0,1142.9l0,-95.2C218.7,565.6 440.9,438.6 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C467.8,414.8 245.6,510 0,952.4l0,-95.2C275.1,457.6 497.3,394.1 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C528.9,376.9 306.7,408.6 0,761.9L0,666.7c340,-303.4 562.2,-303.4 666.7,-0" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C596.8,353.5 374.6,321.7 0,571.4l0,-95.2C410.1,284.1 632.3,347.6 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C668.3,345.8 446,250.5 0,381l0,-95.2C482,221 704.2,348 666.7,666.7" />
<path android:fillColor="#ccd35933"
android:pathData="M666.7,666.7C739.6,354.2 517.4,195.5 0,190.5l0,-95.2C551.9,173.8 774.2,364.3 666.7,666.7" />
</group>
</vector>
</aapt:attr>
<target android:name="group">
<aapt:attr name="android:animation">
<set>
<objectAnimator
android:startOffset="0"
android:interpolator="@android:anim/linear_interpolator"
android:repeatCount="infinite"
android:duration="10000"
android:propertyName="rotation"
android:valueFrom="0"
android:valueTo="360" />
</set>
</aapt:attr>
</target>
</animated-vector>

View file

@ -1,20 +0,0 @@
<vector android:height="180dp" android:viewportHeight="90"
android:viewportWidth="160" android:width="320dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M66.5,37.8h-0.7c-0.5,0 -0.8,-0.4 -0.8,-0.9c0,-0.2 0.1,-0.4 0.2,-0.6l0.5,-0.5c0.3,-0.3 0.3,-0.8 0,-1.1l-1.2,-1.2c-0.3,-0.3 -0.8,-0.3 -1.1,0l-0.5,0.5c-0.3,0.3 -0.8,0.3 -1.1,0c-0.2,-0.2 -0.2,-0.4 -0.2,-0.6v-0.7c0,-0.4 -0.4,-0.8 -0.8,-0.8l0,0H59c-0.4,0 -0.8,0.4 -0.8,0.8l0,0v0.7c0,0.5 -0.4,0.8 -0.9,0.8c-0.2,0 -0.3,-0.1 -0.5,-0.2l-0.5,-0.5c-0.3,-0.3 -0.8,-0.3 -1.1,0L54,34.7c-0.3,0.3 -0.3,0.8 0,1.1c0,0 0,0 0,0l0.4,0.4c0.4,0.3 0.4,0.9 0,1.3c-0.2,0.2 -0.4,0.3 -0.6,0.3h-0.7c-0.4,0 -0.8,0.4 -0.8,0.8c0,0 0,0 0,0v1.6c0,0.4 0.4,0.8 0.8,0.8c0,0 0,0 0,0h0.7c0.5,0 0.9,0.5 0.8,1c0,0.2 -0.1,0.4 -0.2,0.5L54,43.1c-0.3,0.3 -0.3,0.8 0,1.1c0,0 0,0 0,0l1.2,1.2c0.3,0.3 0.8,0.3 1.1,0c0,0 0,0 0,0l0.5,-0.5c0.4,-0.3 0.9,-0.3 1.2,0.1c0.1,0.1 0.2,0.3 0.2,0.5v0.7c0,0.4 0.3,0.8 0.8,0.9c0,0 0,0 0,0h1.6c0.4,0 0.8,-0.4 0.8,-0.8c0,0 0,0 0,0v-0.7c0,-0.5 0.5,-0.8 0.9,-0.8c0.2,0 0.4,0.1 0.5,0.2l0.5,0.5c0.3,0.3 0.8,0.3 1.1,0c0,0 0,0 0,0l1.2,-1.2c0.3,-0.3 0.3,-0.8 0,-1.1c0,0 0,0 0,0l-0.4,-0.4c-0.4,-0.4 -0.3,-1 0,-1.3c0.2,-0.1 0.4,-0.2 0.6,-0.3h0.7c0.4,0 0.8,-0.4 0.8,-0.8c0,0 0,0 0,0v-1.7C67.3,38.2 66.9,37.8 66.5,37.8zM59.8,42.2c-1.5,0 -2.7,-1.2 -2.7,-2.7c0,-1.5 1.2,-2.7 2.7,-2.7c1.5,0 2.7,1.2 2.7,2.7l0,0C62.5,41 61.3,42.2 59.8,42.2z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M73.9,36.4c-0.4,-0.9 -2.4,-1.7 -5.7,-2.3c2.9,4.6 1.6,10.7 -3,13.7c-4.6,2.9 -10.7,1.6 -13.7,-3c-2.4,-3.7 -2,-8.6 1,-11.9c-2.9,-0.1 -6.1,-0.1 -9.7,-0.1c-19.6,0 -30,1.4 -31.1,3.7c0,0 -1.1,2.1 -1,6.8h11.1c0.5,-0.1 0.9,0.2 1,0.7c0,0 0,0.1 0,0.1c0,0.5 -0.6,0.8 -1.2,0.8H10.8c0.1,0.7 0.2,1.5 0.3,2.3h13.1c0.5,-0.1 0.9,0.2 1,0.7c0,0 0,0.1 0,0.1c0,0.5 -0.6,0.8 -1.2,0.8H11.3c0.1,0.8 0.3,1.5 0.4,2.2h14.8c0.5,-0.1 0.9,0.2 1,0.7c0,0 0,0.1 0,0.1c0,0.4 -0.6,0.8 -1.2,0.8H12.1c1.5,5.7 2.9,5.7 2.9,5.7h2v1.2c0,0.6 1.2,1 2.4,1h9.6c1.2,0 2.4,-0.5 2.4,-1v-1.2h22.7v1.2c0,0.6 1.2,1 2.4,1h9.6c1.2,0 2.4,-0.5 2.4,-1v-1.2h2c0,0 2.2,0 4,-10.8C75.8,39.7 73.9,36.4 73.9,36.4z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M100,59.9v5h-1V53.1h1v1.5h0c0.3,-0.6 0.7,-1 1.2,-1.3s1.1,-0.4 1.7,-0.4c0.5,0 1,0.1 1.4,0.3s0.7,0.4 1,0.8s0.5,0.8 0.6,1.2s0.2,1 0.2,1.6c0,0.7 -0.1,1.3 -0.2,1.8s-0.4,1 -0.7,1.4s-0.7,0.7 -1.1,0.9s-0.9,0.3 -1.5,0.3C101.4,61.3 100.6,60.8 100,59.9L100,59.9zM100,57.8c0,0.4 0.1,0.7 0.2,1s0.3,0.6 0.5,0.8s0.5,0.4 0.8,0.6s0.7,0.2 1,0.2c0.4,0 0.8,-0.1 1.1,-0.3s0.6,-0.4 0.8,-0.7s0.4,-0.7 0.5,-1.1s0.2,-0.9 0.2,-1.5c0,-0.5 -0.1,-0.9 -0.2,-1.3s-0.3,-0.7 -0.5,-1s-0.5,-0.5 -0.8,-0.6s-0.6,-0.2 -1,-0.2c-0.4,0 -0.8,0.1 -1.1,0.2s-0.6,0.4 -0.9,0.6s-0.4,0.6 -0.5,0.9s-0.2,0.7 -0.2,1.1V57.8z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M109.2,61.1V49.3h1v11.8H109.2z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M119.7,61.1v-1.4h0c-0.5,1 -1.4,1.5 -2.5,1.5c-1.9,0 -2.9,-1.2 -2.9,-3.5v-4.7h1v4.5c0,1 0.2,1.7 0.5,2.1s0.9,0.7 1.6,0.7c0.3,0 0.7,-0.1 0.9,-0.2s0.5,-0.3 0.7,-0.6s0.4,-0.5 0.5,-0.9s0.2,-0.7 0.2,-1.1v-4.6h1v8H119.7z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M130.5,60.5c0,1.5 -0.3,2.6 -1,3.3c-0.7,0.7 -1.7,1.1 -3.1,1.1c-0.9,0 -1.7,-0.2 -2.5,-0.6v-1c0.9,0.5 1.7,0.7 2.5,0.7c2.1,0 3.1,-1.1 3.1,-3.3v-1h0c-0.6,1.1 -1.6,1.6 -2.8,1.6c-0.5,0 -0.9,-0.1 -1.4,-0.3s-0.8,-0.4 -1.1,-0.8s-0.5,-0.8 -0.7,-1.3s-0.2,-1 -0.2,-1.7c0,-0.7 0.1,-1.3 0.3,-1.8s0.4,-1 0.7,-1.4s0.7,-0.7 1.2,-0.9s1,-0.3 1.5,-0.3c1.1,0 2,0.5 2.5,1.4h0v-1.2h1V60.5zM129.5,56.3c0,-0.3 -0.1,-0.6 -0.2,-0.9s-0.3,-0.6 -0.5,-0.8s-0.5,-0.4 -0.8,-0.5c-0.3,-0.1 -0.6,-0.2 -1,-0.2c-0.4,0 -0.8,0.1 -1.1,0.2s-0.6,0.4 -0.9,0.7s-0.4,0.7 -0.5,1.1s-0.2,0.9 -0.2,1.4c0,0.5 0.1,0.9 0.2,1.3s0.3,0.7 0.5,1s0.5,0.5 0.8,0.6s0.7,0.2 1,0.2c0.4,0 0.8,-0.1 1.1,-0.2c0.3,-0.1 0.6,-0.3 0.8,-0.6s0.4,-0.5 0.5,-0.9s0.2,-0.7 0.2,-1.1V56.3z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M135,51.1c-0.2,0 -0.4,-0.1 -0.5,-0.2s-0.2,-0.3 -0.2,-0.5c0,-0.2 0.1,-0.4 0.2,-0.5s0.3,-0.2 0.5,-0.2c0.1,0 0.2,0 0.3,0.1s0.2,0.1 0.2,0.1s0.1,0.1 0.2,0.2s0.1,0.2 0.1,0.3c0,0.1 0,0.2 -0.1,0.3s-0.1,0.2 -0.2,0.2s-0.1,0.1 -0.2,0.2S135.1,51.1 135,51.1zM134.5,61.1v-8h1v8H134.5z"/>
<path android:fillColor="@color/projectivy_plugin_color" android:pathData="M144.4,61.1v-4.6c0,-1.8 -0.7,-2.7 -2,-2.7c-0.3,0 -0.7,0.1 -1,0.2s-0.6,0.3 -0.8,0.6s-0.4,0.5 -0.5,0.9s-0.2,0.7 -0.2,1.1v4.6h-1v-8h1v1.4h0c0.6,-1.1 1.5,-1.6 2.7,-1.6c0.9,0 1.5,0.3 2,0.9s0.7,1.4 0.7,2.5v4.9H144.4z"/>
<path android:fillColor="@android:color/white" android:pathData="M80.2,31.2v9.9c0,0.8 -0.2,1.6 -0.5,2.3c-0.3,0.7 -0.7,1.3 -1.3,1.8c-1.1,1.1 -2.6,1.7 -4.1,1.7h-0.1c-0.8,0 -1.5,-0.2 -2.3,-0.5c-0.7,-0.3 -1.4,-0.7 -1.9,-1.3c-0.5,-0.5 -1,-1.2 -1.3,-1.9c-0.3,-0.7 -0.4,-1.5 -0.4,-2.3h3.6c0,0.6 0.2,1.2 0.7,1.7c0.4,0.4 1,0.7 1.7,0.7c0.3,0 0.6,-0.1 0.9,-0.2c0.3,-0.1 0.5,-0.3 0.7,-0.5c0.2,-0.2 0.4,-0.5 0.5,-0.7c0.1,-0.3 0.2,-0.6 0.2,-0.9v-9.8H80.2z"/>
<path android:fillColor="@android:color/white" android:pathData="M91.7,34.9h-6.5v2.4h5.2v3.6h-5.2v2.5h6.5V47H81.6V31.3h10.1V34.9z"/>
<path android:fillColor="@android:color/white" android:pathData="M99.8,47c-1,0 -2,-0.2 -3,-0.6c-1,-0.4 -1.9,-1 -2.6,-1.7c-0.7,-0.7 -1.3,-1.6 -1.7,-2.6c-0.8,-1.9 -0.8,-4.1 0,-6c0.8,-1.9 2.4,-3.5 4.3,-4.3c1.9,-0.8 4,-0.8 5.9,0c1,0.4 1.9,1 2.6,1.7l-2.6,2.5c-0.4,-0.4 -0.9,-0.7 -1.4,-0.9c-0.5,-0.2 -1.1,-0.3 -1.6,-0.3c-0.5,0 -1.1,0.1 -1.6,0.3c-0.5,0.2 -1,0.5 -1.4,0.9c-0.4,0.4 -0.7,0.9 -0.9,1.4c-0.2,0.5 -0.3,1.1 -0.3,1.6c0,0.6 0.1,1.1 0.3,1.6c0.2,0.5 0.5,1 0.9,1.4c0.4,0.4 0.9,0.7 1.4,0.9c0.5,0.2 1,0.3 1.6,0.3c0.6,0 1.1,-0.1 1.6,-0.3c0.5,-0.2 1,-0.5 1.4,-0.9l2.6,2.6c-0.7,0.7 -1.6,1.3 -2.6,1.7C101.8,46.8 100.8,47 99.8,47z"/>
<path android:fillColor="@android:color/white" android:pathData="M115.8,31.2v3.6h-3V47h-3.6V34.9h-3v-3.6H115.8z"/>
<path android:fillColor="@android:color/white" android:pathData="M120.7,47h-3.6V31.2h3.6V47z"/>
<path android:fillColor="@android:color/white" android:pathData="M132,31.2h3.8L130.5,47h-3.4l-5,-15.8h3.8l3,9.7L132,31.2z"/>
<path android:fillColor="@android:color/white" android:pathData="M139.1,47l1.8,-4.4l-5.3,-11.3h4l3.2,6.7l2.8,-6.8h3.9L143,47H139.1z"/>
<path android:fillColor="@android:color/white" android:pathData="M38.4,38.1c0,0.9 -0.2,1.7 -0.5,2.5c-0.6,1.5 -1.9,2.8 -3.4,3.4c-0.8,0.3 -1.6,0.5 -2.5,0.5V47h-3.6V31.6H32c0.9,0 1.7,0.2 2.5,0.6c0.7,0.3 1.4,0.8 2,1.4c0.6,0.6 1,1.3 1.4,2C38.2,36.3 38.4,37.2 38.4,38.1zM32,41c0.4,0 0.8,-0.1 1.1,-0.3c0.3,-0.2 0.6,-0.4 0.9,-0.6c0.3,-0.3 0.5,-0.6 0.6,-0.9c0.1,-0.4 0.2,-0.7 0.2,-1.1c0,-0.4 -0.1,-0.8 -0.2,-1.1c-0.1,-0.4 -0.3,-0.7 -0.6,-1c-0.3,-0.3 -0.6,-0.5 -0.9,-0.6c-0.3,-0.2 -0.7,-0.3 -1.1,-0.3L32,41z"/>
<path android:fillColor="@android:color/white" android:pathData="M44.1,43l-0.5,0.1H43V47h-3.6V31.6H43c0.8,0 1.7,0.2 2.5,0.5c0.7,0.3 1.4,0.7 2,1.2c0.6,0.5 1,1.1 1.4,1.8c0.3,0.7 0.5,1.4 0.5,2.2c0,0.8 -0.2,1.6 -0.5,2.3c-0.4,0.7 -0.9,1.3 -1.5,1.8l3.4,5.5h-4.2L44.1,43zM43,39.5c0.4,0 0.7,-0.1 1.1,-0.2c0.3,-0.1 0.6,-0.3 0.9,-0.5c0.2,-0.2 0.5,-0.4 0.6,-0.7c0.1,-0.2 0.2,-0.5 0.2,-0.8c0,-0.3 -0.1,-0.6 -0.2,-0.8c-0.2,-0.3 -0.4,-0.5 -0.6,-0.7c-0.3,-0.2 -0.6,-0.4 -0.9,-0.5c-0.4,-0.1 -0.7,-0.2 -1.1,-0.2V39.5z"/>
</vector>

View file

@ -1,17 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<group android:scaleX="0.67"
android:scaleY="0.67"
android:translateX="18"
android:translateY="18">
<path
android:pathData="M81.31,44.21h-0.82a1,1 0,0 1,-0.67 -1.64l0.56,-0.56a0.89,0.89 0,0 0,0 -1.28l-1.33,-1.34a0.91,0.91 0,0 0,-1.29 0L77.2,40a0.91,0.91 0,0 1,-1.55 -0.67v-0.82a0.92,0.92 0,0 0,-0.92 -0.92h-2a0.92,0.92 0,0 0,-0.92 0.92v0.82A1,1 0,0 1,70.3 40l-0.56,-0.57a0.91,0.91 0,0 0,-1.29 0l-1.34,1.34a0.89,0.89 0,0 0,0 1.28l0.47,0.46A1,1 0,0 1,67 44.21h-0.82a0.92,0.92 0,0 0,-0.93 0.93L65.25,47a0.92,0.92 0,0 0,0.93 0.93h0.77a1.06,1.06 0,0 1,0.72 1.74l-0.57,0.56a0.91,0.91 0,0 0,0 1.29l1.34,1.33a0.91,0.91 0,0 0,1.29 0l0.56,-0.56a1,1 0,0 1,1.65 0.66v0.77a0.92,0.92 0,0 0,0.92 0.92h1.8a0.92,0.92 0,0 0,0.93 -0.92v-0.77a1,1 0,0 1,1.65 -0.66l0.56,0.56a0.91,0.91 0,0 0,1.29 0l1.33,-1.33a0.91,0.91 0,0 0,0 -1.29l-0.46,-0.46A1.06,1.06 0,0 1,80.59 48h0.77a0.92,0.92 0,0 0,0.93 -0.93L82.29,45.19A1,1 0,0 0,81.31 44.21ZM73.7,49.21a3.08,3.08 0,1 1,3.08 -3.08A3.1,3.1 0,0 1,73.7 49.19Z"
android:fillColor="@android:color/white"/>
<path
android:pathData="M89.79,42.65c-0.5,-1.06 -2.7,-1.93 -6.52,-2.6a11.28,11.28 0,1 1,-18 -1.45c-3.33,-0.1 -7,-0.15 -11,-0.15C32,38.46 20.16,40 18.88,42.65c0,0 -1.31,2.34 -1.14,7.76H30.4a1,1 0,0 1,1.09 1c0,0.54 -0.68,1 -1.36,1H17.86c0.07,0.81 0.18,1.68 0.32,2.59h15a1,1 0,0 1,1.09 1c0,0.54 -0.68,1 -1.37,1H18.5c0.16,0.88 0.32,1.71 0.48,2.46H35.85a1,1 0,0 1,1.09 0.95c0,0.41 -0.68,1 -1.36,1H19.44c1.7,6.5 3.35,6.52 3.35,6.52H25v1.37c0,0.68 1.36,1.09 2.73,1.09H38.68c1.37,0 2.73,-0.55 2.73,-1.09V67.7H67.26v1.37c0,0.68 1.37,1.09 2.73,1.09H80.91c1.37,0 2.74,-0.55 2.74,-1.09V67.7h2.23s2.52,0 4.54,-12.25C91.91,46.39 89.79,42.65 89.79,42.65Z"
android:fillColor="@color/projectivy_plugin_color"/>
</group>
</vector>

View file

@ -1,5 +0,0 @@
<vector android:height="24dp"
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="M4,4h7L11,2L4,2c-1.1,0 -2,0.9 -2,2v7h2L4,4zM10,13l-4,5h12l-3,-4 -2.03,2.71L10,13zM17,8.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S14,7.67 14,8.5s0.67,1.5 1.5,1.5S17,9.33 17,8.5zM20,2h-7v2h7v7h2L22,4c0,-1.1 -0.9,-2 -2,-2zM20,20h-7v2h7c1.1,0 2,-0.9 2,-2v-7h-2v7zM4,13L2,13v7c0,1.1 0.9,2 2,2h7v-2L4,20v-7z"/>
</vector>

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/projectivy_icon_background"/>
<foreground>
<inset android:drawable="@drawable/ic_banner_drawable" android:inset="18%"/>
</foreground>
</adaptive-icon>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/projectivy_icon_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1 +0,0 @@
{"v":"5.4.4","fr":29.9700012207031,"ip":0,"op":120.0000048877,"w":1920,"h":1080,"nm":"Gradient 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0],"e":[360]},{"t":119.000004846969}],"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":2,"s":{"a":0,"k":[2489,1768.076],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0,1,0.49,0.373,0.5,0.998,0.575,0.416,1,0.996,0.659,0.459],"ix":9}},"s":{"a":0,"k":[-411.974,-6.334],"ix":5},"e":{"a":0,"k":[352.025,-5.646],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-68,-34],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,184.116],"ix":3},"r":{"a":0,"k":89.879,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120.0000048877,"st":0,"bm":0}],"markers":[]}

Binary file not shown.

View file

@ -1,10 +0,0 @@
<resources>
<string name="plugin_name">Projectivy Wallpaper Provider Sample</string>
<string name="plugin_description">Plugin description</string>
<string name="plugin_uuid">CHANGE_ME</string>
<!-- Setting parameters -->
<string name="settings">Settings</string>
<string name="setting_image_url_title">Image URL</string>
</resources>

View file

@ -13,6 +13,6 @@ dependencyResolutionManagement {
}
}
rootProject.name = "Projectivy Wallpaper Provider"
include(":sample")
rootProject.name = "Projectivy Booru Wallpaper Provider"
include(":booru")
include(":api")