This commit is contained in:
JerryXiao 2023-08-18 12:24:07 +08:00
commit 9abaeb4776
Signed by: Jerry
GPG key ID: 22618F758B5BE2E5
221 changed files with 13913 additions and 0 deletions

15
.gitignore vendored Normal file
View file

@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

1
app/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

40
app/build.gradle Normal file
View file

@ -0,0 +1,40 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'cc.jerryxiao.easterscrsaver'
compileSdk 33
defaultConfig {
applicationId "cc.jerryxiao.easterscrsaver"
minSdk 21
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.core:core-ktx:1.10.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

21
app/proguard-rules.pro vendored Normal file
View file

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View file

@ -0,0 +1,26 @@
package cc.jerryxiao.easterscrsaver;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("cc.jerryxiao.easterscrsaver", appContext.getPackageName());
}
}

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.EasterScrSaver"
tools:targetApi="32">
<service
android:name=".EasterDream"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:permission="android.permission.BIND_DREAM_SERVICE">
<intent-filter>
<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
</application>
</manifest>

View file

@ -0,0 +1,69 @@
@file:JvmName("COLREmojiCompat")
package cc.jerryxiao.easterscrsaver
import android.app.Activity
import android.content.Context
import android.graphics.Canvas
import android.graphics.drawable.Drawable
import cc.jerryxiao.easterscrsaver.EasterDream.Bubble
import java.util.WeakHashMap
/**
* COLR Emoji Compat
*
* @author shhu
* @since 2023/2/10
*/
fun Canvas.drawCOLREmoji(bubble: Bubble, p: Float) {
val drawable = bubble.drawable ?: return
if (bubble.r <= 0f) return
drawable.setBounds(
(bubble.x - bubble.r * p).toInt(),
(bubble.y - bubble.r * p).toInt(),
(bubble.x + bubble.r * p).toInt(),
(bubble.y + bubble.r * p).toInt()
)
drawable.draw(this)
}
private val cachedDrawable = WeakHashMap<CharSequence, Drawable>()
fun Context.identifierEmojiDrawable(
emoji: CharSequence?,
temp: MutableList<CharSequence>? = null,
): Drawable? {
if (emoji.isNullOrEmpty()) return null
val cache = cachedDrawable[emoji]
if (cache != null) return cache
val drawableName = getEmojiUnicode(
emoji,
separator = "_",
prefix = "t_emoji_u",
temp = temp
).toString()
val id: Int = this.getIdentifier(drawableName, DefType.DRAWABLE, this.packageName)
if (id == 0) {
throw IllegalStateException("Emoji xml not found, name: %s".format(drawableName))
}
return createVectorDrawableCompat(id).apply {
cachedDrawable[emoji] = this
}
}
fun releaseIdentifiedCOLREmoji() {
cachedDrawable.clear()
}
fun Array<Bubble>.identifierCOLREmoji(activity: Activity) {
val list = ArrayList<CharSequence>()
for (bubble in this) {
val drawable = activity.identifierEmojiDrawable(bubble.text, list)
if (drawable != null) {
bubble.drawable = drawable
bubble.text = null
}
}
}

View file

@ -0,0 +1,87 @@
@file:JvmName("DrawableKt")
@file:JvmMultifileClass
package cc.jerryxiao.easterscrsaver
import android.annotation.SuppressLint
import android.content.Context
import android.content.res.Resources
import android.graphics.drawable.Drawable
import android.util.LruCache
import android.util.Xml
import androidx.annotation.DrawableRes
import androidx.annotation.XmlRes
import androidx.core.content.ContextCompat
import androidx.vectordrawable.graphics.drawable.VectorDrawableCompat
import org.xmlpull.v1.XmlPullParser
import org.xmlpull.v1.XmlPullParserException
@SuppressLint("DiscouragedApi")
@Throws(Resources.NotFoundException::class)
fun Context.getSystemColor(resName: String): Int {
val id = getIdentifier(resName, DefType.COLOR, "android")
return ContextCompat.getColor(this, id)
}
enum class DefType {
DRAWABLE,
COLOR,
RAW,
XML
;
override fun toString(): String {
return when (this) {
DRAWABLE -> "drawable"
COLOR -> "color"
RAW -> "raw"
XML -> "xml"
}
}
}
private val identifierCache = LruCache<String, Int>(50)
private fun makeKey(name: String, defType: DefType, packageName: String): String {
return "$packageName:$defType/$name"
}
@JvmOverloads
@SuppressLint("DiscouragedApi")
fun Context.getIdentifier(name: String, defType: DefType, defPackage: String = packageName): Int {
val key = makeKey(name, defType, defPackage)
var id = identifierCache.get(key)
if (id == null) {
val type = defType.toString()
id = resources.getIdentifier(name, type, defPackage)
identifierCache.put(key, id)
}
return id
}
fun Context.requireDrawable(@DrawableRes id: Int): Drawable {
return requireNotNull(ContextCompat.getDrawable(this, id))
}
fun Context.createVectorDrawableCompat(@DrawableRes id: Int): VectorDrawableCompat {
return requireNotNull(VectorDrawableCompat.create(this.resources, id, this.theme))
}
/**
* Some Egg can't enable `useSupportLibrary = true`
*/
fun Context.createVectorDrawableCompatFromXml(
@XmlRes id: Int,
): VectorDrawableCompat {
val parser = resources.getXml(id)
val attrs = Xml.asAttributeSet(parser)
var type: Int
while (parser.next().also { type = it } != XmlPullParser.START_TAG &&
type != XmlPullParser.END_DOCUMENT) {
// Empty loop
}
if (type != XmlPullParser.START_TAG) {
throw XmlPullParserException("No start tag found")
}
return VectorDrawableCompat.createFromXmlInner(resources, parser, attrs, theme)
}

View file

@ -0,0 +1,345 @@
package cc.jerryxiao.easterscrsaver;
import static android.graphics.PixelFormat.TRANSLUCENT;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.app.WallpaperManager;
import android.content.pm.PackageManager;
import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Build;
import android.os.Handler;
import android.os.Looper;
import android.service.dreams.DreamService;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ImageView;
import androidx.annotation.ChecksSdkIntAtLeast;
import androidx.core.app.ActivityCompat;
import java.util.Timer;
import java.util.TimerTask;
public class EasterDream extends DreamService {
private static String TAG = "easter_daydream";
private Drawable wallPaperDrawable = null;
private FrameLayout last = null;
public void refresh() {
final ImageView mLogo;
final BubblesDrawable mBg;
final FrameLayout layout = new FrameLayout(this);
Point size = new Point();
getWindowManager().getDefaultDisplay().getRealSize(size);
final DisplayMetrics dm = getResources().getDisplayMetrics();
final float dp = dm.density;
//final int minSide = Math.min(dm.widthPixels, dm.heightPixels);
final int minSide = Math.min(size.x, size.y);
final int widgetSize = (int) (minSide * 0.75);
final FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(widgetSize, widgetSize);
lp.gravity = Gravity.CENTER;
mLogo = new ImageView(this);
mLogo.setVisibility(View.GONE);
mLogo.setImageResource(R.drawable.t_platlogo);
layout.addView(mLogo, lp);
mBg = new BubblesDrawable(this);
mBg.setLevel(0);
mBg.avoid = widgetSize / 2;
mBg.padding = 0.5f * dp;
mBg.minR = 1 * dp;
if (wallPaperDrawable != null) {
layout.setBackground(new LayerDrawable(new Drawable[]{wallPaperDrawable, mBg}));
}
else {
layout.setBackground(mBg);
}
mBg.chooseEmojiSet();
mLogo.setVisibility(View.VISIBLE);
mBg.setLevel(10000);
if (last == null) setContentView(layout);
else {
layout.setAlpha(0f);
layout.setVisibility(View.VISIBLE);
addContentView(layout, new ViewGroup.LayoutParams(size.x, size.y));
int animDuration = getResources().getInteger(android.R.integer.config_longAnimTime);
animDuration = Math.max(animDuration, 1500);
layout.animate().alpha(1f).setDuration(animDuration).setListener(null);
last.animate()
.alpha(0f)
.setDuration(animDuration)
.setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
last.setVisibility(View.GONE);
setContentView(layout);
layout.setVisibility(View.VISIBLE);
}
});
}
last = layout;
}
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
// Exit dream upon user touch
setInteractive(false);
// Hide system UI
setFullscreen(true);
// Set the dream layout
WallpaperManager wallPaperManager = WallpaperManager.getInstance(this);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && wallPaperManager.isWallpaperSupported()) {
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
wallPaperDrawable = wallPaperManager.getDrawable();
}
}
refresh();
}
private static final String[][] EMOJI_SETS = {
{"🍇", "🍈", "🍉", "🍊", "🍋", "🍌", "🍍", "🥭", "🍎", "🍏", "🍐", "🍑",
"🍒", "🍓", "🫐", "🥝"},
{"😺", "😸", "😹", "😻", "😼", "😽", "🙀", "😿", "😾"},
{"😀", "😃", "😄", "😁", "😆", "😅", "🤣", "😂", "🙂", "🙃", "🫠", "😉", "😊",
"😇", "🥰", "😍", "🤩", "😘", "😗", "☺️", "😚", "😙", "🥲", "😋", "😛", "😜",
"🤪", "😝", "🤑", "🤗", "🤭", "🫢", "🫣", "🤫", "🤔", "🫡", "🤐", "🤨", "😐",
"😑", "😶", "🫥", "😏", "😒", "🙄", "😬", "🤥", "😌", "😔", "😪", "🤤", "😴",
"😷"},
{"🤩", "😍", "🥰", "😘", "🥳", "🥲", "🥹"},
{"🫠"},
{"💘", "💝", "💖", "💗", "💓", "💞", "💕", "", "💔", "", "🧡", "💛",
"💚", "💙", "💜", "🤎", "🖤", "🤍"},
{"👁", "️🫦", "👁️"}, // this one is too much
{"👽", "🛸", "", "🌟", "💫", "🚀", "🪐", "🌙", "", "🌍"},
{"🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘"},
{"🐙", "🪸", "🦑", "🦀", "🦐", "🐡", "🦞", "🐠", "🐟", "🐳", "🐋", "🐬", "🫧", "🌊",
"🦈"},
{"🙈", "🙉", "🙊", "🐵", "🐒"},
{"", "", "", "", "", "", "", "", "", "", "", ""},
{"🕛", "🕧", "🕐", "🕜", "🕑", "🕝", "🕒", "🕞", "🕓", "🕟", "🕔", "🕠", "🕕", "🕡",
"🕖", "🕢", "🕗", "🕣", "🕘", "🕤", "🕙", "🕥", "🕚", "🕦"},
{"🌺", "🌸", "💮", "🏵️", "🌼", "🌿"},
{"🐢", "", "🌟", "👑"}
};
public static class Bubble {
public float x, y, r;
public int color;
public String text = null;
public Drawable drawable = null;
}
class BubblesDrawable extends Drawable {
public Timer timer = new Timer();
EasterDream context;
// private static final int MAX_BUBBS = 2000;
// Optimize memory usage
private final int MAX_BUBBS = Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU ? 2000 : 1000;
// private final int[] mColorIds = {
// android.R.color.system_accent1_400,
// android.R.color.system_accent1_500,
// android.R.color.system_accent1_600,
//
// android.R.color.system_accent2_400,
// android.R.color.system_accent2_500,
// android.R.color.system_accent2_600,
// };
private final String[] mColorIds = {
"system_accent1_400",
"system_accent1_500",
"system_accent1_600",
"system_accent2_400",
"system_accent2_500",
"system_accent2_600"
};
// private int[] mColors = new int[mColorIds.length];
private int[] mColors = {0xff598df7, 0xff3771df, 0xff2559bc, 0xff8a91a3, 0xff707687, 0xff585e6f};
private int mEmojiSet = -1;
private final Bubble[] mBubbs = new Bubble[MAX_BUBBS];
private int mNumBubbs;
private final Paint mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
public float avoid = 0f;
public float padding = 0f;
public float minR = 0f;
@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.TIRAMISU)
private final boolean supportCOLR = Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU;
//private final boolean supportCOLR = false;
BubblesDrawable(EasterDream context) {
this.context = context;
try {
for (int i = 0; i < mColorIds.length; i++) {
mColors[i] = DrawableKt.getSystemColor(getApplicationContext(), mColorIds[i]);
}
} catch (Exception ignore) {
}
for (int j = 0; j < mBubbs.length; j++) {
mBubbs[j] = new Bubble();
}
}
@Override
public void draw(Canvas canvas) {
if (getLevel() == 0) return;
final float f = getLevel() / 10000f;
mPaint.setStyle(Paint.Style.FILL);
mPaint.setTextAlign(Paint.Align.CENTER);
int drawn = 0;
for (int j = 0; j < mNumBubbs; j++) {
if (mBubbs[j].color == 0 || mBubbs[j].r == 0) continue;
if (mBubbs[j].text != null && supportCOLR) {
mPaint.setTextSize(mBubbs[j].r * 1.75f);
canvas.drawText(mBubbs[j].text, mBubbs[j].x,
mBubbs[j].y + mBubbs[j].r * f * 0.6f, mPaint);
} else if (mBubbs[j].drawable != null) {
COLREmojiCompat.drawCOLREmoji(canvas, mBubbs[j], f);
} else {
mPaint.setColor(mBubbs[j].color);
canvas.drawCircle(mBubbs[j].x, mBubbs[j].y, mBubbs[j].r * f, mPaint);
}
drawn++;
}
timer.schedule(new TimerTask() {
@Override
public void run() {
timer.cancel();
timer.purge();
new Handler(Looper.getMainLooper()).post(() -> {
context.refresh();
});
//randomize();
//chooseEmojiSet();
}
}, 10000L);
}
public void chooseEmojiSet() {
if (Math.random() < 0.8) {
if (Math.random() < 0.4) {
mEmojiSet = 0;
}
else {
mEmojiSet = 13;
}
}
else {
mEmojiSet = (int) (Math.random() * EMOJI_SETS.length);
}
final String[] emojiSet = EMOJI_SETS[mEmojiSet];
Log.i(TAG, "chooseEmojiSet: " + mEmojiSet);
for (int j = 0; j < mBubbs.length; j++) {
mBubbs[j].text = emojiSet[(int) (Math.random() * emojiSet.length)];
}
// support code
if (!supportCOLR) {
COLREmojiCompat.identifierCOLREmoji(mBubbs, null);
}
invalidateSelf();
}
@Override
protected boolean onLevelChange(int level) {
invalidateSelf();
return true;
}
@Override
protected void onBoundsChange(Rect bounds) {
super.onBoundsChange(bounds);
randomize();
}
private void randomize() {
final float w = getBounds().width();
final float h = getBounds().height();
final float maxR = Math.min(w, h) / 3f;
mNumBubbs = 0;
if (avoid > 0f) {
mBubbs[mNumBubbs].x = w / 2f;
mBubbs[mNumBubbs].y = h / 2f;
mBubbs[mNumBubbs].r = avoid;
mBubbs[mNumBubbs].color = 0;
mNumBubbs++;
}
for (int j = 0; j < MAX_BUBBS; j++) {
// a simple but time-tested bubble-packing algorithm:
// 1. pick a spot
// 2. shrink the bubble until it is no longer overlapping any other bubble
// 3. if the bubble hasn't popped, keep it
int tries = 5;
while (tries-- > 0) {
float x = (float) Math.random() * w;
float y = (float) Math.random() * h;
float r = Math.min(Math.min(x, w - x), Math.min(y, h - y));
// shrink radius to fit other bubbs
for (int i = 0; i < mNumBubbs; i++) {
r = (float) Math.min(r,
Math.hypot(x - mBubbs[i].x, y - mBubbs[i].y) - mBubbs[i].r
- padding);
if (r < minR) break;
}
if (r >= minR) {
// we have found a spot for this bubble to live, let's save it and move on
r = Math.min(maxR, r);
mBubbs[mNumBubbs].x = x;
mBubbs[mNumBubbs].y = y;
mBubbs[mNumBubbs].r = r;
mBubbs[mNumBubbs].color = mColors[(int) (Math.random() * mColors.length)];
mNumBubbs++;
break;
}
}
}
Log.v(TAG, String.format("successfully placed %d bubbles (%d%%)",
mNumBubbs, (int) (100f * mNumBubbs / MAX_BUBBS)));
}
@Override
public void setAlpha(int alpha) {
}
@Override
public void setColorFilter(ColorFilter colorFilter) {
}
@Override
public int getOpacity() {
return TRANSLUCENT;
}
}
}

View file

@ -0,0 +1,32 @@
@file:JvmName("UtilExt")
package cc.jerryxiao.easterscrsaver
import android.util.TypedValue
import kotlin.math.roundToInt
/**
* 计算Emoji的Unicode
*/
fun getEmojiUnicode(
emoji: CharSequence,
separator: CharSequence = "\\u",
prefix: CharSequence = "",
postfix: CharSequence = "",
temp: MutableList<CharSequence>? = null,
): CharSequence {
val list: MutableList<CharSequence> = if (temp != null) {
temp.clear();temp
} else ArrayList()
var offset = 0
while (offset < emoji.length) {
val codePoint = Character.codePointAt(emoji, offset)
offset += Character.charCount(codePoint)
if (codePoint == 0xFE0F) {
// the codepoint is a emoji style standardized variation selector
continue
}
list.add("%04x".format(codePoint))
}
return list.joinToString(separator = separator, prefix = prefix, postfix = postfix)
}

View file

@ -0,0 +1,29 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M14.66,115.74c1.37,1.06 5.32,-5.77 20.2,-6.68c15.93,-0.98 33.56,11.69 57.71,11.69c21.41,0 32.5,-10.48 31.74,-12.15c-0.51,-1.11 -8.96,-3.15 -18.68,-8.2c-11.69,-6.07 -24,-12.15 -33.41,-25.82c-6.03,-8.75 -10.33,-18.83 -4.4,-26.73c5.92,-7.9 20.96,-4.25 20.96,-4.25l-20.5,-22.17L29.25,32.07L9.5,81.58l2.13,25.21L14.66,115.74z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="59.85"
android:centerY="-1.4"
android:gradientRadius="113.71"
android:type="radial">
<item android:offset="0.42" android:color="#FF45D6F0"/>
<item android:offset="0.52" android:color="#FF41CDE9"/>
<item android:offset="0.67" android:color="#FF37B4D7"/>
<item android:offset="0.87" android:color="#FF278BBA"/>
<item android:offset="1" android:color="#FF1B6DA4"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M59.26,36.11c0,0 4.77,1.52 11.16,4.85c10.63,5.55 17.07,14.28 23.64,14.82c6.82,0.55 10.31,-3.38 8.82,-11.58c-1.39,-7.65 -12.68,-16.63 -12.68,-16.63s10.31,1.94 10.31,-3.97c0,-6.07 -5.56,-8.99 -14.31,-12c-5.83,-2 -21.51,-6.44 -42.53,1.52c-9.04,3.42 -20.08,9.74 -28.46,21.85C4.25,50.81 2.03,71.41 4.11,87.05c2.52,18.89 10.38,28.63 10.57,28.71c0.19,0.08 1.22,-22.21 10.01,-31.88c7.49,-8.24 15.15,-4.86 24.25,-5.31c10.73,-0.53 15.52,-11.61 7.33,-20.06c-7.03,-7.26 -18.68,-6.61 -18.68,-6.61s3.86,-1.54 11.19,-2.2c8.42,-0.77 10.08,-5.66 10.68,-7.49C60.79,38.17 59.26,36.11 59.26,36.11z"
android:fillColor="#1B6DA4"/>
<path
android:pathData="M38.15,36.3c-0.56,-3.3 9.16,-6.28 19.34,-4.68c15.84,2.49 28.38,16.94 33.7,19.05c7.84,3.12 10.6,-3.29 6.67,-10.23c-4.05,-7.17 -14.77,-13.27 -14.37,-15.64c0.72,-4.21 11.7,2.2 12.37,-2.48c0.45,-3.1 -7.75,-7.56 -15.54,-9.55c-6.27,-1.6 -19.44,-3.57 -37.64,4.36C19.02,27.46 8.79,48.01 7.1,69.54c-1.6,20.42 6.2,35.64 6.2,35.64s0.53,-15.24 8.17,-23.63c5.58,-6.12 12.74,-8.42 20.51,-6.94c12.96,2.48 18.61,-6.89 12.38,-13.66c-4.08,-4.43 -9.31,-5.81 -14.72,-5.99c-9.35,-0.3 -14.38,2.83 -14.65,1.77c-0.4,-1.61 4.67,-5.34 11.1,-8.02c8.46,-3.52 18.67,-1.11 20.27,-8.19c0.78,-3.45 -1.17,-5.34 -6.75,-5.75C42.56,34.26 38.19,36.54 38.15,36.3z"
android:fillColor="#FFFFFF"/>
</vector>

View file

@ -0,0 +1,87 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M3.14,64.68c0.68,24.4 16.99,59.55 61.45,59.1c43.32,-0.44 60.76,-36.3 59.4,-62.06c-1.37,-25.76 -21.66,-57.46 -61.79,-57.23C22.06,4.71 2.4,38.45 3.14,64.68z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="43.97"
android:centerY="29.06"
android:gradientRadius="90.95"
android:type="radial">
<item android:offset="0.51" android:color="#FF17A1F3"/>
<item android:offset="0.77" android:color="#FF1B7FFA"/>
<item android:offset="0.96" android:color="#FF1366F0"/>
<item android:offset="1" android:color="#FF1160EE"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M90.52,93.68c-0.63,-0.24 -1.1,0.35 -1.75,1.45c-0.65,1.1 -1.35,2 -1.8,2.35s-3.1,1.95 -3.3,2.85c-0.2,0.9 0,1.8 0,2.65c0,0.85 -0.15,2.1 -0.15,2.65c0,0.55 -0.6,1.05 0.2,1.85c0.8,0.8 1.4,0.3 1.95,-0.45s1.85,-3.15 2.15,-4.2c0.2,-0.71 0.6,-1.75 0.8,-2.3c0.2,-0.55 1.85,-3.2 2.1,-4.2C90.98,95.33 91.33,93.98 90.52,93.68z"
android:fillColor="#7ADD8A"/>
<path
android:pathData="M66.38,40.12c0,0.36 0.26,0.73 0.93,0.73c0.67,0 0.95,-0.42 0.9,-0.97c-0.04,-0.51 -0.56,-0.67 -1.01,-0.63C66.84,39.28 66.38,39.55 66.38,40.12z"
android:fillColor="#BEDC9D"/>
<path
android:pathData="M44.54,32.36c-0.46,-0.02 -1.2,0.41 -1.25,0.82c-0.11,0.98 -0.42,2.84 0.32,2.95c0.68,0.1 1.03,-1.09 1.14,-1.54S45.25,32.39 44.54,32.36z"
android:fillColor="#95DA93"/>
<path
android:pathData="M41.06,16.97c-0.89,0 -1.48,0.76 -1.62,1.22c-0.15,0.5 -0.05,1.87 -0.47,2.05c-0.57,0.24 -1.48,0.06 -2.08,0.25c-0.78,0.25 -2.4,1.73 -2.36,2.08c0.03,0.32 0.42,1.02 1.31,1.16c0.3,0.05 0.61,-0.05 0.69,-0.24c0.04,-0.1 0.25,-0.25 0.42,-0.19c0.24,0.08 0.21,0.56 0.4,0.61c0.19,0.05 2.2,0.08 2.44,0c0.24,-0.08 1.49,-0.82 1.67,-1.59c0.19,-0.77 0.26,-2.41 0.33,-3.75C41.86,17.42 41.43,16.97 41.06,16.97z"
android:fillColor="#7ADD8A"/>
<path
android:pathData="M38.28,9.2c0,0 -1.54,1.91 -2.5,2.81c-0.96,0.9 -2.63,2.2 -2.47,2.84c0.05,0.21 0.61,0.74 1.33,0.56c0.72,-0.19 2.02,-1.01 3.5,-1.54c1.49,-0.53 2.49,-0.58 2.79,-0.72c0.29,-0.13 3.56,-1.75 4.83,-2.31c1.27,-0.56 6.13,-1.96 7.27,-2.36s1.99,-0.77 1.8,-1.51c-0.19,-0.74 -2.44,-0.64 -3.79,-0.64s-2.56,-0.4 -2.56,-0.4s-3.29,0.76 -5.69,1.57C40.41,8.31 38.28,9.2 38.28,9.2z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M69.22,8.02c-0.38,-0.41 -0.11,-0.91 0.53,-1.23c0.63,-0.32 2.19,-1.39 2.19,-1.39s12.49,-0.18 27.03,10.15C113,25.52 117.63,38.2 117.63,38.2s0.41,1.6 0.12,2.13c-0.29,0.54 0.04,3.32 -0.78,7.96c-0.82,4.64 -1.18,6.06 -1.13,8.16s0.79,6.14 -0.79,6.45s-1.99,-2.15 -2.83,-3.99s-2.31,-4.14 -2.68,-4.93s-0.63,-1.84 -0.63,-1.84s-0.94,0.26 -1.68,-0.21c-0.73,-0.47 -4.46,-4.77 -4.93,-5.14s-1.68,-0.16 -2.68,0.16s-1.36,0.94 -3.62,0.73s-1.42,-1.05 -2.62,-1.89s-2.26,1.1 -3.41,1.1c-1.15,0 -1.89,-0.58 -2.68,-1.36s-1.73,-1.68 -2.2,-1.84s-1.63,0.16 -1.15,1.31s1.36,1.26 2.15,2.05s0.68,1.26 1.1,1.89s2.52,2.05 2.99,1.94c0.47,-0.1 1.36,-0.63 1.73,-1.21s0.26,-1.21 0.94,-1.31s1.26,0.89 2.2,1.63s1.99,0.73 2.26,2.05c0.26,1.31 -0.79,5.35 -1.73,6.4s-1.89,1.15 -1.89,1.15l-2.1,1.78c0,0 0,0.94 -1.73,1.94c-1.73,1 -2.15,0.94 -3.31,1.52s-1.78,1.26 -2.68,1.05s-1.52,-1.57 -1.94,-2.94c-0.42,-1.36 -1.36,-2.52 -2.05,-3.2s-1.21,-0.73 -1.89,-1.57s-2.1,-2.68 -2.2,-3.04s-0.1,-0.84 -0.47,-1.36s-1.1,-0.89 -1.52,-1.21c-0.42,-0.31 -0.73,-0.73 -0.84,-1.42s-1.15,-1.52 -1.68,-2.15s-1.15,-1.78 -1.73,-1.36s0.1,1.31 0.79,2.47s1,1.94 1.15,2.73c0.16,0.79 -0.05,1.31 0.52,1.68s1.21,-0.05 1.89,1.57s0.42,3.15 1.15,3.78s0.89,0.26 1.52,1.05s0.52,1.94 1.26,2.47s2.94,1.47 3.78,2.78s0.42,1.89 1.21,2.36s2.31,0.05 3.88,-0.47s3.73,-2.2 4.62,-1.94s0.68,3.57 -0.21,6.09s-1.57,3.31 -2.2,4.09s-1.52,2.41 -3.36,3.99s-4.3,4.04 -4.93,7.24c-0.63,3.2 0.1,8.55 0,9.92s0.05,2.2 -0.68,2.94s-3.73,3.36 -4.25,4.3s-0.16,2.1 -0.52,3.41s-2.68,3.41 -3.46,3.83s-0.58,1.21 -2.41,2.78s-2.41,2.1 -3.2,2.2s-5.09,0.31 -6.72,-0.31c-1.63,-0.63 -2.73,-1.63 -3.2,-2.15s-0.94,-1.1 -1.68,-1.52c-0.73,-0.42 -1.57,-1.31 -2.15,-2.1s-2.15,-2.89 -3.67,-4.56s-2.31,-2.47 -2.41,-4.3s1.57,-3.73 1.57,-3.73s-0.47,-3.25 -1.84,-5.67s-3.2,-2.83 -4.3,-5.3c-1.1,-2.47 -0.58,-4.41 -0.47,-5.19s-0.21,-2.1 -1.42,-2.52c-1.21,-0.42 -2.15,0.1 -2.83,-0.26s-1.57,-2.26 -3.1,-2.36s-3.46,1.99 -5.14,1.94c-1.68,-0.05 -1.73,-1.21 -2.94,-1.57s-1.63,0.89 -2.62,0.68c-1,-0.21 -2.41,-1.63 -3.2,-2.89s-1.73,-1.99 -2.2,-2.73s-0.63,-1.26 -0.63,-1.26s-1.68,-0.05 -2.15,-2.68s-0.1,-3.88 0.31,-5.25c0.42,-1.36 1.57,-5.04 1.68,-6.3s-0.16,-2.15 0.1,-2.83s1.57,-1.73 2.15,-2.73c0.58,-1 1.1,-2.05 1.63,-2.78s1.47,-0.1 2.73,-1.73c1.26,-1.63 1.05,-1.89 1.05,-1.89s0.31,-1.73 1.26,-2.89s1.94,-1.73 2.62,-1.84s1.63,0.21 2.31,0.21s1.52,0.16 2.1,0.05s2.31,-1.47 3.57,-1.78s2.36,-0.16 3.36,-0.37c1,-0.21 2.73,-0.42 3.83,0.37c1.1,0.79 1.1,1.36 1,1.73s-0.79,1.26 -0.52,1.63s1.1,0.68 1.57,0.84s1.21,0.21 1.47,0.37s0.89,0.89 1.94,1.42s2.73,1.42 3.31,1.1s0.52,-1.73 1.52,-2.05c1,-0.31 2.41,0.05 3.94,0.31s7.82,1.73 8.5,1.52s0.47,-0.79 1.26,-1s1.57,-0.16 1.89,-0.73s0.52,-3.36 0.47,-4.3s-0.05,-2.1 -0.47,-2.31s-1.57,1.05 -2.62,1.26s-1.42,-0.16 -1.89,-0.1s-0.89,0.79 -1.52,0.58c-0.63,-0.21 -1.78,-0.84 -2.41,-1.47c-0.63,-0.63 -1,-1.73 -0.68,-2.47s1.63,-1.15 2.68,-1.57c1.05,-0.42 2.26,-0.52 2.83,-0.73s0.84,-0.47 1.57,-0.47s0.94,0.63 1.36,0.73s3.2,0.05 3.67,-0.05s2.52,-1.05 2.47,-1.78s-1.52,-0.1 -1.94,-0.52s-1.99,-2.47 -3.25,-2.52s-2.1,0.89 -3.04,0.89s-1.42,-0.73 -2.05,-0.63s-1.68,1.05 -2.31,1.68s-1.1,1.21 -1.21,1.47s0.47,1.42 -0.26,1.89s-1.73,0.58 -2.1,0.63s-1.68,-0.16 -1.94,0.68s-0.16,1.78 0.21,2.36s0.52,1.15 -0.16,1.73s-1.26,0.73 -1.68,-0.05c-0.42,-0.79 -0.16,-0.84 -0.47,-1.31s-1.21,-1.94 -1.57,-3.04s-0.63,-1.89 -1.26,-2.62s-1.63,-0.79 -2.31,-1.42s-1.31,-1.52 -1.31,-1.52s-0.52,0.94 0.16,2.57s2.36,2.89 2.47,3.52s-0.16,1.68 -0.63,1.68s-1.05,-0.52 -1.73,-1.31s-1.89,-1.63 -2.52,-2.2s-1.36,-3.04 -1.73,-3.1s-1.15,1.42 -2.31,1.78s-2.15,0.42 -2.15,0.42s-0.73,1.68 -1.73,2.2s-1.52,0.84 -1.99,1.52s-1.1,1.94 -1.57,2.41c-0.47,0.47 -1.78,0.84 -2.2,1s-1.31,0.42 -1.57,0.42s-1.68,-0.94 -1.89,-1.63c-0.21,-0.68 -0.63,-1.1 -0.63,-1.57s1.21,-2.36 1.52,-3.25s0.52,-1.84 1.36,-2.52s1.15,0 2.41,0.05s2.78,-0.1 2.78,-0.1s0.16,-0.37 0.31,-0.73s0.52,-0.31 0.42,-0.58s-1.31,-1.05 -1.42,-1.63c-0.1,-0.58 0.1,-0.79 0.52,-1.05s0.94,-0.73 0.94,-0.73s0.31,-0.42 1,-0.68s1.31,0.42 1.78,0.26c0.47,-0.16 1.78,-0.84 2.31,-1.47s1.15,-1.31 1.68,-1.63s1.84,-0.42 2.31,-0.73s0.47,-1.05 0.89,-1.21s1.05,-0.42 1.78,0.1c0.73,0.52 1.05,1.47 1.84,1.57s1.52,-0.21 1.84,-0.37s1,-1.15 1.89,-1.68c0.89,-0.52 1.47,-0.84 1.94,-1.36s0.73,-1 0.73,-1s1.36,-0.16 1.99,-0.31s2.31,-0.26 1.99,-1.26s-1.52,-0.42 -2.41,-0.26s-1.68,0.63 -1.89,0.31s0.73,-1.42 0.94,-1.78s0.73,-1 0.05,-1.42s-1.42,0.73 -1.84,1.26s-1.15,1.42 -1.15,1.42s0.16,0.79 0.16,1.26s-0.79,1.1 -1.47,1.73s-1.26,1.52 -2.1,1.47s-1.21,-1.26 -1.26,-1.42s0,-1 -0.26,-1.05s-0.84,1.1 -1.84,0.94s-1.15,-1.36 -0.58,-2.52s1.68,-1.47 2.52,-1.89s1.57,-0.68 2.05,-1.05s0.63,-0.68 0.94,-1.05s2.83,-2.2 4.35,-2.89s2.52,-1.15 3.25,-1.26c0.73,-0.1 1.63,-0.16 2.31,0.31c0.68,0.47 2.52,1.57 2.99,2.05s0.84,0.89 1.84,0.68s3.67,-1.21 3.99,-1.52s-0.31,-1.15 -0.63,-1.21S69.71,8.55 69.22,8.02z"
android:fillColor="#7ADD8A"/>
<path
android:pathData="M41.23,82.05c0.1,-0.79 -0.21,-2.1 -1.42,-2.52c-1.21,-0.42 -2.15,0.1 -2.83,-0.26s-1.57,-2.26 -3.1,-2.36s-3.46,1.99 -5.14,1.94c-1.68,-0.05 -1.73,-1.21 -2.94,-1.57s-1.63,0.89 -2.62,0.68c-1,-0.21 -2.41,-1.63 -3.2,-2.89s-1.73,-1.99 -2.2,-2.73s-0.63,-1.26 -0.63,-1.26s-1.68,-0.05 -2.15,-2.68s-0.1,-3.88 0.31,-5.25c0.42,-1.36 1.57,-5.04 1.68,-6.3s-0.16,-2.15 0.1,-2.83s1.57,-1.73 2.15,-2.73c0.58,-1 1.1,-2.05 1.63,-2.78s1.47,-0.1 2.73,-1.73c1.26,-1.63 1.05,-1.89 1.05,-1.89s0.31,-1.73 1.26,-2.89s1.94,-1.73 2.62,-1.84s1.63,0.21 2.31,0.21s1.52,0.16 2.1,0.05s2.31,-1.47 3.57,-1.78s2.36,-0.16 3.36,-0.37c1,-0.21 2.73,-0.42 3.83,0.37c1.1,0.79 1.1,1.36 1,1.73s-0.79,1.26 -0.52,1.63s1.1,0.68 1.57,0.84s1.21,0.21 1.47,0.37s0.89,0.89 1.94,1.42s2.73,1.42 3.31,1.1s0.52,-1.73 1.52,-2.05c1,-0.31 2.41,0.05 3.94,0.31s7.82,1.73 8.5,1.52s0.47,-0.79 1.26,-1s1.57,-0.16 1.89,-0.73s0.52,-3.36 0.47,-4.3s-0.05,-2.1 -0.47,-2.31s-1.57,1.05 -2.62,1.26s-1.42,-0.16 -1.89,-0.1s-0.89,0.79 -1.52,0.58c-0.63,-0.21 -1.78,-0.84 -2.41,-1.47c-0.63,-0.63 -1,-1.73 -0.68,-2.47s1.63,-1.15 2.68,-1.57c1.05,-0.42 2.26,-0.52 2.83,-0.73s0.84,-0.47 1.57,-0.47s0.94,0.63 1.36,0.73s3.2,0.05 3.67,-0.05s2.52,-1.05 2.47,-1.78s-1.52,-0.1 -1.94,-0.52s-2,-2.38 -3.25,-2.52c-2.91,-0.33 -6.18,-3.87 -6.25,-8.92c-0.07,-5.05 2.54,-7.7 4.2,-8.08c0.99,-0.23 3.67,-1.21 3.99,-1.52s-0.31,-1.15 -0.63,-1.21s-1.42,0.22 -1.92,-0.31c-0.38,-0.41 -0.11,-0.91 0.53,-1.23c0.63,-0.32 2.19,-1.39 2.19,-1.39s12.49,-0.18 27.03,10.15C113,25.52 117.63,38.2 117.63,38.2s0.41,1.6 0.12,2.13c-0.29,0.54 0.04,3.32 -0.78,7.96c-0.82,4.64 -1.18,6.06 -1.13,8.16s0.79,6.14 -0.79,6.45s-1.99,-2.15 -2.83,-3.99s-2.31,-4.14 -2.68,-4.93s-0.63,-1.84 -0.63,-1.84s-0.94,0.26 -1.68,-0.21c-0.73,-0.47 -4.46,-4.77 -4.93,-5.14s-1.68,-0.16 -2.68,0.16s-1.36,0.94 -3.62,0.73s-1.42,-1.05 -2.62,-1.89s-2.26,1.1 -3.41,1.1c-1.15,0 -1.89,-0.58 -2.68,-1.36s-1.73,-1.68 -2.2,-1.84s-1.63,0.16 -1.15,1.31s1.36,1.26 2.15,2.05s0.68,1.26 1.1,1.89s2.52,2.05 2.99,1.94c0.47,-0.1 1.36,-0.63 1.73,-1.21s0.26,-1.21 0.94,-1.31s1.26,0.89 2.2,1.63s1.99,0.73 2.26,2.05c0.26,1.31 -0.79,5.35 -1.73,6.4s-1.89,1.15 -1.89,1.15l-2.1,1.78c0,0 0,0.94 -1.73,1.94c-1.73,1 -2.15,0.94 -3.31,1.52s-1.78,1.26 -2.68,1.05s-1.52,-1.57 -1.94,-2.94c-0.42,-1.36 -1.36,-2.52 -2.05,-3.2s-1.21,-0.73 -1.89,-1.57s-2.1,-2.68 -2.2,-3.04s-0.1,-0.84 -0.47,-1.36s-1.1,-0.89 -1.52,-1.21c-0.42,-0.31 -0.73,-0.73 -0.84,-1.42s-1.15,-1.52 -1.68,-2.15s-1.15,-1.78 -1.73,-1.36s0.1,1.31 0.79,2.47s1,1.94 1.15,2.73c0.16,0.79 -0.05,1.31 0.52,1.68s1.21,-0.05 1.89,1.57s0.42,3.15 1.15,3.78s0.89,0.26 1.52,1.05s0.52,1.94 1.26,2.47s2.94,1.47 3.78,2.78s0.42,1.89 1.21,2.36s2.31,0.05 3.88,-0.47s3.73,-2.2 4.62,-1.94s0.68,3.57 -0.21,6.09s-1.57,3.31 -2.2,4.09s-1.52,2.41 -3.36,3.99s-4.3,4.04 -4.93,7.24c0,0 -9.24,6.9 -18.84,5.68C51.67,91.89 41.17,82.45 41.23,82.05z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="64.33"
android:centerY="57.23"
android:gradientRadius="21.39"
android:type="radial">
<item android:offset="0.12" android:color="#FFE3DDA6"/>
<item android:offset="0.91" android:color="#15E3DDA6"/>
<item android:offset="0.98" android:color="#00E3DDA6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M41.23,82.05c0.1,-0.79 -0.21,-2.1 -1.42,-2.52c-1.21,-0.42 -2.15,0.1 -2.83,-0.26s-1.57,-2.26 -3.1,-2.36s-3.46,1.99 -5.14,1.94c-1.68,-0.05 -1.73,-1.21 -2.94,-1.57s-1.63,0.89 -2.62,0.68c-1,-0.21 -2.41,-1.63 -3.2,-2.89s-1.73,-1.99 -2.2,-2.73s-0.63,-1.26 -0.63,-1.26s-1.68,-0.05 -2.15,-2.68s-0.1,-3.88 0.31,-5.25c0.42,-1.36 1.57,-5.04 1.68,-6.3s-0.16,-2.15 0.1,-2.83s1.57,-1.73 2.15,-2.73c0.58,-1 1.1,-2.05 1.63,-2.78s1.47,-0.1 2.73,-1.73c1.26,-1.63 1.05,-1.89 1.05,-1.89s0.31,-1.73 1.26,-2.89s1.94,-1.73 2.62,-1.84s1.63,0.21 2.31,0.21s1.52,0.16 2.1,0.05s2.31,-1.47 3.57,-1.78s2.36,-0.16 3.36,-0.37c1,-0.21 2.73,-0.42 3.83,0.37c1.1,0.79 1.1,1.36 1,1.73s-0.79,1.26 -0.52,1.63s1.1,0.68 1.57,0.84s1.21,0.21 1.47,0.37s0.89,0.89 1.94,1.42s2.73,1.42 3.31,1.1s0.52,-1.73 1.52,-2.05c1,-0.31 2.41,0.05 3.94,0.31s7.82,1.73 8.5,1.52s0.47,-0.79 1.26,-1s1.57,-0.16 1.89,-0.73s0.52,-3.36 0.47,-4.3s-0.05,-2.1 -0.47,-2.31s-1.57,1.05 -2.62,1.26s-1.42,-0.16 -1.89,-0.1s-0.89,0.79 -1.52,0.58c-0.63,-0.21 -1.78,-0.84 -2.41,-1.47c-0.63,-0.63 -1,-1.73 -0.68,-2.47s1.63,-1.15 2.68,-1.57c1.05,-0.42 2.26,-0.52 2.83,-0.73s0.84,-0.47 1.57,-0.47s0.94,0.63 1.36,0.73s3.2,0.05 3.67,-0.05s2.52,-1.05 2.47,-1.78s-1.52,-0.1 -1.94,-0.52s-2,-2.38 -3.25,-2.52c-2.91,-0.33 -6.18,-3.87 -6.25,-8.92c-0.07,-5.05 2.54,-7.7 4.2,-8.08c0.99,-0.23 3.67,-1.21 3.99,-1.52s-0.31,-1.15 -0.63,-1.21s-1.42,0.22 -1.92,-0.31c-0.38,-0.41 -0.11,-0.91 0.53,-1.23c0.63,-0.32 2.19,-1.39 2.19,-1.39s12.49,-0.18 27.03,10.15C113,25.52 117.63,38.2 117.63,38.2s0.41,1.6 0.12,2.13c-0.29,0.54 0.04,3.32 -0.78,7.96c-0.82,4.64 -1.18,6.06 -1.13,8.16s0.79,6.14 -0.79,6.45s-1.99,-2.15 -2.83,-3.99s-2.31,-4.14 -2.68,-4.93s-0.63,-1.84 -0.63,-1.84s-0.94,0.26 -1.68,-0.21c-0.73,-0.47 -4.46,-4.77 -4.93,-5.14s-1.68,-0.16 -2.68,0.16s-1.36,0.94 -3.62,0.73s-1.42,-1.05 -2.62,-1.89s-2.26,1.1 -3.41,1.1c-1.15,0 -1.89,-0.58 -2.68,-1.36s-1.73,-1.68 -2.2,-1.84s-1.63,0.16 -1.15,1.31s1.36,1.26 2.15,2.05s0.68,1.26 1.1,1.89s2.52,2.05 2.99,1.94c0.47,-0.1 1.36,-0.63 1.73,-1.21s0.26,-1.21 0.94,-1.31s1.26,0.89 2.2,1.63s1.99,0.73 2.26,2.05c0.26,1.31 -0.79,5.35 -1.73,6.4s-1.89,1.15 -1.89,1.15l-2.1,1.78c0,0 0,0.94 -1.73,1.94c-1.73,1 -2.15,0.94 -3.31,1.52s-1.78,1.26 -2.68,1.05s-1.52,-1.57 -1.94,-2.94c-0.42,-1.36 -1.36,-2.52 -2.05,-3.2s-1.21,-0.73 -1.89,-1.57s-2.1,-2.68 -2.2,-3.04s-0.1,-0.84 -0.47,-1.36s-1.1,-0.89 -1.52,-1.21c-0.42,-0.31 -0.73,-0.73 -0.84,-1.42s-1.15,-1.52 -1.68,-2.15s-1.15,-1.78 -1.73,-1.36s0.1,1.31 0.79,2.47s1,1.94 1.15,2.73c0.16,0.79 -0.05,1.31 0.52,1.68s1.21,-0.05 1.89,1.57s0.42,3.15 1.15,3.78s0.89,0.26 1.52,1.05s0.52,1.94 1.26,2.47s2.94,1.47 3.78,2.78s0.42,1.89 1.21,2.36s2.31,0.05 3.88,-0.47s3.73,-2.2 4.62,-1.94s0.68,3.57 -0.21,6.09s-1.57,3.31 -2.2,4.09s-1.52,2.41 -3.36,3.99s-4.3,4.04 -4.93,7.24c0,0 -9.24,6.9 -18.84,5.68C51.67,91.89 41.17,82.45 41.23,82.05z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="87.95"
android:centerY="42.63"
android:gradientRadius="18.62"
android:type="radial">
<item android:offset="0.12" android:color="#FFE3DDA6"/>
<item android:offset="0.91" android:color="#15E3DDA6"/>
<item android:offset="0.98" android:color="#00E3DDA6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M59.38,116.57c-1.67,-0.52 -2.73,-1.63 -3.2,-2.15s-0.94,-1.1 -1.68,-1.52c-0.73,-0.42 -1.57,-1.31 -2.15,-2.1s-2.15,-2.89 -3.67,-4.56s-2.31,-2.47 -2.41,-4.3s1.57,-3.73 1.57,-3.73s-0.47,-3.25 -1.84,-5.67s-3.2,-2.83 -4.3,-5.3c0,0 9.75,-0.92 17.91,0.92s21.02,9.26 21.02,9.26c-0.1,1.36 0.05,2.2 -0.68,2.94s-3.73,3.36 -4.25,4.3s-0.16,2.1 -0.52,3.41s-2.68,3.41 -3.46,3.83s-0.58,1.21 -2.41,2.78s-2.42,2.07 -3.2,2.2C65.49,116.99 61.13,117.12 59.38,116.57z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="61.28"
android:centerY="118.76"
android:gradientRadius="17.89"
android:type="radial">
<item android:offset="0" android:color="#FFE3DDA6"/>
<item android:offset="0.82" android:color="#00E3DDA6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M79.53,25.46c-0.78,-0.08 -2.09,1.49 -2.13,2.2s0.19,1.68 0.49,1.94c0.3,0.26 2.09,1.16 2.5,1.75s0.6,2.61 1.38,3.58s1.72,1.98 3.77,1.94s1.75,-1.11 1.75,-1.57c0,-0.78 -2.43,-3.43 -3.4,-4.37c-0.97,-0.93 -2.61,-1.68 -2.91,-2.39s0.26,-1.23 0.04,-1.79C80.8,26.2 80.28,25.53 79.53,25.46z"
android:fillColor="#4B9CED"/>
<path
android:pathData="M72.46,83.86c-0.3,-0.39 -1.65,-0.45 -2.1,-0.16s-1.13,2.42 -0.94,2.78c0.19,0.36 1.49,0.26 1.94,0.1S72.78,84.28 72.46,83.86z"
android:fillColor="#4186F1"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#22404C"/>
<path
android:pathData="M64.01,8.91c-0.07,1.36 -3.5,2.08 -7.48,2.28c-3.99,0.2 -7.29,-0.2 -7.59,-1.53c-0.29,-1.32 2.83,-3.14 7.19,-3.37S64.09,7.55 64.01,8.91z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08c1.23,2.54 0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M97.71,106c-0.22,-0.13 -0.6,-1.22 0.58,-2.57c1.18,-1.35 4.68,-5.33 6.01,-6.92s2.66,-0.18 2.52,1.09C106.12,103.71 100.03,107.33 97.71,106z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M109.01,94.19c-0.2,-0.04 -0.77,-0.78 -0.21,-2.12s2.23,-5.29 2.85,-6.84c0.62,-1.56 2,-0.82 2.21,0.2C114.88,90.29 111.13,94.62 109.01,94.19z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M86.51,13.32c-0.04,0.2 -0.79,0.79 -2.12,0.27c-1.33,-0.52 -5.25,-2.1 -6.8,-2.68c-1.55,-0.58 -0.79,-1.98 0.22,-2.22C82.69,7.54 86.97,11.18 86.51,13.32z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#1B2E35"/>
</vector>

View file

@ -0,0 +1,42 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M4,64c0,33.14 26.86,60 60,60c0,0 42.82,-10 42.82,-60C106.82,18.22 64,4 64,4C30.86,4 4,30.86 4,64z"
android:fillColor="#22404C"/>
<path
android:pathData="M62.34,8.58c-0.02,1.36 -3.4,2.23 -7.38,2.6c-3.98,0.37 -7.3,0.11 -7.65,-1.2c-0.35,-1.31 2.69,-3.26 7.03,-3.68S62.35,7.22 62.34,8.58z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M124,64c0,-33.14 -26.86,-60 -60,-60c0,0 33.47,13.04 33.47,60S64,124 64,124C97.14,124 124,97.14 124,64z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M78.4,15.54c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,3.61 0.32,6.6 2.68,8.2c-0.22,-23.26 -8.68,-38.09 -17.05,-47.06C79.76,15.81 79.09,15.64 78.4,15.54z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M101.42,64.02c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08s0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12c-0.25,-1.36 -0.7,-2.68 -0.75,-4.05c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-1.84,-2.99 -4.51,-5.69 -7.76,-6.84c8.37,8.98 16.83,23.8 17.05,47.06c0.61,0.41 1.34,0.73 2.25,0.94C100.27,64.18 100.89,64.25 101.42,64.02z"
android:fillColor="#F1C688"/>
<path
android:pathData="M104.3,96.51c-1.34,1.59 -4.84,5.56 -6.01,6.92c-1.18,1.35 -0.8,2.45 -0.58,2.57c2.32,1.33 8.41,-2.29 9.1,-8.4C106.96,96.33 105.63,94.92 104.3,96.51z"
android:fillColor="#F1C688"/>
<path
android:pathData="M113.85,85.42c-0.21,-1.01 -1.59,-1.75 -2.21,-0.2s-2.29,5.51 -2.85,6.84c-0.56,1.34 0.01,2.08 0.21,2.12C111.13,94.62 114.88,90.29 113.85,85.42z"
android:fillColor="#F1C688"/>
<path
android:pathData="M77.82,8.69c-1.01,0.24 -1.77,1.64 -0.22,2.22c1.55,0.58 5.47,2.16 6.8,2.68c1.33,0.52 2.08,-0.07 2.12,-0.27C86.97,11.18 82.69,7.54 77.82,8.69z"
android:fillColor="#F1C688"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#1B2E35"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M4,64c0,33.14 26.86,60 60,60c0,0 2.9,-21.47 2.9,-60S64,4 64,4C30.86,4 4,30.86 4,64z"
android:fillColor="#22404C"/>
<path
android:pathData="M124,64c0,-33.14 -26.86,-60 -60,-60v60v60C97.14,124 124,97.14 124,64z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M62.34,8.58c-0.02,1.36 -3.4,2.23 -7.38,2.6c-3.98,0.37 -7.3,0.11 -7.65,-1.2c-0.35,-1.31 2.69,-3.26 7.03,-3.68S62.35,7.22 62.34,8.58z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34s-8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08s0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#F1C688"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M104.3,96.51c-1.34,1.59 -4.84,5.56 -6.01,6.92c-1.18,1.35 -0.8,2.45 -0.58,2.57c2.32,1.33 8.41,-2.29 9.1,-8.4C106.96,96.33 105.63,94.92 104.3,96.51z"
android:fillColor="#F1C688"/>
<path
android:pathData="M111.64,85.22c-0.62,1.56 -2.29,5.51 -2.85,6.84c-0.56,1.34 0.01,2.08 0.21,2.12c2.12,0.43 5.87,-3.9 4.84,-8.77C113.64,84.41 112.26,83.66 111.64,85.22z"
android:fillColor="#F1C688"/>
<path
android:pathData="M77.82,8.69c-1.01,0.24 -1.77,1.64 -0.22,2.22c1.55,0.58 5.47,2.16 6.8,2.68c1.33,0.52 2.08,-0.07 2.12,-0.27C86.97,11.18 82.69,7.54 77.82,8.69z"
android:fillColor="#F1C688"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#1B2E35"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,4c0,0 -35.92,7.23 -35.92,59.22C28.08,114.75 64,124 64,124c33.14,0 60,-26.86 60,-60S97.14,4 64,4z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M30.53,64C30.53,17.04 64,4 64,4C30.86,4 4,30.86 4,64s26.86,60 60,60C64,124 30.53,110.96 30.53,64z"
android:fillColor="#22404C"/>
<path
android:pathData="M56.53,11.19c3.99,-0.2 7.41,-0.92 7.48,-2.28c0.06,-1 -1.9,-2.08 -4.68,-2.48c-1.86,1.12 -4.13,2.68 -6.59,4.73C53.86,11.25 55.15,11.26 56.53,11.19z"
android:fillColor="#F1C688"/>
<path
android:pathData="M56.13,6.29c-4.36,0.23 -7.48,2.05 -7.19,3.37c0.19,0.87 1.68,1.34 3.8,1.5c2.46,-2.06 4.74,-3.61 6.59,-4.73C58.35,6.29 57.27,6.23 56.13,6.29z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08c1.23,2.54 0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#F1C688"/>
<path
android:pathData="M26.26,102.61c-1.02,-0.95 -1.91,-0.73 -2.01,-0.57c-1.15,1.68 1.47,6.44 6.28,7.28c1,0.17 2.17,-0.75 0.97,-1.83C30.29,106.4 27.28,103.56 26.26,102.61z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M42.04,114.42c-0.48,1.98 3.66,5.49 8.46,4.57c1,-0.19 1.76,-1.47 0.25,-2.06c-1.51,-0.59 -5.33,-2.17 -6.63,-2.7S42.08,114.23 42.04,114.42z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M49.23,112.75c0.28,-0.71 -0.33,-1.45 -0.93,-1.91c-0.5,-0.39 -1.87,-1.25 -3.51,-2.13c1.33,1.66 2.68,3.17 4.02,4.52C48.99,113.11 49.15,112.97 49.23,112.75z"
android:fillColor="#F1C688"/>
<path
android:pathData="M36.36,106.86c-0.52,1.99 3.15,4.36 4.55,5.13c1.99,1.09 4.27,1.67 6.55,1.6c0.46,-0.01 0.98,-0.11 1.35,-0.36c-1.34,-1.35 -2.69,-2.87 -4.02,-4.52C41.4,106.88 36.86,104.95 36.36,106.86z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M97.71,106c-0.22,-0.13 -0.6,-1.22 0.58,-2.57c1.18,-1.35 4.68,-5.33 6.01,-6.92s2.66,-0.18 2.52,1.09C106.12,103.71 100.03,107.33 97.71,106z"
android:fillColor="#F1C688"/>
<path
android:pathData="M109.01,94.19c-0.2,-0.04 -0.77,-0.78 -0.21,-2.12s2.23,-5.29 2.85,-6.84c0.62,-1.56 2,-0.82 2.21,0.2C114.88,90.29 111.13,94.62 109.01,94.19z"
android:fillColor="#F1C688"/>
<path
android:pathData="M86.51,13.32c-0.04,0.2 -0.79,0.79 -2.12,0.27c-1.33,-0.52 -5.25,-2.1 -6.8,-2.68c-1.55,-0.58 -0.79,-1.98 0.22,-2.22C82.69,7.54 86.97,11.18 86.51,13.32z"
android:fillColor="#F1C688"/>
<path
android:pathData="M31.75,78.73c0.45,-0.32 0.91,-0.61 1.42,-0.81c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08c3.18,-4.17 3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26c3.17,-2.72 10.62,-10.03 -1.19,-12.19c-4,-0.73 -6.91,-0.14 -9.16,0.88C38.92,25.47 30.53,40.48 30.53,64C30.53,69.35 30.98,74.23 31.75,78.73zM37.37,48.58c0.8,0 2.73,-0.26 3.41,0.18c0.91,0.59 0.94,1.84 0.72,3.04c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14C34.68,48.46 35.95,48.59 37.37,48.58z"
android:fillColor="#F1C688"/>
<path
android:pathData="M33.16,22.12c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c0.54,-0.33 1.03,-0.73 1.55,-1.09c-0.77,-4.5 -1.22,-9.38 -1.22,-14.73c0,-23.52 8.4,-38.53 16.78,-47.66c-3.11,1.4 -4.96,3.6 -6.65,4.32C38.34,21.65 36.74,19.94 33.16,22.12zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86z"
android:fillColor="#1B2E35"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M62.34,8.58c-0.02,1.36 -3.4,2.23 -7.38,2.6c-3.98,0.37 -7.3,0.11 -7.65,-1.2c-0.35,-1.31 2.69,-3.26 7.03,-3.68S62.35,7.22 62.34,8.58z"
android:fillColor="#F1C688"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08c1.23,2.54 0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#F1C688"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#F1C688"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#F1C688"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#F1C688"/>
<path
android:pathData="M97.71,106c-0.22,-0.13 -0.6,-1.22 0.58,-2.57c1.18,-1.35 4.68,-5.33 6.01,-6.92s2.66,-0.18 2.52,1.09C106.12,103.71 100.03,107.33 97.71,106z"
android:fillColor="#F1C688"/>
<path
android:pathData="M109.01,94.19c-0.2,-0.04 -0.77,-0.78 -0.21,-2.12s2.23,-5.29 2.85,-6.84c0.62,-1.56 2,-0.82 2.21,0.2C114.88,90.29 111.13,94.62 109.01,94.19z"
android:fillColor="#F1C688"/>
<path
android:pathData="M86.51,13.32c-0.04,0.2 -0.79,0.79 -2.12,0.27c-1.33,-0.52 -5.25,-2.1 -6.8,-2.68c-1.55,-0.58 -0.79,-1.98 0.22,-2.22C82.69,7.54 86.97,11.18 86.51,13.32z"
android:fillColor="#F1C688"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#F1C688"/>
</vector>

View file

@ -0,0 +1,42 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M4,64c0,33.14 26.86,60 60,60c0,0 42.82,-20.17 42.82,-60S64,4 64,4C30.86,4 4,30.86 4,64z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M62.34,8.58c-0.02,1.36 -3.4,2.23 -7.38,2.6c-3.98,0.37 -7.3,0.11 -7.65,-1.2c-0.35,-1.31 2.69,-3.26 7.03,-3.68S62.35,7.22 62.34,8.58z"
android:fillColor="#F1C688"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#F1C688"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#F1C688"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#F1C688"/>
<path
android:pathData="M124,64c0,-33.14 -26.86,-60 -60,-60c0,0 33.47,13.04 33.47,60S64,124 64,124C97.14,124 124,97.14 124,64z"
android:fillColor="#22404C"/>
<path
android:pathData="M78.4,15.54c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,3.61 0.32,6.6 2.68,8.2c-0.22,-23.26 -8.68,-38.09 -17.05,-47.06C79.76,15.81 79.09,15.64 78.4,15.54z"
android:fillColor="#F1C688"/>
<path
android:pathData="M101.42,64.02c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08s0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12c-0.25,-1.36 -0.7,-2.68 -0.75,-4.05c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-1.84,-2.99 -4.51,-5.69 -7.76,-6.84c8.37,8.98 16.83,23.8 17.05,47.06c0.61,0.41 1.34,0.73 2.25,0.94C100.27,64.18 100.89,64.25 101.42,64.02z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M104.3,96.51c-1.34,1.59 -4.84,5.56 -6.01,6.92c-1.18,1.35 -0.8,2.45 -0.58,2.57c2.32,1.33 8.41,-2.29 9.1,-8.4C106.96,96.33 105.63,94.92 104.3,96.51z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M113.85,85.42c-0.21,-1.01 -1.59,-1.75 -2.21,-0.2s-2.29,5.51 -2.85,6.84c-0.56,1.34 0.01,2.08 0.21,2.12C111.13,94.62 114.88,90.29 113.85,85.42z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M77.82,8.69c-1.01,0.24 -1.77,1.64 -0.22,2.22c1.55,0.58 5.47,2.16 6.8,2.68c1.33,0.52 2.08,-0.07 2.12,-0.27C86.97,11.18 82.69,7.54 77.82,8.69z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#F1C688"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M4,64c0,33.14 26.86,60 60,60c0,0 2.94,-18.45 2.96,-60.41S64,4 64,4C30.86,4 4,30.86 4,64z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M124,64c0,-33.14 -26.86,-60 -60,-60v120C97.14,124 124,97.14 124,64z"
android:fillColor="#22404C"/>
<path
android:pathData="M62.34,8.58c-0.02,1.36 -3.4,2.23 -7.38,2.6c-3.98,0.37 -7.3,0.11 -7.65,-1.2c-0.35,-1.31 2.69,-3.26 7.03,-3.68S62.35,7.22 62.34,8.58z"
android:fillColor="#F1C688"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34s-8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08s0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M24.24,102.04c0.11,-0.16 0.99,-0.39 2.01,0.57c1.02,0.95 4.03,3.79 5.23,4.88c1.2,1.09 0.03,2.01 -0.97,1.83C25.71,108.48 23.09,103.71 24.24,102.04z"
android:fillColor="#F1C688"/>
<path
android:pathData="M42.04,114.42c0.05,-0.19 0.79,-0.71 2.08,-0.19s5.12,2.11 6.63,2.7c1.51,0.59 0.74,1.86 -0.25,2.06C45.7,119.91 41.56,116.39 42.04,114.42z"
android:fillColor="#F1C688"/>
<path
android:pathData="M48.3,110.84c0.6,0.47 1.21,1.21 0.93,1.91c-0.26,0.64 -1.08,0.81 -1.77,0.83c-2.28,0.07 -4.56,-0.51 -6.55,-1.6c-1.4,-0.77 -5.07,-3.14 -4.55,-5.13C37.1,104.03 46.76,109.65 48.3,110.84z"
android:fillColor="#F1C688"/>
<path
android:pathData="M104.3,96.51c-1.34,1.59 -4.84,5.56 -6.01,6.92c-1.18,1.35 -0.8,2.45 -0.58,2.57c2.32,1.33 8.41,-2.29 9.1,-8.4C106.96,96.33 105.63,94.92 104.3,96.51z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M111.64,85.22c-0.62,1.56 -2.29,5.51 -2.85,6.84c-0.56,1.34 0.01,2.08 0.21,2.12c2.12,0.43 5.87,-3.9 4.84,-8.77C113.64,84.41 112.26,83.66 111.64,85.22z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M77.82,8.69c-1.01,0.24 -1.77,1.64 -0.22,2.22c1.55,0.58 5.47,2.16 6.8,2.68c1.33,0.52 2.08,-0.07 2.12,-0.27C86.97,11.18 82.69,7.54 77.82,8.69z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M56.47,15.47c-9.5,-1.73 -12.9,3.96 -15.81,5.2c-2.32,0.98 -3.92,-0.73 -7.5,1.46c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c1,-0.62 1.86,-1.49 2.97,-1.9c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08s3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26C60.83,24.93 68.28,17.62 56.47,15.47zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86zM41.51,51.8c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14c1.14,-1.06 2.42,-0.93 3.84,-0.94c0.8,0 2.73,-0.26 3.41,0.18C41.69,49.35 41.72,50.61 41.51,51.8z"
android:fillColor="#F1C688"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,4c0,0 -36.01,13.04 -36.01,60S64,124 64,124c33.14,0 60,-26.86 60,-60S97.14,4 64,4z"
android:fillColor="#22404C"/>
<path
android:pathData="M30.53,64C30.53,17.04 64,4 64,4C30.86,4 4,30.86 4,64s26.86,60 60,60C64,124 30.53,110.96 30.53,64z"
android:fillColor="#FCE5AC"/>
<path
android:pathData="M56.53,11.19c3.99,-0.2 7.41,-0.92 7.48,-2.28c0.06,-1 -1.9,-2.08 -4.68,-2.48c-1.86,1.12 -4.13,2.68 -6.59,4.73C53.86,11.25 55.15,11.26 56.53,11.19z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M56.13,6.29c-4.36,0.23 -7.48,2.05 -7.19,3.37c0.19,0.87 1.68,1.34 3.8,1.5c2.46,-2.06 4.74,-3.61 6.59,-4.73C58.35,6.29 57.27,6.23 56.13,6.29z"
android:fillColor="#F1C688"/>
<path
android:pathData="M119.37,59.47c-0.01,-0.4 0.01,-0.8 0.08,-1.21c1.22,-7.23 1.8,-14 -6.32,-18.14c-0.89,-0.46 -1.87,-0.83 -2.55,-1.57c-1.25,-1.35 -1.14,-3.41 -1.46,-5.22c-0.97,-5.54 -7.24,-9.51 -12.66,-8.01c-1.78,0.49 -3.64,1.47 -5.35,0.8c-1.38,-0.54 -2.16,-1.97 -2.94,-3.23c-2.21,-3.58 -5.6,-6.76 -9.77,-7.34c-4.17,-0.59 -8.91,2.3 -9.17,6.5c-0.11,1.83 0.2,3.99 1.6,5.18c5.88,5.01 9.52,1.32 12.25,3.91c3.17,3.01 -3.41,3.82 -2.32,11.47c0.55,3.82 4.34,7.4 8.19,7.08c1.71,-0.15 4.31,-0.24 5.26,1.19c0.75,1.12 0.56,2.19 0.56,4.03c0,4.54 0.5,8.11 4.92,9.14c0.57,0.13 1.19,0.2 1.72,-0.03c1.17,-0.51 1.16,-2.08 1.08,-3.36c-0.35,-5.62 -4.31,-6.76 -5.03,-9.85c-0.91,-3.94 4.47,-9.27 8.87,-7.78c3.5,1.19 0.65,5.25 3.21,9.94c1.69,3.11 5.01,4.54 6.24,7.08c1.23,2.54 0.09,4.3 0.69,5.91c0.93,2.52 2.41,2.56 3.24,1.67c0.91,-0.97 0.61,-2.96 0.39,-4.12C119.86,62.16 119.41,60.84 119.37,59.47z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M26.26,102.61c-1.02,-0.95 -1.91,-0.73 -2.01,-0.57c-1.15,1.68 1.47,6.44 6.28,7.28c1,0.17 2.17,-0.75 0.97,-1.83C30.29,106.4 27.28,103.56 26.26,102.61z"
android:fillColor="#F1C688"/>
<path
android:pathData="M42.04,114.42c-0.48,1.98 3.66,5.49 8.46,4.57c1,-0.19 1.76,-1.47 0.25,-2.06c-1.51,-0.59 -5.33,-2.17 -6.63,-2.7S42.08,114.23 42.04,114.42z"
android:fillColor="#F1C688"/>
<path
android:pathData="M49.23,112.75c0.28,-0.71 -0.33,-1.45 -0.93,-1.91c-0.5,-0.39 -1.87,-1.25 -3.51,-2.13c1.33,1.66 2.68,3.17 4.02,4.52C48.99,113.11 49.15,112.97 49.23,112.75z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M36.36,106.86c-0.52,1.99 3.15,4.36 4.55,5.13c1.99,1.09 4.27,1.67 6.55,1.6c0.46,-0.01 0.98,-0.11 1.35,-0.36c-1.34,-1.35 -2.69,-2.87 -4.02,-4.52C41.4,106.88 36.86,104.95 36.36,106.86z"
android:fillColor="#F1C688"/>
<path
android:pathData="M97.71,106c-0.22,-0.13 -0.6,-1.22 0.58,-2.57c1.18,-1.35 4.68,-5.33 6.01,-6.92s2.66,-0.18 2.52,1.09C106.12,103.71 100.03,107.33 97.71,106z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M109.01,94.19c-0.2,-0.04 -0.77,-0.78 -0.21,-2.12s2.23,-5.29 2.85,-6.84c0.62,-1.56 2,-0.82 2.21,0.2C114.88,90.29 111.13,94.62 109.01,94.19z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M86.51,13.32c-0.04,0.2 -0.79,0.79 -2.12,0.27c-1.33,-0.52 -5.25,-2.1 -6.8,-2.68c-1.55,-0.58 -0.79,-1.98 0.22,-2.22C82.69,7.54 86.97,11.18 86.51,13.32z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M31.75,78.73c0.45,-0.32 0.91,-0.61 1.42,-0.81c2.34,-0.87 2.4,0.63 2.63,2.38c1.08,8.06 4.43,10.14 6.78,11.05c4.89,1.89 10.9,0.09 14.08,-4.08c3.18,-4.17 3.53,-10.4 0.66,-14.79c-4.38,-6.7 -13.03,-7.07 -14.78,-10.82c-1.97,-4.22 3.48,-4.81 5.86,-8.47c2.12,-3.25 2.56,-7.72 0.54,-11.08c-1,-1.66 -2.66,-3.32 -2.24,-5.21c0.47,-2.11 6.48,-5.42 10.95,-9.26c3.17,-2.72 10.62,-10.03 -1.19,-12.19c-4,-0.73 -6.91,-0.14 -9.16,0.88C38.92,25.47 30.53,40.48 30.53,64C30.53,69.35 30.98,74.23 31.75,78.73zM37.37,48.58c0.8,0 2.73,-0.26 3.41,0.18c0.91,0.59 0.94,1.84 0.72,3.04c-0.14,0.79 -0.39,1.55 -0.57,2.07c-0.49,1.45 -1.2,2.97 -2.57,3.64c-0.6,0.3 -1.27,0.4 -1.93,0.51c-1.37,0.21 -3.08,0.28 -3.79,-0.91c-0.26,-0.43 -0.32,-0.95 -0.37,-1.45c-0.23,-2.16 -0.34,-4.67 1.25,-6.14C34.68,48.46 35.95,48.59 37.37,48.58z"
android:fillColor="#1B2E35"/>
<path
android:pathData="M33.16,22.12c-4.94,3.01 -3.07,5.19 -3.52,7.74c-0.46,2.55 -3.19,3.64 -5.19,3.83c-2.37,0.23 -2.56,-1.21 -1.42,-2.94c0.63,-0.95 1.3,-1.54 1.62,-2.66c0.37,-1.3 0.17,-2.7 0.89,-3.9c1.13,-1.88 3.77,-2.14 5.4,-3.6c1.18,-1.06 1.75,-2.69 3.01,-3.66c1.26,-0.97 2.9,-1.32 4.47,-1.6c3.2,-0.57 5.9,-3.09 4.45,-3.17c-1.46,-0.08 -3.89,-0.55 -5.93,0.95c-2.27,1.66 -5.32,2.18 -7.73,3.55c-2.7,1.55 -4.12,4.92 -4.94,5.83c-0.82,0.91 -3.46,1 -5.28,2.88C15.19,29.27 8.85,43.4 8.85,48.69c0,4.93 2.19,9.75 7.08,11.09c0.74,0.2 1.53,0.43 2.01,1.03c1.1,1.37 -1.65,5.49 -2.07,7.15c-1.07,4.3 0.1,7.61 2,9.98c4.11,5.11 8.21,4.42 12.33,1.89c0.54,-0.33 1.03,-0.73 1.55,-1.09c-0.77,-4.5 -1.22,-9.38 -1.22,-14.73c0,-23.52 8.4,-38.53 16.78,-47.66c-3.11,1.4 -4.96,3.6 -6.65,4.32C38.34,21.65 36.74,19.94 33.16,22.12zM26.01,48.86c-0.34,0.65 -0.85,1.3 -1.58,1.41c-0.69,0.1 -1.35,-0.34 -1.78,-0.89c-0.68,-0.89 -0.88,-2.14 -0.45,-3.17c0.51,-1.24 2.25,-2.23 3.6,-1.65c0.73,0.31 0.95,1.05 0.91,1.86C26.66,47.31 26.31,48.28 26.01,48.86z"
android:fillColor="#F1C688"/>
</vector>

View file

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M99.32,28.84L93.51,9.5l-1.98,-2.66c0,0 -0.15,-0.18 -0.17,-0.24c-0.06,-0.25 -0.13,-0.66 0.11,-0.97c0.18,-0.23 0.49,-0.29 0.85,-0.26c0.14,0.01 0.48,0.14 1.02,0.44c5.31,3 28.21,21.75 30.14,52.02c1.09,17.1 -5.15,35.4 -18.27,48.16c-12.46,12.11 -31.28,19.65 -51.98,16.7C22.29,118.28 9.01,99.48 5.54,93.27c-0.61,-1.1 -0.91,-1.8 -0.97,-1.97c-0.82,-2.15 -0.6,-3.24 0.17,-3.49c0.2,-0.06 0.65,0.02 0.9,0.3c1,1.12 2.82,1.85 2.82,1.85l12.88,10.43l63.89,4.84l22.65,-49.38L99.32,28.84z"
android:fillColor="#FFB803"/>
<path
android:pathData="M73.65,87.67c15.97,-9.9 23.77,-26.72 24.39,-42.28c0.9,-22.79 -6.68,-38.8 -6.68,-38.8s14.01,11.5 21.68,28.08s9,43.87 -7.78,63.4c-18.45,21.45 -43.18,22.72 -58.73,18.7C14.26,108.42 5.44,87.94 5.44,87.94s17.78,9.95 37.77,8.9C58.09,96.06 65.75,92.57 73.65,87.67z"
android:fillColor="#FFCA29"/>
</vector>

View file

@ -0,0 +1,33 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M-1228,-57.67h0v0.67h-0z"
android:fillColor="#F2F2F2"/>
<path
android:pathData="M36.46,36.81l-14.14,-9.06C21.1,27 20.9,25.31 21.91,24.3l5.31,-5.31c1.02,-1.02 2.74,-0.8 3.47,0.45l8.84,14.37C40.69,35.79 38.42,38.01 36.46,36.81z"
android:fillColor="#FFC107"/>
<path
android:pathData="M24.1,80.39L7.68,80.72c-1.43,0.03 -2.45,1.39 -2.09,2.77l1.91,7.26c0.37,1.4 1.96,2.07 3.22,1.37l14.51,-7.59C27.23,83.4 26.4,80.34 24.1,80.39z"
android:fillColor="#FFC107"/>
<path
android:pathData="M62.24,108.28l-3.6,15.99c-0.33,1.39 0.72,2.73 2.15,2.73h7.51c1.45,0 2.5,-1.37 2.14,-2.77l-3.91,-15.99C65.95,106.01 62.78,106.04 62.24,108.28z"
android:fillColor="#FFC107"/>
<path
android:pathData="M91.54,36.81l14.14,-9.06c1.22,-0.75 1.42,-2.44 0.41,-3.45l-5.31,-5.31c-1.02,-1.02 -2.74,-0.8 -3.47,0.45l-8.84,14.37C87.31,35.79 89.58,38.01 91.54,36.81z"
android:fillColor="#FFC107"/>
<path
android:pathData="M103.9,80.39l16.42,0.33c1.43,0.03 2.45,1.39 2.09,2.77l-1.91,7.26c-0.37,1.4 -1.96,2.07 -3.22,1.37l-14.51,-7.59C100.77,83.4 101.6,80.34 103.9,80.39z"
android:fillColor="#FFC107"/>
<path
android:pathData="M68.05,7.23l13.46,30.7c1.03,2.35 3.26,3.96 5.82,4.19l32.79,2.94c3.71,0.54 5.19,5.09 2.5,7.71L97.92,73.52c-2,1.68 -2.91,4.32 -2.36,6.87l7.18,33.61c0.63,3.69 -3.24,6.51 -6.56,4.76L67.56,102c-2.2,-1.29 -4.92,-1.29 -7.12,0l-28.62,16.75c-3.31,1.74 -7.19,-1.07 -6.56,-4.76l7.18,-33.61c0.54,-2.55 -0.36,-5.19 -2.36,-6.87L5.37,52.78c-2.68,-2.61 -1.2,-7.17 2.5,-7.71l32.79,-2.94c2.56,-0.23 4.79,-1.84 5.82,-4.19l13.46,-30.7C61.61,3.88 66.39,3.88 68.05,7.23z"
android:fillColor="#FDD835"/>
<path
android:pathData="M67.07,39.77l-2.28,-22.62c-0.09,-1.26 -0.35,-3.42 1.67,-3.42c1.6,0 2.47,3.33 2.47,3.33l6.84,18.16c2.58,6.91 1.52,9.28 -0.97,10.68C71.94,47.5 67.72,46.25 67.07,39.77z"
android:fillColor="#FFFF8D"/>
<path
android:pathData="M95.28,71.51L114.9,56.2c0.97,-0.81 2.72,-2.1 1.32,-3.57c-1.11,-1.16 -4.11,0.51 -4.11,0.51l-17.17,6.71c-5.12,1.77 -8.52,4.39 -8.82,7.69C85.73,71.94 89.68,75.33 95.28,71.51z"
android:fillColor="#F4B400"/>
</vector>

View file

@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M61.41,14.58c0,0 1.8,-8.73 3.72,-9.24c1.93,-0.51 10.34,1.31 14.47,3.5c5.77,3.05 9.33,8.14 10.18,14.34c0.9,6.64 -1.67,12.2 -1.67,12.2s6.03,-3.59 13.22,-2.95c7.19,0.64 12.58,4.11 14.64,6.68c2.05,2.57 4.88,5.39 4.49,6.68c-0.39,1.28 -7.83,5.91 -7.45,7.06c0.39,1.16 9.12,0.51 10.01,2.05c0.9,1.54 2.7,11.43 -3.85,18.49c-6.55,7.06 -12.97,8.09 -12.97,8.09s6.48,6.09 6.82,14.41c0.28,6.81 -1.55,10.88 -5.27,12.3c-3.72,1.41 -10.66,-3.08 -10.66,-3.08s6.03,10.78 3.34,12.45c-2.7,1.67 -4.03,-1.31 -5.14,-1.03c-0.91,0.23 0.64,2.44 -1.41,4.37c-2.05,1.93 -10.91,3.21 -18.74,-1.03s-10.27,-10.91 -10.27,-10.91s-2.11,8.1 -11.74,12.21s-16.64,-0.92 -17.92,-1.69s-0.77,-6.93 -0.51,-7.96c0.26,-1.03 1.41,-3.47 0.64,-3.98s-3.34,3.08 -5.14,4.24s-4.11,2.44 -6.42,0.51c-2.31,-1.93 -7.83,-8.35 -6.42,-16.95c1.41,-8.6 6.29,-13.48 6.29,-13.48s-10.27,-0.9 -15.28,-9.63S4.02,54.77 4.92,53.61s8.6,-1.28 8.6,-1.28s-7.32,-4.24 -6.55,-7.57c0.77,-3.34 4.49,-0.77 5.52,-1.8c1.03,-1.03 -2.62,-4.93 0.26,-6.97c2.16,-1.53 5.96,-4.38 13.22,-4.97c7.65,-0.63 12.97,3.21 12.97,3.21s-3.27,-5.53 -1.92,-11.81c1.07,-4.97 4.75,-9.24 8.21,-11.68s8.09,-4.37 10.14,-4.37S61.41,14.58 61.41,14.58z"
android:fillColor="#FFBCD8"/>
<path
android:pathData="M79.68,46.37c1.38,1.59 4.29,-0.58 6.2,-3.82c1.46,-2.47 3.13,-6.69 2.54,-7.21c-0.59,-0.52 -5.14,3.02 -6.68,4.77C80.21,41.87 78.59,45.11 79.68,46.37z"
android:fillColor="#FCA2C8"/>
<path
android:pathData="M87.42,77.33c-0.37,2.36 5.51,4.03 8.64,4.4c2.97,0.35 10.13,0.75 10.15,-0.26c0.03,-1.01 -5.65,-4.94 -10.15,-5.89C92.11,74.75 87.74,75.32 87.42,77.33z"
android:fillColor="#FCA2C8"/>
<path
android:pathData="M65.26,92.39c-2.01,-0.12 -2.76,4.56 -2.39,8.16s1.14,8.3 2,8.39c0.86,0.09 2.35,-5.11 2.72,-9.98C67.82,95.9 67.06,92.5 65.26,92.39z"
android:fillColor="#FCA2C8"/>
<path
android:pathData="M23.66,81.86c0.14,0.67 7.08,0.67 10.79,-0.39c3.71,-1.06 6.04,-3.23 5.62,-4.82c-0.42,-1.59 -5.08,-1.14 -7.69,-0.16C28.99,77.76 23.53,81.2 23.66,81.86z"
android:fillColor="#FCA2C8"/>
<path
android:pathData="M39.33,34.6c-0.79,0.58 1.75,5.41 3.45,7.48c1.7,2.07 4.35,4.35 5.67,3.76c1.33,-0.58 0.11,-4.77 -2.81,-7.58C44.23,36.9 40.13,34.02 39.33,34.6z"
android:fillColor="#FCA2C8"/>
<path
android:pathData="M78.4,45.99c-1.82,-0.94 -7.53,6.76 -14.19,6.49s-13.52,-7.33 -14.73,-6.25s3.65,8.88 1.11,16.5c-2.32,6.97 -10.46,11.61 -9.58,13.33c0.82,1.61 8.71,-1.73 15.27,1.58c7.65,3.87 6.19,13.75 8.88,13.82c2.69,0.07 1.5,-8.62 8.14,-12.81c6.39,-4.04 13.21,-0.9 13.79,-2.96c0.67,-2.42 -8,-5.41 -9.81,-13.68C75.17,52.46 80.29,46.96 78.4,45.99z"
android:fillColor="#BF0477"/>
<path
android:pathData="M59.73,58.83c-1.37,0.46 -4.92,8.59 -4.36,9.59c0.56,1 7.85,7.29 9.78,7.29c1.93,0 8.28,-6.1 8.34,-7.04c0.06,-0.93 -3.11,-9.22 -4.17,-9.84C68.26,58.21 61.04,58.39 59.73,58.83z"
android:fillColor="#F2A159"/>
<path
android:pathData="M68.8,54.08c-1.57,1.46 -1.72,4.26 0.18,5.83c2.03,1.67 4.79,1.04 5.96,-0.59c1.03,-1.42 1.13,-3.61 -0.59,-5.15C73.29,53.22 70.79,52.23 68.8,54.08z"
android:fillColor="#FDD0B1"/>
<path
android:pathData="M71.28,69.71c-0.27,2.62 1.94,4.61 4.15,4.56c2.89,-0.06 3.96,-2.47 3.93,-4.11c-0.05,-2.21 -1.58,-4.11 -4.02,-4.02S71.51,67.5 71.28,69.71z"
android:fillColor="#FDD0B1"/>
<path
android:pathData="M65.05,74.4c-1.94,0.05 -3.97,1.35 -3.93,4.2c0.04,2.62 2.08,3.79 4.11,3.79c2.03,0 3.7,-1.45 3.7,-3.93C68.93,75.98 67.13,74.35 65.05,74.4z"
android:fillColor="#FDD0B1"/>
<path
android:pathData="M52.68,65.96c-2.89,0 -4.11,1.99 -4.11,4.25s1.67,3.9 4.34,3.79c2.3,-0.09 3.73,-2.04 3.52,-4.2C56.2,67.45 55.12,65.96 52.68,65.96z"
android:fillColor="#FDD0B1"/>
<path
android:pathData="M54.66,53.54c-1.66,1.61 -1.72,4.38 0.05,5.83c1.38,1.14 3.84,1.54 5.46,-0.14c1.63,-1.67 1.35,-4.06 -0.09,-5.46C58.64,52.36 56.29,51.96 54.66,53.54z"
android:fillColor="#FDD0B1"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M49.02,111.67c0,0 -4.87,5.89 -9.35,7.86c-4.48,1.96 -7.54,1.96 -8.41,1.26c-0.86,-0.71 -0.86,-3.46 -0.86,-3.46s-1.65,3.69 -11.16,4.48s-10.61,-1.26 -10.92,-2.51c-0.31,-1.26 1.49,-2.67 2.75,-4.4c1.26,-1.73 4.17,-6.52 4.17,-6.52s-3.14,0.47 -3.46,-1.02c-0.31,-1.49 1.49,-3.46 2.67,-5.34c1.18,-1.89 2.59,-4.09 4.87,-5.58s22.11,-20.01 22.11,-20.01l11.7,7.55L49.02,111.67z"
android:fillColor="#2E7E31"/>
<path
android:pathData="M25.01,107.71c1.21,1.17 3.77,-0.71 6.83,-2.73s5.19,-3.5 4.32,-5.03c-0.87,-1.53 -4.37,-0.93 -7.43,1.86C26.09,104.2 23.64,106.4 25.01,107.71z"
android:fillColor="#5B9922"/>
<path
android:pathData="M84.23,109.21c0,0 4.41,3.1 8.73,4.88c4.32,1.78 8.34,3.46 9.86,2.41c1.8,-1.25 1.12,-4.28 1.12,-4.28s2.82,2.91 8.17,4.13s10.89,1.69 11.17,1.13c0.28,-0.56 -0.66,-6.95 -2.25,-10.61s-3.94,-6.38 -3.94,-6.38s3.47,0.09 3.94,-1.6s-3.92,-8.72 -9.33,-13.32c-4.47,-3.8 -17.81,-7.06 -17.81,-7.06l-13.24,5.07L84.23,109.21z"
android:fillColor="#2E7E31"/>
<path
android:pathData="M100.78,95.69c-0.93,1.06 0.37,2.48 4.1,6.09c3.73,3.6 5.53,5.96 6.58,4.91c1.06,-1.06 -0.06,-4.04 -4.1,-8.07S101.91,94.41 100.78,95.69z"
android:fillColor="#5A9821"/>
<path
android:pathData="M94.9,42.63c-0.84,-0.93 12.29,-8.72 10.85,-16.59c-1.43,-7.87 -5.64,-7.3 -8.27,-10.1s-1.57,-5.81 -7.8,-9.17c-5.56,-3 -9.01,0.46 -11.14,0.17c-4.78,-0.65 -9.01,-3.91 -15,0.7s-4.08,15.38 -3.91,16.94c0.17,1.56 0.44,5.53 -0.19,5.81c-0.63,0.28 -3.35,-14.18 -7.01,-16.36C43.97,8.99 42,14.2 42,14.2s-10.36,-9.72 -19.78,-2.88c-8.1,5.88 -3.1,16.36 -3.24,17.53s-4.53,2.99 -3.78,9.44c1,8.58 13.73,10.76 13.67,12.59c-0.05,1.53 -14.99,-5.07 -20.78,2.84c-3.77,5.14 -1.02,9.06 -1.12,10.94c-0.11,1.88 -5.6,6.21 -2.33,15.32c2.62,7.28 7.92,6.83 9.16,8.28s1.69,6.19 7.52,7.95c5.83,1.76 11.26,-1.57 14.03,-3.97s4.99,-4.45 6.04,-4.33c1.1,0.13 -7.19,11.46 1.08,21.16c4.49,5.26 7.91,4.14 9.29,4.54s2.23,5.12 12.75,6.25c10.52,1.13 11.26,-5.05 13.95,-5.8c2.69,-0.75 10.06,-1.11 12.5,-11.54c2.03,-8.63 -4.85,-16.4 -3.93,-17.12c0.91,-0.72 7.56,9.21 19.88,4.88c6.46,-2.27 6.8,-8.74 6.8,-8.74s10.37,-4.19 11.18,-15.6c0.64,-8.91 -7.26,-13.22 -7.72,-14.34s-0.58,-5.9 -5.65,-9.39C105.06,37.8 95.73,43.56 94.9,42.63z"
android:fillColor="#EA4B8D"/>
<path
android:pathData="M67.54,42.8c0,0 7.14,-11.08 11.9,-8.22c3.58,2.15 -4.65,12.33 -4.65,12.33s8.79,-6.27 10.49,-3.59c2.29,3.61 -4.64,9.1 -4.64,9.1s10.88,-3.98 12.7,0.25c2.09,4.87 -13.41,7.16 -13.41,7.16s15.39,-0.39 14.74,5.03c-0.54,4.51 -15.31,1.59 -15.31,1.59s9.53,8.37 6.3,11.44c-3.89,3.7 -14.67,-6.22 -14.67,-6.22s-0.76,14.26 -5.39,14.83c-4.81,0.59 -7.85,-14.31 -7.85,-14.31s-5.95,11.78 -9.91,9.05c-3.44,-2.38 1.13,-10.53 1.13,-10.53s-10.58,8.56 -13.33,5.02c-2.75,-3.54 8.16,-11.84 8.16,-11.84s-11.61,1.8 -12.18,-4.04c-0.57,-5.88 12.04,-7.03 12.04,-7.03s-5.21,-1.32 -4.59,-4.63c0.62,-3.31 11.48,0.49 11.48,0.49s-5.39,-6.84 -2.97,-9.37c3.89,-4.08 13.53,7.1 13.53,7.1s1.35,-12.97 5.3,-12.05C69.54,35.08 67.54,42.8 67.54,42.8z"
android:fillColor="#C10375"/>
<path
android:pathData="M49.75,28.12c0,0 4.38,2.8 9.85,10.45c7.56,10.58 9.33,17.54 9.33,17.54s-0.52,4.45 -4.62,5.31c-4.92,1.03 -6.74,-2.67 -6.74,-2.67s-0.81,-7.8 -4.93,-15.05c-3.54,-6.22 -8.59,-10.75 -8.59,-10.75s-2.68,1.82 -5.56,0.72s-3.48,-4.14 -3.48,-4.14s-4.04,0.37 -5.43,-3s0.61,-6.12 0.61,-6.12s-4.9,-4.96 -0.23,-8.36c3.71,-2.69 7.18,1.85 7.18,1.85s2.86,-1.21 5.42,0.28s2.05,5 2.05,5s3.64,0.74 4.51,3.37C50.04,25.32 49.75,28.12 49.75,28.12z"
android:fillColor="#FDC11E"/>
<path
android:pathData="M38.28,24.96c-1.32,1.95 -0.65,4.44 1.71,5.14s3.53,-0.57 4.15,-2.06s-0.33,-3.4 -1.62,-4.07S39.4,23.3 38.28,24.96z"
android:fillColor="#FEE165"/>
<path
android:pathData="M35.13,21.59c-1.45,-1.02 -3.11,-0.98 -4.1,0.62c-0.99,1.6 -0.12,3.64 1.05,4.3c1.17,0.67 3.11,0.79 3.97,-0.56C37.11,24.28 36.54,22.58 35.13,21.59z"
android:fillColor="#FEE165"/>
<path
android:pathData="M31.19,13.43c-2.23,1 -1.96,4.08 -0.35,4.95s4.07,0.2 4.28,-2.12C35.29,14.26 33.68,12.32 31.19,13.43z"
android:fillColor="#FEE165"/>
<path
android:pathData="M38.32,16.05c-1.92,1 -2.01,3.65 -0.92,4.93c1.33,1.55 5.04,1.42 5.2,-1.65S40.37,14.99 38.32,16.05z"
android:fillColor="#FEE165"/>
</vector>

View file

@ -0,0 +1,63 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M88.49,37.39c0,0 8.02,-8.17 8.31,-15.63c0.28,-7.46 -2.46,-9.85 -6.12,-11.4S83,12.05 83,12.05s-0.14,-4.5 -4.93,-6.19s-10.7,2.25 -12.25,8.17s-1.88,16.8 -1.88,16.8s-0.94,-11.73 -4.74,-17.93s-7.46,-7.46 -12.53,-5.91s-4.79,7.74 -4.79,7.74s-4.79,-4.93 -10.42,-2.53s-3.87,11.19 -3.03,13.94c0.56,2.25 6.41,13.94 6.41,13.94s-8.92,-6.03 -16.12,-7.39c-6.34,-1.2 -10.77,2.18 -10.77,6.83s3.52,6.9 3.52,6.9s-5.66,1.52 -6.76,6.9c-0.77,3.8 0.75,6.68 3.45,8.73c4.65,3.52 19.36,4.5 19.36,4.5s-10.7,0.7 -16.19,4.08c-5.62,3.46 -6.34,8.73 -5.07,11.54s7.32,4.22 7.32,4.22s-5.07,6.34 -0.99,11.4s10.14,4.93 13.94,3.1c3.8,-1.83 12.81,-9.71 12.81,-9.71s-7.4,11.7 -7.88,18.02c-0.47,6.19 2.64,8.51 6.48,8.87c3.47,0.33 6.05,-2.67 6.05,-2.67s1.41,6.05 5.91,6.76s9.15,-1.27 11.97,-7.46c2.71,-5.96 3.94,-16.66 3.94,-16.66s2.67,16.94 8.59,21.3c5.91,4.36 10.18,2.53 12.53,0.14c2.25,-2.67 1.83,-8.59 1.83,-8.59s5.07,4.08 9.01,1.55c3.94,-2.53 3.1,-7.74 1.83,-12.39c-1.27,-4.65 -7.6,-12.39 -7.6,-12.39s9.43,9.43 17.03,9.15c7.6,-0.28 9.44,-3.48 9.85,-7.32c0.42,-3.94 -2.96,-7.18 -2.96,-7.18s6.62,-0.7 7.32,-7.46c0.7,-6.76 -6.34,-9.01 -9.29,-9.85s-11.4,-1.13 -11.4,-1.13s12.81,-3.52 16.33,-7.46c3.52,-3.94 3.73,-7.81 2.18,-10.63c-1.48,-2.69 -7.11,-3.73 -7.11,-3.73s2.53,-3.38 0.7,-8.31c-1.83,-4.93 -9.43,-5.07 -13.37,-3.8C97.36,31.19 88.49,37.39 88.49,37.39z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.92"
android:centerY="63.86"
android:gradientRadius="58.9"
android:type="radial">
<item android:offset="0.39" android:color="#FFFFD655"/>
<item android:offset="0.45" android:color="#FFFFD450"/>
<item android:offset="0.52" android:color="#FFFFD042"/>
<item android:offset="0.6" android:color="#FFFEC82B"/>
<item android:offset="0.67" android:color="#FFFEBE0A"/>
<item android:offset="0.69" android:color="#FFFEBB01"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M53.15,48.6c0,0 -3.1,-6.19 -5.35,-13.84c-0.84,-2.86 -3.45,-11.35 -2.82,-11.87c0.73,-0.61 6.38,9.38 7.84,12.95c1.26,3.09 5.54,10.98 5.54,10.98l10.7,-1.83c0,0 3.71,-8.31 4.83,-10.56c1.13,-2.25 5.44,-10.79 6.19,-10.42c0.89,0.44 -1.13,8.21 -2.82,13c-1.69,4.79 -3.85,10.79 -3.85,10.79l9.01,6.71c0,0 6.34,-2.35 10,-3.75c3.66,-1.41 10.28,-3.38 10.56,-2.53c0.28,0.84 -3.85,3.75 -9.2,6.29s-10.14,5.3 -10.14,5.3l0.75,8.4c0,0 7.7,3.89 11.22,5.73c3.52,1.83 10.32,5.54 10.18,6.52c-0.14,0.99 -9.85,-1.92 -12.39,-2.63c-2.53,-0.7 -12.11,-3.99 -12.11,-3.99l-5.35,6.9c0,0 3.43,7.93 4.55,10.46c1.13,2.53 5.16,13.19 4.46,13.61s-6.15,-7.98 -7.88,-11.12c-1.74,-3.14 -7.04,-11.83 -7.04,-11.83l-9.85,3.24c0,0 -3.24,7.18 -5.21,11.26s-6.48,11.31 -7.18,10.89c-0.7,-0.42 2.58,-11.45 3.71,-14.83s4.04,-10.84 4.04,-10.84L47.8,75.4c0,0 -8.17,3.38 -12.95,4.93c-4.79,1.55 -11.26,3.94 -11.26,2.82c0,-1.13 4.19,-3.49 10.98,-6.95c7.84,-3.99 11.4,-5.58 11.4,-5.58l-1.41,-9.57c0,0 -6.29,-2.16 -10.79,-3.85s-12.86,-6.15 -12.58,-7.41c0.28,-1.27 7.6,1.41 12.25,2.82s13.66,4.08 13.66,4.08L53.15,48.6z"
android:fillColor="#F2A05B"/>
<path
android:pathData="M47.8,52.73c0,0 -5.21,-5.07 -6.62,-6.48c-1.41,-1.41 -4.36,-4.36 -3.66,-5.35s6.48,3.8 7.88,5.07c1.41,1.27 6.48,4.93 6.48,4.93l10.7,-5.35c0,0 0.14,-4.79 0.28,-7.18c0.14,-2.39 0,-6.76 1.13,-6.76c1.13,0 1.55,6.05 1.69,8.17c0.14,2.11 0.56,6.19 0.56,6.19l10.84,3.52c0,0 3.52,-4.08 4.65,-5.35c1.13,-1.27 3.66,-5.07 4.79,-4.22c1.13,0.84 -3.24,6.76 -4.08,8.02c-0.84,1.27 -3.66,4.93 -3.66,4.93l4.65,9.57c0,0 5.21,-0.14 8.17,-0.28c2.96,-0.14 8.02,0 8.02,0.84c0,0.84 -4.32,2.02 -8.26,2.44s-8.07,0.52 -8.07,0.52l-1.64,9.57c0,0 1.92,2.53 4.69,5.02c2.47,2.22 4.46,4.88 3.89,5.73c-0.56,0.84 -4.55,-2.02 -6.38,-3.71c-1.83,-1.69 -5.21,-4.65 -5.21,-4.65l-10.84,6.19c0,0 0,5.07 0,6.48s-0.56,7.18 -1.97,6.76s-1.27,-5.77 -1.27,-7.46c0,-2.92 -0.01,-6.61 0.05,-6.15l-12.29,-3c0,0 -3.05,2.67 -4.46,4.22c-1.41,1.55 -5.26,5.35 -6.24,4.22s2.25,-4.5 3.66,-6.05c1.41,-1.55 4.79,-4.93 4.79,-4.93l-5.49,-9.15c0,0 -5.35,0.14 -7.04,0.14s-7.74,0.56 -7.74,-1.13c0,-1.69 5.35,-1.69 7.88,-1.83c2.53,-0.14 8.63,-0.52 8.63,-0.52L47.8,52.73z"
android:fillColor="#ED6C31"/>
<path
android:pathData="M44.99,54c-2.92,5.29 -5.02,23.37 9.06,30.27c14.08,6.9 27.26,-1.55 31.07,-12.67s-2.67,-22.52 -13.37,-26.89S49.49,45.83 44.99,54z"
android:fillColor="#ED6C31"/>
<path
android:pathData="M58.08,49.21c-6.98,2.16 -13.28,12.06 -8.12,22.99c4.45,9.43 15.2,11.45 23.46,6.01c8.37,-5.52 9.53,-15.3 4.6,-22.62C73.1,48.27 65.82,46.82 58.08,49.21z"
android:fillColor="#F2A05B"/>
<path
android:pathData="M54.83,52.6c-1.89,2.01 -2.36,4.73 -1.04,6.23s4.9,0.8 6.5,-1.41s1.6,-4.63 0.38,-5.83C59.1,50.04 56.34,51 54.83,52.6z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M62.91,50.99c-0.51,1.27 -0.94,4.41 1.6,5.26c2.4,0.8 3.43,-0.66 4.22,-2.11c0.84,-1.53 0.66,-4.08 -1.13,-4.83C65.28,48.32 63.48,49.59 62.91,50.99z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M69.34,54.05c-0.67,0.99 -1.31,4.08 1.78,4.69c3.25,0.64 4.13,-3.47 2.67,-4.97C72.61,52.54 70.42,52.45 69.34,54.05z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M74.74,57.99c-0.62,0.55 -1.31,2.39 0.19,3.47c1.5,1.08 2.77,0.23 3.24,-0.7c0.27,-0.55 0.47,-1.69 -0.38,-2.53C76.95,57.38 75.58,57.24 74.74,57.99z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M60.18,58.61c-0.86,1.97 -0.43,4.44 1.67,5.08c2.43,0.74 4.4,-0.69 4.45,-4c0.02,-1.25 -0.76,-2.57 -2.63,-2.91C61.79,56.44 60.62,57.59 60.18,58.61z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M57.94,62.83c-1.61,-0.14 -2.86,1.59 -2.86,3.14c0,1.54 1.2,3.17 2.65,3.14c2.08,-0.05 3.12,-1.29 3.07,-3.34C60.75,63.92 59.71,62.98 57.94,62.83z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M52.26,59.16c-1.69,-0.05 -3.38,1.36 -3.33,4.18c0.05,2.82 1.27,4.18 2.82,4.08c1.55,-0.09 3.28,-1.31 3.47,-4.32C55.41,60.1 53.81,59.21 52.26,59.16z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M51.26,68.72c-1.75,1.42 -0.59,3.9 0.39,5.24c0.98,1.33 3,2.62 4.58,0.74c1.57,-1.88 0.39,-4.2 -0.44,-5.24C54.95,68.42 53.32,67.04 51.26,68.72z"
android:fillColor="#FCCD87"/>
<path
android:pathData="M56.44,76.66c0.35,1.71 1.5,2.39 3.1,2.35s2.49,-1.74 2.44,-2.91c-0.05,-1.17 -1.03,-2.55 -2.72,-2.67C57.28,73.29 56.06,74.83 56.44,76.66z"
android:fillColor="#FCCD87"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M84.5,37.89c0,0 -10.95,2.89 -26.19,25.75c-11.77,17.65 -12.95,31.48 -22.8,40.75c-5.01,4.71 -13.09,7.94 -13.09,7.94s-6.47,-0.15 -6.91,0.15c-0.44,0.29 -1.73,3.53 0.69,7.51c2,3.29 5.05,4.12 6.08,4.26c1.03,0.15 2.94,-4.27 3.68,-4.86c0.74,-0.59 9.43,-3.93 15.6,-10.74c12.65,-13.98 12.45,-26.11 21.63,-42.08c10.15,-17.65 22.66,-26.19 22.66,-26.19L84.5,37.89z"
android:fillColor="#5B9821"/>
<path
android:pathData="M122.69,3.39c-0.39,-0.43 -25.34,-0.05 -38.15,11.52c-15.22,13.74 -11.1,32.76 -11.1,32.76s17.77,4.21 31.18,-7.93C120.26,25.59 123.08,3.82 122.69,3.39z"
android:fillColor="#5B9821"/>
<path
android:pathData="M72.4,70.49c0.82,0.64 2,1.39 3.69,2.23c9.56,4.78 21.5,2.16 27.35,-0.16c8.13,-3.23 20.21,-12.95 20.21,-13.69c0,-0.74 -5.5,-3.38 -13.32,-5.71c-7.82,-2.33 -18.27,-2.44 -26.21,0.95c-7.28,3.11 -10.67,8.58 -12.54,11.86c0,0 -2.9,0.46 -5,0.82c-3.7,0.63 -6.55,1.9 -6.55,1.9l-2.85,5.92c0,0 5.81,-2.64 8.77,-3.28S72.4,70.49 72.4,70.49z"
android:fillColor="#5B9821"/>
<path
android:pathData="M54.31,8.73c-0.93,0.19 -5.33,7.06 -8.03,13.63c-2.13,5.17 -4.26,18.38 -0.45,26.52s8.22,9.68 8.22,9.68s0.54,2.37 0.48,5.55c-0.03,1.8 -0.21,6.76 -0.21,6.76l4.35,-1.89c0,0 0.29,-4.16 0.27,-6.18c-0.03,-2.13 -0.29,-4.82 -0.29,-4.82s7.19,-6.73 7.72,-17.18c0.42,-8.24 -0.46,-15.89 -5,-24.14C57.81,10.23 54.84,8.63 54.31,8.73z"
android:fillColor="#5B9821"/>
<path
android:pathData="M5.8,24.95c-1.08,1.23 1.37,4.33 1.59,11.31c0.17,5.71 1.16,25.05 6.87,34.98s13.63,12.37 16.17,13.21c2.54,0.85 8.03,0.95 8.03,0.95s2.33,2.01 3.17,4.86c0.85,2.85 1.69,7.08 1.69,7.08l4.02,-5.92c0,0 -1.16,-4.65 -2.33,-6.76c-1.16,-2.11 -1.59,-2.85 -1.59,-2.85s2.57,-15.99 -1.8,-29.17C36.45,37 27.57,31.08 19.33,27.59S6.54,24.11 5.8,24.95z"
android:fillColor="#5B9821"/>
<path
android:pathData="M50.3,93.01c0,0 1.89,-1.15 5.27,-1.23c3.11,-0.07 5.04,0.51 5.04,0.51s5.81,-6.67 12.31,-8.58c6.13,-1.8 14.22,-3.41 28.47,2.5c14.27,5.92 22.47,11.66 22.37,13.46c-0.11,1.8 -14.13,8.22 -19.94,10.22c-5.81,2.01 -19.14,6.23 -31.64,1.4c-9.93,-3.84 -12.15,-13 -12.15,-13s-2.3,-1.27 -4.94,-1.12c-4.83,0.26 -8.9,3.87 -8.9,3.87L50.3,93.01z"
android:fillColor="#5B9821"/>
<path
android:pathData="M77.97,38.72c1.57,0.97 5.5,-8.88 9.3,-13.42s10.89,-9.19 10.15,-11.2s-9.09,0.85 -14.8,8.24C76.92,29.74 76.6,37.88 77.97,38.72z"
android:fillColor="#8DC02C"/>
<path
android:pathData="M79.04,63.53c1.14,1.57 6.37,-2.17 11.63,-3.38c5.41,-1.25 11.2,0.51 10.99,-2.43c-0.2,-2.78 -7.93,-3.06 -13,-1.69C83.59,57.4 77.67,61.62 79.04,63.53z"
android:fillColor="#8DC02C"/>
<path
android:pathData="M50.51,48.58c1.93,-0.08 1.27,-6.02 1.37,-11.63s1.06,-14.06 -1.06,-14.16c-2.11,-0.11 -3.89,5.47 -4.02,12.15C46.7,40.44 47.97,48.68 50.51,48.58z"
android:fillColor="#8DC02C"/>
<path
android:pathData="M12.14,38.06c-1.27,0.42 -0.37,3.38 -0.32,4.76c0.32,9.09 3.38,23.15 8.35,29.28c3.86,4.76 8.24,8.24 11.2,6.13c2.96,-2.11 -2.67,-6.67 -5.5,-11.2c-4.54,-7.29 -7.4,-16.59 -8.88,-21.14S14.53,37.26 12.14,38.06z"
android:fillColor="#8DC02C"/>
<path
android:pathData="M67.41,92.04c0.19,2.77 6.21,1.32 12.59,0.69s11.63,-1.51 11.38,-3.85c-0.23,-2.18 -7.36,-2.41 -12.99,-2.01C72.76,87.27 67.24,89.57 67.41,92.04z"
android:fillColor="#8DC02D"/>
</vector>

View file

@ -0,0 +1,72 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M35.88,45.15c-5.39,6.09 -1.57,14.3 -1.57,14.3l-14.74,9.61c0,0 -2.2,1 -4.48,4.06c-1.67,2.24 14.44,23.39 14.44,23.39s2.62,-0.48 4.76,-1.41c2.2,-0.96 4.9,-3.46 4.9,-3.46l17.44,17.75c0,0 1.3,2 3.98,2.62c3.68,0.86 5.05,-0.55 5.05,-0.55l22.74,5.61c0,0 1.14,1.28 2.28,2.11c1.14,0.83 3,1.6 3,1.6l18.49,-19.91c0,0 -1.21,-1.85 -2.27,-2.97c-1.62,-1.72 -3.86,-2.84 -3.86,-2.84l-0.68,-21.95c0,0 -1.35,-0.86 -5.03,-1.51c-3.95,-0.7 -6.75,-2.28 -6.75,-2.28l-5.5,-19.1l1.76,-2.28c0,0 3.43,-6.33 -1.35,-7.89c-4.78,-1.56 -16.4,-2.49 -16.4,-2.49l-2.91,-9.45c0,0 -1.49,1.52 -2.53,3.28c-1.04,1.76 -1.83,3.99 -1.83,3.99l-17.34,5.5l-2.24,0.11C45.26,40.97 40.52,39.9 35.88,45.15z"
android:fillColor="#4C186E"/>
<path
android:pathData="M25.24,55.08c0,0 7.86,-1.29 7.75,-2.23c-0.1,-0.93 -0.34,-11.45 -0.19,-11.45c0.1,0 4.35,1.2 8.12,2.24c4.77,1.32 7.16,2.19 7.16,2.19l1.97,-6.96c0,0 -3.63,-1.25 -8.72,-2.91c-4.09,-1.33 -8.64,-2.61 -9.3,-3.39c-1.14,-1.35 -4.01,-5.39 -4.35,-9.02c-0.62,-6.75 2.74,-9.81 7.31,-10.01c4.46,-0.2 6.64,2.39 8.31,2.49c1.66,0.1 3.31,-2.73 2.28,-5.81c-1.66,-4.98 -9.86,-7.49 -16.82,-5.19c-9.76,3.22 -10.69,15.36 -9.24,20.66c1.99,7.26 5.5,11.52 5.5,11.52L25.24,55.08z"
android:fillColor="#727F37"/>
<path
android:pathData="M52.65,33.49C46,36.71 40.69,49 49.95,57.37c7.58,6.85 18.06,3.11 21.28,-2.39c2.79,-4.77 3.74,-12.35 -0.42,-17.34S59.62,30.11 52.65,33.49z"
android:fillColor="#A363B1"/>
<path
android:pathData="M69.19,28.11c0,0 2.23,-2.43 6.04,-3.43c3.17,-0.83 7.69,-1.06 12.66,2.3c5.21,3.52 6.26,9.41 5.59,14.28c-0.7,5.04 -3.52,9.39 -6.37,10.18c-5.61,1.56 2.8,-1.45 1.35,-4.15c-1.45,-2.7 -9.52,1.53 -16.2,-6.54C67.28,34.74 69.19,28.11 69.19,28.11z"
android:fillColor="#A363B1"/>
<path
android:pathData="M74.14,60.48c-2.64,7.91 1.14,16.82 10.49,18.89c9.34,2.08 14.95,-4.05 17.23,-9.45c2.28,-5.4 0.21,-16.09 -9.03,-18.89S76.42,53.63 74.14,60.48z"
android:fillColor="#A363B1"/>
<path
android:pathData="M46.63,73.87c-2.38,7.52 1.87,14.43 7.06,17.03c6.58,3.29 16.4,0.42 19.1,-7.47c2.49,-7.27 0.62,-15.57 -7.27,-18.48C57.63,62.04 49.22,65.67 46.63,73.87z"
android:fillColor="#A363B1"/>
<path
android:pathData="M19.22,60.9c-2.24,6.73 0,15.78 9.14,18.48c9.14,2.7 15.07,-3.01 17.03,-9.65c1.56,-5.29 1.25,-13.91 -8.41,-17.54C27.56,48.64 21.19,54.98 19.22,60.9z"
android:fillColor="#A363B1"/>
<path
android:pathData="M83.37,82.45c-3.05,0.59 -4.7,3.37 -6.07,6.63c-2.37,5.6 -4.84,7.12 -5.76,9.15c-1.18,2.6 2.23,4.82 3.63,5.6c2.39,1.33 11.55,2.85 15.54,-5.05C95.81,88.66 87.86,81.58 83.37,82.45z"
android:fillColor="#A363B1"/>
<path
android:pathData="M100.53,96.66c0.07,1.09 12.02,0.54 11.87,-11.58c-0.12,-9.29 -7.08,-12 -7.08,-12s-4.56,3.37 -4.4,9.14c0.16,5.78 1.28,4.91 0.93,9.62C101.74,93.31 100.5,96.26 100.53,96.66z"
android:fillColor="#A363B1"/>
<path
android:pathData="M112.24,100.87c0,0 -8.02,0.34 -12.67,6.67c-4.33,5.9 -5.86,13.25 -5.86,13.25s11.05,5.8 17.83,-1.66C119.12,110.77 112.24,100.87 112.24,100.87z"
android:fillColor="#A363B1"/>
<path
android:pathData="M65.62,107.45c-1.45,0.82 -2.34,6.9 0.55,11.5c1.53,2.43 4.31,4.62 8.41,5.24c5.61,0.85 9.48,-1.38 12.07,-4.12c2.98,-3.15 3.99,-7.19 3.11,-8.75c-1.66,-2.92 -5.98,1.04 -13.32,-0.07C69.1,110.15 68.14,106.03 65.62,107.45z"
android:fillColor="#A363B1"/>
<path
android:pathData="M40.54,88.05c-1.3,0.27 -5.88,5.28 -5.44,11.63c0.2,2.89 0.95,5.89 4,9.02c4.2,4.3 10.2,4.78 14.22,3.64c3.68,-1.05 6.38,-3.45 6.46,-5.52c0.09,-2.53 -0.28,-5.1 -4.73,-6.94c-2.02,-0.83 -5.36,-1.74 -8.6,-4.42C41.17,91.08 41.86,87.77 40.54,88.05z"
android:fillColor="#A363B1"/>
<path
android:pathData="M15.21,73.06c0,0 -2.42,2.81 -3.22,7.02c-0.55,2.92 -0.74,6.26 1.62,10.07c5.47,8.84 15.98,6.35 15.98,6.35s4.72,-3.72 2.76,-8.49c-0.62,-1.52 -1.96,-2.21 -4.84,-3.36c-4.95,-1.98 -7.89,-5.05 -9.39,-7.1C16.63,75.51 15.21,73.06 15.21,73.06z"
android:fillColor="#A363B1"/>
<path
android:pathData="M86.78,54.66c-1.49,-1.69 -6.47,-0.24 -8.91,5.44c-1.86,4.31 -1.58,11 2.84,11.75c5.01,0.85 2.13,-6.22 4.18,-10.25C86.22,58.99 88.51,56.64 86.78,54.66z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M58.99,67.85c-2.13,-2.37 -6.47,0.47 -8.36,5.36c-2.67,6.89 0.8,10.33 2.45,10.02c2.92,-0.55 2.68,-4.1 4.1,-7.65C58.3,72.8 61.06,70.15 58.99,67.85z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M75.02,26.79c-2.2,-0.41 -2.85,2.14 -2.85,3.83c0,1.69 0.35,3.47 2.05,3.56c1.6,0.09 2.32,-1.51 2.58,-3.83C77.03,28.39 76.45,27.06 75.02,26.79z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M56.99,35.8c-2.73,-1.5 -6.96,1.39 -7.93,7.92c-0.83,5.63 1.35,9.31 4.44,8.59c3.48,-0.81 2.54,-5.96 3.37,-8.86C57.74,40.42 59.49,37.18 56.99,35.8z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M28.93,56.18c-3.51,-0.8 -5.84,2.68 -6.39,6.23c-0.44,2.8 0.12,6.75 2.92,7.34c3,0.63 5.44,-3 5.84,-5.92C31.69,60.91 31.69,56.81 28.93,56.18z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M15.9,80.81c-1.73,0.21 -2.37,3.08 -1.5,5.44c0.87,2.37 1.89,3.47 3.71,3c2.03,-0.53 0.63,-3.39 0.08,-5.05C17.63,82.55 17.87,80.58 15.9,80.81z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M40.37,94.04c-2.29,0.24 -3.25,3.24 -2.56,6.61c0.56,2.71 2.57,5.66 5.09,4.7c2.59,-0.98 0.48,-4.07 -0.17,-6.54C42.07,96.35 42.49,93.82 40.37,94.04z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M84.21,90.19c-1.87,-1.42 -4.17,0.04 -5.77,2.4s-1.66,4.34 -0.09,5.6c1.73,1.39 4.34,0.28 5.75,-1.96C85.3,94.32 86.18,91.69 84.21,90.19z"
android:fillColor="#DABCF3"/>
<path
android:pathData="M68.48,111.31c-1.95,0.15 -2.53,2.04 -1.98,4.29c0.45,1.84 1.89,3.03 3.33,2.44c1.23,-0.51 2.01,-2.11 1.28,-4.53C70.57,111.77 69.47,111.23 68.48,111.31z"
android:fillColor="#DABCF3"/>
</vector>

View file

@ -0,0 +1,264 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.38,20.45c-23.91,0.53 -42.58,11.32 -50.77,37.62s8.19,65.31 50.43,65.95s63.8,-41.81 50,-73.07C102.65,27.39 79.75,20.09 63.38,20.45z"
android:fillColor="#EFE4AF"/>
<path
android:pathData="M82.04,112.09c-1.03,0.57 -5.63,10.61 -5.63,10.61s1.52,-0.34 2.37,-0.56c0.78,-0.2 2.2,-0.68 2.2,-0.68s3.77,-6.66 3.59,-7.89C84.4,112.36 82.82,111.66 82.04,112.09z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M89.03,109.47c-1.38,0.55 -1.66,5.25 0.35,5.68c2.01,0.44 3.24,-1.75 3.41,-2.97C92.97,110.96 90.78,108.77 89.03,109.47z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M79.59,108.95c0.78,0.12 4.2,-8.57 4.11,-9.36s-3.93,-2.89 -5.33,-2.27s-2.89,4.81 -2.27,7.52C76.7,107.55 78.45,108.77 79.59,108.95z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M81.69,87.7c-0.96,0.16 -2.61,4.89 -2.36,5.6c0.87,2.45 5.07,2.8 5.68,2.45c0.61,-0.35 1.49,-5.25 1.14,-5.95C85.8,89.1 82.74,87.52 81.69,87.7z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M68.92,91.72c-0.05,0.27 2.62,0.09 2.62,0.09s3.06,1.66 3.15,3.41c0.09,1.75 -2.36,5.25 -2.71,4.63C71.63,99.24 69.01,91.2 68.92,91.72z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M74.87,109.56c-0.44,0.87 -0.09,4.11 1.14,4.46c1.22,0.35 2.27,-0.87 2.1,-2.8C77.93,109.3 75.39,108.51 74.87,109.56z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M88.16,94.87c-1.15,0.18 -2.19,3.85 -1.4,4.9c0.79,1.05 3.67,0.7 4.28,-0.44S89.29,94.69 88.16,94.87z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M85.45,103.61c-1.36,0.6 -1.49,3.41 -1.4,4.02s1.4,1.57 2.19,1.49c0.79,-0.09 2.1,-2.27 2.1,-3.76C88.33,103.87 86.23,103.26 85.45,103.61z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M91.74,103.79c0.04,0.9 1.05,2.54 1.75,2.54c0.7,0 2.89,-4.37 2.89,-4.37l-1.66,-5.77C94.72,96.18 91.57,99.76 91.74,103.79z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M88.95,91.89c-0.03,0.55 0.96,1.49 1.66,0.26c0.7,-1.22 3.06,-7.52 3.32,-8.48c0.26,-0.96 -0.7,-2.62 -1.92,-2.62C90.78,81.05 89.03,90.41 88.95,91.89z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M70.14,85.51c0,0 2.36,3.85 4.9,3.76c2.54,-0.09 3.76,-2.8 3.59,-3.24s-4.55,-4.37 -5.33,-4.11C72.51,82.19 70.14,85.51 70.14,85.51z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M69.62,57.44c0,0 4.63,-0.52 5.25,3.06s-4.72,12.42 -4.72,12.42l-3.06,-10.14L69.62,57.44z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M66.82,44.76c0,0 3.67,-0.87 3.76,-0.26c0.09,0.61 -3.93,9.53 -4.02,8.39C66.47,51.76 66.82,44.76 66.82,44.76z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M70.58,52.2c0.64,1.92 4.2,3.24 5.16,3.15c0.96,-0.09 3.06,-3.15 3.24,-4.02c0.17,-0.87 -0.61,-6.03 -2.27,-6.21S70.06,50.62 70.58,52.2z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M78.36,65.05c0.68,1.37 5.25,1.75 5.42,1.14c0.17,-0.61 1.31,-3.93 0.61,-5.42c-0.7,-1.49 -5.42,-1.4 -5.86,-0.61C78.1,60.94 77.67,63.65 78.36,65.05z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M73.82,72.39c-0.42,0.66 -1.4,3.93 -0.52,3.59c0.87,-0.35 9.53,-4.11 9.27,-5.6s-2.62,-1.4 -3.59,-1.4C78.01,68.98 74.43,71.43 73.82,72.39z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M75.48,79.04c0.31,0.86 2.62,2.01 3.59,1.92c0.96,-0.09 4.63,-4.72 4.98,-5.51c0.35,-0.79 0,-2.19 -1.75,-1.92S75.13,78.08 75.48,79.04z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M86.15,74.41c-0.07,0.8 1.92,3.93 4.46,3.41s2.27,-9.62 1.49,-10.06c-0.79,-0.44 -2.97,3.15 -3.59,4.02S86.23,73.44 86.15,74.41z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M85.1,78.6c-0.83,0 -3.5,4.72 -3.15,5.42c0.35,0.7 3.67,2.89 4.98,2.1c1.31,-0.79 0.96,-5.77 0.79,-6.38C87.55,79.13 85.62,78.6 85.1,78.6z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M96.29,52.37c0,0 1.84,-0.96 2.45,-0.35s2.27,2.36 1.66,2.97s-3.76,4.11 -3.76,3.85S96.29,52.37 96.29,52.37z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M82.3,50.1c-0.74,0.25 -2.62,6.03 -2.36,6.82c0.26,0.79 4.28,0.09 4.81,-0.35s0.35,-4.55 0,-5.16C84.4,50.8 82.82,49.92 82.3,50.1z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M86.23,68.55c-0.03,0.7 1.05,1.05 1.57,0.61c0.52,-0.44 2.71,-4.28 2.62,-5.25c-0.09,-0.96 -1.84,-1.75 -2.27,-1.14C87.72,63.39 86.41,64.87 86.23,68.55z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M70.41,40.92c0.46,0.08 2.89,-2.1 2.62,-3.5s-2.36,-3.24 -2.89,-2.62C69.62,35.41 69.88,40.83 70.41,40.92z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M80.81,32.26c-0.82,0.61 0.87,2.71 1.92,2.8c1.05,0.09 2.8,-0.44 2.89,-1.22c0.09,-0.79 0.44,-2.8 -0.96,-3.24S81.51,31.73 80.81,32.26z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M88.07,29.11c0,0 0.26,5.42 1.49,5.6c1.22,0.17 2.8,-4.55 2.8,-4.55L88.07,29.11z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M91.31,39.08c0.07,0.7 3.85,0.7 4.46,0.17c0.61,-0.52 -0.26,-5.42 -0.79,-5.6S91.22,38.2 91.31,39.08z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M92.09,43.8c-0.44,0.87 0.35,2.71 1.66,2.8c1.31,0.09 2.19,-2.27 1.84,-2.89C95.24,43.1 92.41,43.17 92.09,43.8z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M99.35,42.84c-0.91,0.36 -2.71,5.07 -2.36,5.68s2.36,1.57 3.06,1.49c0.7,-0.09 2.8,-4.72 2.45,-5.68C102.15,43.36 100.23,42.49 99.35,42.84z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M104.09,47.86c-0.38,-0.13 -2.49,3.76 -2.43,4.05c0.06,0.29 0.52,1.45 1.33,1.1c0.81,-0.35 2.31,-2.49 2.31,-3.01S104.61,48.04 104.09,47.86z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M102.12,57.17c-0.54,1.08 0.75,1.85 0.4,3.18c-0.35,1.33 -1.1,3.58 -0.64,4.11c0.46,0.52 4.8,-0.52 5.15,-0.93c0.35,-0.4 0.75,-4.68 0.35,-5.61S103.05,55.32 102.12,57.17z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M105.65,54.11c0.32,0.68 5.09,0.46 5.03,0.12c-0.06,-0.35 -1.1,-3.87 -1.1,-3.87S105.25,53.24 105.65,54.11z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M110.28,60.64c-0.52,0.47 -1.73,4.45 -1.5,6.01s1.91,5.26 2.66,5.32c0.75,0.06 0.23,-7.98 0.12,-9.14C111.43,61.68 110.91,60.06 110.28,60.64z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M103.74,68.16c-0.05,0.83 1.62,8.04 3.01,8.33c1.39,0.29 2.78,-1.04 2.83,-1.97c0.06,-0.93 -2.43,-6.82 -2.89,-7.81C106.23,65.73 103.8,67.12 103.74,68.16z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M106.4,80.07c-0.62,0.82 -1.85,3.35 -1.16,4.22c0.69,0.87 2.02,1.1 3.93,0.69c1.91,-0.4 2.08,-1.39 2.2,-1.91c0.12,-0.52 0.58,-3.12 -0.06,-3.87C110.68,78.45 106.75,79.61 106.4,80.07z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M104.84,91.57c1.74,0 1.79,-1.1 3.58,-1.79s2.89,-1.16 3.06,-1.56s0.75,-2.6 0.35,-2.78s-1.33,0.93 -2.78,1.21c-1.45,0.29 -2.43,0.12 -3.24,0.52s-2.14,1.62 -2.08,2.66C103.8,90.88 104.38,91.57 104.84,91.57z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M105.13,95.74c-1,1.45 0.64,3.18 1.39,3.35c0.75,0.17 2.8,-0.05 2.8,-0.05s1.29,-2.06 1.84,-3.21c0.42,-0.89 1.26,-2.66 1.26,-2.66s0.18,-1.48 -0.46,-2c-0.64,-0.52 -2.78,0.52 -3.82,1.45S105.65,94.99 105.13,95.74z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M48.4,22.34c0,0 2.05,-0.48 2.74,-0.62c1.24,-0.27 2.38,-0.4 2.38,-0.4s0,1.21 -0.81,1.45C51.91,22.99 48.4,22.34 48.4,22.34z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M65.34,20.43c0,0 6.63,-0.02 11.28,1.3c3.98,1.13 9.14,2.83 9.14,2.83l-6.13,1.04c0,0 2.14,-0.81 1.62,-1.5c-0.52,-0.69 -3.12,-1.68 -3.64,-1.04s0.29,2.2 0.29,2.2l-2.05,0.75c0,0 0.53,-1.86 -0.34,-2.26c-0.87,-0.4 -1.52,-0.28 -2.3,-0.98c-0.62,-0.56 -3.19,-2.8 -6.11,-1.14C65.05,22.8 65.34,20.43 65.34,20.43z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M35.69,28.53l14.22,-2.37c0,0 0.81,-0.87 -0.4,-1.27c-1.21,-0.4 -4.22,-0.23 -4.22,-0.23s-0.39,-0.42 -0.93,-0.59c-0.55,-0.18 -1.12,-0.17 -1.12,-0.17s-4.47,1.66 -6.38,2.76c-1.91,1.1 -2.96,2.22 -2.96,2.22L35.69,28.53z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M36.27,32.65c0,0 0.66,2.44 2.2,2.08c1.5,-0.35 1.91,-1.27 2.43,-2.66c0.17,-0.46 0.46,-1.68 0.46,-1.68L36.27,32.65z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M42.97,29.71c-0.06,0.17 0.46,0.81 0.06,1.97c-0.4,1.16 -1.62,3.06 -0.64,3.58s3.12,-1.91 3.7,-2.37c0.58,-0.46 -0.12,-3.41 -0.12,-3.41L42.97,29.71z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M33.14,35.72c0.07,0.75 2.83,3.53 3.53,3.64c0.69,0.12 1.79,-0.87 1.33,-1.62c-0.46,-0.75 -2.72,-2.83 -3.3,-3.18C34.13,34.22 33.03,34.45 33.14,35.72z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M32.05,39.48c-0.35,-0.32 -1.45,0.4 -1.39,1.27s1.39,1.85 1.5,3.06s-0.59,3.3 0.12,4.11c1.21,1.39 3.64,-1.5 3.41,-3.35S32.68,40.06 32.05,39.48z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M24.99,42.83c0,0.29 1.45,4.22 2.31,4.51c0.87,0.29 1.62,-2.08 1.56,-3.01c-0.06,-0.93 -2.6,-6.36 -2.6,-6.36L24.99,42.83z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M28.4,51.91c-0.41,0.9 -0.35,3.87 0.12,4.16c0.46,0.29 2.89,-0.98 3.53,-1.45c0.64,-0.46 2.31,-1.27 2.26,-2.02c-0.06,-0.75 0.23,-3.64 -0.4,-3.76s-2.2,1.33 -3.24,1.73C29.62,50.98 28.75,51.16 28.4,51.91z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M17.24,53.01c0.12,0.17 1.5,1.39 1.5,1.39s2.26,-2.08 3.06,-2.6c0.81,-0.52 1.45,-0.93 1.45,-2.2s0.17,-2.54 -0.29,-2.72c-0.46,-0.17 -3.7,-0.35 -3.7,0.12S17.24,53.01 17.24,53.01z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M20.83,55.73c-0.33,1.89 0.98,4.68 1.73,4.8c0.75,0.12 1.39,-1.56 1.97,-1.85c0.58,-0.29 1.33,-0.29 1.62,-0.69c0.29,-0.4 -0.12,-2.89 -0.23,-3.58c-0.12,-0.69 -0.06,-2.14 -1.1,-1.97C23.78,52.6 21.18,53.76 20.83,55.73z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M26.38,62.2c-0.72,0 -2.26,1.21 -2.6,1.85c-0.35,0.64 -0.75,1.79 -1.1,2.2c-0.35,0.4 -1.39,1.16 -0.93,2.26c0.46,1.1 2.49,2.43 3.82,2.31c1.33,-0.12 2.02,-2.83 2.02,-4.57S27.13,62.2 26.38,62.2z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M16.38,72.32c0,0.75 2.2,2.49 3.12,3.41s2.6,2.54 3.24,2.54c0.64,0 2.83,-2.26 2.6,-3.06c-0.23,-0.81 -2.02,-2.54 -2.66,-3.35c-0.64,-0.81 -2.02,-2.14 -3.12,-2.08C18.46,69.83 16.38,71.63 16.38,72.32z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M13.37,69.54c0.4,-0.17 3.01,-1.56 4.45,-2.66s2.26,-1.85 2.26,-2.43c0,-0.58 -0.29,-1.85 -0.69,-2.83c-0.4,-0.98 -2.08,-3.24 -2.08,-3.24s-4.11,4.22 -4.11,5.38C13.2,64.92 13.37,69.54 13.37,69.54z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M31.76,70.99c-0.87,0.46 -3.41,1.91 -3.3,4.22c0.12,2.31 1.5,3.53 1.5,3.53l2.95,-4.57L31.76,70.99z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M20.25,82.61c-1.56,-0.17 -2.6,-0.58 -3.06,0.58c-0.46,1.16 0.93,2.72 1.68,3.58s3.64,3.93 5.15,3.93s3.41,-1.91 3.41,-2.72c0,-1.06 -3.78,-5.04 -4.05,-5.15C22.91,82.67 21.81,82.79 20.25,82.61z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M19.73,91.98c-0.75,0.21 0.29,3.18 1.27,4.63c0.98,1.45 2.49,2.37 3.01,2.49c0.52,0.12 2.95,-1.21 2.89,-1.56c-0.06,-0.35 -1.79,-1.56 -2.83,-2.66s-1.45,-1.97 -2.2,-2.37C21.12,92.1 20.13,91.86 19.73,91.98z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M26.55,93.08c-0.1,0.52 0.98,1.52 2.02,2.14c1.56,0.93 5.38,1.27 5.38,1.27s-3.06,-8.04 -3.3,-7.81s-2.49,2.2 -2.83,2.6C27.48,91.69 26.73,92.21 26.55,93.08z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M23.72,101.69c0.26,0.58 1.1,2.49 3.01,2.49c1.5,0 2.02,-3.35 1.68,-3.76C28.06,100.02 22.91,99.9 23.72,101.69z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M22.28,105.38c0,0 0.98,-0.58 2.95,0.4c4.86,2.43 4.51,6.98 4.51,6.98s-3.29,-2.76 -4.51,-4.09C24.01,107.34 22.28,105.38 22.28,105.38z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M45,113.43c-0.61,0.79 1.45,3.41 1.45,3.41s-0.17,3.12 0.35,3.76c0.52,0.64 2.66,1.21 3.93,1.33c1.89,0.18 2.43,-0.98 2.37,-1.33c-0.06,-0.35 -0.29,-1.97 -1.85,-4.68c-1.17,-2.04 -2.2,-3.18 -2.78,-3.41S45.4,112.91 45,113.43z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M49.05,108.98c-0.23,1.02 2.66,3.18 3.53,3.93c0.87,0.75 1.62,1.68 2.37,1.5c0.75,-0.17 1.5,-2.02 2.02,-2.54c0.52,-0.52 1.21,-1.5 1.21,-2.14s-0.93,-3.99 -1.39,-4.39s-4.91,-0.93 -5.44,-0.64c-0.52,0.29 -1.16,1.21 -1.27,1.73C49.97,106.96 49.16,108.46 49.05,108.98z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M58.24,114.59c0.45,0.07 2.43,2.66 2.49,3.3c0.06,0.64 -1.19,4.15 -1.73,4.34c-0.54,0.18 -3.01,0.17 -3.35,-0.35s-0.52,-4.68 0.12,-5.32S57.89,114.53 58.24,114.59z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M46.79,98.17c-0.12,0.75 1.33,1.97 2.02,2.66c0.69,0.69 1.21,1.79 2.72,1.39c1.5,-0.4 2.72,-1.33 3.35,-3.06s1.39,-5.15 1.27,-5.49c-0.12,-0.35 -3.3,-2.72 -3.93,-2.31S46.91,97.41 46.79,98.17z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M58.93,96.08c-0.81,0.12 -2.49,4.86 -2.37,5.32c0.12,0.46 1.33,1.85 2.49,1.68c1.16,-0.17 2.83,-2.83 2.83,-3.35C61.88,99.21 59.71,95.97 58.93,96.08z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M44.59,101.81c0.31,0.19 1.45,1.68 1.1,2.83c-0.35,1.16 -1.68,6.19 -2.31,6.07c-0.64,-0.12 -1.91,-4.97 -1.91,-5.38S44.3,101.64 44.59,101.81z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M40.2,96.49c-0.36,0.25 -1.39,2.26 -1.45,2.95c-0.06,0.69 0,3.01 1.1,3.18c1.72,0.27 3.58,-3.41 3.58,-3.82c0,-0.4 -1.27,-1.73 -1.68,-1.97C41.35,96.61 40.78,96.08 40.2,96.49z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M39.39,90.88c0.06,0.98 2.89,3.58 4.91,3.7c2.02,0.12 3.7,-2.83 3.58,-3.47s-5.44,-5.2 -5.96,-5.09c-0.52,0.12 -1.16,2.2 -1.16,2.2S39.33,89.96 39.39,90.88z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M47.95,76.14c-0.5,0.18 -1.39,3.18 -1.68,4.05s-0.64,3.06 -0.35,3.47c0.29,0.4 2.2,1.45 4.11,1.27c1.91,-0.17 2.83,-1.97 3.12,-2.49c0.29,-0.52 1.5,-4.74 1.21,-5.61C54.08,75.96 49.05,75.73 47.95,76.14z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M42.8,74.17c-0.87,0 -2.72,2.95 -2.72,3.87s1.68,2.72 2.6,2.72c0.93,0 1.91,-1.73 2.14,-2.6c0.23,-0.87 -0.06,-2.37 -0.06,-2.6S44.01,74.17 42.8,74.17z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M36.84,82.03c-0.37,0.69 1.21,3.47 2.02,3.82c0.81,0.35 2.02,-0.69 2.14,-2.49c0.12,-1.79 -0.46,-2.89 -1.73,-3.12C38.86,80.17 37.31,81.17 36.84,82.03z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M54.48,87.3c-0.05,0.64 3.35,2.08 3.93,2.08c0.35,0 2.2,-3.53 2.26,-4.8c0.12,-2.49 -0.35,-4.57 -2.43,-5.2c-1.38,-0.42 -1.33,1.79 -1.68,2.6S54.71,84.35 54.48,87.3z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M57.89,72.61c-0.18,1.46 1.1,3.7 1.79,4.16c0.69,0.46 4.63,2.95 4.63,2.95l-0.12,-7.92C64.19,71.8 58.12,70.76 57.89,72.61z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M62.17,61.97c0,0 -3.76,-0.93 -4.97,-0.52c-1.21,0.4 -2.31,1.79 -2.43,2.08c-0.12,0.29 1.39,3.35 2.02,3.47c0.64,0.12 5.96,1.45 5.96,0.4S62.17,61.97 62.17,61.97z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M44.65,68.45c-0.53,0.03 -1.27,1.62 0.17,2.37c1.45,0.75 5.38,1.04 6.53,1.1c1.16,0.06 4.39,0.58 4.39,-0.35s-0.4,-3.18 -0.64,-3.58c-0.23,-0.4 -2.43,-3.12 -2.89,-3.06c-0.46,0.06 -3.41,2.2 -4.28,2.54S45.69,68.39 44.65,68.45z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M37.71,63.59c1.79,-0.58 2.37,-1.91 4.05,-2.43c1.68,-0.52 3.87,-1.91 4.39,-1.79s3.41,2.72 3.47,3.06c0.06,0.35 -2.95,1.97 -3.7,2.26c-0.75,0.29 -4.02,1.76 -4.02,1.76l-2.98,2.34L37.71,63.59z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M39.85,52.83c0,0 4.22,-0.43 4.63,-0.46c1.72,-0.12 1.73,0.69 1.73,0.98s0.17,3.24 -1.62,3.99c-1.79,0.75 -3.35,0.81 -3.53,1.04c-0.17,0.23 -2.95,2.08 -2.89,1.85C38.23,60 39.85,52.6 39.85,52.83z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M48.7,54.4c-0.41,0.96 0.75,3.7 0.98,3.99c0.23,0.29 2.37,1.97 4.11,1.97s5.15,-3.82 5.38,-4.45s-1.97,-4.05 -2.54,-4.16c-0.58,-0.12 -2.78,1.04 -2.78,1.04S48.87,53.99 48.7,54.4z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M48.24,44.28c-0.46,0.5 -1.04,6.77 -0.58,6.88c0.46,0.12 2.95,-1.04 2.95,-1.04s1.79,0.17 2.43,0s1.85,-0.87 2.02,-1.39s-1.73,-5.15 -2.26,-5.44S48.87,43.58 48.24,44.28z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M55.41,41.15c-0.15,0.27 1.79,6.53 2.49,6.53s2.02,-2.31 2.08,-2.66c0.06,-0.35 -0.93,-4.39 -2.14,-4.86C56.62,39.71 55.69,40.63 55.41,41.15z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M54.94,37.74c0.33,0.66 2.31,0.81 3.35,0.4c1.04,-0.4 2.6,-0.87 2.54,-1.68c-0.06,-0.81 -2.02,-2.66 -3.7,-2.49c-0.52,0.05 -1.27,0.75 -1.73,1.56C54.94,36.36 54.65,37.16 54.94,37.74z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M101.28,101.6c0,0 3.41,-0.17 4.23,-0.12c0.82,0.05 1.69,0.79 1.69,0.79s-1.12,1.58 -1.97,2.65c-1.06,1.33 -3.12,3.56 -3.12,3.56l-1.78,-6.11L101.28,101.6z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M52.44,34.78c-1.61,-1.68 -10.58,2.07 -13.84,6.04c-3.26,3.97 -1.99,8.44 -3.82,12.16s-5.09,5.38 -5.25,9.84s1.11,7.11 0.48,11.33c-0.64,4.22 -3.5,5.79 -2.15,11.75c1.35,5.96 3.34,10.59 2.94,13.32c-0.4,2.73 -1.59,5.29 -0.8,8.27c0.8,2.98 1.67,3.56 1.75,4.63c0.08,1.08 0.19,2.43 0.19,2.43s2.58,1.97 4.42,3.03c2.25,1.29 6.68,3 6.68,3s-1.19,-4.9 -2.7,-7.96c-1.51,-3.06 -4.13,-5.54 -4.06,-10.51s1.99,-4.88 1.19,-10.26c-0.8,-5.38 -2.78,-7.2 -2.7,-11c0.08,-3.81 4.29,-6.95 4.53,-11.91c0.24,-4.96 -0.95,-6.45 -0.16,-10.51c0.8,-4.05 3.82,-7.03 4.85,-10.34c1.03,-3.31 0.61,-4.24 1.91,-6.45C47.67,38.67 54.51,36.93 52.44,34.78z"
android:fillColor="#A8CE5F"/>
<path
android:pathData="M65.88,37.18c-1.34,-0.38 -1.95,0.46 -3.68,3.99c-1.83,3.72 -2.04,7.08 -1.58,9.15c0.46,2.07 2.2,4.71 1.59,8.27c-0.61,3.56 -3.02,4.48 -2.18,10.11c0.84,5.63 2.89,8.11 2.43,12.16c-0.46,4.05 -1.9,7.53 -1.37,11s1.9,3.89 1.83,8.02c-0.08,4.14 -1.83,6.78 -1.22,10.26c0.61,3.47 1.52,5.38 0.99,8.02c-0.53,2.65 -1.6,5.79 -1.6,5.79s2.11,0.13 5.48,0c2.06,-0.08 5.06,-0.56 5.06,-0.56s1.56,-2.75 1.56,-5.56s-1.75,-4.8 -1.52,-8.27s0.99,-6.04 0.61,-9.93c-0.38,-3.89 -1.75,-7.2 -1.52,-10.26c0.23,-3.06 0.91,-5.54 0.61,-10.67S69,70.35 69.53,66.96s1.06,-5.71 0.68,-9.68c-0.38,-3.97 -2.66,-4.72 -3.04,-8.85C66.8,44.29 68.51,37.92 65.88,37.18z"
android:fillColor="#A8CE5F"/>
<path
android:pathData="M76.65,33.95c-0.8,1.21 0.53,4.9 0.8,5.79c1.29,4.31 3.95,5.37 6.55,7.61c0.31,0.26 1.92,1.17 2.08,2.32c0.32,2.32 0.24,3.23 1.36,5.87c1.12,2.65 2.96,4.88 3.84,6.54c0.88,1.65 2.32,3.06 2.4,5.96s-0.16,6.29 0.8,8.85c0.96,2.56 2.32,4.8 1.76,7.53c-0.56,2.73 -3.68,7.86 -2.72,12.24c0.96,4.38 2.56,5.96 2.24,9.1c-0.32,3.14 -1.59,5.69 -2,7.45c-0.38,1.63 -0.5,2.71 -0.5,2.71s4.78,-3.15 7.3,-5.69c1.74,-1.76 3.44,-3.39 3.36,-7.2c-0.08,-3.81 -3.44,-4.8 -2.72,-10.09c0.72,-5.29 3.28,-11.43 2.64,-16.54c-0.96,-7.61 -4.4,-9.1 -5.12,-11.91c-0.72,-2.81 0.88,-7.69 -1.2,-13.15s-6.31,-3.64 -8.31,-6.29s-1.92,-4.47 -3.6,-6.87C83.92,35.77 77.53,32.63 76.65,33.95z"
android:fillColor="#A8CE5F"/>
<path
android:pathData="M74.7,28.08c0.6,1.2 1.99,1.84 6.38,1.68c4.38,-0.17 6.36,-0.43 8.84,1.22c2.48,1.65 2.23,2.98 5.21,5.05c2.98,2.07 5.29,2.15 7.53,5.29s4.47,10.09 6.12,12.66s4.05,4.63 4.8,9.18s0.25,9.18 0,14.15c-0.25,4.96 -1.19,15.88 -1.19,15.88s3.56,-7.4 4.44,-15.94c0.69,-6.7 1.58,-19.1 -6.72,-32.29c-8.65,-13.75 -19.52,-18.49 -24.35,-20.39c-0.04,-0.02 -3.22,-0.08 -4.85,0.04C77.31,24.88 73.55,25.76 74.7,28.08z"
android:fillColor="#A8CE5F"/>
<path
android:pathData="M31.69,35.19c2.23,-2.05 3.31,-1.08 6.7,-2.32c3.39,-1.24 2.81,-2.23 5.71,-2.65c2.9,-0.41 8.77,0.83 9.02,-1.57c0.25,-2.4 -3.56,-3.89 -8.69,-3.14c-5.13,0.74 -7.4,1.07 -7.4,1.07s-9.37,4.86 -14.85,12.25c-5.03,6.78 -12.33,17.37 -11.66,35.9c0.63,17.75 10.51,28.95 10.51,28.95s-2.08,-6.82 -2.5,-8.15c-0.41,-1.32 -1.93,-4.92 -2.37,-6.96c-1.17,-5.4 0.72,-5.38 -0.18,-9.3c-0.37,-1.61 -1.08,-4.47 -1.24,-7.78c-0.17,-3.31 3.23,-6.29 3.56,-9.93c0.33,-3.64 -0.17,-6.29 1.9,-10.75s4.96,-5.29 6.78,-7.94C28.79,40.24 28.63,38 31.69,35.19z"
android:fillColor="#A8CE5F"/>
<path
android:pathData="M55.81,20.98c0,0 2.26,-0.25 3.19,-0.34c0.93,-0.08 2.62,-0.11 2.62,-0.11l2.17,1.92c0,0 -3.81,-0.11 -4.88,-0.79C57.84,20.98 55.81,20.98 55.81,20.98z"
android:fillColor="#B4DE58"/>
<path
android:pathData="M60.4,14.7l0.19,10.46c0,0 -4.4,1.15 -4.27,3.7s3.44,3.89 7.84,3.76s7.59,-1.91 7.78,-4.21s-3.25,-2.93 -3.25,-2.93l0.26,-11.16c0,0 7.32,-0.07 14.22,-1.66c6.63,-1.53 10.27,-2.36 10.78,-4.4c0.51,-2.04 0.7,-5.36 -1.21,-5.74S80.61,6.51 63.59,6.86c-18.75,0.38 -23.97,-1.85 -24.8,-1.47s-2.36,4.21 -0.83,6.63c1.53,2.42 9.63,2.55 12.31,2.61C52.94,14.7 60.4,14.7 60.4,14.7z"
android:fillColor="#5E8A28"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M30.37,22.83c-0.53,-0.95 -6.76,-7.19 -6.76,-7.19s-1.37,-2.11 -4.23,-2.11s-3.7,2.84 -5.8,6.47c-1.8,3.11 -9.87,16.01 -9.78,36.11c0.08,17.12 3.85,26.32 11.67,36.26c6.76,8.59 21.87,17.65 38.89,20.82c17.01,3.17 39.84,1.9 52.63,-6.97s15.32,-18.78 16.49,-26c1.48,-9.17 1.22,-21.13 -2.47,-22.49c-3.26,-1.19 -8.2,1.4 -8.2,1.4L30.37,22.83z"
android:fillColor="#7A9C41"/>
<path
android:pathData="M108.7,54.96l3.72,0.12l6.46,2.33c0,0 -16.98,35.59 -51.2,43.41c-32.17,7.35 -55.83,-8.36 -58.51,-37.81c-2.8,-30.81 13.99,-47.9 13.99,-47.9l4.68,2.46l25.12,46.55L108.7,54.96z"
android:fillColor="#FFF6A0"/>
<path
android:pathData="M31.56,89.24c17.93,12.78 47.79,4.69 63.47,-11.65c16.26,-16.95 17.4,-22.51 17.4,-22.51s-19.27,-7.91 -28.78,-12.41S45.96,25.82 41.45,23.65S27.6,17.43 27.6,17.43S19.26,28.67 16.14,43.7S14.7,77.23 31.56,89.24z"
android:fillColor="#FF6C75"/>
<path
android:pathData="M42.58,42.19c0.2,0.87 -0.34,3.98 -4.53,5.89c-2.17,0.99 -3.87,0.05 -4.48,-1.46c-0.68,-1.68 0.3,-3.88 2.69,-4.9C39,40.54 42.44,41.57 42.58,42.19z"
android:fillColor="#2F2F2F"/>
<path
android:pathData="M50.13,54.57c1.3,1.19 -0.38,5 -1.28,6.16c-0.9,1.17 -3.64,3.69 -5.84,1.32c-2.27,-2.46 0.63,-5.39 1.56,-6.17S48.86,53.41 50.13,54.57z"
android:fillColor="#2F2F2F"/>
<path
android:pathData="M63.55,59.58c-1.29,-0.07 -4.15,2.83 -3.71,6.27c0.4,3.11 2.03,3.73 3.37,3.83c1.33,0.1 3.02,-1.2 3.27,-4.41C66.75,61.69 64.49,59.63 63.55,59.58z"
android:fillColor="#2F2F2F"/>
<path
android:pathData="M77.24,56.62c-0.91,0.64 -1.32,4 0.3,6.69c1.29,2.13 3.55,3.14 5.37,1.72c1.82,-1.42 1.52,-4 -0.46,-6.23C80.48,56.57 78.1,56.01 77.24,56.62z"
android:fillColor="#2F2F2F"/>
<path
android:pathData="M119.47,70.52c0.4,0.64 0.94,2.01 -0.04,3.74c-0.86,1.52 -1.89,2.3 -1.6,4.24s1.77,1.6 1.69,5.51c-0.06,2.86 -2.18,4.98 -4.03,6.46c-1.85,1.48 -3,2.72 -3.17,5.27c-0.17,2.61 -0.62,4.98 -2.18,6.46c-2.76,2.59 -5.08,1.05 -7.53,3.5c-1.94,1.94 -1.57,3.83 -1.57,3.83s-1.9,0.93 -5.29,2.01c-4.2,1.33 -6.52,1.59 -6.52,1.59s2.39,-1.8 3.05,-3.77s1.28,-5.06 3.58,-6.95c4.57,-3.62 7.77,-0.82 9.79,-2.88c1.81,-1.85 -0.37,-4.15 1.97,-8.47c1.95,-3.59 6.13,-3.58 6.42,-6.34c0.29,-2.76 -1.51,-3.08 -0.99,-6.58C113.71,73.73 119.26,70.19 119.47,70.52z"
android:fillColor="#C1CA32"/>
<path
android:pathData="M57.16,113.66c0,0 0.64,-3.15 4.51,-4.39c2.47,-0.99 4.61,0.45 7.03,-0.37c2.43,-0.82 2.72,-3.95 6.29,-5.72c3.58,-1.77 6.17,0.78 9.58,-0.37c3.41,-1.15 1.81,-5.43 4.85,-8.43c3.67,-3.62 6.94,-1.16 9.58,-3.13c3.54,-2.63 2.71,-7 5.39,-7.08c1.4,-0.04 2.1,2.63 1.23,5.92c-0.86,3.29 -3.29,5.19 -5.64,5.92c-2.51,0.78 -3.91,0.21 -5.68,2.59c-1.2,1.61 -1.71,5.29 -5.14,7.36c-5.1,3.09 -6.99,1.11 -9.91,3.09c-3.41,2.72 -3.74,5.61 -3.74,5.61s-5.97,0.19 -8.81,0.03C62.24,114.44 57.16,113.66 57.16,113.66z"
android:fillColor="#C1CA32"/>
<path
android:pathData="M36.62,107.59c0,0 5.47,0.41 8.31,0.16c2.84,-0.25 8.19,-1.11 8.52,1.4s-2.43,3.33 -2.43,3.33s-4.57,-0.99 -7.53,-2.06C40.52,109.36 36.62,107.59 36.62,107.59z"
android:fillColor="#C1CA32"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M4.45,78.74c3.05,28.59 23.74,44.75 59.43,45.3s49.02,-16.75 54.54,-25.73c6.34,-10.33 16.49,-58.89 -39.5,-70.3c-21.39,-4.36 -38.01,-0.8 -49.47,5.62C9,45.07 3.17,66.77 4.45,78.74z"
android:fillColor="#FF8E00"/>
<path
android:pathData="M114.83,11.19c-0.14,-1.4 -5.06,-6.32 -17.7,-7.17S75.05,8.78 70.76,16.67c-3.31,6.09 -5.24,11.09 -5.24,11.09l7.8,0.75l32.67,-11.42L114.83,11.19z"
android:fillColor="#5C6A23"/>
<path
android:pathData="M89.26,18.21c8.77,-3.08 25.57,-7.02 25.57,-7.02s-2.95,6.6 -8.85,12.64c-5.9,6.04 -15.51,12.3 -28.8,8.99c-5.43,-1.35 -9.03,-4.89 -9.03,-4.89S76.06,22.85 89.26,18.21z"
android:fillColor="#767E3A"/>
<path
android:pathData="M55.91,11.86c-0.75,1.6 1.74,2.86 3.28,5.52c2.83,4.88 2.83,11.76 2.83,11.76s-6.04,0.64 -5.85,5.91c0.17,4.69 4.36,6.62 9.19,6.62c5.27,0 7.32,-3.92 7.13,-6.49c-0.3,-3.98 -4.43,-5.52 -4.43,-5.52s0.58,-9.12 0,-13.68s-1.35,-5.72 -2.7,-6.3C64.01,9.1 56.88,9.8 55.91,11.86z"
android:fillColor="#5C6A23"/>
<path
android:pathData="M18.26,77.68c3.48,1.1 6.5,-2.84 10.44,-10.44c2.05,-3.97 6.62,-9.84 8.85,-12.27c4.77,-5.19 10.81,-10.57 7.18,-14.94c-3.88,-4.66 -15.2,0.27 -22.62,11.27S13.18,76.08 18.26,77.68z"
android:fillColor="#FFE265"/>
<path
android:pathData="M84.04,41.09c-0.57,2.28 0.43,4.21 2.11,4.35c2.02,0.17 3.02,-1.77 3.06,-3.75c0.03,-1.6 -1.03,-2.67 -2.41,-2.8C85.41,38.77 84.38,39.71 84.04,41.09z"
android:fillColor="#FF6110"/>
<path
android:pathData="M97.65,50.91c-1.49,1.6 -1.65,4.67 0.26,5.86c2.15,1.34 4.39,-0.43 5.13,-1.94c0.58,-1.19 0.9,-3.13 -0.47,-4.39C100.92,48.93 98.85,49.62 97.65,50.91z"
android:fillColor="#FF6110"/>
<path
android:pathData="M106.81,57.58c-0.38,1.92 0.43,4.12 2.47,4.43s3.42,-1.67 3.54,-3.13c0.16,-1.84 -0.56,-3.32 -2.18,-3.94C109.02,54.3 107.15,55.84 106.81,57.58z"
android:fillColor="#FF6110"/>
<path
android:pathData="M107.99,67.07c-1.35,-0.66 -4.02,-0.11 -4.93,3.09c-0.74,2.6 0.11,5.12 2,5.58c2.54,0.61 4.22,-1.36 4.65,-3.58C110.2,69.67 109.55,67.84 107.99,67.07z"
android:fillColor="#FF6110"/>
<path
android:pathData="M99.37,88.34c1.9,1.46 1.06,3.99 -0.39,5.47c-1.59,1.64 -3.96,1.81 -5.13,0.65c-1.16,-1.16 -0.82,-3.53 0.82,-5.17S98.35,87.55 99.37,88.34z"
android:fillColor="#FF6110"/>
<path
android:pathData="M74.17,105.87c0.77,1.58 -0.34,3.62 -1.81,4.69c-1.17,0.86 -4.18,1.77 -5.6,-0.3c-1.17,-1.7 -0.3,-3.49 1.64,-4.95C70.34,103.85 73.31,104.11 74.17,105.87z"
android:fillColor="#FF6110"/>
</vector>

View file

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M24,29.48L13.08,54.15l0.91,29.83c0,0 6.07,19.56 6.37,19.77c0.3,0.2 1.31,-0.25 3.74,-4.6s8.6,-13.05 9.1,-15.17c0.51,-2.12 0.71,-17.39 0.71,-17.39l1.42,-32.87L24,29.48z"
android:fillColor="#757F3E"/>
<path
android:pathData="M24.03,30.48c0,0 -19.94,19.17 -19.95,37.63c0,12.85 6.27,19.92 7.79,22.45c1.52,2.53 5.06,7.99 5.87,9.1s1.79,3.21 2.49,4.02c0.71,0.81 -0.07,-5.34 -0.88,-7.86c-0.81,-2.53 -3.02,-16.26 -3.03,-25.28c-0.01,-9.88 0.83,-21.85 4.28,-29.1c3.81,-8 7.39,-11.78 7.39,-11.78L24.03,30.48z"
android:fillColor="#94A61D"/>
<path
android:pathData="M30.68,33.02c0,0 -5.87,2.93 -6.07,6.47s1.62,7.18 2.33,12.03s0.71,11.02 0.81,12.84C27.84,66.19 33,78.53 33,78.53l32.06,28.72l40.15,1.21c0,0 12.64,0.71 14.26,-1.21s4.68,-6.23 5.06,-9.1c0.71,-5.36 -1.21,-8.19 -2.63,-16.79c-0.6,-3.66 -0.81,-17.98 -6.27,-29.43c-6.17,-12.94 -18.41,-24.27 -43.18,-27.51c-18.01,-2.35 -27.1,1.42 -29.73,1.01c-2.63,-0.4 -4.75,-1.62 -7.79,-0.2C31.04,27.04 30.68,33.02 30.68,33.02z"
android:fillColor="#FCC219"/>
<path
android:pathData="M110.77,112.2c4.77,0.16 7.28,-2.53 8.29,-3.64c1.01,-1.11 3.04,-4.93 3.04,-4.93s-3.45,2.91 -7.39,2.7c-3.94,-0.2 -9.2,-1.21 -12.34,-1.52s-13.05,1.92 -25.08,-0.71c-12.03,-2.63 -25.31,-9.28 -34.08,-17.9c-11.83,-11.63 -15.6,-24.64 -15.6,-24.64s-0.58,16.14 10.75,30.91s22.86,20.02 37.01,21.54c16,1.71 24.98,-1.92 27.3,-2.02C105.01,111.9 107.84,112.1 110.77,112.2z"
android:fillColor="#F7932A"/>
<path
android:pathData="M53.03,35.34c-0.3,3.14 1.62,5.46 3.94,5.87c2.5,0.43 6.27,-0.2 11.83,2.93c5.56,3.14 13.37,10.96 18,6.78c4.25,-3.84 -2.63,-10.92 -5.06,-13.05c-2.43,-2.12 -8.49,-7.58 -19.92,-7.79C55.25,29.97 53.23,33.22 53.03,35.34z"
android:fillColor="#FFEBC9"/>
<path
android:pathData="M20.36,17.34c-0.02,-0.75 -0.71,-4.95 -2.72,-3.98c-3.47,1.66 -4.78,4.1 -3.65,6.92c1.42,3.54 3.8,5.84 6.37,8.49c1.97,2.04 5.87,6.17 7.28,7.38c1.42,1.21 3.51,2.86 5.97,-0.3c2.62,-3.37 0.85,-3.98 -1.38,-6.11S29,26.9 24.71,22.5C22.56,20.29 20.38,18.09 20.36,17.34z"
android:fillColor="#757F3E"/>
</vector>

View file

@ -0,0 +1,33 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M119.22,95.12c-1.14,2.36 -5.91,2.21 -8.54,1.38c-6.72,-2.12 -10.9,-7.9 -10.9,-7.9L65.14,73.9l-10.61,-5.57c0,0 -2.06,-3.5 2.06,-6.17s7.01,-2.87 7.01,-2.87l11.94,7.6c0,0 7.71,-6 15.54,-6.91c7.48,-0.86 16.79,5.22 19.24,16.7c1.99,9.31 5.14,12.59 6.09,13.8C117.36,91.7 120.2,93.1 119.22,95.12z"
android:fillColor="#FF8E00"/>
<path
android:pathData="M77.72,32.15C74.65,21.99 70.77,10.1 64.91,6.03c-5.19,-3.6 -10.24,-2.95 -12.64,-1.38c0,0 -4.33,1.77 -5.47,6.24c-1.88,7.34 0.59,16.15 2.2,25.25c1.61,9.1 2.45,15.36 3.18,22.67c0.07,0.66 12.16,22.18 12.16,22.18l9.65,5.17c0,0 7.37,-15.94 7.26,-18.19C81.15,65.71 79.96,39.57 77.72,32.15z"
android:fillColor="#FFE4B4"/>
<path
android:pathData="M52.55,66.94c-0.13,2.43 5.73,21.8 5.73,21.8l15.72,-2.6c0,0 11.15,-6.6 11.46,-18.57c0.48,-18.05 -2.61,-26.55 -4.85,-33.97C77.53,23.46 70.67,10.1 64.86,5.96c-3.41,-2.43 -7.19,-2.79 -8.74,-2.49c0,0 10.32,8.08 15.54,21.9s6.45,29.79 6.45,29.79s-3.84,2.83 -12.9,4.13c-7,1.01 -13.04,-0.7 -13.04,-0.7S52.72,63.86 52.55,66.94z"
android:fillColor="#FFE265"/>
<path
android:pathData="M85.33,83.75l-6.29,-13.14l0.34,-4.68c0,0 1.34,-3.93 -7.03,2.42c-3.88,2.94 -6.22,8.36 -6.22,8.36s-1.18,-2.92 -5.32,-6.78c-3.68,-3.42 -8.63,-5.08 -8.63,-5.08s-10.28,-2 -11.4,-1.13c-7.25,5.66 -12.55,12.55 -12.55,12.55L22.9,96.42l-8.86,5.43c0,0 2.42,3.54 5.92,2.22c2.73,-1.03 6.11,-4.12 7.93,-8.01c2.5,-5.35 7.75,-15.47 10.42,-18.67c5.16,-6.16 10.22,-8.41 13.99,-6.62c4.29,2.03 0.86,22.29 0.86,22.29l-27.58,23.21l-0.47,3.16c0,0 4.01,3.85 15.06,3.49s25.83,-4.45 35.18,-17.2C83.6,94.48 85.33,83.75 85.33,83.75z"
android:fillColor="#FFA726"/>
<path
android:pathData="M63.58,84.96c0.24,5.55 -3.22,13.96 -11.22,20.97c-7.99,7.01 -16.43,9.33 -21.67,9.73c-3.8,0.29 -4.93,-1.88 -4.93,-1.88s7.66,-7.05 13.35,-12.7c5.4,-5.37 11.28,-16.65 12.56,-21.84c1.28,-5.19 0.12,-8.68 0.12,-8.68s2.48,0.69 6.13,4.35C61.46,78.46 63.45,81.88 63.58,84.96z"
android:fillColor="#FFB803"/>
<path
android:pathData="M29.45,118.74c-0.83,1.93 -3.68,2.01 -4.92,0.94c-1.17,-1.01 -2.31,-3.02 -1.13,-5.27c0.78,-1.48 3.34,-1.89 4.78,-0.74S30.2,116.99 29.45,118.74z"
android:fillColor="#875B54"/>
<path
android:pathData="M23.76,97.84c-3.28,4.55 -6.57,5.24 -7.93,5.39c-1.19,0.14 -2.49,-1.38 -2.34,-2.78c0.15,-1.4 2.45,-3.37 2.73,-7.67c0.28,-4.3 -0.06,-20.07 8.69,-29.13c6.17,-6.38 13.73,-4.18 18.61,-2.49c5.5,1.9 8.67,3.7 8.67,3.7s-4.5,-0.31 -12.26,5.81c-4.51,3.56 -7.16,8.45 -9.66,14.06C28.47,88.79 26.07,94.64 23.76,97.84z"
android:fillColor="#FEE4B4"/>
<path
android:pathData="M111,109.58c-0.92,1.84 -3.17,2.98 -5.16,2.89c-4.21,-0.18 -8.05,-2.35 -12.3,-7.83C87.53,96.88 82.3,78.26 78.38,73.3c-2.65,-3.35 -5.95,-5.01 -5.95,-5.01s1.82,-1.54 3.64,-2.49c1.82,-0.95 6.22,-0.5 6.22,-0.5l18.78,30.18L111,109.58z"
android:fillColor="#FEB804"/>
<path
android:pathData="M100.39,68.46c4.12,5.89 4.66,11.06 5.28,16.34c0.56,4.77 1.71,14.8 3.44,18.07c1.74,3.27 3.43,5.4 1.56,7.39s-7.37,1.28 -11.32,-3.02c-3.18,-3.47 -4.94,-7.25 -7.33,-12.8c-2.39,-5.55 -5.91,-18.65 -10.48,-24.57c-2.92,-3.78 -5.83,-3.89 -5.83,-3.89s3.85,-3.14 11.2,-3.22C93.5,62.69 96.96,63.56 100.39,68.46z"
android:fillColor="#FFE4B4"/>
</vector>

View file

@ -0,0 +1,39 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64.36,54.09c-15.61,-0.56 -28.51,9.61 -31.55,29.94c-3.06,20.45 6.76,40.38 31.26,39.93c26.04,-0.47 34.07,-21.65 30.62,-41.26C90.75,60.42 77.72,54.58 64.36,54.09z"
android:fillColor="#FFBE1F"/>
<path
android:pathData="M77.01,72.23c-2.19,-0.06 -6.91,4.64 -7.85,5.69c-1.9,2.13 -0.5,4.24 1.69,3.18c2.11,-1.02 5.38,-3.28 6.2,-3.29c0.88,-0.01 3.42,1.67 4.49,2.48c3.08,2.3 4.79,-0.11 2.9,-2.42C83.38,76.58 79.52,72.3 77.01,72.23z"
android:fillColor="#F79429"/>
<path
android:pathData="M50.92,72.29c-2.5,-0.13 -8.08,5.56 -8.38,5.88c-1.59,1.74 -0.11,3.75 2.01,2.85c1.22,-0.52 5.08,-3.1 6.01,-3.07c0.69,0.02 2.19,1.14 4.35,2.55c3.54,2.3 5.49,-0.08 3.15,-2.62C55.7,75.32 53.09,72.4 50.92,72.29z"
android:fillColor="#F79429"/>
<path
android:pathData="M40.09,86.26c-1.45,-0.1 -4.41,2.6 -5.24,3.52c-0.83,0.92 -1.5,1.73 -0.87,2.7c0.43,0.66 1.78,0.69 2.8,0.11c1.31,-0.74 2.66,-1.47 3.17,-1.45c0.83,0.04 4.12,2.95 5.14,3.82c2.66,2.25 4.35,-0.77 2.88,-2.51C46.4,90.59 42.77,86.45 40.09,86.26z"
android:fillColor="#F79429"/>
<path
android:pathData="M64.13,86.5c-2.78,-0.04 -7.96,5.49 -8.75,6.41c-1.91,2.23 -0.46,5.2 2.51,3.12c0.89,-0.63 4.63,-3.84 5.98,-3.74c0.86,0.07 3.79,2.37 5.8,3.78c2.68,1.89 4.49,-0.29 2.64,-2.77C71.48,92.18 67.2,86.54 64.13,86.5z"
android:fillColor="#F79429"/>
<path
android:pathData="M87.35,85.87c-1.61,-0.09 -7.02,5.6 -7.94,6.8C77.82,94.75 79.56,96.73 82,95c1.73,-1.23 5.32,-3.94 5.69,-3.96c0.53,-0.04 1.95,1.03 3.04,1.66c1.17,0.68 2.51,0.62 2.92,-0.15c0.56,-1.04 -0.27,-2.06 -1.12,-2.85C91.11,88.36 88.75,85.95 87.35,85.87z"
android:fillColor="#F79429"/>
<path
android:pathData="M76.5,101.91c-2.9,0.05 -7.07,4.98 -7.83,6.25c-1.45,2.44 0.78,3.46 2.03,2.84c1.89,-0.95 3.93,-3.16 5.95,-3.53c0.87,-0.16 3.69,2.07 4.43,2.53c3.68,2.3 5.01,-0.81 2.58,-3.22C81.91,105.05 78.59,101.87 76.5,101.91z"
android:fillColor="#F79429"/>
<path
android:pathData="M51.76,101.82c-2.04,-0.1 -6.92,4.33 -8.14,5.51c-1.64,1.6 -0.45,4.26 2.15,3c2.27,-1.1 4.99,-2.78 5.75,-2.74c0.96,0.05 3.03,1.66 4.26,2.5c3.66,2.52 5.24,-0.25 2.96,-2.89C57.11,105.33 53.96,101.93 51.76,101.82z"
android:fillColor="#F79429"/>
<path
android:pathData="M25.53,23.68c-0.91,-1.17 4.1,-3.87 9.38,-4.02c6.63,-0.19 12.71,1.57 12.71,1.57s0.55,-4.36 -2.95,-9.24c-2.4,-3.35 -3.49,-5.01 -3.42,-6.2c0.07,-1.2 5.27,-1.93 12.2,1.16c5.79,2.58 10.29,7.5 10.29,7.5s3.66,-5.12 8.48,-7.59C77.82,4 84.68,3.51 85.28,4.64c0.46,0.86 -1.72,3.38 -3.15,6.62c-2.25,5.08 -2.12,9.27 -2.12,9.27s4.66,-3.4 9.66,-4.4c2.54,-0.51 10.03,-0.97 9.53,0.86c-0.08,0.29 -12.88,9.28 -12.88,9.28l-1.91,9.35c0,0 6.79,-3.88 12.84,-3.17c3.13,0.37 2.61,1.35 2.61,1.35l-14.52,8.24l-2.16,7.13c0,0 4.07,-1.02 8.03,-1.07c1.91,-0.02 5.04,0.48 5.19,1.45c0.2,1.25 -8.75,5.67 -8.75,5.67l-24.09,9.76l-22.87,-8.28c0,0 -10.27,-1.62 -10.27,-2.74c0,-1.13 2.05,-2.01 5.13,-2.49c3.56,-0.56 7.22,-0.36 7.22,-0.36l-10.57,-7.01c0,0 -6.5,-0.61 -7.06,-1.88c-0.56,-1.27 2.92,-3.59 5.05,-4.21c5.39,-1.58 11.53,-0.32 11.53,-0.32l-3.47,-9.29C38.23,28.37 26.52,24.95 25.53,23.68z"
android:fillColor="#2F7C31"/>
<path
android:pathData="M54.36,33.59c0.54,0.27 1.94,-3.05 3.67,-5.18c2.52,-3.11 5.8,-5.44 6.37,-5.44c0.55,0 3.12,1.95 5.35,4.62c2.7,3.24 3.91,5.95 4.18,6.08c1,0.49 4.24,-5.22 10.48,-10.04c5.39,-4.17 14.34,-7.9 14.81,-6.64c0.15,0.41 -4.44,3.43 -8.84,9.55c-4.83,6.71 -4.36,13.94 -4.36,13.94s5.53,-3.97 7.31,-4.89c1.49,-0.77 7.14,-2.94 6.5,-1.73c-0.46,0.86 -5.86,6.24 -8.96,9.19c-4.88,4.62 -6.32,11.51 -5.85,11.9c0.54,0.45 4.17,-2.24 6.36,-3.47c2.08,-1.17 5.02,-2.12 5,-1.92c-0.13,1.47 -5.43,5.29 -9.16,8.64c-2.76,2.47 -8.1,9.52 -23.31,9.27c-12.57,-0.2 -19.92,-6.78 -24.5,-9.24c-3.16,-1.7 -9.04,-3.6 -8.97,-4.18c0.04,-0.32 2.8,-0.54 4.66,-0.31c5.14,0.62 8.44,2.17 8.79,1.72c0.36,-0.46 -4.55,-6.68 -13.03,-10.46c-4.09,-1.83 -5.88,-2.3 -5.8,-3.12c0.03,-0.36 2.59,-0.83 5.85,-0.94c5.78,-0.19 11.28,1.85 11.79,1.91c1.2,0.15 -3.65,-8.26 -6.4,-11.54c-4.36,-5.21 -11.16,-6.6 -10.88,-7.91c0.15,-0.71 8.07,-0.81 14.57,1.63C46.76,27.55 53.19,33.01 54.36,33.59z"
android:fillColor="#709921"/>
<path
android:pathData="M64.38,38.24c-0.61,0.08 -3.02,1.38 -6.19,4.71c-3.75,3.93 -5.07,8.18 -4.2,8.9c1.17,0.96 2.8,-0.87 5.04,-2.45c2.64,-1.86 4.78,-2.87 5.24,-2.87c0.46,0 2.52,1.3 4.25,2.61c2.15,1.64 4.01,3.41 4.96,2.81c1.6,-0.99 -0.62,-6.17 -3.12,-9C67.7,39.93 64.91,38.17 64.38,38.24z"
android:fillColor="#2F7C31"/>
</vector>

View file

@ -0,0 +1,27 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M45.43,68.14l-5.45,-13.51l0.15,-21.87c0,0 14.68,-2.2 22.39,-3.26s23.04,-7.52 37.02,-1.33c15.88,7.03 24.3,23.3 20.06,48.1s-22.83,44.87 -39.57,47.03c-8.29,1.07 -9.77,-2.15 -16.12,-1.69c-5.14,0.37 -4.86,3.04 -13.63,2.59c-8.77,-0.45 -16.21,-3.71 -20.59,-9.15S45.43,68.14 45.43,68.14z"
android:fillColor="#DC0D28"/>
<path
android:pathData="M21.23,36.99c-12.57,10.5 -18.5,32.63 -8.47,56.25c8.92,21.02 23.17,27.03 23.17,27.03s24.92,-1.63 42.31,-11.01s34.18,-25.71 34.18,-47.18s-11.19,-28.73 -12.4,-29.03c-1.21,-0.3 -6.2,2.87 -11.8,3.02c-5.6,0.15 -9.98,-1.21 -9.98,-1.21l-17.69,5.9l-16.54,-3.86c0,0 -0.53,-2.31 1.26,-3.25c3.72,-1.94 11.49,1.36 14.67,1.21s5.9,-4.39 5.9,-4.39s-7.41,-0.76 -9.98,-1.36C53.29,28.53 35.9,24.74 21.23,36.99z"
android:fillColor="#FF5117"/>
<path
android:pathData="M62.03,37.12c-4.58,0.21 -16.86,-4.1 -17.97,-0.73c-1.18,3.58 7.96,8.33 19.09,7.55c11.61,-0.81 18.84,-7.23 17,-10.69C78.32,29.79 70.79,36.71 62.03,37.12z"
android:fillColor="#8D1D0A"/>
<path
android:pathData="M51.04,16.96c0,0 -1.93,-0.1 -2.95,-0.51c-1.02,-0.41 -2.46,-0.38 -2.34,-2.14c0.2,-2.95 3.98,-5.98 4.89,-6.52c1.73,-1.02 4.76,-0.74 5.91,0c1.43,0.92 0.71,4.28 0.71,4.28s5.09,7.64 5.8,12.32c0.65,4.27 3.31,16.73 -0.71,17.51c-3.67,0.71 -2.14,-8.86 -4.17,-13.54c-1.22,-2.8 -2.95,-5.8 -4.58,-7.84C52.03,18.58 51.04,16.96 51.04,16.96z"
android:fillColor="#513630"/>
<path
android:pathData="M105.41,5.05c0.41,-0.71 -0.41,-1.43 -3.77,-1.53c-3.36,-0.1 -21.69,-1.83 -32.07,11.1c-7.46,9.29 -6.31,17.21 -6.31,17.21l6.82,0.31L105.41,5.05z"
android:fillColor="#2F7C31"/>
<path
android:pathData="M82.9,17.77c6.17,-4.26 22.6,-13.54 22.6,-13.54s0,2.34 -1.02,4.38s-4.48,12.12 -18.53,19.45c-13.19,6.88 -21.99,5.19 -22.71,3.97C62.54,30.81 72.72,24.8 82.9,17.77z"
android:fillColor="#709F19"/>
<path
android:pathData="M37.6,39.97c-2.73,-3.93 -9.34,-2.82 -15.27,5.09c-7.64,10.18 -7.23,23.72 -2.04,24.54c5.15,0.81 0.61,-4.38 8.55,-14.66C34.92,47.07 41.06,44.96 37.6,39.97z"
android:fillColor="#FFD2B1"/>
</vector>

View file

@ -0,0 +1,27 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M78.7,52.85L60.22,36.83l6.86,-5.1c0,0 19.91,-11.15 38.9,2.29c18.66,13.2 16.9,52.45 2.46,70.4s-24.47,19.01 -29.92,18.83c-5.46,-0.18 -6.34,-2.82 -11.62,-2.29c-5.28,0.53 -7.04,3.52 -16.72,2.82c-8.78,-0.64 -16.02,-4.05 -19.54,-7.92C27.31,112.18 78.7,52.85 78.7,52.85z"
android:fillColor="#6EA517"/>
<path
android:pathData="M100.21,34.4c0,0 -7.93,3.42 -15.85,4.04c-7.93,0.62 -22.07,-0.47 -22.07,-0.47s-1.55,-8.24 -2.02,-8.24c-0.47,0 -21.28,-7.24 -36.52,4.2C7.69,45.98 6.11,69.38 8.67,80.55c5.89,25.67 24.78,37.76 24.78,37.76s16.87,1.87 38.01,-7.45s39.44,-25.64 39.01,-47.55C110,39.99 100.21,34.4 100.21,34.4z"
android:fillColor="#87C244"/>
<path
android:pathData="M37.7,38.9c-2.71,-3.13 -10.15,-2.43 -15.93,5.84c-6.02,8.6 -6.29,24.36 -1.33,24.79c4.07,0.35 5.11,-6.54 7.61,-11.42C32.75,48.95 43.9,46.07 37.7,38.9z"
android:fillColor="#E5DD9F"/>
<path
android:pathData="M44.25,35.36c-1.19,2.48 2.73,8.58 17.37,9.03c15.4,0.47 20.45,-8.11 18.69,-10.11c-1.76,-2 -7.52,1.29 -18.45,1.18S46.28,31.15 44.25,35.36z"
android:fillColor="#59702C"/>
<path
android:pathData="M51.86,18.64c-1.18,-0.24 -5.99,-1.06 -6.47,-2.94c-0.22,-0.89 0.94,-3.76 4,-5.88s6.11,-2.7 6.82,-1.06c0.71,1.65 0.47,2.7 0.47,3.06c0,0.35 2.42,3.18 4.11,6.82c2.35,5.05 3.64,9.99 3.41,15.05c-0.17,3.66 -0.24,8.82 -2.35,8.46c-2.2,-0.37 -1.74,-5.53 -2.82,-9.17C56.45,24.29 52.57,18.79 51.86,18.64z"
android:fillColor="#513532"/>
<path
android:pathData="M82.59,24.36c0.24,-0.35 24.57,-15.63 24.68,-16.57S94.7,4.61 86.71,7.55s-16.27,7.67 -20.22,15.87c-3.17,6.58 -3.17,11.05 -2.35,12.11C64.53,36.03 82.59,24.36 82.59,24.36z"
android:fillColor="#2F7C31"/>
<path
android:pathData="M79.89,23.42c10.74,-6.86 27.39,-15.63 27.39,-15.63s0.5,1.31 -2.7,6.82c-4.23,7.29 -14.11,16.69 -24.1,19.63c-10.84,3.19 -16.34,1.29 -16.34,1.29S71.43,28.83 79.89,23.42z"
android:fillColor="#4C8C19"/>
</vector>

View file

@ -0,0 +1,33 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64.52,22.23c-9.49,-0.12 -13.06,5.54 -16.3,12.69c-2.48,5.47 -4.33,13.61 -9.49,20.63s-17.84,16.09 -16.3,34.86c1.55,18.77 14.33,32.4 42.19,32.9c28.47,0.52 41.62,-18.87 41.26,-38.37c-0.31,-16.5 -14.77,-26.09 -19.7,-35.07C78.65,36.15 81.54,22.44 64.52,22.23z"
android:fillColor="#B7D118"/>
<path
android:pathData="M57.39,6.32c-0.21,0.79 1.29,7 2.03,9.94c0.98,3.9 2.14,8.86 2.93,11.26c0.42,1.28 1.53,1.76 2.54,1.67c1.04,-0.09 2.31,-0.89 2.31,-2.26c-0.01,-2.55 0.07,-10.04 0.12,-13.02s0.39,-8.99 0.35,-9.86c-0.02,-0.42 -2.49,-0.86 -5.4,-0.43C59.34,4.05 57.51,5.88 57.39,6.32z"
android:fillColor="#865C51"/>
<path
android:pathData="M55.29,37.87c-2.64,-0.22 -3.3,3.03 -4.32,7.08c-1.03,4.05 -3.24,9.13 -5.73,12.97c-4.22,6.52 -8.54,9.94 -11.18,16.37c-2.47,6 -2.73,13.85 2.92,14.69c6.54,0.97 7.38,-7.8 8.37,-11.45c1.03,-3.78 2.59,-7.35 5.24,-11.78c1.94,-3.25 6.28,-12.13 7.02,-18.53C58.37,40.73 58.47,38.14 55.29,37.87z"
android:fillColor="#E4F57D"/>
<path
android:pathData="M79.31,71.94c-1.31,-1.26 -3.18,-0.7 -3.96,0.13c-0.74,0.78 -1.34,2.61 -0.08,3.91c1.26,1.31 3.13,0.7 4.04,-0.17C80.31,74.85 80.44,73.03 79.31,71.94z"
android:fillColor="#E4DC9F"/>
<path
android:pathData="M84.09,74.9c-1.15,1.29 -0.83,3.05 0.09,3.83c0.91,0.78 2.68,0.64 3.61,-0.48c1.13,-1.35 0.44,-3.05 -0.22,-3.61C86.92,74.07 85.18,73.68 84.09,74.9z"
android:fillColor="#E4DC9F"/>
<path
android:pathData="M91.62,78.56c-1.47,1.27 -0.79,3.1 -0.16,3.77c0.87,0.91 2.68,0.85 3.59,-0.11c0.91,-0.96 1.17,-2.83 0.03,-3.7C93.96,77.64 92.57,77.73 91.62,78.56z"
android:fillColor="#E4DC9F"/>
<path
android:pathData="M78.57,62.46c-1.04,1.14 -0.78,2.87 0.04,3.61s2.82,1.3 3.92,-0.35c0.87,-1.31 0.17,-2.78 -0.61,-3.44C81.09,61.59 79.44,61.5 78.57,62.46z"
android:fillColor="#E4DC9F"/>
<path
android:pathData="M69.95,62.63c-1.23,1.39 -0.42,2.97 0.35,3.74c0.87,0.87 2.65,1.09 3.61,0.04c0.96,-1.04 0.87,-2.61 0,-3.74C73.04,61.54 70.91,61.54 69.95,62.63z"
android:fillColor="#E4DC9F"/>
<path
android:pathData="M75.65,49.1c-1.13,-0.61 -2.13,0.09 -2.65,0.78c-0.52,0.7 -0.48,2.18 0.35,2.74c0.83,0.57 2.39,0.64 3.05,-0.48C77,51.1 76.8,49.72 75.65,49.1z"
android:fillColor="#E4DC9F"/>
</vector>

View file

@ -0,0 +1,139 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M101.98,24.25c0,0 6.37,-4.95 9.91,-8.49c4.36,-4.36 5.66,-8.93 4.14,-9.47c-1.52,-0.54 -7.41,0.54 -7.41,0.54l-17.64,8.6l-4.47,6.64L101.98,24.25z"
android:fillColor="#69A246"/>
<path
android:pathData="M28.36,21.96c0,0 -3.7,-1.31 -7.84,-5.77c-4.04,-4.36 -5.23,-7.3 -4.68,-8.93c0.54,-1.63 20.69,4.36 20.69,4.36l13.4,5.99l3.48,7.19L28.36,21.96z"
android:fillColor="#69A246"/>
<path
android:pathData="M67.02,22.29c0,0 4.25,-8.49 11.11,-12.09s14.05,-4.36 25.05,-4.79s12.85,0.87 12.85,0.87s-8.28,3.92 -16.23,7.62s-14.38,8.6 -14.38,8.6L68.44,35.36L45.35,18.15c0,0 -8.06,-4.03 -14.7,-6.53S15.84,7.26 15.84,7.26s1.61,-2.06 16.77,-1.31c15.25,0.76 20.91,4.57 25.48,7.3S67.02,22.29 67.02,22.29z"
android:fillColor="#82B032"/>
<path
android:pathData="M68.22,24.69c2.5,-0.22 7.98,-7.82 22.95,-6.61c14.97,1.2 37.81,18.2 31.66,50.08c-3.34,17.34 -12.36,28.52 -29.03,40.64c-11.78,8.56 -23.77,14 -29.31,14.08c-4.99,0.08 -11.87,-10.84 -11.87,-10.84L68.22,24.69z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="79.06"
android:centerY="16.91"
android:gradientRadius="88.81"
android:type="radial">
<item android:offset="0.72" android:color="#FFFE622B"/>
<item android:offset="0.78" android:color="#FFFB582C"/>
<item android:offset="0.89" android:color="#FFF23D2F"/>
<item android:offset="1" android:color="#FFE71932"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M68.22,24.69c2.5,-0.22 7.98,-7.82 22.95,-6.61c14.04,1.13 34.99,16.14 32.49,44.28c-0.17,1.88 -2.09,9.95 -5.88,10.35C99.3,74.69 90.46,52.07 85.7,46.11C76.6,34.74 68.22,24.69 68.22,24.69z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="102.96"
android:centerY="33.82"
android:gradientRadius="28.35"
android:type="radial">
<item android:offset="0.37" android:color="#FFFF9759"/>
<item android:offset="0.75" android:color="#00FF9759"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M67.53,24.89c2.5,-0.22 8.67,-8.02 23.64,-6.82c11.37,0.91 27.26,10.93 31.58,29.65c1.01,4.4 -4.78,9.44 -8.55,10.09c-11.52,1.99 -25.3,-14.74 -30.07,-20.7c-6.47,-8.09 -11.74,-9.86 -14.47,-10.78C68.56,25.95 67.53,24.89 67.53,24.89z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="53.53"
android:centerY="15.48"
android:gradientRadius="50.7"
android:type="radial">
<item android:offset="0.48" android:color="#FFFF9759"/>
<item android:offset="1" android:color="#00FF9759"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M88.38,66.94l-2.19,23.04l-9.53,21.65l-7.95,9.73c0,0 -2.27,1.42 -4.21,1.51c-1.95,0.08 -16.45,-4.09 -29.36,-12.83S11.98,90.83 7.53,79.06c-5.56,-14.7 -5.76,-36.95 7.55,-49.26S41.5,15.7 52.62,18.08s14.5,6.16 16.69,7.95s11.52,13.11 11.52,13.11l7.35,18.87L88.38,66.94z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="55.21"
android:centerY="29.08"
android:gradientRadius="76.87"
android:type="radial">
<item android:offset="0.7" android:color="#FFFE622B"/>
<item android:offset="0.77" android:color="#FFFD5D2B"/>
<item android:offset="0.84" android:color="#FFF8502D"/>
<item android:offset="0.92" android:color="#FFF1392F"/>
<item android:offset="1" android:color="#FFE71A32"/>
<item android:offset="1" android:color="#FFE71932"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M56.83,95.2c-24.2,3 -44.92,-11.51 -49.37,-23.28C4.38,63.79 3.02,60.48 4.6,50.68c1.28,-7.9 4.25,-14.99 10.47,-20.88c12.41,-11.75 26.57,-14.39 38.15,-11.71c11.08,2.56 13.89,6.15 16.07,7.94s11.52,13.11 11.52,13.11l7.35,18.87C88.18,58.01 89.68,91.13 56.83,95.2z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="44.68"
android:centerY="18.37"
android:gradientRadius="73.08"
android:type="radial">
<item android:offset="0.64" android:color="#FFFF9759"/>
<item android:offset="1" android:color="#00FF9759"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M67.91,121.45c0.43,0.12 4.58,-1.88 7.19,-5.13c7.01,-8.75 15.91,-20.91 17.49,-43.44c2.37,-33.8 -19.57,-46.25 -20.9,-46.85c-1.33,-0.59 -3.26,-0.59 -1.78,1.04c1.48,1.63 17.94,20.01 15.71,45.07c-1.99,22.42 -10.82,39.58 -13.94,43.44C68.58,119.43 66.66,121.09 67.91,121.45z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="77.95"
android:centerY="17.42"
android:gradientRadius="85.74"
android:type="radial">
<item android:offset="0.5" android:color="#FFF34124"/>
<item android:offset="1" android:color="#FFD10D22"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M28.31,50.94c0,0 -3.16,7.63 -9.52,2.6c-3.46,-2.74 -3.23,-9.81 0.14,-15.71c4.12,-7.24 11.89,-12.22 22.26,-13.63c9.26,-1.26 15.55,1.37 16.7,6.83c1.4,6.6 -4.47,6.33 -4.47,6.33C36.95,36.84 30.72,45.46 28.31,50.94z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="33.43"
android:centerY="35.62"
android:gradientRadius="23.33"
android:type="radial">
<item android:offset="0.35" android:color="#FFFEBD92"/>
<item android:offset="1" android:color="#00FEBD92"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M23.62,57.97c-0.64,-7.23 3.9,-15.39 11.49,-20.01c7.8,-4.75 17.51,-5.37 24.99,-1.66L23.62,57.97z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="43.61"
android:centerY="51.03"
android:gradientRadius="22.38"
android:type="radial">
<item android:offset="0.8" android:color="#FFFF9759"/>
<item android:offset="1" android:color="#00FF9759"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M28.31,50.94c0,0 -3.16,7.63 -9.52,2.6c-3.46,-2.74 -3.23,-9.81 0.14,-15.71c4.12,-7.24 11.89,-12.22 22.26,-13.63c9.26,-1.26 15.55,1.37 16.7,6.83c1.4,6.6 -4.47,6.33 -4.47,6.33C36.95,36.84 30.72,45.46 28.31,50.94z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="35.6"
android:centerY="39.58"
android:gradientRadius="22.28"
android:type="radial">
<item android:offset="0.74" android:color="#00FF9759"/>
<item android:offset="0.97" android:color="#FFFF9759"/>
</gradient>
</aapt:attr>
</path>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M79.05,78.15l-13.17,-2.32c0,0 -0.57,0.46 -2.15,2.38s-3.16,5.46 -3.16,5.46l-31.52,-6.3c0,0 -14.21,9.19 -10.62,27.77c3.2,16.53 17.55,20.18 25.44,20.34c16.68,0.34 24.36,-12.12 24.36,-12.12s16.24,12.16 31.89,1.69c16,-10.7 10.18,-31.63 6.46,-34.45C103.33,78.15 79.05,78.15 79.05,78.15z"
android:fillColor="#AF0C1A"/>
<path
android:pathData="M44.45,73.13c-13.97,-0.11 -21.48,7.22 -22.08,16.56c-0.56,8.68 5.3,21.07 20.96,22.08c15.66,1.01 25.8,-10.7 24.34,-20.39C66.36,82.78 58.76,73.24 44.45,73.13z"
android:fillColor="#DC0D27"/>
<path
android:pathData="M78.59,99.27c0,0 -1.69,-7.1 -4.96,-12.84c-3.27,-5.75 -7.77,-10.59 -7.77,-10.59s9.16,-9.16 22.79,-7.13c13.63,2.03 19.8,14.57 19.8,14.57s-1.33,11.43 -9.92,16C86.48,105.69 78.59,99.27 78.59,99.27z"
android:fillColor="#DC0D27"/>
<path
android:pathData="M71.61,75.61c-1.42,1.32 0.03,6.21 4.42,9.14c4.39,2.93 8.87,3.7 10.68,0.55c1.8,-3.15 -0.56,-5.44 -3.38,-6.54c-1.84,-0.72 -3.53,-0.55 -5.67,-2.24S73.2,74.12 71.61,75.61z"
android:fillColor="#FF605F"/>
<path
android:pathData="M89.32,79.09c-0.78,1.88 1.97,4.03 4.03,3c2.06,-1.03 2.06,-3.6 -0.6,-4.37C90.47,77.06 89.74,78.07 89.32,79.09z"
android:fillColor="#FF605F"/>
<path
android:pathData="M41.4,95.89c1.22,3.14 5.66,1.29 8.14,-0.17c2.49,-1.46 3.34,-3.43 2.57,-5.31s-4.2,-2.23 -7.11,-0.77C42.64,90.82 40.2,92.81 41.4,95.89z"
android:fillColor="#FF605F"/>
<path
android:pathData="M30.77,78.24c-3.87,2.29 -4.11,6.54 -3.51,7.89c1.54,3.51 3.34,3.26 4.46,5.06c1.11,1.8 2.82,5.33 5.23,4.97c3.43,-0.51 3.17,-4.97 2.06,-7.8c-0.83,-2.11 -1.8,-4.2 -1.97,-6.86C36.86,78.84 36.86,74.64 30.77,78.24z"
android:fillColor="#FF605F"/>
<path
android:pathData="M15.17,19.6c-1.29,3.35 1.03,5.79 3.51,7.03c2.71,1.35 5.67,1.35 5.67,1.35s8.51,10.13 12.43,22.56c3.66,11.6 4.96,25.24 4.73,27.56c-0.27,2.7 -0.41,5.27 0.27,6.22c1.34,1.88 4.73,1.49 5.4,0.14c0.95,-1.89 -0.14,-6.22 -0.14,-6.22s-0.41,-15.67 -4.32,-28.1s-8.92,-19.59 -8.92,-19.59s16.97,4.62 27.97,14.73C78.4,60.54 80.16,69.56 80.16,69.56s0.09,4.49 1.17,5.84c1.08,1.35 6.02,0.54 6.16,-1.49c0.14,-2.03 -1.27,-5.73 -1.27,-5.73s-4.16,-14.83 -21.99,-28.31C48.19,27.75 28.55,23.11 28.55,23.11s-2.01,-3.03 -5.27,-4.73C20.43,16.9 16.38,16.45 15.17,19.6z"
android:fillColor="#759937"/>
<path
android:pathData="M26.81,23.32c-0.54,-1.22 1.47,-7.82 11.47,-13.09s21.39,-6.88 36.09,-6.64c16.51,0.27 24.18,2.8 24.49,3.79c0.32,1.02 -7.67,6.52 -7.67,6.52l-26.42,7.8l-25,3.24L26.81,23.32z"
android:fillColor="#366918"/>
<path
android:pathData="M66.65,28.92c21.01,-3.99 32.13,-20.1 32.13,-21.09c0,-0.12 -1.33,0.14 -3.08,0.55c-1.76,0.41 -17.17,4.76 -25,6.89c-8.92,2.43 -20.55,4.58 -24.59,5.13c-5.95,0.81 -19.05,2.97 -19.05,2.97S42.96,33.42 66.65,28.92z"
android:fillColor="#518E30"/>
</vector>

View file

@ -0,0 +1,60 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M73.13,16.43c-0.58,-0.58 -17.72,-0.37 -17.72,-0.37L16.14,59.68c0,0 -1.37,12.84 -0.11,18.22c0.71,3.03 2.16,8.48 6.56,14.95c3.01,4.43 5.37,6.35 5.37,6.35l23.44,10.13l39.19,4.03l22.95,-14.89c0,0 1.71,-6.84 1.1,-11.84c-0.61,-5.01 -1.59,-8.79 -1.47,-12.09c0.12,-3.3 2.08,-16.55 -1.02,-26.04c-2.74,-8.38 -10.82,-19.99 -20.95,-25.97S73.13,16.43 73.13,16.43z"
android:fillColor="#FF2A23"/>
<path
android:pathData="M67.15,116.99c5.55,1.35 16.32,6.28 20.96,6.99c4.8,0.73 11.63,0.8 18.87,-4.69c6.46,-4.9 9.44,-9.88 9.8,-14.1c0.51,-5.91 -0.52,-11.14 -0.84,-13.64c-0.31,-2.5 -1.72,-7.94 -1.72,-7.94s-4.01,8.88 -9.02,13.05c-5.01,4.17 -17.1,9.7 -29.09,10.11c-11.99,0.42 -20.02,0.73 -28.47,-1.36s-22.8,-9.51 -22.8,-9.51s5.04,7.5 14.88,13.05c7.43,4.19 11.9,5.26 14.91,5.94C59.31,115.96 62.87,115.94 67.15,116.99z"
android:fillColor="#DC0D27"/>
<path
android:pathData="M35.87,33.05c0,0 -20.53,30.67 -20.72,35.78c-0.21,5.84 1,9.32 1,9.32s4.17,-0.15 8.24,-2.77c1.89,-1.21 3.31,-2.42 3.31,-2.42s5.79,8.11 7.66,8.21s6.85,-3.5 9.04,-6.1c2.19,-2.61 3.65,-7.41 3.65,-7.41s3.38,1.53 10.47,1.32s9.27,-0.84 9.79,-1.36c0.52,-0.52 1.22,-3.81 1.84,-6.42c0.63,-2.61 0.69,-6.33 0.69,-7.9c0,-1.56 -0.44,-3.94 -0.44,-3.94s5.59,-2.65 8.2,-5.16c2.61,-2.5 3.86,-3.75 4.28,-4.59c0.42,-0.83 -1.15,-4.9 -2.92,-7.61s-4.17,-4.59 -4.17,-4.59s3.55,-2.82 5.01,-4.38s3.36,-3.99 3.36,-3.99s-3.04,-1.33 -6.69,-2.16c-3.65,-0.83 -10.95,-1.77 -10.95,-1.77L35.87,33.05z"
android:fillColor="#DC0D27"/>
<path
android:pathData="M19.32,52.84c-0.29,0.2 -9.08,13.97 -9.18,15.23c-0.1,1.27 -0.31,3.31 1.07,4c0.98,0.49 1.76,-0.39 2.44,-0.98s2.05,-1.46 3.61,-2.25s4.24,-1.32 6.15,-2.44c2.83,-1.66 5.37,-5.66 5.37,-5.66l6.93,9.96l-2.47,6.14c0,0 1.74,2.09 2.09,2.35c0.63,0.47 4.39,-2.34 6.34,-7.32s2.44,-11.33 2.44,-11.33s3.91,2.73 7.72,3.52c3.81,0.78 11.61,0.39 12.11,-0.2c0.44,-0.52 0.7,-7.96 0.31,-11.28c-0.39,-3.32 -2.22,-7.71 -2.22,-7.71s3.96,0.63 8.65,-0.64s8.2,-4 8.4,-5.08s-2.68,-3.82 -2.68,-3.82l-11.58,-4.09l-1.4,-3.49c0,0 5.92,-1.74 9.01,-5.4c2.23,-2.65 6.23,-6.01 6.23,-7.58s-2.52,-1.21 -2.52,-1.21l-21.48,8.59L19.32,52.84z"
android:fillColor="#759937"/>
<path
android:pathData="M29.77,26.42c6.31,-5.8 12.68,-10.56 22.95,-13.23c10.23,-2.66 17.37,-1.35 19.03,-1.05c1.66,0.29 6.66,1.2 6.27,1.73c-0.17,0.23 -3.82,1.96 -7.44,4.3s-5.14,3.1 -6.05,3.61c-1.36,0.76 -3.32,1.81 -3.24,3.03c0.12,1.66 2.36,1.76 4.8,3.03c2.44,1.27 5.47,3.22 7.72,5.18s3.38,2.74 3.69,3.51c0.34,0.84 -7.01,4.79 -11.99,4.69s-7.32,-2.34 -8.5,-0.59c-1.17,1.76 2.54,6.15 3.52,11.04s0.98,9.77 0.98,9.77S54.03,62 50.57,60.75c-5.21,-1.88 -5.86,-5.89 -8.69,-5.37c-3.83,0.7 -0.41,7.29 -3.1,15.16c-2.4,7.04 -4.44,7.58 -4.44,7.58s-3.31,-3.41 -4.49,-5.27s-2.53,-2.82 -2.82,-6.82c-0.29,-4 0.2,-9.08 -1.76,-9.28s-2.44,3.91 -4.69,5.96s-5.66,3.13 -7.23,4.39c-1.56,1.27 -3.18,3.53 -3.18,3.53s-1.12,-6.75 1.91,-15.83S20.1,35.31 29.77,26.42z"
android:fillColor="#98B715"/>
<path
android:pathData="M17.95,7.09c0.25,-0.93 4.52,-3.52 6.57,-3.42s1.64,0.68 1.93,1.46s-1.17,8.2 1.17,12.5c2.11,3.87 4,5.76 8.2,5.66s-5.27,12.4 -5.27,12.4s-8.11,-4.49 -11.33,-12.79S17.56,8.55 17.95,7.09z"
android:fillColor="#98B715"/>
<path
android:pathData="M101.21,85.18c-1.85,0.09 -3.55,2.61 -2.58,6.03c0.8,2.83 2.83,3.88 4.31,3.69c1.48,-0.18 2.83,-2.46 2.28,-5.66C104.79,86.81 103.67,85.06 101.21,85.18z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M98.75,57.07c-2.53,0.65 -2.28,3.97 -1.72,5.78c0.55,1.81 2.09,3.02 3.75,2.69s2.65,-2.96 2.21,-4.97C102.57,58.55 101.09,56.47 98.75,57.07z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M85.4,33.62c-1.84,1.6 -1.05,4.18 0.55,5.91c1.6,1.72 3.69,2.15 5.05,1.11s0.92,-4.68 -0.68,-6.21C88.72,32.89 86.81,32.39 85.4,33.62z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M76.46,54.55c-1.46,1.31 -1.18,4.16 0.46,6.14c1.64,1.98 4.13,3.1 5.38,1.45c1.25,-1.65 0.33,-4.88 -0.98,-6.6C80,53.82 77.7,53.43 76.46,54.55z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M76.48,58.39c1.65,0.99 3.85,-2.49 2.18,-3.66C76.86,53.46 74.41,57.15 76.48,58.39z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M76.88,79.24c-1.35,1.68 -0.29,4.13 0.95,5.61c1.43,1.7 4.7,2.77 6.19,1.32c1.73,-1.68 0.95,-4.6 -1.29,-6.62C81.04,78.03 78.24,77.53 76.88,79.24z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M78.94,104.01c-0.58,2.09 0.3,4.04 4.18,4.68c3.38,0.55 5.11,-1.05 5.05,-2.77c-0.04,-1.17 -1.35,-3.14 -4.55,-3.69C81.05,101.78 79.43,102.23 78.94,104.01z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M52.85,95.83c-1.31,1.96 0.3,4.67 1.91,5.91c1.84,1.42 4.92,1.11 5.72,-0.62c0.8,-1.72 -0.18,-4.06 -2.09,-5.41C56.48,94.35 53.96,94.17 52.85,95.83z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M31.87,83.83c-2.42,2.02 -0.67,5.06 0.86,6.21c1.72,1.29 3.88,2.21 5.78,0.55s0.06,-5.11 -1.11,-6.15C36.24,83.4 33.72,82.29 31.87,83.83z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M33.6,83.88c-1.63,-0.31 -3.51,2.89 -1.48,4.06C34.01,89.03 35.87,84.31 33.6,83.88z"
android:fillColor="#FFFFFE"/>
<path
android:pathData="M55.68,74.23c-1.28,1.93 -0.06,4.92 1.54,5.97s4.06,1.78 5.54,-0.12c1.48,-1.91 0.62,-4.37 -1.11,-5.78C59.93,72.88 57.04,72.2 55.68,74.23z"
android:fillColor="#FFEBCA"/>
<path
android:pathData="M57.9,73.74c-1.11,-0.12 -1.78,1.05 -1.97,2.15c-0.18,1.11 0.12,2.21 1.29,2.46c1.17,0.25 1.85,-1.48 1.91,-2.15C59.19,75.52 59.07,73.86 57.9,73.74z"
android:fillColor="#FFFFFF"/>
</vector>

View file

@ -0,0 +1,72 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.54,19.59l-59.07,2.37l-16.16,56.05l45.27,39.66l50.01,-39.23z"
android:fillColor="#C54C0F"/>
<path
android:pathData="M89.33,15.78c-0.88,0.98 -2.74,13.61 -1.61,14.52s14.28,-3.43 14.96,-4.68c0.68,-1.24 0.34,-12.67 -0.79,-13.91C100.75,10.46 90.35,14.65 89.33,15.78z"
android:fillColor="#A62714"/>
<path
android:pathData="M26.32,11.59c-1.51,1.16 -1.58,14.14 -0.68,14.93S38.2,32.29 39.9,30.6s0.11,-14.37 -0.68,-15.27C38.43,14.42 27.74,10.51 26.32,11.59z"
android:fillColor="#A62714"/>
<path
android:pathData="M3.16,84.21c0.61,1.29 11.15,3.44 13.21,2.6c3.05,-1.24 9.54,-10.13 9.2,-11.37c-0.34,-1.24 -14.06,-3.56 -15.19,-2.77S2.29,82.37 3.16,84.21z"
android:fillColor="#A62714"/>
<path
android:pathData="M64.33,103.7c-1.13,-0.09 -7.36,11.08 -7.36,12.78c0,1.7 6.57,9.67 7.58,9.74c1.18,0.08 8.13,-8.39 7.8,-9.74C72,115.12 65.8,103.81 64.33,103.7z"
android:fillColor="#A62714"/>
<path
android:pathData="M102.79,75.96c-0.4,1.2 6.79,10.63 8.37,10.97c1.58,0.34 13.23,-1.7 13.8,-4.07s-7.69,-10.86 -9.05,-11.54C114.55,70.64 103.35,74.26 102.79,75.96z"
android:fillColor="#A62714"/>
<path
android:pathData="M58.58,57.57l14.46,-2.2c0,0 1.34,-10.89 5.83,-16.77s11.3,-10.53 11.3,-18.97S84.59,4.45 78.51,4.21s-9.97,3.3 -14.95,3.06s-9.72,-2.94 -16.28,-1.96s-12.15,10.4 -9.24,18.36c2.92,7.96 10.76,12.21 13.25,17.38c1.46,3.03 4.5,16.16 4.5,16.16L58.58,57.57z"
android:fillColor="#FE6111"/>
<path
android:pathData="M70.19,52.19c0,0 9.85,-3.12 14.53,-12.61s7.09,-13.69 14.05,-15.13s12.73,1.8 15.97,5.89c3.24,4.08 1.56,15.13 2.28,17.54s7.69,8.53 7.09,14.29s-6.73,13.69 -14.53,13.33c-7.81,-0.36 -12.49,-4.67 -17.65,-6.11c-5.16,-1.44 -13.64,-0.32 -13.64,-0.32L66.83,56.52L70.19,52.19z"
android:fillColor="#FE6111"/>
<path
android:pathData="M57.58,52.91c0,0 -9.05,-6.83 -11.98,-9.84c-4.11,-4.22 -7.04,-17.21 -18.52,-19.1c-9.24,-1.52 -14.29,4.56 -15.61,10.21s-0.24,9.61 -0.72,11.41c-0.48,1.8 -6.01,9.25 -6.85,14.05s1.44,14.41 10.21,15.85c8.77,1.44 12.49,-2.64 15.13,-4.2c2.64,-1.56 7.45,-3.96 11.41,-3.6c3.96,0.36 9.73,-0.24 9.73,-0.24L57.58,52.91z"
android:fillColor="#FE6111"/>
<path
android:pathData="M47.85,69.37c0,0 -7.17,3.62 -11.57,5.21c-5.09,1.84 -12.93,0.2 -18.7,7.52s-5.64,15.49 -0.72,20.18s10.93,3.96 13.81,6.73c2.88,2.76 7.69,11.17 13.57,12.25s15.01,-1.44 16.81,-10.09s-1.32,-16.21 0.24,-21.5c1.56,-5.28 5.84,-10.87 5.84,-10.87L47.85,69.37z"
android:fillColor="#FE6111"/>
<path
android:pathData="M78.51,66.13L62.39,81.14c0,0 3.72,6.25 4.44,10.57c0.72,4.32 -2.88,20.54 4.2,26.3c7.09,5.76 15.23,4.08 19.43,-1.57c4.2,-5.64 6.18,-8.03 8.46,-9.83c2.28,-1.8 14.03,-6.48 14.99,-12.49c0.96,-6.01 -0.49,-9.02 -6.25,-13.47c-5.76,-4.44 -12.97,-3.24 -18.14,-5.4C86.13,73.83 78.51,66.13 78.51,66.13z"
android:fillColor="#FE6111"/>
<path
android:pathData="M66.47,54.11c0,0 8.04,-12 8.17,-19.94c0.12,-7.69 -4.8,-12.13 -10.45,-11.89c-6.61,0.28 -10.45,6.01 -9.49,13.33s7.9,19.36 7.9,19.36L66.47,54.11z"
android:fillColor="#FFA624"/>
<path
android:pathData="M70.91,58.68c0,0 9.85,-9.97 16.45,-13.33c6.61,-3.36 13.09,-1.08 15.49,5.52s-3.48,12.73 -9.61,13.45c-6.13,0.72 -20.9,0.48 -20.9,0.48L70.91,58.68z"
android:fillColor="#FFA624"/>
<path
android:pathData="M53.74,57.96c0,0 -6.73,-9.73 -14.05,-13.69s-14.89,-1.56 -16.33,4.56c-1.44,6.13 1.65,12.4 10.55,13.95C42.19,64.22 53.26,60 53.26,60L53.74,57.96z"
android:fillColor="#FFA624"/>
<path
android:pathData="M59.33,69.31c0,0 -11,3.42 -14,5.1c-3,1.68 -9.67,5.61 -9.91,12.94s4.44,10.46 11.04,9.74c6.61,-0.72 10.4,-8.75 11.12,-12.96C58.3,79.94 59.33,69.31 59.33,69.31z"
android:fillColor="#FFA624"/>
<path
android:pathData="M66.71,70.81c0,0 0.04,12.39 2.84,18.55c3.01,6.63 10.98,10.77 16.37,6.91c5.04,-3.6 4.68,-11.89 -0.72,-17.78s-16.57,-9.37 -16.57,-9.37L66.71,70.81z"
android:fillColor="#FFA624"/>
<path
android:pathData="M64.13,53.14c0,0 -0.78,-4.34 1.8,-7.24c3.06,-3.45 7.3,-2.92 10.37,-0.88c3.06,2.03 4.6,6.63 1.44,10.51c-2.67,3.29 -6.51,3.16 -6.51,3.16L64.13,53.14z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M71.62,60.94c0,0 2.24,-2.15 6.2,-1.64c3.84,0.5 7.34,4.29 6.2,8.78c-1.21,4.74 -4.31,7.23 -9.56,5.68c-5.12,-1.51 -5.6,-5.94 -5.6,-5.94L71.62,60.94z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M57.85,70.45c0,0 -3.44,3.01 -2.67,8.01c0.68,4.37 3.44,6.37 7.92,6.63c4.48,0.26 7.92,-3.53 7.58,-8.01c-0.34,-4.48 -5.34,-8.7 -5.34,-8.7L57.85,70.45z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M53.88,60.68c0,0 -5.09,-2.52 -8.61,-0.43c-3.62,2.15 -4.48,7.06 -3.27,9.73c1.21,2.67 3.47,5.29 7.92,4.56c4.74,-0.77 6.97,-5.77 6.97,-5.77L53.88,60.68z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M62.15,53.79c0,0 1.03,-4.13 -2.32,-7.84c-3.36,-3.7 -8.61,-2.93 -11.11,-0.09s-3.53,7.49 -0.17,10.76c3.01,2.93 8.18,2.15 8.18,2.15L62.15,53.79z"
android:fillColor="#FFFEFF"/>
<path
android:pathData="M55.6,55c-3.98,3.76 -5.17,11.11 -0.6,15.41c4.56,4.31 11.86,3.89 15.39,0.7c3.53,-3.19 4.85,-9.22 1.4,-14.56C68.35,51.21 60.25,50.61 55.6,55z"
android:fillColor="#FCC318"/>
</vector>

View file

@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M12.19,51.32c10.07,-4.17 26.12,1.74 29.42,1.22c3.3,-0.52 3.82,-2.95 9.38,-2.95s9.9,3.65 9.9,3.65s1.57,-1.41 4.69,-1.56c3.65,-0.17 8.16,2.43 11.81,5.38C81.01,60.01 85.18,64 89,64.52c3.82,0.52 7.47,0.69 10.94,-5.03s0.87,-14.41 -0.35,-17.19s-5.03,-7.64 -5.03,-7.64v-6.94l5.9,2.78c0,0 8.68,6.6 11.81,10.59s12.33,15.28 8.16,35.07c-4.17,19.79 -15.62,22.92 -15.62,22.92l13.37,0.52l4.69,2.26c0,0 -1.39,3.47 -4.51,5.21c-3.26,1.81 -8.68,4.51 -18.06,2.26s-62.33,-2.08 -62.33,-2.08s-3.99,5.03 -12.85,5.38c-8.85,0.35 -13,-1.19 -13.35,-2.58c-0.35,-1.39 3.1,-3.32 3.1,-3.32l9.55,-2.08l8.51,-5.56l-18.4,-23.78l-8.33,-7.64c0,0 -1.41,-4.83 0.37,-10.27C7.63,54.09 9.43,52.47 12.19,51.32z"
android:fillColor="#6BA4AE"/>
<path
android:pathData="M98.38,33.79c0,0 6.52,-6.68 6.94,-13.72c0.39,-6.41 -1.6,-7.96 -2.47,-7.61c-0.87,0.35 -1.52,2.57 -3.08,3.96s-5.38,4.34 -6.42,5.9s-0.52,5.03 -0.52,5.03s-3.99,-1.22 -6.6,-0.35s-5.03,3.65 -6.77,4.34c-1.74,0.69 -4.34,0.87 -4.34,1.91c0,1.04 5.03,3.99 10.94,3.99C91.95,37.26 98.38,33.79 98.38,33.79z"
android:fillColor="#6BA4AE"/>
<path
android:pathData="M103.24,55.49c0,0 -3.82,-1.04 -5.56,1.91c-1.74,2.95 0.35,6.08 0.35,6.08L103.24,55.49z"
android:fillColor="#6BA4AE"/>
<path
android:pathData="M74.68,77.73c0.61,1.69 -0.38,3.6 -2.21,4.26c-1.83,0.66 -3.81,-0.17 -4.42,-1.87c-0.61,-1.69 0.45,-3.43 2.21,-4.26C72.44,74.83 74.07,76.04 74.68,77.73z"
android:fillColor="#2E302F"/>
<path
android:pathData="M5.57,63.92c0,0 2.25,-1.34 5.21,-1.34s8.31,1.41 13.23,3.24s20.98,9.01 24.35,10.7c3.38,1.69 7.21,3.01 8.73,3.52c2.53,0.84 6.9,1.41 6.9,1.41S51.18,71.31 38.79,65.4s-19.43,-8.73 -27.59,-8.59c-5.23,0.09 -4.72,0.7 -4.72,0.7S5.57,61.25 5.57,63.92z"
android:fillColor="#FEE9C6"/>
<path
android:pathData="M8.24,66.11c3.66,0 12.46,2.06 16.33,3.52c6.34,2.39 16.75,7.46 22.1,9.43c5.35,1.97 20.27,6.62 29.14,11.83s13.09,11.26 15.91,13.51s6.19,4.65 6.19,4.65s-18.72,11.26 -41.81,6.48S23.87,92.29 22.18,89.9s-6.19,-10.28 -8.17,-12.39c-1.97,-2.11 -6.84,-7.86 -7.83,-9.86C5.29,65.82 8.24,66.11 8.24,66.11z"
android:fillColor="#A5D0D6"/>
<path
android:pathData="M88.54,90.6c-1.15,0.34 -1.03,2.91 5.26,6.01c6.29,3.1 15.04,3.57 20.39,3.57c5.35,0 7.98,2.78 8.67,1.67c0.69,-1.11 -1.03,-3.53 -7.48,-4.07c-5.63,-0.47 -10.89,0.23 -17.36,-2.21C90.47,92.73 90.13,90.13 88.54,90.6z"
android:fillColor="#A5D0D6"/>
<path
android:pathData="M29.88,99.14c0,0 -4.88,3.94 -8.45,4.69c-3.57,0.75 -7.23,1.13 -9.01,3.1s-0.66,3.19 -0.66,3.19s1.69,-2.16 4.79,-2.53s7.6,-1.31 9.85,-2.53c2.25,-1.22 7.41,-4.32 7.41,-4.32L29.88,99.14z"
android:fillColor="#A5D0D6"/>
<path
android:pathData="M61.88,87.13c0,0 0.28,3.28 6.38,8.45c6.1,5.16 14.43,7.25 17.62,9.31c3.19,2.06 7.53,6.55 7.53,6.55l1.88,-1.03c0,0 -4.55,-5.16 -9.2,-7.91c-3.62,-2.14 -9.95,-4.29 -13.98,-6.92c-4.04,-2.63 -5.98,-4.34 -6.92,-5.47C64.25,88.98 61.51,85.72 61.88,87.13z"
android:fillColor="#DBECF7"/>
<path
android:pathData="M65.82,102.43c7.19,4.16 9.25,3.44 13.85,5.41s6.92,5.99 6.92,5.99l2.6,-0.92c0,0 -3.83,-5.66 -9,-7.54c-5.16,-1.88 -11.56,-3.13 -14.84,-5.95c-3.28,-2.82 -6.19,-7.56 -9.95,-12.06s-5.73,-5.21 -5.44,-4.46c0.28,0.75 3.1,4.41 5.07,7.6C57,93.7 60.47,99.33 65.82,102.43z"
android:fillColor="#DBECF7"/>
<path
android:pathData="M22.75,83.75c4.69,6.32 7.88,5.91 12.2,11.64s6.66,11.17 8.35,13.14s3.71,3.82 6.62,4.95c2.89,1.12 5.21,1.83 5.21,1.83s-6.48,-0.12 -11.73,-3.68c-5.26,-3.57 -6.42,-9.5 -10.3,-14.55c-2.82,-3.66 -5.06,-5.32 -7.46,-7.25c-4.79,-3.85 -7.09,-8.7 -8.45,-11.68c-2.35,-5.16 -7.02,-8.94 -5.51,-8.47c1.5,0.47 3.47,2.67 5.3,5.09C19.55,78.17 20.59,80.84 22.75,83.75z"
android:fillColor="#DBECF7"/>
<path
android:pathData="M22.46,72.58c0,0 0.47,6.29 5.26,11.07s9.2,3.57 12.01,7.13s4.32,13.42 10.04,17.93c5.73,4.5 7.13,2.53 12.29,4.41c5.16,1.88 5.03,3.67 5.03,3.67l3.17,-0.14c0,0 -1.45,-3.6 -6.61,-5.29c-5.16,-1.69 -8.34,-0.86 -12.37,-4.71c-4.04,-3.85 -6.29,-12.67 -9.48,-16.99c-3.19,-4.32 -9.67,-4.32 -12.76,-7.79C24.63,76.94 23.03,70.96 22.46,72.58z"
android:fillColor="#DBECF7"/>
<path
android:pathData="M46.87,88.72c3.05,3.86 3.19,10.32 8.26,14.92s10.57,4.26 14.51,5.95c3.94,1.69 7.87,6.41 7.87,6.41l3.24,-0.7c0,0 -2.76,-3.63 -9.7,-7.47c-5.92,-3.27 -9.44,-1.38 -13.85,-5.41c-4.41,-4.04 -4.5,-10.03 -8.35,-15.02c-3.85,-4.97 -8.92,-5.54 -11.92,-7.13c-2.58,-1.37 -6.43,-7.56 -5.73,-5.16c0.43,1.45 1.88,5.07 4.88,7.23C39.08,84.5 43.67,84.69 46.87,88.72z"
android:fillColor="#DBECF7"/>
</vector>

View file

@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M71.45,84.59l-9.39,-16.99l-23.18,8.87c0,0 -1.13,1.45 -0.89,3.99c0.1,1.13 0.61,4.32 0.61,4.32l-4.32,0.66c0,0 -6.19,5.16 -4.22,13.23c1.5,6.13 3.1,9.39 3.1,9.39l-0.84,6.01c0,0 13.8,6 27.22,5.63c17.18,-0.47 23.65,-9.57 23.65,-9.57l-4.69,-21.21L71.45,84.59z"
android:fillColor="#845A54"/>
<path
android:pathData="M31.66,86.57c-1.99,1.87 -2.32,4.83 -2.16,5.87c0.38,2.44 4.13,9.15 8.26,8.87c4.13,-0.28 2.16,-8.54 0.84,-11.54S34.85,83.56 31.66,86.57z"
android:fillColor="#B5885E"/>
<path
android:pathData="M20.49,118.94c-0.14,2.05 2.16,1.97 6.48,1.97s14.73,-0.75 14.73,-0.75l-0.84,-5.73c0,0 -2.61,0.18 -6.19,-1.78c-1.45,-0.8 -1.92,-1.83 -1.92,-1.83S20.77,114.82 20.49,118.94z"
android:fillColor="#B5885E"/>
<path
android:pathData="M51.61,80.46c0,0 -4.6,-0.18 -8.03,3.81c-2.18,2.53 -6.66,14.69 -3.38,16.38c3.28,1.69 5.53,-4.27 6.76,-7.04c1.13,-2.53 3.19,-5.44 4.97,-6.38c1.78,-0.94 3.28,-1.97 3.28,-1.97L51.61,80.46z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M43.96,113.31c0,0 -1.6,0 -3.19,0.56c-1.6,0.56 -10.51,4.88 -10.42,7.23c0.09,2.35 5.54,2.35 12.29,2.25c6.76,-0.09 8.54,-1.41 9.1,-1.97c0.56,-0.56 2.72,-3.47 1.97,-3.85C52.97,117.16 43.96,113.31 43.96,113.31z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M69.01,70.23c0,0 5.26,-4.6 7.32,-9.01c2.06,-4.41 1.97,-8.63 1.97,-8.63s9.97,-2.63 7.46,-14.96c-2.12,-10.44 -10.56,-8.22 -10.56,-8.22s-5.73,-11.92 -21.12,-15.2s-28.87,4.32 -34.54,12.01c-6.57,8.92 -5.44,20.37 -5.44,20.37s-5.07,-0.47 -7.41,4.04c-2.43,4.67 -1.6,12.29 2.91,15.77c4.5,3.47 11.54,2.53 11.54,2.53s4.88,5.26 10.51,7.6c5.78,2.41 11.26,2.72 17.93,2.06s12.01,-4.13 12.01,-4.13s-0.28,1.88 0.94,4.32c0.76,1.51 3.38,4.41 3.38,4.41s-4.27,-2.25 -7.7,-2.86c-3.72,-0.66 -6.1,-0.42 -7.51,0.42c-1.07,0.64 0.31,5.73 1.88,6.01c1.6,0.28 4.22,-0.47 8.82,1.31c4.6,1.78 10.51,6.01 12.01,6.95c1.5,0.94 4.55,2.53 4.79,4.6c0.18,1.59 -2.39,3.66 -6.9,-0.94c-4.32,-4.41 -8.49,-8.63 -13.19,-9.2c-4.69,-0.56 -7.6,0.66 -9.76,5.35c-2.77,6.03 -5.07,13.33 -5.54,15.2c-0.47,1.88 -1.78,2.91 -0.75,4.69c0.72,1.24 8.67,5.87 10.51,5.73c2.35,-0.19 4.22,-4.97 4.79,-5.82c0.56,-0.84 1.78,-2.63 1.78,-2.63s4.13,9.76 12.86,8.92s9.95,-6.29 9.95,-6.29s6.79,0.34 13.98,-1.71c9.64,-2.75 16.23,-11.56 18.3,-25.69c1.5,-10.23 -0.38,-25.15 -5.16,-37.64c-1.76,-4.58 -3.83,-10.01 -5.16,-13.8c-3.41,-9.66 -4.6,-16.64 0.94,-18.68c2.82,-1.04 4.63,0.19 5.45,1.8c1.12,2.21 1.31,4.95 4.87,6.36c2.54,1 5.73,0.19 7.13,-2.16c1.76,-2.94 1.14,-7.24 -2.63,-12.11c-6.48,-8.35 -17.27,-7.56 -23.18,-3.1c-6.32,4.76 -9.01,11.1 -5.91,22.99c2.91,11.17 9.31,25.39 10.7,32.29c1.88,9.29 3.58,32.13 -7.98,36.79c-5.35,2.16 -9.29,1.31 -9.29,1.31s-0.94,-10.68 -4.32,-18.4C75.84,74.07 69.01,70.23 69.01,70.23z"
android:fillColor="#B5885D"/>
<path
android:pathData="M71.36,35.28c-0.16,0.2 0.91,3.13 1.31,6.19c0.45,3.39 0.59,6.67 0.88,6.77c0.56,0.19 8.88,-1.89 7.85,-9.59S71.74,34.81 71.36,35.28z"
android:fillColor="#FFCF8C"/>
<path
android:pathData="M14.58,51.28c-0.74,-0.56 -5.55,0.79 -4.97,6.29c0.75,7.13 7.79,7.13 8.45,6.66c0.34,-0.24 -1,-3.49 -1.88,-6.66C15.33,54.52 14.95,51.55 14.58,51.28z"
android:fillColor="#FFCF8C"/>
<path
android:pathData="M41.23,36.35c-4.5,1.5 -10.79,-5.73 -16.24,0c-6.67,7.01 1.26,13.31 1.88,18.21c0.38,3 -1.31,5.26 0.38,10.32c1.41,4.22 9.24,10.5 23.48,7.61c13.33,-2.71 16.46,-11.15 16.11,-16.46c-0.39,-5.92 -3.17,-6.26 -3.73,-9.26s2.59,-14.82 -6.57,-17.27C47.05,26.97 46.08,34.74 41.23,36.35z"
android:fillColor="#FFCF8C"/>
<path
android:pathData="M56.88,43.58c0.56,3.38 0.21,5.63 -2.18,6.19c-2.86,0.67 -4.72,-1.27 -5.28,-4.72c-0.69,-4.21 0.16,-6.19 2.35,-6.6C54.47,37.95 56.18,39.33 56.88,43.58z"
android:fillColor="#000504"/>
<path
android:pathData="M37.88,46.89c0.64,3.22 0.75,6.1 -1.83,6.76c-2.47,0.63 -4.52,-0.95 -5.42,-4.43c-1.06,-4.08 -0.71,-6.44 1.62,-7.11C34.65,41.41 36.89,41.89 37.88,46.89z"
android:fillColor="#000504"/>
<path
android:pathData="M41.26,52.53c0.06,1.62 2.81,3.58 4.42,3.33c1.74,-0.28 3.38,-3.72 2.81,-4.74C47.75,49.8 41.21,51.05 41.26,52.53z"
android:fillColor="#000504"/>
<path
android:pathData="M34.68,62.87c0.28,2.25 5.07,5.65 13.8,3.94c9.01,-1.76 10.35,-7.25 10.21,-8.59c-0.14,-1.34 -4.72,-2.04 -12.53,-0.7C40.03,58.57 34.45,61.07 34.68,62.87z"
android:fillColor="#FF6B19"/>
</vector>

View file

@ -0,0 +1,81 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M88.07,41.61c0,0 31.49,-5.44 33.32,-3.05s2.29,9.59 1.31,13.66c-0.99,4.08 -4.65,10.37 -15.35,13.33c-8.99,2.48 -12.01,2.49 -16.66,5.26c-3.71,2.21 -9.1,18.11 -9.95,20.37s-7.04,11.12 -19.99,9.29C48.1,98.67 40.34,86.8 43.02,75.12S88.07,41.61 88.07,41.61z"
android:fillColor="#A92813"/>
<path
android:pathData="M65.12,70.75c0,0 -17.6,0.42 -23.09,-5.35S30.77,46.82 29.22,36.54s-6.62,-16.33 -9.01,-17.88s-4.86,-1.97 -5.14,-0.42c-0.28,1.55 4.07,6.73 4.86,9.15c1.97,6.05 0.88,20.13 2.53,26.61c1.69,6.63 3.03,8.9 6.76,13.23c2.78,3.23 7.18,6.34 7.18,6.34s-17.03,4.08 -21.82,-0.99s-4.22,-9.29 -3.8,-11.4c0.42,-2.11 3.8,-7.88 2.82,-8.45c-0.99,-0.56 -7.18,4.22 -8.02,10.56s1.25,11.62 4.79,15.49c4.61,5.03 13.34,5.88 18.41,5.46c5.07,-0.42 10.17,-2.08 10.17,-2.08s-0.14,20.69 -10,20.55c-7.46,-0.11 -8.31,-2.53 -9.01,-3.8c-0.7,-1.27 -1.43,-2.32 -1.06,1.72c0.25,2.67 3.38,10.91 13.2,8.8c8.32,-1.79 13.47,-9.44 15.17,-11.79c1.87,-2.57 6.19,-8.45 6.19,-8.45s-1.67,11.43 -1.31,19.52c0.15,3.38 1.03,11.31 7.23,13.98c6.19,2.67 14.11,-0.67 15.52,-6.02c1.41,-5.35 -1.44,-8.34 -1.87,-8.76s-2.39,6.05 -2.39,6.05s-5.07,3.38 -7.04,0.99s0.42,-20.98 0.7,-24.92c0.28,-3.94 4.36,-0.14 5.77,1.83c1.41,1.97 3.7,6.86 7.18,10.28c5.74,5.65 11.97,8.1 20.82,7.42c9.22,-0.71 14.98,-4.33 18.07,-8.97c3.1,-4.65 3.77,-9.26 2.78,-10.1c-0.99,-0.84 -7.74,7.29 -9.15,8.41c-1.41,1.13 -15.49,0 -17.46,0c-1.97,0 -2.39,-3.52 -2.39,-3.52s8.02,-2.11 10.84,-4.22s10.56,-6.55 11.12,-19.15c0.43,-9.72 0,-35.81 0.99,-40.03c0.99,-4.22 4.74,-7.79 3.89,-9.2s-4.6,0.94 -5.16,1.36c-0.56,0.42 -6.48,3.24 -6.62,8.31s-1.83,41.25 -4.65,44.2c-2.82,2.96 -11.97,8.87 -17.03,8.17C78.21,84.13 65.12,70.75 65.12,70.75z"
android:fillColor="#FFA8A8"/>
<path
android:pathData="M118.48,90.32c-1.69,-0.14 -3.1,2.11 -4.79,3.38c-1.69,1.27 -5.07,4.5 -13.94,4.22c-8.87,-0.28 -14.78,-10 -14.78,-10s2.82,0.28 6.05,-0.56c3.24,-0.84 8.38,-3.59 11.61,-9.43c3.85,-6.94 2.99,-24.07 3.03,-31.68c0.05,-10.51 3.47,-16.1 4.79,-17.88c2.25,-3.05 5.82,-4.79 5.96,-5.77c0.14,-0.99 -4.46,-0.42 -7.09,1.13c-2.92,1.72 -4.36,3.66 -4.36,3.66s-6.76,-0.7 -10.42,-0.7s-10.69,0.54 -16.82,1.97c-7.53,1.76 -13.16,6.05 -14.71,6.34c0,0 -5,-4.97 -13.23,0.7c-8.59,5.91 -2.39,18.44 -2.39,18.44s-0.42,1.81 -2.67,2.39c-3.24,0.84 -8.09,-2.32 -9.85,-7.95c-1.48,-4.75 -1.13,-11.33 -2.53,-18.93c-1.41,-7.6 -5.49,-10.98 -9.15,-12.67c-3.66,-1.69 -8.31,-0.14 -7.6,0.84c0.7,0.99 6.05,2.82 9.29,8.73c3.24,5.91 1.69,19.71 5.21,29.56c3.52,9.85 10,13.09 10,13.09s-3.66,1.69 -5.63,2.11c-1.97,0.42 -7.32,1.41 -12.25,0.39c-5.13,-1.06 -8.59,-4.82 -9.15,-8.97c-0.48,-3.53 1.83,-9.71 0.56,-10s-5.81,6.19 -5.95,11.54c-0.14,5.35 3.98,11.54 10.17,14.5c6.19,2.96 19.15,0.28 19.15,0.28s-1.06,1.62 -1.2,4.72c-0.14,3.1 -1.97,10.03 -5.28,12.04c-2.27,1.38 -4.29,1.83 -5,0c-0.7,-1.83 2.89,-2.53 2.75,-4.36c-0.14,-1.83 -3.1,-2.29 -5.91,-0.56c-1.9,1.16 -5.07,5.35 -3.1,9.85c1.97,4.5 6.86,6.09 12.25,4.65c8.04,-2.15 17.32,-17.03 20.27,-19.57c2.96,-2.53 4.93,-1.83 4.93,-1.83s-1.41,13.09 -1.13,21.96s5.95,14.66 12.25,13.66c7.04,-1.13 7.46,-6.9 6.34,-10c-0.99,-2.71 -4.72,-3.73 -5.77,-2.96c-1.37,1.01 -0.46,2.67 0.07,3.13c1.27,1.09 0.21,3.63 -1.76,3.06c-1.97,-0.56 -0.14,-7.18 0.7,-10.42c0.84,-3.24 2.82,-10.84 5.07,-11.4c2.25,-0.56 4.54,3.39 6.62,5.77c3.56,4.08 9.36,7.25 17.63,7.39c10.93,0.19 17.7,-6.55 19.25,-8.24C117.49,94.26 120.16,90.46 118.48,90.32zM93.13,60.9c3.24,-2.25 6.01,-3.28 6.01,-3.28s0.09,11.54 -4.32,17.5c-3.65,4.93 -7.18,3.8 -7.18,3.8s3.63,-1.98 3.94,-5.77c0.42,-5.21 -5.07,-6.19 -5.07,-6.19S90.31,62.86 93.13,60.9z"
android:fillColor="#FF615E"/>
<path
android:pathData="M112.09,53.93c0,0 11.59,-3.45 10.46,-11.9s-9.67,-10.32 -9.67,-10.32s-1.22,4.41 -1.03,10.18C111.94,44.42 112.09,53.93 112.09,53.93z"
android:fillColor="#FF615E"/>
<path
android:pathData="M87.53,75.6c-1.29,2.06 -3.49,2.49 -5.09,1.49c-1.6,-1 -1.85,-3.01 -0.56,-5.07c1.29,-2.06 3.93,-2.99 5.54,-1.99S88.82,73.54 87.53,75.6z"
android:fillColor="#A52914"/>
<path
android:pathData="M65.33,63.5c1.8,-0.11 1.2,-1.9 0.84,-4.29c-0.35,-2.39 -1.65,-8.68 2.04,-12.46c3.1,-3.17 6.96,-3.13 9.85,-1.27c2.18,1.41 3.17,1.97 4.01,0.92c0.56,-0.7 -0.28,-2.04 -1.69,-3.24c-1.79,-1.52 -7.95,-4.65 -13.73,0.14c-5.46,4.53 -4.58,13.3 -3.87,16.33C63.5,62.66 64.2,63.57 65.33,63.5z"
android:fillColor="#A52914"/>
<path
android:pathData="M47.66,35.13c-3.66,3.8 -4.41,6.84 -4.01,11.97c0.35,4.58 1.97,8.09 3.73,7.39c1.47,-0.59 0.84,-3.31 0.35,-4.72s-1.34,-8.17 2.25,-11.83c3.59,-3.66 7.67,-3.17 9.5,-2.75s2.6,0.84 3.52,-0.21s-0.99,-2.75 -2.82,-3.17S52.5,30.11 47.66,35.13z"
android:fillColor="#A52914"/>
<path
android:pathData="M82.01,57.66c0,2.92 -2.19,5.85 -5.07,5.7c-2.82,-0.14 -4.15,-2.86 -4.15,-5.77s1.69,-5.28 4.65,-5.49C80.81,51.86 82.01,54.74 82.01,57.66z"
android:fillColor="#2C2B2D"/>
<path
android:pathData="M108.42,49.66a2.21,2.11 99.12,1 0,0.7 -4.36a2.21,2.11 99.12,1 0,-0.7 4.36z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M109.93,35.52a2.16,1.88 110.6,1 0,1.52 -4.04a2.16,1.88 110.6,1 0,-1.52 4.04z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M106.18,63.15a2.58,2.67 0,1 0,5.16 0a2.58,2.67 0,1 0,-5.16 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M105.19,81.47a2.78,2.62 113.92,1 0,2.25 -5.08a2.78,2.62 113.92,1 0,-2.25 5.08z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M108.07,104.28a1.89,2.11 66.96,1 0,3.88 -1.65a1.89,2.11 66.96,1 0,-3.88 1.65z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M95.19,106.7a2.39,2.25 0,1 0,4.78 0a2.39,2.25 0,1 0,-4.78 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M82.44,104.25a2.3,2.39 0,1 0,4.6 0a2.3,2.39 0,1 0,-4.6 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M58.41,120.82a2.49,2.44 0,1 0,4.98 0a2.49,2.44 0,1 0,-4.98 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M51.84,106.89a2.33,1.74 86.12,1 0,3.47 -0.24a2.33,1.74 86.12,1 0,-3.47 0.24z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M38.73,104.33a2.3,2.58 47.26,1 0,3.79 -3.5a2.3,2.58 47.26,1 0,-3.79 3.5z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M25.75,108.25a2.58,2.35 0,1 0,5.16 0a2.58,2.35 0,1 0,-5.16 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M23.4,82.44a2.3,2.06 0,1 0,4.6 0a2.3,2.06 0,1 0,-4.6 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M12.84,80.92a2.16,2.25 120,1 0,2.16 -3.74a2.16,2.25 120,1 0,-2.16 3.74z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M5.16,71a2.16,1.86 68.99,1 0,3.47 -1.33a2.16,1.86 68.99,1 0,-3.47 1.33z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M22.99,51.49a2.21,2.3 0,1 0,4.42 0a2.21,2.3 0,1 0,-4.42 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M21.81,38.32a2.16,2.25 0,1 0,4.32 0a2.16,2.25 0,1 0,-4.32 0z"
android:fillColor="#FCD4B0"/>
<path
android:pathData="M20.38,27.29a2.11,1.92 68.8,1 0,3.58 -1.39a2.11,1.92 68.8,1 0,-3.58 1.39z"
android:fillColor="#FCD4B0"/>
</vector>

View file

@ -0,0 +1,61 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M102.92,75.96l-4.08,-6.12L82.1,49.39c0,0 -15.07,-6.58 -25.28,-6.23c-7.04,0.24 -20.67,-2.22 -35.63,10.1C9.98,62.49 7.63,73.16 7.63,73.16l11.09,6.16l-8.45,5.63c0,0 9.72,17.82 36.62,21.3c31.89,4.13 43.57,-12.49 50.68,-21.78C98.31,83.5 102.92,75.96 102.92,75.96z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="55.27"
android:startY="43.11"
android:endX="55.27"
android:endY="106.9"
android:type="linear">
<item android:offset="0.08" android:color="#FF1483BC"/>
<item android:offset="0.19" android:color="#FF1F8CC2"/>
<item android:offset="0.38" android:color="#FF3CA4D3"/>
<item android:offset="0.58" android:color="#FF62C2E8"/>
<item android:offset="0.96" android:color="#FF99D6EF"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M57.66,27.63c-0.84,0.47 -6.55,5.19 -9.22,8.56c-2.36,2.98 -4.86,7.32 -4.86,7.32s12.67,-0.4 21.87,2.7s19.58,9.88 27.59,19.33c6.15,7.25 7.77,10.14 7.84,11.47c0.07,1.34 -5.07,7.81 -10.65,13.4c-3.57,3.57 -7.09,6.95 -16.38,12.29c-4.37,2.51 -7.81,3.38 -7.81,3.38s10.16,1.77 15.13,1.83c5.54,0.07 8.78,-0.33 9.15,-1.64c0.38,-1.31 -5.82,-6.01 -5.82,-6.01s6.62,-5.35 11.31,-10.86c1.86,-2.19 6.71,-8.38 6.71,-8.38s5.18,5.39 8.14,7.88c3.1,2.6 10.42,8.17 11.57,7.7c1.32,-0.54 -1.5,-8.92 -3.38,-12.29c-1.88,-3.38 -6.76,-7.98 -6.76,-7.98s6.17,-4.74 8.42,-10.09c2.25,-5.35 3.97,-12.34 2.56,-13c-1.41,-0.66 -10.68,8.87 -12.55,10.75c-1.88,1.88 -7.02,8.09 -7.02,8.09s-4.36,-4.58 -5.39,-5.8c-1.03,-1.22 -4.32,-5.35 -4.32,-5.35s-7.03,-14.3 -19.62,-24.31C65.45,29.69 57.66,27.63 57.66,27.63z"
android:fillColor="#1B65A6"/>
<!-- <path-->
<!-- android:strokeWidth="1"-->
<!-- android:pathData="M78.78,47.52"-->
<!-- android:fillColor="#00000000">-->
<!-- <aapt:attr name="android:strokeColor">-->
<!-- <gradient -->
<!-- android:startX="78.78"-->
<!-- android:startY="47.52"-->
<!-- android:endX="78.78"-->
<!-- android:endY="47.52"-->
<!-- android:type="linear">-->
<!-- <item android:offset="0.08" android:color="#FF1483BC"/>-->
<!-- <item android:offset="0.19" android:color="#FF1F8CC2"/>-->
<!-- <item android:offset="0.38" android:color="#FF3CA4D3"/>-->
<!-- <item android:offset="0.58" android:color="#FF62C2E8"/>-->
<!-- <item android:offset="0.96" android:color="#FF99D6EF"/>-->
<!-- </gradient>-->
<!-- </aapt:attr>-->
<!-- </path>-->
<path
android:pathData="M48.93,77.79c0,1.69 -0.77,7.34 4.22,11.05c5.81,4.31 14.55,5.04 17.83,4.86c5.04,-0.28 7.23,-1.6 7.23,-1.6s-5.16,-6.48 -14.27,-10.89S48.93,77.79 48.93,77.79z"
android:fillColor="#1B65A6"/>
<path
android:pathData="M5.29,72.79c-0.86,1.66 0.28,2.42 3.1,3.73c2.82,1.31 7.13,2.91 7.13,2.91s-2.72,1.13 -4.13,2.06c-1.41,0.94 -3.95,1.89 -3.28,3.57c0.49,1.24 1.69,1.13 3.94,-0.09s7.23,-4.32 7.32,-5.54s-3.21,-3.24 -5.77,-4.6C10.5,73.19 6.27,70.89 5.29,72.79z"
android:fillColor="#1B65A6"/>
<path
android:pathData="M35.6,69.01c0,1.94 -1.23,3.59 -3.66,3.75c-2.82,0.19 -3.94,-1.86 -3.94,-3.8s1.83,-3.47 3.61,-3.64C33.94,65.12 35.6,67.07 35.6,69.01z"
android:fillColor="#262D33"/>
<path
android:pathData="M46.3,70.89c-0.95,0.13 -1.31,1.31 -1.22,3.19c0.09,1.88 0.56,3.38 0.28,4.41c-0.28,1.03 -4.22,6.48 -4.97,7.51c-0.75,1.03 -1.69,2.53 -0.66,3.38s2.35,-0.28 3.1,-1.03c0.75,-0.75 5.82,-7.41 6.01,-8.92c0.19,-1.5 -0.47,-5.16 -0.56,-5.91C48.18,72.77 47.71,70.7 46.3,70.89z"
android:fillColor="#E0ECF3"/>
<path
android:pathData="M51.18,70.89c-0.09,1.6 1.78,1.69 3.94,1.69c1.97,0 13.38,0.52 19.57,0.84c6.62,0.35 15.58,1.95 19.54,2.63c2.35,0.4 4.6,0.94 4.6,-0.66c0,-1.52 -2.46,-1.76 -4.88,-2.25c-2.04,-0.42 -8.56,-2.18 -19.19,-2.84c-7.97,-0.49 -18.7,-0.82 -19.92,-0.73C53.62,69.67 51.27,69.37 51.18,70.89z"
android:fillColor="#E0ECF3"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M96.89,56.06l1.31,-12.67l-3.85,-17.46c0,0 2.82,-3.1 4.41,-3.85s3.38,-1.17 3.38,-1.17s4.13,-0.7 6.85,-0.8c2.72,-0.09 5.82,0.38 5.73,-0.94c-0.09,-1.31 -12.29,-3.38 -18.96,-3.57c-6.66,-0.19 -28.91,0.84 -44.96,8.63S30.53,38.98 30.53,38.98l-5.35,10.61l-5.35,2.16c0,0 -4.88,8.17 -6.48,12.86s-3.28,8.35 -4.13,9.29c-0.84,0.94 -5.07,4.22 -5.07,4.88s4.32,3.1 4.32,3.75c0,0.66 -3.47,1.5 -3.47,2.25s6.1,7.6 15.3,14.55s20.55,12.01 28.91,14.08c8.35,2.06 19.52,3 19.99,2.63c0.47,-0.38 -8.73,-7.6 -8.73,-7.6s8.82,3.75 14.36,4.41c5.54,0.66 6.41,0.7 11.83,0.49c5.42,-0.21 14.17,-7.91 14.17,-7.91l4.69,-15.49l-2.11,-10.11c0,0 -2.84,-4.55 -2.96,-5.49c-0.12,-0.94 1.17,-0.22 2.32,0.07c1.41,0.35 4.69,2.63 6.76,4.79c1.27,1.33 5.18,5.5 6.8,7.25c0.77,0.84 2.15,0.52 2.49,-0.56l1.53,-8.8l-0.84,-27.78l-3.18,-10.93c-0.36,-0.94 -1.63,-1.11 -2.22,-0.28c-2.25,3.17 -7.15,10.68 -8.59,12.53c-1.97,2.53 -5.34,6.36 -7.25,7.04c-1.13,0.4 -1.55,0.21 -1.55,0.21L96.89,56.06z"
android:fillColor="#FFB800"/>
<path
android:pathData="M85.25,113.13c0,0 14.44,-2.85 16.96,-16.75c1.97,-10.84 -2.11,-22.1 -2.11,-22.1s0.15,-1.54 1.83,0.56c3.1,3.87 8.87,16.68 1.48,29.7c-6.25,11.01 -17.74,9.01 -18.44,9.01S85.25,113.13 85.25,113.13z"
android:fillColor="#B5D219"/>
<path
android:pathData="M102.14,20.91c0,0 -8.8,-0.63 -9.15,7.46c-0.28,6.41 3.24,10.91 3.1,17.81c-0.14,6.9 -0.9,11.89 0.63,11.68c1.06,-0.14 3.38,-3.45 3.45,-10.56s-4.71,-14.46 -4.58,-19.01C95.74,23.59 102.14,20.91 102.14,20.91z"
android:fillColor="#B5D219"/>
<path
android:pathData="M114.96,37.53c-1.47,0.58 0.07,5.07 0.56,6.48s1.94,9.08 2.04,20.34c0.07,8.09 -0.7,15.98 -1.06,17.74s-1.13,4.43 0.77,4.86s3.79,-3.52 4.86,-10.21c0.84,-5.28 0.77,-10.07 0.84,-15.06c0.15,-10.5 -2.39,-17.25 -3.31,-19.5C118.76,39.92 116.93,36.75 114.96,37.53z"
android:fillColor="#2C2F30"/>
<path
android:pathData="M77.74,39.26c-1.69,0.19 1.12,6.42 1.88,10.98c1.22,7.32 1.22,12.01 1.06,18.04c-0.15,5.59 -1.53,15.27 -5.91,23.51c-0.96,1.81 -1.55,3.38 -0.21,3.52c2.67,0.28 7.7,-6.22 10.28,-13.23c2.9,-7.89 3.45,-14.92 2.39,-23.3c-0.85,-6.74 -2.42,-11.19 -3.47,-13.51C82.8,43.17 80.65,38.94 77.74,39.26z"
android:fillColor="#2C2F30"/>
<path
android:pathData="M54.35,26.48c-2.6,0.73 1.06,6.12 2.65,10.25c2.49,6.45 7.65,18.11 7.79,30.43S61.13,88.54 60,91.35c-1.17,2.93 -2.98,7.13 -3.54,8.33c-0.56,1.2 -0.54,2.58 0.07,2.75c1.41,0.38 3.78,-1.24 6.19,-3.66c1.6,-1.6 4.6,-4.79 8.05,-14.71c1.89,-5.44 3.68,-14.95 2.37,-25.46c-1.56,-12.48 -7.1,-20.88 -9.08,-23.89C61.13,30.25 57.38,25.63 54.35,26.48z"
android:fillColor="#2C2F30"/>
<path
android:pathData="M38.02,38.44c-2.11,0.58 3.87,6.78 6.69,13.96s3.68,13.16 4.04,19.43c0.35,6.26 -0.52,12.95 -1.13,17.08c-0.49,3.35 -2.28,9.43 -1.92,10.56c0.35,1.13 2.44,1.17 3.99,-1.36c1.55,-2.53 4.88,-8.07 6.92,-20.04c0.95,-5.56 0.49,-18.6 -5.56,-27.94C45.83,42.08 40.48,37.76 38.02,38.44z"
android:fillColor="#2C2F30"/>
<path
android:pathData="M19.84,51.75c0,0 3.94,-5.63 5.63,-7.7c1.69,-2.06 6.29,-6.76 6.29,-6.76s0.19,13.42 0.66,16.99c0.47,3.57 2.06,11.45 3.85,15.58c0.93,2.15 2.71,7.4 2.44,9.57c-0.47,3.85 -4.8,9.63 -6.66,9.85c-3.94,0.47 -7.79,-7.02 -9.57,-11.92C19.93,70.42 17.96,57.75 19.84,51.75z"
android:fillColor="#2C2F30"/>
<path
android:pathData="M34.15,75.54c0.1,2.69 -2.09,4.41 -4.41,4.41s-4.08,-2.22 -4.08,-4.55s1.97,-4.08 4.29,-4.08S34.05,73 34.15,75.54z"
android:fillColor="#FFB805"/>
<path
android:pathData="M30.07,75.44c-0.61,0.7 -2.32,0.69 -2.93,-0.03c-0.61,-0.72 -0.53,-2.18 0.35,-2.92c0.88,-0.75 2.11,-0.89 2.84,0.22C30.84,73.5 30.82,74.57 30.07,75.44z"
android:fillColor="#FFEDC7"/>
</vector>

View file

@ -0,0 +1,109 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.32,41.05c0,0 8.92,-7.88 9.1,-7.7s3.66,4.97 3.66,7.41c0,3.05 -2.72,6.38 -2.72,6.38s11.54,-6.38 12.2,-6.19s7.98,13.61 7.98,14.55s-6.85,15.11 -7.51,15.3c-0.66,0.19 -11.07,-4.79 -11.07,-4.79s3.57,4.32 3.1,7.88c-0.47,3.57 -2.72,9.01 -3.28,9.29s-11.36,-6.76 -11.36,-6.76L93.32,41.05z"
android:fillColor="#8A5A54"/>
<path
android:pathData="M19.46,44.8c0,0 -6.1,-13.7 -5.73,-14.08c0.38,-0.38 13.33,6.95 13.33,6.95L19.46,44.8z"
android:fillColor="#CD7955"/>
<path
android:pathData="M32.41,33.63c0,0 0.09,-16.61 0.66,-16.89c0.56,-0.28 11.17,12.86 11.17,12.86L32.41,33.63z"
android:fillColor="#CD7955"/>
<path
android:pathData="M49.87,28.38c0,0 5.82,-15.39 6.38,-15.39c0.56,0 7.32,17.55 7.32,17.55L49.87,28.38z"
android:fillColor="#CD7955"/>
<path
android:pathData="M65.92,28.85c0,0 8.82,-13.05 9.67,-12.86s2.35,16.99 2.35,16.99L65.92,28.85z"
android:fillColor="#CD7955"/>
<path
android:pathData="M78.78,32.69c0,0 12.95,-9.1 13.51,-8.82c0.56,0.28 -0.94,17.74 -0.94,17.74L78.78,32.69z"
android:fillColor="#CD7955"/>
<path
android:pathData="M15.14,66.29c0,0 -11.36,8.17 -11.26,9.48s15.2,2.53 15.2,2.53L15.14,66.29z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M21.9,83.66c0,0 -8.35,11.07 -7.88,11.83c0.47,0.75 15.49,-3.28 15.49,-3.28L21.9,83.66z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M32.98,95.58c0,0 -2.06,16.33 -1.13,16.71s12.39,-11.17 12.39,-11.17L32.98,95.58z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M50.06,101.77c0,0 7.51,15.02 8.07,15.02c0.56,0 5.16,-16.05 5.16,-16.05L50.06,101.77z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M70.05,99.33c0,0 10.79,9.39 11.83,9.01c1.03,-0.38 -0.84,-15.39 -0.84,-15.39L70.05,99.33z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M85.06,91.26c0,0 14.83,5.16 15.3,4.6c0.47,-0.56 -7.7,-15.02 -7.7,-15.02L85.06,91.26z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M97.59,54.66c0.42,1.9 8.17,-2.11 10.28,-3.1c2.11,-0.99 8.66,-3.94 8.02,-5.07c-0.63,-1.13 -7.53,2.04 -9.29,2.82C104.84,50.08 97.38,53.69 97.59,54.66z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M97.5,57.19c-0.05,1.12 2.11,1.81 10.14,1.38s11.76,-1.81 11.68,-2.93c-0.07,-1.13 -9.08,-0.66 -12.04,-0.45S97.57,55.71 97.5,57.19z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M99.33,60.29c-0.28,0.61 5.63,3.07 9.78,4.27c4.15,1.2 7.41,2.37 7.77,1.31c0.35,-1.06 -2.98,-2.44 -7.06,-3.78C106.43,60.98 99.82,59.23 99.33,60.29z"
android:fillColor="#BA8D72"/>
<path
android:pathData="M15.99,67.3c0,0 -1.55,-0.77 -1.76,-2.18c-0.21,-1.41 -0.07,-6.97 1.48,-12.32s5,-10.49 5,-10.49l-2.6,-6.48l5.84,2.53c0,0 3.45,-3.03 5.84,-4.36c2.39,-1.34 5.28,-2.67 5.28,-2.67l0.35,-7.93l4.79,5.96c0,0 3.03,-0.84 6.83,-1.13c3.8,-0.28 6.62,-0.56 6.62,-0.56l2.79,-7.18l2.35,7.32c0,0 2.53,-0.07 5.63,0.14c3.1,0.21 5.44,0.52 5.44,0.52l3.75,-5.82l1.08,7.13c0,0 2.35,0.84 4.32,1.69s4.62,2.32 4.62,2.32l5.56,-4.36l-0.77,7.39c0,0 10.63,5.35 13.02,19.36s-2.77,18.65 -2.77,18.65L15.99,67.3z"
android:fillColor="#F3A25C"/>
<path
android:pathData="M37.72,54.45c-12.87,3.98 -23.37,11.19 -23.37,11.19l0.77,3.45l-5.77,5.35l7.32,0.99c0,0 0.58,1.87 2.7,5.74s3.64,5.38 3.64,5.38l-3.78,5.39l7.02,-1.45c0,0 2.56,2.92 4.39,4.33c1.83,1.41 4.77,3.76 4.77,3.76l-0.92,7.46l6.05,-5.14c0,0 2.75,0.99 6.12,1.62c3.38,0.63 6.97,0.7 6.97,0.7l3.87,7.32l2.67,-7.53c0,0 4.29,-0.49 6.83,-0.99c2.53,-0.49 6.55,-2.53 6.55,-2.53l6.76,5l-1.06,-8.02c0,0 3.8,-2.39 5.42,-3.59c1.62,-1.2 3.8,-3.38 3.8,-3.38l6.97,2.25l-3.17,-6.83c0,0 3.17,-3.87 4.72,-6.05c1.55,-2.18 3.73,-7.39 3.73,-7.39S92.88,59.1 74.95,53.68C59.82,49.1 45.46,52.06 37.72,54.45z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="57.19"
android:centerY="49.68"
android:gradientRadius="52.19"
android:type="radial">
<item android:offset="0.62" android:color="#FFF4D6B5"/>
<item android:offset="0.74" android:color="#FFF1D2B2"/>
<item android:offset="0.87" android:color="#FFE7C5AA"/>
<item android:offset="1" android:color="#FFD8B19C"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M28.09,78.59c0.91,0.61 9.85,-9.57 9.85,-9.57s-0.47,-2.53 -3,-3.75c-2.53,-1.22 -4.79,-0.19 -4.79,-0.19S27.25,78.02 28.09,78.59z"
android:fillColor="#FBFFFE"/>
<path
android:pathData="M50.99,63.76c0,0 1.97,-2.72 6.01,-2.44s5.73,2.25 5.73,2.25s-4.13,14.45 -5.07,14.45C56.72,78.02 50.99,63.76 50.99,63.76z"
android:fillColor="#FBFFFE"/>
<path
android:pathData="M39.45,92.95c0.8,0.8 11.17,-8.92 11.17,-8.92s-1.22,-2.63 -3.85,-4.41c-2.63,-1.78 -6.76,-0.66 -6.76,-0.66S38.7,92.2 39.45,92.95z"
android:fillColor="#FBFFFE"/>
<path
android:pathData="M64.13,80.65c0,0 0.7,-2.96 3.94,-4.04c3.66,-1.22 5.91,0.47 5.91,0.47s0.56,12.67 -0.47,13.23S64.13,80.65 64.13,80.65z"
android:fillColor="#FBFFFE"/>
<path
android:pathData="M74.93,67.61c0,0 -0.47,-3 1.88,-4.79s4.88,-1.22 4.88,-1.22s5.16,11.92 4.5,12.48C85.53,74.65 74.93,67.61 74.93,67.61z"
android:fillColor="#FBFFFE"/>
<path
android:pathData="M44.28,40.01c0.9,0.9 2.53,-0.84 3.19,-1.6c0.66,-0.75 2.02,-2.16 2.02,-2.16L51.89,38c0,0 1.92,1.92 3.1,0.75c0.73,-0.73 -1.74,-3.71 -2.77,-4.83s-2.3,-2.39 -3.1,-2.25c-0.93,0.16 -2.27,2.13 -3.05,3.38C44.66,37.29 43.53,39.26 44.28,40.01z"
android:fillColor="#CD7955"/>
<path
android:pathData="M72.96,42.69c0.51,1.69 3.44,0.23 4.22,-0.05c1.08,-0.38 2.49,-0.89 2.49,-0.89s0.19,1.36 0.33,2.96c0.09,1 0.28,3.05 1.64,3c1.41,-0.05 1.42,-2.54 1.36,-3.8c-0.19,-3.75 0,-5.87 -0.89,-6.43c-0.89,-0.56 -5.68,2.06 -6.66,2.63S72.67,41.75 72.96,42.69z"
android:fillColor="#CD7955"/>
<path
android:pathData="M30.86,38.75c-4.65,1.74 -5.82,5.82 -5.21,8.4c0.61,2.58 3.14,6.52 10.18,5.3c6.35,-1.1 6.72,-7.23 5.3,-10.23C39.54,38.84 35.56,36.99 30.86,38.75z"
android:fillColor="#FFDC1E"/>
<path
android:pathData="M28.89,45.22c-0.14,2.91 2.54,4.06 5.07,3.89c1.45,-0.09 4.5,-1.13 4.32,-4.18c-0.18,-2.86 -2.63,-3.47 -5.16,-3.43C31.28,41.55 29.01,42.88 28.89,45.22z"
android:fillColor="#282F2F"/>
<path
android:pathData="M23.17,53.01c0.17,-4.31 -3,-7.09 -7.46,-6.34c-4.32,0.73 -3.46,5.94 -3.33,6.52c0.19,0.84 0.66,1.97 0.66,1.97S12,55.83 12,57.89s0.78,4.05 4.5,3.52C20.45,60.85 23.03,56.49 23.17,53.01z"
android:fillColor="#FF6666"/>
<path
android:pathData="M14.06,54.77c0.14,0.42 -0.24,1.9 1.78,1.88c4.32,-0.05 5.19,-2.63 5.23,-3.19c0.05,-0.56 -0.56,-2.06 -4.93,-1.97C12.85,51.56 13.87,54.2 14.06,54.77z"
android:fillColor="#A82612"/>
<path
android:pathData="M49.02,52.78c0.24,2.38 3.97,3.53 8.35,4.13c4.79,0.66 8.21,0.47 8.21,0.47s2.35,-1.13 2.3,-7.79c-0.05,-6.48 -2.58,-7.32 -2.58,-7.32s-6.43,0.47 -11.5,4.22C51,48.57 48.84,50.9 49.02,52.78z"
android:fillColor="#885B52"/>
<path
android:pathData="M60.15,46.44c-3.51,0.92 -11.31,3.99 -11.12,6.34c0.14,1.74 3.89,1.31 9.1,1.27c5.5,-0.05 9.16,0.53 9.16,0.53s0.17,-0.47 0.26,-0.87c0.11,-0.48 0.13,-1.02 0.13,-1.02s-4.39,-0.78 -8.56,-0.66c-3.28,0.09 -7.79,0.7 -6.8,-0.42c0.35,-0.4 5.58,-2.58 8.45,-3.1c2.86,-0.52 7.04,-0.79 7.04,-0.79s-0.05,-0.6 -0.14,-1.2c-0.06,-0.4 -0.21,-1.04 -0.21,-1.04S63.2,45.65 60.15,46.44z"
android:fillColor="#BA8D72"/>
</vector>

View file

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M112.7,59.21c0,0 3.94,-2.21 4.93,-2.77c0.99,-0.56 4.6,-2.82 5.91,-0.84c0.77,1.16 -0.7,4.44 -3.05,7.86c-2.14,3.13 -7.12,9.56 -7.4,10.83c-0.28,1.27 1.11,6.36 1.53,8.33c0.42,1.97 1.74,6.71 1.17,8.54s-3.43,6.85 -10.75,6.76c-5.82,-0.07 -7.51,-1.78 -7.7,-2.82c-0.14,-0.75 -0.56,-3.24 -0.56,-3.24s-4.79,2.96 -7.04,4.08s-8.31,4.22 -8.31,4.22s1.17,5.35 1.36,7.51c0.19,2.16 0.86,5.25 -0.28,7.32c-1.03,1.88 -4.25,5.02 -11.83,4.97c-5.92,-0.04 -7.41,-1.88 -8.35,-3c-0.94,-1.13 -1.13,-6.48 -1.13,-7.6s-0.19,-5.07 -0.19,-5.07s-8.02,-0.4 -12.86,-0.75c-4.38,-0.32 -10.16,-0.99 -10.16,-0.99s0.21,2.33 0.42,4.01c0.19,1.5 0.23,4.64 -1.34,6.17c-2.11,2.06 -7.56,2.21 -10.56,1.92c-3,-0.28 -7.18,-1.83 -8.4,-4.55c-1.22,-2.72 0.38,-6.29 1.03,-8.35c0.58,-1.81 1.6,-4.41 1.22,-5.16c-0.38,-0.75 -4.04,-1.69 -9.29,-6.95c-5.26,-5.26 -12.13,-23.52 3.28,-36.23c15.49,-12.76 43.81,1.1 45.31,2.04C61.2,56.41 112.7,59.21 112.7,59.21z"
android:fillColor="#BDCF47"/>
<path
android:pathData="M66.25,25.28C52.32,25.9 41.87,32.8 36.68,40.34c-3.1,4.5 -4.65,7.74 -4.65,7.74s4.81,0.14 9.15,2.46c5,2.67 10.8,5.56 14.61,18.13c2.87,9.5 3.98,18.53 11.44,20.52c8.45,2.25 28.16,1.13 37.59,-8.02s11.26,-16.05 8.87,-25.06s-13.17,-25.05 -28.16,-29.28C79.06,25 72.58,25 66.25,25.28z"
android:fillColor="#6E823A"/>
<path
android:pathData="M111.93,51.32c-0.42,-0.99 -1.3,-2.5 -1.3,-2.5s-0.07,2.05 -0.25,3.13c-0.28,1.76 -1.25,5.42 -1.81,4.88c-1,-0.97 -5.73,-6.92 -7.98,-10.23c-1.71,-2.52 -7.6,-9.11 -7.74,-11.26c-0.07,-1.06 1.27,-4.65 1.27,-4.65s-1.22,-0.7 -2.35,-1.34c-0.88,-0.49 -2.16,-1.03 -2.16,-1.03s-0.77,4.9 -1.62,5.82c-0.75,0.81 -5.32,2.6 -8.87,3.94c-4.29,1.62 -8.45,3.73 -10,4.01c-1.36,0.25 -9.09,-1.41 -12,-1.97c-3.66,-0.7 -9.18,-2.26 -10.45,-3.17c-1.48,-1.06 -3.07,-3.78 -3.07,-3.78s-0.89,0.61 -1.78,1.31c-0.88,0.69 -2.02,2.06 -2.02,2.06s2.31,2.32 2.44,3.18c0.18,1.2 -1.27,2.83 -2.46,4.38c-0.72,0.93 -2.75,4.85 -2.75,4.85s0.97,0.09 2.15,0.63c1.23,0.57 2.38,1.16 2.38,1.16s2.97,-6.9 4.9,-7.53c1.65,-0.54 6.3,0.99 9.68,1.69c4.79,0.99 9.64,1.87 10.66,3.17c1.06,1.34 2.06,6.68 3.03,11.19C70.89,64.2 73.64,77.02 73,78c-0.63,0.99 -5.7,0.63 -8.59,0.28c-2.45,-0.3 -6.41,-1.76 -6.41,-1.76s0.58,2.11 0.77,2.67c0.28,0.81 1.16,3.06 1.16,3.06s5.67,2.5 22.42,0.95s25.03,-12.96 27.38,-18.02c3.14,-6.78 3.54,-10.39 3.54,-10.39S112.35,52.31 111.93,51.32zM96.65,73.21c-4.24,2.67 -15.2,5.49 -17.18,4.43c-1.58,-0.85 -3.94,-13.94 -5.07,-19.78c-0.72,-3.74 -2.45,-9.42 -1.41,-11.19c0.7,-1.2 4.79,-2.99 7.81,-4.4c2.87,-1.33 6.97,-3.13 8.17,-2.99c1.7,0.2 5.35,6.12 9.01,11.19c3.66,5.07 7.67,10.35 7.74,12.18C105.81,64.49 101.02,70.47 96.65,73.21z"
android:fillColor="#484E23"/>
<path
android:pathData="M41.18,65.86c0.5,2.83 -0.95,5.75 -4.07,6.02c-2.56,0.22 -4.59,-1.57 -5.09,-4.4c-0.5,-2.83 1.14,-5.49 3.68,-5.94C38.22,61.09 40.68,63.02 41.18,65.86z"
android:fillColor="#2A2B28"/>
<path
android:pathData="M22.82,66.11c0.07,2.84 -2.42,5.69 -5.5,5.11c-2.53,-0.48 -3.99,-2.73 -3.71,-5.55c0.29,-2.82 2.59,-4.9 5.15,-4.65S22.75,63.15 22.82,66.11z"
android:fillColor="#2A2B28"/>
<path
android:pathData="M30.77,76.59c1.16,-0.79 3.1,-2.67 4.36,-1.06c1.27,1.62 -0.92,3.1 -2.18,4.01c-1.27,0.92 -4.08,3.17 -6.12,3.17c-1.9,0 -4.79,-2.32 -6.62,-3.87c-1.49,-1.26 -2.18,-2.89 -1.34,-3.87s2.14,-0.62 3.24,0.35c1.27,1.13 3.72,3.38 4.72,3.38C27.81,78.71 29.22,77.65 30.77,76.59z"
android:fillColor="#2A2B28"/>
</vector>

View file

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M15.57,49.21c-1.8,4.64 -5.62,6.83 -6.48,10.56c-0.99,4.32 3.1,8.73 7.18,8.59s13.08,-5.04 16.19,-6.76c3.57,-1.97 11.92,-5.87 11.92,-5.87l23.28,-5.96L83.7,65.4l-1.41,12.95c0,0 -0.84,3.38 -2.67,6.62s-7.18,8.17 -10.42,7.32c-3.24,-0.84 -4.83,-6.49 -9.71,-8.87c-5.77,-2.82 -14.5,-3.1 -14.78,-0.7s4.22,3.24 5.35,4.5c1.13,1.27 2.67,6.48 4.36,8.17c1.69,1.69 5.35,4.08 5.35,4.08s-3.66,4.65 -3.94,8.31s0.42,7.32 -0.14,8.59c-0.56,1.27 -3.94,4.93 -2.25,6.19s10.84,-5.21 13.37,-10.14c2.53,-4.93 3.66,-8.31 4.79,-9.29s16.33,-3.52 26.89,-17.03s10.7,-29.99 10.42,-37.03c-0.28,-7.04 -3.28,-13.47 -0.75,-17.41s5.27,-4.75 6.71,-5.21c1.92,-0.61 4.27,-1.13 3.75,-3.28c-0.39,-1.65 -2.16,-6.1 -12.11,-8.45C99.49,13.07 92.29,15 92.29,15S69.16,-0.5 43.86,6.56c-24.21,6.76 -31.82,22.81 -31.53,31.82C12.49,43.58 16.55,46.68 15.57,49.21z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M61.88,49.49l-9.57,5.35c0,0 0.48,6.24 3.38,10.7c1.92,2.96 4.79,5.49 7.6,6.48c3.33,1.17 6.88,1.16 7.04,0.28c0.28,-1.55 -2.2,-3.48 -3.38,-6.76c-1.03,-2.86 -1.13,-13.23 -1.13,-13.23L61.88,49.49z"
android:fillColor="#006DA6"/>
<path
android:pathData="M42.88,56.39c0,0 12.81,-13.94 27.45,-11.97s18.21,12.62 17.32,24.35c-0.54,7.16 -7.89,17.51 -8.02,16.19c-0.09,-0.94 2.44,-16.28 -2.35,-21.49c-5.52,-6.01 -12.15,-7.79 -18.49,-8.07S42.88,56.39 42.88,56.39z"
android:fillColor="#DDECF5"/>
<path
android:pathData="M40.84,31.33c1.35,2.09 0.84,4.62 -1.06,5.84c-1.9,1.22 -4.99,0.54 -6.34,-1.55s-0.87,-5.23 1.2,-6.12C37.67,28.19 39.49,29.24 40.84,31.33z"
android:fillColor="#2D2B30"/>
<path
android:pathData="M9.23,63.08c0,0 3.43,0.1 5.14,-0.49c4.29,-1.5 9.43,-6.26 11.76,-8.45c1.93,-1.81 4.65,-5 6.34,-6.69c1.69,-1.69 3.31,-3.52 4.08,-3.24s1.55,2.25 1.34,3.1c-0.21,0.84 -5.91,5.91 -8.66,8.45c-2.75,2.53 -7.32,6.69 -10.56,8.31c-1.41,0.71 -3.94,1.81 -6.83,1.55C10.08,65.46 9.16,63.71 9.23,63.08z"
android:fillColor="#006DA6"/>
<path
android:pathData="M60.69,30.07c0.68,1.05 3.1,-0.27 4.5,-1.06c1.76,-0.99 8.66,-5.14 15.35,-5.7c6.69,-0.56 11.68,1.76 12.81,2.25c1.13,0.49 3.73,1.62 3.73,2.25c0,0.63 -6.35,3.6 -9.01,5.35c-2.67,1.76 -7.04,3.87 -9.92,4.5c-2.35,0.52 -6.9,-0.14 -6.97,1.2c-0.07,1.34 -0.42,2.11 5.14,2.11s15.13,-5.77 17.25,-7.18s9.64,-5.14 9.08,-6.48c-0.8,-1.9 -9.78,-7.56 -21.54,-7.32c-10.21,0.21 -15.77,4.72 -18.3,6.62C62.19,27.07 59.91,28.87 60.69,30.07z"
android:fillColor="#006DA6"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M57.52,49.63c0,0 -3.1,-2.11 -6.62,-1.97c-3.52,0.14 -7.88,2.82 -7.88,2.82s-6.05,0.28 -10.7,0.14c-4.65,-0.14 -15.63,-1.41 -21.26,1.13c-5.63,2.53 -7.04,7.32 -6.19,11.12c0.84,3.8 1.74,9.8 20.55,20.55c8.24,4.71 17.26,6.44 25.05,7.05c0.35,1.43 1.2,11.61 2.83,17.02c2.11,7.04 5.1,7.32 6.19,7.6c4.36,1.13 2.52,-4.63 2.39,-9.01c-0.21,-7.3 1.41,-14.21 2.25,-14.22c1.64,-0.01 6.91,1.83 8.17,1.83c10.14,17.03 19.08,19.17 22.1,17.03c2.39,-1.69 -0.14,-5.07 -2.67,-11.12c-1.58,-3.78 -2.6,-5.56 -0.95,-5.69c13.53,-1.08 29.35,-6.38 31.64,-26.97c1.53,-13.81 -6.72,-24.35 -7.46,-26.33c0.42,-2.04 3.42,-7.55 4.72,-11.58c2.18,-6.79 2.53,-9.82 1.48,-9.96c-1.12,-0.15 -5.07,3.24 -9.29,5.91c-3.51,2.23 -4.82,8.31 -4.82,8.31s-5.74,-3.52 -10.95,-1.27c-6.19,2.68 -9.43,3.24 -9.57,4.22c-0.14,0.99 6.34,3.24 10.84,4.5c4.66,1.31 9.85,2.39 9.85,2.39s4.5,11.83 -2.96,15.2c-7.46,3.38 -12.95,-0.99 -19.99,-4.5c-7.04,-3.52 -13.55,-7.85 -19.01,-7.18C60.3,47.29 57.52,49.63 57.52,49.63z"
android:fillColor="#6BA4AE"/>
<path
android:pathData="M61.25,25.53c0,0 -0.42,-2.99 3.1,-3.98c3.52,-0.99 7.39,-1.13 7.6,-4.72c0.24,-4.08 -3.73,-4.93 -6.97,-3.94c-4.36,1.33 -7.6,6.19 -7.6,6.19s-3.8,-7.32 -9.85,-7.32c-4.96,0 -5.48,3.69 -5.07,5.42c0.63,2.67 3.69,3.91 6.93,4.26c3.55,0.39 3.91,3.84 3.91,3.84s-6.14,-4.04 -6.9,0c-0.77,4.15 6.19,3.24 7.74,7.04c0.93,2.28 1.2,14.22 3.8,14.08c2.67,-0.14 1.55,-13.51 3.38,-15.06c1.83,-1.55 7.74,-3.38 6.62,-6.05C66.23,21.22 61.25,25.53 61.25,25.53z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M74.49,11.81a2.2,2.23 0,1 0,4.4 0a2.2,2.23 0,1 0,-4.4 0z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M75.07,21.61a1.55,1.5 0,1 0,3.1 0a1.55,1.5 0,1 0,-3.1 0z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M33.28,11.63a2.54,2.57 0,1 0,5.08 0a2.54,2.57 0,1 0,-5.08 0z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M32.01,20.04a1.91,1.96 0,1 0,3.82 0a1.91,1.96 0,1 0,-3.82 0z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M37.34,30.81a1.83,1.87 57.32,1 0,3.15 -2.02a1.83,1.87 57.32,1 0,-3.15 2.02z"
android:fillColor="#36B4E1"/>
<path
android:pathData="M60.9,74.83c0.7,2.82 -16.05,2.67 -30.13,0.14S6.13,66.81 6.13,66.81c-0.02,0.23 -1.47,-3.34 -1.55,-5.91c-0.06,-2.05 0.7,-3.63 0.7,-3.63s4.82,4.12 12.71,6.93c7.88,2.82 17.13,6.02 24.74,7.11C55.55,73.14 60.41,72.88 60.9,74.83z"
android:fillColor="#FDEACB"/>
<path
android:pathData="M58.85,70.91a3.33,3.52 81.23,1 0,6.96 -1.07a3.33,3.52 81.23,1 0,-6.96 1.07z"
android:fillColor="#2C292A"/>
<path
android:pathData="M117.77,80.82c0,0 -5.35,5.7 -17.74,5.56c-8.36,-0.1 -21.4,-1.55 -21.4,-1.55s4.5,2.11 7.04,4.93c2.53,2.82 5.95,9.57 5.95,9.57s11.68,-3.34 17.18,-7.99C114.29,86.69 117.77,80.82 117.77,80.82z"
android:fillColor="#A4CED5"/>
<path
android:pathData="M9.41,71.74c0,0 11.09,6.9 21.79,8.87s20.41,3.1 26.19,3.38s11.4,0.14 11.4,0.14s7.18,10.98 9.01,14.08c1.83,3.1 5.35,9.71 9.29,11.26c3.94,1.55 7.5,1.13 7.5,1.13s-5.21,3.94 -11.16,-0.14c-2.55,-1.75 -8.55,-9.08 -8.55,-9.08s-7.32,-0.07 -11.83,-0.53c-4.21,-0.43 -8.9,-1.37 -8.9,-1.37s-0.27,4.59 0.07,6.97c0.35,2.46 2.04,6.81 5.91,7.74c0.88,0.21 1.96,0.17 1.9,0.28c-0.46,0.92 -4.46,2.6 -8.17,-1.06c-4.82,-4.76 -3.8,-14.43 -3.8,-14.43s-6.83,-1.47 -14.92,-6.41c-4.61,-2.82 -14.04,-8.73 -18.37,-12.85C13.35,76.48 9.41,71.74 9.41,71.74z"
android:fillColor="#A4CED5"/>
<path
android:pathData="M54.63,86.87c3.12,0.82 7.21,-0.28 7.25,0.49c0.07,1.34 -4.56,1.86 -7.53,1.48c-3.8,-0.49 -6.37,-3.17 -6.34,-4.01C48.09,83.28 50.76,85.85 54.63,86.87z"
android:fillColor="#D9EBF3"/>
<path
android:pathData="M33.09,82.93c-0.5,0.86 2.75,3.17 4.86,3.73c2.11,0.56 4.01,1.06 5.49,1.97s3.1,4.65 6.55,5.7c3.45,1.06 6.55,-1.34 10.28,-1.2c3.73,0.14 6.05,0.07 5.56,-0.49s-3.31,-1.48 -5.63,-1.62c-2.32,-0.14 -6.76,1.69 -9.64,0.77c-2.89,-0.92 -3.45,-4.22 -6.34,-5.42c-2.89,-1.2 -5.28,-1.13 -6.62,-1.62C36.26,84.27 33.59,82.08 33.09,82.93z"
android:fillColor="#D9EBF3"/>
<path
android:pathData="M25,81.45c-0.69,0.15 0.53,3.41 4.89,5.88s7.92,2.93 9.82,4.05c2.75,1.62 3.26,4.51 7.6,6.19c5.63,2.18 10.28,0.7 14.08,0.63c3.8,-0.07 10.14,1.62 10.35,0.63c0.27,-1.26 -6.05,-2.67 -10.56,-2.75c-3.1,-0.05 -6.69,1.41 -11.83,0.07c-5.14,-1.34 -5.07,-4.58 -9.08,-6.69c-3.23,-1.7 -6.62,-2.53 -9.36,-3.8C28.17,84.41 25.98,81.24 25,81.45z"
android:fillColor="#D9EBF3"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M107.52,85.21c-2.93,-0.12 1.13,-31.81 1.13,-31.81s0.79,-0.04 2.01,0.07c-4.92,-20.61 -21.45,-36.64 -47.01,-36.64c-26.12,0 -39.97,16.05 -44.88,35.91c0.44,-0.02 0.69,-0.01 0.69,-0.01s4.97,33.04 1.44,32.58c-0.55,-0.07 -1.34,-0.18 -2.3,-0.38c4.89,16.68 19.36,26.48 46.27,26.56c24.57,0.08 39.12,-9.92 44.71,-26.44C108.69,85.19 107.98,85.23 107.52,85.21zM93.91,86.98c-4.09,7.84 -15.69,13.4 -29.61,13.15c-17.9,-0.33 -28.86,-5.63 -31.84,-14.47c-2.91,-8.61 3.34,-13.37 3.01,-19.99c-0.33,-6.63 -6.74,-17.12 1.8,-23.42c12.41,-9.16 17.81,3.25 26.43,2.98c8.12,-0.25 16.92,-11.4 26.68,-2.49c8.95,8.17 1.88,15.74 2.1,23.47C92.66,72.62 98.98,77.25 93.91,86.98z"
android:fillColor="#B6885A"/>
<path
android:pathData="M90.37,42.74c-9.75,-8.91 -18.56,2.24 -26.68,2.49c-8.62,0.26 -14.02,-12.14 -26.43,-2.98c-8.53,6.3 -2.13,16.79 -1.8,23.42c0.33,6.63 -5.92,11.38 -3.01,19.99c2.98,8.84 13.95,14.14 31.84,14.47c13.92,0.26 25.52,-5.3 29.61,-13.15c5.07,-9.73 -1.25,-14.36 -1.44,-20.77C92.25,58.48 99.32,50.91 90.37,42.74zM72.36,59.89c0.28,-3.68 2.73,-7.17 6.64,-6.79c3.08,0.3 5.01,2.7 4.9,7.01c-0.14,5.58 -3.59,7.36 -6.67,7.13S72.09,63.57 72.36,59.89zM64.15,66.97c4.22,0.08 5.77,0.09 5.63,2.2c-0.08,1.33 -2.82,3.97 -5.47,4.02c-2.24,0.04 -5.55,-2.2 -5.76,-4.14C58.33,66.85 60.01,66.89 64.15,66.97zM48.36,53.43c3.26,-0.26 6.24,1.56 6.7,6.15c0.49,4.84 -2.19,8.09 -5.45,8.42c-3.25,0.33 -6.22,-2.58 -6.62,-6.5C42.6,57.58 44.22,53.76 48.36,53.43zM84.52,82.34c-0.22,4.2 -7.4,9.22 -20.49,9.11c-13.7,-0.12 -20.6,-4.81 -20.77,-8.84c-0.16,-3.98 9,-6.43 20.27,-6.3C81.59,76.54 84.68,79.36 84.52,82.34z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M49.62,68c3.25,-0.33 5.94,-3.58 5.45,-8.42c-0.47,-4.59 -3.44,-6.41 -6.7,-6.15c-4.14,0.33 -5.76,4.15 -5.36,8.07C43.4,65.42 46.36,68.33 49.62,68z"
android:fillColor="#393531"/>
<path
android:pathData="M77.22,67.25c3.08,0.23 6.53,-1.55 6.67,-7.13C84,55.8 82.07,53.4 79,53.1c-3.91,-0.38 -6.36,3.11 -6.64,6.79C72.09,63.57 74.14,67.02 77.22,67.25z"
android:fillColor="#393531"/>
<path
android:pathData="M64.32,73.19c2.65,-0.05 5.39,-2.69 5.47,-4.02c0.13,-2.11 -1.41,-2.11 -5.63,-2.2c-4.14,-0.08 -5.83,-0.12 -5.59,2.07C58.77,70.99 62.08,73.23 64.32,73.19z"
android:fillColor="#393531"/>
<path
android:pathData="M63.53,76.32c-11.27,-0.14 -20.43,2.32 -20.27,6.3c0.17,4.03 7.07,8.72 20.77,8.84c13.09,0.11 20.27,-4.92 20.49,-9.11C84.68,79.36 81.59,76.54 63.53,76.32z"
android:fillColor="#FF6B17"/>
<path
android:pathData="M123.95,67.96c0.17,-11.92 -9.11,-14.11 -13.3,-14.49c0.49,2.05 0.87,4.14 1.12,6.26c2.86,0.5 7.19,2.5 6.99,8.8c-0.19,5.99 -4.77,8.87 -7.46,9.65c-0.43,2.4 -1.01,4.7 -1.75,6.88C114.28,84.38 123.76,80.94 123.95,67.96z"
android:fillColor="#B6885A"/>
<path
android:pathData="M109.49,78.31c-0.52,-0.34 0.02,-3.87 0.11,-8.78c0.08,-4.57 -0.54,-9.62 -0.22,-9.83c0.18,-0.12 1.15,-0.18 2.4,0.04c-0.26,-2.13 -0.63,-4.22 -1.12,-6.26c-1.22,-0.11 -2.01,-0.07 -2.01,-0.07s-4.05,31.69 -1.13,31.81c0.46,0.02 1.17,-0.01 2.05,-0.14c0.74,-2.18 1.32,-4.48 1.75,-6.88C110.42,78.44 109.73,78.47 109.49,78.31z"
android:fillColor="#B6885A"/>
<path
android:pathData="M8.96,67.98c0,-8.17 6.97,-9.15 8.53,-8.76c0.32,-2.19 0.75,-4.35 1.27,-6.47c-2.95,0.13 -14.41,1.49 -14.89,14.74c-0.47,12.86 9.49,16.39 14.71,17.46c-0.63,-2.15 -1.1,-4.41 -1.42,-6.79C14.47,77.59 8.96,75.09 8.96,67.98z"
android:fillColor="#B6885A"/>
<path
android:pathData="M19.45,52.73c0,0 -0.25,-0.01 -0.69,0.01c-0.52,2.12 -0.95,4.28 -1.27,6.47c0.15,0.04 0.27,0.08 0.31,0.14c0.12,0.18 -0.03,4.56 0.22,9.06c0.27,4.78 0.94,9.69 0.55,9.83c-0.18,0.07 -0.7,0.04 -1.4,-0.1c0.32,2.37 0.79,4.64 1.42,6.79c0.96,0.19 1.75,0.31 2.3,0.38C24.42,85.78 19.45,52.73 19.45,52.73z"
android:fillColor="#B6885A"/>
<path
android:pathData="M8.96,67.98c0,7.11 5.51,9.61 8.21,10.17c-0.51,-3.82 -0.63,-7.92 -0.37,-12.27c0.13,-2.24 0.36,-4.46 0.69,-6.66C15.93,58.83 8.96,59.81 8.96,67.98z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M17.17,78.15c0.7,0.14 1.22,0.17 1.4,0.1c0.39,-0.15 -0.28,-5.05 -0.55,-9.83c-0.26,-4.5 -0.1,-8.88 -0.22,-9.06c-0.04,-0.06 -0.16,-0.1 -0.31,-0.14c-0.32,2.2 -0.56,4.42 -0.69,6.66C16.54,70.24 16.66,74.33 17.17,78.15z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M111.31,78.19c2.69,-0.78 7.27,-3.66 7.46,-9.65c0.2,-6.3 -4.14,-8.3 -6.99,-8.8c0.17,1.41 0.3,2.83 0.36,4.27C112.37,69.05 112.09,73.79 111.31,78.19z"
android:fillColor="#FFCD88"/>
<path
android:pathData="M109.38,59.69c-0.32,0.21 0.3,5.26 0.22,9.83c-0.09,4.92 -0.63,8.44 -0.11,8.78c0.25,0.16 0.93,0.14 1.82,-0.12c0.78,-4.39 1.06,-9.13 0.83,-14.18c-0.07,-1.44 -0.19,-2.86 -0.36,-4.27C110.52,59.51 109.55,59.57 109.38,59.69z"
android:fillColor="#FFCD88"/>
</vector>

View file

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64.32,103.32c-34.03,0 -53.56,-33.13 -56.94,-39.38c3.07,-6.27 20.91,-39.26 56.94,-39.26c36.03,0 53.87,32.98 56.94,39.26C117.88,70.19 98.34,103.32 64.32,103.32z"
android:fillColor="#FAFAFA"/>
<path
android:pathData="M64.32,27.12c15.81,0 29.84,6.42 41.7,19.09c6.63,7.08 10.73,14.26 12.49,17.67c-4.51,7.99 -23.05,36.99 -54.19,36.99c-14.88,0 -28.63,-6.45 -40.89,-19.17c-6.89,-7.15 -11.37,-14.41 -13.3,-17.82c1.75,-3.41 5.86,-10.6 12.49,-17.67C34.48,33.54 48.51,27.12 64.32,27.12M64.32,22.24C22.56,22.24 4.66,64 4.66,64s20.25,41.76 59.66,41.76S123.97,64 123.97,64S106.07,22.24 64.32,22.24L64.32,22.24z"
android:fillColor="#B0BEC5"/>
<path
android:pathData="M64.32,37c26.97,0 45.47,16.51 53.66,27.71c0.96,1.31 1.99,-4.99 1.12,-6.36c-7.84,-12.26 -25.41,-32.91 -54.77,-32.91S17.38,46.1 9.54,58.36c-0.88,1.37 0.3,6.83 1.41,5.64C19.49,54.83 37.34,37 64.32,37z"
android:fillColor="#B0BEC5"/>
<path
android:pathData="M64.32,60.79m-33.15,0a33.15,33.15 0,1 1,66.3 0a33.15,33.15 0,1 1,-66.3 0"
android:fillColor="#9C7A63"/>
<path
android:pathData="M64.32,37c10.87,0 20.36,2.68 28.36,6.62c-5.81,-9.58 -16.34,-15.97 -28.36,-15.97c-12.28,0 -23,6.69 -28.72,16.61C43.61,40.04 53.18,37 64.32,37z"
android:fillColor="#806451"/>
<path
android:pathData="M64.32,60.79m-15.43,0a15.43,15.43 0,1 1,30.86 0a15.43,15.43 0,1 1,-30.86 0"
android:fillColor="#212121"/>
<path
android:pathData="M88.86,59.37m-7.72,0a7.72,7.72 0,1 1,15.44 0a7.72,7.72 0,1 1,-15.44 0"
android:fillColor="#D9BAA5"/>
<path
android:pathData="M7.21,67.21c-0.52,0 -1.05,-0.13 -1.54,-0.4c-1.55,-0.85 -2.12,-2.8 -1.27,-4.35c0.85,-1.55 21.28,-40.21 59.92,-40.21c38.64,0 58.47,37.89 59.29,39.41c0.84,1.56 0.27,3.5 -1.29,4.35c-1.56,0.84 -3.5,0.27 -4.35,-1.29c-0.18,-0.34 -18.88,-33.86 -53.66,-33.86c-34.79,0 -54.11,34.34 -54.3,34.69C9.43,66.61 8.34,67.21 7.21,67.21z"
android:fillColor="#616161"/>
</vector>

View file

@ -0,0 +1,90 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M94.52,21.81c2.44,-1.18 4.13,-3.67 4.13,-6.56c0,-4.02 -3.26,-7.28 -7.28,-7.28c-4.02,0 -7.28,3.26 -7.28,7.28c0,2.93 1.73,5.44 4.22,6.6c-2.88,15.6 -7.3,27.21 -23.75,29.69c0,0 4.43,22.15 25.15,22.15s22.82,-21.93 22.82,-21.93C95.72,52.62 94.3,31.49 94.52,21.81z"
android:fillColor="#F19534"/>
<path
android:pathData="M34.74,21.81c-2.44,-1.18 -4.13,-3.67 -4.13,-6.56c0,-4.02 3.26,-7.28 7.28,-7.28c4.02,0 7.28,3.26 7.28,7.28c0,2.93 -1.73,5.44 -4.22,6.6c2.88,15.6 7.3,27.21 23.75,29.69c0,0 -4.43,22.15 -25.15,22.15S16.74,51.77 16.74,51.77C33.54,52.62 34.96,31.49 34.74,21.81z"
android:fillColor="#F19534"/>
<path
android:pathData="M89.43,73.69c0.09,0 0.18,0.01 0.27,0.01c5.71,0 10,-1.67 13.22,-4.08L89.43,73.69z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M119.24,16.86c-3.33,-0.45 -6.51,2.72 -7.09,7.06c-0.36,2.71 0.37,5.24 1.78,6.87l-2.4,9.95c0,0 -3.67,23.51 -22.21,28.15c-14.82,3.71 -20.19,-23.42 -21.49,-31.8c2.82,-1.4 4.77,-4.3 4.77,-7.67c0,-4.73 -3.83,-8.56 -8.56,-8.56s-8.56,3.83 -8.56,8.56c0,3.39 1.98,6.32 4.85,7.7c-1.03,8.27 -5.57,34.5 -21.57,31.76C22.52,66.09 15.43,38.74 13.79,31.3c1.95,-1.6 3.04,-4.42 2.64,-7.45c-0.58,-4.35 -4.02,-7.47 -7.68,-6.98c-3.66,0.49 -6.15,4.41 -5.57,8.75c0.42,3.16 2.36,5.67 4.79,6.62l12.72,79.03c0,0 11.1,8.77 43.35,8.77s43.35,-8.77 43.35,-8.77l12.75,-79.24c2.06,-1.08 3.68,-3.51 4.08,-6.49C124.81,21.19 122.58,17.31 119.24,16.86z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M54.7,88.3a9.74,11.61 0,1 0,19.48 0a9.74,11.61 0,1 0,-19.48 0z"
android:fillColor="#26A69A"/>
<path
android:pathData="M64.44,79.56c0.38,0.42 0.72,1.19 0,2.69c-0.72,1.5 -4.6,3.53 -5.31,3.94c-0.71,0.42 -1.18,0.23 -1.4,0.06c-1.05,-0.84 -0.65,-2.74 0.03,-3.9C59.22,79.84 62.31,77.25 64.44,79.56z"
android:fillColor="#69F0AE"/>
<path
android:pathData="M63.72,92.63c-1.1,0.53 -4.71,2.14 -3.52,4.05c0.7,1.13 2.15,1.61 3.48,1.67c1.33,0.06 2.64,-0.36 3.82,-0.97c5.6,-2.9 6.05,-10.52 4.96,-11.1c-1.12,-0.6 -1.88,0.95 -2.46,1.61C68.25,89.86 66.09,91.48 63.72,92.63z"
android:fillColor="#00796B"/>
<path
android:pathData="M118.09,78.8c1.56,-8.63 -4.24,-10.79 -4.24,-10.79s-3.74,-0.68 -5.5,9.03c-1.76,9.7 1.98,10.38 1.98,10.38S116.52,87.43 118.09,78.8z"
android:fillColor="#26A69A"/>
<path
android:pathData="M115.51,70.96c1.36,1.82 -0.25,4.51 -2.86,6.3c-0.77,0.53 -1.79,0.33 -1.94,-0.11c-0.42,-1.26 -0.24,-2.69 0.32,-3.9C112.69,69.62 114.82,70.04 115.51,70.96z"
android:fillColor="#69F0AE"/>
<path
android:pathData="M9.76,79.06C8.19,70.44 14,68.27 14,68.27s3.74,-0.68 5.5,9.03c1.76,9.7 -1.98,10.38 -1.98,10.38S11.32,87.69 9.76,79.06z"
android:fillColor="#26A69A"/>
<path
android:pathData="M15.78,71.2c1.34,1 0.79,2.31 -0.22,3.22c-1.15,1.05 -2.03,2.2 -3.01,3.39c-0.15,0.18 -0.32,0.38 -0.56,0.43c-0.46,0.1 -0.83,-0.37 -0.98,-0.82c-0.43,-1.26 -0.35,-2.74 0.29,-3.9C13.12,70.21 15.26,70.81 15.78,71.2z"
android:fillColor="#69F0AE"/>
<path
android:pathData="M99.99,87.16c-0.69,3.93 -3.84,6.66 -7.05,6.1c-3.21,-0.56 -3.65,-3.91 -2.96,-7.84c0.69,-3.93 2.24,-6.94 5.44,-6.38C98.63,79.6 100.68,83.24 99.99,87.16z"
android:fillColor="#F44336"/>
<path
android:pathData="M30.43,87.16c0.69,3.93 3.84,6.66 7.05,6.1s3.65,-3.91 2.96,-7.84c-0.69,-3.93 -2.24,-6.94 -5.44,-6.38S29.75,83.24 30.43,87.16z"
android:fillColor="#F44336"/>
<path
android:pathData="M35.08,84.54c-0.73,0.82 -2.51,2.47 -3.14,1.21c-0.86,-1.72 0.33,-4.32 1.69,-5.18c1.36,-0.86 2.47,-0.18 2.66,0.59C36.52,82.14 35.73,83.8 35.08,84.54z"
android:fillColor="#FFA8A4"/>
<path
android:pathData="M91.98,87.05c-0.99,-0.15 -1.1,-3.56 1.56,-6.24c1.27,-1.28 3.09,0.24 2.63,2.29C95.73,85.05 93.79,87.33 91.98,87.05z"
android:fillColor="#FFA8A4"/>
<path
android:pathData="M109.15,98.21c-5.99,3 -19.73,10.99 -45.1,10.99s-39.11,-7.99 -45.1,-10.99c0,0 -2.15,1.15 -2.15,2.35v9.21c0,1.23 0.65,2.36 1.71,2.99c4.68,2.76 18.94,9.28 45.55,9.28s40.87,-6.52 45.55,-9.28c1.06,-0.63 1.71,-1.76 1.71,-2.99v-9.21C111.3,99.36 109.15,98.21 109.15,98.21z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M39.6,110.84c2.8,0.55 3.65,0.79 3.46,2.35c-0.39,3.07 -6.76,2.34 -10.53,1.35c-7.79,-2.05 -9.37,-4.21 -9.37,-6.14c0,-1.77 1.36,-1.98 3.46,-1.24C29.13,108.05 33.01,109.55 39.6,110.84z"
android:fillColor="#FFF59D"/>
<path
android:pathData="M109.15,100.23c0,0 -16.57,9.38 -45.1,9.38s-45.1,-9.38 -45.1,-9.38"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#F19534"
android:strokeLineCap="round"/>
<path
android:pathData="M26.97,49.57c5.32,-3.8 8.18,-10.61 8.43,-21.45c0.02,-0.98 0.3,-1.27 0.83,-1.33c0.85,-0.09 0.99,0.68 0.98,1.23c-0.24,11.7 -1.73,19.01 -7.63,23.13c-0.29,0.2 -2.36,1.46 -3.24,0.59C25.29,50.72 26.63,49.81 26.97,49.57z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M31.84,15.54c-0.17,-1.81 0.25,-5.07 5,-6.55c1.39,-0.43 2.25,0.25 2.41,0.78c0.4,1.32 -0.76,1.84 -1.29,2.01c-3.65,1.18 -3.83,3 -4.58,4.16S31.9,16.09 31.84,15.54z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M78.22,47.17c4.81,-4.27 8,-9.04 10.1,-19.9c0.19,-0.96 0.47,-1.22 0.99,-1.2c0.85,0.02 0.89,0.81 0.8,1.35C88.33,39 86.64,42.3 80.71,48.87c-0.67,0.74 -2.3,1.41 -3.22,0.64C76.66,48.82 77.62,47.71 78.22,47.17z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M85.3,15.63c-0.17,-1.81 0.25,-5.07 5,-6.55c1.39,-0.43 2.25,0.25 2.41,0.78c0.4,1.32 -0.76,1.84 -1.29,2.01c-3.65,1.18 -3.83,3 -4.58,4.16C86.1,17.19 85.36,16.18 85.3,15.63z"
android:fillColor="#FFCA28"/>
<path
android:pathData="M31.59,71.62C19.97,66.35 16.55,52.6 14.73,46.63c-0.24,-0.79 -0.12,-1.54 0.67,-1.78c0.79,-0.24 1.26,0.27 1.51,1.06c1.32,4.33 6.45,18.79 17.04,22.9c0.77,0.3 1.97,1.03 1.32,2.28C34.84,71.9 33.46,72.47 31.59,71.62z"
android:fillColor="#FFF59D"/>
<path
android:pathData="M12.68,24.63c-0.56,-1.16 -0.79,-2.26 -3.84,-3.53c-0.77,-0.32 -1.28,-1.03 -1.07,-1.83s1.01,-1.4 2.17,-1.2c3.77,0.65 4.59,4.48 4.75,5.81C14.84,25.16 13.25,25.79 12.68,24.63z"
android:fillColor="#FFF59D"/>
<path
android:pathData="M96.87,71.62c11.62,-5.27 15.04,-19.02 16.86,-24.99c0.24,-0.79 0.12,-1.54 -0.67,-1.78c-0.79,-0.24 -1.26,0.27 -1.51,1.06c-1.32,4.33 -6.45,18.79 -17.04,22.9c-0.77,0.3 -1.97,1.03 -1.32,2.28C93.62,71.9 95,72.47 96.87,71.62z"
android:fillColor="#FFF59D"/>
<path
android:pathData="M115.78,24.63c0.56,-1.16 0.79,-2.26 3.84,-3.53c0.77,-0.32 1.28,-1.03 1.07,-1.83s-1.01,-1.4 -2.17,-1.2c-3.77,0.65 -4.59,4.48 -4.75,5.81C113.62,25.16 115.22,25.79 115.78,24.63z"
android:fillColor="#FFF59D"/>
<path
android:pathData="M59.38,29.55c0.61,-1.25 1.68,-2.96 5.17,-3.68c1.34,-0.28 1.73,-0.86 1.61,-1.74c-0.24,-1.83 -2.52,-1.7 -3.75,-1.41c-4.1,0.96 -5.01,4.6 -5.18,6.04C57.06,30.13 58.78,30.8 59.38,29.55z"
android:fillColor="#FFF59D"/>
</vector>

View file

@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,4.5C36.2,4.5 8,28.1 8,55.8s44.3,67.7 56.2,67.7c13.2,0 55.8,-39.9 55.8,-67.7S91.8,4.5 64,4.5z"
android:fillColor="#ADBCC3"/>
<path
android:pathData="M64,102.35c-9.37,0 -16.06,-5.52 -18.07,-8.58c-0.76,-0.98 -0.92,-2.31 -0.41,-3.44c0.39,-0.74 1.17,-1.18 2,-1.15c0.3,0 0.6,0.05 0.88,0.15C53.1,90.8 57.23,93 64,93s10.92,-2.16 15.63,-3.63c0.28,-0.1 0.58,-0.15 0.88,-0.15c0.83,-0.03 1.61,0.41 2,1.15c0.51,1.13 0.35,2.46 -0.41,3.44C80.06,96.83 73.37,102.35 64,102.35z"
android:fillColor="#422B0D"/>
<path
android:pathData="M54.05,81.56c-3,3.88 -17.71,3.89 -28.85,-6.36c-10.09,-9.28 -9.46,-25.64 -6.13,-28.94s19.19,-3.38 28.85,6.36S57.72,77.92 54.05,81.56z"
android:fillColor="#422B0D"/>
<path
android:pathData="M80.08,52.58c9.66,-9.7 25.52,-9.62 28.85,-6.33s3.53,19.11 -6.13,28.8S77.64,85 73.94,81.38S70.42,62.28 80.08,52.58z"
android:fillColor="#422B0D"/>
<path
android:pathData="M64,4.5c14.52,0 29.13,6.42 39.8,16.5C93,9.46 77.17,2 61.47,2c-27.8,0 -56,23.6 -56,51.3c0,15.6 14.06,35.11 28.47,49.18C20.46,88.64 8,70.49 8,55.8C8,28.1 36.2,4.5 64,4.5z"
android:fillColor="#ADBCC3"/>
</vector>

View file

@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M90.47,27.22C71.11,27.22 64,47 64,47s-7.02,-19.78 -26.52,-19.78c-14.65,0 -31.36,11.61 -25.18,38c6.17,26.39 51.75,59.28 51.75,59.28s45.41,-32.88 51.59,-59.27C121.8,38.83 106.3,27.22 90.47,27.22z"
android:fillColor="#EF5592"/>
<path
android:pathData="M34.49,29.19c15.2,0 22.75,16.34 25.18,22.96c0.35,0.94 1.66,0.98 2.06,0.05l2.23,-5.2c-3.14,-10.02 -11.76,-19.78 -26.48,-19.78c-6.09,0 -12.54,2.02 -17.55,6.26C24.36,30.58 29.55,29.19 34.49,29.19z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M90.47,27.22c-4.68,0 -8.94,1.02 -12.26,3.07c2.33,-0.9 5.22,-1.09 8.08,-1.09c14.32,0 27.14,10.86 21.36,35.97c-4.97,21.55 -33.99,47.7 -42.85,57.68c-0.56,0.63 -0.76,1.66 -0.76,1.66s45.41,-32.88 51.59,-59.27C121.8,38.83 106.32,27.22 90.47,27.22z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M22.47,41.23c3.31,-4.14 9.23,-7.55 14.25,-3.62c2.71,2.13 1.53,6.5 -0.9,8.34c-3.54,2.68 -6.61,4.31 -8.76,8.51c-1.29,2.53 -2.07,5.29 -2.46,8.11c-0.16,1.11 -1.61,1.38 -2.17,0.41C18.7,56.36 17.64,47.26 22.47,41.23z"
android:fillColor="#F386AB"/>
<path
android:pathData="M75.6,49.92c-1.55,0 -2.65,-1.5 -2.08,-2.95c1.06,-2.66 2.41,-5.25 4.05,-7.55c2.42,-3.39 7.03,-5.37 9.94,-3.32c2.99,2.11 2.6,6.31 0.5,8.34C83.5,48.81 77.83,49.92 75.6,49.92z"
android:fillColor="#F386AB"/>
<path
android:pathData="M85.46,21.16c3.75,-2.68 16.78,-6.01 26.98,0.95s11.06,20.62 10.11,25.08l-0.4,0.04c-0.53,-4.28 -3.15,-14.63 -13.57,-21.88c-8.98,-6.25 -21.96,-4.05 -23.01,-3.81L85.46,21.16z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M93.99,11.04c3.21,-2.01 13.19,-5.69 22.21,-0.19s10.77,15.84 10.45,19.6l-0.38,0.12c-0.5,-2.64 -4.68,-11.65 -13.12,-16.03s-19.08,-3.11 -19.08,-3.11L93.99,11.04z"
android:fillColor="#F48FB1"/>
<path
android:pathData="M42.54,21.16c-3.75,-2.68 -16.78,-6.01 -26.98,0.95S4.5,42.73 5.45,47.19l0.4,0.04c0.53,-4.28 3.15,-14.63 13.57,-21.88c8.98,-6.25 21.96,-4.05 23.01,-3.81L42.54,21.16z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M34.01,11.04c-3.21,-2.01 -13.19,-5.69 -22.21,-0.19S1.03,26.69 1.35,30.45l0.38,0.12c0.5,-2.64 4.68,-11.65 13.12,-16.03s19.08,-3.11 19.08,-3.11L34.01,11.04z"
android:fillColor="#F48FB1"/>
<path
android:pathData="M40.88,115.41c-4.31,-0.54 -8.2,-2.27 -11.73,-4.43c-3.52,-2.2 -6.69,-4.9 -9.44,-7.97c-2.75,-3.06 -5.11,-6.48 -6.95,-10.19c-1.8,-3.72 -3.17,-7.72 -3.39,-12.04l0.45,-0.22l1.43,2.57c0.51,0.84 1,1.69 1.53,2.51c1.03,1.66 2.11,3.3 3.25,4.9c2.27,3.19 4.74,6.24 7.38,9.13c2.6,2.92 5.38,5.7 8.34,8.27l2.25,1.89l2.32,1.8l2.37,1.74l2.44,1.63L40.88,115.41z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M28.19,118.75c-3.25,-0.54 -6.12,-1.72 -8.86,-3.21c-2.71,-1.52 -5.27,-3.46 -7.44,-5.87c-2.18,-2.39 -3.9,-5.23 -5.02,-8.2c-1.09,-2.99 -1.75,-6.07 -1.61,-9.36l0.37,-0.16c1.24,2.7 2.54,5.37 4.02,7.92c1.48,2.56 3.22,4.96 5.22,7.12c1.96,2.2 4.16,4.18 6.47,6.04c1.15,0.94 2.33,1.83 3.52,2.72c1.18,0.91 2.37,1.78 3.57,2.67L28.19,118.75z"
android:fillColor="#F48FB1"/>
<path
android:pathData="M118.62,80.79c-0.21,4.33 -1.57,8.33 -3.38,12.05c-1.84,3.71 -4.19,7.12 -6.95,10.18c-2.76,3.05 -5.93,5.76 -9.45,7.96c-3.54,2.16 -7.42,3.89 -11.73,4.44l-0.26,-0.43l2.44,-1.63l2.37,-1.74l2.32,-1.8l2.25,-1.89c2.96,-2.57 5.73,-5.34 8.34,-8.27c2.64,-2.89 5.11,-5.94 7.38,-9.13c1.14,-1.6 2.22,-3.23 3.25,-4.9c0.53,-0.82 1.02,-1.67 1.53,-2.51l1.43,-2.57L118.62,80.79z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M122.74,92.1c0.14,3.3 -0.51,6.38 -1.61,9.37c-1.12,2.97 -2.84,5.81 -5.03,8.2c-2.18,2.4 -4.73,4.35 -7.44,5.86c-2.74,1.49 -5.6,2.67 -8.85,3.21l-0.23,-0.33c1.2,-0.88 2.39,-1.76 3.57,-2.67c1.19,-0.89 2.37,-1.78 3.52,-2.72c2.3,-1.86 4.51,-3.84 6.47,-6.04c2,-2.16 3.73,-4.56 5.22,-7.12c0.74,-1.28 1.44,-2.58 2.09,-3.91c0.67,-1.32 1.3,-2.66 1.92,-4.01L122.74,92.1z"
android:fillColor="#F48FB1"/>
</vector>

View file

@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.96c-10.01,0 -17.79,6.18 -22.76,13.12c-5.57,7.77 -11.05,20.8 -13.12,25.96c-0.54,1.35 -0.28,2.88 0.67,3.98l13.65,15.85c0.43,0.5 0.49,1.21 0.17,1.78L61.17,89.34c-0.43,0.75 -0.54,1.63 -0.31,2.46l6.26,22.43c0.28,0.99 1.46,1.38 2.27,0.75c13.33,-10.44 47.44,-39.08 53.04,-63.02C129.41,22.1 111.87,8.96 93.96,8.96z"
android:fillColor="#F44336"/>
<path
android:pathData="M63.55,68.35L48.94,51.37l10.93,-23.2c0.79,-1.68 0.65,-3.67 -0.42,-5.19C54.97,16.62 46.9,8.96 33.99,8.96c-16.58,0 -35.48,13.14 -28.5,43.01c5.39,23.06 37.71,51.36 52.02,62.68c0.36,0.29 0.9,0.05 0.93,-0.42l0.61,-7.11l-6.09,-17.57l10.83,-18.74C64.24,70.03 64.15,69.04 63.55,68.35z"
android:fillColor="#F44336"/>
<path
android:pathData="M93.96,8.96c-6.63,0 -12.27,2.72 -16.77,6.56c0,0 0,0 0,0c0.81,-0.59 6.11,-4.33 12.05,-4.33c16.21,0 30.72,12.29 24.17,40.7c-5.24,22.72 -34.09,49.96 -46.12,62.7c0.43,0.71 1.41,0.94 2.11,0.39c13.33,-10.44 47.44,-39.08 53.04,-63.02C129.41,22.1 111.87,8.96 93.96,8.96z"
android:fillColor="#CC3333"/>
<path
android:pathData="M77.13,34.65c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.07,33.39 79.66,34.65 77.13,34.65z"
android:fillColor="#FF8A80"/>
<path
android:pathData="M17,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.73,41.94 11.53,31.64 17,24.82z"
android:fillColor="#FF8A80"/>
<path
android:pathData="M52.96,89.55l10.83,-18.74c0.46,-0.79 0.36,-1.78 -0.23,-2.47L48.94,51.37L60.59,27.1c0.79,-1.68 0.65,-3.67 -0.42,-5.19C55.69,15.55 46.9,8.96 33.99,8.96c-10.02,0 -20.89,4.81 -26.38,15.22c5.92,-7.45 15.06,-10.94 23.59,-10.94c12.91,0 20.98,7.66 25.46,14.02c1.07,1.52 1.21,3.51 0.42,5.19l-10.93,23.2l14.62,16.98c0.59,0.69 0.69,1.68 0.23,2.47L50.17,93.83c0,0 5.91,15.8 8.1,20.7c0,0 0.17,0 0.3,-0.85c0,0 0.88,-6.25 0.4,-7.74C58.52,104.52 52.96,89.55 52.96,89.55z"
android:fillColor="#CC3333"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M105.23,4.62C94.79,7.26 93.65,18.91 93.65,18.91s-6.49,-9.72 -17.01,-7.05c-7.9,2 -15.33,10.55 -8.4,23.94c6.93,13.4 36.01,24.92 36.01,24.92S124.27,36.77 124,21.69C123.72,6.61 113.77,2.46 105.23,4.62z"
android:fillColor="#EF5592"/>
<path
android:pathData="M75.3,13.32c8.2,-2.07 14.5,5.71 16.72,8.95c0.32,0.46 1.03,0.3 1.12,-0.25l0.6,-3.75c-3.06,-4.98 -9.15,-8.43 -17.1,-6.42c-3.29,0.83 -6.49,2.8 -8.61,5.77C70.02,15.46 72.63,14 75.3,13.32z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M105.23,4.62c-2.52,0.64 -4.68,1.77 -6.19,3.33c1.14,-0.8 2.67,-1.3 4.21,-1.69c7.73,-1.96 15.91,1.96 15.46,16.29c-0.41,13.04 -16.4,37.35 -16.4,37.35l1.95,0.81c0,0 20.01,-23.94 19.74,-39.02C123.72,6.61 113.79,2.45 105.23,4.62z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M72.02,19.38c1.74,-2.38 4.96,-4.42 7.84,-2.35c1.56,1.12 1,3.58 -0.3,4.66c-1.9,1.58 -3.58,2.55 -4.67,4.94c-0.66,1.44 -1.03,2.99 -1.18,4.57c-0.06,0.62 -0.86,0.81 -1.19,0.28C70.28,27.88 69.48,22.85 72.02,19.38z"
android:fillColor="#F386AB"/>
<path
android:pathData="M100.41,17.38c-0.86,0.09 -1.56,-0.67 -1.33,-1.51c0.43,-1.54 1.02,-3.05 1.79,-4.42c1.14,-2.02 3.57,-3.39 5.3,-2.43c1.78,0.99 1.81,3.34 0.77,4.59C104.72,16.29 101.65,17.25 100.41,17.38z"
android:fillColor="#F386AB"/>
<path
android:pathData="M85.16,59.17C69.82,50.17 55,62.53 55,62.53s3.64,-18.93 -11.8,-27.99c-11.6,-6.81 -30.23,-5.39 -37.61,18.38c-7.38,23.77 13.41,71 13.41,71s51.25,-4.92 68.41,-22.95C104.57,82.94 97.69,66.53 85.16,59.17z"
android:fillColor="#EF5592"/>
<path
android:pathData="M39.91,34.71c12.03,7.07 10.41,23.51 9.26,29.89c-0.16,0.91 0.86,1.55 1.61,1l4.18,-3.08c2.18,-9.39 -0.11,-21.13 -11.77,-27.98c-4.82,-2.83 -10.87,-4.23 -16.81,-3.2C31.24,31.09 36,32.41 39.91,34.71z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M85.16,59.17c-3.7,-2.17 -7.55,-3.35 -11.13,-3.27c2.26,0.37 4.64,1.56 6.91,2.89c11.34,6.66 16.44,21.22 0.19,38.41c-13.95,14.76 -49.09,21.97 -60.75,25.75c-0.74,0.24 -1.37,0.96 -1.37,0.96s51.25,-4.92 68.41,-22.95C104.57,82.94 97.71,66.55 85.16,59.17z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M24.79,38.65c4.55,-1.73 10.82,-1.69 12.96,3.76c1.16,2.95 -1.81,5.85 -4.59,6.18c-4.05,0.48 -7.24,0.34 -10.9,2.67c-2.2,1.4 -4.1,3.23 -5.72,5.28c-0.64,0.81 -1.92,0.35 -1.9,-0.68C14.77,48.88 18.16,41.18 24.79,38.65z"
android:fillColor="#F386AB"/>
<path
android:pathData="M62.82,70.24c-1.23,-0.72 -1.4,-2.43 -0.28,-3.3c2.07,-1.62 4.35,-3.04 6.72,-4.1c3.49,-1.56 8.06,-0.99 9.42,2c1.39,3.06 -0.88,6.21 -3.48,6.84C69.6,73.03 64.59,71.28 62.82,70.24z"
android:fillColor="#F386AB"/>
</vector>

View file

@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.96C72.05,8.96 64,31.34 64,31.34S56.06,8.96 33.99,8.96c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.41,22.1 111.87,8.96 93.96,8.96z"
android:fillColor="#EF5592"/>
<path
android:pathData="M30.61,11.19c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06l2.52,-5.88C60.41,20 50.65,8.96 33.99,8.96c-6.9,0 -14.19,2.28 -19.86,7.09C19.14,12.76 25.01,11.19 30.61,11.19z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M93.96,8.96c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.41,22.1 110.53,8.96 93.96,8.96z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M17,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.73,41.94 11.53,31.64 17,24.82z"
android:fillColor="#F386AB"/>
<path
android:pathData="M74.03,88.49m-3.6,0a3.6,3.6 0,1 1,7.2 0a3.6,3.6 0,1 1,-7.2 0"
android:fillColor="#FDD835"/>
<path
android:pathData="M77.63,44.27m-4.28,0a4.28,4.28 0,1 1,8.56 0a4.28,4.28 0,1 1,-8.56 0"
android:fillColor="#FFF891"/>
<path
android:pathData="M83.09,74.26l6.94,-6.94l6.94,6.94l-6.94,6.94z"
android:fillColor="#FFF891"/>
<path
android:pathData="M65.43,74.89l-7.81,-2.52c-5,-1.65 -7.92,-5.69 -9.29,-10.77L44.9,44.87c-0.09,-0.33 -0.41,-0.56 -0.98,-0.56c-0.57,0 -0.89,0.23 -0.98,0.56l-3.43,16.74c-1.38,5.08 -4.3,9.12 -9.29,10.77l-7.81,2.52c-1.11,0.36 -1.12,1.92 -0.02,2.29l7.86,2.71c4.98,1.65 7.88,5.69 9.26,10.75l3.44,16.55c0.09,0.33 0.4,0.55 0.98,0.55s0.89,-0.23 0.98,-0.55l3.44,-16.55c1.38,-5.06 4.28,-9.09 9.26,-10.75l7.86,-2.71C66.56,76.81 66.54,75.25 65.43,74.89z"
android:fillColor="#FDD835"/>
<path
android:pathData="M66.18,75.59c-0.12,-0.31 -0.36,-0.58 -0.74,-0.7l-7.81,-2.52c-5,-1.65 -7.92,-5.69 -9.29,-10.77L44.9,44.87c-0.05,-0.19 -0.19,-0.34 -0.39,-0.44l1.07,16.6c0.82,7.67 1.53,11.28 7.65,12.33C58.48,74.27 64.56,75.31 66.18,75.59z"
android:fillColor="#FFF176"/>
<path
android:pathData="M66.19,76.46l-13.54,3.11c-4.77,1.21 -7.4,3.98 -7.4,11.2l-1.14,16.95c0.46,-0.05 0.71,-0.25 0.79,-0.53l3.44,-16.55c1.38,-5.06 4.28,-9.09 9.26,-10.75l7.86,-2.71C65.84,77.06 66.07,76.78 66.19,76.46z"
android:fillColor="#F4B400"/>
<path
android:pathData="M109.55,25.17c-6.09,-2.01 -6.64,-4.28 -7.67,-8.09L99.33,5.07c-0.15,-0.58 -1.66,-0.58 -1.82,0l-1.73,11.33c-1.03,3.8 -3.22,6.83 -6.96,8.07l-6.69,2.59c-0.83,0.27 -0.84,1.44 -0.02,1.72l6.73,2.12c3.73,1.24 5.91,4.26 6.94,8.05l1.73,10.96c0.16,0.57 1.66,0.57 1.81,0l2.03,-10.93c1.03,-3.82 2.6,-6.85 7.67,-8.09l6.37,-2.13c0.83,-0.28 0.82,-1.45 -0.01,-1.72L109.55,25.17z"
android:fillColor="#FDD835"/>
<path
android:pathData="M99.82,16.95c0.62,5.74 0.94,7.34 5.59,8.52l10.43,1.89c-0.1,-0.14 -0.25,-0.25 -0.45,-0.32l-5.84,-1.88c-5.34,-1.83 -6.7,-3.92 -7.81,-8.79l-2.4,-11.3c-0.05,-0.2 -0.18,-0.32 -0.34,-0.38L99.82,16.95z"
android:fillColor="#FFF176"/>
<path
android:pathData="M99.99,36.99c0,-5.42 2.96,-8.09 7.67,-8.09l8.05,-0.3c-0.1,0.14 -0.63,0.28 -0.82,0.35l-5.33,1.85c-4.46,1.2 -6.41,2.55 -7.67,8.09l-2.55,11.02c-0.05,0.2 -0.18,0.33 -0.34,0.39L99.99,36.99z"
android:fillColor="#F4B400"/>
</vector>

View file

@ -0,0 +1,66 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.97C72.05,8.97 64,31.35 64,31.35S56.06,8.97 33.99,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.02,25.75 45.2,56.97 55.87,65.08c-10.2,-7.77 -46.29,-36.64 -51.87,-60.49C2.98,28.73 20.6,16.49 36.04,16.49C56.6,16.49 64,37.35 64,37.35s7.5,-20.86 27.91,-20.86c16.69,0 33.03,12.24 26.53,40.07c-6.5,27.8 -54.31,62.44 -54.39,62.49c0,0 0,0 0,0s51.39,-37.21 58.38,-67.08C129.41,22.11 111.87,8.97 93.96,8.97z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M118.44,56.56c6.51,-27.82 -9.84,-40.07 -26.53,-40.07C71.5,16.49 64,37.35 64,37.35s-7.4,-20.86 -27.96,-20.86c-15.44,0 -33.06,12.24 -26.55,40.07c5.58,23.85 41.67,52.73 51.87,60.49c1.7,1.29 2.68,2 2.69,2C64.12,119 111.93,84.36 118.44,56.56z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M84.23,42.62c-15.22,0 -20.8,15.55 -20.8,15.55s-5.52,-15.55 -20.84,-15.55c-11.51,0 -24.64,9.13 -19.79,29.87c4.85,20.74 40.67,46.59 40.67,46.59s35.69,-25.84 40.54,-46.58C108.86,51.75 96.67,42.62 84.23,42.62z"
android:fillColor="#EF5090"/>
<path
android:pathData="M40.24,44.17c11.94,0 17.88,12.84 19.79,18.04c0.27,0.74 1.31,0.77 1.62,0.04l1.75,-4.09c-2.46,-7.88 -9.24,-15.55 -20.81,-15.55c-4.79,0 -9.85,1.59 -13.79,4.92C32.27,45.26 36.35,44.17 40.24,44.17z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M84.23,42.62c-3.76,0 -6.93,0.95 -9.58,2.38c1.83,-0.7 4.06,-0.83 6.3,-0.83c11.26,0 21.33,8.53 16.78,28.27c-3.9,16.94 -26.71,37.49 -33.68,45.33c-0.16,0.18 -0.28,0.63 -0.38,1.15c2.99,-2.2 35.69,-26.63 40.32,-46.42C108.86,51.75 96.67,42.62 84.23,42.62z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M30.79,53.64c2.6,-3.25 7.26,-5.94 11.2,-2.84c2.13,1.67 1.2,5.11 -0.71,6.55c-2.78,2.11 -5.2,3.38 -6.89,6.69c-1.02,1.99 -1.63,4.16 -1.94,6.38c-0.12,0.87 -1.27,1.09 -1.7,0.32C27.82,65.53 26.99,58.38 30.79,53.64z"
android:fillColor="#F386AB"/>
<path
android:pathData="M72.54,60.47c-1.22,0 -2.09,-1.18 -1.64,-2.32c0.83,-2.09 1.9,-4.13 3.18,-5.93c1.9,-2.67 5.52,-4.22 7.82,-2.61c2.35,1.66 2.04,4.96 0.39,6.56C78.76,59.59 74.3,60.47 72.54,60.47z"
android:fillColor="#F386AB"/>
<path
android:pathData="M89.12,24.65c-18.79,0 -25.69,19.2 -25.69,19.2s-6.81,-19.2 -25.74,-19.2c-14.22,0 -30.44,11.27 -24.45,36.89c5.17,22.11 38.82,48.9 47.94,55.83c-8.64,-6.58 -39.14,-30.99 -43.86,-51.15c-5.5,-23.53 9.39,-33.89 22.46,-33.89c17.39,0 23.64,17.64 23.64,17.64s6.34,-17.64 23.6,-17.64c14.11,0 27.94,10.36 22.44,33.89c-5.5,23.51 -45.92,52.79 -46,52.85c0,0 0,0 0,0s44.08,-31.92 50.07,-57.54S104.49,24.65 89.12,24.65z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M63.47,119.08C63.47,119.08 63.47,119.08 63.47,119.08c-0.01,-0.01 -0.84,-0.61 -2.28,-1.7C62.63,118.47 63.47,119.08 63.47,119.08z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M109.47,66.23c5.5,-23.53 -8.32,-33.89 -22.44,-33.89c-17.26,0 -23.6,17.64 -23.6,17.64s-6.26,-17.64 -23.64,-17.64c-13.06,0 -27.96,10.35 -22.46,33.89c4.72,20.16 35.22,44.57 43.86,51.15c1.44,1.09 2.27,1.7 2.28,1.7C63.55,119.02 103.97,89.74 109.47,66.23z"
android:strokeAlpha="0.4"
android:fillColor="#D81B60"
android:fillAlpha="0.4"/>
<path
android:pathData="M89.12,24.65c-18.79,0 -25.69,19.2 -25.69,19.2s-6.81,-19.2 -25.74,-19.2c-14.22,0 -30.44,11.27 -24.45,36.89c5.17,22.11 38.82,48.9 47.94,55.83c-8.64,-6.58 -39.14,-30.99 -43.86,-51.15c-5.5,-23.53 9.39,-33.89 22.46,-33.89c17.39,0 23.64,17.64 23.64,17.64s6.34,-17.64 23.6,-17.64c14.11,0 27.94,10.36 22.44,33.89c-5.5,23.51 -45.92,52.79 -46,52.85c0,0 0,0 0,0s44.08,-31.92 50.07,-57.54S104.49,24.65 89.12,24.65z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M93.96,8.97C72.05,8.97 64,31.35 64,31.35S56.06,8.97 33.99,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.02,25.75 45.2,56.97 55.87,65.08c-10.2,-7.77 -46.29,-36.64 -51.87,-60.49C2.98,28.73 20.6,16.49 36.04,16.49C56.6,16.49 64,37.35 64,37.35s7.5,-20.86 27.91,-20.86c16.69,0 33.03,12.24 26.53,40.07c-6.5,27.8 -54.31,62.44 -54.39,62.49c0,0 0,0 0,0s51.39,-37.21 58.38,-67.08C129.41,22.11 111.87,8.97 93.96,8.97z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M64.05,119.05C64.05,119.05 64.05,119.05 64.05,119.05c-0.01,-0.01 -0.99,-0.72 -2.68,-2C63.06,118.34 64.05,119.05 64.05,119.05z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
<path
android:pathData="M89.12,24.65c-18.79,0 -25.69,19.2 -25.69,19.2s-6.81,-19.2 -25.74,-19.2c-14.22,0 -30.44,11.27 -24.45,36.89c5.17,22.11 38.82,48.9 47.94,55.83c-8.64,-6.58 -39.14,-30.99 -43.86,-51.15c-5.5,-23.53 9.39,-33.89 22.46,-33.89c17.39,0 23.64,17.64 23.64,17.64s6.34,-17.64 23.6,-17.64c14.11,0 27.94,10.36 22.44,33.89c-5.5,23.51 -45.92,52.79 -46,52.85c0,0 0,0 0,0s44.08,-31.92 50.07,-57.54S104.49,24.65 89.12,24.65z"
android:strokeAlpha="0.3"
android:fillColor="#D81B60"
android:fillAlpha="0.3"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M47.93,43.63L14.04,9.39c-1.15,-1.17 -3.03,-1.17 -4.2,-0.02c-1.17,1.15 -1.17,3.03 -0.02,4.2l38.11,38.5V43.63z"
android:fillColor="#FFA000"/>
<path
android:pathData="M16.76,24.66c1.93,-3.11 0.74,-7.12 0.58,-7.61c1.08,0.33 4.73,1.23 7.53,-0.5c3.27,-2.03 3.47,-5.9 1.23,-8.14c-2.74,-2.74 -7.76,-3.12 -7.76,-3.12L5.41,4.01c-0.69,-0.07 -1.26,0.51 -1.2,1.2l1.28,12.92c0,0 0.38,5.02 3.12,7.76C10.86,28.13 14.73,27.94 16.76,24.66z"
android:fillColor="#FFC107"/>
<path
android:pathData="M26.1,8.4c-0.45,-0.45 -0.96,-0.83 -1.5,-1.16c1.31,2.21 1.21,5.65 -1.56,7.35c-3.04,1.86 -6.98,1.17 -6.98,1.17s0.4,3.14 -0.52,5.94c-1.01,3.08 -5.73,4.43 -7.9,2.57c-0.18,-0.16 -0.35,-0.32 -0.52,-0.49c0.4,0.76 0.89,1.49 1.5,2.1c2.24,2.24 6.11,2.05 8.14,-1.23c1.93,-3.11 0.74,-7.12 0.58,-7.61c1.08,0.33 4.73,1.23 7.53,-0.5C28.15,14.52 28.34,10.65 26.1,8.4z"
android:fillColor="#FFA000"/>
<path
android:pathData="M47.93,49.56l-26.3,-26.57c-0.88,-0.97 -1.18,-1.92 -1.31,-2.69c-0.15,-0.94 0.04,-1.99 0.72,-2.66c-1.79,-0.16 -3.69,-0.54 -4.95,-1.82c0.06,0 0.03,2.35 0.02,2.52c-0.06,1.14 -0.23,2.28 -0.58,3.37c-1.01,3.08 -5.73,4.43 -7.9,2.57c-0.18,-0.16 -0.35,-0.32 -0.52,-0.49c0.4,0.76 0.89,1.49 1.5,2.1c2.24,2.24 6.11,2.05 8.14,-1.23c0.41,-0.66 0.69,-1.39 0.87,-2.15c0.08,-0.34 0.1,-0.66 0.2,-0.86l30.1,30.41V49.56z"
android:fillColor="#C67500"/>
<path
android:pathData="M94.79,20.83c-18.1,0 -24.75,18.5 -24.75,18.5s-6.56,-18.5 -24.79,-18.5c-13.7,0 -29.32,10.86 -23.55,35.53c5.77,24.68 48.39,55.43 48.39,55.43s42.47,-30.75 48.24,-55.42C124.09,31.7 109.59,20.83 94.79,20.83z"
android:fillColor="#F05A94"/>
<path
android:pathData="M42.45,22.68c14.21,0 21.27,15.28 23.55,21.47c0.32,0.88 1.56,0.91 1.93,0.05L70,39.33c-2.93,-9.37 -11,-18.5 -24.76,-18.5c-5.7,0 -11.72,1.89 -16.41,5.86C32.97,23.98 37.82,22.68 42.45,22.68z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M94.79,20.83c-4.48,0 -8.25,1.13 -11.4,2.84c2.18,-0.83 4.83,-0.99 7.5,-0.99c13.39,0 25.38,10.15 19.97,33.63c-4.64,20.15 -31.78,44.6 -40.07,53.93c-0.19,0.21 -0.33,0.75 -0.45,1.36c3.56,-2.62 42.47,-31.69 47.97,-55.23C124.09,31.7 109.59,20.83 94.79,20.83z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M31.2,33.94c3.1,-3.87 8.63,-7.06 13.32,-3.38c2.54,1.99 1.43,6.07 -0.84,7.79c-3.31,2.51 -6.18,4.03 -8.19,7.96c-1.21,2.37 -1.93,4.95 -2.3,7.59c-0.15,1.04 -1.51,1.3 -2.03,0.38C27.67,48.09 26.68,39.58 31.2,33.94z"
android:fillColor="#F386AB"/>
<path
android:pathData="M80.88,42.07c-1.45,0 -2.48,-1.41 -1.95,-2.76c0.99,-2.49 2.26,-4.91 3.79,-7.06c2.26,-3.17 6.57,-5.03 9.3,-3.1c2.79,1.97 2.43,5.9 0.47,7.8C88.27,41.02 82.97,42.07 80.88,42.07z"
android:fillColor="#F386AB"/>
<path
android:pathData="M71.9,72.3c1.86,-1.59 5.22,-1.79 5.22,-1.79c1.2,0.05 2.02,-1.07 1.2,-1.93c-1.52,-1.58 -3.74,-2.47 -6.16,-2.16c-3.15,0.4 -5.74,2.92 -6.22,6.06c-0.33,2.18 0.32,4.22 1.57,5.73c0.79,0.95 1.97,0.32 2.07,-0.99C69.59,77.22 70.04,73.88 71.9,72.3z"
android:fillColor="#C2185B"/>
<path
android:pathData="M106.78,107.21L91.86,92.67c0,0 -4.07,8.18 -1.82,15.92c2.47,8.51 11.34,16.17 15.71,15.35C113.05,122.57 106.78,107.21 106.78,107.21z"
android:fillColor="#FFC107"/>
<path
android:pathData="M107,106.99L92.46,92.07c0,0 8.18,-4.07 15.92,-1.82c8.51,2.47 16.17,11.34 15.35,15.71C122.36,113.26 107,106.99 107,106.99z"
android:fillColor="#FFC107"/>
<path
android:pathData="M110.16,113.33c-0.76,0 -1.52,-0.29 -2.1,-0.87L70.26,74.59c-1.16,-1.16 -1.16,-3.04 0,-4.2c0.72,-0.72 1.85,-0.86 2.6,-0.86c0.46,0 0.91,0.18 1.24,0.51l38.15,38.23c1.16,1.16 1.16,3.04 0,4.2C111.67,113.04 110.91,113.33 110.16,113.33z"
android:fillColor="#FFA000"/>
<path
android:pathData="M111.45,112.04c-0.76,0 -1.52,-0.29 -2.1,-0.87l-39.73,-39.8c-0.24,0.59 -0.31,1.22 -0.33,1.66c-0.01,0.36 0.13,0.71 0.38,0.97l38.38,38.46c0.58,0.58 1.34,0.87 2.1,0.87c0.76,0 1.52,-0.29 2.1,-0.87c0.23,-0.23 0.4,-0.49 0.54,-0.76C112.37,111.92 111.91,112.04 111.45,112.04z"
android:fillColor="#C67500"/>
</vector>

View file

@ -0,0 +1,25 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.99,8.97c-21.91,0 -29.96,22.39 -29.96,22.39S56.09,8.97 34.03,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.45,22.11 111.91,8.97 93.99,8.97z"
android:fillColor="#1976D2"/>
<path
android:pathData="M30.65,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06L64,31.35C60.45,20.01 50.69,8.97 34.03,8.97c-6.9,0 -14.19,2.28 -19.86,7.09C19.18,12.77 25.05,11.2 30.65,11.2z"
android:fillColor="#0D47A1"/>
<path
android:pathData="M93.99,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.45,22.11 110.57,8.97 93.99,8.97z"
android:fillColor="#0D47A1"/>
<path
android:pathData="M17.04,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.77,41.95 11.57,31.65 17.04,24.82z"
android:strokeAlpha="0.3"
android:fillColor="#FFFFFF"
android:fillAlpha="0.3"/>
<path
android:pathData="M77.16,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.11,33.4 79.69,34.66 77.16,34.66z"
android:strokeAlpha="0.3"
android:fillColor="#FFFFFF"
android:fillAlpha="0.3"/>
</vector>

View file

@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.97C72.05,8.97 64,31.35 64,31.35S56.06,8.97 33.99,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.41,22.11 111.87,8.97 93.96,8.97z"
android:fillColor="#7CB342"/>
<path
android:pathData="M30.61,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06l2.52,-5.88C60.41,20.01 50.65,8.97 33.99,8.97c-6.9,0 -14.19,2.28 -19.86,7.09C19.14,12.77 25.01,11.2 30.61,11.2z"
android:fillColor="#689F38"/>
<path
android:pathData="M93.96,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.41,22.11 110.53,8.97 93.96,8.97z"
android:fillColor="#689F38"/>
<path
android:pathData="M17,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.73,41.95 11.53,31.65 17,24.82z"
android:fillColor="#AED581"/>
<path
android:pathData="M77.13,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.07,33.4 79.66,34.66 77.13,34.66z"
android:fillColor="#AED581"/>
</vector>

View file

@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.97C72.05,8.97 64,31.35 64,31.35S56.06,8.97 33.99,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.41,22.11 111.87,8.97 93.96,8.97z"
android:fillColor="#FFCC32"/>
<path
android:pathData="M30.61,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06l2.52,-5.88C60.41,20.01 50.65,8.97 33.99,8.97c-6.9,0 -14.19,2.28 -19.86,7.09C19.14,12.77 25.01,11.2 30.61,11.2z"
android:fillColor="#F2A600"/>
<path
android:pathData="M93.96,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.41,22.11 110.53,8.97 93.96,8.97z"
android:fillColor="#F2A600"/>
<path
android:pathData="M17,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.73,41.95 11.53,31.65 17,24.82z"
android:fillColor="#FFF170"/>
<path
android:pathData="M77.13,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.07,33.4 79.66,34.66 77.13,34.66z"
android:fillColor="#FFF170"/>
</vector>

View file

@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.96,8.97C72.05,8.97 64,31.35 64,31.35S56.06,8.97 33.99,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.41,22.11 111.87,8.97 93.96,8.97z"
android:fillColor="#AB47BC"/>
<path
android:pathData="M30.61,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06l2.52,-5.88C60.41,20.01 50.65,8.97 33.99,8.97c-6.9,0 -14.19,2.28 -19.86,7.09C19.14,12.77 25.01,11.2 30.61,11.2z"
android:fillColor="#8E24AA"/>
<path
android:pathData="M93.96,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.41,22.11 110.53,8.97 93.96,8.97z"
android:fillColor="#8E24AA"/>
<path
android:pathData="M17,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.73,41.95 11.53,31.65 17,24.82z"
android:fillColor="#CE93D8"/>
<path
android:pathData="M77.13,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.07,33.4 79.66,34.66 77.13,34.66z"
android:fillColor="#CE93D8"/>
</vector>

View file

@ -0,0 +1,63 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M94.92,8.96c-21.91,0 -29.96,22.39 -29.96,22.39S57.02,8.96 34.95,8.96c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C130.38,22.1 112.83,8.96 94.92,8.96z"
android:fillColor="#EF5592"/>
<path
android:pathData="M31.57,11.19c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06l2.52,-5.88C61.37,20 51.62,8.96 34.95,8.96c-6.9,0 -14.19,2.28 -19.86,7.09C20.1,12.76 25.97,11.19 31.57,11.19z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M94.92,8.96c-5.42,0 -9.98,1.37 -13.79,3.43c2.64,-1.01 5.84,-1.2 9.07,-1.2c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.22,0.25 -0.4,0.91 -0.54,1.65c4.31,-3.17 51.4,-38.35 58.06,-66.85C130.38,22.1 112.83,8.96 94.92,8.96z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M78.09,34.65c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C87.03,33.39 80.62,34.65 78.09,34.65z"
android:fillColor="#F386AB"/>
<path
android:pathData="M15.22,48.24c-0.01,-0.25 -1.72,-4.23 -2.09,-9c-0.42,-5.37 1.71,-11.01 4.34,-14.74c2.49,-3.54 7.16,-7.28 11.48,-5.26c1.41,0.66 2.45,2.16 2.33,3.71c-0.12,1.46 -1.2,2.77 -2.21,3.75c-1.23,1.21 -2.65,2.18 -3.96,3.28C17.78,36.12 15.06,44.65 15.22,48.24z"
android:fillColor="#F386AB"/>
<path
android:pathData="M6.45,51.96C7.37,55.88 9.06,59.93 11.3,64h107.27c2.23,-4.07 3.92,-8.12 4.83,-12.03c0.51,-2.17 0.87,-4.23 1.13,-6.23H5.35C5.59,47.73 5.95,49.8 6.45,51.96z"
android:fillColor="#FFC107"/>
<path
android:pathData="M65.4,68.4c-7.98,-4.8 -16.51,-13.35 -21.54,-19.64l-19.65,5.41c1.03,7.99 -1.07,26.6 -1.07,26.6l3.12,3.58l4.77,-3.3l8.56,5.7c1.12,0.95 1.55,0.53 1.74,-0.28c0.9,-3.77 0.85,-9.98 0.02,-16.27c4.63,6.4 10.27,11.88 14.1,14.14c0.71,0.42 1.47,0.16 1.66,-0.87l0.26,-9.98l7.77,-3.36C65.96,69.92 66.12,68.83 65.4,68.4z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M28.63,49.75l16.38,-2.14c5.03,6.29 13.71,13.64 21.7,18.44c0.72,0.43 0.56,1.51 -0.25,1.73l-6.87,3.41l-0.08,9.66c0.17,0.81 -0.71,1.43 -1.42,1.01c-4.88,-2.88 -12.28,-9.58 -18.73,-16.01S28.63,49.75 28.63,49.75z"
android:fillColor="#FFE02E"/>
<path
android:pathData="M35.29,43.88L22.36,54.17c1.03,7.99 0.27,19.34 -1.82,28.42c-0.19,0.82 0.7,1.46 1.42,1.02l7.23,-2.56l7,6.65c0.47,0.69 1.52,0.49 1.72,-0.32c1.32,-5.51 1.65,-15.48 1.51,-24.59S35.29,43.88 35.29,43.88z"
android:fillColor="#FFE02E"/>
<path
android:pathData="M50.45,53.49c-2.06,-1.99 -3.92,-3.99 -5.43,-5.88l-9.73,-3.72L22.36,54.17c0.38,2.98 0.52,6.42 0.43,10.04c2.7,0.81 9.5,3.32 16.53,9.58c0.09,-2.56 0.13,-5.22 0.12,-7.87c0.22,0.22 0.45,0.44 0.67,0.67c-1.07,-1.07 -3.32,-3.41 -4.5,-5.22C35.61,61.38 45.86,58.71 50.45,53.49z"
android:fillColor="#FFC107"/>
<path
android:pathData="M16.59,73.11c-3.54,0.98 -7.96,-5.44 -11.22,-13.07S2.53,45.91 4.76,45.29c3.39,-1.66 7.4,-1.94 12.63,-1.65c3.39,0.52 6.85,1.5 9.93,2.56c3.47,1.19 3.87,10.86 3.87,10.86C25.47,67.16 21.55,71.74 16.59,73.11z"
android:fillColor="#FFE02E"/>
<path
android:pathData="M30.25,56.07c0,0 -10.17,6.29 -13.37,9.23c-4.52,4.15 -4.74,7.12 -1.96,7.78c7.46,1.78 16.4,-15.68 16.4,-15.68L30.25,56.07z"
android:fillColor="#FFA000"/>
<path
android:pathData="M56.78,54.67c3.17,-1.86 1.72,-9.53 -1.4,-17.21s-8.03,-11.94 -10.03,-10.77c-3.55,1.27 -6.55,3.96 -10.02,7.92c-2,2.8 -3.73,5.97 -5.14,8.92c-1.59,3.33 4.99,10.39 4.99,10.39C46.34,56.88 52.34,57.27 56.78,54.67z"
android:fillColor="#FFE02E"/>
<path
android:pathData="M35.13,52.55c0,0 11.59,-2.9 15.91,-3.15c6.11,-0.34 8.37,1.58 6.89,4.04c-3.96,6.61 -22.6,0.8 -22.6,0.8L35.13,52.55z"
android:fillColor="#FFA000"/>
<path
android:pathData="M118.56,64c2.23,-4.07 3.92,-8.12 4.83,-12.03c0.51,-2.17 0.87,-4.23 1.13,-6.23H62.26c0.6,8.34 -3.57,10.38 -3.57,10.38L67.17,64H118.56z"
android:fillColor="#FFE02E"/>
<path
android:pathData="M58.11,53.46c1.99,-2.87 -0.59,-11.13 -2.58,-15.99c-3.14,-7.69 -8.09,-11.94 -10.1,-10.77c-0.01,0 -0.02,0.01 -0.03,0.01c-1.43,0.51 -1.92,2.37 -0.89,3.49c7.1,7.75 4.59,9.6 7.33,15.02c1.59,3.15 3.31,3.5 5.02,4.83C58.85,51.6 58.11,53.46 58.11,53.46z"
android:fillColor="#FFF685"/>
<path
android:pathData="M114.36,51.89c-0.91,3.93 -2.53,8 -4.64,12.11h8.84c2.23,-4.07 3.92,-8.12 4.83,-12.03c0.51,-2.17 0.87,-4.23 1.13,-6.23h-9.04C115.22,47.7 114.86,49.74 114.36,51.89z"
android:fillColor="#FFA000"/>
<path
android:pathData="M30.48,56.98c-3.4,-1.52 -5.39,-6.84 -5.67,-9.67c-0.28,-2.84 4.2,-4.8 5.19,-4.19c1,0.61 6.15,9.57 6.15,10.93S32.69,57.97 30.48,56.98z"
android:fillColor="#FFF685"/>
<path
android:pathData="M15.46,61.59c-0.24,-2.51 -1.85,-4.71 -2.2,-5.65c-0.99,-2.67 -1.64,-5.47 -1.88,-8.31c-0.15,-1.71 0.15,-3.47 -2.02,-3.48c-2.06,0 -3.3,0.58 -4.04,1.65c-1.42,2.05 -0.7,7.99 1.85,13.86c2.16,4.98 5.9,10.06 5.9,10.06S15.82,65.31 15.46,61.59z"
android:fillColor="#FFF685"/>
</vector>

View file

@ -0,0 +1,65 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M117.99,47.08c-3.02,9.38 -5.29,29.06 -36.93,35.58l-24.61,30.85c64.67,-2.57 65.79,-47.27 64.49,-66.05C120.81,45.78 118.51,45.47 117.99,47.08z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="77"
android:startY="74.79"
android:endX="120.07"
android:endY="94.11"
android:type="linear">
<item android:offset="0.11" android:color="#09FFBFD6"/>
<item android:offset="0.6" android:color="#FFFFBFD6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M77.1,12.12c0,0 -15.99,-7.03 -41.05,4.02c-15.9,7.01 -23.19,20.3 -24.93,31.72c-0.17,1.1 0.91,1.46 2.03,0c5.79,-7.53 12.4,-14.5 29.04,-18.04c22.47,-5.31 34.91,3.04 34.91,3.04V12.12z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="75.83"
android:startY="24.65"
android:endX="8.22"
android:endY="32.64"
android:type="linear">
<item android:offset="0.12" android:color="#09FFBFD6"/>
<item android:offset="0.53" android:color="#FFFFBFD6"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M65.19,49.14c-15.05,0 -20.58,15.38 -20.58,15.38s-5.46,-15.38 -20.62,-15.38c-11.39,0 -24.38,9.03 -19.58,29.55c4.8,20.52 40.23,46.09 40.23,46.09s35.31,-25.57 40.11,-46.09C89.55,58.17 77.49,49.14 65.19,49.14z"
android:fillColor="#EF5592"/>
<path
android:pathData="M21.66,50.67c11.82,0 17.69,12.7 19.58,17.85c0.27,0.73 1.29,0.76 1.6,0.04l1.73,-4.04c-2.44,-7.79 -9.14,-15.38 -20.59,-15.38c-4.74,0 -9.75,1.57 -13.64,4.87C13.78,51.75 17.82,50.67 21.66,50.67z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M65.19,49.14c-3.64,0 -6.71,1.06 -9.29,2.65c1.81,-0.7 3.82,-1.12 6.05,-1.12c11.14,0 21.1,8.44 16.61,27.96c-3.86,16.76 -26.43,37.09 -33.32,44.85c-0.44,0.49 -0.59,1.29 -0.59,1.29s35.31,-25.57 40.11,-46.09C89.55,58.17 76.58,49.14 65.19,49.14z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M12.31,60.04c2.58,-3.22 7.18,-5.87 11.08,-2.81c2.11,1.65 1.19,5.05 -0.7,6.48c-2.75,2.09 -5.14,3.35 -6.81,6.62c-1.01,1.97 -1.61,4.11 -1.92,6.31c-0.12,0.86 -1.26,1.08 -1.68,0.32C9.38,71.81 8.56,64.73 12.31,60.04z"
android:fillColor="#F386AB"/>
<path
android:pathData="M53.62,66.8c-1.21,0 -2.06,-1.17 -1.62,-2.29c0.82,-2.07 1.88,-4.08 3.15,-5.87c1.88,-2.64 5.46,-4.18 7.73,-2.58c2.32,1.64 2.02,4.91 0.39,6.49C59.77,65.93 55.36,66.8 53.62,66.8z"
android:fillColor="#F386AB"/>
<path
android:pathData="M109.21,5.22c-11.23,0 -15.36,11.48 -15.36,11.48S89.78,5.22 78.47,5.22c-8.5,0 -18.2,6.74 -14.61,22.05c3.58,15.31 30.03,34.4 30.03,34.4s26.35,-19.08 29.93,-34.39C127.4,11.96 118.4,5.22 109.21,5.22z"
android:fillColor="#EF5592"/>
<path
android:pathData="M76.73,6.37c8.82,0 13.2,9.48 14.61,13.32c0.2,0.55 0.97,0.57 1.2,0.03l1.29,-3.02c-1.82,-5.82 -6.82,-11.48 -15.37,-11.48c-3.54,0 -7.27,1.17 -10.18,3.63C70.85,7.17 73.86,6.37 76.73,6.37z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M109.21,5.22c-2.71,0 -5.01,0.79 -6.94,1.98c1.35,-0.52 2.85,-0.83 4.51,-0.83c8.31,0 15.75,6.3 12.39,20.87C116.3,39.74 99.46,54.92 94.32,60.7c-0.33,0.37 -0.44,0.97 -0.44,0.97s26.35,-19.08 29.93,-34.39C127.4,11.96 117.71,5.22 109.21,5.22z"
android:fillColor="#DA2E75"/>
<path
android:pathData="M69.76,13.35c1.92,-2.4 5.36,-4.38 8.27,-2.1c1.57,1.24 0.89,3.77 -0.52,4.84c-2.05,1.56 -3.84,2.5 -5.08,4.94c-0.75,1.47 -1.2,3.07 -1.43,4.71c-0.09,0.65 -0.94,0.8 -1.26,0.24C67.57,22.13 66.95,16.85 69.76,13.35z"
android:fillColor="#F386AB"/>
<path
android:pathData="M100.58,18.4c-0.9,0 -1.54,-0.87 -1.21,-1.71c0.61,-1.55 1.4,-3.05 2.35,-4.38c1.4,-1.97 4.08,-3.12 5.77,-1.93c1.73,1.22 1.51,3.66 0.29,4.84C105.17,17.75 101.88,18.4 100.58,18.4z"
android:fillColor="#F386AB"/>
</vector>

View file

@ -0,0 +1,47 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M123.04,107.67c-4.08,-4.12 -9.38,-9.48 -14.92,-15.06c-0.34,1.29 -0.93,2.39 -1.79,3.26c-6.43,6.43 -25.6,-1.99 -45.31,-19.1c-2.46,-2.13 -16.74,20.28 -14.1,22.87c3.27,3.2 26,17.86 33.78,20.73c22.66,8.35 34.3,0.22 38.24,-3.59C121.16,114.61 122.51,111.5 123.04,107.67z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="93.73"
android:startY="106.64"
android:endX="52.9"
android:endY="81.69"
android:type="linear">
<item android:offset="0.1" android:color="#FFFFB300"/>
<item android:offset="1" android:color="#00FFB300"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M25.05,27.7c-1.54,-4.81 -2.88,-11.1 -0.4,-13.5c7.51,-7.3 31.69,4.88 54.25,27.43c22.55,22.55 34.84,46.84 27.43,54.25c-0.07,0.07 -0.16,0.13 -0.23,0.2c6.13,5.82 12.2,11.6 16.1,15.31c4.87,-14.43 -6.45,-44.11 -31.5,-69.96c-4.07,-4.2 -16.12,-16.56 -26.55,-23.56C54.61,11.47 44.19,5.59 32.57,4.2C25,3.29 11.45,5.24 14.25,15.98c0.55,2.12 2.31,7.22 8.15,13.3C23.56,30.49 25.56,29.3 25.05,27.7z">
<aapt:attr name="android:fillColor">
<gradient
android:startX="115.28"
android:startY="82.36"
android:endX="14.86"
android:endY="0.82"
android:type="linear">
<item android:offset="0" android:color="#FFFFB300"/>
<item android:offset="0.71" android:color="#FFFDD835"/>
<item android:offset="0.84" android:color="#FFFDDC36"/>
<item android:offset="0.98" android:color="#FFFFE93A"/>
<item android:offset="1" android:color="#FFFFEB3B"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M55.98,42.1l-0.75,20c-0.06,1.53 0.72,2.98 2.04,3.77l16.86,10.11c1.85,1.25 1.46,4.09 -0.66,4.79L54.79,85.5c-1.51,0.38 -2.69,1.57 -3.06,3.08l-4.89,19.93c-0.62,2.15 -3.43,2.65 -4.76,0.85L31.06,92.91c-0.85,-1.26 -2.31,-1.97 -3.83,-1.85L7.49,92.61c-2.23,0.07 -3.58,-2.45 -2.28,-4.27l12.6,-16.19c0.96,-1.23 1.16,-2.89 0.52,-4.31l-7.88,-17.57c-0.76,-2.1 1.22,-4.17 3.35,-3.49l18.39,6.95c1.44,0.54 3.05,0.26 4.22,-0.74l15.22,-13C53.39,38.62 55.96,39.87 55.98,42.1z"
android:fillColor="#FDD835"/>
<path
android:pathData="M46.99,59.33l4.66,-12.75c0.28,-0.7 0.7,-1.93 1.79,-1.4c0.86,0.42 0.46,2.43 0.46,2.43l-1.05,11.54c-0.41,4.39 -1.6,5.38 -3.3,5.49C47.6,64.75 45.65,62.98 46.99,59.33z"
android:fillColor="#FFFF8D"/>
<path
android:pathData="M53.89,83.73l14.53,-3.13c0.73,-0.18 2.01,-0.42 1.64,-1.58c-0.29,-0.91 -2.34,-0.8 -2.34,-0.8l-10.97,-0.86c-3.21,-0.38 -5.72,0.14 -6.74,1.84C48.65,81.48 49.89,84.32 53.89,83.73z"
android:fillColor="#F4B400"/>
</vector>

View file

@ -0,0 +1,48 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M12.2,64.08l-4.37,8.16l8.74,6.56l-3.21,9.03l9.33,3.94l-0.15,12.82l12.24,-0.29l3.21,12.53l11.22,-3.2l5.1,6.12l8.74,-7.29l8.6,7.14l4.66,-5.54l11.95,2.77l4.23,-12.68l13.4,0.44l-1.02,-13.26l9.47,-3.93l-4.66,-8.6l10.35,-6.56l-4.37,-9.03l5.39,-7.58l-9.77,-5.54l4.08,-11.8l-12.38,-4.81l0.73,-10.2l-11.81,2.48l-2.47,-13.12l-9.18,3.65l-7.14,-7.44l-8.6,7.44l-10.93,-6.42l-5.54,7.44l-8.74,-3.5l-3.5,10.64l-12.38,-1.9l1.45,10.35l-12.96,4.81l5.24,11.65l-9.91,7.29z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M77.91,14.54c0,0 5.49,-2.81 7.7,-3.63c2.33,-0.87 4.99,-1.84 5.64,-1.35c0.65,0.49 1.35,4.88 1.73,8.24c0.35,3.08 0.76,5.15 0.76,5.15s2.76,-0.49 5.85,-0.98c3.09,-0.49 6.12,-1.03 6.5,-0.81c0.38,0.22 0.43,4.54 0.43,6.56c0,2.33 -0.22,8.56 -0.22,8.56l-4.77,-1.3c0,0 0.44,-4.06 0.49,-5.47c0.05,-1.68 0,-2.76 0,-2.76s-11.49,2.11 -11.87,1.79c-0.38,-0.33 -2.28,-13.17 -2.28,-13.17s-6.12,2.71 -6.67,2.93C80.77,18.46 77.91,14.54 77.91,14.54z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M117.69,63.86l-3.2,3.09l3.25,4.88c0,0 -10.67,5.65 -10.96,6.37c-0.36,0.89 4.19,8.53 4.19,8.53l-5.96,2.87l1.14,4.28c0,0 5.26,-1.95 6.34,-2.44c1.08,-0.49 4.44,-1.68 4.77,-2.55c0.33,-0.87 -4.23,-9.32 -4.23,-9.32s10.03,-5.64 10.19,-6.18c0.16,-0.54 -1.86,-3.88 -3.03,-5.69C118.99,65.86 117.69,63.86 117.69,63.86z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M47.29,115.18c0,0 2.49,2.87 3.69,4.06c1.19,1.19 3.75,3.63 4.35,3.63c0.6,0 8.13,-7.28 8.13,-7.28s7.3,6.9 8.27,6.79c0.98,-0.11 7.91,-8.35 7.91,-8.35l-4.01,-2.28l-4.28,5.58c0,0 -7.65,-7.28 -8.08,-7.17c-0.43,0.11 -8.23,7.28 -8.23,7.28l-4.23,-4.61L47.29,115.18z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M10.76,62.88c0,0 -6.18,8.72 -6.18,9.32c0,0.7 9.59,7.15 9.59,7.15s-4.44,9 -4.17,10.03s11.27,4.44 11.27,4.44l1.3,-4.23l-7.05,-2.44c0,0 4.12,-8.45 4.01,-9c-0.11,-0.54 -8.94,-6.56 -8.94,-6.56s4.23,-5.96 4.06,-6.07S10.76,62.88 10.76,62.88z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M22.47,33.67c0.11,-0.49 -1.65,-12.22 -0.65,-13.01c1.3,-1.03 12.78,1.53 12.78,1.53s2.57,-10.42 3.71,-11.13c1.14,-0.7 11.96,4.99 11.96,4.99l-1.52,4.06l-7.83,-3.6c0,0 -2.59,10.64 -2.97,10.85c-0.38,0.22 -11.5,-2.21 -11.5,-2.21l0.84,8.53L22.47,33.67z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M49.98,50.72c-2.37,0 -4.78,1.74 -4.69,5.14s3.08,4.42 4.65,4.42c1.97,0 4.87,-0.85 4.91,-4.74C54.9,51.52 51.73,50.72 49.98,50.72z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M59.27,55.3c0.05,2.9 1.87,5.05 5.23,5c3.04,-0.04 4.56,-2.32 4.69,-4.74c0.13,-2.41 -1.83,-5.32 -5.09,-5.27C60.83,50.34 59.22,52.94 59.27,55.3z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M72.98,54.95c0.13,2.86 2.19,4.47 4.96,4.51c2.77,0.04 4.56,-2.32 4.65,-4.56c0.09,-2.23 -1.83,-4.78 -4.78,-4.82C74.72,50.03 72.87,52.44 72.98,54.95z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M73.47,68.84c-0.09,3.13 2.32,4.82 4.96,4.74c2.64,-0.09 4.38,-2.23 4.29,-5c-0.09,-2.68 -2.06,-4.56 -4.56,-4.6C76.06,63.93 73.57,65.57 73.47,68.84z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M64.32,64.73c-2.9,-0.13 -4.91,2.28 -4.78,5.09c0.13,2.81 2.23,4.42 4.69,4.47c2.46,0.04 4.65,-1.34 4.74,-4.47C69.05,66.7 66.95,64.85 64.32,64.73z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M50.12,64.03c-2.68,0 -4.74,2.55 -4.6,5.09c0.13,2.55 1.65,4.78 4.69,4.87c3.04,0.09 5.05,-1.92 5.09,-4.96C55.35,66 53.07,64.03 50.12,64.03z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M63.78,79.29c-2.41,-0.04 -4.64,2.01 -4.56,4.87c0.09,3.22 2.77,4.38 4.56,4.38c2.19,0 4.64,-1.34 4.6,-4.29C68.34,80.9 66.33,79.34 63.78,79.29z"
android:fillColor="#FF99B7"/>
<path
android:pathData="M113.19,48.94c0,0 5.7,-9.46 5.53,-10.59c-0.18,-1.13 -7.01,-4.51 -14.37,-6.29c-7.36,-1.78 -16.75,0.06 -16.75,0.06s-1.07,-5.17 -4.04,-13.24C80.6,10.8 74.19,5.69 73.47,5.69c-0.71,0 -2.91,1.84 -4.33,3.03c-1.43,1.19 -4.69,4.33 -4.69,4.33s-2.67,-2.49 -3.74,-3.44s-4.75,-4.04 -6.12,-3.86c-1.37,0.18 -6.12,6.06 -9.14,12.47c-3.03,6.41 -3.98,14.49 -3.98,14.49s-9.09,-1.66 -16.45,-1.01c-7.36,0.65 -16.09,5.23 -16.21,5.82s1.07,3.03 2.02,4.93c0.95,1.9 3.38,5.82 3.38,5.82s-3.07,1.75 -4.73,2.76c-1.66,1.01 -5.54,3.59 -5.6,4.37c-0.06,0.77 1.48,5.94 8.43,12.47s15.9,8.77 15.9,8.77s-5.93,5.6 -7.71,13.44c-1.78,7.84 -0.48,17.58 0.06,17.99c0.53,0.42 3.38,0.18 6.06,-0.18c2.67,-0.36 7.24,-1.78 7.24,-1.78s0.24,4.39 0.48,6.47c0.24,2.08 1.72,7.24 2.67,7.54c0.95,0.3 7.6,-1.01 14.19,-4.81c6.59,-3.8 11.46,-10.93 11.46,-10.93s4.1,5.28 10.75,9.44c6.65,4.16 16.75,5.76 17.46,5.4c0.71,-0.36 2.02,-4.04 2.38,-5.82c0.36,-1.78 0.95,-6.41 0.95,-6.41s4.69,0.53 6.59,0.59c1.9,0.06 5.82,0.06 6.35,-0.53s1.07,-9.92 0.24,-15.8c-0.83,-5.88 -5.94,-14.49 -5.94,-14.49s7.13,-3.68 13.06,-8.31c5.94,-4.63 9.62,-10.87 9.62,-12.71S113.19,48.94 113.19,48.94zM106.55,67.39c-7.78,4.51 -13.66,6.53 -13.66,6.53s5.28,5.7 8.02,14.13c2.73,8.43 1.96,14.67 1.96,14.67s-5.28,-0.36 -6.77,-0.59c-1.48,-0.24 -6.18,-0.89 -6.18,-0.89s-0.83,5.46 -1.19,7.3c-0.36,1.84 -0.95,5.34 -1.48,5.64s-8.91,-1.84 -15.08,-6.83c-6.18,-4.99 -9.29,-11.5 -9.29,-11.5s-5.2,7.7 -11.08,11.97c-5.88,4.28 -11.1,6.23 -11.7,6.06c-0.59,-0.18 -1.14,-12.45 -1.68,-12.92s-12.58,2 -13.23,1.52c-0.65,-0.48 -0.06,-9.98 2.85,-15.5c2.91,-5.52 9.28,-12.02 9.28,-12.02s-10.05,-2.23 -17.06,-6.98C13.26,63.23 9.52,57.18 9.52,57.18s11.44,-6.45 11.49,-6.81c0.06,-0.36 -6.21,-10.77 -6.21,-10.77s6.77,-3.5 15.8,-3.03c9.03,0.48 16.33,3.38 16.33,3.38s0.65,-10.39 2.97,-16.51c2.32,-6.12 5.44,-10.69 5.44,-10.69s2.32,1.69 4.57,3.77c2.26,2.08 4.94,4.72 4.94,4.72s3.04,-3.51 4.94,-5.35c1.9,-1.84 3.92,-3.44 3.92,-3.44s3.92,3.86 6.71,12.47c2.79,8.61 3.15,12.59 3.15,12.59s8.37,-1.84 15.85,-0.65c7.48,1.19 12.71,3.74 12.71,3.74s-1.6,3.42 -2.67,5.15c-1.07,1.72 -3.56,6.02 -3.56,6.02s3.56,1.25 6.47,2.55c2.91,1.31 5.46,2.49 5.46,2.49S114.33,62.88 106.55,67.39z"
android:fillColor="#FF99B7"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M74.78,45.54L64.29,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M82.61,53.26L64.29,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M85.07,63.93L63.83,64.07"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M82.31,74.49L63.85,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M74.74,82.31L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64.07,85.23L63.93,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M53.51,82.46L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M45.69,74.74L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M42.77,64.15L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,35L64,64"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M45.54,53.58L64,64.07"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,60L64,31"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M53.63,45.6L64.37,63.91"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M63.93,43.14L64.07,64.37"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,60L64,31"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64L64,93"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M78.91,48.88L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64L64,93"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M84.47,58.16L64,63.79"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64L64,93"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M84.84,69.35L64.29,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64L64,93"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M79.12,78.91L64,64"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M65,64L70.64,84.47"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M63,64L57.36,84.47"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64.27,63.68L49.36,78.79"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64.05,64.07L43.58,69.71"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64.09,64L43.55,58.65"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64,64L48.88,49.09"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64.07L64,93.07"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M64,64L58.36,43.53"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,153 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M64,64m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"
android:fillColor="#98C0D0"/>
<path
android:pathData="M64,64m-48.14,0a48.14,48.14 0,1 1,96.28 0a48.14,48.14 0,1 1,-96.28 0"
android:fillColor="#FCEBCD"/>
<path
android:pathData="M50.3,15.06c-6.42,1.86 -15.41,4.71 -25.03,16.2C15.77,42.63 13.81,55.84 13.2,64.95c0,0 -5.49,6.87 -5.75,5.59c-2.07,-9.95 2.11,-32.19 13.04,-43.95C33.21,12.91 49.75,8.06 55.73,7.15C56.76,6.99 52.25,14.5 50.3,15.06z"
android:fillColor="#C2E3F0"/>
<path
android:pathData="M64,64m-45.59,0a45.59,45.59 0,1 1,91.18 0a45.59,45.59 0,1 1,-91.18 0"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M64,64m-5.06,0a5.06,5.06 0,1 1,10.12 0a5.06,5.06 0,1 1,-10.12 0"
android:fillColor="#563428"/>
<path
android:pathData="M69.35,43.48L64,64.03"
android:strokeWidth="6"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,64L64,93"
android:strokeWidth="4"
android:fillColor="#00000000"
android:strokeColor="#563428"
android:strokeLineCap="round"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,100L64,105"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M64,23L64,28"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M28,64L23,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M105,64L100,64"
android:strokeWidth="5"
android:fillColor="#00000000"
android:strokeColor="#6596A3"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M46,95.18L43.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M84.5,28.49L82,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M82,95.18L84.5,99.51"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M43.5,28.49L46,32.82"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M95.18,82L99.51,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M28.49,43.5L32.82,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M32.82,82L28.49,84.5"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
<path
android:pathData="M99.51,43.5L95.18,46"
android:strokeWidth="3"
android:fillColor="#00000000"
android:strokeColor="#B0BEC5"/>
</vector>

View file

@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M93.99,8.97c-21.91,0 -29.96,22.39 -29.96,22.39S56.09,8.97 34.03,8.97c-16.58,0 -35.48,13.14 -28.5,43.01c6.98,29.87 58.56,67.08 58.56,67.08s51.39,-37.21 58.38,-67.08C129.45,22.11 111.91,8.97 93.99,8.97z"
android:fillColor="#424242"/>
<path
android:pathData="M30.65,11.2c17.2,0 25.74,18.49 28.5,25.98c0.39,1.07 1.88,1.1 2.33,0.06L64,31.35C60.45,20.01 50.69,8.97 34.03,8.97c-6.9,0 -14.19,2.28 -19.86,7.09C19.18,12.77 25.05,11.2 30.65,11.2z"
android:fillColor="#575757"/>
<path
android:pathData="M93.99,8.97c-5.29,0 -9.77,1.54 -13.53,3.85c2.64,-1.02 5.56,-1.62 8.8,-1.62c16.21,0 30.72,12.29 24.17,40.7c-5.62,24.39 -38.46,53.98 -48.49,65.27c-0.64,0.72 -0.86,1.88 -0.86,1.88s51.39,-37.21 58.38,-67.08C129.45,22.11 110.57,8.97 93.99,8.97z"
android:fillColor="#575757"/>
<path
android:pathData="M17.04,24.82c3.75,-4.68 10.45,-8.55 16.13,-4.09c3.07,2.41 1.73,7.35 -1.02,9.43c-4,3.04 -7.48,4.87 -9.92,9.63c-1.46,2.86 -2.34,5.99 -2.79,9.18c-0.18,1.26 -1.83,1.57 -2.45,0.46C12.77,41.95 11.57,31.65 17.04,24.82z"
android:fillColor="#787878"/>
<path
android:pathData="M77.16,34.66c-1.76,0 -3,-1.7 -2.36,-3.34c1.19,-3.02 2.73,-5.94 4.58,-8.54c2.74,-3.84 7.95,-6.08 11.25,-3.75c3.38,2.38 2.94,7.14 0.57,9.44C86.11,33.4 79.69,34.66 77.16,34.66z"
android:fillColor="#787878"/>
</vector>

View file

@ -0,0 +1,78 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.22,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.32,7 63.22,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93,113.6 78.62,118.8 63.22,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.22"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M44,40.94L44,40.94c-4.19,0 -8,3.54 -8,9.42s3.81,9.41 8,9.41l0,0c4.2,0 8,-3.54 8,-9.41S48.24,40.94 44,40.94z"
android:fillColor="#422B0D"/>
<path
android:pathData="M43.65,44.87L43.65,44.87c-1.42,-0.68 -3.13,-0.08 -3.82,1.34c-0.53,1.11 -0.29,2.44 0.6,3.3l0,0c1.42,0.68 3.13,0.08 3.82,-1.34C44.78,47.06 44.54,45.73 43.65,44.87z"
android:fillColor="#896024"/>
<path
android:pathData="M82.4,40.94L82.4,40.94c-4.19,0 -8,3.54 -8,9.42s3.81,9.41 8,9.41l0,0c4.19,0 8,-3.54 8,-9.41S86.59,40.94 82.4,40.94z"
android:fillColor="#422B0D"/>
<path
android:pathData="M82,44.87L82,44.87c-1.42,-0.68 -3.13,-0.08 -3.82,1.34c-0.53,1.11 -0.29,2.44 0.6,3.3l0,0c1.42,0.68 3.13,0.08 3.82,-1.34C83.13,47.06 82.89,45.73 82,44.87z"
android:fillColor="#896024"/>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M63.43,100.73"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.43,100.73"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.43,101"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.66"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.66"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.43,101"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,57 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M101.7,72.21c-1.4,-2.52 -4.44,-3.63 -7.14,-2.6c-9,2.8 -20,3.83 -31.08,3.84C52.79,73.49 42.15,72 31.89,69c-2.7,-1.03 -5.74,0.08 -7.14,2.6c-1.36,2.51 -0.37,5.42 0.77,7.93C32,93.65 46.1,102.09 63.4,102.14h0.16c17.3,0 30.94,-7.9 37.37,-22C102.07,77.63 103.06,74.72 101.7,72.21z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M49,56.89l-0.15,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0h-0.08c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.16 -0.58,0.34 -0.84,0.54c-0.29,0.22 -0.57,0.46 -0.83,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.23,0.27c-1.44,1.61 -3.87,1.87 -5.62,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.26,-1.11c0.3,-1.01 0.72,-1.99 1.25,-2.91c0.85,-1.5 2,-2.81 3.38,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.61,-0.09l0.51,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.64,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.45 0.35,0.9 0.48,1.37c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.3,2.04 -1.12,3.94 -3.16,4.24c-0.05,0.01 -0.1,0.01 -0.15,0.02C51.39,58.61 49.93,58.03 49,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M88.46,56.89l-0.16,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0H83.9c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.15 -0.57,0.34 -0.83,0.54c-0.3,0.22 -0.58,0.46 -0.84,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.22,0.27c-1.45,1.61 -3.87,1.87 -5.63,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.27,-1.11c0.3,-1.02 0.71,-2 1.25,-2.91c0.85,-1.5 1.99,-2.81 3.37,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.62,-0.09l0.5,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.65,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.44 0.35,0.89 0.48,1.35c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.32,2.04 -1.08,3.95 -3.12,4.27c-0.03,0 -0.06,0.01 -0.09,0.01C90.91,58.65 89.4,58.07 88.46,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M62.84,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M62.84,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M100.89,75.83c-0.09,0.06 -6.2,4.63 -17.69,7.59v-11.3c-1.31,0.2 -2.65,0.37 -4,0.52v11.68c-4.65,0.92 -9.38,1.43 -14.12,1.53V73.43H63.5c-0.81,0 -1.61,0 -2.42,0v12.42c0.43,0.01 0.43,0.02 0,0.02l-0.02,-0.02c-4.63,-0.08 -9.24,-0.52 -13.8,-1.33V72.33c-1.36,-0.18 -2.69,-0.39 -4,-0.62v11.97c-11.82,-2.81 -17.76,-7.3 -17.84,-7.37c-0.33,-0.26 -0.74,-0.41 -1.16,-0.42c0.28,1.26 0.7,2.49 1.26,3.66c0.35,0.77 0.73,1.51 1.13,2.25c5.23,2.77 10.82,4.79 16.61,6v0.02v9.84c1.3,0.63 2.64,1.2 4,1.69V88.6c4.56,0.76 9.18,1.18 13.8,1.25l0.02,0.02c-0.01,0 -0.01,0 -0.02,0v12.21c0.77,0 1.55,0.08 2.34,0.08h0.16c0.51,0 1,0 1.5,0V89.85l-0.06,0l0.06,0c4.74,-0.09 9.47,-0.57 14.14,-1.43v11.21c1.36,-0.46 2.7,-1 4,-1.61V87.57c6.1,-1.4 11.97,-3.69 17.41,-6.79c0.1,-0.22 0.22,-0.42 0.32,-0.64c0.73,-1.48 1.21,-3.07 1.4,-4.71C101.82,75.37 101.3,75.52 100.89,75.83z"
android:fillColor="#B3B3B3"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,81 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M39.44,31.21C39,30.15 37.8,29.61 36.72,30c-1.62,0.53 -3.18,1.22 -4.67,2.05c-3.96,2.18 -7.35,5.27 -9.89,9c-0.7,0.95 -0.52,2.28 0.41,3c0.49,0.41 1.13,0.61 1.77,0.53c0.48,-0.07 0.92,-0.3 1.26,-0.65c3.84,-3.76 8.14,-7.02 12.79,-9.7l0.11,-0.06C39.56,33.6 39.98,32.29 39.44,31.21z"
android:fillColor="#422B0D"/>
<path
android:pathData="M90.69,30.21c0.44,-1.06 1.64,-1.6 2.72,-1.21c1.61,0.52 3.17,1.19 4.66,2c3.96,2.18 7.35,5.26 9.9,9c0.69,0.95 0.51,2.27 -0.41,3c-0.49,0.41 -1.13,0.6 -1.77,0.53c-0.48,-0.07 -0.92,-0.3 -1.26,-0.65c-3.84,-3.76 -8.14,-7.02 -12.79,-9.7l-0.11,-0.06C90.6,32.55 90.18,31.28 90.69,30.21z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M100.69,57.09c0,0 17,0.47 23.79,13c2.84,5.26 3,14 -2.88,17.19c-7.11,3.91 -13.78,-1.64 -14.63,-7.56C104.68,63.66 100.69,57.09 100.69,57.09z"
android:fillColor="#29B6F6"/>
<path
android:pathData="M123.26,81.27c-0.67,1.22 -2.14,1.75 -3.43,1.24c-1.15,-0.61 -1.46,-2.08 -1.64,-3.37l-0.55,-4c-0.23,-1.59 -1.85,-6.74 -0.15,-7.58c1.35,-0.66 3.94,1.16 4.7,2.21C123.86,72.15 124.65,78.93 123.26,81.27z"
android:fillColor="#81D4FA"/>
<path
android:pathData="M117.49,67.61c1.35,-0.66 3.94,1.16 4.7,2.21c1.67,2.33 2.46,9.11 1.07,11.45c-0.67,1.22 -2.14,1.75 -3.43,1.24c-1.15,-0.61 -1.46,-2.08 -1.64,-3.37l-0.55,-4"
android:fillColor="#81D4FA"/>
<path
android:pathData="M27.31,57.09c0,0 -17,0.47 -23.79,13C0.68,75.3 0.57,84 6.4,87.23c7.11,3.91 13.78,-1.64 14.63,-7.56C23.32,63.66 27.31,57.09 27.31,57.09z"
android:fillColor="#29B6F6"/>
<path
android:pathData="M4.74,81.27c0.67,1.22 2.14,1.75 3.43,1.24c1.15,-0.61 1.46,-2.08 1.64,-3.37l0.55,-4c0.23,-1.59 1.85,-6.74 0.15,-7.58c-1.35,-0.66 -3.94,1.16 -4.7,2.21C4.14,72.15 3.35,78.93 4.74,81.27z"
android:fillColor="#81D4FA"/>
<path
android:pathData="M48.15,55.87L48,55.65l-0.21,-0.27c-0.08,-0.11 -0.16,-0.2 -0.26,-0.29l-0.61,-0.62c-0.26,-0.26 -0.55,-0.52 -0.87,-0.79c-0.66,-0.57 -1.4,-1.03 -2.2,-1.39c-0.77,-0.34 -1.61,-0.52 -2.45,-0.52c0.35,0 0.09,0 0.17,0H41c-0.1,-0.01 -0.19,-0.01 -0.29,0c-0.18,0.02 -0.36,0.05 -0.54,0.09c-0.41,0.1 -0.82,0.23 -1.21,0.39c-0.8,0.35 -1.54,0.82 -2.2,1.39c-0.54,0.45 -1.05,0.94 -1.52,1.47l-0.57,0.64l-0.3,0.34c-1.21,1.38 -3.3,1.52 -4.68,0.32c-1.03,-0.9 -1.4,-2.35 -0.94,-3.64l0.11,-0.32c0.09,-0.21 0.17,-0.53 0.36,-0.91c0.46,-1.08 1.06,-2.11 1.78,-3.04c1.75,-2.31 4.21,-3.99 7,-4.79c0.57,-0.15 1.15,-0.26 1.74,-0.34c0.3,0 0.74,-0.09 0.87,-0.09h0.76c1.13,0.02 2.26,0.18 3.36,0.46c1.05,0.29 2.05,0.71 3,1.25c1.55,0.91 2.91,2.11 4,3.54c0.74,0.97 1.37,2.02 1.86,3.14c0.08,0.16 0.15,0.32 0.19,0.49c0.05,0.13 0.08,0.24 0.11,0.33l0.09,0.27c0.57,1.77 -0.4,3.67 -2.17,4.24c-1.33,0.43 -2.8,-0.01 -3.67,-1.1L48.15,55.87z"
android:fillColor="#422B0D"/>
<path
android:pathData="M93.48,55.87l-0.18,-0.22l-0.21,-0.27c-0.08,-0.11 -0.16,-0.2 -0.26,-0.29l-0.62,-0.62c-0.27,-0.28 -0.56,-0.54 -0.86,-0.79c-0.66,-0.57 -1.4,-1.03 -2.2,-1.39c-0.77,-0.34 -1.61,-0.52 -2.45,-0.52c0.35,0 0.09,0 0.17,0h-0.58c-0.1,-0.01 -0.19,-0.01 -0.29,0c-0.18,0.02 -0.36,0.05 -0.54,0.09c-0.41,0.1 -0.82,0.23 -1.21,0.39c-0.81,0.37 -1.57,0.85 -2.25,1.43c-0.54,0.46 -1.04,0.95 -1.51,1.47l-0.57,0.64l-0.3,0.34c-1.21,1.38 -3.3,1.52 -4.68,0.32c-1.03,-0.9 -1.4,-2.35 -0.94,-3.64l0.11,-0.32c0.09,-0.21 0.17,-0.53 0.35,-0.91c0.48,-1.1 1.09,-2.13 1.83,-3.08c1.75,-2.31 4.21,-3.99 7,-4.79c0.57,-0.15 1.15,-0.26 1.74,-0.34c0.3,0 0.74,-0.09 0.87,-0.09h0.76c1.13,0.02 2.26,0.18 3.36,0.46c1.04,0.3 2.04,0.72 2.98,1.26c1.55,0.9 2.91,2.11 4,3.54c0.42,0.54 0.79,1.11 1.13,1.7c0.27,0.47 0.51,0.95 0.73,1.44c0.08,0.16 0.14,0.32 0.19,0.49c0,0.13 0.08,0.24 0.11,0.33l0.09,0.27c0.57,1.77 -0.4,3.67 -2.17,4.24c-1.33,0.43 -2.8,-0.01 -3.67,-1.1L93.48,55.87z"
android:fillColor="#422B0D"/>
</vector>

View file

@ -0,0 +1,66 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M82.65,33.62L82.65,33.62c3.81,0 7.26,5.65 7.26,15s-3.45,15 -7.26,15l0,0c-3.8,0 -7.25,-5.64 -7.25,-15S78.85,33.62 82.65,33.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M45.27,33.62L45.27,33.62c-4.05,0 -7.74,5.65 -7.74,15s3.69,15 7.74,15l0,0c4.06,0 7.75,-5.64 7.75,-15S49.33,33.62 45.27,33.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M45.05,37.29L45.05,37.29c-1.21,-0.73 -2.78,-0.33 -3.51,0.88c-0.02,0.04 -0.05,0.08 -0.07,0.12c-0.92,1.07 -0.81,2.69 0.26,3.61c0.03,0.03 0.06,0.05 0.1,0.08l0,0c1.2,0.73 2.77,0.34 3.5,-0.86c0.03,-0.05 0.05,-0.09 0.08,-0.14c0.92,-1.08 0.8,-2.7 -0.28,-3.62C45.1,37.33 45.08,37.31 45.05,37.29z"
android:fillColor="#896024"/>
<path
android:pathData="M83.21,37.29L83.21,37.29c-1.22,-0.72 -2.8,-0.32 -3.52,0.9c-0.02,0.03 -0.04,0.07 -0.06,0.1c-0.91,1.09 -0.76,2.7 0.33,3.61c0.01,0.01 0.03,0.02 0.04,0.03l0,0c1.2,0.73 2.77,0.34 3.5,-0.86c0.03,-0.05 0.05,-0.09 0.08,-0.14c0.91,-1.09 0.76,-2.7 -0.33,-3.61C83.24,37.31 83.22,37.3 83.21,37.29z"
android:fillColor="#896024"/>
<path
android:pathData="M63.49,74.66"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.66"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,54 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M49,56.89l-0.15,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0h-0.08c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.16 -0.58,0.34 -0.84,0.54c-0.29,0.22 -0.57,0.46 -0.83,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.23,0.27c-1.44,1.61 -3.87,1.87 -5.62,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.26,-1.11c0.3,-1.01 0.72,-1.99 1.25,-2.91c0.85,-1.5 2,-2.81 3.38,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.61,-0.09l0.51,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.64,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.45 0.35,0.9 0.48,1.37c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.3,2.04 -1.12,3.94 -3.16,4.24c-0.05,0.01 -0.1,0.01 -0.15,0.02C51.39,58.61 49.93,58.03 49,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M88.46,56.89l-0.16,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0H83.9c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.15 -0.57,0.34 -0.83,0.54c-0.3,0.22 -0.58,0.46 -0.84,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.22,0.27c-1.45,1.61 -3.87,1.87 -5.63,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.27,-1.11c0.3,-1.02 0.71,-2 1.25,-2.91c0.85,-1.5 1.99,-2.81 3.37,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.62,-0.09l0.5,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.65,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.44 0.35,0.89 0.48,1.35c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.32,2.04 -1.08,3.95 -3.12,4.27c-0.03,0 -0.06,0.01 -0.09,0.01C90.91,58.65 89.4,58.07 88.46,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,70 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M110.5,52.61c-6.5,0 -11.5,-6.3 -11.5,-11.7c0,-3.8 1.7,-8.2 4.1,-14.3c0.3,-0.9 0.7,-1.8 1.1,-2.8c1.03,-2.96 2.26,-5.84 3.69,-8.63c0.73,-1.3 2.37,-1.76 3.68,-1.03c0.43,0.24 0.79,0.6 1.03,1.03c1.4,2.66 2.4,5.51 3.9,8.82c4.2,9.4 5.4,13.2 5.4,17C122,46.31 116.9,52.61 110.5,52.61z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="111.32"
android:centerY="18.75"
android:gradientRadius="25.66"
android:type="radial">
<item android:offset="0.46" android:color="#FF29B6F6"/>
<item android:offset="1" android:color="#FF1E88E5"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M117.53,45.41c-1.47,2.27 -4.8,1.84 -4.8,-1.93c0,-2.41 0.49,-14.79 2.56,-13.06C118.66,33.24 119.62,42.2 117.53,45.41z"
android:fillColor="#81D4FA"/>
<path
android:pathData="M49,56.89l-0.15,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0h-0.08c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.16 -0.58,0.34 -0.84,0.54c-0.29,0.22 -0.57,0.46 -0.83,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.23,0.27c-1.44,1.61 -3.87,1.87 -5.62,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.26,-1.11c0.3,-1.01 0.72,-1.99 1.25,-2.91c0.85,-1.5 2,-2.81 3.38,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.61,-0.09l0.51,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.64,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.45 0.35,0.9 0.48,1.37c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.3,2.04 -1.12,3.94 -3.16,4.24c-0.05,0.01 -0.1,0.01 -0.15,0.02C51.39,58.61 49.93,58.03 49,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M88.46,56.89l-0.16,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0H83.9c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.15 -0.57,0.34 -0.83,0.54c-0.3,0.22 -0.58,0.46 -0.84,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.22,0.27c-1.45,1.61 -3.87,1.87 -5.63,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.27,-1.11c0.3,-1.02 0.71,-2 1.25,-2.91c0.85,-1.5 1.99,-2.81 3.37,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.62,-0.09l0.5,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.65,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.44 0.35,0.89 0.48,1.35c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.32,2.04 -1.08,3.95 -3.12,4.27c-0.03,0 -0.06,0.01 -0.09,0.01C90.91,58.65 89.4,58.07 88.46,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,54 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M31.19,56.05l12.18,-2.36l-12.55,-5.21l-0.42,-0.23c-2.05,-1.08 -2.83,-3.61 -1.75,-5.66c0.26,-0.49 0.61,-0.92 1.03,-1.27c2,-1.53 4.74,-1.65 6.87,-0.3l21.28,13c0.54,0.11 0.89,0.64 0.78,1.18c-0.1,0.47 -0.52,0.81 -1,0.8L34.7,64.59c-0.16,0.06 -0.32,0.12 -0.48,0.16c-3,0.84 -6.33,-0.89 -6.8,-3.78C27.07,58.77 28.77,56.72 31.19,56.05z"
android:fillColor="#422B0D"/>
<path
android:pathData="M94.81,55.8l-12.18,-2.36l12.55,-5.21L95.6,48c2.05,-1.08 2.83,-3.61 1.75,-5.66c-0.26,-0.49 -0.61,-0.92 -1.03,-1.27c-2,-1.53 -4.74,-1.65 -6.87,-0.3l-21.28,13c-0.52,0.19 -0.78,0.77 -0.59,1.28c0.13,0.35 0.44,0.6 0.81,0.65l22.91,8.6c0.16,0.06 0.32,0.12 0.48,0.16c3,0.84 6.33,-0.89 6.8,-3.78C98.93,58.52 97.23,56.47 94.81,55.8z"
android:fillColor="#422B0D"/>
<path
android:pathData="M102.07,71.62c-1.4,-2.53 -4.44,-3.64 -7.14,-2.62c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c6.42,14.1 20.57,22.54 37.87,22.59h0.16c17.3,0 31.45,-8.49 37.88,-22.59C102.44,77 103.43,74.13 102.07,71.62z"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.49,74.7"
android:fillColor="#422B0D"/>
<path
android:pathData="M63.42,100.89"
android:fillColor="#422B0D"/>
<path
android:pathData="M79.35,98.14c-0.37,-0.34 -0.75,-0.65 -1.13,-1c-4.08,-3.59 -9.36,-5.52 -14.8,-5.41C57.82,91.64 52.37,93.5 48,97c-0.38,0.31 -0.78,0.61 -1.15,1s-0.57,0.67 -0.81,1c5.5,2.15 11.36,3.25 17.27,3.22h0.16c5.66,0 11.27,-1.01 16.57,-3C79.84,98.84 79.61,98.48 79.35,98.14z"
android:fillColor="#ED7770"/>
<path
android:pathData="M94.93,69c-10.26,2.99 -20.9,4.48 -31.59,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-0.2,0.38 -0.36,0.78 -0.46,1.19c0.33,0.17 0.71,0.34 1.16,0.52c12.04,6.03 25.35,9.09 38.81,8.93c12.91,0.15 25.67,-2.66 37.33,-8.2c0.47,-0.2 0.86,-0.39 1.21,-0.57c-0.08,-0.65 -0.29,-1.29 -0.6,-1.87C100.67,69.08 97.63,67.97 94.93,69z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M102.11,71.63c-1.42,-2.53 -4.47,-3.65 -7.19,-2.63c-10.26,2.99 -20.9,4.48 -31.58,4.43C52.65,73.48 42.01,71.99 31.75,69c-2.69,-1.02 -5.73,0.08 -7.13,2.6c-1.36,2.51 -0.38,5.42 0.77,7.93c0.51,1.13 1.08,2.24 1.71,3.31c0,0 -2.1,-7.78 -0.28,-10.04c0.62,-0.96 1.66,-1.56 2.8,-1.62c0.47,0 0.93,0.08 1.38,0.22c10.44,3.07 21.27,4.62 32.16,4.6h0.35c10.89,0.02 21.72,-1.53 32.16,-4.6c0.45,-0.14 0.91,-0.22 1.38,-0.22c1.14,0.06 2.19,0.66 2.81,1.62c1.85,2.26 -0.28,10.07 -0.28,10.07c0.62,-1.07 1.24,-2.17 1.76,-3.31C102.48,77.05 103.47,74.15 102.11,71.63z"
android:fillColor="#EB8F00"/>
</vector>

View file

@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="128dp"
android:height="128dp"
android:viewportWidth="128"
android:viewportHeight="128">
<path
android:pathData="M63.6,118.8c-27.9,0 -58,-17.5 -58,-55.9S35.7,7 63.6,7c15.5,0 29.8,5.1 40.4,14.4c11.5,10.2 17.6,24.6 17.6,41.5s-6.1,31.2 -17.6,41.4C93.4,113.6 79,118.8 63.6,118.8z">
<aapt:attr name="android:fillColor">
<gradient
android:centerX="63.6"
android:centerY="62.9"
android:gradientRadius="56.96"
android:type="radial">
<item android:offset="0.5" android:color="#FFFDE030"/>
<item android:offset="0.92" android:color="#FFF7C02B"/>
<item android:offset="1" android:color="#FFF4A223"/>
</gradient>
</aapt:attr>
</path>
<path
android:pathData="M111.49,29.67c5.33,8.6 8.11,18.84 8.11,30.23c0,16.9 -6.1,31.2 -17.6,41.4c-10.6,9.3 -25,14.5 -40.4,14.5c-18.06,0 -37,-7.35 -48.18,-22.94c10.76,17.66 31,25.94 50.18,25.94c15.4,0 29.8,-5.2 40.4,-14.5c11.5,-10.2 17.6,-24.5 17.6,-41.4C121.6,50.16 118.13,38.84 111.49,29.67z"
android:fillColor="#EB8F00"/>
<path
android:pathData="M64,0C31,0 4.2,6.77 4.2,15.12S19.38,32.25 64,32.25c42.16,0 59.75,-8.77 59.75,-17.13S97,0 64,0zM64,21.44c-25.52,0 -46.22,-2 -46.22,-6.92s20.7,-10 46.22,-10s46.22,5.12 46.22,10.05S89.48,21.44 64,21.44z"
android:fillColor="#4FC3F7"/>
<path
android:pathData="M63,91.61c-9.07,0.07 -17.73,-3.74 -23.8,-10.48c-0.46,-0.53 -0.57,-1.28 -0.28,-1.92c0.29,-0.65 0.93,-1.07 1.64,-1.08l0,0c0.32,0 0.64,0.09 0.92,0.25c4.82,2.77 12.88,6.21 21.52,6.21h0.14c8.63,0 16.7,-3.44 21.51,-6.21c0.28,-0.16 0.6,-0.25 0.92,-0.25l0,0c0.71,0.01 1.35,0.43 1.64,1.08c0.3,0.64 0.19,1.39 -0.28,1.92c-6.07,6.74 -14.75,10.56 -23.82,10.48"
android:fillColor="#422B0D"/>
<path
android:pathData="M49,56.89l-0.15,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0h-0.08c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.16 -0.58,0.34 -0.84,0.54c-0.29,0.22 -0.57,0.46 -0.83,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.23,0.27c-1.44,1.61 -3.87,1.87 -5.62,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.26,-1.11c0.3,-1.01 0.72,-1.99 1.25,-2.91c0.85,-1.5 2,-2.81 3.38,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.61,-0.09l0.51,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.64,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.45 0.35,0.9 0.48,1.37c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.3,2.04 -1.12,3.94 -3.16,4.24c-0.05,0.01 -0.1,0.01 -0.15,0.02C51.39,58.61 49.93,58.03 49,56.89z"
android:fillColor="#422B0D"/>
<path
android:pathData="M88.46,56.89l-0.16,-0.2l-0.43,-0.55l-0.53,-0.57c-0.22,-0.25 -0.48,-0.49 -0.73,-0.75s-0.56,-0.51 -0.84,-0.72c-0.26,-0.2 -0.54,-0.39 -0.84,-0.54c-0.2,-0.11 -0.42,-0.2 -0.65,-0.25c-0.07,-0.01 -0.14,-0.01 -0.21,0c0,0 -0.06,0 -0.09,0H83.9c0.12,0 -0.27,0 0.27,0h-0.55c-0.15,0 -0.05,0 0,0h0.08c0.08,0 0,0 0,0h-0.11c-0.23,0.05 -0.45,0.13 -0.66,0.25c-0.29,0.15 -0.57,0.34 -0.83,0.54c-0.3,0.22 -0.58,0.46 -0.84,0.72c-0.53,0.51 -1,1 -1.3,1.39l-0.52,0.6l-0.22,0.27c-1.45,1.61 -3.87,1.87 -5.63,0.61c-1.12,-0.78 -1.69,-2.13 -1.47,-3.48c0,0 0.07,-0.4 0.27,-1.11c0.3,-1.02 0.71,-2 1.25,-2.91c0.85,-1.5 1.99,-2.81 3.37,-3.85c0.91,-0.7 1.92,-1.26 3,-1.65c0.3,-0.12 0.61,-0.21 0.92,-0.29c0.33,-0.1 0.66,-0.17 1,-0.23l0.62,-0.09l0.5,-0.06h0.55h0.79h0.51c0.34,0 0.67,0.09 1,0.14c0.65,0.11 1.28,0.28 1.89,0.51c1.08,0.39 2.09,0.95 3,1.65c1.38,1.04 2.53,2.35 3.38,3.85c0.31,0.52 0.58,1.07 0.8,1.63c0.19,0.44 0.35,0.89 0.48,1.35c0.07,0.24 0.13,0.48 0.16,0.72v0.25c0.32,2.04 -1.08,3.95 -3.12,4.27c-0.03,0 -0.06,0.01 -0.09,0.01C90.91,58.65 89.4,58.07 88.46,56.89z"
android:fillColor="#422B0D"/>
</vector>

Some files were not shown because too many files have changed in this diff Show more