最新 Android 客户端源代码以及教程,完全免费开源最新版本

free all
This commit is contained in:
zeus
2025-02-05 20:10:14 +08:00
parent ec96756800
commit 349037c5f4
1426 changed files with 155138 additions and 49275 deletions
@@ -8,6 +8,7 @@ dependencies {
implementation("com.airbnb.android:lottie:6.5.2")
// implementation("androidx.cardview:cardview:1.0.0")
implementation(project(":common"))
implementation(project(":core"))
@@ -22,4 +23,15 @@ dependencies {
implementation(libs.androidx.fragment)
implementation(libs.androidx.viewpager)
implementation(libs.google.material)
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("com.github.bumptech.glide:glide:4.16.0")
annotationProcessor("com.github.bumptech.glide:compiler:4.15.1")
}
@@ -0,0 +1,281 @@
package com.github.kr328.clash.design
import android.annotation.SuppressLint
import android.content.res.Configuration
import android.os.Build
import android.os.Bundle
import android.view.View
import android.view.WindowManager
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
import com.github.kr328.clash.common.compat.isAllowForceDarkCompat
import com.github.kr328.clash.common.compat.isLightNavigationBarCompat
import com.github.kr328.clash.common.compat.isLightStatusBarsCompat
import com.github.kr328.clash.common.compat.isSystemBarsTranslucentCompat
import com.github.kr328.clash.design.adapter.OrdersDataAdapter
import com.github.kr328.clash.design.adapter.PlanDataAdapter
import com.github.kr328.clash.design.adapter.TicketDetailAdapter
import com.github.kr328.clash.design.adapter.TicketsDataAdapter
import com.github.kr328.clash.design.databinding.ActivityBaseListBinding
import com.github.kr328.clash.design.databinding.DesignSettingsCommonBinding
import com.github.kr328.clash.design.ui.DayNight
import com.github.kr328.clash.design.ui.Surface
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.resolveThemedBoolean
import com.github.kr328.clash.design.util.resolveThemedColor
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.design.util.setOnInsertsChangedListener
import com.github.kr328.clash.design.view.ActivityBarLayout
import com.github.kr328.clash.network.OrderData
import com.github.kr328.clash.network.PlanData
import com.github.kr328.clash.network.TicketMessage
import com.github.kr328.clash.network.TicketsData
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
// 这是一个通用的 Activity 用于加载和刷新列表数据
abstract class BaseListActivity<T> : AppCompatActivity() {
private var dayNight: DayNight = DayNight.Day
val surface = Surface()
private lateinit var recyclerView: RecyclerView
lateinit var swipeRefreshLayout: SwipeRefreshLayout
private lateinit var adapter: RecyclerView.Adapter<*>
private var currentPage = 1
private var isLoading = false
// 子类需要实现这些方法
abstract fun createAdapter(): RecyclerView.Adapter<*>
abstract suspend fun loadData(page: Int, callback: (List<T>?, Throwable?) -> Unit)
abstract fun onCreate()
var mainBinding: ActivityBaseListBinding? = null
private var onRightClick: (() -> Unit)? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
applyDayNight()
val binding = ActivityBaseListBinding
.inflate(this.layoutInflater, this.root, false)
binding.activityBarLayout.applyFrom(this)
setContentView(binding.root)
binding.surface = surface
mainBinding = binding
recyclerView = binding.baseRecyclerView
swipeRefreshLayout =binding.baseSwipeRefreshLayout
recyclerView.layoutManager = LinearLayoutManager(this)
adapter = createAdapter()
recyclerView.adapter = adapter
onCreate()
this.window.decorView.setOnInsertsChangedListener {
if (surface.insets != it) {
surface.insets = it
}
}
swipeRefreshLayout.setOnRefreshListener {
CoroutineScope(Dispatchers.IO).launch {
withContext(Dispatchers.Main) {
swipeRefreshLayout.isRefreshing = true
}
loadData(1) { data, error ->
swipeRefreshLayout.isRefreshing = false
if (error != null) {
showError(error)
} else {
swipeRefreshLayout.isRefreshing = false
initList(data)
}
}
}
}
refereshData()
}
fun requestRightClick(){
// 使用安全调用,确保在 onRightClick 不为 null 时执行
println("requestRightClick...")
onRightClick?.invoke()
println("requestRightClick invoke()...")
}
fun setRightButtonVisible(onRightClickEvent: (() -> Unit) ){
println("setRightButtonVisible...")
mainBinding?.rightButton?.visibility = View.VISIBLE
onRightClick = onRightClickEvent
mainBinding?.rightButton?.setOnClickListener {
requestRightClick()
}
}
fun refereshData(){
CoroutineScope(Dispatchers.IO).launch {
// 加载数据
withContext(Dispatchers.Main) {
swipeRefreshLayout.isRefreshing = true
}
loadData(currentPage) { data, error ->
if (error != null) {
swipeRefreshLayout.isRefreshing = false
showError(error)
} else {
swipeRefreshLayout.isRefreshing = false
initList(data)
}
}
}
}
fun referTitle(tit: String){
title = tit
mainBinding?.activityBarLayout?.applyFrom(this)
}
private fun applyDayNight(config: Configuration = resources.configuration) {
// val dayNight = theme.applyStyle(R.style.AppThemeLight, true) //默认白天模式
/*
val dayNight = queryDayNight(config)
when (dayNight) {
DayNight.Night -> theme.applyStyle(R.style.AppThemeDark, true)
DayNight.Day -> theme.applyStyle(R.style.AppThemeLight, true)
}*/
window.isAllowForceDarkCompat = false
window.isSystemBarsTranslucentCompat = true
window.statusBarColor = resolveThemedColor(android.R.attr.statusBarColor)
window.navigationBarColor = resolveThemedColor(android.R.attr.navigationBarColor)
if (Build.VERSION.SDK_INT >= 23) {
window.isLightStatusBarsCompat = resolveThemedBoolean(android.R.attr.windowLightStatusBar)
}
if (Build.VERSION.SDK_INT >= 27) {
window.isLightNavigationBarCompat = resolveThemedBoolean(android.R.attr.windowLightNavigationBar)
}
this.dayNight = DayNight.Night //dayNight
}
@SuppressLint("NotifyDataSetChanged")
private fun initList(data: List<T>?) {
if (data.isNullOrEmpty()) {
runOnUiThread {
Toast.makeText(this, "没有更多数据", Toast.LENGTH_SHORT).show()
}
} else {
// 更新列表
runOnUiThread {
// 更新适配器的数据
when (adapter) {
is PlanDataAdapter -> {
// 使用 PlanDataAdapter 类型进行操作
val planDataAdapter = adapter as PlanDataAdapter
// 执行 PlanDataAdapter 的操作
planDataAdapter.setData(data as List<PlanData>)
}
is OrdersDataAdapter -> {
// 使用 PlanDataAdapter 类型进行操作
val ordersDataAdapter = adapter as OrdersDataAdapter
// 执行 PlanDataAdapter 的操作
ordersDataAdapter.setData(data as List<OrderData>)
}
is TicketsDataAdapter->{
val ordersDataAdapter = adapter as TicketsDataAdapter
ordersDataAdapter.setData(data as List<TicketsData>)
}
is TicketDetailAdapter ->{
val ordersDataAdapter = adapter as TicketDetailAdapter
ordersDataAdapter.setData(data as List<TicketMessage>)
}
else -> {
// 处理不匹配的适配器类型
println( "Unknown adapter type.")
}
}
val subscriptionAdapter = adapter as? PlanDataAdapter
if ( subscriptionAdapter != null ){
subscriptionAdapter.setData(data as List<PlanData>) // 假设你实现了一个 setData 方法来更新适配器的数据
}
adapter.notifyDataSetChanged()
}
}
}
@SuppressLint("NotifyDataSetChanged")
private fun updateList(data: List<T>?) {
if (data.isNullOrEmpty()) {
runOnUiThread {
Toast.makeText(this, "没有更多数据", Toast.LENGTH_SHORT).show()
}
} else {
// 更新列表
runOnUiThread {
// 更新适配器的数据
// adapter.addData(data) // 假设你实现了一个 setData 方法来更新适配器的数据
adapter.notifyDataSetChanged()
}
}
}
private fun showError(error: Throwable) {
runOnUiThread {
Toast.makeText(this, "加载失败: ${error.message}", Toast.LENGTH_SHORT).show()
}
}
// 调用此方法来处理列表项点击
// fun onListItemClicked(item: T) {
// onItemClicked(item)
// }
}
@@ -0,0 +1,225 @@
package com.github.kr328.clash.design
import android.content.Context
import android.view.View
import androidx.core.content.ContextCompat
import com.github.kr328.clash.design.ProfileDesign.Request
import com.github.kr328.clash.design.databinding.ActivityConfigorderBinding
import com.github.kr328.clash.design.databinding.ActivityPlanItemBinding
import com.github.kr328.clash.design.databinding.ActivityProfileBinding
import com.github.kr328.clash.design.ui.ToastDuration
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.network.ApiClient
import com.github.kr328.clash.network.ApiService
import com.github.kr328.clash.network.ConfigResponse
import com.github.kr328.clash.network.PlanData
import com.github.kr328.clash.network.SaveOrderRequest
import com.github.kr328.clash.network.SubmitOrderResponse
import com.github.kr328.clash.network.safeApiRequestCall
import com.github.kr328.clash.utity.LoadingDialog
import com.google.gson.Gson
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.channels.trySendBlocking
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
class ConfigOrderDesign (context: Context) : Design<ConfigOrderDesign.Request>(context) {
private var currentChoose: Map<String,String>? = null
public var trade_no:String = ""
enum class Request {
SubmitOrder,
}
private val binding = ActivityConfigorderBinding
.inflate(context.layoutInflater, context.root, false)
override val root: View
get() = binding.root
init {
binding.self = this
binding.activityBarLayout.applyFrom(context)
}
fun request(request: Request) {
if (request == Request.SubmitOrder){
//提交订单
LoadingDialog.show(context, "正在下单中...")
CoroutineScope(Dispatchers.IO).launch {
val apiService = ApiClient.retrofit.create(ApiService::class.java)
safeApiRequestCall { apiService.saveOrder(PreferenceManager.loginauthData, SaveOrderRequest("${currentChoose?.get("period")}",(currentChoose?.get("plan_id") ?: "0").toInt(),""))}.let {
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
if(it != null && it.isSuccessful){
if (it.body()?.data != null){
//tradeNO 订单号 成功
trade_no = it.body()?.data ?: ""
requests.trySend(request)
}
}else{
val errorinfo = (it?.errorBody()?.string())
if (errorinfo != null){
//解析错错误信息
val gson = Gson()
val submitResponse = gson.fromJson(errorinfo, SubmitOrderResponse::class.java)
if (submitResponse?.message != null){
withContext(Dispatchers.Main) {
showToast("下单失败:${submitResponse.message}", ToastDuration.Long)
}
}
}else{
withContext(Dispatchers.Main) {
showToast("下单失败:请求数据失败", ToastDuration.Long)
}
}
}
}
}
}
}
fun fillData(plan: PlanData?){
binding.configorderPlanname = "商品名称:${plan?.name}"
if (plan?.onetime_price != null && plan.onetime_price > 0) {
binding.configorderPlantype = "类型/周期:一次性"
binding.configorderPlantype2 = "一次性"
}else{
binding.configorderPlantype = "类型/周期:按月"
binding.configorderPlantype2 = "按月"
}
binding.configorderPlanname2 = "${plan?.name}"
binding.configorderPlantransfer = "商品流量:${plan?.transfer_enable} GB"
if (plan?.onetime_price !=null) {
binding.configorderPlanamount = "¥ ${plan?.onetime_price.toFloat()/100}0"
}else{
if (plan?.month_price !=null) {
binding.configorderPlanamount = "¥ ${plan?.month_price.toFloat() / 100}0"
}
}
var selectedIndex = 0
if (plan?.onetime_price != null && plan.onetime_price > 0) {
//一次性
val map = HashMap<String,String>()
map.put("type","一次性");//存储key和value
map.put("amount","${plan.onetime_price}");
map.put("period","onetime_price");
map.put("plan_id","${plan.id}");
val frameLayout = ActivityPlanItemBinding.inflate(context.layoutInflater, context.root, false)
frameLayout.typeTextView.text = "一次性"
frameLayout.amountTextView.text = "¥ ${ (map.get("amount")?.toDouble() ?: 0.0)/100}0"
binding.container.addView(frameLayout.root)
val child = binding.container.getChildAt(0)
child.background = ContextCompat.getDrawable(
context, R.drawable.card_border_selected
)
currentChoose = map
}else{
val map = HashMap<String,String>()
map.put("type","按月");//存储key和value
map.put("amount","${plan?.month_price ?: 0}");
map.put("period","month_price");
map.put("plan_id","${plan?.id}");
currentChoose = map
val map2 = HashMap<String,String>()
map2.put("type","按季");//存储key和value
map2.put("amount","${plan?.quarter_price ?: 0}");
map2.put("period","quarter_price");
map2.put("plan_id","${plan?.id}");
val map3 = HashMap<String,String>()
map3.put("type","半年");//存储key和value
map3.put("amount","${plan?.half_year_price ?: 0}");
map3.put("period","half_year_price");
map3.put("plan_id","${plan?.id}");
val map4 = HashMap<String,String>()
map4.put("type","一年");//存储key和value
map4.put("amount","${plan?.year_price ?: 0}");
map4.put("period","year_price");
map4.put("plan_id","${plan?.id}");
val list = ArrayList<Map<String,String>>()
list.add(map)
if((plan?.quarter_price ?: 0) > 0){
list.add(map2)
}
if((plan?.half_year_price ?: 0) > 0){
list.add(map3)
}
if((plan?.year_price ?: 0) > 0){
list.add(map4)
}
for (i in list.indices) {
// 设置点击事件和单选逻辑
val frameLayout = ActivityPlanItemBinding.inflate(context.layoutInflater, context.root, false)
val item = list[i]
frameLayout.typeTextView.text = item.get("type")
frameLayout.amountTextView.text ="¥ ${ (item.get("amount")?.toDouble() ?: 0.0)/100}0"
frameLayout.planitemFrameLayout.setOnClickListener {
selectedIndex = i
currentChoose = item
binding.configorderPlantype2 = item.get("type")
binding.configorderPlanamount = "¥ ${ (item.get("amount")?.toDouble() ?: 0.0)/100}0"
for (j in 0 until binding.container.childCount) {
val child = binding.container.getChildAt(j)
println("selectedIndex: ${selectedIndex} ${ child.background} ")
child.background = ContextCompat.getDrawable(
context,
if (j == selectedIndex) R.drawable.card_border_selected else R.drawable.card_border
)
}
}
binding.container.addView(frameLayout.root)
if (i == 0){
//默认选中第一个
frameLayout.planitemFrameLayout.background = ContextCompat.getDrawable(
context, R.drawable.card_border_selected
)
}
}
}
}
}
@@ -0,0 +1,91 @@
package com.github.kr328.clash.design
import android.content.Context
import android.net.Uri
import android.os.Build
import android.view.View
import android.webkit.WebChromeClient
import android.webkit.WebSettings
import android.webkit.WebView
import android.webkit.WebViewClient
import com.github.kr328.clash.design.ProxyDesign.Request
import com.github.kr328.clash.design.databinding.ActivityH5webviewBinding
import com.github.kr328.clash.design.databinding.DesignSettingsCommonBinding
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
class H5WebViewDesign(
context: Context,
openLink: (Uri) -> Unit,
) : Design<H5WebViewDesign.Request>(context) {
private val binding = ActivityH5webviewBinding
.inflate(context.layoutInflater, context.root, false)
enum class Request {
OpenURL,ReferWebView
}
override val root: View
get() = binding.root
init {
binding.surface = surface
binding.activityBarLayout.applyFrom(context)
binding.webview.webViewClient= WebViewClient()//目标的网页仍然在当前WebView中显
binding.webview.settings.apply {
javaScriptEnabled = true // 启用 JavaScript
domStorageEnabled = true // 启用 DOM 存储
loadWithOverviewMode = true
useWideViewPort = true
allowContentAccess = true
allowFileAccess = true
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
binding.webview.settings.mixedContentMode = WebSettings.MIXED_CONTENT_ALWAYS_ALLOW
}
binding.webview.canGoBack()
// 设置 WebChromeClient 以更新加载进度
binding.webview.webChromeClient = object : WebChromeClient() {
override fun onProgressChanged(view: WebView?, newProgress: Int) {
super.onProgressChanged(view, newProgress)
// 显示进度条
if (newProgress < 100) {
binding.progressBar.visibility = View.VISIBLE
binding.progressBar.progress = newProgress
} else {
// 隐藏进度条
binding.progressBar.visibility = View.GONE
}
}
}
}
fun requestRefereshTesting() {
// urlTesting = true
binding.webview.reload()
}
fun breaseURL(url: String){
binding.webview.loadUrl(url)//.将网址传入
}
fun refereshApplyFrom(){
binding.activityBarLayout.applyFrom(context)
}
}
@@ -3,23 +3,54 @@ package com.github.kr328.clash.design
import android.content.Context
import android.net.Uri
import android.view.View
import android.view.inputmethod.InputMethodManager
import android.widget.Toast
import androidx.core.content.ContextCompat.getSystemService
import com.github.kr328.clash.design.MainDesign.Request
import com.github.kr328.clash.design.databinding.DesignSettingsCommonBinding
import com.github.kr328.clash.design.preference.NullableTextAdapter
import com.github.kr328.clash.design.preference.TextAdapter
import com.github.kr328.clash.design.preference.category
import com.github.kr328.clash.design.preference.clickable
import com.github.kr328.clash.design.preference.editableText
import com.github.kr328.clash.design.preference.editableTextMap
import com.github.kr328.clash.design.preference.preferenceScreen
import com.github.kr328.clash.design.preference.tips
import com.github.kr328.clash.design.ui.ToastDuration
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.bindAppBarElevation
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.network.ApiClient
import com.github.kr328.clash.network.ApiService
import com.github.kr328.clash.network.LoginRequest
import com.github.kr328.clash.network.PublicResponse
import com.github.kr328.clash.network.safeApiRequestCall
import com.github.kr328.clash.utity.LoadingDialog
import com.google.gson.Gson
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.net.URLEncoder
class HelpDesign(
context: Context,
openLink: (Uri) -> Unit,
) : Design<Unit>(context) {
) : Design<HelpDesign.Request>(context) {
private val binding = DesignSettingsCommonBinding
.inflate(context.layoutInflater, context.root, false)
enum class Request {
CommitSuccess,
}
fun request(request: HelpDesign.Request) {
requests.trySend(request)
}
override val root: View
get() = binding.root
@@ -28,69 +59,193 @@ class HelpDesign(
binding.activityBarLayout.applyFrom(context)
binding.scrollRoot.bindAppBarElevation(binding.activityBarLayout)
/*
binding.scrollRoot.bindAppBarElevation(binding.activityBarLayout)
val screen = preferenceScreen(context) {
tips(R.string.tips_help)
data class ConfigurationOverride(
var title: String? = null,
var content: String? = null
)
val configuration = ConfigurationOverride()
val screen = preferenceScreen(context) {
clickable(
title = R.string.github_issues,
summary = R.string.github_issues_zeus
) {
clicked {
openLink(Uri.parse("https://github.com/nicolastinkl"))
editableText(
value = configuration::title,
adapter = NullableTextAdapter.String,
title = R.string.name,
placeholder = R.string.name,
empty = R.string.default_
)
editableText(
value = configuration::content,
adapter = NullableTextAdapter.String,
title = R.string.more,
placeholder = R.string.more,
empty = R.string.default_
)
tips(R.string.tips_help)
clickable(
title = R.string.github_issues,
summary = R.string.github_issues_zeus
) {
clicked {
openLink(Uri.parse("https://github.com/nicolastinkl"))
}
}
category(R.string.document)
clickable(
title = R.string.clash_wiki,
summary = R.string.clash_wiki_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_wiki_url)))
}
}
clickable(
title = R.string.clash_meta_wiki,
summary = R.string.clash_meta_wiki_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_meta_wiki_url)))
}
}
category(R.string.sources)
clickable(
title = R.string.clash_meta_core,
summary = R.string.clash_meta_core_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_meta_core_url)))
}
}
clickable(
title = R.string.clash_meta_for_android,
summary = R.string.meta_github_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.meta_github_url)))
}
}
}
binding.content.addView(screen.root) */
binding.gongdanButton.setOnClickListener {
val gondanSubText = binding.gondanSubText.text.toString()
val gondanSubContent = binding.gondanSubContent.text.toString()
if (gondanSubText.isEmpty() || gondanSubContent.isEmpty()) {
Toast.makeText(context, "请输入工单标题和内容", Toast.LENGTH_SHORT).show()
} else {
// Hide the keyboard
val inputMethodManager = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
val currentFocusView = binding.root
if (currentFocusView != null) {
inputMethodManager.hideSoftInputFromWindow(currentFocusView.windowToken, 0)
}
performLogin(gondanSubText, gondanSubContent)
}
/*
category(R.string.document)
clickable(
title = R.string.clash_wiki,
summary = R.string.clash_wiki_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_wiki_url)))
}
}
clickable(
title = R.string.clash_meta_wiki,
summary = R.string.clash_meta_wiki_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_meta_wiki_url)))
}
}
category(R.string.sources)
clickable(
title = R.string.clash_meta_core,
summary = R.string.clash_meta_core_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.clash_meta_core_url)))
}
}
clickable(
title = R.string.clash_meta_for_android,
summary = R.string.meta_github_url
) {
clicked {
openLink(Uri.parse(context.getString(R.string.meta_github_url)))
}
} */
}
binding.content.addView(screen.root)
}
fun encodeString(input: String): String {
val encoded = StringBuilder()
input.forEach { char ->
when {
char.isWhitespace() -> {
// 编码空格为 %20
encoded.append("")
}
char.isLetterOrDigit() || char.toInt() in 0x4E00..0x9FFF -> {
// 保留字母、数字和中文字符
encoded.append(char)
}
else -> {
// 其他字符使用 URLEncoder 编码
encoded.append(URLEncoder.encode(char.toString(), "UTF-8"))
}
}
}
return encoded.toString()
}
private fun performLogin(email: String, password: String) {
// Perform login logic here, possibly calling an API
// Show the loading indicator with a custom message
LoadingDialog.show(context, "正在提交...")
val apiServiceApp = ApiClient.retrofit.create(ApiService::class.java)
//获取 Config 数据
CoroutineScope(Dispatchers.IO).launch {
val fieldMap = mutableMapOf<String, String>()
val email1 = encodeString(email)
val password1 =encodeString(password)
fieldMap.put("subject",""+email1)
fieldMap.put("level","1")
fieldMap.put("message",""+password1)
safeApiRequestCall {
apiServiceApp.saveTicket(PreferenceManager.loginauthData, request = fieldMap)}.let {
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
if (it != null && it.isSuccessful) {
showToast("提交成功",ToastDuration.Long)
requests.trySend(Request.CommitSuccess)
}else{
val errorinfo = it?.errorBody()?.string()
if (errorinfo != null){
//解析错错误信息
val gson = Gson()
val submitResponse = gson.fromJson(errorinfo, PublicResponse::class.java)
if (submitResponse?.message != null){
withContext(Dispatchers.Main) {
Toast.makeText(context, "提交失败: ${submitResponse.message}", Toast.LENGTH_SHORT).show()
}
}
}else{
withContext(Dispatchers.Main) {
Toast.makeText(context, "提交失败", Toast.LENGTH_SHORT).show()
}
}
}
}
}
}
}
@@ -0,0 +1,245 @@
package com.github.kr328.clash.design
import android.content.ClipData
import android.content.ClipboardManager
import android.content.Context
import android.content.Intent
import android.view.View
import android.widget.Toast
import com.github.kr328.clash.common.util.intent
import com.github.kr328.clash.design.databinding.ActivityInvitationBinding
import com.github.kr328.clash.design.databinding.ActivityInviteItemBinding
import com.github.kr328.clash.design.databinding.ActivityPlanItemBinding
import com.github.kr328.clash.design.databinding.ActivitySubmitorderBinding
import com.github.kr328.clash.design.network.APIGlobalObject
import com.github.kr328.clash.design.ui.ToastDuration
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.design.util.showCustomDialog
import com.github.kr328.clash.network.ApiClient
import com.github.kr328.clash.network.ApiService
import com.github.kr328.clash.network.PaymentData
import com.github.kr328.clash.network.PublicResponse
import com.github.kr328.clash.network.safeApiRequestCall
import com.github.kr328.clash.utity.LoadingDialog
import com.google.gson.Gson
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
class InvitationDesign (context: Context) : Design<InvitationDesign.Request>(context) {
enum class Request {
SubmitGenNewInviteCpde,
}
private var firstLink:String = ""
private val binding = ActivityInvitationBinding
.inflate(context.layoutInflater, context.root, false)
override val root: View
get() = binding.root
init {
binding.self = this
binding.activityBarLayout.applyFrom(context)
binding.CreatenewInvitecodeButton.setOnClickListener {
LoadingDialog.show(context, "正在生成中...")
CoroutineScope(Dispatchers.IO).launch {
val apiService = ApiClient.retrofit.create(ApiService::class.java)
safeApiRequestCall { apiService.saveinvite(PreferenceManager.loginauthData)}.let {
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
if (it != null && it.isSuccessful) {
withContext(Dispatchers.Main) {
requestdataDisible()
}
}else{
val errorinfo = it?.errorBody()?.string()
if (errorinfo != null){
//解析错错误信息
val gson = Gson()
val submitResponse = gson.fromJson(errorinfo, PublicResponse::class.java)
if (submitResponse?.message != null){
withContext(Dispatchers.Main) {
Toast.makeText(context, "生成失败: ${submitResponse.message}", Toast.LENGTH_SHORT).show()
}
}
}else{
withContext(Dispatchers.Main) {
Toast.makeText(context, "生成失败", Toast.LENGTH_SHORT).show()
}
}
}
}
}
}
binding.shareLinkButton.setOnClickListener {
showDiag(firstLink)
}
}
fun showDiag(code:String){
val message = "目前为止我用过最好的梯子,播放Youtube、Netflix高清视频从未如此轻松。\n\n" +
"下载链接(推荐使用Chrome浏览器访问):${PreferenceManager.getConfigFromPreferences(context)?.websiteURL}\n\n" +
"安装后打开填写我的邀请码:${code} 你能多得3天会员!\n"
context.showCustomDialog(
title = "推荐文案",
message = message ,
positiveButtonText = "立即分享",
negativeButtonText = "复制推荐文案",
onPositiveClick = {
launch {
// 创建分享意图
val shareIntent = Intent().apply {
action = Intent.ACTION_SEND
putExtra(Intent.EXTRA_TEXT, message) // 分享的文字内容
type = "text/plain"
}
// 启动分享选择器
context.startActivity(Intent.createChooser(shareIntent, "分享给朋友"))
}
},
onNegativeClick = {
// 清理缓存,清除节点信息,切换界面
launch {
copytoSysString(message)
}
}
)
}
fun request(request: Request) {
}
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
private suspend fun copytoSys(code: String ){
withContext(Dispatchers.Main) {
showDiag(code)
}
// var cm: ClipboardManager = context.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
// var str:ClipData= ClipData.newPlainText("Label",PreferenceManager.getConfigFromPreferences(context)?.mainregisterURL+code)
//
// cm.setPrimaryClip(str)
// showToast("复制成功到剪切板",ToastDuration.Long)
}
private suspend fun copytoSysString(code: String ){
var cm: ClipboardManager = context.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
var str:ClipData= ClipData.newPlainText("Label",code)
cm.setPrimaryClip(str)
showToast("复制成功到剪切板",ToastDuration.Long)
}
fun requestdataDisible(){
LoadingDialog.show(context, "正在获取中...")
CoroutineScope(Dispatchers.IO).launch {
val apiService = ApiClient.retrofit.create(ApiService::class.java)
safeApiRequestCall { apiService.getinviteList(PreferenceManager.loginauthData)}.let {
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
if (it != null && it.isSuccessful){
if (it.body()?.data?.stat != null){
val listdata = it.body()?.data?.stat
var index = 0
listdata?.forEach { item ->
withContext(Dispatchers.Main) {
if (index == 0) {
binding.inviteZhucenum = "${item}"
} else if (index == 1) {
binding.inviteQuerenzhong = "¥${item}.00"
} else if (index == 2) {
binding.inviteZhucenumleiji = "¥${item}.00"
} else if (index == 3) {
binding.inviteBili = "${item}%"
}
}
index ++
}
}
val codes = it.body()?.data?.codes
withContext(Dispatchers.Main) {
binding.container.removeAllViews()
var index = 0
codes?.forEach { item ->
if (index == 0){
firstLink = item.code ?: ""
}
val frameLayout = ActivityInviteItemBinding.inflate(
context.layoutInflater,
context.root,
false
)
frameLayout.nameTextView.text = item.code
// frameLayout.timeTextView.text = "${formatTimestamp((item.created_at ?: 0) * 1000L)}"
frameLayout.planitemFrameLayout.setOnClickListener {
println("click ${item}")
GlobalScope.launch {
this@InvitationDesign.copytoSys(item.code ?: "")
}
}
frameLayout.copyInvitecodeButton.setOnClickListener {
GlobalScope.launch {
this@InvitationDesign.copytoSys(item.code ?: "")
}
}
binding.container.addView(frameLayout.root)
index ++
}
}
}
}
}
}
}
@@ -6,25 +6,44 @@ import android.graphics.Color
import android.os.Handler
import android.os.Looper
import android.util.Log
import android.view.LayoutInflater
import android.view.MenuItem
import android.view.View
import android.widget.TextView
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.widget.PopupMenu
import androidx.core.content.ContextCompat
import com.airbnb.lottie.LottieAnimationView
import com.github.kr328.clash.common.util.ticker
import com.github.kr328.clash.core.Clash
import com.github.kr328.clash.core.model.TunnelState
import com.github.kr328.clash.core.util.trafficDownload
import com.github.kr328.clash.core.util.trafficTotal
import com.github.kr328.clash.core.util.trafficUpload
import com.github.kr328.clash.design.adapter.ImageSliderImagesAdapter
import com.github.kr328.clash.design.component.ProxyMenu
import com.github.kr328.clash.design.component.ProxyViewConfig
import com.github.kr328.clash.design.databinding.DesignAboutBinding
import com.github.kr328.clash.design.databinding.DesignMainBinding
import com.github.kr328.clash.design.preference.selectableList
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.resolveThemedColor
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.service.model.AccessControlMode
import com.google.android.material.button.MaterialButton
import com.google.android.material.tabs.TabLayoutMediator
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import kotlinx.coroutines.withTimeout
import java.util.concurrent.TimeUnit
import com.github.kr328.clash.design.preference.*
import com.github.kr328.clash.design.ui.ToastDuration
import com.github.kr328.clash.service.store.ServiceStore
import com.github.kr328.clash.utity.LoadingDialog
import com.google.android.material.bottomsheet.BottomSheetDialog
import kotlinx.coroutines.launch
class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
class MainDesign(context: Context) : Design<MainDesign.Request>(context) ,PopupMenu.OnMenuItemClickListener {
enum class Request {
ToggleStatus,
OpenProxy,
@@ -37,10 +56,13 @@ class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
OpenSettingsDIY,
OpenSettingsKEFU,
OpenModeDirect,
OpenChangeMode,
OpenModeGlobal,
OpenModeRule,
OpenModeMenu,
OpenModeSheet
}
private var menu:PopupMenu? = null
private val binding = DesignMainBinding
.inflate(context.layoutInflater, context.root, false)
@@ -65,13 +87,46 @@ class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
binding.clashRunning = running
if (running){
binding.connectionButton.setAnimation("51a05581.json")
binding.serverSelection.visibility = View.VISIBLE
// withContext(Dispatchers.Main){
// LoadingDialog.hide()
// }
binding.trafficStats.visibility = View.VISIBLE
// binding.modeImg1.visibility = View.VISIBLE
// binding.modeImg2.visibility = View.VISIBLE
// binding.menuView.visibility = View.VISIBLE
binding.connectionButtonText.setText("点击断开")
binding.connectionButton.loop(false)
binding.connectionButtonText.setTextColor(ContextCompat.getColor(context, R.color.white))
}else{
binding.trafficStats.visibility = View.GONE
binding.connectionButton.setAnimation("1d2a0fe5.json")
binding.connectionButton.loop(true)
binding.serverSelection.visibility = View.GONE
binding.connectionButtonText.setText("点击连接")
binding.connectionButtonText.setTextColor(ContextCompat.getColor(context,R.color.black))
// binding.modeImg1.visibility = View.GONE
// binding.modeImg2.visibility = View.GONE
// binding.menuView.visibility = View.GONE
}
}
}
suspend fun setUploadedSeep(value: Long){
withContext(Dispatchers.Main) {
binding.uploadedseed = value.trafficUpload()
}
}
suspend fun setDownloadedSeep(value: Long){
withContext(Dispatchers.Main) {
binding.downloadseed = value.trafficDownload()
}
}
suspend fun setForwarded(value: Long) {
withContext(Dispatchers.Main) {
binding.forwarded = value.trafficTotal()
@@ -88,10 +143,17 @@ class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
}
when (mode) {
TunnelState.Mode.Direct -> binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
TunnelState.Mode.Global -> binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
TunnelState.Mode.Rule -> binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
else -> binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
// TunnelState.Mode.Direct -> {
// binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
// }
// TunnelState.Mode.Global -> binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
// TunnelState.Mode.Rule -> binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
// else -> binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
TunnelState.Mode.Direct -> binding.selectnodeName = context.getString(R.string.direct_mode)
TunnelState.Mode.Global -> binding.selectnodeName = context.getString(R.string.global_mode)
TunnelState.Mode.Rule -> binding.selectnodeName = context.getString(R.string.rule_mode)
else -> binding.selectnodeName = context.getString(R.string.direct_mode)
}
@@ -121,6 +183,30 @@ class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
binding.colorClashStarted = context.resolveThemedColor(R.attr.colorPrimary)
binding.colorClashStopped = context.resolveThemedColor(R.attr.colorClashStopped)
// menu = PopupMenu(context, binding.menuView)
// menu?.menuInflater?.inflate(R.menu.activity_menu_mode, menu?.menu)
// menu?.setOnMenuItemClickListener(this)
}
override fun onMenuItemClick(item: MenuItem): Boolean {
item.isChecked = !item.isChecked
when (item.itemId) {
R.id.global_mode -> {
requests.trySend(Request.OpenModeGlobal)
}
R.id.rule_mode -> {
requests.trySend(Request.OpenModeRule)
}
else -> return false
}
return true
}
fun request(request: Request) {
@@ -134,58 +220,155 @@ class MainDesign(context: Context) : Design<MainDesign.Request>(context) {
}
}
suspend fun OpenModeSheet(){
// 创建 BottomSheetDialog
val bottomSheetDialog = BottomSheetDialog(context)
// 加载自定义的底部布局
val view = LayoutInflater.from(context).inflate(R.layout.bottom_sheet_layout, null)
bottomSheetDialog.setContentView(view)
view.findViewById<TextView>(R.id.mode_rule).setOnClickListener {
// 处理点击事件
bottomSheetDialog.dismiss()
requests.trySend(Request.OpenModeRule)
}
view.findViewById<TextView>(R.id.mode_global).setOnClickListener {
// 处理点击事件
bottomSheetDialog.dismiss()
requests.trySend(Request.OpenModeGlobal)
}
// 显示 BottomSheetDialog
bottomSheetDialog.show()
}
suspend fun OpenModeMenu(){
menu?.show()
}
suspend fun startBannsers() {
withContext(Dispatchers.Main) {
//sart ad bannsers
val viewPager2 = binding.adBanner
val tabLayout = binding.tabLayout
// 创建图片资源列表
val imageList = listOf(
/* val imageList = listOf(
R.drawable.ad_banner,
R.drawable.ad_banner2,
R.drawable.ad_banner3
)*/
val imageList = PreferenceManager.getConfigFromPreferences(context)?.banners
//binding.menuView.text = PreferenceManager.modeName
// 设置适配器
//val adapter = ImageSliderAdapter(imageList)
if (imageList != null){
viewPager2.adapter = ImageSliderImagesAdapter(imageList){ position ->
// 点击图片时的处理逻辑
}
// 设置 TabLayoutMediator 来同步 ViewPager2 和 TabLayout
TabLayoutMediator(tabLayout, viewPager2) { tab, position ->
// Tab 的自定义逻辑可以放在这里
}.attach()
}
val uncheckedColor = ColorStateList(
arrayOf(intArrayOf(-android.R.attr.state_checked)), // 未选中状态
intArrayOf(Color.parseColor("#40383838")) // 未选中颜色
)
val checkedColor = ColorStateList(
arrayOf(intArrayOf(android.R.attr.state_checked)), // 选中状态
intArrayOf(Color.parseColor("#2b9a45")) // 选中颜色
)
// 设置适配器
val adapter = ImageSliderAdapter(imageList)
viewPager2.adapter = adapter
// 设置 TabLayoutMediator 来同步 ViewPager2 和 TabLayout
TabLayoutMediator(tabLayout, viewPager2) { tab, position ->
// Tab 的自定义逻辑可以放在这里
}.attach()
/*
val screen = preferenceScreen(context) {
val vpnDependencies: MutableList<Preference> = mutableListOf()
val srvStore = ServiceStore(context)
val selectMode = selectableList(
value = srvStore::accessControlMode,
values = AccessControlMode.values(),
valuesText = arrayOf(
R.string.direct_mode,
R.string.rule_mode,
R.string.global_mode
),
title = R.string.rule_mode,
configure = vpnDependencies::add,
)
}
binding.linearLayoutMode.addView(screen.root)
*/
binding.modeSelection.addOnButtonCheckedListener { group, checkedId, isChecked ->
// binding.modeSelectionbutton1.setBackgroundColor(Color.parseColor("#383838"))
// binding.modeSelectionbutton2.setBackgroundColor(Color.parseColor("#383838"))
// binding.modeSelectionbutton3.setBackgroundColor(Color.parseColor("#383838"))
//
// if(button.id == checkedId){
// button.backgroundTintList = checkedColor // 选中状态颜色
// }else{
// button.backgroundTintList = uncheckedColor // 未选中状态颜色
// }
/*
for (buttonId in listOf(binding.modeSelectionbutton1,binding.modeSelectionbutton2,binding.modeSelectionbutton3)) {
if (buttonId.id != checkedId) {
// binding.modeSelection.uncheck(buttonId.id)
buttonId.backgroundTintList = uncheckedColor
}
}
val button = group.findViewById<MaterialButton>(checkedId)
button.backgroundTintList = checkedColor // 选中状态颜色
*/
// binding.modeSelectionbutton1.invalidate()
// binding.modeSelectionbutton2.invalidate()
// binding.modeSelectionbutton3.invalidate()
// Reset all buttons to default background tint
binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#383838"))
binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#383838"))
binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#383838"))
// binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#40383838"))
// binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#40383838"))
// binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#40383838"))
//
when (checkedId) {
R.id.modeSelectionbutton1 -> {
request(Request.OpenModeDirect)
binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
binding.modeSelectionbutton1.backgroundTintList = checkedColor // 选中状态颜色
// binding.modeSelectionbutton1.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
}
R.id.modeSelectionbutton2 -> {
request(Request.OpenModeGlobal)
binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
binding.modeSelectionbutton2.backgroundTintList = checkedColor // 选中状态颜色
//binding.modeSelectionbutton2.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
}
R.id.modeSelectionbutton3 -> {
request(Request.OpenModeRule)
binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
binding.modeSelectionbutton3.backgroundTintList = checkedColor // 选中状态颜色
// binding.modeSelectionbutton3.backgroundTintList = ColorStateList.valueOf(Color.parseColor("#2b9a45"))
}
}
}
}
@@ -4,6 +4,7 @@ import android.content.Context
import android.content.pm.PackageManager
import android.os.Build
import android.view.View
import android.widget.LinearLayout
import com.github.kr328.clash.common.util.componentName
import com.github.kr328.clash.design.databinding.DesignSettingsCommonBinding
import com.github.kr328.clash.design.model.Behavior
@@ -14,6 +15,7 @@ import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.bindAppBarElevation
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.design.view.drividerline
import com.github.kr328.clash.service.model.AccessControlMode
import com.github.kr328.clash.service.store.ServiceStore
import kotlinx.coroutines.launch
@@ -21,6 +23,7 @@ import kotlinx.coroutines.launch
class NetworkSettingsDesign(
context: Context,
uiStore: UiStore,
behavior: Behavior,
srvStore: ServiceStore,
running: Boolean,
) : Design<NetworkSettingsDesign.Request>(context) {
@@ -34,6 +37,8 @@ class NetworkSettingsDesign(
override val root: View
get() = binding.root
init {
binding.surface = surface
@@ -42,8 +47,64 @@ class NetworkSettingsDesign(
binding.scrollRoot.bindAppBarElevation(binding.activityBarLayout)
val screen = preferenceScreen(context) {
val vpnDependencies: MutableList<Preference> = mutableListOf()
category(R.string.default_)
// switch(
// value = behavior::autoRestart,
// icon = R.drawable.ic_baseline_restore,
// title = R.string.auto_restart,
// summary = R.string.allow_clash_auto_restart,
// )
//
//
// drividerline()
//
switch(
value = srvStore::dynamicNotification,
icon = R.drawable.ic_baseline_domain,
title = R.string.show_traffic,
summary = R.string.show_traffic_summary
) {
// enabled = !running
}
drividerline()
selectableList(
value = srvStore::accessControlMode,
values = AccessControlMode.values(),
valuesText = arrayOf(
R.string.allow_all_apps,
R.string.allow_selected_apps,
R.string.deny_selected_apps
),
title = R.string.access_control_mode,
configure = vpnDependencies::add,
)
drividerline()
clickable(
title = R.string.access_control_packages,
summary = R.string.access_control_packages_summary,
) {
clicked {
requests.trySend(Request.StartAccessControlList)
}
vpnDependencies.add(this)
}
drividerline()
category(R.string.vpn_service_options)
val vpn = switch(
value = uiStore::enableVpn,
icon = R.drawable.ic_baseline_vpn_lock,
@@ -57,11 +118,9 @@ class NetworkSettingsDesign(
}
}
category(R.string.behavior)
drividerline()
category(R.string.vpn_service_options)
switch(
value = srvStore::bypassPrivateNetwork,
title = R.string.bypass_private_network,
@@ -69,6 +128,8 @@ class NetworkSettingsDesign(
configure = vpnDependencies::add,
)
drividerline()
switch(
value = srvStore::dnsHijacking,
title = R.string.dns_hijacking,
@@ -76,6 +137,8 @@ class NetworkSettingsDesign(
configure = vpnDependencies::add,
)
drividerline()
switch(
value = srvStore::allowBypass,
title = R.string.allow_bypass,
@@ -83,6 +146,8 @@ class NetworkSettingsDesign(
configure = vpnDependencies::add,
)
drividerline()
switch(
value = srvStore::allowIpv6,
title = R.string.allow_ipv6,
@@ -90,6 +155,8 @@ class NetworkSettingsDesign(
configure = vpnDependencies::add,
)
drividerline()
if (Build.VERSION.SDK_INT >= 29) {
switch(
value = srvStore::systemProxy,
@@ -99,6 +166,8 @@ class NetworkSettingsDesign(
)
}
drividerline()
selectableList(
value = srvStore::tunStackMode,
values = arrayOf(
@@ -115,29 +184,11 @@ class NetworkSettingsDesign(
configure = vpnDependencies::add,
)
selectableList(
value = srvStore::accessControlMode,
values = AccessControlMode.values(),
valuesText = arrayOf(
R.string.allow_all_apps,
R.string.allow_selected_apps,
R.string.deny_selected_apps
),
title = R.string.access_control_mode,
configure = vpnDependencies::add,
)
drividerline()
clickable(
title = R.string.access_control_packages,
summary = R.string.access_control_packages_summary,
) {
clicked {
requests.trySend(Request.StartAccessControlList)
}
vpnDependencies.add(this)
}
/*
if (running) {
vpn.enabled = false
@@ -146,16 +197,17 @@ class NetworkSettingsDesign(
}
} else {
vpn.listener?.onChanged()
}
}*/
}
binding.content.addView(screen.root)
if (running) {
launch {
showToast(R.string.options_unavailable, ToastDuration.Indefinite)
}
}
// if (running) {
// launch {
// showToast(R.string.options_unavailable, ToastDuration.Indefinite)
// }
// }
}
}
@@ -3,26 +3,139 @@ package com.github.kr328.clash.design
import android.content.Context
import android.content.SharedPreferences
import androidx.lifecycle.LiveData
import com.github.kr328.clash.network.ConfigResponse
object PreferenceManager {
private const val PREF_NAME = "app_preferences"
private lateinit var prefs: SharedPreferences
private lateinit var prefs: SharedPreferences
fun init(context: Context) {
prefs = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE)
prefs = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE or Context.MODE_MULTI_PROCESS)
}
var selectnodeName: String
get() = prefs.getString("selectnodeName", "") ?: "自动选择"
fun clearData(){
prefs.edit().clear().apply()
}
var cached_userSubscritedata: String
get() = prefs.getString("cached_userSubscritedata", "") ?: ""
set(value) {
prefs.edit().putString("cached_userSubscritedata", value).apply()
}
var cache_timestamp: Long
get() = prefs.getLong("cache_timestamp", 0) ?: 0
set(value) {
prefs.edit().putLong("cache_timestamp", value).apply()
}
var cached_data: String
get() = prefs.getString("cached_data", "") ?: ""
set(value) {
prefs.edit().putString("cached_data", value).apply()
}
var selectnodeName: String
get() = prefs.getString("selectnodeName", "自动选择") ?: "自动选择"
set(value) {
prefs.edit().putString("selectnodeName", value).apply()
}
var modeName: String
get() = prefs.getString("modeName", "智能模式") ?: "智能模式"
set(value) {
prefs.edit().putString("modeName", value).apply()
}
var loginemail: String
get() = prefs.getString("loginemail", "") ?: ""
set(value) {
prefs.edit().putString("loginemail", value).apply()
}
var loginToken: String
get() = prefs.getString("loginToken", "") ?: ""
set(value) {
prefs.edit().putString("loginToken", value).apply()
}
var loginauthData: String
get() = prefs.getString("loginauthData", "") ?: ""
set(value) {
prefs.edit().putString("loginauthData", value).apply()
}
var isLoginin: Boolean
get() = prefs.getBoolean("isLoginin", false) ?: false
set(value) {
prefs.edit().putBoolean("isLoginin", value).apply()
}
var baseURL: String
get() = prefs.getString("baseURL", "") ?: ""
set(value) {
prefs.edit().putString("baseURL", value).apply()
}
// Save data to prefserences
fun saveConfigToPreferences( configResponse: ConfigResponse) {
val editor = prefs.edit()
// Store each field individually
editor.putString("baseURL", configResponse.baseURL)
editor.putString("baseDYURL", configResponse.baseDYURL)
editor.putString("mainregisterURL", configResponse.mainregisterURL)
editor.putString("paymentURL", configResponse.paymentURL)
editor.putString("telegramurl", configResponse.telegramurl)
editor.putString("kefuurl", configResponse.kefuurl)
editor.putString("websiteURL", configResponse.websiteURL)
editor.putString("crisptoken", configResponse.crisptoken)
editor.putString("banners", configResponse.banners.joinToString(","))
// Apply changes
editor.apply()
}
// Retrieve data from SharedPreferences
fun getConfigFromPreferences(context: Context): ConfigResponse? {
// Retrieve each field individually
val baseURL = prefs.getString("baseURL", null) ?: ""
val baseDYURL = prefs.getString("baseDYURL", null) ?: ""
val mainregisterURL = prefs.getString("mainregisterURL", null) ?: ""
val paymentURL = prefs.getString("paymentURL", null) ?: ""
val telegramurl = prefs.getString("telegramurl", null) ?: ""
val kefuurl = prefs.getString("kefuurl", null) ?: ""
val websiteURL = prefs.getString("websiteURL", null) ?: ""
val crisptoken = prefs.getString("crisptoken", null) ?: ""
val bannersString = prefs.getString("banners", null) ?: ""
// If any field is null, return null (you can add your own null-check handling logic)
// Convert the banners string back into a List
val banners = bannersString.split(",").map { it.trim() } ?: emptyList()
return ConfigResponse(
baseURL = baseURL,
baseDYURL = baseDYURL,
mainregisterURL = mainregisterURL,
paymentURL = paymentURL,
telegramurl = telegramurl,
kefuurl = kefuurl,
websiteURL = websiteURL,
crisptoken = crisptoken,
banners = banners, message = "", code = 1
)
}
}
//自动通知监听
class PreferenceLiveData(private val context: Context,) : LiveData<String>() {
private var pref: SharedPreferences? = null
private val key: String = "selectnodeName"
@@ -0,0 +1,130 @@
package com.github.kr328.clash.design
import android.view.View
import android.content.Context
import android.content.res.ColorStateList
import android.graphics.Color
import android.graphics.RenderEffect
import android.graphics.Shader
import android.os.Build
import com.github.kr328.clash.core.bridge.Bridge
import com.github.kr328.clash.design.MainDesign.Request
import com.github.kr328.clash.design.databinding.ActivityProfileBinding
import com.github.kr328.clash.design.databinding.DesignProfilesBinding
import com.github.kr328.clash.design.network.APIGlobalObject
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.bindAppBarElevation
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.resolveThemedColor
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.network.ConfigResponse
import com.github.kr328.clash.network.SubscribeData
import com.github.kr328.clash.network.SubscribeResponse
import com.github.kr328.clash.service.model.Profile
import com.google.gson.Gson
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
class ProfileDesign (context: Context) : Design<ProfileDesign.Request>(context) {
enum class Request {
OpenBuyPlan,
OpenMyOrders,
OpenMyBlance,
OpenMyInvites,
OpenCustomView,
OpenMyGongdan,
OpenLogout,
OpenGSettings,
OpenCustomViewIPtest,
OpenCustomViewSpeed
}
private var subData: SubscribeData? = null
private val binding = ActivityProfileBinding
.inflate(context.layoutInflater, context.root, false)
override val root: View
get() = binding.root
init {
binding.self = this
binding.activityBarLayout.applyFrom(context)
// binding.viewAccountinfo.setBackgroundColor(Color.parseColor("#FFFFFF")) // Semi-transparent white color
// binding.viewAccountinfo2.setBackgroundColor(Color.parseColor("#FFFFFF")) // Semi-transparent white color
// binding.viewAccountinfo3.setBackgroundColor(Color.parseColor("#FFFFFF")) // Semi-transparent white color
// binding.viewAccountinfo4.setBackgroundColor(Color.parseColor("#FFFFFF")) // Semi-transparent white color
}
fun request(request: Request) {
requests.trySend(request)
}
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
fun queryVersion(version: String){
binding.textVersion.text = version
}
suspend fun requestdataDisible() {
if ( APIGlobalObject.subData == null){
val gson = Gson()
val cached_userSubscritedata = gson.fromJson(PreferenceManager.cached_userSubscritedata, SubscribeResponse::class.java)
APIGlobalObject.subData = cached_userSubscritedata.data
}
binding.accountEmail = PreferenceManager.loginemail
if ((APIGlobalObject.subData?.plan?.id ?:0) > 0){
binding.accountPlanname = APIGlobalObject.subData?.plan?.name ?: ""
if ( APIGlobalObject.subData?.expired_at == null){
binding.accountPlantime = "该订阅长期有效"
}else{
binding.accountPlantime = "到期时间:${ formatTimestamp((APIGlobalObject.subData?.expired_at ?: 0) * 1000L)}"
}
val total = APIGlobalObject.subData?.plan?.transfer_enable ?: 0
val upmb = (APIGlobalObject.subData?.d ?: 0.00).toDouble().div(1024).div(1024).div(1024)
val downmb = (APIGlobalObject.subData?.u ?: 0.00).toDouble().div(1024).div(1024).div(1024)
val usd = upmb + downmb
binding.accountPlanuseinfo = "已用 ${String.format("%.2f", usd)}GB/总计 ${total}GB"
if (total>0 && usd>0) {
binding.accountProgressValue = (usd /total.toDouble() * 100).toInt()
if(usd > total){
binding.useedprogressBar.progressTintList = ColorStateList.valueOf(
// context.resolveThemedColor(R.attr.colorOnPrimary)
Color.parseColor("#ce665e")
)
}else{
}
}else{
binding.accountProgressValue = 0
}
binding.accountBlance = "${ APIGlobalObject.subData?.transfer_enable }"
}else{
binding.accountPlanname = "未订阅任何套餐"
binding.accountPlantime = "已过期"
binding.accountPlanuseinfo = "已用 0GB/总计 0GB"
}
}
}
@@ -2,13 +2,17 @@ package com.github.kr328.clash.design
import android.content.Context
import android.content.res.ColorStateList
import android.graphics.Color
import android.view.View
import android.widget.Toast
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import androidx.viewpager2.widget.ViewPager2
import com.github.kr328.clash.core.model.Proxy
import com.github.kr328.clash.core.model.TunnelState
import com.github.kr328.clash.design.adapter.ProxyAdapter
import com.github.kr328.clash.design.adapter.ProxyPageAdapter
import com.github.kr328.clash.design.adapter.ServerListAdapter
import com.github.kr328.clash.design.component.ProxyMenu
import com.github.kr328.clash.design.component.ProxyViewConfig
import com.github.kr328.clash.design.databinding.DesignProxyBinding
@@ -18,8 +22,11 @@ import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.resolveThemedColor
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.design.view.CustomDividerItemDecoration
import com.google.android.material.tabs.TabLayoutMediator
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
class ProxyDesign(
@@ -44,11 +51,22 @@ class ProxyDesign(
private var config = ProxyViewConfig(context, uiStore.proxyLine)
private val menu: ProxyMenu by lazy {
ProxyMenu(context, binding.menuView, overrideMode, uiStore, requests) {
config.proxyLine = uiStore.proxyLine
}
}
override val root: View = binding.root
private lateinit var recyclerView: RecyclerView
private lateinit var adapter: ServerListAdapter
var urlTesting: Boolean = false
/*
private val adapter: ProxyPageAdapter
get() = binding.pagesView.adapter!! as ProxyPageAdapter
@@ -61,7 +79,6 @@ class ProxyDesign(
adapter.states[binding.pagesView.currentItem].urlTesting = value
}
override val root: View = binding.root
suspend fun updateGroup(
position: Int,
@@ -82,10 +99,26 @@ class ProxyDesign(
adapter.requestRedrawVisible()
}
}
*/
suspend fun showModeSwitchTips() {
suspend fun updateGroup(
position: Int,
proxies: List<Proxy>,
selectable: Boolean,
parent: ProxyState,
links: Map<String, ProxyState>
) {
adapter.updateAdapter(position, proxies, selectable, parent, links)
adapter.urlTesting = false
updateUrlTestButtonStatus()
}
suspend fun requestRedrawVisible() {
withContext(Dispatchers.Main) {
Toast.makeText(context, R.string.mode_switch_tips, Toast.LENGTH_LONG).show()
adapter.requestRedrawVisible()
}
}
@@ -98,12 +131,56 @@ class ProxyDesign(
menu.show()
}
if (groupNames.isEmpty() ) {
binding.emptyView.visibility = View.VISIBLE
binding.urlTestView.visibility = View.GONE
//binding.pagesView.visibility = View.GONE
binding.urlTestFloatView.visibility = View.GONE
}else{
binding.urlTestView.visibility = View.VISIBLE
binding.urlTestProgressView.visibility = View.GONE
binding.urlTestFloatView.supportImageTintList = ColorStateList.valueOf(
context.resolveThemedColor(R.attr.colorOnPrimary)
)
// 初始化 RecyclerView
recyclerView =binding.recyclerView
recyclerView.layoutManager = LinearLayoutManager(context)
adapter = ServerListAdapter( surface,
config){ name ->
requests.trySend(Request.Select(0, name))
}
recyclerView.adapter = adapter
binding.baseSwipeRefreshLayout.setOnRefreshListener {
CoroutineScope(Dispatchers.IO).launch {
withContext(Dispatchers.Main) {
binding.baseSwipeRefreshLayout.isRefreshing = true
}
requests.trySend(Request.Reload(0))
}
}
// 设置自定义分割线
val customDivider = CustomDividerItemDecoration(1, Color.LTGRAY) // 4px高的灰色分割线
recyclerView.addItemDecoration(customDivider)
// val firstObj = groupNames.first()
// val newgroupNames = listOf(firstObj)
// println(groupNames)
}
/*
if (groupNames.isEmpty() ) {
binding.emptyView.visibility = View.VISIBLE
binding.urlTestView.visibility = View.GONE
binding.tabLayoutView.visibility = View.GONE
binding.elevationView.visibility = View.GONE
/// binding.tabLayoutView.visibility = View.GONE
// binding.elevationView.visibility = View.GONE
binding.pagesView.visibility = View.GONE
binding.urlTestFloatView.visibility = View.GONE
} else {
@@ -111,6 +188,9 @@ class ProxyDesign(
context.resolveThemedColor(R.attr.colorOnPrimary)
)
val firstObj = groupNames.first()
val newgroupNames = listOf(firstObj)
binding.pagesView.apply {
adapter = ProxyPageAdapter(
surface,
@@ -118,7 +198,6 @@ class ProxyDesign(
List(groupNames.size) { index ->
ProxyAdapter(config) { name ->
requests.trySend(Request.Select(index, name))
}
}
) {
@@ -139,7 +218,6 @@ class ProxyDesign(
}
})
}
TabLayoutMediator(binding.tabLayoutView, binding.pagesView) { tab, index ->
tab.text = groupNames[index]
}.attach()
@@ -150,9 +228,10 @@ class ProxyDesign(
if (initialPosition > 0)
binding.pagesView.setCurrentItem(initialPosition, false)
}
}
} */
}
/*
fun requestUrlTesting() {
urlTesting = true
@@ -175,5 +254,28 @@ class ProxyDesign(
binding.urlTestView.visibility = View.VISIBLE
binding.urlTestProgressView.visibility = View.GONE
}
} */
fun requestUrlTesting() {
urlTesting = true
requests.trySend(Request.UrlTest(0))
updateUrlTestButtonStatus()
}
private fun updateUrlTestButtonStatus() {
if (urlTesting) {
binding.urlTestView.visibility = View.GONE
binding.urlTestProgressView.visibility = View.VISIBLE
} else {
binding.urlTestView.visibility = View.VISIBLE
binding.urlTestProgressView.visibility = View.GONE
}
}
fun finishreferesh() {
binding.baseSwipeRefreshLayout.isRefreshing = false
}
}
@@ -0,0 +1,286 @@
package com.github.kr328.clash.design
import android.content.Context
import android.content.Intent
import android.net.Uri
import android.view.View
import androidx.core.content.ContextCompat
import androidx.transition.Visibility
import com.github.kr328.clash.common.util.intent
import com.github.kr328.clash.design.ConfigOrderDesign.Request
import com.github.kr328.clash.design.databinding.ActivityPaymentItemBinding
import com.github.kr328.clash.design.databinding.ActivityPlanItemBinding
import com.github.kr328.clash.design.databinding.ActivitySubmitorderBinding
import com.github.kr328.clash.design.network.APIGlobalObject
import com.github.kr328.clash.design.ui.ToastDuration
import com.github.kr328.clash.design.util.applyFrom
import com.github.kr328.clash.design.util.layoutInflater
import com.github.kr328.clash.design.util.root
import com.github.kr328.clash.design.util.showCustomDialog
import com.github.kr328.clash.network.ApiClient
import com.github.kr328.clash.network.ApiService
import com.github.kr328.clash.network.CheckoutrderRequest
import com.github.kr328.clash.network.PaymentData
import com.github.kr328.clash.network.PublicResponse
import com.github.kr328.clash.network.QueryOrderData
import com.github.kr328.clash.network.QueryOrderRequest
import com.github.kr328.clash.network.SaveOrderRequest
import com.github.kr328.clash.network.SubmitOrderResponse
import com.github.kr328.clash.network.safeApiRequestCall
import com.github.kr328.clash.utity.LoadingDialog
import com.google.gson.Gson
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
class SubmitOrderViewDesign (context: Context) : Design<SubmitOrderViewDesign.Request>(context) {
enum class Request {
SubmitPay,
}
private var currentChoose: PaymentData? = null
private var tradeNo: String = ""
private val binding = ActivitySubmitorderBinding
.inflate(context.layoutInflater, context.root, false)
override val root: View
get() = binding.root
fun request(request: Request) {
if (request == Request.SubmitPay) {
//提交订单
LoadingDialog.show(context, "正在结账中...")
CoroutineScope(Dispatchers.IO).launch {
val apiService = ApiClient.retrofit.create(ApiService::class.java)
safeApiRequestCall { apiService.checkoutOrder(PreferenceManager.loginauthData, CheckoutrderRequest(tradeNo,currentChoose?.id ?: 0 ))}.let {
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
if (it != null && it.isSuccessful){
if (it.body()?.data != null){
val url = it.body()?.data ?: ""
if (url.length > 3){
try {
withContext(Dispatchers.Main) {
val intent = Intent(Intent.ACTION_VIEW)
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setData(Uri.parse(url))
context.startActivity(intent)
//弹出支付框
context.showCustomDialog(
title = "温馨提示",
message = "完成支付后若未到账,请重启一下客户端即可同步订阅套餐时长。",
positiveButtonText = "确定",
negativeButtonText = "取消",
onPositiveClick = {
fetchTradeInfo(tradeNo)
launch {
withContext(Dispatchers.Main) {
}
}
},
onNegativeClick = {
// 执行取消操作
}
)
}
} catch (e: Exception) {
println("当前手机未安装浏览器")
}
}
}
println(it.body())
}else{
val errorinfo = (it?.errorBody()?.string())
if (errorinfo != null){
//解析错错误信息
val gson = Gson()
val submitResponse = gson.fromJson(errorinfo, PublicResponse::class.java)
if (submitResponse?.message != null){
withContext(Dispatchers.Main) {
showToast("结算请求失败:${submitResponse.message}", ToastDuration.Long)
}
}
}else{
withContext(Dispatchers.Main) {
showToast("结算失败:请求数据失败", ToastDuration.Long)
}
}
}
}
}
}
}
init {
binding.self = this
binding.activityBarLayout.applyFrom(context)
}
fun fetchTradeInfo(trade_no: String?){
tradeNo = trade_no ?: ""
LoadingDialog.show(context, "请求订单数据...")
CoroutineScope(Dispatchers.IO).launch {
val apiService = ApiClient.retrofit.create(ApiService::class.java)
safeApiRequestCall { apiService.getOrderdetail(PreferenceManager.loginauthData,trade_no?: "")}.let {
if(it != null && it.isSuccessful){
if (it.body()?.data != null){
withContext(Dispatchers.Main) {
fillData(it.body()?.data)
LoadingDialog.hide()
// 清空 binding.container 的所有子视图
binding.container.removeAllViews()
}
var selectedIndex = 0
//继续获取支付方式
safeApiRequestCall { apiService.getPaymentList(PreferenceManager.loginauthData)}.let {
if(it != null && it.isSuccessful){
println("${it.body()}")
withContext(Dispatchers.Main) {
it.body().let {
it?.data.let {
if (it != null) {
for (i in it.indices) {
// 设置点击事件和单选逻辑
val frameLayout =
ActivityPaymentItemBinding.inflate(
context.layoutInflater,
context.root,
false
)
val item = it[i]
frameLayout.typeTextView.text = item.name
frameLayout.amountTextView.text = "手续费:${item.handling_fee_percent ?: "0.00"}%"
frameLayout.planitemFrameLayout.setOnClickListener {
selectedIndex = i
currentChoose = item
for (j in 0 until binding.container.childCount) {
val child =
binding.container.getChildAt(j)
println("selectedIndex: ${selectedIndex} ${child.background} ")
child.background =
ContextCompat.getDrawable(
context,
if (j == selectedIndex) R.drawable.card_border_selected else R.drawable.card_border
)
}
}
binding.container.addView(frameLayout.root)
if (i == 0){
//默认选中第一个
currentChoose = it[0]
//设置手续费显示:
//binding.configorderPlanFeeAmount = currentChoose.handling_fee_percent
frameLayout.planitemFrameLayout.background = ContextCompat.getDrawable(
context, R.drawable.card_border_selected
)
}
}
}
}
}
}
}
}
}
}else{
val errorinfo = (it?.errorBody()?.string())
if (errorinfo != null){
//解析错错误信息
val gson = Gson()
val submitResponse = gson.fromJson(errorinfo, PublicResponse::class.java)
if (submitResponse?.message != null){
withContext(Dispatchers.Main) {
showToast("订单请求失败:${submitResponse.message}", ToastDuration.Long)
}
}
}else{
withContext(Dispatchers.Main) {
showToast("下单失败:请求数据失败", ToastDuration.Long)
}
}
}
withContext(Dispatchers.Main) {
LoadingDialog.hide()
}
}
}
}
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
private fun fillData(data: QueryOrderData?) {
data.let {
binding.configorderPlanname = "商品名称:${data?.plan?.name}"
binding.configorderTradeno = "订单号:${data?.trade_no}"
binding.configorderPlanname2 = data?.plan?.name
val amount = (data?.total_amount?.toDouble() ?: 0.0)/100
binding.configorderPlanamount = "¥ ${amount}0"
binding.configorderPlantype = "类型/周期:${data?.periodZh}"
binding.configorderPlantransfer = "商品流量:${data?.plan?.transfer_enable} GB"
binding.configorderTimer = "创建时间:${ formatTimestamp((data?.created_at ?: 0) * 1000L)}"
binding.orderDetailsStatus.text = data?.statusZh
if (data?.status == 0){
binding.confirmPaymentButton.visibility = View.VISIBLE
}else{
binding.confirmPaymentButton.visibility = View.GONE
}
}
}
}
@@ -0,0 +1,46 @@
package com.github.kr328.clash.design.adapter
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import androidx.recyclerview.widget.RecyclerView
import com.bumptech.glide.Glide
import com.bumptech.glide.load.resource.bitmap.CircleCrop
import com.bumptech.glide.load.resource.bitmap.RoundedCorners
import com.bumptech.glide.request.RequestOptions
import com.github.kr328.clash.design.R
class ImageSliderImagesAdapter(private val imageUrls: List<String>,
private val onItemClick: (Int) -> Unit // 接收点击事件
) :
RecyclerView.Adapter<ImageSliderImagesAdapter.ImageSliderViewHolder>() {
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ImageSliderViewHolder {
val view = LayoutInflater.from(parent.context)
.inflate(R.layout.item_image_slider, parent, false)
return ImageSliderViewHolder(view)
}
override fun onBindViewHolder(holder: ImageSliderViewHolder, position: Int) {
val imageUrl = imageUrls[position]
Glide.with(holder.imageView.context)
.load(imageUrl) // 网络图片的 URL
.placeholder(R.drawable.placeholder) // 占位图
.error(R.drawable.placeholder) // 加载失败时的图片
.into(holder.imageView)
// 设置点击事件
// holder.imageView.apply { RequestOptions().transform(RoundedCorners(30)) }// 圆角处理
holder.imageView.setOnClickListener {
onItemClick(position) // 传递当前图片的 URL 或其他数据
}
}
override fun getItemCount(): Int = imageUrls.size
class ImageSliderViewHolder(view: View) : RecyclerView.ViewHolder(view) {
val imageView: ImageView = view.findViewById(R.id.imageView)
}
}
@@ -0,0 +1,91 @@
package com.github.kr328.clash.design.adapter
import android.annotation.SuppressLint
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.HorizontalScrollView
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.design.R
import com.github.kr328.clash.network.OrderData
import com.github.kr328.clash.network.PlanData
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
class OrdersDataAdapter(private val onItemClick: (plan: OrderData) -> Unit ) : RecyclerView.Adapter<OrdersDataAdapterViewHolder>() {
private val subscriptions = mutableListOf<OrderData>()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): OrdersDataAdapterViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.activity_item_subscription, parent, false)
return OrdersDataAdapterViewHolder(view)
}
override fun onBindViewHolder(holder: OrdersDataAdapterViewHolder, position: Int) {
val subscription = subscriptions[position]
holder.bind(subscription)
holder.itemView.setOnClickListener {
onItemClick(subscription) // 将点击的 position 传递给回调函数
}
}
override fun getItemCount(): Int {
return subscriptions.size
}
@SuppressLint("NotifyDataSetChanged")
fun setData(newData: List<OrderData>) {
subscriptions.clear()
subscriptions.addAll(newData)
notifyDataSetChanged()
}
@SuppressLint("NotifyDataSetChanged")
fun addData(newData: List<OrderData>) {
subscriptions.addAll(newData)
notifyDataSetChanged()
}
}
class OrdersDataAdapterViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
private val planName: TextView = itemView.findViewById(R.id.subscriptionName)
private val planDescription: TextView = itemView.findViewById(R.id.subscriptionDescription)
private val plantime: TextView = itemView.findViewById(R.id.subscriptionTime)
private val subscriptionAmount: TextView = itemView.findViewById(R.id.subscriptionAmount)
private val subscriptionStatus: TextView = itemView.findViewById(R.id.subscriptionStatus)
private val groups_Scrollview: HorizontalScrollView = itemView.findViewById(R.id.groups_Scrollview)
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
fun bind(data: OrderData) {
// 绑定数据
planName.text = data.plan?.name + "(" + data.periodZh + ")"
planDescription.text = "${data.plan?.transfer_enable ?: 0}GB"
plantime.text = formatTimestamp((data.created_at ?: 0 ) * 1000L)
subscriptionStatus.text = data.statusZh
val formattedAmount = data.total_amount?.div(100)
subscriptionAmount.text = " ¥${formattedAmount}"
groups_Scrollview.visibility = View.GONE
//// 如果需要加载图片,可以使用图像加载库,如 Glide 或 Picasso
// Glide.with(itemView.context)
// .load(subscription.planImageUrl)
// .into(planImage)
}
}
@@ -0,0 +1,140 @@
package com.github.kr328.clash.design.adapter
import android.annotation.SuppressLint
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.RelativeLayout
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.design.R
import com.github.kr328.clash.network.PlanData
class PlanDataAdapter( private val onItemClick: (plan: PlanData) -> Unit ) : RecyclerView.Adapter<SubscriptionViewHolder>() {
private val subscriptions = mutableListOf<PlanData>()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): SubscriptionViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.activity_item_subscription, parent, false)
return SubscriptionViewHolder(view)
}
override fun onBindViewHolder(holder: SubscriptionViewHolder, position: Int) {
val subscription = subscriptions[position]
holder.bind(subscription)
holder.itemView.setOnClickListener {
onItemClick(subscription) // 将点击的 position 传递给回调函数
}
}
override fun getItemCount(): Int {
return subscriptions.size
}
@SuppressLint("NotifyDataSetChanged")
fun setData(newData: List<PlanData>) {
subscriptions.clear()
subscriptions.addAll(newData)
notifyDataSetChanged()
}
@SuppressLint("NotifyDataSetChanged")
fun addData(newData: List<PlanData>) {
subscriptions.addAll(newData)
notifyDataSetChanged()
}
}
class SubscriptionViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
private val planName: TextView = itemView.findViewById(R.id.subscriptionName)
private val planPrice: TextView = itemView.findViewById(R.id.subscriptionTime)
private val planDescription: TextView = itemView.findViewById(R.id.subscriptionDescription)
private val grouponemonth: RelativeLayout = itemView.findViewById(R.id.grouponemohtthtest)
private val groupquitytthtest: RelativeLayout = itemView.findViewById(R.id.groupquitytthtest)
private val grouphelfyear: RelativeLayout = itemView.findViewById(R.id.grouphelfyear)
private val grouponeyear: RelativeLayout = itemView.findViewById(R.id.grouponeyear)
private val onemohtthtest: TextView = itemView.findViewById(R.id.onemohtthtest)
private val onequietythtest: TextView = itemView.findViewById(R.id.onequietythtest)
private val helfyearthtest: TextView = itemView.findViewById(R.id.helfyearthtest)
private val oneyearthtest: TextView = itemView.findViewById(R.id.oneyearthtest)
private val onemonthprice: TextView = itemView.findViewById(R.id.onemonthprice)
private val onequietyprice: TextView = itemView.findViewById(R.id.onequietyprice)
private val helfyearprice: TextView = itemView.findViewById(R.id.helfyearprice)
private val oneyearprice: TextView = itemView.findViewById(R.id.oneyearprice)
private val onemonthpriceday: TextView = itemView.findViewById(R.id.onemonthpriceday)
private val onequietypriceday: TextView = itemView.findViewById(R.id.onequietypriceday)
private val helfyearpriceday: TextView = itemView.findViewById(R.id.helfyearpriceday)
private val oneyearpriceday: TextView = itemView.findViewById(R.id.oneyearpriceday)
fun bind(data: PlanData) {
// 绑定数据
planName.text = data.name
if (data.onetime_price == null) {
planPrice.text = "流量:${data.transfer_enable ?: 0}GB"
planDescription.text = "¥${(data.month_price ?: 0.00).toDouble()/100}"
val month_price = (data.month_price ?: 0.00).toDouble()/100
val quarter_price = (data.quarter_price ?: 0.00).toDouble()/100
val half_year_price = (data.half_year_price ?: 0.00).toDouble()/100
val year_price = (data.year_price ?: 0.00).toDouble()/100
if (month_price > 0.0) {
onemonthprice.text = "${month_price}"
onemonthpriceday.text = "${String.format ("%.2f",month_price/30)}元/天"
}else{
grouponemonth.visibility = View.GONE
}
if (quarter_price > 0.0) {
onequietyprice.text = "${quarter_price}"
onequietypriceday.text = "${String.format ("%.2f",quarter_price/90)}元/天"
}else{
groupquitytthtest.visibility = View.GONE
}
if (half_year_price > 0.0) {
helfyearprice.text = "${half_year_price}"
helfyearpriceday.text = "${String.format ("%.2f",half_year_price/180)}元/天"
}else{
grouphelfyear.visibility = View.GONE
}
if (year_price > 0.0) {
oneyearprice.text = "${year_price}"
oneyearpriceday.text = "${String.format ("%.2f",year_price/360)}元/天"
}else{
grouponeyear.visibility = View.GONE
}
}else{
onemohtthtest.text = "一次性"
planPrice.text = "流量:${data.transfer_enable ?: 0}GB 一次性"
planDescription.text = "¥${(data.onetime_price ?: 0.00).toDouble()/100}"
val month_price = (data.onetime_price ?: 0.00).toDouble()/100
val transform = data.transfer_enable ?: 0
onemonthprice.text = "${month_price}"
onemonthpriceday.text = "${String.format ("%.2f",month_price/transform)}元/GB"
groupquitytthtest.visibility = View.GONE
grouphelfyear.visibility = View.GONE
grouponeyear.visibility = View.GONE
}
//// 如果需要加载图片,可以使用图像加载库,如 Glide 或 Picasso
// Glide.with(itemView.context)
// .load(subscription.planImageUrl)
// .into(planImage)
}
}
@@ -2,6 +2,7 @@ package com.github.kr328.clash.design.adapter
import android.content.Context
import android.graphics.Color
import android.graphics.drawable.Drawable
import android.util.Log
import com.github.kr328.clash.design.component.ProxyView
import com.github.kr328.clash.design.component.ProxyViewConfig
@@ -49,6 +50,8 @@ import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import androidx.core.content.ContextCompat
import androidx.core.graphics.drawable.DrawableCompat
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.design.R
import com.github.kr328.clash.design.component.ProxyViewState
@@ -66,42 +69,86 @@ class ProxyAdapter(
val proxyLatency: TextView = view.findViewById(R.id.proxy_latency)
val proxySubName:TextView = view.findViewById(R.id.proxy_subtitle)
val selectnodeselectImage:ImageView = view.findViewById(R.id.nodeselectImage)
val viewsss:View = view.findViewById(R.id.view_iteminfo)
var drawableStartGreen: Drawable? = null // 用于存储 drawableStart 图标
var drawableStartGray: Drawable? = null // 用于存储 drawableStart 图标
}
var selectable: Boolean = false
var states: List<ProxyViewState> = emptyList()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ProxyAdapter.Holder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.proxy_view_item, parent, false)
return Holder(view)
val drawableStartGreen = ContextCompat.getDrawable(parent.context, R.drawable.check_24px)?.let {
// 包装 drawable 以支持 Tint
val wrappedDrawable = DrawableCompat.wrap(it)
// 设置 Tint 颜色
DrawableCompat.setTint(wrappedDrawable, Color.parseColor("#2a9843"))
wrappedDrawable
}
val drawableStartGray = ContextCompat.getDrawable(parent.context, R.drawable.ic_baseline_info)?.let {
// 包装 drawable 以支持 Tint
val wrappedDrawable = DrawableCompat.wrap(it)
// 设置 Tint 颜色
DrawableCompat.setTint(wrappedDrawable, Color.parseColor("#6b6d6a"))
wrappedDrawable
}
val view = LayoutInflater.from(parent.context).inflate(R.layout.proxy_view_item, parent, false)
return Holder(view).apply {
// 设置 drawable 到 ViewHolder 的属性,供后续使用
this.drawableStartGreen = drawableStartGreen
this.drawableStartGray = drawableStartGray
}
}
var selectableView: Holder? = null
var selectableData: ProxyViewState? = null
var state: ProxyViewState? = null
override fun onBindViewHolder(holder: Holder, position: Int) {
val current = states[position]
holder.apply {
holder.apply {
state = current
viewsss.setBackgroundColor(Color.parseColor("#10FFFFFF")) // Semi-transparent white color
proxyName.text = current.proxy.name
proxySubName.text = current.proxy.subtitle
//proxySubName.setColorFilter(ContextCompat.getColor(context, R.color.yourColor), PorterDuff.Mode.SRC_IN)
if (current.proxy.delay > 10000){
proxyLatency.text = "超时"
proxyLatency.setTextColor(Color.parseColor("#e73f31"))
proxySubName.text = "超时" //current.proxy.subtitle
proxySubName.setTextColor(Color.parseColor("#6b6d6a"))
proxySubName.setCompoundDrawablesWithIntrinsicBounds(drawableStartGray, null, null, null)
proxyLatency.setTextColor(Color.parseColor("#6b6d6a"))
proxyLatency.text = "..."
}else if (current.proxy.delay > 500 && current.proxy.delay < 10000){
proxyLatency.text = "${current.proxy.delay}ms"
proxyLatency.setTextColor(Color.YELLOW)
proxySubName.text = "在线可用" //current.proxy.subtitle
proxySubName.setTextColor(Color.parseColor("#2a9843"))
proxySubName.setCompoundDrawablesWithIntrinsicBounds(drawableStartGreen, null, null, null)
}else if (current.proxy.delay < 500 && current.proxy.delay > 300){
proxyLatency.text = "${current.proxy.delay}ms"
proxyLatency.setTextColor(Color.parseColor("#fab610"))
proxySubName.text = "在线可用" //current.proxy.subtitle
proxySubName.setTextColor(Color.parseColor("#2a9843"))
proxySubName.setCompoundDrawablesWithIntrinsicBounds(drawableStartGreen, null, null, null)
}else{
proxyLatency.text = "${current.proxy.delay}ms"
proxyLatency.setTextColor(Color.parseColor("#2a9843"))
proxySubName.text = "在线可用" //current.proxy.subtitle
proxySubName.setTextColor(Color.parseColor("#2a9843"))
proxySubName.setCompoundDrawablesWithIntrinsicBounds(drawableStartGreen, null, null, null)
}
// 示例:延迟时间
// current.update(true)
vpnnodemainid.setOnClickListener {
if (selectableView != null) {
@@ -0,0 +1,278 @@
package com.github.kr328.clash.design.adapter
import android.annotation.SuppressLint
import android.graphics.Color
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.core.model.Proxy
import com.github.kr328.clash.design.R
import com.github.kr328.clash.design.adapter.ProxyAdapter.Holder
import com.github.kr328.clash.design.component.ProxyViewConfig
import com.github.kr328.clash.design.component.ProxyViewState
import com.github.kr328.clash.design.model.ProxyPageState
import com.github.kr328.clash.design.model.ProxyState
import com.github.kr328.clash.design.ui.Surface
import com.github.kr328.clash.design.util.firstVisibleView
import com.github.kr328.clash.design.util.invalidateChildren
import com.github.kr328.clash.design.util.swapDataSet
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.withContext
import okhttp3.internal.filterList
//private val stateChanged: (Int) -> Unit,
class ServerListAdapter(private val surface: Surface,
private val config: ProxyViewConfig,
private val clicked: (String) -> Unit,) :
RecyclerView.Adapter<ServerListAdapter.ViewHolder>() {
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
val flag: ImageView = view.findViewById(R.id.country_flag)
val vpnnodemainid:View = view.findViewById(R.id.vpnnodemainid)
val serverInfo: TextView = view.findViewById(R.id.server_info)
val serverLimit: TextView = view.findViewById(R.id.server_limit)
val signal: ImageView = view.findViewById(R.id.signal_strength)
val latency: TextView = view.findViewById(R.id.latency)
}
companion object {
private const val HEADER_VIEW_TYPE = 0
private const val ITEM_VIEW_TYPE = 1
}
override fun getItemViewType(position: Int): Int {
// 判断是否是第一行,如果是,返回 HEADER_VIEW_TYPE,否则返回 ITEM_VIEW_TYPE
return if (position == 0) HEADER_VIEW_TYPE else ITEM_VIEW_TYPE
}
var urlTesting: Boolean = true
var servers: List<ProxyViewState> = emptyList()
var selectable: Boolean = false
suspend fun updateAdapter(
position: Int,
proxies: List<Proxy>,
selectable: Boolean,
parent: ProxyState,
links: Map<String, ProxyState>
) {
var newlistProxy = mutableListOf<Proxy>()
// newlistProxy.add(Proxy("智能连接","智能连接","自动切换速度最快的节点",Proxy.Type.Unknown,0))
newlistProxy.addAll(proxies)
val states = withContext(Dispatchers.Default) {
newlistProxy.map {
val link = if (it.type.group) links[it.name] else null
ProxyViewState(config, it, parent, link)
}
}
/* states.forEach {
println(">>>>> ${it.proxy.title} ${it.proxy.subtitle} ${it.proxy.type.name} ${it.proxy.delay}")
}*/
val newstates = states.filterNot {
it.proxy.title.uppercase() == "DIRECT"
|| it.proxy.title.uppercase() == "REJECT"
|| it.proxy.subtitle == "Selector"
|| it.proxy.title.contains("流量")
|| it.proxy.title.contains("故障转移")
|| it.proxy.title.contains("套餐到期")
|| it.proxy.title.contains("节点异常")
|| it.proxy.title.contains("续费")
|| it.proxy.title.contains("充值")
|| it.proxy.title.contains("官网")
|| it.proxy.title.contains("剩余")
}
this.swapDataSet(this::servers, newstates, false)
withContext(Dispatchers.Main) {
requestRedrawVisible()
}
}
@SuppressLint("NotifyDataSetChanged")
fun requestRedrawVisible() {
notifyDataSetChanged()
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
val view = LayoutInflater.from(parent.context)
.inflate(R.layout.server_item_layout, parent, false)
return ViewHolder(view)
}
val countryMap = mapOf(
"美国" to "us",
"United States" to "us",
"中国" to "zh",
"China" to "zh",
"香港" to "hk",
"Hong" to "hk",
"日本" to "jp",
"Japan" to "jp",
"新加坡" to "sg",
"Singapore" to "sg",
"越南" to "vn",
"Vietnam" to "vn",
"马来西亚" to "my",
"Malaysia" to "my",
"泰国" to "th",
"Thailand" to "th",
"韩国" to "kr",
"South Korea" to "kr",
"巴西" to "br",
"Brazil" to "br",
"印度" to "in",
"India" to "in",
"智利" to "cl",
"Chile" to "cl",
"迪拜" to "ae",
"United Arab" to "ae",
"德国" to "de",
"Germany" to "de",
"法国" to "fr",
"France" to "fr",
"英国" to "gb",
"Great Britain" to "gb",
"意大利" to "it",
"Italy" to "it",
"澳大利亚" to "au",
"Australia" to "au",
"土耳其" to "tr",
"台湾" to "tw",
"Turkey" to "tr"
// 添加其他国家映射
)
fun getCountryCodeFromLog(logLine: String): String? {
// 遍历 countryMap,找到匹配的国家名称
for ((countryName, countryCode) in countryMap) {
if (logLine.contains(countryName)) {
return countryCode
}
}
return "" // 没有匹配的国家名称
}
var state: ProxyViewState? = null
var selectableView: ViewHolder? = null
var selectableData: ProxyViewState? = null
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
val server = servers[position]
server.update(true)
holder.apply {
state = server
}
if (server.selected){
selectableView = holder
selectableData = server
}
val flog_name = getCountryCodeFromLog(server.title) ?: ""
val resourceId = holder.itemView.context.resources.getIdentifier("country_flag_"+flog_name, "drawable", holder.itemView.context.packageName)
// 检查资源 ID 是否有效
if (resourceId != 0) {
holder.flag.setImageResource(resourceId)
}else{
val aiicon = holder.itemView.context.resources.getIdentifier("icon_ai", "drawable", holder.itemView.context.packageName)
holder.flag.setImageResource(aiicon)
}
holder.serverInfo.text = server.title
holder.serverInfo.text = server.title
if (server.title == "自动选择"){
holder.serverLimit.text = "智能匹配最优路线"
}else{
holder.serverLimit.text = server.subtitle
}
//holder.signal.setImageResource(server.signalRes)
if ( server.proxy.delay > 5000){
val resourcelow = holder.itemView.context.resources.getIdentifier("ic_signal_no", "drawable", holder.itemView.context.packageName)
holder.signal.setImageResource(resourcelow)
}else if (server.proxy.delay >= 1000 && server.proxy.delay < 5000){
val resourcelow = holder.itemView.context.resources.getIdentifier("ic_signal_low", "drawable", holder.itemView.context.packageName)
holder.signal.setImageResource(resourcelow)
}else if (server.proxy.delay > 500 && server.proxy.delay < 1000){
val resourcelow = holder.itemView.context.resources.getIdentifier("ic_signal_two", "drawable", holder.itemView.context.packageName)
holder.signal.setImageResource(resourcelow)
}else if (server.proxy.delay < 500 && server.proxy.delay > 300){
val resourcelow = holder.itemView.context.resources.getIdentifier("ic_signal_three", "drawable", holder.itemView.context.packageName)
holder.signal.setImageResource(resourcelow)
}else{
val resourcelow = holder.itemView.context.resources.getIdentifier("ic_signal_center", "drawable", holder.itemView.context.packageName)
holder.signal.setImageResource(resourcelow)
}
if (server.delayText.length > 0){
holder.latency.text = " ${server.delayText}ms"
}else{
holder.latency.text = " 0ms"
}
if (server.selected)
{
holder.serverInfo.setTextColor(Color.parseColor("#2a9843"))
}else{
holder.serverInfo.setTextColor(Color.parseColor("#888888"))
}
val current = server
holder.vpnnodemainid.setOnClickListener {
// selectable = true
// server.selected = true
if (selectableView != null) {
if(selectableView == holder){
//do nothing
clicked(current.proxy.name)
}else{
//之前的设置为未选择
selectableData?.selected = false
current.selected = true
selectableView = holder
selectableData = current
clicked(current.proxy.name)
current.update(true)
}
}else
{
current.selected = true
selectableView = holder
selectableData = current
clicked(current.proxy.name)
current.update(true)
}
}
}
override fun getItemCount(): Int = servers.size
}
@@ -0,0 +1,114 @@
package com.github.kr328.clash.design.adapter
import android.annotation.SuppressLint
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Button
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.design.R
import com.github.kr328.clash.network.TicketMessage
import com.github.kr328.clash.network.TicketsData
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
class TicketDetailAdapter( private val onItemClick: (plan: TicketMessage) -> Unit ) : RecyclerView.Adapter<RecyclerView.ViewHolder >() {
companion object {
const val VIEW_TYPE_LEFT = 0
const val VIEW_TYPE_RIGHT = 1
}
private val subscriptions = mutableListOf<TicketMessage>()
override fun getItemViewType(position: Int): Int {
return if (subscriptions[position].is_me ?: false) VIEW_TYPE_RIGHT else VIEW_TYPE_LEFT
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
return if (viewType == VIEW_TYPE_RIGHT) {
val view = LayoutInflater.from(parent.context).inflate(R.layout.activity_item_message_right, parent, false)
RightTicketDetailViewHolder(view)
} else {
val view = LayoutInflater.from(parent.context).inflate(R.layout.activity_item_message_left, parent, false)
LeftTicketDetailViewHolder(view)
}
// val viewlef = LayoutInflater.from(parent.context).inflate(R.layout.activity_item_message_left, parent, false)
// return TicketDetailViewHolder(viewlef)
}
override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
val message = subscriptions[position]
if (holder is RightTicketDetailViewHolder) {
holder.bind(message)
} else if (holder is LeftTicketDetailViewHolder) {
holder.bind(message)
}
}
// override fun onBindViewHolder(holder: TicketDetailViewHolder, position: Int) {
// val subscription = subscriptions[position]
// holder.bind(subscription)
// holder.itemView.setOnClickListener {
// onItemClick(subscription) // 将点击的 position 传递给回调函数
// }
// }
override fun getItemCount(): Int {
return subscriptions.size
}
@SuppressLint("NotifyDataSetChanged")
fun setData(newData: List<TicketMessage>) {
subscriptions.clear()
subscriptions.addAll(newData)
notifyDataSetChanged()
}
@SuppressLint("NotifyDataSetChanged")
fun addData(newData: List<TicketMessage>) {
subscriptions.addAll(newData)
notifyDataSetChanged()
}
}
class LeftTicketDetailViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
private val titleTextView: TextView = itemView.findViewById(R.id.messageTextView)
private val creationTimeTextView: TextView = itemView.findViewById(R.id.timeTextView)
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp*1000L) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
fun bind(data: TicketMessage) {
// 绑定数据
titleTextView.text = "${data.message ?: ""}"
creationTimeTextView.text = "${formatTimestamp(data.created_at ?: 0)}"
}
}
class RightTicketDetailViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
private val titleTextView: TextView = itemView.findViewById(R.id.messageTextView)
private val creationTimeTextView: TextView = itemView.findViewById(R.id.timeTextView)
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp*1000L) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
fun bind(data: TicketMessage) {
// 绑定数据
titleTextView.text = "${data.message ?: ""}"
creationTimeTextView.text = "${formatTimestamp(data.created_at ?: 0)}"
}
}
@@ -0,0 +1,98 @@
package com.github.kr328.clash.design.adapter
import android.annotation.SuppressLint
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Button
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.github.kr328.clash.common.util.intent
import com.github.kr328.clash.design.R
import com.github.kr328.clash.design.util.showCustomDialog
import com.github.kr328.clash.network.TicketsData
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
//class
class TicketsDataAdapter( private val onItemClick: (plan: TicketsData) -> Unit , private val onCloseItemClick: (plan: TicketsData) -> Unit ) : RecyclerView.Adapter<TicketViewHolder>() {
private val subscriptions = mutableListOf<TicketsData>()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): TicketViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.activity_gondan_item, parent, false)
return TicketViewHolder(view)
}
override fun onBindViewHolder(holder: TicketViewHolder, position: Int) {
val subscription = subscriptions[position]
holder.bind(subscription)
holder.itemView.setOnClickListener {
onItemClick(subscription) // 将点击的 position 传递给回调函数
}
holder.viewButton.setOnClickListener {
onItemClick(subscription) // 将点击的 position 传递给回调函数
}
holder.closeButton.setOnClickListener {
onCloseItemClick(subscription)
}
}
override fun getItemCount(): Int {
return subscriptions.size
}
@SuppressLint("NotifyDataSetChanged")
fun setData(newData: List<TicketsData>) {
subscriptions.clear()
subscriptions.addAll(newData)
notifyDataSetChanged()
}
@SuppressLint("NotifyDataSetChanged")
fun addData(newData: List<TicketsData>) {
subscriptions.addAll(newData)
notifyDataSetChanged()
}
}
class TicketViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
private val titleTextView: TextView = itemView.findViewById(R.id.titleTextView)
private val creationTimeTextView: TextView = itemView.findViewById(R.id.creationTimeTextView)
private val statusTextView: TextView = itemView.findViewById(R.id.statusTextView)
val closeButton: Button = itemView.findViewById(R.id.closeButton)
val viewButton: TextView = itemView.findViewById(R.id.viewButton)
fun formatTimestamp(timestamp: Long): String {
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()) // 定义格式
val date = Date(timestamp*1000L) // 将时间戳转为 Date 对象
return dateFormat.format(date) // 格式化为字符串
}
fun bind(data: TicketsData) {
// 绑定数据
titleTextView.text = "#${data.id ?: 0} - ${data.subject ?: ""}"
creationTimeTextView.text = "创建时间: ${formatTimestamp(data.created_at ?: 0)}"
if (data.status == 0){
statusTextView.text = "当前状态: 待回复"
closeButton.visibility = View.VISIBLE
}else{
statusTextView.text = "当前状态: 已关闭"
closeButton.visibility = View.GONE
}
//// 如果需要加载图片,可以使用图像加载库,如 Glide 或 Picasso
// Glide.with(itemView.context)
// .load(subscription.planImageUrl)
// .into(planImage)
}
}
@@ -0,0 +1,7 @@
package com.github.kr328.clash.design.network
import com.github.kr328.clash.network.SubscribeData
object APIGlobalObject {
var subData: SubscribeData? = null
}
@@ -0,0 +1,52 @@
package com.github.kr328.clash.network
import android.content.Context
import com.github.kr328.clash.design.PreferenceManager
import com.google.gson.GsonBuilder
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import java.util.concurrent.TimeUnit
object ApiClient {
private val okHttpClient = OkHttpClient.Builder()
.addInterceptor(HttpLoggingInterceptor().apply {
level = HttpLoggingInterceptor.Level.BODY
})
.build()
// Lazy initialization of configURL
private val configURL: String by lazy {
PreferenceManager.baseURL
}
// Retrofit initialization
val retrofit: Retrofit by lazy {
Retrofit.Builder()
.baseUrl(configURL)
.addConverterFactory(GsonConverterFactory.create())
.client(okHttpClient)
.build()
}
}
object ApiClientConfig {
private const val ConfigURL = "https://api.xxxx.com/api/" // BASE 请求配置文件地址 见说明文档
//const val ConfigNodeURL = "https://api.xxxx.com/api/parseyamlclash.php?target=clashmeta&url=" //通过香港服务器转接一次Clash转化的订阅地址
const val ConfigNodeURL = ""
private val okHttpClient = OkHttpClient.Builder()
.addInterceptor(HttpLoggingInterceptor().apply {
level = HttpLoggingInterceptor.Level.BODY
})
.build()
val retrofit: Retrofit = Retrofit.Builder()
.baseUrl(ConfigURL)
.addConverterFactory(GsonConverterFactory.create())
.client(okHttpClient)
.build()
}
@@ -0,0 +1,476 @@
package com.github.kr328.clash.network
import android.content.Context
import com.google.gson.annotations.SerializedName
import kotlinx.coroutines.time.withTimeout
import kotlinx.coroutines.withTimeout
import okhttp3.RequestBody
import retrofit2.Response
import retrofit2.http.Body
import retrofit2.http.GET
import retrofit2.http.Header
import retrofit2.http.POST
import retrofit2.http.Query
import java.io.IOException
import java.io.Serializable
import java.util.concurrent.TimeoutException
/// 所有网络接口
interface ApiService {
@POST("config")
suspend fun getConfig(): Response<ConfigResponse>
@POST("passport/auth/login")
suspend fun loginUser(@Body request: LoginRequest): Response<LoginResponse>
@POST("passport/auth/register")
suspend fun registerUser(@Body request: LoginRequest): Response<LoginResponse>
@GET("user/info")
suspend fun getUserData(@Header("Authorization") auth_data: String): Response<UserInfoResponse>
@GET("user/getSubscribe")
suspend fun getSubscribe(@Header("Authorization") auth_data: String): Response<SubscribeResponse>
@GET("user/plan/fetch")
suspend fun getplans(@Header("Authorization") auth_data: String): Response<PlansResponse>
@GET("user/order/fetch")
suspend fun getOrders(@Header("Authorization") auth_data: String): Response<OrdersResponse>
@POST("user/order/save") //period=half_year_price&plan_id=2&coupon_code=
suspend fun saveOrder(@Header("Authorization") auth_data: String,@Body request: SaveOrderRequest): Response<SubmitOrderResponse>
@GET("user/order/detail") //period=half_year_price&plan_id=2&coupon_code=
suspend fun getOrderdetail(@Header("Authorization") auth_data: String, @Query("trade_no") trade_no: String): Response<QueryOrderResponse>
@GET("user/order/getPaymentMethod")
suspend fun getPaymentList(@Header("Authorization") auth_data: String): Response<PaymentResponse>
@POST("user/order/checkout")
suspend fun checkoutOrder(@Header("Authorization") auth_data: String,@Body request: CheckoutrderRequest): Response<PublicResponse>
@GET("user/invite/fetch")
suspend fun getinviteList(@Header("Authorization") auth_data: String) :Response<InviteResponse>
@GET("user/invite/save")
suspend fun saveinvite(@Header("Authorization") auth_data: String) :Response<SaveInviteCodeResponse>
@GET("user/ticket/fetch")
suspend fun getTickets(@Header("Authorization") auth_data: String): Response<TicketsResponse>
@GET("user/ticket/fetch")
suspend fun getTicketsByTID(@Header("Authorization") auth_data: String, @Query("id") ticketID: Int): Response<TicketDetailResponse>
@POST("user/ticket/close")
suspend fun closeTicket(@Header("Authorization") auth_data: String,@Body request: Map<String, Int>): Response<PublicResponse>
@POST("user/ticket/save")
suspend fun saveTicket(@Header("Authorization") auth_data: String,@Body request: MutableMap<String, String>): Response<PublicResponse>
@POST("user/ticket/reply")
suspend fun replyTicket(@Header("Authorization") auth_data: String,@Body request: MutableMap<String, String>): Response<PublicResponse>
}
data class SaveInviteCodeResponse(
val `data`: Any?,
val message: String?,
val status: String?
)
data class TicketDetailResponse(
val `data`: TicketDetailData?,
val message: String?,
val status: String?
)
data class TicketDetailData(
val created_at: Int?,
val id: Int?,
val level: Int?,
val message: List<TicketMessage>?,
val reply_status: Int?,
val status: Int?,
val subject: String?,
val updated_at: Int?,
val user_id: Int?
)
data class TicketMessage(
val created_at: Long?,
val id: Int?,
val is_me: Boolean?,
val message: String?,
val ticket_id: Int?,
val updated_at: Long?
)
data class TicketsResponse(
val `data`: List<TicketsData>?,
val message: String?,
val status: String?
)
data class TicketsData(
val created_at: Long?,
val id: Int?,
val level: Int?,
val message: Any?,
val reply_status: Int?,
val status: Int?,
val subject: String?,
val updated_at: Long?,
val user_id: Int?
)
suspend fun <T> safeApiCall(
apiCall: suspend () -> Response<T>
): T? {
return try {
val response = withTimeout(13000) {
apiCall()
}
if (response.isSuccessful) {
response.body()
} else {
println("请求失败,错误码: ${response.code()}")
null
}
} catch (e: TimeoutException) {
println("请求超时,请检查网络连接")
null
} catch (e: IOException) {
println("网络错误,请检查网络连接")
null
} catch (e: Exception) {
println("未知错误: ${e.message}")
null
}
}
suspend fun <T> safeApiRequestCall(
apiCall: suspend () -> Response<T>
): Response<T>? {
return try {
val response = withTimeout(13000) {
apiCall()
}
if (response.isSuccessful) {
response
} else {
println("请求失败,错误码: ${response.code()}")
response
}
} catch (e: TimeoutException) {
println("请求超时,请检查网络连接: ${e.message}")
null
} catch (e: IOException) {
println("网络错误,请检查网络连接: ${e.message}")
null
} catch (e: Exception) {
println("未知错误: ${e.message}")
null
}
}
data class InviteResponse(
val `data`: InviteData?,
val error: Any?,
val message: String?,
val status: String?
)
data class InviteData(
val codes: List<InviteCode>?,
val stat: List<Int>?
)
data class InviteCode(
val code: String?,
val created_at: Int?,
val pv: Int?,
val status: Int?,
val updated_at: Int?,
val user_id: Int?
)
data class CheckoutrderRequest(
val trade_no: String,
val method: Int
)
data class PaymentResponse(
val `data`: List<PaymentData>?,
val message: String?,
val status: String?
)
data class PaymentData(
val handling_fee_fixed: Any?,
val handling_fee_percent: String?,
val icon: Any?,
val id: Int?,
val name: String?,
val payment: String?
)
//
data class QueryOrderRequest(
val trade_no: String
)
data class QueryOrderResponse(
val `data`: QueryOrderData?,
val message: String?,
val status: String?
)
data class QueryOrderData(
val actual_commission_balance: Any?,
val balance_amount: Any?,
val callback_no: Any?,
val commission_balance: Int?,
val commission_status: Int?,
val coupon_code: Any?,
val coupon_id: Any?,
val created_at: Int?,
val discount_amount: Any?,
val handling_amount: Int?,
val id: Int?,
val invite_user_id: Any?,
val paid_at: Any?,
val payment_id: Int?,
val period: String?,
val plan: PlanData?,
val plan_id: Int?,
val refund_amount: Any?,
val site_id: Any?,
val status: Int?,
val surplus_amount: Any?,
val surplus_order_ids: Any?,
val tixianstatus: Any?,
val total_amount: Int?,
val trade_no: String?,
val try_out_plan_id: Int?,
val type: Int?,
val updated_at: Int?,
val user_id: Int?
){
// status 对应的中文描述
val statusZh: String
get() = when (status) {
0 -> "待支付"
1 -> "已支付"
2 -> "已取消"
3 -> "已支付"
else -> "未知"
}
// period 对应的中文描述
val periodZh: String
get() = when (period) {
"month_price" -> "月付"
"quarter_price" -> "季付"
"half_year_price" -> "半年付"
"year_price" -> "年付"
"two_year_price" -> "两年付"
"three_year_price" -> "三年付"
"onetime_price" -> "一次性付"
else -> ""
}
}
data class SaveOrderRequest(
// period=half_year_price&plan_id=2&coupon_code=
val period: String,
val plan_id: Int,
val coupon_code: String?
)
data class PublicResponse(
val data: String?,
val message: String?,
val status: String?
)
data class SubmitOrderResponse(
val data: String?,
val message: String?,
val status: String?
)
data class ConfigResponse (
val baseURL: String,
val baseDYURL: String,
val mainregisterURL: String,
val paymentURL: String,
val telegramurl: String,
val kefuurl: String,
val websiteURL: String,
val crisptoken: String,
val banners: List<String>,
val message: String,
val code: Int
)
data class RegisterRequest(val username: String, val password: String)
data class RegisterResponse(val success: Boolean, val message: String)
data class LoginRequest(val email: String, val password: String ,val captchaData: String = "")
data class LoginResponse(val message: String?, val data: LoginData?)
data class LoginData (
val token: String?,
val isAdmin: Int?,
val auth_data: String?
)
data class SubscribeResponse (
val data: SubscribeData
)
data class SubscribeData (
@SerializedName("plan_id") val plan_id : Int?,
@SerializedName("token") val token : String,
@SerializedName("expired_at") val expired_at : Long?,
@SerializedName("u") val u : Long,
@SerializedName("d") val d : Long,
@SerializedName("transfer_enable") val transfer_enable : Long?,
@SerializedName("email") val email : String,
@SerializedName("uuid") val uuid : String,
@SerializedName("plan") val plan : PlanData?,
@SerializedName("subscribe_url") val subscribe_url : String,
@SerializedName("reset_day") val reset_day : String?
)
data class PlanData (
@SerializedName("id") val id : Int,
@SerializedName("group_id") val group_id : Int?,
@SerializedName("transfer_enable") val transfer_enable : Long?,
@SerializedName("name") val name : String,
@SerializedName("speed_limit") val speed_limit : Long?,
@SerializedName("show") val show : Int?,
@SerializedName("sort") val sort : Int?,
@SerializedName("renew") val renew : Int?,
@SerializedName("content") val content : String,
@SerializedName("month_price") val month_price : Long?,
@SerializedName("quarter_price") val quarter_price : Long?,
@SerializedName("half_year_price") val half_year_price : Long?,
@SerializedName("year_price") val year_price : Long?,
@SerializedName("two_year_price") val two_year_price : Long?,
@SerializedName("three_year_price") val three_year_price : Long?,
@SerializedName("onetime_price") val onetime_price : Int?,
@SerializedName("reset_price") val reset_price : Long?,
@SerializedName("reset_traffic_method") val reset_traffic_method : String?,
@SerializedName("capacity_limit") val capacity_limit : Long?,
@SerializedName("created_at") val created_at : Long?,
@SerializedName("updated_at") val updated_at : Long?
) : Serializable // 添加 Serializable 接口
data class UserInfoResponse (
val data: UserInfoData
)
data class UserInfoData (
val email: String,
val transferEnable: Long?,
val lastLoginAt: Long,
val createdAt: Long?,
val banned: Long?,
val remindExpire: Long?,
val remindTraffic: Long?,
val expiredAt: Long?,
val balance: Long?,
val commissionBalance: Long?,
val uuid: String,
val avatarURL: String?
)
data class PlansResponse(
val data: List<PlanData>?,
val message: String?,
val status: String?
)
data class OrdersResponse(
val `data`: List<OrderData>?,
val message: String?,
val status: String?
)
data class OrderData(
val actual_commission_balance: Any?,
val balance_amount: Any?,
val callback_no: Any?,
val commission_balance: Int?,
val commission_status: Int?,
val coupon_code: Any?,
val coupon_id: Any?,
val created_at: Long?,
val discount_amount: Any?,
val handling_amount: Int?,
val invite_user_id: Any?,
val paid_at: Any?,
val payment_id: Int?,
val period: String?,
val plan: PlanData?,
val plan_id: Int?,
val refund_amount: Any?,
val site_id: Any?,
val status: Int?,
val surplus_amount: Any?,
val surplus_order_ids: Any?,
val tixianstatus: Any?,
val total_amount: Int?,
val trade_no: String?,
val type: Int?,
val updated_at: Long?
){
// status 对应的中文描述
val statusZh: String
get() = when (status) {
0 -> "待支付"
1 -> "已支付"
2 -> "已取消"
3 -> "已支付"
else -> "未知"
}
// period 对应的中文描述
val periodZh: String
get() = when (period) {
"month_price" -> "月付"
"quarter_price" -> "季付"
"half_year_price" -> "半年付"
"year_price" -> "年付"
"two_year_price" -> "两年付"
"three_year_price" -> "三年付"
"onetime_price" -> "一次性付"
else -> ""
}
}
@@ -0,0 +1,45 @@
package com.github.kr328.clash.design.util
import android.content.Context
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.view.LayoutInflater
import androidx.appcompat.app.AlertDialog
import com.github.kr328.clash.design.databinding.CustomDialogBinding
fun Context.showCustomDialog(
title: String,
message: String,
positiveButtonText: String = "确定",
negativeButtonText: String = "取消",
onPositiveClick: (() -> Unit)? = null,
onNegativeClick: (() -> Unit)? = null
) {
// 使用 ViewBinding 加载自定义布局
val binding = CustomDialogBinding.inflate(LayoutInflater.from(this))
// 设置标题和消息
binding.dialogTitle.text = title
binding.dialogMessage.text = message
binding.positiveButton.text = positiveButtonText
binding.negativeButton.text = negativeButtonText
// 创建 AlertDialog
val dialog = AlertDialog.Builder(this).setView(binding.root).create()
// 去除默认背景
dialog.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
// 设置按钮点击事件
binding.positiveButton.setOnClickListener {
onPositiveClick?.invoke()
dialog.dismiss()
}
binding.negativeButton.setOnClickListener {
onNegativeClick?.invoke()
dialog.dismiss()
}
// 显示对话框
dialog.show()
}
@@ -0,0 +1,38 @@
package com.github.kr328.clash.utity
import android.app.Activity
import android.content.Context
import android.view.LayoutInflater
import android.view.View
import android.widget.ProgressBar
import android.widget.TextView
import android.widget.Toast
import androidx.appcompat.app.AlertDialog
import com.github.kr328.clash.design.R
object LoadingDialog {
private var dialog: AlertDialog? = null
fun show(context: Context, message: String = "请稍等...") {
if (dialog == null) {
val inflater = LayoutInflater.from(context)
val view: View = inflater.inflate(R.layout.loading_dialog, null)
val progressBar: ProgressBar = view.findViewById(R.id.progressBar)
val messageTextView: TextView = view.findViewById(R.id.loadingMessage)
messageTextView.text = message
dialog = AlertDialog.Builder(context)
.setCancelable(false)
.setView(view)
.create()
dialog?.show()
}
}
fun hide() {
dialog?.dismiss()
dialog = null
}
}
@@ -6,7 +6,7 @@ import android.view.MotionEvent
import android.widget.FrameLayout
import androidx.annotation.AttrRes
import androidx.annotation.StyleRes
import com.github.kr328.clash.design.util.resolveThemedColor
import com.github.kr328.clash.design.R
class ActivityBarLayout @JvmOverloads constructor(
context: Context,
@@ -16,8 +16,9 @@ class ActivityBarLayout @JvmOverloads constructor(
) : FrameLayout(context, attributeSet, defStyleAttr, defStyleRes) {
init {
alpha = 0.96f
setBackgroundColor(context.resolveThemedColor(android.R.attr.windowBackground))
// setBackgroundColor(context.resolveThemedColor(android.R.attr.windowBackground))
//setBackgroundResource( color_navi)
setBackgroundResource(R.drawable.gradient_background_navi)
}
override fun dispatchTouchEvent(ev: MotionEvent?): Boolean {
@@ -15,11 +15,11 @@ class AppRecyclerView @JvmOverloads constructor(
isFocusable = false
}
override fun onDraw(c: Canvas?) {
override fun onDraw(c: Canvas) {
super.onDraw(c)
}
override fun dispatchDraw(canvas: Canvas?) {
override fun dispatchDraw(canvas: Canvas) {
super.dispatchDraw(canvas)
}
}
@@ -0,0 +1,57 @@
package com.github.kr328.clash.design.view
import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.view.View
class BottomArcGradientView @JvmOverloads constructor(
context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : View(context, attrs, defStyleAttr) {
private val paint = Paint(Paint.ANTI_ALIAS_FLAG)
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
// 获取视图的宽高
val width = width.toFloat()
val height = height.toFloat()
// 定义渐变的颜色
val gradientColors = intArrayOf(
// Color.parseColor("#2066b367"), // 起始颜色(橙色)
// Color.parseColor("#5066b367"), // 中间颜色(深橙色)
Color.parseColor("#66b367"), // 中间颜色(深橙色)
Color.parseColor("#66b367"), // 中间颜色(深橙色)
Color.parseColor("#66b367") // 结束颜色(红色)
)
// 创建渐变着色器
val shader = LinearGradient(
0f, height * 0.5f, // 渐变起点
0f, height, // 渐变终点
gradientColors,
null,
Shader.TileMode.CLAMP
)
val paint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
this.shader = shader
}
// 创建弧形路径
val path = Path()
path.moveTo(0f, height * 0.5f) // 起点(底部的70%位置)
path.quadTo(
width / 2f, height * 0.1f, // 控制点(中间凹陷位置)
width, height * 0.5f // 终点(右侧底部70%位置)
)
path.lineTo(width, height) // 连接到右下角
path.lineTo(0f, height) // 连接到左下角
path.close()
// 绘制路径
canvas.drawPath(path, paint)
}
}
@@ -0,0 +1,37 @@
package com.github.kr328.clash.design.view
import android.graphics.Canvas
import android.graphics.Paint
import android.graphics.Rect
import android.view.View
import androidx.recyclerview.widget.RecyclerView
class CustomDividerItemDecoration(
private val dividerHeight: Int,
private val dividerColor: Int
) : RecyclerView.ItemDecoration() {
private val paint = Paint().apply {
color = dividerColor
style = Paint.Style.FILL
}
override fun getItemOffsets(outRect: Rect, view: View, parent: RecyclerView, state: RecyclerView.State) {
// 为每个项目的底部设置偏移量,留出空间绘制分割线
outRect.bottom = dividerHeight
}
override fun onDraw(canvas: Canvas, parent: RecyclerView, state: RecyclerView.State) {
val left = parent.paddingLeft
val right = parent.width - parent.paddingRight
// 为每个子项绘制分割线
for (i in 0 until parent.childCount - 1) { // 不绘制最后一项的分割线
val child = parent.getChildAt(i)
val params = child.layoutParams as RecyclerView.LayoutParams
val top = child.bottom + params.bottomMargin
val bottom = top + dividerHeight
canvas.drawRect(left.toFloat(), top.toFloat(), right.toFloat(), bottom.toFloat(), paint)
}
}
}
@@ -0,0 +1,56 @@
package com.github.kr328.clash.design.view
import android.content.Context
import android.graphics.Canvas
import android.graphics.Paint
import android.util.AttributeSet
import android.view.View
/*
class DividerLineView @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : View(context, attrs, defStyleAttr) {
private val paint = Paint().apply {
color = 0xFFCCCCCC.toInt() // 设置颜色
strokeWidth = 2f // 设置线宽
}
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
// 绘制横线
canvas.drawLine(0f, height.toFloat(), width.toFloat(), height.toFloat(), paint)
}
}
*/
import androidx.annotation.StringRes
import com.github.kr328.clash.design.databinding.DesignDrivderlineBinding
import com.github.kr328.clash.design.databinding.PreferenceCategoryBinding
import com.github.kr328.clash.design.preference.Preference
import com.github.kr328.clash.design.preference.PreferenceScreen
import com.github.kr328.clash.design.preference.addElement
import com.github.kr328.clash.design.util.layoutInflater
fun PreferenceScreen.drividerline(
) {
val binding = DesignDrivderlineBinding
.inflate(context.layoutInflater, root, false)
addElement(object : Preference {
override val view: View
get() = binding.root
override var enabled: Boolean
get() = binding.root.isEnabled
set(value) {
binding.root.isEnabled = value
}
})
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

@@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="@android:color/darker_gray"
android:autoMirrored="true">
<path
android:fillColor="#616161"
android:pathData="M647,520L160,520L160,440L647,440L423,216L480,160L800,480L480,800L423,744L647,520Z"/>
</vector>
<!-- android:tint="?attr/colorControlNormal"-->
Binary file not shown.

After

Width:  |  Height:  |  Size: 872 B

@@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M204,642Q182,604 171,564Q160,524 160,482Q160,348 253,254Q346,160 480,160L487,160L423,96L479,40L639,200L479,360L423,304L487,240L480,240Q380,240 310,310.5Q240,381 240,482Q240,508 246,533Q252,558 264,582L204,642ZM481,920L321,760L481,600L537,656L473,720L480,720Q580,720 650,649.5Q720,579 720,478Q720,452 714,427Q708,402 696,378L756,318Q778,356 789,396Q800,436 800,478Q800,612 707,706Q614,800 480,800L473,800L537,864L481,920Z"/>
</vector>
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/background_selector.xml -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/colorPressed" android:state_pressed="true"/>
<item android:drawable="@color/colorFocused" android:state_focused="true"/>
<item android:drawable="@color/colorNormal"/>
</selector>
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/background_selector.xml -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/colorPressed" android:state_pressed="true"/>
<item android:drawable="@color/colorFocused" android:state_focused="true"/>
<!-- <item android:drawable="@color/colorNormal"/>-->
</selector>
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#33FFFFFF"/> <!-- White color with 20% opacity -->
<!-- Alternatively, for other colors with transparency, use ARGB format: #AARRGGBB -->
</shape>
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 按下时的背景 -->
<item android:state_pressed="true" android:drawable="@color/blue_gradient"/>
<!-- 默认背景透明 -->
<item android:drawable="@android:color/transparent"/>
</selector>
@@ -0,0 +1,8 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="@android:color/darker_gray"
/> <!-- 边框颜色 -->
<corners android:radius="6dp" />
</shape>
@@ -0,0 +1,5 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/white" />
<stroke android:width="2dp" android:color="#2e7afe" />
<corners android:radius="6dp" />
</shape>
@@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="16dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M382,720L154,492L211,435L382,606L749,239L806,296L382,720Z"/>
</vector>
@@ -0,0 +1,569 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#D0103A" />
<path
android:pathData="M0 0h348.2v512H0z"
android:fillColor="#FEDF00" />
<path
android:pathData="M0 0h163.8v512H0z"
android:fillColor="#0018A8" />
<path
android:pathData="M240.3 173.3c6.2 0 8.7 5.3 14.9 5.3 3.8 0 6 -1.2 9.3 -3.1 2.4 -1.3 3.8 -2 6.5 -2s4.4 0.8 5.8 3.1a9 9 0 0 1 1 5.4 32 32 0 0 1 -2.1 6.7c-0.5 1.2 -1 2 -1 3.3 0 3.3 4.4 4.4 7.4 4.5 0.7 0 6.3 0 9.7 -3.4 -1.9 0 -4 -1.5 -4 -3.4 0 -2 1.5 -3.5 3.5 -4.1 0.4 -0.1 1 0.2 1.4 0 0.5 -0.2 0.2 -0.8 0.7 -1.1 1 -0.8 1.6 -1.3 2.9 -1.3a3 3 0 0 1 2 0.6c0.3 0.2 0.5 0.6 0.9 0.6 1 0 1.4 -0.6 2.3 -0.6 0.7 0 1.2 0 1.8 0.4 0.6 0.3 0.6 1.2 1.2 1.2 0.3 0 1.9 -0.6 2.8 -0.6 1.7 0 2.7 0.6 3.8 2 0.3 0.3 0.5 1 0.8 1a5 5 0 0 1 3.9 2.4c0.2 0.3 0.5 1.1 0.9 1.3 0.4 0.1 0.7 0.1 1.3 0.5a4.8 4.8 0 0 1 2.3 3.9c0 0.5 -0.3 1.2 -0.4 1.7 -1.5 5.2 -5.1 7 -8.7 11.4 -1.6 2 -2.8 3.5 -2.8 6 0 0.6 0.8 1.7 1 2.2 -0.1 -1.2 0.4 -2.6 1.6 -2.7 1.7 0 3 1.2 3.2 2.8 0 0.4 0 1.1 -0.2 1.5 0.9 -0.6 2 -1 3.2 -1.1a9.9 9.9 0 0 1 1.5 0 13 13 0 0 1 7.4 3 16.9 16.9 0 0 1 5.9 13.4c-0.7 4.3 -0.3 11.9 -11 15 2 0.8 3.3 2.3 3.3 4.1 0 2 -1.5 3.8 -3.5 3.8a3.5 3.5 0 0 1 -2.8 -1.1c-2.2 2.2 -2.7 4.5 -2.7 7.7 0 1.9 0.4 3 1.2 4.7a9 9 0 0 0 3 4.2c0.8 -1.2 1.6 -2 3 -2 1.5 0 2.7 0.4 3.3 1.7 0.1 0.3 0 0.7 0.2 1 0.2 0.5 0.7 0.6 1 1.1 0.3 0.8 0 1.4 0.3 2.2 0.2 0.5 0.7 0.6 1 1 0.3 0.9 0.4 1.4 0.4 2.3 0 2.4 -2.2 4 -4.6 4 -0.8 0 -1.2 -0.2 -1.9 -0.1 1.4 1.3 2.4 2 3.5 3.6a14.1 14.1 0 0 1 2.3 8.2c0 3.6 -0.6 5.8 -2.2 9a16 16 0 0 1 -5.6 6.8 28 28 0 0 1 -12.8 5c-3.4 0.7 -5.3 1 -8.8 1.2l-11.3 0.6c-5.7 0.4 -9.7 1.2 -13.8 5.3 2 1.4 3.3 2.8 3.3 5.2 0 2.4 -1.5 4.2 -3.9 5 -0.5 0.1 -1 0 -1.4 0.2 -0.6 0.3 -0.6 1 -1.2 1.4a5 5 0 0 1 -3 0.8c-2.2 0 -3.6 -0.5 -5.2 -2 -1.7 1.4 -2.3 2.7 -4.3 3.9 -0.7 0.3 -1 0.8 -1.7 0.8 -1.2 0 -1.8 -0.7 -2.7 -1.4a18.4 18.4 0 0 1 -3.6 -3.3c-1.8 1.1 -2.9 2 -5 2a5.2 5.2 0 0 1 -3.1 -0.9c-0.6 -0.3 -0.7 -0.9 -1.3 -1.2 -0.6 -0.4 -1 -0.2 -1.7 -0.5 -2.4 -1 -4 -2.8 -4 -5.5 0 -2.3 1.5 -3.8 3.6 -4.7 -4 -4 -8 -4.7 -13.6 -5 -4.4 -0.4 -7 -0.4 -11.3 -0.7 -3.4 -0.2 -5.4 -0.6 -8.8 -1.1 -2.6 -0.4 -4.1 -0.6 -6.5 -1.7 -8.2 -3.8 -13.4 -9 -14.5 -18v-2c0 -4.7 1.8 -7.5 5 -10.8 -0.8 -0.2 -1.3 0 -2.2 -0.2 -2 -0.8 -3.5 -2.2 -3.5 -4.4 0 -0.8 0 -1.4 0.4 -2 0.3 -0.6 0.8 -0.7 1 -1.2 0.1 -0.8 0 -1.3 0.3 -2 0.2 -0.5 0.6 -0.5 0.8 -1 0.7 -1.5 1.6 -2.7 3.3 -2.7 1.4 0 2.3 0.8 3 2 1.4 -0.7 1.8 -1.7 2.6 -3 1.3 -2.2 1.8 -3.7 1.8 -6.2a11 11 0 0 0 -0.7 -4.4c-0.4 -1.2 -0.5 -2 -1.4 -3a3.5 3.5 0 0 1 -2.8 1.2c-2.3 0 -4 -2 -4 -4.3 0 -1.7 0.8 -3 2.4 -3.7 -1.3 -1 -2.4 -1.2 -3.7 -2 -2.1 -1.4 -2.9 -2.7 -4.2 -4.8 -1 -1.4 -1.2 -2.3 -1.6 -3.8a15 15 0 0 1 -0.9 -5v-1.3c0.6 -3.9 1.3 -6.4 3.8 -9.5a11 11 0 0 1 4.6 -3.9 11.6 11.6 0 0 1 6.5 -1.3c1 0.2 1.5 0.2 2.3 0.7 0.3 0.2 0.9 0.7 0.9 0.3l-0.2 -1c0 -1.7 1.2 -3.2 2.8 -3.2 1.2 0 1.7 1 2.3 2 0.4 -0.6 0.6 -1 0.6 -1.7 0 -2.8 -1.5 -4.2 -3.2 -6.3 -3.7 -4.7 -8.4 -6.9 -8.4 -12.8 0 -1.8 0.9 -3 2.4 -4 0.4 -0.2 1 0 1.5 -0.2 0.3 -0.3 0.3 -0.7 0.5 -1.1a4 4 0 0 1 1.3 -1.3c0.8 -0.8 1.6 -0.5 2.5 -1.2 0.5 -0.3 0.6 -0.7 1 -1.2 1 -1.2 2 -1.8 3.6 -1.8 0.8 0 1.3 0 2 0.3 0.3 0 0.8 0.5 0.9 0.4 0.1 -0.2 0.6 -0.7 1.1 -1 0.7 -0.3 1 -0.4 1.8 -0.4 0.9 0 1.4 0.5 2.3 0.5 0.4 0 0.4 -0.3 0.7 -0.5 0.8 -0.5 1.2 -0.8 2.2 -0.8 1 0 1.4 0.3 2.2 0.8 0.7 0.4 0.8 1 1.6 1.5l1.2 0.3c2 0.6 3.6 2 3.6 4.2 0 1.2 -0.2 2 -1.1 2.8 -0.7 0.6 -1.4 0.5 -2.3 0.8a13 13 0 0 0 9 2.8c3.5 0 7.6 -1.3 7.6 -4.7 0 -1.6 -0.9 -2.4 -1.5 -3.8a15 15 0 0 1 -1.7 -6.9c0 -2.2 0.2 -3.5 1.5 -5.3 1.3 -1.9 3 -2.3 5.2 -2.3"
android:fillColor="#C7B37F" />
<path
android:pathData="M217.9 191.2c0.2 0.9 0.9 1.6 2 2a3 3 0 0 0 3 -1.1c0.8 -1 0.7 -2.3 0.5 -3.3a3.8 3.8 0 0 0 -1.4 -1.8z"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineJoin="round" />
<path
android:pathData="M320.8 252.9c-1 -2.3 -3.4 -1.3 -3.6 0 -0.3 3 2.3 3.8 4.1 3.3 0.9 -0.2 1.6 -0.8 2 -1.5 0.5 -0.8 0.6 -2 0.3 -3a4 4 0 0 0 -0.7 -1.3 4 4 0 0 0 -1 -1c-0.7 -0.4 -1.5 -0.5 -2.7 -0.5 -4.4 0 -8.3 5.3 -9.6 10.8a23.6 23.6 0 0 0 -0.2 9.6 18 18 0 0 0 4.7 9 20 20 0 0 0 7.9 4.7c1.1 0.3 2.2 0.3 3.1 0 2.7 -0.5 3.9 -3 2.6 -5.5 -1.1 -2 -4.3 -3.2 -5.8 -0.6a2.6 2.6 0 0 0 -0.4 1.3c0 0.7 0.3 1.5 0.8 1.8 1.2 0.8 3 0.6 3 -1.5"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M307 283.2a9 9 0 0 1 5.3 -3c2.4 -0.2 4.5 0.5 6.6 1.6a14.9 14.9 0 0 1 8.6 13.6c0 3 -0.8 6 -1.5 7.6 -0.7 1.3 -2.5 7.1 -12.3 11.2a67.4 67.4 0 0 1 -20.5 3c-8.4 0.4 -16 0.7 -20.5 6.2"
android:strokeColor="#703D29"
android:strokeWidth="0.7" />
<path
android:pathData="M309.1 292.6c-0.2 -0.9 0 -1.7 0.7 -2.7 1 -1.3 2.9 -1.7 4.7 -0.7 0.6 0.3 1.3 0.8 2 1.7l1 1.2 0.8 2c2 5.6 -1.2 11.7 -5.2 14.1 -3.2 2 -7 2.8 -11.5 3.3l-5.3 0.3h-7.6a56.3 56.3 0 0 0 -5.8 0l-6 0.6 -4.4 0.8 -1.5 0.4 -1 0.3a31.9 31.9 0 0 0 -7.7 3.3c-0.7 0.4 -1.5 0.9 -2 1.4l-1.1 1c-1.5 1.4 -3.1 3 -3.5 5.3v1.3c0 1.4 1.1 3.4 4.3 4m4.4 -136.1c0.6 1.2 1 2 0.6 3.1 -0.4 1.4 -1.4 2.3 -2.8 2.3 -3.2 0 -5 -3.8 -3.6 -6.2 2.5 -4.3 7.4 -1.9 12 0.2 -0.3 -1 -0.7 -1.4 -0.6 -2.8 0 -3.3 2.6 -4.8 3.6 -8 0.6 -1.8 0.8 -3.4 -0.6 -4.7 -1.1 -1.2 -2.5 -1.1 -4 -0.5 -3.1 1.2 -6.8 4.6 -13.3 4.7 -6.5 0 -10.3 -3.5 -13.4 -4.7 -1.5 -0.6 -2.9 -0.7 -4 0.5 -1.4 1.3 -1.2 3 -0.6 4.8 1 3 3.5 4.6 3.6 8 0 1.3 -0.3 1.6 -0.6 2.7 4.6 -2 9.7 -4.7 12 -0.2 1.3 2.5 -0.4 6.2 -3.6 6.2 -1.4 0 -2.4 -1 -2.8 -2.3 -0.4 -1.1 0 -2.2 0.6 -3.1"
android:strokeColor="#703D29"
android:strokeWidth="0.6" />
<path
android:pathData="M251.7 191.9c1.2 1 2 2.1 1.9 4 -0.1 2 -0.7 2.5 -2.2 3.6m1.9 -3c-0.1 1.2 -0.6 2 -1.8 2.5"
android:strokeColor="#703D29"
android:strokeWidth="0.6"
android:strokeLineCap="round" />
<path
android:pathData="M221.4 186.6l0.5 0.4 0.6 0.7 0.4 0.8 0.2 0.6v1.5l-0.2 0.7 -0.4 0.5 -0.4 0.5 -0.7 0.3 -0.9 0.2 -0.7 0.2 -0.8 -0.4 -0.8 -0.5 -0.4 -0.7 -0.3 -0.8v-0.3z"
android:fillColor="#C7B37F" />
<path
android:pathData="M220.2 189.7c-0.3 -1.3 -1.8 -1.6 -2.4 -0.8 -1 1.2 -0.3 3.2 1.6 3.8a3 3 0 0 0 3 -1.1c0.8 -1 0.8 -2.3 0.5 -3.2 -0.2 -0.7 -0.7 -1.2 -1.4 -1.7 -2.2 -1.7 -5.7 -1.3 -6.8 1.5 -1.5 3.6 1.7 6.3 4.7 8.3 3.8 2.5 8 3 11.3 3 7.3 -0.1 12.9 -3.6 16.5 -5.6 0.8 -0.5 1.7 -0.4 2.1 0.2 0.5 0.6 0.5 1.5 -0.2 2.2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M198.4 289l-1.6 0.5 -1.7 1.3 -0.7 1 -0.9 1.6 -0.4 1.2 -0.3 1.5 -0.2 1m15.2 -8v1.4l-0.3 1 -0.7 1.7 -1.1 1.5 -1.2 1 -1 0.4 -1.2 0.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M255.8 327.3c-0.3 1.3 -1.5 2.8 -4.3 3.4h-0.5"
android:strokeColor="#703D29"
android:strokeWidth="0.6" />
<path
android:pathData="M323.4 285a14.6 14.6 0 0 1 4.5 10.8c-0.1 2.8 -0.8 6 -1.6 7.5 -0.7 1.3 -2.5 7.2 -12.3 11.2a67.7 67.7 0 0 1 -20.5 3.1c-8.2 0.4 -15.8 0.7 -20.3 6"
android:strokeColor="#703D29"
android:strokeWidth="0.7" />
<path
android:pathData="M310 290.3c0.6 -0.9 2.8 -1.9 4.6 -1a5 5 0 0 1 2 1.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M321.3 283l1.1 0.4a5.6 5.6 0 0 0 3.2 0c2.2 -0.6 3.7 -2.7 2.5 -5.5a4.5 4.5 0 0 0 -1.4 -1.7"
android:strokeColor="#703D29"
android:strokeWidth="0.7" />
<path
android:pathData="M192.2 223.8c-1.5 1 -2.6 1.2 -3.8 2.5a22.5 22.5 0 0 0 -2.1 5.5m36.9 -41.4c0 1.4 -1 2.3 -2.4 2.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M317.7 217.6c3.8 0 14.8 2.9 14.9 15.8 0 12.8 -8 14.9 -11.1 15.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M318.7 217.6c6.5 -0.3 13.2 4.5 13.5 16.5 0.3 9.4 -6.4 13.6 -9.6 14.5m-7.6 14.1l0.2 -1.2 0.4 -2 0.6 -1.7 0.7 -1.3 0.8 -1m6.3 -2.7l-0.1 1.2 -0.4 0.9 -0.5 0.8 -0.7 0.5 -1 0.3h-1.5m-11.4 -42.3l0.3 -1.3 0.6 -1.3 0.7 -1.2 1.4 -1.7 1 -1.2 1.7 -1.7 1.5 -1.5 1 -1.1 1.2 -1.5 1 -1.7 0.7 -1.3 0.4 -1.8 0.1 -2.1 -0.2 -0.7M310 296.7l1.3 -0.3 1 -0.5 0.5 -0.5 0.4 -0.7 0.2 -1v-0.6M187 283.3l0.9 0.1h1.2l1.3 -0.5m4 -29.3l-0.2 1.2 -0.2 0.4 -0.4 0.5 -0.5 0.4 -0.6 0.3 -0.8 0.1h-0.5m8 -12.5l-0.3 1.8 -0.4 0.7 -0.7 1 -1 0.7 -0.9 0.5 -1.8 0.4m12.2 -31.8l-0.3 1 -0.5 0.8 -0.6 0.9 -0.8 0.7 -1 0.5 -0.8 0.2h-0.6m0.3 -5v0.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M203.4 243.3a5.5 5.5 0 0 1 -1.6 1M322.2 280l0.4 0.2c1 0.7 3.3 -0.2 2.7 -2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M318.2 255.7c0.8 1 2.4 1.3 3.6 1 0.9 -0.2 1.5 -0.8 2 -1.6 0.4 -0.8 0.6 -1.9 0.3 -3a4 4 0 0 0 -0.7 -1.3 5.4 5.4 0 0 0 -1.1 -1.1l-0.3 -0.2m5.2 27.2a3.1 3.1 0 0 0 0 -0.6c0 -0.9 -0.4 -1.7 -1 -2.3 -0.2 -0.2 -0.4 -0.5 -0.7 -0.6m0.4 0.3c0 -1.5 -1.3 -2.5 -2.8 -2.8m-3.3 2.3c-0.4 -0.3 -0.8 -0.5 -1 -0.9a12.6 12.6 0 0 1 -3.5 -8.5c0 -3.3 1.3 -6.7 2.8 -8M273 323.3l1.5 -1.3 1 -0.8 1.8 -1.1 1.8 -0.9 1.2 -0.3 2.5 -0.5 2.9 -0.5M262 333.4a14.1 14.1 0 0 1 -6.1 5 14.1 14.1 0 0 1 -6.1 -5"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M251.5 330.1a8 8 0 0 1 -1.7 3.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M251.8 328.4l-0.4 1.8m-1.8 3.3l-0.8 0.8 -1.4 0.7 -1.5 0.5m-4.5 -142.2c0.2 -0.6 0.4 -1.1 0.3 -2.1 0 -3.4 -2.5 -4.9 -3.5 -8 -0.6 -1.8 -0.9 -3.4 0.5 -4.8 1.2 -1.1 2.5 -1 4 -0.5 3.2 1.2 6.9 4.7 13.4 4.8 -6.5 -0.1 -10.2 -3.6 -13.3 -4.8 -1.6 -0.6 -3 -0.8 -4.2 0.4 -1.4 1.3 -1 3 -0.4 5 1 3 3.3 4.5 3.4 7.9 0 1 -0.2 1.5 -0.4 2m14.9 -10.7c6.4 -0.4 11.9 -4.7 13.7 -5 1.6 -0.3 2.4 -0.2 3.6 0.9 -1.2 -1.1 -2.5 -1 -4 -0.5 -3 1.2 -6.8 4.7 -13.3 4.8m63.7 90.3a12.4 12.4 0 0 1 -5 -9.9c0 -3.3 1.3 -6.7 2.9 -8m-56 78a14.1 14.1 0 0 1 -6 5 14 14 0 0 1 -6.2 -5"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M245.3 195l1.9 -1c0.8 -0.6 1.9 -0.5 2.3 0 0.5 0.7 0.6 1.7 -0.1 2.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M235.8 199.4c4.4 -0.9 8 -2.9 10.6 -4.4m25.9 131.4l0.6 0.7 0.2 0.7c0.2 1.2 -0.6 2 -1.5 2.1a2.7 2.7 0 0 1 -2.8 -1.6m-33.3 -129.1c4.4 -1 8 -2.9 10.7 -4.4m78 85.5c-0.7 0.3 -1.2 0.3 -2.2 -0.2l-1.5 -0.8c-2 -1.1 -4.5 -3 -6.8 -7.2a15 15 0 0 1 -1.3 -3.6c-0.2 -0.9 -0.4 -1.8 -0.4 -2.7a20.5 20.5 0 0 1 0.5 -5 16.2 16.2 0 0 1 3.2 -7.2c1 -1.3 1.7 -2 3.5 -2m-115 -31.5a5.7 5.7 0 0 1 2.1 4.6c0 2.5 -2 6.5 -7.2 8 -2 0.5 -3.8 0 -5 -0.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M205 228.5c1 0.6 1.3 1.4 1.3 2.6 0 0.8 -0.5 2 -1.5 3a9.9 9.9 0 0 1 -7 3.2 8.2 8.2 0 0 1 -4.8 -1.4 7.3 7.3 0 0 1 -3 -4.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M205 233.8c1 1 1.3 2.2 1.3 3.7 0 2.2 -0.9 3.9 -3 5.7a5 5 0 0 1 -1.5 1m103.6 -17.6v2.9m-0.3 -3.6v4m0.3 -12.6v5.2m-0.3 -6.3v7m-1.5 65.7c-1 2 -1.8 3 -3.3 4.5a15.7 15.7 0 0 1 -4.7 3.3 19.7 19.7 0 0 1 -5.2 1.7c-2.1 0.5 -3.4 0.6 -5.5 0.7 -2 0 -3.1 0 -5.1 -0.2 -2.1 0 -3.3 -0.4 -5.4 -0.6 -1.7 -0.1 -2.7 -0.3 -4.5 -0.3a22.8 22.8 0 0 0 -8.7 1.5c-2.2 0.9 -4.6 2.4 -5.1 3 -0.5 -0.6 -3 -2.1 -5.1 -3a22.8 22.8 0 0 0 -8.8 -1.5c-1.7 0 -2.7 0.2 -4.4 0.3 -2.1 0.2 -3.3 0.5 -5.4 0.6a37.3 37.3 0 0 1 -10.6 -0.5c-2.1 -0.5 -3.3 -0.8 -5.3 -1.8a15.7 15.7 0 0 1 -5 -3.7m33.6 42.7l1.5 -0.2m24.2 -1.9l1.4 -0.1 1.4 -0.6 1 -0.5 1.3 -1.6 0.3 -0.6 0.2 -1.3v-0.6M314 218.8c0.6 -2.1 -0.2 -4.3 -2.2 -4.3m-105.6 37.3a6.5 6.5 0 0 1 -2.9 3.7m3 -37.4a5.2 5.2 0 0 1 -3 3.2c-1.4 0.7 -3.2 0 -4 -0.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M195 225.9c1.3 0.6 2.5 -0.3 2.3 -1.9a2.3 2.3 0 0 0 -2 -1.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M200.1 293.3c0.3 0.3 0.4 0.6 0.7 0.6 0.5 0.1 1 0.3 1.5 -0.4 0.7 -0.9 0.3 -2.2 -0.4 -3.1a4 4 0 0 0 -4.7 -0.7c-0.5 0.3 -1.3 0.7 -2 1.6l-0.9 1.3 -0.9 2c-1.6 4.6 0.3 9.5 3.4 12.5"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M272.2 326.3l0.5 0.6 0.2 0.7c0.2 1.2 -0.6 2 -1.6 2 -1.3 0.2 -2.2 -0.6 -2.7 -1.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M311.6 187.8a6 6 0 0 1 5 5.6c0 3.6 -1.2 4.9 -3.1 7.4 -2 2.7 -8.5 7.7 -8.5 13.4 0 3.4 1 5.6 3.4 6.7 1.6 0.7 3.5 0 4.3 -0.8 2 -1.9 1.3 -5.2 -1 -5.6 -2.5 -0.4 -3 3.7 -0.5 3.4m14.3 55.3a3 3 0 0 0 -2.9 -2.5 3 3 0 0 0 -3 3c0 0.8 0.4 1.5 0.9 2"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M307.1 220.1a5.7 5.7 0 0 0 -2.1 4.6c0 2.5 2 6.5 7.2 8 1.9 0.5 3.8 0.4 5 -0.3m-124.9 -8.2a7.5 7.5 0 0 0 -3.8 2.7 13.5 13.5 0 0 0 -1.9 4.9c-0.1 0.7 -0.3 3 0.1 5.3a12.7 12.7 0 0 0 1.9 4.5l0.8 1 0.9 0.7m51.2 73.6c3.9 1.8 6.7 3 9.2 6.9a8.2 8.2 0 0 1 -1.7 10 6.6 6.6 0 0 1 -5.4 1.6c-1.5 -0.2 -3 -1.3 -3.2 -2m-37.2 -90a6.6 6.6 0 0 1 3.1 6c0 3 -1.5 4.8 -3.2 5.9"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M201.2 253.1c3.3 4.1 5 6.5 5.1 11.3 0.1 4.6 -1.4 7.7 -4 11"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M263.8 199.5a3.3 3.3 0 0 0 1.3 -1.8c0.4 -1.2 0.4 -2.2 -0.3 -3.1 0.8 1 0.9 1.9 0.7 3.1 -0.2 0.8 -0.7 1.2 -1.3 1.8m41.2 69v12.8a19.6 19.6 0 0 1 -0.3 3.4m0 -17.5V283l-0.4 2.1m0.4 -34.3v11.6m0.3 -10.7v9.4m0 -21.5v7.1m-0.3 -7.9v8.8m0.3 -15.2v2.8m-0.3 -3.4v4m-1.4 52.2l-0.3 0.5a15 15 0 0 1 -3.4 4.6 15.7 15.7 0 0 1 -4.6 3.2 19.7 19.7 0 0 1 -5.3 1.8c-2 0.5 -3.3 0.6 -5.5 0.7 -2 0 -3 0 -5 -0.2 -2.2 -0.1 -3.3 -0.4 -5.4 -0.6 -1.8 -0.1 -2.8 -0.3 -4.5 -0.3a22.9 22.9 0 0 0 -8.8 1.5c-2.1 0.9 -4.5 2.4 -5 3a17 17 0 0 0 -5.1 -3 22.9 22.9 0 0 0 -8.8 -1.5c-1.7 0 -2.7 0.2 -4.5 0.3 -2 0.2 -3.2 0.5 -5.4 0.6a37.3 37.3 0 0 1 -10.5 -0.5 19.8 19.8 0 0 1 -10 -5 17.6 17.6 0 0 1 -1.9 -2.3m-1.6 -2.5a8 8 0 0 1 -1.8 6.2c-0.7 0.7 -2.2 2 -4 2 -3 0.1 -4 -2 -4.1 -2.5"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M204.5 287a8.2 8.2 0 0 1 1.5 2.1c0.7 1.4 0.5 3.8 -0.1 5a3.7 3.7 0 0 1 -0.3 0.3m-16.1 14.4c1.8 2 4.5 4 8.7 5.7a67.4 67.4 0 0 0 20.5 3.1c8 0.3 15.5 0.7 20 5.7m13.9 -3.3a12 12 0 0 1 3.2 4.5m-5.9 9.2a7 7 0 0 1 -0.5 0.5 6.6 6.6 0 0 1 -5.3 1.6 5 5 0 0 1 -3.5 -2m-4.3 -2.4l0.3 0.3a6 6 0 0 0 4 2m21.6 0a14.1 14.1 0 0 1 -6.1 4.9 14.1 14.1 0 0 1 -6.1 -5l-0.2 -0.3m12.4 0.3l0.6 0.6a6.6 6.6 0 0 0 5.3 1.6 4.4 4.4 0 0 0 3.3 -2l0.4 -0.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M271.2 333.3l-0.6 1 -0.9 0.7 -1.3 0.6H267"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M274.4 324.2a6.1 6.1 0 0 1 1.9 2.3c0.2 0.6 0.4 1.3 0.4 2a4.7 4.7 0 0 1 -1.1 3.2 6 6 0 0 1 -4.4 2 4.4 4.4 0 0 1 -0.3 0m0.1 -0.2a5.5 5.5 0 0 1 -4.1 -1.7m51 -54.3a19 19 0 0 1 -4 -5.2 15 15 0 0 1 -1.3 -3.6c-0.2 -0.9 -0.4 -1.7 -0.4 -2.6 0 -1.6 0.1 -3.2 0.5 -5a16.7 16.7 0 0 1 3.3 -7.3c0.5 -0.6 1 -1.4 1.6 -1.8m-1 -60.6c2 0.2 3.8 2.3 3.8 4.5 0 3.1 -1 4.4 -3.5 7.4 -2.1 2.7 -8.5 7.3 -8.3 11.7 0 0.8 0.5 1.6 1 2.2M307 220c0.4 0.5 1 0.8 1.6 1.1a4 4 0 0 0 3.4 -0.2m-16.9 -34.6a4.8 4.8 0 0 1 1.8 2.1c1.4 3.6 -1.8 6.3 -4.8 8.3a17 17 0 0 1 -6.6 2.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M291.7 193.2c-0.7 0 -1.6 -0.2 -2.5 -1.2a2.7 2.7 0 0 1 -0.6 -0.7m-11.9 3.9a3.7 3.7 0 0 1 -1 -0.8c-0.7 -0.8 -1.2 -1.9 -0.7 -3.5 0.5 -1.5 3 -5.8 3 -8.7 0.3 -4.5 -1.5 -7.2 -4.2 -8.2"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M277.9 181.2l-0.1 1.7 -0.5 1.7 -0.9 2.3 -0.7 1.6 -0.7 1.5 -0.3 1 -0.2 0.8 0.1 0.8m30.5 101c0 0.3 0.4 0.6 0.4 0.6a6.2 6.2 0 0 0 4.4 2.5c3 0 3.7 -2.1 3.8 -2.6 0.4 -2.3 -0.4 -3 -1.6 -3.6 0 0 -0.7 -0.3 -1.5 -0.2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M189.6 283.5a5.5 5.5 0 0 1 -3 0c-2.3 -0.7 -4 -2.9 -3.1 -5.5m10.7 -25.5c0.2 0.2 0.3 0.6 0.3 0.8 0.3 3 -2.2 3.8 -4 3.4a4.5 4.5 0 0 1 -2.5 -1.9 3.8 3.8 0 0 1 -0.5 -1.8m17.7 -19c0.4 0.5 0.8 1 1 1.5m-1 -6.8c0.5 0.3 0.8 0.6 1 1"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M206.3 232.4a6.8 6.8 0 0 1 -1.3 2 9.9 9.9 0 0 1 -7 3.1 8.2 8.2 0 0 1 -4.8 -1.4 7.6 7.6 0 0 1 -3.3 -4.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M204.3 220.2a6.2 6.2 0 0 1 2 2.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M206.3 226.6a9.4 9.4 0 0 1 -7 6.3 7 7 0 0 1 -5.2 -0.9"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M192 226c0.2 2.1 1.7 3.7 4.3 3.8 3.8 0 6 -5.4 2.7 -9.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M183.6 244.4c0.5 0.7 1.2 1.3 1.8 1.9a13.4 13.4 0 0 0 4.8 2.6m4.2 0.4c3.4 -0.4 5.3 -2.9 4.9 -5.8 -0.3 -2.3 -2.4 -4 -3.8 -4"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M199.9 214.5c1.4 0 2.3 1.3 2.2 2.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M199.5 194.5a9.2 9.2 0 0 0 4 4.6M319 224a3.7 3.7 0 0 1 -3.3 5.7 4.2 4.2 0 0 1 -3.5 -2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M305.4 199.3v12.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M195 225.9c1.2 0.8 2.6 -0.6 2 -2.1 -0.3 -1 -1.8 -2.1 -3.8 -0.8 -2.1 1.5 -1.5 6.3 2.7 6.3 3.7 0.1 6 -5.4 2.7 -9.2 -3.2 -3.7 -9 -2.9 -13 0.2a17.1 17.1 0 0 0 -5.6 9.3 17 17 0 0 0 0 7.4 16.7 16.7 0 0 0 2.4 6l1 1.3 1.6 1.6a12 12 0 0 0 8.3 3c3.8 -0.1 6 -2.8 5.5 -5.9 -0.4 -3 -3.4 -4.5 -5.4 -3 -1.3 0.9 -1.8 3.8 0.6 4.5 1.3 0.4 2.5 -1.3 1.6 -2.3m103.6 -57.5c2.2 -1.2 3.8 -1 5 0.7a7.9 7.9 0 0 1 1.3 5.8c-0.4 2.2 -1 3 -2.8 4.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M304.4 185.6c2.5 -1.6 5.2 -1 6.6 1.3a7.3 7.3 0 0 1 1.3 4.9 9 9 0 0 1 -4.6 7.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M316 191.3c2 0.2 3.7 2 3.7 4.2 0 3 -0.8 4.4 -3.3 7.4 -2.1 2.6 -8.4 7.2 -8.3 11.7 0 1.6 1.5 3.2 2.7 3.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M316.3 225.9c-1.2 0.8 -2.6 -0.5 -2 -2 0.4 -1 1.8 -2.2 3.7 -0.9 2.2 1.5 1.6 6.3 -2.6 6.3 -3.7 0.1 -6.3 -5.2 -2.7 -9.2 3.3 -3.7 9.4 -3 13.2 0 1.6 1.4 5 5 5.6 9.6 0.9 5.6 0.7 12.6 -5 16.8a13.8 13.8 0 0 1 -8.5 2.4c-3.8 -0.1 -6 -2.8 -5.5 -5.9 0.4 -3 3.3 -4.3 5.4 -3 2.2 1.1 1.8 4.3 -0.6 4.5 -1.4 0.2 -2.5 -1.3 -1.6 -2.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M314.3 224c0.6 -2.9 3 -3.1 5 -3.1 5.2 0 8.9 6.3 9 12.4 0 7.6 -3.3 12.1 -9 12.3 -1.3 0.1 -3.8 -0.6 -3.9 -2.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M317.5 222.7c5.6 1.2 7.6 6.2 7.6 11 0 3.9 -0.4 9.2 -8 11"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="square" />
<path
android:pathData="M326.7 276.3a3.1 3.1 0 1 0 -5 1.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M315.6 271.5a13.3 13.3 0 0 0 5 4.8m-1 8.4c-2.7 -1.7 -7.7 -4 -12.2 -1.8a6.3 6.3 0 0 0 -3.4 3.5 8 8 0 0 0 1.5 7.7 6 6 0 0 0 4 2.1c3 0 3.7 -2 3.8 -2.5 0.3 -2.2 -1 -3.1 -1.6 -3.3 -0.6 -0.2 -2.2 -0.2 -2.6 1 -0.1 0.4 -0.1 1.1 0.2 1.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M272.4 326.7c0.8 1.8 -0.1 2.6 -1.3 2.7 -1.7 0.2 -2.6 -1.1 -2.7 -2.3 -0.2 -2 1.5 -3.9 3.5 -3.8a4.4 4.4 0 0 1 4 2.8c0.2 0.6 0.3 1.2 0.3 1.9a4.7 4.7 0 0 1 -1.1 3.3 6 6 0 0 1 -4.3 2c-3.4 0.1 -6 -3 -6 -6.3 0 -6.1 9.1 -9.5 12.8 -10.4a67 67 0 0 1 14.3 -1.8c2.9 -0.2 5 -0.1 8.1 -0.4 2.8 -0.3 4.3 -0.5 7.2 -1.1a22 22 0 0 0 10 -5.2 13.7 13.7 0 0 0 3.7 -17.7 11.5 11.5 0 0 0 -8.2 -5.3c-3 -0.5 -5.6 0.8 -7.2 3.8a6.2 6.2 0 0 0 0.1 5c0.5 0.9 2 2.3 3.8 2.3 3 0 3.8 -2 3.9 -2.5 0.3 -2.2 -1 -3.1 -1.6 -3.3 -0.6 -0.2 -2.2 -0.2 -2.6 1 -0.1 0.4 -0.1 1.1 0.2 1.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M269.8 317c-4 1.7 -6.8 3 -9.2 6.7a7.9 7.9 0 0 0 -1 4c0 2.1 1 4.5 2.7 6a6.6 6.6 0 0 0 5.4 1.7c1.5 -0.2 3 -1.3 3.2 -2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M308 243.3c-1.7 0.6 -3 3.4 -3 6 0 3 1.4 5 3.2 6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M310 253.1c-3.2 4.1 -5 6.5 -5 11.3 -0.1 4.6 1.3 7.7 4 11"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M292.7 185.6l0.3 -0.4c1.3 -2 3.7 -2.5 5.5 -1.2 2 1.6 2.6 4.3 2 7.2a7 7 0 0 1 -3.2 4.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M212 184.7c-2 -1 -3.7 -0.8 -5 0.7a7.5 7.5 0 0 0 -1.2 5.8c0.4 2.1 1 3 2.8 4.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M206.9 185.6c-2.5 -1.6 -5.2 -1 -6.6 1.3a7.3 7.3 0 0 0 -1.3 4.9 9 9 0 0 0 4.6 7.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M199.7 187.8a5.5 5.5 0 0 0 -4.8 5.3c0 3.6 0.9 5 2.9 7.7s8.5 7.7 8.5 13.4c0 3.4 -1 5.6 -3.4 6.7 -1.6 0.7 -3.5 0 -4.3 -0.8 -2 -1.9 -1.2 -5.2 0.9 -5.6 2.6 -0.4 3.1 3.7 0.6 3.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M195.2 191.3c-2 0.2 -4 2 -4 4 0 3.1 1.2 4.5 3.7 7.6 2 2.6 8 7.2 7.9 11.6 0 1.6 -1.2 3.7 -2.3 3.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M190.5 252.9c1 -2.3 3.4 -1.3 3.5 0 0.4 3 -2.2 3.8 -4 3.3 -1 -0.2 -1.6 -0.8 -2 -1.5a3.9 3.9 0 0 1 0.4 -4.3 4 4 0 0 1 1 -1c0.7 -0.4 1.5 -0.5 2.7 -0.5 4.4 0 8.3 5.3 9.6 10.8a23.6 23.6 0 0 1 0.2 9.6 18 18 0 0 1 -4.7 9 20.1 20.1 0 0 1 -7.9 4.7 5.6 5.6 0 0 1 -3.2 0c-2.2 -0.6 -3.7 -2.8 -2.5 -5.5 1 -2.1 4.3 -3.2 5.8 -0.6 0.1 0.3 0.3 0.7 0.3 1.3 0 0.7 -0.3 1.5 -0.8 1.8 -1.1 0.8 -3 0.6 -2.9 -1.5"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M187 280.3c0.8 0.3 1.3 0.3 2.3 -0.2l1.5 -0.8c2 -1.1 4.5 -3 6.7 -7.2a15.1 15.1 0 0 0 1.4 -3.6c0.2 -0.9 0.4 -1.8 0.4 -2.7a20.5 20.5 0 0 0 -0.5 -5 16.2 16.2 0 0 0 -3.2 -7.2c-1 -1.3 -1.7 -2 -3.5 -2m-7.5 24.7a3.1 3.1 0 1 1 5 1.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M185.8 273.2a3 3 0 0 1 2.9 -2.5 3 3 0 0 1 3 3 3 3 0 0 1 -1 2"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M191.5 273a12.4 12.4 0 0 0 5 -9.9c0 -3.3 -1.3 -6.7 -2.9 -8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M195.7 271.5a13.2 13.2 0 0 1 -5 4.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M203.7 283c-0.8 -1.8 -2.2 -2.6 -4.6 -2.9a11 11 0 0 0 -6.6 1.6 14.8 14.8 0 0 0 -8 9 13.7 13.7 0 0 0 -0.6 4.6c0 2.9 0.8 6 1.6 7.5 0.6 1.4 2.4 7.2 12.2 11.2a67.7 67.7 0 0 0 20.6 3.2c8.3 0.3 16 0.6 20.4 6.1"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M191.7 284.7c2.7 -1.7 7.6 -4 12.1 -1.8a7 7 0 0 1 3.5 3.5 8 8 0 0 1 -1.5 7.7c-0.7 0.7 -2.1 2 -4 2.1 -3 0 -3.7 -2 -3.8 -2.5 -0.3 -2.2 1 -3.1 1.6 -3.3 0.5 -0.2 2.2 -0.2 2.6 1 0.1 0.4 0.1 1.1 -0.2 1.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M202.2 292.6a2.7 2.7 0 0 0 -0.7 -2.7 4.1 4.1 0 0 0 -4.7 -0.7 5 5 0 0 0 -2 1.7l-1 1.2 -0.8 2c-2 5.6 1.2 11.6 5.2 14.1a24 24 0 0 0 11.5 3.3l5.3 0.3h13.4l6 0.6 4.4 0.8 1.5 0.4 1 0.3a31.9 31.9 0 0 1 7.7 3.3c0.7 0.4 1.5 0.8 2 1.4l1.1 1c1.5 1.4 3.1 3 3.5 5.3v1.3c0 1.4 -1.1 3.4 -4.3 4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M239 326.7c-1 1.8 0 2.6 1.2 2.7 1.7 0.2 2.6 -1.1 2.7 -2.3 0.2 -2 -1.5 -3.9 -3.5 -3.8a4.4 4.4 0 0 0 -4 2.8 5.5 5.5 0 0 0 -0.3 1.9 4.7 4.7 0 0 0 1 3.3 6 6 0 0 0 4.4 2c3.4 0.1 6 -3 6 -6.3 0 -6.1 -9.1 -9.5 -12.8 -10.4a67 67 0 0 0 -14.3 -1.8c-2.9 -0.2 -5 -0.1 -8.1 -0.4 -2.8 -0.3 -4.3 -0.5 -7.2 -1.1a22 22 0 0 1 -10 -5.2 13.7 13.7 0 0 1 -3.7 -17.7 11.5 11.5 0 0 1 8.2 -5.3c3 -0.5 5.6 0.8 7.1 3.8 0.8 1.4 0.6 3.8 0 5a4.8 4.8 0 0 1 -3.9 2.3c-3 0 -3.7 -2 -3.8 -2.5 -0.3 -2.2 1 -3.1 1.6 -3.3 0.5 -0.2 2.2 -0.2 2.6 1 0.1 0.4 0.1 1.1 -0.2 1.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M218.6 185.6a97 97 0 0 0 -0.3 -0.4c-1.3 -2 -3.7 -2.5 -5.5 -1.2 -2 1.6 -2.6 4.3 -2 7.2a7 7 0 0 0 3.2 4.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M293.4 191.7c-3.2 3.5 -6.5 4.6 -11.3 4.8 -1.5 0 -4.4 -0.5 -6 -1.7 -1 -0.8 -2.3 -2 -1.5 -4.4 0.5 -1.5 3 -5.7 3 -8.7 0.2 -4.5 -1.5 -7 -4.2 -7.9 -5 -1.8 -10.4 3.2 -13.6 4.3a11 11 0 0 1 -4.1 0.6c-1.6 0 -2.5 0 -4.2 -0.6 -3.2 -1.1 -8.6 -6 -13.6 -4.3 -2.7 1 -4.4 3.4 -4.2 8 0 2.9 2.5 7.1 3 8.6 0.8 2.3 -0.4 3.6 -1.5 4.4a11.6 11.6 0 0 1 -6 1.7c-4.9 -0.2 -8 -1.3 -11.3 -4.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M237.9 315.5c0.6 0.3 0.1 -0.1 4.2 1.7 3.8 1.7 6.6 3.2 9 7a8.5 8.5 0 0 1 0.7 5.9"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M238.1 332.8a6.4 6.4 0 0 0 2.6 0.7c3.4 0.1 6 -3 6 -6.3 0 -2.2 -1.2 -4 -2.9 -5.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M238.9 326.7c-0.9 1.9 0.3 2.8 1.5 3 1.7 0.2 2.6 -1.2 2.8 -2.4a3.6 3.6 0 0 0 -1.7 -3.3"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M312 187.8c2.6 0 4.9 2.9 4.9 5.8 0 3.4 -1.8 5.5 -3.1 7 -1 1.3 -2.2 2.4 -3.6 3.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M309 185.1a5 5 0 0 1 2.3 2 7.3 7.3 0 0 1 1.2 4.9c-0.1 3.4 -2.5 5.7 -4.7 7.1m-3.8 -14l0.5 0.6a7 7 0 0 1 1.2 5.7 6.5 6.5 0 0 1 -3 4.4m-4 -11.6c2 1.6 2.7 4.4 2 7.2 -0.5 2 -1.8 3.3 -3.3 4.2m8.9 32.9c0.2 0.7 0.6 1 1.2 1.5a10.8 10.8 0 0 0 4.9 2.9 6.2 6.2 0 0 0 5 -0.7M187 275.4c1 0 2 0.6 2.7 1.8a2.6 2.6 0 0 1 0.3 1.2c0 0.7 -0.3 1.4 -0.8 1.8 -1.2 0.7 -3.2 0.4 -3.1 -1.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M193.2 249c4 0.8 7.7 5.5 9 10.7a23.6 23.6 0 0 1 0.2 9.6 18 18 0 0 1 -4.7 9c-0.5 0.6 -1 1 -1.7 1.5l-0.9 0.6m-6.3 -9.7c1.6 0 3 1.5 3 3.2a3 3 0 0 1 -0.8 2"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M187.7 272.6c1.7 0 3.3 1.6 3.3 3.3a3.1 3.1 0 0 1 -1.2 2.5"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M203.2 255.6c1.5 2 2.6 3.9 3 6.2m0 6.8a13.8 13.8 0 0 1 -1.2 3.2 14.2 14.2 0 0 1 -2.8 3.7"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M203.4 243.5a7.5 7.5 0 0 1 2.8 3.8"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M206.3 239.6a8.7 8.7 0 0 1 -2.7 3.7m-7.3 -13.8l1.7 -0.4 1 -0.8 0.7 -1 0.5 -1.4 0.3 -1.2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M192.8 223.4l-2 0.7a7 7 0 0 0 -2.8 2.4 13.5 13.5 0 0 0 -1.8 4.8c-0.2 0.7 -0.4 3 0 5.3a12.6 12.6 0 0 0 2 4.6l0.8 1c1 1 2 1.7 3.5 1.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M202.4 215.8c-0.2 1 -0.8 2.3 -2.4 2.2"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M196.5 222.8c-1.5 -1.5 -4.8 -1.9 -8 0.2 -0.5 0.2 -0.9 0.6 -1.3 1a7 7 0 0 0 -1.1 1.2l-1.2 2a10 10 0 0 0 -0.7 2c-0.6 2.3 -0.6 4.5 -0.6 5l0.3 2.2a15 15 0 0 0 1.8 5 8.2 8.2 0 0 0 6.2 4.3c1.4 0.1 3.9 -0.6 4 -2.4"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M291 189.7c0.2 -1.4 1.8 -1.6 2.4 -0.8 1 1.2 0.4 3.2 -1.5 3.8a3 3 0 0 1 -3 -1.1c-0.9 -1 -0.8 -2.2 -0.5 -3.2 0.2 -0.7 0.7 -1.2 1.4 -1.7 2.1 -1.7 5.7 -1.3 6.8 1.5 1.5 3.6 -1.7 6.3 -4.7 8.3 -3.8 2.5 -8 3 -11.3 3 -7.3 -0.1 -12.9 -3.6 -16.5 -5.6 -0.8 -0.5 -1.7 -0.4 -2.1 0.2 -0.5 0.6 -0.5 1.5 0.2 2.1"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M292.5 188.4c0.8 0 1 0.4 1.2 0.7 1 1.2 0.3 3.2 -1.6 3.8m14.3 41.2c-2.8 3 -0.3 8.3 1.8 9.5 0.7 0.5 1 0.2 1.6 0.6"
android:strokeColor="#703D29"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M306.5 228.3c-1 0.7 -1.2 1.4 -1.3 2.6a4.2 4.2 0 0 0 1.2 3.2 11.2 11.2 0 0 0 7.3 3 8.2 8.2 0 0 0 4.9 -1.4 7.3 7.3 0 0 0 3 -4.3M305 281v2c-0.4 2.2 -0.7 3.5 -1.7 5.5a15 15 0 0 1 -3.4 4.5 15.7 15.7 0 0 1 -4.7 3.3 19.7 19.7 0 0 1 -5.2 1.8 33 33 0 0 1 -5.5 0.6h-5l-5.5 -0.7c-1.7 -0.2 -2.7 -0.3 -4.4 -0.3a22.8 22.8 0 0 0 -8.8 1.5 17 17 0 0 0 -5 3c-0.6 -0.6 -3 -2.2 -5.2 -3a17.6 17.6 0 0 0 -4.1 -1.2c-1.8 -0.3 -2.8 -0.3 -4.6 -0.3 -1.8 0 -2.7 0.1 -4.5 0.3 -2 0.2 -3.3 0.5 -5.4 0.6 -2 0.1 -3 0.2 -5 0.1 -2.2 0 -3.4 -0.2 -5.6 -0.6a19.7 19.7 0 0 1 -5.2 -1.8c-2 -1 -3 -1.7 -4.7 -3.3a15 15 0 0 1 -3.3 -4.5 15.1 15.1 0 0 1 -1.7 -5.5v-83.4H305z"
android:strokeColor="#703D29"
android:strokeWidth="0.5" />
<path
android:pathData="M198.3 292.5a2 2 0 1 1 4 0 2 2 0 0 1 -4 0zm-12.2 -14.1c0 -1 0.6 -1.8 1.4 -1.8 0.8 0 1.4 0.8 1.4 1.8s-0.6 1.8 -1.4 1.8c-0.8 0 -1.4 -0.8 -1.4 -1.8z"
android:fillColor="#C7B37F"
android:strokeColor="#C7B37F"
android:strokeWidth="0.3" />
<path
android:pathData="M193 242.9c0 -0.8 0.7 -1.5 1.4 -1.5 0.8 0 1.4 0.7 1.4 1.5s-0.6 1.4 -1.4 1.4c-0.7 0 -1.3 -0.6 -1.3 -1.4zm24.6 -52.5c-0.1 -0.9 0.4 -1.6 1 -1.6 0.7 -0.1 1.4 0.5 1.5 1.3 0 0.8 -0.4 1.5 -1.1 1.6 -0.7 0 -1.4 -0.5 -1.4 -1.3"
android:fillColor="#C7B37F" />
<path
android:pathData="M191.4 251.2a1.8 1.8 0 0 0 -0.6 0.4l-0.5 0.7 -0.2 1m3.8 21.3l0.7 -0.8 0.6 -0.8 0.4 -0.7 0.5 -1m-1 11l-1.2 0.6 -0.9 0.5a14 14 0 0 0 -1 0.7l-1 0.8m12 -30.3l-0.6 -0.7 -0.7 -0.7 -0.8 -0.5"
android:strokeColor="#C7B37F"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M203.3 244l-1 0.4a4 4 0 0 1 -1.1 0.2"
android:strokeColor="#C7B37F"
android:strokeWidth="0.5" />
<path
android:pathData="M190 230.8c0 0.4 0.1 0.7 0.3 1.1l0.7 1.4a6.8 6.8 0 0 0 2.2 2.1l1.2 0.7m-0.9 -4.7l1 0.5a6 6 0 0 0 2.4 0.5l1.5 -0.1m5.7 -32.5l-1.6 -1a9.6 9.6 0 0 1 -2.4 -2.3l-0.7 -1m6 -3.6l0.5 1.3 1.2 1.7c0.7 0.8 1.3 1 2.2 1.6m1.1 -4.7l0.5 1.2 0.7 1 1 1c0.6 0.5 1 0.6 1.6 1"
android:strokeColor="#C7B37F"
android:strokeWidth="0.5"
android:strokeLineCap="round" />
<path
android:pathData="M266.6 185.3c0 -1.4 -1.3 -1.5 -1.9 -1.5 -1.4 0 -1.8 1 -3.7 2a9.5 9.5 0 0 1 -5.3 1.4 9 9 0 0 1 -5.4 -1.5c-1.9 -1 -2.2 -1.9 -3.6 -1.9 -0.8 0 -1.9 0.7 -1.8 2v0.7s0.2 0 0.2 0.2c0 -0.7 0.1 -1 0.4 -1.4a1.8 1.8 0 0 1 1.3 -0.7c1.5 0 2 1 3.9 2a9.5 9.5 0 0 0 5.3 1.5c2 0 3.1 -0.3 5.4 -1.5 1.9 -1 2.4 -2 3.9 -2 0.5 0 0.8 0.3 1 0.8v0.7h0.2c0 -0.1 0.2 -0.2 0.1 -0.8z"
android:fillColor="#703D29"
android:strokeColor="#703D29"
android:strokeWidth="0.1" />
<path
android:pathData="M211.5 299.2c0.4 -0.4 0.8 -0.3 0.8 -0.5l-0.2 -0.2 -0.7 -0.2 -0.7 -0.3s-0.3 -0.2 -0.4 0c0 0.3 0.9 0.3 0.5 1.1 0 0.2 -0.1 0.5 -0.6 1l-2.1 2.3 -0.2 0.2V299l0.1 -1.4c0.2 -0.4 0.6 0 0.7 -0.3 0 -0.2 0 -0.2 -0.2 -0.3 -0.2 0 -0.4 0 -1 -0.3l-0.7 -0.3c-0.1 0 -0.4 -0.2 -0.5 0l0.1 0.2c0.3 0.2 0.4 0.3 0.4 0.7v6c0 0.4 0.1 0.6 0.2 0.6l0.3 -0.2 4.2 -4.6z"
android:fillColor="#703D29" />
<path
android:pathData="M214 300.1c0.3 -0.8 0.8 -0.3 0.9 -0.6l-0.3 -0.2 -1 -0.3 -1 -0.4h-0.3c0 0.4 1 0.4 0.7 1.3l-1.4 4.4c-0.3 0.8 -0.8 0.4 -0.9 0.7v0.1l1 0.3 1.2 0.4h0.3c0.1 -0.3 -1 -0.2 -0.6 -1.3zm3 1c0.1 -0.6 0.4 -0.6 0.7 -0.5 0.8 0.3 1 1.1 0.8 2 -0.2 0.5 -0.4 1 -1.6 0.7 -0.3 -0.1 -0.6 -0.2 -0.5 -0.4zm-2.3 3.9c-0.4 1.1 -1 0.6 -1 1l0.2 0.1 1.3 0.4 0.7 0.2h0.3c0 -0.4 -0.9 -0.2 -0.6 -1.2l0.5 -1.6c0 -0.3 0 -0.4 0.5 -0.3 0.4 0.2 0.5 0.3 0.6 0.7l0.3 1.7c0 0.6 0.2 1.3 0.8 1.4 0.3 0.2 1 0.1 1 -0.2v-0.1h-0.3l-0.3 -0.3 -0.5 -3 0.6 -0.2c0.3 -0.2 0.6 -0.4 0.8 -1 0.1 -0.4 0.3 -1.7 -1.5 -2.3l-1.6 -0.4 -1 -0.3h-0.2c-0.1 0.4 0.9 0.3 0.6 1.3l-1.2 4zm6.7 2c-0.2 1 -1 0.4 -1.2 0.7 0 0.2 0.1 0.3 0.3 0.3l1.2 0.2 1.1 0.4 0.5 -0.1c0 -0.3 -1.1 -0.3 -0.8 -1.4l1 -4.2c0 -0.5 0.2 -0.5 0.5 -0.4l0.7 0.2c1 0.2 0.5 1.1 0.8 1.2 0.3 0 0.2 -0.3 0.3 -0.5v-1.1l-2.6 -0.6 -2.5 -0.6c-0.2 0 -0.2 0 -0.2 0.2l-0.5 1.2v0.3c0.5 0.1 0.5 -1.2 1.4 -1l0.7 0.2c0.4 0.1 0.5 0.2 0.4 0.6l-1 4.3zm10.2 -2.7c0.3 -0.5 0.7 -0.4 0.7 -0.6l-0.3 -0.2h-0.7l-0.7 -0.2c-0.1 0 -0.4 -0.1 -0.4 0 0 0.4 0.9 0.2 0.7 1 0 0.2 -0.1 0.6 -0.5 1.1l-1.7 2.7 -0.1 0.2v-0.3l-0.6 -3.2a4.3 4.3 0 0 1 -0.1 -1.3c0 -0.4 0.5 -0.2 0.6 -0.5l-0.3 -0.2 -1 -0.1 -0.8 -0.2c-0.1 0 -0.4 -0.1 -0.4 0l0.1 0.2c0.4 0.2 0.5 0.3 0.5 0.7l1.1 5.9c0.1 0.4 0.2 0.5 0.3 0.5l0.2 -0.2zm0.5 5.4l0.1 0.4 1.4 0.6c1.1 0.2 2 -0.5 2.3 -1.7 0.2 -1.2 -0.3 -1.7 -1.2 -2.3 -1 -0.8 -1.5 -1 -1.3 -1.6 0 -0.6 0.5 -1 1 -0.8 1.5 0.2 1.4 2 1.6 2 0.1 0 0.2 0 0.2 -0.3l0.1 -1.3v-0.3h-0.5c-0.3 0 -0.5 -0.4 -1.2 -0.5 -1 -0.2 -1.8 0.5 -2 1.6 -0.2 1 0.2 1.4 1 1.9 1.2 0.9 1.7 1 1.6 1.9 -0.2 0.7 -0.8 1.1 -1.4 1 -1 -0.2 -1.3 -1.1 -1.5 -2l-0.1 -0.3c-0.2 0 -0.2 0.3 -0.2 0.4v1.3zm12.6 -3.5c0.3 -0.6 0.6 -0.5 0.7 -0.7 0 -0.2 -0.2 -0.2 -0.3 -0.2h-0.8l-0.7 -0.1 -0.4 0.1c0 0.4 1 0 0.8 1 0 0.1 0 0.5 -0.3 1l-1.4 2.9 -0.2 0.2v-0.2l-1 -3.2a4.3 4.3 0 0 1 -0.2 -1.3c0 -0.4 0.6 -0.3 0.6 -0.5s0 -0.2 -0.3 -0.2h-1l-0.8 -0.1c-0.1 0 -0.4 -0.1 -0.4 0l0.1 0.2c0.4 0.2 0.5 0.3 0.6 0.6l1.7 5.8c0.1 0.4 0.2 0.5 0.3 0.5l0.2 -0.3z"
android:fillColor="#703D29" />
<path
android:pathData="M246 310.8c0 1 -0.8 0.8 -0.8 1.2h1l1 0.1 0.4 -0.1c0 -0.5 -1.1 0.2 -1.1 -1.7v-3.4s0.2 0 0.3 0.2l4 5h0.3v-0.2l0.1 -5.3c0 -1 0.8 -0.8 0.8 -1.1l-0.2 -0.1h-2v0.1c0 0.3 1 0.2 1 1v3.2l-0.1 0.4 -0.3 -0.3 -3.4 -4.2c-0.1 -0.2 0 -0.3 -0.3 -0.3h-1.4l-0.1 0.2c0 0.4 1 -0.2 0.9 1.7v3.6zm8.4 -4.3c0 -1 0.6 -0.6 0.6 -0.9l-0.3 -0.1h-2.3c0 0.4 0.9 0.1 0.9 1v4.6c0 1 -0.6 0.7 -0.6 1v0.1h2.3l0.3 -0.1c0 -0.3 -1 0.1 -1 -1zm3.6 4.4c0 1.2 -1 0.7 -1 1 0 0.3 0.2 0.3 0.3 0.3h2.4c0.3 0 0.5 0 0.5 -0.2 0 -0.3 -1.1 0 -1.1 -1.2v-4.3c0 -0.5 0 -0.5 0.3 -0.5h0.8c1 0 0.7 1 1 1 0.3 0 0.2 -0.4 0.2 -0.5l-0.1 -0.9s0 -0.2 -0.2 -0.2H256c-0.2 0 -0.2 0.2 -0.2 0.3l-0.1 1.2 0.1 0.4c0.4 0 0.1 -1.3 1.1 -1.3h0.7c0.4 0 0.5 0 0.5 0.5v4.4zm5 -1.8h-0.3v-0.4l0.6 -1.8h0.1l1 1.7v0.3l-0.2 0.1zm1.5 0.4c0.2 0 0.3 0 0.6 0.8l0.2 0.6c0 0.6 -0.6 0.6 -0.6 0.8 0 0.2 0.2 0.1 0.3 0.1h1l1 -0.1c0.3 0 0.4 0 0.4 -0.2 0 -0.3 -0.5 0.1 -0.8 -0.6l-2.8 -5.6 -0.2 -0.3 -0.2 0.4 -1.9 5.9c-0.2 0.5 -0.6 0.5 -0.6 0.7 0 0.2 0.2 0.1 0.3 0.1h1.5c0.2 -0.1 0.5 0 0.5 -0.3 0 -0.2 -1 0 -1 -0.7l0.1 -0.7c0.2 -0.7 0.3 -0.7 0.5 -0.7zm6.6 -4c0 -0.6 0 -0.6 1 -0.7 1.6 -0.3 1.1 1 1.5 0.9 0.2 0 0.1 -0.4 0.1 -0.5l-0.1 -1h-0.2l-2 0.2 -2.2 0.3c-0.2 0 -0.2 0 -0.2 0.2 0 0.3 1 0 1 0.8l0.6 4.4c0.2 1.2 -0.5 0.7 -0.5 1.2h0.2l1.1 -0.1 1 -0.1c0.2 0 0.4 0 0.4 -0.2 0 -0.3 -1 0 -1.1 -1l-0.2 -1.4c0 -0.5 -0.1 -0.6 0.3 -0.7h0.6c0.9 -0.2 0.8 0.9 1 0.8 0.3 0 0.2 -0.3 0.1 -0.5l-0.2 -1.6c0 -0.3 -0.2 -0.3 -0.2 -0.3 -0.2 0 -0.1 1 -0.8 1l-0.6 0.1c-0.4 0 -0.4 0 -0.4 -0.4zm3.2 2.2c0.3 2 1.7 3 3.4 2.7 2.7 -0.5 2.8 -3 2.5 -4.2 -0.3 -2 -1.8 -3 -3.5 -2.7 -2 0.4 -2.8 2.2 -2.4 4.2m0.9 -0.7c-0.3 -1.4 0 -2.7 1.4 -3 1 -0.3 2.3 0.6 2.7 2.7 0.3 1.6 0 3 -1.4 3.2 -1.5 0.3 -2.4 -1.5 -2.7 -2.9m6.7 -3.3c-0.2 -0.6 0.1 -0.7 0.4 -0.7 0.8 -0.2 1.5 0.3 1.7 1.3 0.1 0.5 0.2 1 -1 1.3 -0.3 0.1 -0.6 0.2 -0.7 0l-0.4 -2zm0 4.5c0.3 1.2 -0.5 1 -0.4 1.3 0 0.2 0.2 0.2 0.3 0.1l1.3 -0.3 0.7 -0.1c0.2 0 0.2 -0.2 0.2 -0.2 0 -0.4 -0.8 0.2 -1 -0.8l-0.4 -1.6c-0.1 -0.3 -0.2 -0.4 0.3 -0.5 0.4 0 0.6 0 0.9 0.3l1 1.3c0.4 0.5 0.8 1 1.5 0.9 0.3 -0.1 0.8 -0.5 0.7 -0.7 0 -0.1 0 -0.2 -0.1 -0.1h-0.6l-2 -2.3 0.5 -0.5c0.1 -0.3 0.3 -0.7 0.2 -1.3 -0.1 -0.4 -0.6 -1.7 -2.5 -1.2l-1.6 0.4 -1 0.2 -0.2 0.2c0.1 0.4 1 -0.2 1.2 0.8zm6.9 -1.5c0.3 1 -0.8 0.9 -0.7 1.2 0 0.2 0.2 0.2 0.3 0.2l1.2 -0.4 1.2 -0.3c0.2 0 0.4 0 0.3 -0.2 0 -0.3 -1 0.2 -1.3 -0.9l-1.1 -4.2c-0.1 -0.4 0 -0.5 0.3 -0.6l0.7 -0.2c1 -0.3 1 0.8 1.3 0.8 0.2 0 0 -0.4 0 -0.5l-0.4 -0.9s0 -0.2 -0.2 -0.2l-2.5 0.7 -2.5 0.7c-0.2 0 -0.1 0.1 -0.1 0.2l0.2 1.3c0 0.1 0 0.3 0.2 0.3 0.3 -0.1 -0.2 -1.3 0.7 -1.5l0.7 -0.2c0.3 0 0.4 0 0.6 0.4l1 4.3zm4.4 -5.9c-0.3 -0.9 0.4 -0.7 0.3 -1h-0.3c-0.4 0 -0.7 0.2 -1 0.3l-1 0.2s-0.3 0 -0.2 0.2c0 0.3 1 -0.2 1.2 0.6l1.2 4.4c0.2 1 -0.4 0.8 -0.3 1.2l1 -0.2 1.3 -0.3c0.2 -0.1 0.2 -0.2 0.2 -0.3 0 -0.3 -0.9 0.4 -1.2 -0.7zm1.8 2.1c0.6 1.9 2.1 2.7 3.8 2.2 2.6 -0.9 2.3 -3.3 1.9 -4.5 -0.6 -2 -2.3 -2.7 -3.8 -2.2 -2 0.7 -2.6 2.6 -1.9 4.5m0.8 -0.8c-0.4 -1.3 -0.4 -2.7 1 -3.2 1 -0.4 2.3 0.3 3 2.4 0.5 1.5 0.5 2.8 -1 3.3 -1.4 0.5 -2.5 -1.2 -3 -2.5m6.1 -4.3c-0.2 -0.6 0 -0.7 0.4 -0.8 0.8 -0.3 1.5 0.2 1.8 1 0.2 0.6 0.4 1 -0.8 1.6 -0.3 0 -0.6 0.2 -0.7 0zm0.7 4.5c0.4 1 -0.4 1 -0.2 1.3 0 0.2 0.2 0.1 0.3 0 0.4 0 0.8 -0.3 1.2 -0.4l0.7 -0.3c0.2 0 0.2 -0.1 0.2 -0.2 -0.1 -0.3 -0.8 0.3 -1.2 -0.6l-0.6 -1.5c0 -0.4 -0.2 -0.4 0.3 -0.6 0.4 -0.1 0.5 -0.1 0.9 0.2l1.2 1.2c0.5 0.4 1 0.8 1.6 0.6 0.3 -0.1 0.7 -0.5 0.6 -0.8 0 0 0 -0.1 -0.1 0h-0.6l-2.2 -2 0.3 -0.5c0.1 -0.3 0.2 -0.7 0 -1.3 -0.2 -0.4 -0.8 -1.6 -2.6 -0.9l-1.6 0.7 -1 0.3v0.2c0.1 0.3 0.8 -0.4 1.2 0.6z"
android:fillColor="#703D29" />
<group
android:scaleX="0.512"
android:scaleY="0.512"
android:translateY="76.8">
<path
android:pathData="M412.7 249.3h82.1v82h-82.1z"
android:fillColor="#D52B1E" />
<path
android:pathData="M451.2 313.8s0 3 -0.8 5.3c-1 2.7 -1 2.7 -1.9 4a13.2 13.2 0 0 1 -3.8 4c-2 1.2 -4 1.8 -6 1.6 -5.4 -0.4 -8 -6.4 -9.2 -11.2 -1.3 -5.1 -5 -8 -7.5 -6 -1.4 1 -1.4 2.8 -0.3 4.6a9 9 0 0 0 4.1 2.8l-2.9 3.7s-6.3 -0.8 -7.5 -7.4c-0.5 -2.5 0.7 -7.1 4.9 -8.5 5.3 -1.8 8.6 2 10.3 5.2 2.2 4.4 3.2 12.4 9.4 11.2 3.4 -0.7 5 -5.6 5 -7.9l2.4 -2.6 3.7 1.2z"
android:fillColor="#FFFFFF" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="907.5">
<path
android:pathData="M451.2 313.8s0 3 -0.8 5.3c-1 2.7 -1 2.7 -1.9 4a13.2 13.2 0 0 1 -3.8 4c-2 1.2 -4 1.8 -6 1.6 -5.4 -0.4 -8 -6.4 -9.2 -11.2 -1.3 -5.1 -5 -8 -7.5 -6 -1.4 1 -1.4 2.8 -0.3 4.6a9 9 0 0 0 4.1 2.8l-2.9 3.7s-6.3 -0.8 -7.5 -7.4c-0.5 -2.5 0.7 -7.1 4.9 -8.5 5.3 -1.8 8.6 2 10.3 5.2 2.2 4.4 3.2 12.4 9.4 11.2 3.4 -0.7 5 -5.6 5 -7.9l2.4 -2.6 3.7 1.2z"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M461.1 279l10.8 -11.7s1.6 -1.3 1.6 -3.4l-2.2 0.4 -0.5 -1.2 -0.1 -1.1 3 -0.7V260l0.3 -1.3 -3.2 0.2 0.3 -1.4 0.5 -1 1.9 -0.4h1.9c1.8 -3.4 9.2 -6.4 14.4 -1 3.8 4 3 11.2 -2 13.2a6.3 6.3 0 0 1 -6.8 -1.1l2 -4c2.7 1.7 5 -0.3 4.8 -2.4 -0.2 -2.7 -2 -4.3 -4.3 -4.5 -2.3 -0.2 -4 1 -5 3 -0.6 1.3 -0.3 2.2 -0.5 3.6 -0.2 1.5 0 2.3 -0.5 3.8a8.8 8.8 0 0 1 -2.4 3.6l-11 12 -43 46.4 -3.2 -3z"
android:fillColor="#FEDF00" />
<path
android:pathData="M429.5 283s2.7 13.4 11.9 33.5c4.7 -1.7 7.4 -2.8 12.4 -2.8 4.9 0 7.6 1 12.3 2.8A171 171 0 0 0 478 283l-24.2 -31z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M456.1 262.4l16.8 21.7s-2.2 10.5 -9 26.3c-2.7 -0.6 -5 -1.1 -7.8 -1.3zm-4.7 0l-16.8 21.7s2.2 10.5 9 26.3c2.7 -0.6 5 -1.1 7.8 -1.3z"
android:fillColor="#FEDF00" />
</group>
<path
android:pathData="M257.8 204.4H300v42h-42z"
android:fillColor="#FEDF00" />
<path
android:pathData="M263.7 204.4h6.3v42h-6.3zm12 0h6.3v42h-6.2zm12 0h6.3v42h-6.2z"
android:fillColor="#D52B1E" />
<path
android:pathData="M211.4 282.8c0.2 0.8 0.4 2 1.1 3.4 0.8 1.2 0.5 1.2 2.2 3a13.8 13.8 0 0 0 6.7 3.6c3.4 1 5.7 1 8.5 0.9 2.2 -0.1 3.9 -0.4 5.3 -0.6 2 -0.2 3.4 -0.4 5.7 -0.5a32.4 32.4 0 0 1 3.1 0c1.2 0 2.4 0.3 3.7 0.5 2.8 0.6 5.6 1.7 5.6 1.7v-43.9h-42v30z"
android:fillColor="#FEDF00" />
<path
android:pathData="M216.3 290.5l2 1.2 2.7 1v-41.8h-4.7zm23.4 2v-41.6H235v42.2l4.7 -0.5zm9.3 -41.6h-4.6v41.7a31 31 0 0 1 4.6 0.8zm-18.6 0v42.7h-4.7v-42.7z"
android:fillColor="#D52B1E"
android:strokeColor="#D52B1E"
android:strokeWidth="0.3" />
<group
android:scaleX="0.512"
android:scaleY="0.512"
android:translateY="76.8">
<path
android:pathData="M585.5 402.4a20.8 20.8 0 0 1 -2.2 6.6c-1.5 2.3 -1 2.3 -4.3 6a26.3 26.3 0 0 1 -13 7 51.8 51.8 0 0 1 -16.6 1.6c-4.3 -0.2 -7.5 -0.7 -10.3 -1 -3.8 -0.6 -6.7 -0.9 -11 -1a62.9 62.9 0 0 0 -6.2 0 83.3 83.3 0 0 0 -18.3 4.2V340h82.2v58.5z"
android:fillColor="#FEDF00" />
<path
android:pathData="M524.6 347l-0.6 0.2 -0.8 0.8c-0.4 0.4 -0.7 0.5 -1.2 0.8l-0.6 0.5c-0.3 0.3 0 0.6 -0.3 1 -0.1 0.4 -0.3 0.6 -0.6 1 -0.4 0.4 -0.7 0.5 -1 1l-1.2 1 -0.3 0.1h-0.6c-0.4 0.2 -0.5 0.6 -0.8 0.8l0.3 0.6 0.8 1.4c0.2 0.3 0.2 0.7 0.5 0.8 0.5 0.2 0.9 0.2 1.3 0.1 0.8 0.2 1.3 0.2 2 0.5l1.5 0.8c0.5 0.3 0.8 0.4 1.3 0.5h1.8v0.3l2 1a1.7 1.7 0 0 0 -0.1 0.4c-0.1 0.3 -0.2 0.7 -0.1 0.8 0.6 1.9 1.2 3 1.5 3.2 0.6 0.2 0.8 0.9 1.1 1.5l-0.3 0.3c-0.6 0.6 -1.2 1 -1.7 1.8 -0.7 1.2 -1.2 1.2 -0.3 2.8l1.5 2.4c0.4 0.7 0.6 1.2 0.8 2 0.2 0.7 0.3 1.2 0.3 2l1 0.3 0.7 -0.6 0.6 -1.2v-1c-0.2 -0.1 -0.3 -0.4 -0.2 -0.7 0 -0.4 0.5 -0.3 0.7 -0.6 0.3 -0.5 -0.4 -0.8 -0.7 -1.1 -0.6 -0.7 -1.4 -0.9 -1.6 -1.9 0 -0.2 0 -0.4 0.4 -0.7l2 -1.8c0.2 0.1 0.6 0.2 1 0.1l1.3 0.4c0.6 0.2 0.9 0 1.2 0h0.4l0.1 0.6c0.1 1 -0.1 3 0.2 3.5l0.3 0.6 0.2 0.6v2l-0.2 1.7c0 0.4 -0.2 0.7 -0.5 1 -0.2 0.4 -0.6 0.4 -1 0.7v1l1.1 0.5 1.3 0.3 0.7 -0.3 0.1 -0.6 0.5 -0.5c0.4 -0.2 0.8 0 0.9 -0.1 0.2 -0.3 0 -0.4 0 -0.8 0 -0.6 -0.2 -1 -0.3 -1.6a11.8 11.8 0 0 1 -0.1 -2.8c0 -0.6 0 -1 0.2 -1.5 0.1 -1 0.4 -1.4 0.6 -2.2 0.3 -1 0.3 -1.6 0.4 -2.5a24.4 24.4 0 0 0 10.1 -0.6c0.8 0.7 1.7 1.2 2.7 1.6v1c0 0.3 0 0.4 0.2 0.7l0.3 0.3c0.3 0 0.5 0 0.7 -0.2 0.2 -0.2 0.2 -0.4 0.2 -0.7v-0.7h1.8v1.1c0.1 0.3 0.3 0.4 0.5 0.4a0.7 0.7 0 0 0 0.6 0c0.3 -0.2 0.2 -0.6 0.3 -1v-0.7l1 -0.4a5.1 5.1 0 0 1 0 0.9l-0.3 0.9c-0.2 0.6 -0.5 0.8 -0.8 1.4 -0.4 0.6 -0.5 1 -1 1.5l-0.6 0.7 -0.6 0.9 -0.9 1c-0.7 0.6 -1.2 0.2 -2 0.9l-0.3 1 1.4 0.6 1.3 0.2 0.4 -0.2c0 -0.3 0 -0.6 0.3 -0.8 0.2 -0.3 0.4 -0.3 0.7 -0.4 0.4 0 0.8 0 1 -0.2 0.4 -0.3 0.4 -1 0.7 -1.5a12.7 12.7 0 0 1 3 -3.9l1.7 -1.4c0.2 -0.4 0.5 -0.5 0.5 -1l-0.2 -0.6 -0.2 -1c1.5 0.7 1 0.7 1.2 1.4 0.3 0.6 0 1 0.1 1.7 0.1 0.8 0.5 1.1 0.5 1.9 0.1 0.9 -0.1 1.4 -0.3 2.3 -0.1 0.8 -0.1 1.3 -0.5 2a3.8 3.8 0 0 1 -1.1 1.5l-0.6 0.5 -0.1 1 1.1 0.4 1.6 0.4 0.4 -0.3c0.2 -0.7 0 -1.7 0.4 -1.7 0.4 -0.1 0.7 0 0.8 -0.3v-0.7l0.7 -4.5 0.4 -1.9 0.4 -1.7c0.7 -2 -0.2 -2.3 -1 -3.6 -0.5 -0.7 -0.7 -1 -0.7 -1.5V362a42.7 42.7 0 0 1 0 -2.8l0.4 -0.2c1.2 -0.7 1.7 -0.9 2.4 -2.5a3.4 3.4 0 0 0 0.3 -1.5v-1l-0.4 -1a3.2 3.2 0 0 0 -0.6 -0.8c-0.7 -1 -1.7 -1.1 -2.7 -1.5 -1.5 -0.5 -2.5 -0.4 -4 -0.5 -1.8 -0.2 -2.7 -0.2 -4.4 0 -2 0 -3.1 0.4 -5.1 0.7l-4.9 0.4c-2.3 0 -4.4 -0.5 -5.8 -0.4 -2.4 0.2 -2.5 0.8 -6.2 1.1a67 67 0 0 1 -3.8 0.2l-2.2 -0.7c0.9 -0.3 1.1 -0.5 1.5 -1 0.3 -0.4 0.2 -0.7 0.6 -1.1l0.7 -1a2.2 2.2 0 0 0 -0.9 -0.4h-1a3 3 0 0 0 -1.2 0.3l-0.8 0.6 -2.2 -1.2a8.8 8.8 0 0 0 -3 -0.9zm2 11.8"
android:fillColor="#D52B1E" />
<path
android:pathData="M568.8 359.5l-0.8 0.3c-0.9 0.4 -1.6 0.4 -2.6 0.5 -2.6 0.2 -4.3 -1.1 -7 -0.9 -1.4 0.1 -2 1.2 -3.5 1.6a9.3 9.3 0 0 1 -1.7 0.2l0.5 -1s-1.2 0.3 -2 0.3a7.5 7.5 0 0 1 -1.6 -0.2l1 -1 -1.3 -0.2a4 4 0 0 1 -1 -0.7 20.5 20.5 0 0 0 1.7 -0.3c1.5 -0.4 2 -1.2 3.9 -1.4 1.1 0 3 0 7.6 0.8 3 0.5 4.4 0.2 5.5 -0.3 0.8 -0.3 1 -1 1.1 -1.8 0.1 -0.8 -0.4 -1.4 -0.8 -1.8 -0.1 0 -0.5 -0.3 -1.1 -0.4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M524.8 350.6c-0.5 0 -0.9 0 -1.3 0.3 -0.5 0.3 -0.6 0.7 -1 1.1 0.5 0.1 0.8 0.4 1.2 0.3 0.4 0 0.5 -0.2 0.8 -0.5 0.3 -0.4 0.4 -0.7 0.4 -1.2z"
android:fillColor="#FCD900"
android:strokeColor="#FEDF00"
android:strokeWidth="0.5" />
<path
android:pathData="M536 363.8a13.6 13.6 0 0 0 1 2.3c0.2 0.8 0 1.2 0.2 2v1.6m6.8 -7l-0.3 1.3 -1 3.5v0.7m-11 -4c0.9 0.2 0.6 3.3 1.9 4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M560.1 369.8l0.4 -0.3a8.2 8.2 0 0 0 2.7 -1.8"
android:strokeColor="#FEDF00"
android:strokeWidth="1" />
<path
android:pathData="M552.4 368c3.5 -0.9 5.9 -2.6 7.6 -2.9m-4 -1.5h0.8c1.5 -0.3 1.7 0.6 2.7 1.2 1.9 1 2.1 2.3 4.3 3.4l0.4 0.1 0.8 0.4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M517.7 354.5h0.7l0.8 -0.2c0.3 0 0.5 0 0.7 0.2 0.2 0 0.2 0.1 0.3 0.3 0 0.2 0.2 0.3 0.1 0.5 0 0.2 -0.3 0.4 -0.6 0.4 -0.2 0 -0.4 0 -0.5 -0.3a0.5 0.5 0 0 1 0 -0.4 1 1 0 0 1 -0.9 0 1 1 0 0 1 -0.6 -0.5z"
android:fillColor="#FCD900"
android:strokeColor="#FEDF00"
android:strokeWidth="0.5" />
<path
android:pathData="M525.1 364.2l-2 -0.9c0.4 -0.2 0.7 -0.2 1 -0.5 0.3 -0.4 0.3 -0.8 0.5 -1.3s0.2 -1 0.7 -1.4c0.3 -0.2 0.8 -0.2 1.1 -0.1 0.4 0 0.8 0.4 0.9 0.7 0 0.6 -0.2 1 -0.3 1.5 0 0.6 -0.3 0.9 -0.2 1.4 0 0.4 0.2 0.6 0.4 1l-2 -0.4zm-1 1a0.6 0.6 0 1 1 0.7 0.5 0.6 0.6 0 0 1 -0.7 -0.6zm-1.7 -16.6h-0.2c-0.4 -0.4 -0.4 -0.8 -0.6 -1.2a4 4 0 0 1 -0.3 -1.2v-2c0 -0.3 0 -0.6 -0.2 -0.9 0 -0.2 -0.4 -0.3 -0.3 -0.4 0 -0.1 0.3 0 0.4 0 0.4 0 0.6 0.1 1 0.4 0.3 0.3 0.5 0.6 0.6 1l0.4 1.5 0.3 0.8 0.5 0.6 -0.7 0.8zm3.6 10.6l2.2 1a9.2 9.2 0 0 0 3.5 -3.8c0.9 -1.8 1 -2.7 1.4 -4.4l-1.8 -0.5h-0.4c-0.5 1.8 -0.7 2.7 -1.6 4.2 -0.8 1.3 -1.7 2.3 -2.6 3zm5 18.2l0.8 -1.3 1.4 -1.1h0.4a8.7 8.7 0 0 1 -0.5 2.8l-0.4 1 -0.5 0.5c-0.5 -0.8 -1.3 -1.3 -1.3 -2zm33 1.8l1.4 0.6 1.5 0.9v0.5l-1.5 0.2a8.4 8.4 0 0 1 -1.3 0h-1l-0.6 -0.4c0.5 -0.7 0.8 -1.6 1.4 -1.8zm-9.8 -2l1.4 0.5 1.5 1c0 0.1 0.1 0.3 0 0.4a9 9 0 0 1 -2.7 0.3l-1 -0.1 -0.7 -0.3c0.6 -0.7 0.9 -1.7 1.5 -1.8m-17.4 2.1l1.5 0.5 1.5 1v0.5a9 9 0 0 1 -2.8 0.2h-1l-0.6 -0.4c0.5 -0.7 0.8 -1.6 1.4 -1.8m-9 -29.8c-0.6 -0.3 -1 -1 -0.6 -1.6 0.1 -0.2 0.4 -0.2 0.6 -0.4 0.2 -0.3 0.1 -0.5 0 -0.8l-0.1 -1 -0.2 -1c0 -0.6 0 -1 0.4 -1.6 0.2 -0.3 0.7 -0.6 0.8 -0.6 0.2 0.1 0 0.5 0 0.8 0 0.5 0.1 0.7 0.3 1.2l0.7 1.3c0.2 0.6 0.4 0.8 0.4 1.4 0 0.5 0 0.7 -0.2 1.2a2 2 0 0 1 -0.6 0.8 2 2 0 0 1 -0.8 0.4 1.1 1.1 0 0 1 -0.6 0z"
android:fillColor="#0065BD" />
<group
android:translateY="36.6">
<path
android:pathData="M524.6 347l-0.6 0.2 -0.8 0.8c-0.4 0.4 -0.7 0.5 -1.2 0.8l-0.6 0.5c-0.3 0.3 0 0.6 -0.3 1 -0.1 0.4 -0.3 0.6 -0.6 1 -0.4 0.4 -0.7 0.5 -1 1l-1.2 1 -0.3 0.1h-0.6c-0.4 0.2 -0.5 0.6 -0.8 0.8l0.3 0.6 0.8 1.4c0.2 0.3 0.2 0.7 0.5 0.8 0.5 0.2 0.9 0.2 1.3 0.1 0.8 0.2 1.3 0.2 2 0.5l1.5 0.8c0.5 0.3 0.8 0.4 1.3 0.5h1.8v0.3l2 1a1.7 1.7 0 0 0 -0.1 0.4c-0.1 0.3 -0.2 0.7 -0.1 0.8 0.6 1.9 1.2 3 1.5 3.2 0.6 0.2 0.8 0.9 1.1 1.5l-0.3 0.3c-0.6 0.6 -1.2 1 -1.7 1.8 -0.7 1.2 -1.2 1.2 -0.3 2.8l1.5 2.4c0.4 0.7 0.6 1.2 0.8 2 0.2 0.7 0.3 1.2 0.3 2l1 0.3 0.7 -0.6 0.6 -1.2v-1c-0.2 -0.1 -0.3 -0.4 -0.2 -0.7 0 -0.4 0.5 -0.3 0.7 -0.6 0.3 -0.5 -0.4 -0.8 -0.7 -1.1 -0.6 -0.7 -1.4 -0.9 -1.6 -1.9 0 -0.2 0 -0.4 0.4 -0.7l2 -1.8c0.2 0.1 0.6 0.2 1 0.1l1.3 0.4c0.6 0.2 0.9 0 1.2 0h0.4l0.1 0.6c0.1 1 -0.1 3 0.2 3.5l0.3 0.6 0.2 0.6v2l-0.2 1.7c0 0.4 -0.2 0.7 -0.5 1 -0.2 0.4 -0.6 0.4 -1 0.7v1l1.1 0.5 1.3 0.3 0.7 -0.3 0.1 -0.6 0.5 -0.5c0.4 -0.2 0.8 0 0.9 -0.1 0.2 -0.3 0 -0.4 0 -0.8 0 -0.6 -0.2 -1 -0.3 -1.6a11.8 11.8 0 0 1 -0.1 -2.8c0 -0.6 0 -1 0.2 -1.5 0.1 -1 0.4 -1.4 0.6 -2.2 0.3 -1 0.3 -1.6 0.4 -2.5a24.4 24.4 0 0 0 10.1 -0.6c0.8 0.7 1.7 1.2 2.7 1.6v1c0 0.3 0 0.4 0.2 0.7l0.3 0.3c0.3 0 0.5 0 0.7 -0.2 0.2 -0.2 0.2 -0.4 0.2 -0.7v-0.7h1.8v1.1c0.1 0.3 0.3 0.4 0.5 0.4a0.7 0.7 0 0 0 0.6 0c0.3 -0.2 0.2 -0.6 0.3 -1v-0.7l1 -0.4a5.1 5.1 0 0 1 0 0.9l-0.3 0.9c-0.2 0.6 -0.5 0.8 -0.8 1.4 -0.4 0.6 -0.5 1 -1 1.5l-0.6 0.7 -0.6 0.9 -0.9 1c-0.7 0.6 -1.2 0.2 -2 0.9l-0.3 1 1.4 0.6 1.3 0.2 0.4 -0.2c0 -0.3 0 -0.6 0.3 -0.8 0.2 -0.3 0.4 -0.3 0.7 -0.4 0.4 0 0.8 0 1 -0.2 0.4 -0.3 0.4 -1 0.7 -1.5a12.7 12.7 0 0 1 3 -3.9l1.7 -1.4c0.2 -0.4 0.5 -0.5 0.5 -1l-0.2 -0.6 -0.2 -1c1.5 0.7 1 0.7 1.2 1.4 0.3 0.6 0 1 0.1 1.7 0.1 0.8 0.5 1.1 0.5 1.9 0.1 0.9 -0.1 1.4 -0.3 2.3 -0.1 0.8 -0.1 1.3 -0.5 2a3.8 3.8 0 0 1 -1.1 1.5l-0.6 0.5 -0.1 1 1.1 0.4 1.6 0.4 0.4 -0.3c0.2 -0.7 0 -1.7 0.4 -1.7 0.4 -0.1 0.7 0 0.8 -0.3v-0.7l0.7 -4.5 0.4 -1.9 0.4 -1.7c0.7 -2 -0.2 -2.3 -1 -3.6 -0.5 -0.7 -0.7 -1 -0.7 -1.5V362a42.7 42.7 0 0 1 0 -2.8l0.4 -0.2c1.2 -0.7 1.7 -0.9 2.4 -2.5a3.4 3.4 0 0 0 0.3 -1.5v-1l-0.4 -1a3.2 3.2 0 0 0 -0.6 -0.8c-0.7 -1 -1.7 -1.1 -2.7 -1.5 -1.5 -0.5 -2.5 -0.4 -4 -0.5 -1.8 -0.2 -2.7 -0.2 -4.4 0 -2 0 -3.1 0.4 -5.1 0.7l-4.9 0.4c-2.3 0 -4.4 -0.5 -5.8 -0.4 -2.4 0.2 -2.5 0.8 -6.2 1.1a67 67 0 0 1 -3.8 0.2l-2.2 -0.7c0.9 -0.3 1.1 -0.5 1.5 -1 0.3 -0.4 0.2 -0.7 0.6 -1.1l0.7 -1a2.2 2.2 0 0 0 -0.9 -0.4h-1a3 3 0 0 0 -1.2 0.3l-0.8 0.6 -2.2 -1.2a8.8 8.8 0 0 0 -3 -0.9zm2 11.8"
android:fillColor="#D52B1E" />
<path
android:pathData="M568.8 359.5l-0.8 0.3c-0.9 0.4 -1.6 0.4 -2.6 0.5 -2.6 0.2 -4.3 -1.1 -7 -0.9 -1.4 0.1 -2 1.2 -3.5 1.6a9.3 9.3 0 0 1 -1.7 0.2l0.5 -1s-1.2 0.3 -2 0.3a7.5 7.5 0 0 1 -1.6 -0.2l1 -1 -1.3 -0.2a4 4 0 0 1 -1 -0.7 20.5 20.5 0 0 0 1.7 -0.3c1.5 -0.4 2 -1.2 3.9 -1.4 1.1 0 3 0 7.6 0.8 3 0.5 4.4 0.2 5.5 -0.3 0.8 -0.3 1 -1 1.1 -1.8 0.1 -0.8 -0.4 -1.4 -0.8 -1.8 -0.1 0 -0.5 -0.3 -1.1 -0.4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M524.8 350.6c-0.5 0 -0.9 0 -1.3 0.3 -0.5 0.3 -0.6 0.7 -1 1.1 0.5 0.1 0.8 0.4 1.2 0.3 0.4 0 0.5 -0.2 0.8 -0.5 0.3 -0.4 0.4 -0.7 0.4 -1.2z"
android:fillColor="#FCD900"
android:strokeColor="#FEDF00"
android:strokeWidth="0.5" />
<path
android:pathData="M536 363.8a13.6 13.6 0 0 0 1 2.3c0.2 0.8 0 1.2 0.2 2v1.6m6.8 -7l-0.3 1.3 -1 3.5v0.7m-11 -4c0.9 0.2 0.6 3.3 1.9 4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M560.1 369.8l0.4 -0.3a8.2 8.2 0 0 0 2.7 -1.8"
android:strokeColor="#FEDF00"
android:strokeWidth="1" />
<path
android:pathData="M552.4 368c3.5 -0.9 5.9 -2.6 7.6 -2.9m-4 -1.5h0.8c1.5 -0.3 1.7 0.6 2.7 1.2 1.9 1 2.1 2.3 4.3 3.4l0.4 0.1 0.8 0.4"
android:strokeColor="#FEDF00"
android:strokeWidth="1"
android:strokeLineCap="round" />
<path
android:pathData="M517.7 354.5h0.7l0.8 -0.2c0.3 0 0.5 0 0.7 0.2 0.2 0 0.2 0.1 0.3 0.3 0 0.2 0.2 0.3 0.1 0.5 0 0.2 -0.3 0.4 -0.6 0.4 -0.2 0 -0.4 0 -0.5 -0.3a0.5 0.5 0 0 1 0 -0.4 1 1 0 0 1 -0.9 0 1 1 0 0 1 -0.6 -0.5z"
android:fillColor="#FCD900"
android:strokeColor="#FEDF00"
android:strokeWidth="0.5" />
<path
android:pathData="M525.1 364.2l-2 -0.9c0.4 -0.2 0.7 -0.2 1 -0.5 0.3 -0.4 0.3 -0.8 0.5 -1.3s0.2 -1 0.7 -1.4c0.3 -0.2 0.8 -0.2 1.1 -0.1 0.4 0 0.8 0.4 0.9 0.7 0 0.6 -0.2 1 -0.3 1.5 0 0.6 -0.3 0.9 -0.2 1.4 0 0.4 0.2 0.6 0.4 1l-2 -0.4zm-1 1a0.6 0.6 0 1 1 0.7 0.5 0.6 0.6 0 0 1 -0.7 -0.6zm-1.7 -16.6h-0.2c-0.4 -0.4 -0.4 -0.8 -0.6 -1.2a4 4 0 0 1 -0.3 -1.2v-2c0 -0.3 0 -0.6 -0.2 -0.9 0 -0.2 -0.4 -0.3 -0.3 -0.4 0 -0.1 0.3 0 0.4 0 0.4 0 0.6 0.1 1 0.4 0.3 0.3 0.5 0.6 0.6 1l0.4 1.5 0.3 0.8 0.5 0.6 -0.7 0.8zm3.6 10.6l2.2 1a9.2 9.2 0 0 0 3.5 -3.8c0.9 -1.8 1 -2.7 1.4 -4.4l-1.8 -0.5h-0.4c-0.5 1.8 -0.7 2.7 -1.6 4.2 -0.8 1.3 -1.7 2.3 -2.6 3zm5 18.2l0.8 -1.3 1.4 -1.1h0.4a8.7 8.7 0 0 1 -0.5 2.8l-0.4 1 -0.5 0.5c-0.5 -0.8 -1.3 -1.3 -1.3 -2zm33 1.8l1.4 0.6 1.5 0.9v0.5l-1.5 0.2a8.4 8.4 0 0 1 -1.3 0h-1l-0.6 -0.4c0.5 -0.7 0.8 -1.6 1.4 -1.8zm-9.8 -2l1.4 0.5 1.5 1c0 0.1 0.1 0.3 0 0.4a9 9 0 0 1 -2.7 0.3l-1 -0.1 -0.7 -0.3c0.6 -0.7 0.9 -1.7 1.5 -1.8m-17.4 2.1l1.5 0.5 1.5 1v0.5a9 9 0 0 1 -2.8 0.2h-1l-0.6 -0.4c0.5 -0.7 0.8 -1.6 1.4 -1.8m-9 -29.8c-0.6 -0.3 -1 -1 -0.6 -1.6 0.1 -0.2 0.4 -0.2 0.6 -0.4 0.2 -0.3 0.1 -0.5 0 -0.8l-0.1 -1 -0.2 -1c0 -0.6 0 -1 0.4 -1.6 0.2 -0.3 0.7 -0.6 0.8 -0.6 0.2 0.1 0 0.5 0 0.8 0 0.5 0.1 0.7 0.3 1.2l0.7 1.3c0.2 0.6 0.4 0.8 0.4 1.4 0 0.5 0 0.7 -0.2 1.2a2 2 0 0 1 -0.6 0.8 2 2 0 0 1 -0.8 0.4 1.1 1.1 0 0 1 -0.6 0z"
android:fillColor="#0065BD" />
</group>
</group>
<path
android:pathData="M211.3 204.4h42v42h-42zm46.5 0H300v42h-42zm-46.4 78.4c0.2 0.8 0.4 2 1.1 3.4 0.8 1.2 0.5 1.2 2.2 3a13.8 13.8 0 0 0 6.7 3.6c3.4 1 5.7 1 8.5 0.9 2.2 -0.1 3.9 -0.4 5.3 -0.6 2 -0.2 3.4 -0.4 5.7 -0.5a32.4 32.4 0 0 1 3.1 0c1.2 0 2.4 0.3 3.7 0.5 2.8 0.6 5.6 1.7 5.6 1.7v-43.9h-42v30zm88.4 0c-0.1 0.8 -0.4 2 -1.1 3.4 -0.8 1.2 -0.5 1.2 -2.2 3a13.8 13.8 0 0 1 -6.7 3.6 26.1 26.1 0 0 1 -8.5 0.9c-2.2 -0.1 -3.9 -0.4 -5.3 -0.6a55.6 55.6 0 0 0 -5.6 -0.5 32.4 32.4 0 0 0 -3.2 0c-1.2 0 -2.4 0.3 -3.7 0.5 -2.8 0.6 -5.7 1.7 -5.7 1.7v-43.9H300v30z"
android:strokeColor="#703D29"
android:strokeWidth="0.4" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v170.7H0z"
android:fillColor="#00732F" />
<path
android:pathData="M0 170.7h512v170.6H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 341.3h512V512H0z"
android:fillColor="#000001" />
<path
android:pathData="M0 0h180v512H0z"
android:fillColor="#FF0000" />
</vector>
@@ -0,0 +1,639 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#000001" />
<path
android:pathData="M341.3 0H512v512H341.3z"
android:fillType="evenOdd"
android:fillColor="#009900" />
<path
android:pathData="M170.7 0h170.6v512H170.7z"
android:fillType="evenOdd"
android:fillColor="#BF0000" />
<group
android:scaleX="0.84611"
android:scaleY="0.84611"
android:translateX="2.2"
android:translateY="86.8">
<path
android:pathData="M319.5 225.8h8.3c0 3.2 2 6.6 4.5 8.5h-16c2.5 -2.2 3.2 -5 3.2 -8.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M266.7 178.5l4.6 5 57 0.2 4.6 -5 -14.6 -0.3 -7 -5h-23l-6.6 5.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M290 172.7h19.7c2.6 -1.4 3.5 -5.9 3.5 -8.4 0 -7.4 -5.3 -11 -10.5 -11.2 -0.8 0 -1.7 -0.6 -1.9 -1.3 -0.5 -1.6 -0.4 -2.7 -1 -2.6 -0.4 0 -0.3 1 -0.7 2.4 -0.3 0.8 -1.1 1.5 -2 1.6 -6.4 0.3 -10.6 5 -10.5 11.1 0.1 4 0.6 6.4 3.4 8.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.7 242.8H342l-7.5 -6.1h-69.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M296.4 219.7l1.5 4.6h3.5l-2.8 -4.6zm-2 4.6l1 4.6h4l-1.5 -4.6zm7 0l2.8 4.6h5.9l-4.6 -4.6zm-34.5 10.4c3.1 -2.9 5.1 -5.3 5.1 -8.8h7.6c0 2 0.7 3.1 1.8 3h7.7v-4.5h-5.6v-24.7c-0.2 -8.8 10.6 -13.8 15 -13.8h-26.3v-0.8h55.3v0.8H301c7.9 0 15.5 7.5 15.6 13.8v7h-1l-0.1 -6.9c0 -6.9 -8.7 -13.3 -15.7 -13.1 -6 0.1 -15.4 5.9 -15.3 13v2.2l14.3 0.1 -0.1 2.5 2.2 1.4 4.5 1.4v3.8l3.2 0.9v3.7l3.8 1.7v3.8l2.5 1.5 -0.1 3.9 3.3 2.3h-7.8l4.9 5.5h-7.3l-3.6 -5.5h-4.7l2.1 5.4h-5l-1.3 -5.4h-6.2v5.8H267zm22.2 -15v4.6h5.3l-1 -4.6H289z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M289.4 211.7h3.3v7.6h-3.3z"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M284.7 219.8h3.2v-5.6c0 -2.4 2.2 -4.9 3.2 -5 1.2 0 2.9 2.3 3 4.8v5.8h3.4v-14.4h-12.8zm25.6 3.3h4v3.2h-4zm-2.4 -5.3h4v3.1h-4zm-3.9 -5.4h4v3.1h-4zm-3.3 -4.5h4v3.1h-4z"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M298 219.8l4.2 0.2 7.3 6.4v-3.8l-2.5 -1.8v-3l-3.6 -2v-3.3l-3.5 -1.2V207l-1.7 -1.5z"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M315.4 210.3h1v7.1h-1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.3 186.5c-1.2 -2 -2.7 2.8 -7.8 6.3 -2.3 1.6 -4 5.9 -4 8.7 0 2 0.2 3.9 0 5.8 -0.1 1.1 -1.4 3.8 -0.5 4.5 2.2 1.6 5.1 5.4 6.4 6.7 1.2 1 2.2 -5.3 3 -8 1 -3 0.6 -6.7 3.2 -9.4 1.8 -2 6.4 -3.8 6 -4.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257 201.9a10 10 0 0 0 -1.6 -2.6 6.1 6.1 0 0 0 -2.4 -1.8 5.3 5.3 0 0 1 -2.4 -1.5 3.6 3.6 0 0 1 -0.8 -1.5 5.9 5.9 0 0 1 0 -2l-0.3 0.3c-2.3 1.6 -4 5.9 -4 8.7a28.5 28.5 0 0 0 0 2.3c0.2 0.5 0.3 1 0.6 1.3l1.1 0.8 2.7 0.7a7.1 7.1 0 0 1 2.6 2 10.5 10.5 0 0 1 1.8 2.6l0.2 -0.8c0.8 -2.7 0.7 -5.9 2.6 -8.5z"
android:fillType="evenOdd"
android:fillColor="#BF0000"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M249.8 192.4c-0.5 3.3 1.4 4.5 3.2 5.1 1.8 0.7 3.3 2.6 4 4.4m-11.7 1.5c0.8 3 2.8 2.6 4.6 3.2 1.8 0.7 3.7 3 4.5 4.8"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M255.6 184.5l1 -0.6 17.7 29.9 -1 0.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.5 183.3a2 2 0 1 1 -4 0 2 2 0 1 1 4 0zm15.2 -24h7.2v1.6h-7.2zm0 3.1h7.2v13.8h-7.2zm-0.4 -5h8c0.2 -2.7 -2.5 -5.6 -4 -5.6 -1.6 0.1 -4.1 3 -4 5.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M292.6 155.8c-1.5 0.6 -2.7 2.3 -3.4 4.3 -0.7 2 -1 4.3 -0.6 6.1 0 0.7 0.3 1.1 0.5 1.5 0.2 0.3 0.4 0.5 0.6 0.5 0.3 0 0.6 0 0.7 -0.3l0.2 -0.8c-0.1 -2 -0.1 -3.8 0.3 -5.4a7.7 7.7 0 0 1 3 -4.4c0.3 -0.2 0.4 -0.5 0.5 -0.7a1 1 0 0 0 -0.3 -0.7c-0.4 -0.3 -1 -0.4 -1.5 -0.1m0.2 0.4c0.4 -0.2 0.8 0 1 0.1l0.1 0.2c0 0.1 0 0.2 -0.3 0.4a8.2 8.2 0 0 0 -3.1 4.6 16.7 16.7 0 0 0 -0.3 5.6 1 1 0 0 1 -0.2 0.6s0 0.1 -0.2 0c0 0 -0.2 0 -0.4 -0.3a3.9 3.9 0 0 1 -0.4 -1.2c-0.3 -1.8 0 -4 0.7 -6 0.7 -1.8 1.8 -3.4 3 -4z"
android:fillType="evenOdd"
android:fillColor="#BD6B00" />
<path
android:pathData="M295.2 157.7c-1.5 0.7 -2.5 2.3 -3 4.2a13.6 13.6 0 0 0 -0.3 5.9c0.2 1.3 1 2 1.6 2 0.3 0.1 0.6 0 0.8 -0.3 0.2 -0.3 0.3 -0.6 0.2 -1 -0.4 -1.6 -0.5 -3.4 -0.3 -5.1 0.3 -1.7 1 -3.2 2.2 -4.1 0.3 -0.3 0.5 -0.5 0.5 -0.8a0.8 0.8 0 0 0 -0.2 -0.6c-0.4 -0.3 -1 -0.4 -1.5 -0.2m0.2 0.5c0.4 -0.2 0.8 -0.1 1 0l0.1 0.3 -0.3 0.4a6.5 6.5 0 0 0 -2.4 4.4c-0.3 1.8 -0.1 3.7 0.2 5.2 0.1 0.4 0 0.6 0 0.8l-0.5 0.1c-0.3 0 -1 -0.5 -1.2 -1.7 -0.3 -1.7 -0.2 -3.9 0.3 -5.7 0.5 -1.8 1.5 -3.3 2.8 -3.8"
android:fillType="evenOdd"
android:fillColor="#BD6B00" />
<path
android:pathData="M272.3 187.4h8v11h-8zm0.5 17.4h7.7v2.4h-7.7zm-0.2 4.1h8v8.7h-8zm-0.6 10.5h8.7v4.9H272zm1.1 -16.6h7l1.4 -2.4h-9.6zm9.4 -8.6l0.1 -6h4.8a17.4 17.4 0 0 0 -4.9 6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M273.6 196.7c0 1.3 1.5 0.8 1.5 0.1v-5.6c0 -1 2.4 -0.8 2.4 -0.1v6c0 1 1.7 0.9 1.6 0v-7c0 -2.2 -5.5 -2.1 -5.5 -0.1zm0 13.3h5.7v7h-5.7z"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M277.2 213h2v1h-2zm-3.5 0h2v1h-2zm2 -3h1.5v3h-1.5zm0 4h1.5v3.1h-1.5zM244 139c0.4 5.5 -1.4 8.6 -4.3 8.1 -0.8 -3 1 -5.1 4.3 -8.1zm-6.5 12.3c-2.6 -1.3 -0.7 -11.5 0.3 -15.8 0.7 5.5 2 13.3 -0.3 15.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M238.4 151.8c4.4 1.5 8 -3.2 9.1 -8.7 -3.6 5 -9.5 5 -9 8.7zm-3.3 5.1c-3.4 -0.9 -1.4 -11.7 -0.7 -16 0.7 4.5 3.1 14.5 0.7 16zm1.2 -0.3c0.2 -3.7 3.9 -2.7 6.5 -4.7 -0.5 2 -2 5.2 -6.5 4.7zm-4.2 5c-3.4 -1 -1.4 -12.6 -1.6 -17.4 1 4.2 4.2 16.3 1.6 17.4zm1.6 -0.5c2.8 0.9 6.5 -1 6.8 -4.3 -2.5 1.7 -6.3 0.4 -6.8 4.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.5 166.7c-3.2 0.3 -1.8 -9.6 -1.8 -18.8 1.2 8.6 4.5 16.5 1.8 18.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M230.7 166.3c2.2 1 6.1 -0.7 7.2 -4.4 -4 1.7 -6.6 0 -7.2 4.4zm25.6 -22.2c-0.6 4.9 -2.6 7.7 -5.5 7.2 -0.8 -3 1.6 -5 5.5 -7.2zm-7.8 12.4c4.9 0.7 6.6 -3 10 -7.9 -4.7 3.4 -10.2 4 -10 8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M247 156c-2.6 -3.2 0 -7.3 2 -10.7 -0.4 5.1 1.3 8 -2 10.7zm-1 5.3c-0.4 -3.2 5 -3.9 7.4 -5.6 -0.9 1.8 -2 6.7 -7.5 5.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M244.8 161.3c-3.7 -0.4 -2.2 -6.7 0.5 -10.1 -1.1 4.8 2 8.1 -0.5 10.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M242 166.6c-4.2 -2 -1.5 -7.2 0 -10.3 -0.6 4.1 2.8 7.2 0 10.2z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M242.8 166c2.2 3 6.5 -0.8 7.4 -5.2 -3.7 3.1 -6.5 2.6 -7.4 5.3zm-9.6 20.3c-0.4 -4.3 2.8 -12 0.5 -16.2 -0.3 -0.6 0.7 -2.1 1.4 -1.2 1 1.5 2 5.7 2.5 4.1 0.4 -1.7 0.5 -4.6 2 -5.2 1 -0.3 2.3 -0.6 1.9 1 -0.4 1.4 -1.2 3.4 -0.3 3.5 0.5 0 2 -2 3.3 -3 1 -0.8 2.6 0.6 1 1.8 -4.8 4 -9.5 5.9 -12.3 15.2zm-8.7 64.5c-0.6 0 -1.3 -0.3 -0.6 0.6 5.7 7 7.3 9 15.6 8 8.3 -1.1 10.3 -3.4 16.2 -6.7a14.6 14.6 0 0 1 11.2 -1c1.6 0.5 2.6 0.5 1.4 -0.7 -1.2 -1.1 -2.5 -2.7 -4 -3.8a17.5 17.5 0 0 0 -12.7 -2.7c-6 1 -11.1 4.9 -17.2 6.4a25 25 0 0 1 -9.9 0zm47.8 12.5c1 0.2 1.7 2.2 2.3 0.9 0.8 -2.3 0.2 -4 -0.8 -3.9 -1.2 0.3 -3.1 3 -1.5 3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M220.6 183c-1.2 -1.4 -0.9 -1.8 1 -1.9 1.4 0 4.2 1 5.3 0.1 1 -0.7 0.5 -3.7 1 -5 0.2 -0.9 0.7 -2 2 -0.2 3.6 5.8 8 12.8 10 19.6 1 3.8 0 9.8 -3.4 13.8 0 -3.4 -1.2 -5.7 -2.7 -8.6 -2 -3.7 -9.1 -14 -13.2 -17.9z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M235.5 213.4c4 0 4.7 -5.3 4.7 -6.8 -2 0.4 -5.4 3.7 -4.7 6.8zm34.5 51.9c2.8 0.6 2.7 -6.2 -0.2 -9.1 1.3 4.4 -2 8.4 0.1 9zm-1.2 -0.1c0.2 3.2 -8 -0.4 -10 -3 4.8 2.1 9.8 0.4 10 3zm-3.5 -4.6c0.3 3.1 -7 0.3 -9.3 -2.1 4.9 1.6 9 -0.5 9.3 2zm1.3 0.4c2.9 0.7 2.4 -6.4 -0.4 -8.8 1.4 4.7 -1.8 8.1 0.4 8.8zm-3 -4.3c2.9 0.7 1.2 -5.4 -0.9 -7.8 0.4 4.4 -1 7.5 1 7.8zm-1.5 0c0.3 3.2 -5.4 0.8 -7.6 -2.3 4.8 1.5 7.3 -0.3 7.6 2.3zm-1.5 -2.5c1.8 -1.3 -0.1 -4.8 -3.7 -4.6 0.4 2.1 1.6 5.9 3.7 4.6zm14 14.7c0.1 3.2 -8 1.6 -10.6 -1.8 5.2 1 10.3 -0.8 10.5 1.8zm-32.4 -5.8c0.3 3.2 -8.6 -0.4 -10.8 -3.4 4.7 1.6 10.5 0.8 10.8 3.4zm5.4 1.3c1.9 -1.3 -1.9 -4.7 -5 -5.5 0.4 2.1 3 6.8 5 5.6zm0.6 2.3c0.2 2.9 -9.5 1.3 -12 -1.4 8.3 1.5 11.7 -1.1 12 1.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M252.8 268.6c1 2.7 -8.3 2 -11.6 0.5 5.3 0 10.8 -2.4 11.6 -0.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.1 270.6c1 2.4 -7.6 2.4 -11.8 1 5.6 0 10.8 -3.4 11.8 -1zm6.3 1.3c1.6 2.9 -7.6 3.1 -10.5 1.7 5.2 -0.7 9.2 -4 10.5 -1.7zm-10.7 -4.9c-2.9 1.8 -2.7 -3.6 -5 -7.3 3.6 3.3 7 5.6 5 7.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.9 269c-2.4 2.1 -4.4 -5.3 -6.6 -9.5 3.6 4 8.8 7.7 6.6 9.4zm6.8 2c-2 2.4 -8 -7 -10.2 -12 3.3 3.9 11.8 10 10.2 12zm-5.8 7.2c-1 3.6 -16.2 -3.4 -18 -7.1 8.8 4.6 18.2 3.6 18 7zm-48.7 -73.8c-0.4 -0.5 -1.4 0 -1.2 1.1 0.3 1.5 2.5 9.2 6.3 11.8 2.7 2 17 5.1 23.4 6.5 3.6 0.7 6.5 2.5 8.9 5.3a94.4 94.4 0 0 0 -3 -9.8c-1.2 -3 -4.4 -6.2 -7.8 -6.3 -6.1 -0.3 -14.1 -0.8 -20 -3.3a16 16 0 0 1 -6.7 -5.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M245.5 234.9c2 1.4 4.1 -3.7 1.7 -8.6 -0.1 4.7 -3.8 6.3 -1.7 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M247.4 239.6c2.7 0.8 3.5 -4 1.8 -7.8 0.3 4.1 -4.3 6.6 -1.8 7.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M249.5 243.4c2.6 1.3 3.5 -3.6 1.7 -7.1 0.2 4.5 -3.7 5.9 -1.7 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M248.4 243.7c-1 3 -7 -2.7 -8 -5.8 3.7 3.7 8.7 3.2 8 5.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M245.7 239c-1.2 3 -8.7 -5 -10.4 -8.7 3.7 3.7 11.2 6.5 10.4 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M244.2 234.3c-1.2 3.5 -9.3 -5.8 -11.7 -9.1 4 3.6 12.6 6.6 11.7 9.1zm-0.3 -3.4c3 -0.6 -0.1 -3 -3.7 -6.9 -0.1 4.1 0.5 7 3.7 6.9z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M239 228.5c1.3 -1.3 -1.1 -1.9 -4.1 -5.3 -0.5 2.3 2.8 6.5 4.2 5.3zm14 15.2c1.6 1 2.6 -2.3 0.7 -5.2 -0.5 3.2 -2.1 4 -0.7 5.2zm-34.2 -20.3c-3.3 2 -8.6 -6 -10 -9.3 2.9 3.8 10.6 7.2 10 9.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M221.7 228c-1.9 2 -7.7 -3.5 -9.7 -6.3 3 2.7 10.5 3 9.7 6.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M224.8 232.2c-0.6 2.8 -9 -3.5 -11 -6.5 3.6 3.5 11.6 3.2 11 6.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M223.5 235.3c-1.3 2.5 -8.2 -3.8 -9.9 -7 4.3 3.6 11 4.5 10 7zM220 223c2.1 -2.3 1.2 -3.4 -0.4 -7 -0.8 3.7 -2.1 5.2 0.4 7zm2.9 4.3c4 0.2 0 -4.6 -1 -8.7 0.4 4.6 -1 8.3 1 8.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M225.4 231.1c2.7 -0.6 2 -4.5 -0.2 -9.2 0.5 5.1 -2.3 8 0.2 9.2zm-1 7.7c-1 3 -8.8 -4 -10 -6.8 4 3.4 10.7 4.5 10 6.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.1 243.6c-1.1 3 -9.3 -3.2 -11.8 -6.6 4.9 4 12.4 3.6 11.8 6.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M233.9 248.5c-1.3 4.3 -9.9 -2.6 -12.4 -6 5.4 4.2 13 3 12.4 6zm-8 -11c2.3 1.1 3.2 -5.4 1.9 -10.1 0 5 -4.7 8.8 -2 10z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.8 242.7c2.8 0.8 2 -6.3 -0.5 -11 -0.3 4.7 -2.3 9 0.5 11zm5 4.9c3 0.1 1 -6.1 -1.6 -9.6 0.4 4.5 -1 9 1.6 9.6zm-5.5 2.6c-1 1.6 -3.2 -1.3 -7 -3.5 3.4 1 7.4 2 7 3.5zm-1.8 -52.7c3 -2.2 0.7 -6.2 0 -10 -1 3.6 -3.4 8.4 0 10zm0 5.3c-4.5 -0.5 -3.8 -6.1 -4 -9.7 1.4 4.9 5 5.7 4 9.8zm0.6 -0.7c3.7 -0.2 3.5 -4.4 3.7 -8.6 -1.9 3.9 -4 4.5 -3.7 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M228 207.3c-3 0.3 -4.4 -2.6 -5 -7 2.7 4.1 5.1 2.8 5 7zm1 -0.3c3.7 0.5 3 -3.8 3 -7 -1.2 3 -4.2 4 -3 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M223.2 205.2c0.3 2.8 2.1 7.6 5 6.5 1.1 -3.4 -2.6 -4.1 -5 -6.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229 212c-1.2 -2.4 3 -3.7 3.8 -6.9 0.5 4.6 0.1 7.6 -3.8 7zm-11.9 -29.2c2.3 -2.4 0.3 -6.4 -0.4 -10.2 -1 3.6 -2.5 8.4 0.4 10.2zm0 4.6c-4 0.5 -5 -7.7 -5.5 -11.3 1.4 4.9 6 7 5.5 11.4zm0.8 0c2.8 -1.5 2.2 -4.7 3 -7 -1.8 2.9 -3.6 3.3 -3 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M217 192.8c-4.1 0.3 -6.6 -8.8 -6.8 -12.4 1.3 4.9 7.4 7.5 6.9 12.4zm0.9 -0.2c4 -0.9 3.5 -3.5 2.9 -7.6 -1.3 4.2 -3.5 3.3 -2.9 7.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M217 198c-4.6 0.8 -4.3 -6.6 -8 -11.9 3.2 4 9 9 8 11.9zm1 -0.3c3.6 0.2 4 -5.1 3.8 -7.3 -0.9 2.2 -5 4.2 -3.7 7.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M209.8 192.3c1.7 5.7 4.2 11.4 7.2 11 1.5 -3.3 -2.9 -3.7 -7.2 -11z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M218.1 202.4c-1.2 -2.5 3 -3.7 3.8 -6.9 0.5 4.6 0.1 7.6 -3.8 6.9zm-7.1 -3.6c2.5 5.1 3.6 11 7 10.1 1.3 -4 -3.8 -4.8 -7 -10.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M218.7 208c-1.5 -2.8 2.7 -3.7 3.8 -7.4 0.5 4.8 0 8.3 -3.8 7.3zm7.2 -34.5c2.4 0.6 5 -2.1 4.1 -6.2 -2.8 0.6 -4 3.2 -4.1 6.2zm-7.9 -2.1c0.2 1.2 1.7 1.3 1.2 -0.4a5.3 5.3 0 0 1 0 -3.4 7.5 7.5 0 0 0 0 -4.6c-0.4 -1 -1.8 -0.4 -1.2 0.4 0.6 0.9 0.7 2.8 0.2 3.7 -0.6 1.3 -0.4 3 -0.2 4.3zm22.9 16c-1 1.3 -2.9 0.4 -1.4 -1.5 1.2 -1.5 3 -2.8 3 -4.4 0.2 -2 1.3 -5 2.4 -6.1 1.1 -1.1 2.4 0.4 1.2 1.2 -1.3 0.8 -2.2 4.4 -2.1 5.8 -0.1 2 -2 3.5 -3.1 5zm-3 -2.3c-1 1.4 -2.4 0.5 -1.6 -1.7 0.7 -1.5 0.8 -3.5 1.6 -4.6 1.2 -1.7 3 -3.1 4.1 -4.2 1.2 -1 2 0 1 1a27 27 0 0 0 -3.3 4c-1.4 2.2 -0.8 4 -1.8 5.5zm-15.7 -7.2c-0.1 2 1.5 2.4 1.4 -0.4 0 -3 -2.2 -5.8 -1 -10.3 0.8 -2.2 0.8 -6.3 0.4 -8.4 -0.4 -2.2 -2 -0.8 -1.3 0.9 0.6 2 -0.1 5.6 -0.6 7.5 -1.5 5.4 1.2 8 1 10.7zm4.3 -11c-0.2 1.9 -1.8 2 -1.3 -0.5 0.4 -2 0.4 -3.6 0 -5.3 -0.6 -2.1 -0.4 -5.7 0 -7.2 0.5 -1.6 2 -0.7 1.4 0.5a9.9 9.9 0 0 0 -0.3 5.9c0.6 2 0.5 4.8 0.2 6.7zM210.9 204c0.8 0.9 2 0.3 1 -1 -1 -1 -0.7 -1.2 -1.3 -2.4 -0.6 -1.4 -0.5 -2.1 -1.2 -3 -0.7 -1 -1.6 0 -1 0.7 0.8 1 0.6 1.6 1 2.5 1 1.5 0.7 2.3 1.5 3.2zm20.4 24.6a8.6 8.6 0 0 1 4.4 6.7 16 16 0 0 0 2 7.1c-2 -0.5 -3 -3.7 -3.3 -6.8 -0.3 -3.2 -2 -4.5 -3 -7zm5.1 5.9c1.7 3.1 4 4.3 4.2 6.6 0.2 2.7 0.4 2.8 1.1 5.4 -2 -0.5 -2.5 -0.7 -3 -4.7 -0.3 -2.8 -2.6 -4.7 -2.3 -7.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M289 263.3c1 1.8 2 4.5 4 4 0 -1.3 -2.1 -2.3 -4 -4m3 0.6c3.7 1.6 7 1.2 7.5 3.6 -3.6 0.4 -5 -1 -7.6 -3.6zm-16.1 -12.7a14 14 0 0 1 5 7.7 29 29 0 0 0 3.6 7.8 13 13 0 0 1 -5.3 -7.4c-0.7 -3 -1.6 -5.3 -3.3 -8zm3.1 0c2.8 2.2 5.4 4.8 6.2 7.9 0.8 2.9 1.3 5.1 3.2 8 -3 -1.9 -4.1 -4.7 -5 -7.8 -0.7 -3 -2.5 -5.2 -4.4 -8zm9.2 7.3a1.1 1.1 0 0 1 0.7 -1.2 33.4 33.4 0 0 1 2.6 -0.8c1 -0.3 1.6 0.4 1.6 0.9v2c0 0.7 -0.2 0.8 -0.7 0.9 -0.7 0.1 -1.7 0.2 -2.4 0.7 -0.6 0.4 -1.2 0.1 -1.5 -0.5zm10.6 0c0 -0.6 -0.2 -1.1 -0.6 -1.2a5.4 5.4 0 0 0 -2.4 -0.4c-1 0 -1.1 0.2 -1.1 0.6v2.1c0 0.8 0 0.8 0.4 1 0.7 0 1.8 0 2.5 0.6 0.5 0.3 1 0 1.1 -0.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="600">
<path
android:pathData="M257.3 186.5c-1.2 -2 -2.7 2.8 -7.8 6.3 -2.3 1.6 -4 5.9 -4 8.7 0 2 0.2 3.9 0 5.8 -0.1 1.1 -1.4 3.8 -0.5 4.5 2.2 1.6 5.1 5.4 6.4 6.7 1.2 1 2.2 -5.3 3 -8 1 -3 0.6 -6.7 3.2 -9.4 1.8 -2 6.4 -3.8 6 -4.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257 201.9a10 10 0 0 0 -1.6 -2.6 6.1 6.1 0 0 0 -2.4 -1.8 5.3 5.3 0 0 1 -2.4 -1.5 3.6 3.6 0 0 1 -0.8 -1.5 5.9 5.9 0 0 1 0 -2l-0.3 0.3c-2.3 1.6 -4 5.9 -4 8.7a28.5 28.5 0 0 0 0 2.3c0.2 0.5 0.3 1 0.6 1.3l1.1 0.8 2.7 0.7a7.1 7.1 0 0 1 2.6 2 10.5 10.5 0 0 1 1.8 2.6l0.2 -0.8c0.8 -2.7 0.7 -5.9 2.6 -8.5z"
android:fillType="evenOdd"
android:fillColor="#BF0000"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M249.8 192.4c-0.5 3.3 1.4 4.5 3.2 5.1 1.8 0.7 3.3 2.6 4 4.4m-11.7 1.5c0.8 3 2.8 2.6 4.6 3.2 1.8 0.7 3.7 3 4.5 4.8"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M255.6 184.5l1 -0.6 17.7 29.9 -1 0.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.5 183.3a2 2 0 1 1 -4 0 2 2 0 1 1 4 0zm15.2 -24h7.2v1.6h-7.2zm0 3.1h7.2v13.8h-7.2zm-0.4 -5h8c0.2 -2.7 -2.5 -5.6 -4 -5.6 -1.6 0.1 -4.1 3 -4 5.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M292.6 155.8c-1.5 0.6 -2.7 2.3 -3.4 4.3 -0.7 2 -1 4.3 -0.6 6.1 0 0.7 0.3 1.1 0.5 1.5 0.2 0.3 0.4 0.5 0.6 0.5 0.3 0 0.6 0 0.7 -0.3l0.2 -0.8c-0.1 -2 -0.1 -3.8 0.3 -5.4a7.7 7.7 0 0 1 3 -4.4c0.3 -0.2 0.4 -0.5 0.5 -0.7a1 1 0 0 0 -0.3 -0.7c-0.4 -0.3 -1 -0.4 -1.5 -0.1m0.2 0.4c0.4 -0.2 0.8 0 1 0.1l0.1 0.2c0 0.1 0 0.2 -0.3 0.4a8.2 8.2 0 0 0 -3.1 4.6 16.7 16.7 0 0 0 -0.3 5.6 1 1 0 0 1 -0.2 0.6s0 0.1 -0.2 0c0 0 -0.2 0 -0.4 -0.3a3.9 3.9 0 0 1 -0.4 -1.2c-0.3 -1.8 0 -4 0.7 -6 0.7 -1.8 1.8 -3.4 3 -4z"
android:fillType="evenOdd"
android:fillColor="#BD6B00" />
<path
android:pathData="M295.2 157.7c-1.5 0.7 -2.5 2.3 -3 4.2a13.6 13.6 0 0 0 -0.3 5.9c0.2 1.3 1 2 1.6 2 0.3 0.1 0.6 0 0.8 -0.3 0.2 -0.3 0.3 -0.6 0.2 -1 -0.4 -1.6 -0.5 -3.4 -0.3 -5.1 0.3 -1.7 1 -3.2 2.2 -4.1 0.3 -0.3 0.5 -0.5 0.5 -0.8a0.8 0.8 0 0 0 -0.2 -0.6c-0.4 -0.3 -1 -0.4 -1.5 -0.2m0.2 0.5c0.4 -0.2 0.8 -0.1 1 0l0.1 0.3 -0.3 0.4a6.5 6.5 0 0 0 -2.4 4.4c-0.3 1.8 -0.1 3.7 0.2 5.2 0.1 0.4 0 0.6 0 0.8l-0.5 0.1c-0.3 0 -1 -0.5 -1.2 -1.7 -0.3 -1.7 -0.2 -3.9 0.3 -5.7 0.5 -1.8 1.5 -3.3 2.8 -3.8"
android:fillType="evenOdd"
android:fillColor="#BD6B00" />
<path
android:pathData="M272.3 187.4h8v11h-8zm0.5 17.4h7.7v2.4h-7.7zm-0.2 4.1h8v8.7h-8zm-0.6 10.5h8.7v4.9H272zm1.1 -16.6h7l1.4 -2.4h-9.6zm9.4 -8.6l0.1 -6h4.8a17.4 17.4 0 0 0 -4.9 6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M273.6 196.7c0 1.3 1.5 0.8 1.5 0.1v-5.6c0 -1 2.4 -0.8 2.4 -0.1v6c0 1 1.7 0.9 1.6 0v-7c0 -2.2 -5.5 -2.1 -5.5 -0.1zm0 13.3h5.7v7h-5.7z"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M277.2 213h2v1h-2zm-3.5 0h2v1h-2zm2 -3h1.5v3h-1.5zm0 4h1.5v3.1h-1.5zM244 139c0.4 5.5 -1.4 8.6 -4.3 8.1 -0.8 -3 1 -5.1 4.3 -8.1zm-6.5 12.3c-2.6 -1.3 -0.7 -11.5 0.3 -15.8 0.7 5.5 2 13.3 -0.3 15.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M238.4 151.8c4.4 1.5 8 -3.2 9.1 -8.7 -3.6 5 -9.5 5 -9 8.7zm-3.3 5.1c-3.4 -0.9 -1.4 -11.7 -0.7 -16 0.7 4.5 3.1 14.5 0.7 16zm1.2 -0.3c0.2 -3.7 3.9 -2.7 6.5 -4.7 -0.5 2 -2 5.2 -6.5 4.7zm-4.2 5c-3.4 -1 -1.4 -12.6 -1.6 -17.4 1 4.2 4.2 16.3 1.6 17.4zm1.6 -0.5c2.8 0.9 6.5 -1 6.8 -4.3 -2.5 1.7 -6.3 0.4 -6.8 4.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.5 166.7c-3.2 0.3 -1.8 -9.6 -1.8 -18.8 1.2 8.6 4.5 16.5 1.8 18.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M230.7 166.3c2.2 1 6.1 -0.7 7.2 -4.4 -4 1.7 -6.6 0 -7.2 4.4zm25.6 -22.2c-0.6 4.9 -2.6 7.7 -5.5 7.2 -0.8 -3 1.6 -5 5.5 -7.2zm-7.8 12.4c4.9 0.7 6.6 -3 10 -7.9 -4.7 3.4 -10.2 4 -10 8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M247 156c-2.6 -3.2 0 -7.3 2 -10.7 -0.4 5.1 1.3 8 -2 10.7zm-1 5.3c-0.4 -3.2 5 -3.9 7.4 -5.6 -0.9 1.8 -2 6.7 -7.5 5.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M244.8 161.3c-3.7 -0.4 -2.2 -6.7 0.5 -10.1 -1.1 4.8 2 8.1 -0.5 10.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M242 166.6c-4.2 -2 -1.5 -7.2 0 -10.3 -0.6 4.1 2.8 7.2 0 10.2z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M242.8 166c2.2 3 6.5 -0.8 7.4 -5.2 -3.7 3.1 -6.5 2.6 -7.4 5.3zm-9.6 20.3c-0.4 -4.3 2.8 -12 0.5 -16.2 -0.3 -0.6 0.7 -2.1 1.4 -1.2 1 1.5 2 5.7 2.5 4.1 0.4 -1.7 0.5 -4.6 2 -5.2 1 -0.3 2.3 -0.6 1.9 1 -0.4 1.4 -1.2 3.4 -0.3 3.5 0.5 0 2 -2 3.3 -3 1 -0.8 2.6 0.6 1 1.8 -4.8 4 -9.5 5.9 -12.3 15.2zm-8.7 64.5c-0.6 0 -1.3 -0.3 -0.6 0.6 5.7 7 7.3 9 15.6 8 8.3 -1.1 10.3 -3.4 16.2 -6.7a14.6 14.6 0 0 1 11.2 -1c1.6 0.5 2.6 0.5 1.4 -0.7 -1.2 -1.1 -2.5 -2.7 -4 -3.8a17.5 17.5 0 0 0 -12.7 -2.7c-6 1 -11.1 4.9 -17.2 6.4a25 25 0 0 1 -9.9 0zm47.8 12.5c1 0.2 1.7 2.2 2.3 0.9 0.8 -2.3 0.2 -4 -0.8 -3.9 -1.2 0.3 -3.1 3 -1.5 3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M220.6 183c-1.2 -1.4 -0.9 -1.8 1 -1.9 1.4 0 4.2 1 5.3 0.1 1 -0.7 0.5 -3.7 1 -5 0.2 -0.9 0.7 -2 2 -0.2 3.6 5.8 8 12.8 10 19.6 1 3.8 0 9.8 -3.4 13.8 0 -3.4 -1.2 -5.7 -2.7 -8.6 -2 -3.7 -9.1 -14 -13.2 -17.9z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M235.5 213.4c4 0 4.7 -5.3 4.7 -6.8 -2 0.4 -5.4 3.7 -4.7 6.8zm34.5 51.9c2.8 0.6 2.7 -6.2 -0.2 -9.1 1.3 4.4 -2 8.4 0.1 9zm-1.2 -0.1c0.2 3.2 -8 -0.4 -10 -3 4.8 2.1 9.8 0.4 10 3zm-3.5 -4.6c0.3 3.1 -7 0.3 -9.3 -2.1 4.9 1.6 9 -0.5 9.3 2zm1.3 0.4c2.9 0.7 2.4 -6.4 -0.4 -8.8 1.4 4.7 -1.8 8.1 0.4 8.8zm-3 -4.3c2.9 0.7 1.2 -5.4 -0.9 -7.8 0.4 4.4 -1 7.5 1 7.8zm-1.5 0c0.3 3.2 -5.4 0.8 -7.6 -2.3 4.8 1.5 7.3 -0.3 7.6 2.3zm-1.5 -2.5c1.8 -1.3 -0.1 -4.8 -3.7 -4.6 0.4 2.1 1.6 5.9 3.7 4.6zm14 14.7c0.1 3.2 -8 1.6 -10.6 -1.8 5.2 1 10.3 -0.8 10.5 1.8zm-32.4 -5.8c0.3 3.2 -8.6 -0.4 -10.8 -3.4 4.7 1.6 10.5 0.8 10.8 3.4zm5.4 1.3c1.9 -1.3 -1.9 -4.7 -5 -5.5 0.4 2.1 3 6.8 5 5.6zm0.6 2.3c0.2 2.9 -9.5 1.3 -12 -1.4 8.3 1.5 11.7 -1.1 12 1.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M252.8 268.6c1 2.7 -8.3 2 -11.6 0.5 5.3 0 10.8 -2.4 11.6 -0.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.1 270.6c1 2.4 -7.6 2.4 -11.8 1 5.6 0 10.8 -3.4 11.8 -1zm6.3 1.3c1.6 2.9 -7.6 3.1 -10.5 1.7 5.2 -0.7 9.2 -4 10.5 -1.7zm-10.7 -4.9c-2.9 1.8 -2.7 -3.6 -5 -7.3 3.6 3.3 7 5.6 5 7.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M257.9 269c-2.4 2.1 -4.4 -5.3 -6.6 -9.5 3.6 4 8.8 7.7 6.6 9.4zm6.8 2c-2 2.4 -8 -7 -10.2 -12 3.3 3.9 11.8 10 10.2 12zm-5.8 7.2c-1 3.6 -16.2 -3.4 -18 -7.1 8.8 4.6 18.2 3.6 18 7zm-48.7 -73.8c-0.4 -0.5 -1.4 0 -1.2 1.1 0.3 1.5 2.5 9.2 6.3 11.8 2.7 2 17 5.1 23.4 6.5 3.6 0.7 6.5 2.5 8.9 5.3a94.4 94.4 0 0 0 -3 -9.8c-1.2 -3 -4.4 -6.2 -7.8 -6.3 -6.1 -0.3 -14.1 -0.8 -20 -3.3a16 16 0 0 1 -6.7 -5.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M245.5 234.9c2 1.4 4.1 -3.7 1.7 -8.6 -0.1 4.7 -3.8 6.3 -1.7 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M247.4 239.6c2.7 0.8 3.5 -4 1.8 -7.8 0.3 4.1 -4.3 6.6 -1.8 7.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M249.5 243.4c2.6 1.3 3.5 -3.6 1.7 -7.1 0.2 4.5 -3.7 5.9 -1.7 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M248.4 243.7c-1 3 -7 -2.7 -8 -5.8 3.7 3.7 8.7 3.2 8 5.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M245.7 239c-1.2 3 -8.7 -5 -10.4 -8.7 3.7 3.7 11.2 6.5 10.4 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M244.2 234.3c-1.2 3.5 -9.3 -5.8 -11.7 -9.1 4 3.6 12.6 6.6 11.7 9.1zm-0.3 -3.4c3 -0.6 -0.1 -3 -3.7 -6.9 -0.1 4.1 0.5 7 3.7 6.9z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M239 228.5c1.3 -1.3 -1.1 -1.9 -4.1 -5.3 -0.5 2.3 2.8 6.5 4.2 5.3zm14 15.2c1.6 1 2.6 -2.3 0.7 -5.2 -0.5 3.2 -2.1 4 -0.7 5.2zm-34.2 -20.3c-3.3 2 -8.6 -6 -10 -9.3 2.9 3.8 10.6 7.2 10 9.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M221.7 228c-1.9 2 -7.7 -3.5 -9.7 -6.3 3 2.7 10.5 3 9.7 6.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M224.8 232.2c-0.6 2.8 -9 -3.5 -11 -6.5 3.6 3.5 11.6 3.2 11 6.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M223.5 235.3c-1.3 2.5 -8.2 -3.8 -9.9 -7 4.3 3.6 11 4.5 10 7zM220 223c2.1 -2.3 1.2 -3.4 -0.4 -7 -0.8 3.7 -2.1 5.2 0.4 7zm2.9 4.3c4 0.2 0 -4.6 -1 -8.7 0.4 4.6 -1 8.3 1 8.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M225.4 231.1c2.7 -0.6 2 -4.5 -0.2 -9.2 0.5 5.1 -2.3 8 0.2 9.2zm-1 7.7c-1 3 -8.8 -4 -10 -6.8 4 3.4 10.7 4.5 10 6.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.1 243.6c-1.1 3 -9.3 -3.2 -11.8 -6.6 4.9 4 12.4 3.6 11.8 6.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M233.9 248.5c-1.3 4.3 -9.9 -2.6 -12.4 -6 5.4 4.2 13 3 12.4 6zm-8 -11c2.3 1.1 3.2 -5.4 1.9 -10.1 0 5 -4.7 8.8 -2 10z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229.8 242.7c2.8 0.8 2 -6.3 -0.5 -11 -0.3 4.7 -2.3 9 0.5 11zm5 4.9c3 0.1 1 -6.1 -1.6 -9.6 0.4 4.5 -1 9 1.6 9.6zm-5.5 2.6c-1 1.6 -3.2 -1.3 -7 -3.5 3.4 1 7.4 2 7 3.5zm-1.8 -52.7c3 -2.2 0.7 -6.2 0 -10 -1 3.6 -3.4 8.4 0 10zm0 5.3c-4.5 -0.5 -3.8 -6.1 -4 -9.7 1.4 4.9 5 5.7 4 9.8zm0.6 -0.7c3.7 -0.2 3.5 -4.4 3.7 -8.6 -1.9 3.9 -4 4.5 -3.7 8.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M228 207.3c-3 0.3 -4.4 -2.6 -5 -7 2.7 4.1 5.1 2.8 5 7zm1 -0.3c3.7 0.5 3 -3.8 3 -7 -1.2 3 -4.2 4 -3 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M223.2 205.2c0.3 2.8 2.1 7.6 5 6.5 1.1 -3.4 -2.6 -4.1 -5 -6.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M229 212c-1.2 -2.4 3 -3.7 3.8 -6.9 0.5 4.6 0.1 7.6 -3.8 7zm-11.9 -29.2c2.3 -2.4 0.3 -6.4 -0.4 -10.2 -1 3.6 -2.5 8.4 0.4 10.2zm0 4.6c-4 0.5 -5 -7.7 -5.5 -11.3 1.4 4.9 6 7 5.5 11.4zm0.8 0c2.8 -1.5 2.2 -4.7 3 -7 -1.8 2.9 -3.6 3.3 -3 7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M217 192.8c-4.1 0.3 -6.6 -8.8 -6.8 -12.4 1.3 4.9 7.4 7.5 6.9 12.4zm0.9 -0.2c4 -0.9 3.5 -3.5 2.9 -7.6 -1.3 4.2 -3.5 3.3 -2.9 7.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M217 198c-4.6 0.8 -4.3 -6.6 -8 -11.9 3.2 4 9 9 8 11.9zm1 -0.3c3.6 0.2 4 -5.1 3.8 -7.3 -0.9 2.2 -5 4.2 -3.7 7.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M209.8 192.3c1.7 5.7 4.2 11.4 7.2 11 1.5 -3.3 -2.9 -3.7 -7.2 -11z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M218.1 202.4c-1.2 -2.5 3 -3.7 3.8 -6.9 0.5 4.6 0.1 7.6 -3.8 6.9zm-7.1 -3.6c2.5 5.1 3.6 11 7 10.1 1.3 -4 -3.8 -4.8 -7 -10.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M218.7 208c-1.5 -2.8 2.7 -3.7 3.8 -7.4 0.5 4.8 0 8.3 -3.8 7.3zm7.2 -34.5c2.4 0.6 5 -2.1 4.1 -6.2 -2.8 0.6 -4 3.2 -4.1 6.2zm-7.9 -2.1c0.2 1.2 1.7 1.3 1.2 -0.4a5.3 5.3 0 0 1 0 -3.4 7.5 7.5 0 0 0 0 -4.6c-0.4 -1 -1.8 -0.4 -1.2 0.4 0.6 0.9 0.7 2.8 0.2 3.7 -0.6 1.3 -0.4 3 -0.2 4.3zm22.9 16c-1 1.3 -2.9 0.4 -1.4 -1.5 1.2 -1.5 3 -2.8 3 -4.4 0.2 -2 1.3 -5 2.4 -6.1 1.1 -1.1 2.4 0.4 1.2 1.2 -1.3 0.8 -2.2 4.4 -2.1 5.8 -0.1 2 -2 3.5 -3.1 5zm-3 -2.3c-1 1.4 -2.4 0.5 -1.6 -1.7 0.7 -1.5 0.8 -3.5 1.6 -4.6 1.2 -1.7 3 -3.1 4.1 -4.2 1.2 -1 2 0 1 1a27 27 0 0 0 -3.3 4c-1.4 2.2 -0.8 4 -1.8 5.5zm-15.7 -7.2c-0.1 2 1.5 2.4 1.4 -0.4 0 -3 -2.2 -5.8 -1 -10.3 0.8 -2.2 0.8 -6.3 0.4 -8.4 -0.4 -2.2 -2 -0.8 -1.3 0.9 0.6 2 -0.1 5.6 -0.6 7.5 -1.5 5.4 1.2 8 1 10.7zm4.3 -11c-0.2 1.9 -1.8 2 -1.3 -0.5 0.4 -2 0.4 -3.6 0 -5.3 -0.6 -2.1 -0.4 -5.7 0 -7.2 0.5 -1.6 2 -0.7 1.4 0.5a9.9 9.9 0 0 0 -0.3 5.9c0.6 2 0.5 4.8 0.2 6.7zM210.9 204c0.8 0.9 2 0.3 1 -1 -1 -1 -0.7 -1.2 -1.3 -2.4 -0.6 -1.4 -0.5 -2.1 -1.2 -3 -0.7 -1 -1.6 0 -1 0.7 0.8 1 0.6 1.6 1 2.5 1 1.5 0.7 2.3 1.5 3.2zm20.4 24.6a8.6 8.6 0 0 1 4.4 6.7 16 16 0 0 0 2 7.1c-2 -0.5 -3 -3.7 -3.3 -6.8 -0.3 -3.2 -2 -4.5 -3 -7zm5.1 5.9c1.7 3.1 4 4.3 4.2 6.6 0.2 2.7 0.4 2.8 1.1 5.4 -2 -0.5 -2.5 -0.7 -3 -4.7 -0.3 -2.8 -2.6 -4.7 -2.3 -7.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#BD6B00"
android:strokeWidth="0.5" />
<path
android:pathData="M289 263.3c1 1.8 2 4.5 4 4 0 -1.3 -2.1 -2.3 -4 -4m3 0.6c3.7 1.6 7 1.2 7.5 3.6 -3.6 0.4 -5 -1 -7.6 -3.6zm-16.1 -12.7a14 14 0 0 1 5 7.7 29 29 0 0 0 3.6 7.8 13 13 0 0 1 -5.3 -7.4c-0.7 -3 -1.6 -5.3 -3.3 -8zm3.1 0c2.8 2.2 5.4 4.8 6.2 7.9 0.8 2.9 1.3 5.1 3.2 8 -3 -1.9 -4.1 -4.7 -5 -7.8 -0.7 -3 -2.5 -5.2 -4.4 -8zm9.2 7.3a1.1 1.1 0 0 1 0.7 -1.2 33.4 33.4 0 0 1 2.6 -0.8c1 -0.3 1.6 0.4 1.6 0.9v2c0 0.7 -0.2 0.8 -0.7 0.9 -0.7 0.1 -1.7 0.2 -2.4 0.7 -0.6 0.4 -1.2 0.1 -1.5 -0.5zm10.6 0c0 -0.6 -0.2 -1.1 -0.6 -1.2a5.4 5.4 0 0 0 -2.4 -0.4c-1 0 -1.1 0.2 -1.1 0.6v2.1c0 0.8 0 0.8 0.4 1 0.7 0 1.8 0 2.5 0.6 0.5 0.3 1 0 1.1 -0.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M328.5 286.6c0 1.2 0.2 2.2 1 3.1a19 19 0 0 0 -13.8 1.1c-1.8 0.8 -4 -1 -1.9 -2.7 3 -2.3 9.7 -1 14.7 -1.5m-57.5 0a7 7 0 0 1 -0.4 3c4.4 -1.7 9.1 -0.2 13.6 1.6 3 1.3 3.3 -1 2.8 -1.7a6.5 6.5 0 0 0 -5 -2.9zm3.8 -21.7c-1.3 -0.5 -2.7 0 -4 1.4 -4.3 4.2 -9.4 8.3 -13.5 11.6 -1.5 1.3 -3 3.7 3.4 6 0.3 0.2 5 2 8 2 1.3 0 1.3 1.8 1 2.3 -0.5 1 -0.1 1.4 -1.1 2.3 -1.1 1 0 2.1 1 1.3 3.6 -3.2 9.6 -1.1 15.3 0.7 1.4 0.4 3.8 0.3 3.8 -1.6 0 -2 1.5 -3.4 2.4 -3.5 2.4 0.4 14 0.5 17.5 0.1 2 -0.3 2.2 2.9 3.3 4 0.8 0.9 3.7 1.1 5.8 0.2 4 -1.8 10 -1.8 12.5 0 1 0.7 1.9 0 1.3 -0.7 -0.8 -1 -0.7 -1.6 -1.1 -2.4 -1 -2 -0.2 -2.4 0.8 -2.5 11 -1.5 14.6 -5.2 11.2 -8.3 -4.4 -3.8 -9.2 -7.7 -13.4 -12.2 -1.2 -1.2 -2 -1.7 -4.3 -0.7a66.5 66.5 0 0 1 -25.3 5.9 76 76 0 0 1 -24.6 -5.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M326.6 265.5l-1.6 0.4c-9 3.2 -17.2 5.4 -25.7 5.4 -8.3 0 -17 -2.4 -24.9 -5.6a2.3 2.3 0 0 0 -1.5 0c-0.5 0.1 -1 0.4 -1.3 0.7a115.5 115.5 0 0 1 -11.8 10.3c-0.7 0.5 -0.6 1.8 0.5 2.2 8.3 3 16.4 8.5 39.6 8.3 23.5 -0.2 31.8 -5.6 39.2 -8.1 0.5 -0.2 1 -0.5 1.3 -1a1 1 0 0 0 0.1 -0.8 2 2 0 0 0 -0.6 -0.8c-4.3 -3.5 -8.8 -6.3 -11.8 -10.4 -0.3 -0.5 -0.9 -0.6 -1.5 -0.5zm0 0.5c0.5 0 1 0 1.1 0.3 3 4.3 7.7 7 11.9 10.5l0.4 0.7a0.5 0.5 0 0 1 0 0.4c-0.1 0.3 -0.6 0.6 -1 0.7 -7.6 2.6 -15.7 8 -39 8.2 -23.2 0.2 -31.2 -5.3 -39.5 -8.3 -0.8 -0.4 -0.7 -1.2 -0.4 -1.4 4.2 -3.2 8.2 -6.8 11.8 -10.4a2.5 2.5 0 0 1 1.1 -0.6h1.2a68 68 0 0 0 25 5.6c8.7 0 17 -2.2 26 -5.3a6.7 6.7 0 0 1 1.5 -0.4z"
android:fillType="evenOdd"
android:fillColor="#BD6B00" />
<path
android:pathData="M269.7 114.6c0 -1.4 2 -1.5 1.8 0.4 -0.3 2.3 4.5 8.3 4.9 12 0.3 2.5 -1.5 4.6 -3.2 6a6.6 6.6 0 0 1 -6.8 0.5c-0.9 -0.8 -1.7 -3.3 -1 -4.3 0.2 -0.3 1.3 3.7 3.7 3.7 3.3 0 6 -2.5 6 -4.7 0.2 -3.8 -5.3 -9.8 -5.4 -13.6m9.5 9.4c0.6 -0.4 1.4 1.3 0.8 1.7 -0.5 0.3 -1.5 -1.3 -0.8 -1.8zm1.5 -3.5c-0.3 0.2 -0.8 0 -0.7 -0.2a12 12 0 0 1 3.6 -3.3c0.4 -0.2 1 0.4 0.8 0.7a11 11 0 0 1 -3.7 2.8m12.6 -10c0.3 -0.6 2.1 -1.3 2.6 -1.7 0.4 -0.5 0.6 0.4 0.4 0.7 -0.3 0.7 -1.9 1.7 -2.6 1.8 -0.3 0 -0.6 -0.4 -0.4 -0.7zm4.3 0.3a8.3 8.3 0 0 1 2.5 -3.4c0.5 -0.3 1.3 0 1.1 0.4a9 9 0 0 1 -2.9 3.3c-0.3 0.3 -0.8 0 -0.7 -0.3m-3.7 2.7c-0.3 0.2 -0.1 0.7 0.1 0.8 0.6 0.2 1.5 0.2 2 0 0.6 -0.4 0.3 -2.9 -0.5 -1.6 -0.6 0.8 -1 0.6 -1.6 0.8m-7.3 5.6c-1.3 -1 0.4 -2.4 1.7 -1.4 2.7 2 -4 9.8 -7.6 13.4 -0.7 0.7 -1.3 -1 -0.4 -1.9a33.7 33.7 0 0 0 6.7 -7.6c0.4 -0.5 0.7 -1.6 -0.4 -2.5m15.3 -6.6c0.1 -1 -1.6 0 -1.6 -1.3 0 -0.7 1.9 -1.2 2.7 -0.4 1.3 1.4 0.3 3.7 -2 3.9 -1.8 0 -5 2.7 -4.5 3.2 0.5 0.7 5.4 1.1 8.3 0.7 1.8 -0.3 1.4 1.3 -0.4 1.5 -1.8 0.2 -3.2 0 -4.8 0.6 -2 0.5 -2.8 3 -3.9 4 -0.2 0.2 -0.8 -0.8 -0.6 -1.2 0.8 -1.2 2 -3 3.4 -3.6 0.8 -0.3 -2.4 -0.4 -3.4 -0.7 -0.8 -0.2 -0.6 -1.3 -0.3 -1.9 0.4 -0.8 3.4 -3.9 4.7 -3.8 1.1 0 2.3 -0.3 2.4 -1m5 0.2c0.6 -0.5 1 -1.3 1.5 -1.8 0.3 -0.3 0.9 0 0.8 0.8 -0.1 0.7 -1 1.2 -1.5 1.7 -0.5 0.3 -1 -0.4 -0.7 -0.7zm6.5 -2.3c0.9 0 1 1.6 0.2 1.8 -0.6 0.2 -1 -1.7 -0.2 -1.8m-2.1 5c0 1.5 0.7 1.4 2 1.3 1.3 0 2.4 0 2.4 -1.2 0 -1.3 -0.7 -2.5 -1 -1.6 -0.1 0.8 -0.3 2.2 -0.8 1.6 -0.4 -0.5 -0.2 -0.6 -1 0.2 -0.5 0.5 -0.5 -0.2 -0.8 -0.6 -0.2 -0.3 -0.8 0.2 -0.8 0.4zm-9.2 7.2c-0.3 1.9 0 4.5 0.9 4.5 1.2 0 3.6 -4 4.8 -6.2 0.7 -1.2 1.8 -1.4 1.3 -0.1 -0.7 1.9 -0.6 6 0 7.2 0.4 0.6 3 -0.6 3.4 -1.5 0.8 -1.7 0.1 -4.8 0.4 -6.7 0.1 -1.2 1.3 -1.5 1.2 -0.3a75.6 75.6 0 0 0 -0.1 7.5c0 1 2.9 2.4 3.3 -0.6 0.2 -1.8 1.2 -3.7 0 -5.7 -0.8 -1.3 1.1 -1.2 2.1 0.6 0.7 1.2 -0.6 3.2 -0.5 4.7 0 2.4 -1.8 3.8 -3.1 3.8 -1.2 0 -2 -1.5 -3 -1.5s-2.2 1.7 -3 1.6c-3.6 -0.2 -1.7 -5.3 -2.8 -5.4 -1.2 0 -2.5 5 -4 4.9 -1.4 -0.2 -3 -4.2 -2.3 -5.8 0.5 -1.6 1.5 -2 1.4 -1m16.9 -8c-1.7 -1 0 -3.7 0.9 -2.8 1.6 2 3.2 6.5 4.4 6.9 0.7 0.2 0.6 -3.4 1.1 -5 0.4 -1.3 1.8 -0.9 1.6 0.7 -0.1 0.5 -2 6.4 -1.8 6.6a47.1 47.1 0 0 1 3.3 7.8c0.3 1.2 -1.1 0.4 -1.3 0.2 -0.9 -1.4 -2.4 -6.5 -2.4 -6.2l-1.7 7.7c-0.2 1 -1.7 0.8 -1.3 -1 0.3 -1.4 2.3 -8.3 2.2 -8.6a17.2 17.2 0 0 0 -5 -6.3"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M322 131.2c-0.4 0 -1.2 1 1.2 1.5 3.1 0.6 6.6 -0.5 7.6 -3.6 1.3 -3.7 2 -7.2 2.7 -8.5 0.8 -1.5 1.8 -1.4 1 -3.6 -0.5 -1.7 -1.5 -1.2 -1.7 -0.3 -0.5 2.3 -2.6 10 -3.3 11.3 -1.2 2.6 -3.7 3.6 -7.5 3.2"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M328.4 119c-0.4 -0.7 -1.2 0 -1 0.7a1.2 1.2 0 0 0 1.2 1c0.7 0 2.2 0.1 2.2 -1 0 -0.8 -0.7 -1.5 -1.1 -0.6 -0.5 0.8 -1 0.7 -1.3 0zm0.7 -3c-0.2 0.2 0 1.1 0.3 1a7 7 0 0 0 3.3 -0.8c0.2 -0.2 0.1 -0.7 -0.2 -0.7 -1 0 -2.6 0 -3.4 0.5m8.8 2.3c0.8 -1.2 2.8 -1.3 2 0.4a614.3 614.3 0 0 1 -6.3 12.3c-0.8 1.4 -1.4 0.7 -0.8 -0.4 0.7 -1.4 4.9 -12 5.1 -12.3"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M330.2 133c-0.2 -0.8 -1.5 -2 -1.3 0.2 0.2 3.8 5.5 2.6 7 1.3s0.3 4.3 2.2 4.9c1 0.3 3 -1.1 4 -2.4 2.7 -3.5 4.5 -8.6 7 -12 1 -1.4 -0.5 -2.4 -1 -1.3 -2.4 3.8 -5.2 11.6 -8.3 13.6 -2.5 1.6 -1.7 -2 -1.8 -3.2 -0.1 -0.8 -1.1 -2 -2.4 -0.9a5.5 5.5 0 0 1 -3.7 1.2c-0.7 0 -1.4 0 -1.7 -1.4"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M339.6 126c0 -0.3 -1.1 -0.4 -1 0.7 0 0.8 1 1 1.1 1 1.5 -1.2 -0.3 -0.6 -0.1 -1.8zm-2.3 4.4c-0.3 0 -0.6 1 0.2 1.1l3.9 -0.2c0.4 0 0.6 -0.9 -0.4 -0.8 -1.2 0 -2.7 -0.3 -3.7 0zm-62 -16.6c0.5 0 1.6 1.4 1.5 1.9 0 0.2 -1.2 0 -1.5 -0.3 -0.3 -0.3 -0.2 -1.6 0 -1.6m-5.3 10.4c-1 0.6 0.2 1.7 1 1.2 2.8 -1.9 7 -3.8 8 -7.5 0.3 -1.2 1.4 -3.1 2.5 -3.5 1 -0.5 2.6 1.9 3.6 0 0.6 -1 2.7 0.7 3.2 -0.4 0.6 -1.3 0.3 -2 0.3 -3.4 0 -0.8 -0.7 -1 -1.2 0.3 -0.2 0.6 0 1.2 -0.1 1.6 -0.2 0.2 -0.6 0.4 -1 0.2 -0.2 -0.2 0 -0.7 -0.6 -1 -0.2 0 -0.6 -0.1 -0.8 0.2 -0.7 1.3 -1 2.5 -2.1 1 -0.9 -1 -1.4 -3.1 -2 -0.3 -0.2 1 -1.7 2.4 -2.6 2.4 -1.1 0 -0.8 -3 -3.2 -2.5 -1.3 0.3 -1.2 2.7 -1 3.5 0.3 1.3 4 0.4 3.7 1.2 -0.6 2.7 -4.4 5.4 -7.7 7m-22.7 13.2c-0.1 0.5 0.5 1.7 1.1 1.8 0.6 0 1 -1.3 0.8 -1.8 -0.2 -0.3 -1.8 -0.3 -1.9 0m3.3 4.9c-0.4 -0.4 -1.6 0.7 -0.6 1.5 0.5 0.5 2.5 1.1 3 0.2 0.8 -1.2 -0.7 -5.5 0 -6 0.5 -0.5 2.8 2.8 4 3 2.7 0.4 2 -4.6 5 -4.2 1.9 0.2 2.1 -2.2 1.8 -3.8 -0.2 -1.5 -2.6 -3.6 -3.7 -4.6 -1.4 -1.2 -2.1 1 -1.2 1.6 1.2 1 3.3 2.9 3.6 4.1 0.1 0.6 -1.4 1.8 -2 1.5 -1.4 -0.8 -2.6 -4 -3.8 -4.7 -0.4 -0.2 -1.4 0.3 -1 1.3 0.6 1.1 3 2.7 3.1 3.9 0.1 1 -1 3.2 -1.8 3.2 -0.9 0 -3 -2.7 -3.7 -4 -0.4 -0.5 -1.5 -0.5 -1.7 0.4a22 22 0 0 0 0.5 5.5c0.2 1.6 -0.9 1.7 -1.5 1.1m-4 -8.6c-0.4 0.4 0.8 1.2 1 1 0.4 -0.4 2.1 -2.3 1.8 -3 -0.3 -0.6 -2.6 -2 -3 -1.3 -0.7 1.1 2.2 1.7 1.7 2a7 7 0 0 0 -1.5 1.3m4.1 -8.4s0.8 2.5 1.4 1.4c0.4 -0.7 -1.4 -1.4 -1.4 -1.4m1.2 4c-0.2 0 -1 0.7 -0.5 1 0.8 0.4 2.9 0.8 2.4 -0.7 -0.3 -0.9 3.2 0 2.3 -2.4a3.7 3.7 0 0 0 -1.7 -1.7c-0.4 0 -1.5 0.5 -0.8 0.9 0.5 0.2 2 1.1 1.5 1.7 -0.7 0.6 -1.1 -0.3 -1.9 -0.1 -0.4 0 -0.1 1.2 -0.4 1.5 0 0.2 -0.7 -0.4 -0.9 -0.3zm5.5 -9.5a3.5 3.5 0 0 0 -1.2 2c0 0.2 0.3 0.6 0.5 0.5a3.2 3.2 0 0 0 1.2 -1.9c0 -0.3 -0.2 -0.8 -0.5 -0.6m2.8 -0.3c-0.8 -1 1 -2.6 1.7 -0.5 0.5 1.3 5.5 7.9 6.5 10.1 0.8 1.5 0 2.1 -0.9 1 -2.5 -3.2 -4.6 -7.2 -7.3 -10.6m5.2 0.1c0.9 -1 2.7 -3 2.2 -4 -0.4 -1 -1.5 -1 -1.7 -0.7 -1 1.3 0.8 1 0.5 1.4 -0.5 1 -1 1.6 -1.3 2.6 -0.1 0.3 0.1 0.9 0.3 0.7m77.8 3.2c-0.7 -0.5 0.6 -3 1.5 -2 2.3 2.7 3.4 11.6 4.1 18.3 0 0 -1 0.9 -1 0.7 0 -3.5 -1.5 -14.4 -4.6 -17m-53.1 -8.6c-0.8 -1.8 1.1 -2.4 1.4 -1.2 1.3 5.8 4.5 10.2 7 14.1 0.7 1.2 0 2 -1.7 0.8 -1.2 -0.8 -2.5 -3.9 -3 -4 -1.2 -0.2 -3.8 5 -9.1 3.5 -1.4 -0.4 -1.3 -4.5 -1.4 -6.3 0 -0.9 1 -1 1 0 0 1.7 0 5.2 2.1 5.4 1.8 0 5.6 -2.4 6.4 -4.4 0.8 -2 -1.9 -5.9 -2.7 -8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M344.6 138.4c0.4 -1.2 6.1 -10.8 6.9 -12.9 0.4 -1 2 1.8 0.4 3.3 -1.4 1.2 -5.5 8 -6.3 10.4 -0.4 1 -1.4 0.5 -1 -0.8"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M354.3 129.3c1 -4 3.6 0.6 1.3 2.8 -3.4 3.4 -4.5 9.9 -10 10.9 -1.4 0.3 -4 -0.7 -4.8 -1.3 -0.3 -0.2 0.2 -1.6 1.1 -0.9 1.3 1 4.1 1.3 5.6 0.1a25.4 25.4 0 0 0 6.8 -11.6m-57 12.7c-0.3 0.3 -1 0.3 -1.1 0.7 -0.3 1.4 0 2.2 -0.3 3.6s-1.3 1.4 -1.2 0.3c0 -1.4 1.3 -3.5 0.4 -3.6 -0.6 -0.1 -1 -0.9 -0.4 -1.3 1.1 -0.7 1.7 -0.6 2.4 -0.4 0.3 0.1 0.4 0.5 0.2 0.7"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M296.5 140c-1.4 1.4 -2.8 1.9 -4.1 3.5 -0.6 0.6 -0.5 1.5 -0.9 2.4 -0.3 0.9 -1.4 1 -1.7 0.9 -0.5 -0.4 -0.4 -2 -1 -1.2 -0.6 0.9 -0.9 2 -1.7 2 -0.7 0 -2 -1.5 -1.3 -1.5 2.3 -0.3 2.2 -2 3 -2.2 1 -0.1 1 1.5 1.7 1.2 0.4 -0.2 0.7 -2.1 1.2 -2.6 1.5 -1.6 2.7 -2.4 4.3 -3.6 0.7 -0.6 1.3 0.5 0.5 1.2zm5.3 5c-1.2 0.2 -1 1.7 -0.6 1.8 0.5 0.3 1.4 0.4 1.7 -1.3 0.2 -0.7 0.3 3.5 1.8 1.9 1 -1 3.1 0.2 4 -1 0.7 -0.9 1 -1.5 0.4 -2.7 -0.2 -0.3 -1 -0.2 -1 0.7 0 0.8 -0.5 1.7 -1.3 1.6 -0.4 -0.1 0.2 -1.9 -0.2 -2.4a0.5 0.5 0 0 0 -0.7 0c-0.3 0.4 0.3 2.2 -0.6 2.4 -1.2 0.2 -0.6 -1.2 -1 -1.4 -1.7 -0.8 -1.8 0.2 -2.5 0.3zm9 -3c0.9 -0.2 0.6 -0.2 2 -1.3 0.5 -0.4 0.6 0.8 0.5 1.3 0 0.7 -1 0.2 -1.3 0.9 -0.4 0.9 -0.2 3 -0.4 3.8 0 0.4 -0.8 0.4 -0.8 0 -0.2 -1 0.1 -2 0 -3.3 0 -0.4 -0.5 -1.1 0 -1.3zm-5 -2.5c-0.2 0.9 -0.2 1.6 -0.2 2.3 0 0.5 1 0.2 1 0.1 0 -0.8 0.2 -2 0 -2.3 -0.2 -0.1 -0.7 -0.3 -0.8 -0.1"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M299.5 130.2l-1.4 5.6 -2 -3.8v3.9l-4.4 -5.2 1.5 5.6 -4 -3.4 2.2 3.8 -7 -4.5 4.4 5.2 -5.6 -2.8 4 3.4 -9 -3.4 8.7 4.3a29 29 0 0 1 12.6 -2.6c4.9 0 9.3 1 12.5 2.6l8.8 -4.3 -9 3.4 4 -3.4 -5.5 2.8 4.3 -5.2 -7 4.5 2.2 -3.8 -4 3.3 1.5 -5.5 -4.3 5.2V132l-2 3.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M249 299.7l-0.1 2.2h-0.4v-1.5a7.4 7.4 0 0 0 -0.4 -1.3 5.8 5.8 0 0 0 -0.5 -1 11.3 11.3 0 0 0 -0.8 -1.1l0.7 -1.8a5.3 5.3 0 0 1 1.1 2 7.5 7.5 0 0 1 0.5 2.5m5.5 -3.4c0 0.6 -0.1 1 -0.3 1.2 -0.2 0.3 -0.6 0.5 -1 0.6l0.2 1.1a5.3 5.3 0 0 1 0 1.7v1h-0.4v-1a4.4 4.4 0 0 0 -0.2 -0.8 28.8 28.8 0 0 0 -0.3 -0.8 8.4 8.4 0 0 0 -0.6 -1.2l-0.8 -1.3 0.5 -1.6 0.8 0.9 0.7 0.2c0.7 0 1 -0.3 1 -1h0.3a8 8 0 0 0 0 0.5v0.5m5.1 3.9l-0.4 1.7 -0.6 -0.6a3.5 3.5 0 0 1 -0.3 -1 9.9 9.9 0 0 1 0 -1.4 3 3 0 0 1 -0.9 0.1c-0.4 0 -0.7 0 -1 -0.3a1 1 0 0 1 -0.4 -0.8c0 -0.7 0.2 -1.3 0.6 -1.8 0.3 -0.6 0.7 -0.9 1.2 -0.9 0.3 0 0.6 0.1 0.7 0.3l0.3 0.8v1.6c0 0.7 0 1.2 0.2 1.4 0 0.3 0.3 0.5 0.6 0.9m-1.5 -2.9c0 -0.4 -0.3 -0.6 -0.7 -0.6a0.8 0.8 0 0 0 -0.4 0.1c-0.2 0.1 -0.2 0.2 -0.2 0.3 0 0.2 0.2 0.3 0.8 0.3a2.2 2.2 0 0 0 0.5 0m6.9 2.3l-0.2 2.1c-0.4 -0.3 -0.8 -0.8 -1.1 -1.5a20 20 0 0 1 -1.1 -3.3 41.3 41.3 0 0 1 -0.8 3l-0.6 1.3a2 2 0 0 1 -0.6 0.6v-2l0.8 -1.2a6 6 0 0 0 0.6 -1.4 16 16 0 0 0 0.3 -2h0.4l0.7 2a6.7 6.7 0 0 0 1.6 2.4"
android:fillColor="#FFFFFF" />
<path
android:pathData="M280.5 319.2c0.3 0.3 0.5 0.6 0.6 1l0.2 1.2h-0.6a6.2 6.2 0 0 0 -0.7 -1.1 15.2 15.2 0 0 0 -1 -1l-1.3 -1.2a27.3 27.3 0 0 0 -1.6 -1.3l-0.5 -0.4 -0.2 -0.6a9 9 0 0 1 -0.1 -1.3l2.1 1.7a35.3 35.3 0 0 1 2 1.8zm-7.6 -4.6l-0.1 1.6 -2.5 -0.1 0.2 -1.6h2.4m6.7 7.1l-6 1.9 -1.2 -1.6 5.2 -1.5a6.3 6.3 0 0 0 -0.5 -0.7l-0.7 -0.5a1.1 1.1 0 0 1 -0.4 0.8 2 2 0 0 1 -0.8 0.5 2.7 2.7 0 0 1 -1.4 0c-0.5 0 -0.8 -0.3 -1 -0.6a3.1 3.1 0 0 1 -0.5 -1.7c0 -0.8 0.2 -1.3 0.6 -1.5 0.6 -0.2 1.4 0 2.5 0.5a6.5 6.5 0 0 1 2.4 2zm-4.7 -3.2a3.1 3.1 0 0 0 -0.6 -0.2 0.9 0.9 0 0 0 -0.5 0 0.5 0.5 0 0 0 -0.4 0.3 0.4 0.4 0 0 0 0 0.4l0.4 0.2h0.5a0.9 0.9 0 0 0 0.3 -0.3zm-6.4 -1.2l-0.4 1.6 -2.5 -0.3 0.4 -1.5zm6 6l-1.4 0.4a4.2 4.2 0 0 1 -1.4 0 2.8 2.8 0 0 1 -1.2 -0.3c-0.2 0.4 -0.6 0.7 -1.1 1a5.9 5.9 0 0 1 -1.3 0.4l-1 0.3 -0.8 -1.6 1 -0.2 1 -0.3 0.6 -0.4a4.7 4.7 0 0 0 -0.7 -0.4 1 1 0 0 0 -0.6 -0.1 0.3 0.3 0 0 0 -0.2 0 0.5 0.5 0 0 0 0 0.3h-0.5c-0.4 -0.7 -0.5 -1.2 -0.3 -1.6 0.3 -0.4 0.8 -0.7 1.6 -0.9 0.8 -0.2 1.5 -0.2 2.1 0 0.6 0 1 0.3 1.2 0.6 0.1 0.2 0.2 0.4 0.1 0.6 0 0.2 0 0.5 -0.3 1a1.6 1.6 0 0 0 1 0l1.3 -0.3zm-6.4 1.5l-1.3 0.2c-0.7 0 -1.3 0 -1.8 -0.4a4.3 4.3 0 0 1 -1.3 -2l-0.6 -1.7a2 2 0 0 0 -0.6 -1l-0.8 -0.3 0.5 -1.7 1.1 0.9 0.8 1.3 0.4 1.2a5 5 0 0 0 1 1.7c0.2 0.3 0.4 0.4 0.7 0.3l1.3 -0.2zm-5.5 -6l-0.9 1.5 -2.3 -0.6 0.8 -1.5zm1.4 6.7l-6 0.5 -0.3 -1.6 5 -0.5a1.9 1.9 0 0 0 -0.6 -0.7 6 6 0 0 0 -0.8 -0.5l0.5 -1.5c0.5 0.3 1 0.6 1.2 1 0.2 0.4 0.5 1 0.6 1.7zm-4.8 0.8a13 13 0 0 1 -1.8 -0.2 8.3 8.3 0 0 1 -1.3 -0.4 4.5 4.5 0 0 1 -1 0.3h-3c-0.5 0 -0.8 0 -1 -0.2l-0.6 -0.8a3.3 3.3 0 0 1 -1.3 0.7 4 4 0 0 1 -1.3 0.2h-1.4l0.2 -1.8 1.3 0.1c0.7 0 1.3 0 1.7 -0.3 0.6 -0.3 1 -0.8 1 -1.4h0.6a22.9 22.9 0 0 0 -0.1 1c0 0.3 0 0.5 0.3 0.6l0.7 0.2h2.9c0.4 -0.2 0.6 -0.5 0.7 -1l0.1 -0.3a2.6 2.6 0 0 1 0.4 -0.2l0.4 -0.1v0.6l-0.3 0.8a6.4 6.4 0 0 0 1.7 0.4c0 -0.1 0 -0.3 -0.2 -0.5 0 -0.3 -0.2 -0.4 -0.2 -0.5a0.4 0.4 0 0 1 0.1 -0.2l0.3 -0.2 0.8 -0.7 0.3 0.7c0 0.2 0.1 0.5 0 0.8l-0.1 2.4m-9 -7l-1.5 1 -1.1 -0.6 -1.1 0.8 -1.5 -0.9 1.4 -1 1.2 0.7 1.1 -0.9zm-2.4 6.4l-5.8 -1 0.7 -1.6 4.8 0.8a1.3 1.3 0 0 0 0 -0.8 4 4 0 0 0 -0.5 -0.6l1.3 -1.3c0.3 0.4 0.5 0.8 0.5 1.2 0 0.4 0 1 -0.4 1.7zm-4.9 -0.8l-1.2 -0.3c-0.7 -0.1 -1.1 -0.4 -1.2 -0.9 -0.1 -0.5 0.1 -1.2 0.7 -2.2l1 -1.7 0.2 -0.9 -0.3 -0.6 1.8 -1.2 0.2 1.1c0 0.4 -0.2 0.9 -0.6 1.4l-0.6 1.2a4 4 0 0 0 -0.7 1.7c0 0.3 0.1 0.5 0.4 0.5l1.2 0.3zm-3 -6.3l-2 0.9 -1.4 -1.4 2 -0.8zm-0.9 5.3a4 4 0 0 1 -1.2 1.1c-0.4 0.3 -0.9 0.4 -1.4 0.5a7 7 0 0 1 -1.9 0 11.8 11.8 0 0 1 -2.2 -0.6 6 6 0 0 1 -2.7 -1.6c-0.5 -0.6 -0.5 -1.2 0 -1.8a5.6 5.6 0 0 1 1.5 -1.3 18.8 18.8 0 0 1 3 -1.2l0.4 0.4c-1 0.4 -1.8 0.7 -2.2 1a3.3 3.3 0 0 0 -1 0.7c-0.3 0.4 -0.3 0.8 0.1 1.3a8.4 8.4 0 0 0 5 1.8c1 0 1.6 -0.3 1.9 -0.6l0.4 -0.7 0.1 -1.4 2 -1.2 -0.1 1.2c-0.1 0.4 -0.4 0.8 -0.8 1.3z"
android:fillColor="#BF0000" />
</vector>
@@ -0,0 +1,34 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="1.1014"
android:scaleY="1.1014"
android:translateX="-120"
android:translateY="-52.4">
<clip-path
android:pathData="M109 47.6h464.8v464.9H109z" />
<path
android:pathData="M0 47.6h693V512H0z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M109 47.6h464.8v186.1H109z"
android:fillType="evenOdd"
android:fillColor="#000001" />
<path
android:pathData="M128.3 232.1h435.8v103.5H128.3z"
android:fillType="evenOdd"
android:fillColor="#0072C6" />
<path
android:pathData="M692.5 49.2v463.3H347zm-691.3 0v463.3h345.7z"
android:fillType="evenOdd"
android:fillColor="#CE1126" />
<path
android:pathData="M508.8 232.2l-69.3 -17.6 59 -44.4 -72.5 10.3 37.3 -63 -64.1 37.2 11.3 -73.5 -43.4 58 -17.6 -67.3 -19.6 69.3 -43.4 -59 12.4 75.6 -64.1 -39.3 37.2 63 -70.3 -11.3 57.9 43.4 -72.4 18.6z"
android:fillType="evenOdd"
android:fillColor="#FCD116" />
</group>
</vector>
@@ -0,0 +1,92 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#012169" />
<path
android:pathData="M0 0l256 256m0 -256L0 256"
android:fillColor="#000000"
android:strokeColor="#FFFFFF"
android:strokeWidth="50" />
<group>
<clip-path
android:pathData="M0 0v128h298.7v128H256zm256 0H128v298.7H0V256z" />
<path
android:pathData="M0 0l256 256m0 -256L0 256"
android:fillColor="#000000"
android:strokeColor="#C8102E"
android:strokeWidth="30" />
</group>
<path
android:pathData="M128 0v298.7M0 128h298.7"
android:fillColor="#000000"
android:strokeColor="#FFFFFF"
android:strokeWidth="75" />
<path
android:pathData="M128 0v298.7M0 128h298.7"
android:fillColor="#000000"
android:strokeColor="#C8102E"
android:strokeWidth="50" />
<path
android:pathData="M0 256h256V0h85.3v341.3H0z"
android:fillColor="#012169" />
<path
android:pathData="M323.6 224.1c0 90.4 9.8 121.5 29.4 142.5a179.4 179.4 0 0 0 35 30 179.7 179.7 0 0 0 35 -30c19.5 -21 29.3 -52.1 29.3 -142.5 -14.2 6.5 -22.3 9.7 -34 9.5a78.4 78.4 0 0 1 -30.3 -9.5 78.4 78.4 0 0 1 -30.3 9.5c-11.7 0.2 -19.8 -3 -34 -9.5z"
android:fillColor="#FFFFFF" />
<group
android:scaleX="1.96"
android:scaleY="2.002"
android:translateX="-141.1"
android:translateY="95.2">
<path
android:pathData="M271 87c1.5 3.6 6.5 7.6 7.8 9.6 -1.7 2 -2 1.8 -1.8 5.4 3 -3.1 3 -3.5 5 -3 4.2 4.2 0.8 13.3 -2.8 15.3 -3.4 2.1 -2.8 0 -8 2.6 2.3 2 5.1 -0.3 7.4 0.3 1.2 1.5 -0.6 4.1 0.4 6.7 2 -0.2 1.8 -4.3 2.2 -5.8 1.5 -5.4 10.4 -9.1 10.8 -14.1 1.9 -0.9 3.7 -0.3 6 1 -1.1 -4.6 -4.9 -4.6 -5.9 -6 -2.4 -3.7 -4.5 -7.8 -9.6 -9 -3.8 -0.7 -3.5 0.3 -6 -1.4 -1.6 -1.2 -6.3 -3.4 -5.5 -1.6"
android:fillColor="#FF9900" />
<path
android:pathData="M282.1 91.1A0.8 0.8 0 0 1 280.5 91.1A0.8 0.8 0 0 1 282.1 91.1Z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
<group
android:rotation="-90.33553"
android:scaleX="2.001782"
android:scaleY="1.960189"
android:translateX="463.1"
android:translateY="861.4">
<group
android:rotation="-27.51664">
<path
android:pathData="M271 87c1.5 3.6 6.5 7.6 7.8 9.6 -1.7 2 -2 1.8 -1.8 5.4 3 -3.1 3 -3.5 5 -3 4.2 4.2 0.8 13.3 -2.8 15.3 -3.4 2.1 -2.8 0 -8 2.6 2.3 2 5.1 -0.3 7.4 0.3 1.2 1.5 -0.6 4.1 0.4 6.7 2 -0.2 1.8 -4.3 2.2 -5.8 1.5 -5.4 10.4 -9.1 10.8 -14.1 1.9 -0.9 3.7 -0.3 6 1 -1.1 -4.6 -4.9 -4.6 -5.9 -6 -2.4 -3.7 -4.5 -7.8 -9.6 -9 -3.8 -0.7 -3.5 0.3 -6 -1.4 -1.6 -1.2 -6.3 -3.4 -5.5 -1.6"
android:fillColor="#FF9900" />
<path
android:pathData="M282.1 91.1A0.8 0.8 0 0 1 280.5 91.1A0.8 0.8 0 0 1 282.1 91.1Z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
</group>
<group
android:rotation="90.37474"
android:scaleX="2.001905"
android:scaleY="1.960228"
android:translateX="825"
android:translateY="-71">
<group
android:rotation="30.63118">
<path
android:pathData="M271 87c1.5 3.6 6.5 7.6 7.8 9.6 -1.7 2 -2 1.8 -1.8 5.4 3 -3.1 3 -3.5 5 -3 4.2 4.2 0.8 13.3 -2.8 15.3 -3.4 2.1 -2.8 0 -8 2.6 2.3 2 5.1 -0.3 7.4 0.3 1.2 1.5 -0.6 4.1 0.4 6.7 2 -0.2 1.8 -4.3 2.2 -5.8 1.5 -5.4 10.4 -9.1 10.8 -14.1 1.9 -0.9 3.7 -0.3 6 1 -1.1 -4.6 -4.9 -4.6 -5.9 -6 -2.4 -3.7 -4.5 -7.8 -9.6 -9 -3.8 -0.7 -3.5 0.3 -6 -1.4 -1.6 -1.2 -6.3 -3.4 -5.5 -1.6"
android:fillColor="#FF9900" />
<path
android:pathData="M282.1 91.1A0.8 0.8 0 0 1 280.5 91.1A0.8 0.8 0 0 1 282.1 91.1Z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
</group>
<path
android:pathData="M339.8 347.4a78 78 0 0 0 13.2 19.2 179.4 179.4 0 0 0 35 30 180 180 0 0 0 35 -30 78 78 0 0 0 13.2 -19.2z"
android:fillColor="#99CCFF" />
<path
android:pathData="M321 220.5c0 94.2 10.1 126.6 30.5 148.5a187 187 0 0 0 36.5 31 186.3 186.3 0 0 0 36.4 -31.1C444.8 347 455 314.7 455 220.5c-14.8 6.8 -23.3 10.1 -35.5 10 -11 -0.3 -22.6 -5.7 -31.5 -10 -9 4.3 -20.6 9.7 -31.5 10 -12.3 0.1 -20.7 -3.2 -35.6 -10zm4 5c13.9 6.5 21.9 9.6 33.4 9.4a76.4 76.4 0 0 0 29.6 -9.4c8.4 4 19.3 9.2 29.6 9.4 11.5 0.2 19.4 -3 33.4 -9.4 0 89 -9.6 119.6 -28.8 140.2a176 176 0 0 1 -34.2 29.4 175.6 175.6 0 0 1 -34.3 -29.4c-19.2 -20.6 -28.7 -51.3 -28.7 -140.2"
android:fillColor="#FDC301" />
</vector>
@@ -0,0 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#FF0000" />
<path
android:pathData="M204.9 99.5c-5 0 -13.2 1.6 -13 5.4 -14 -2.3 -15.4 3.4 -14.6 8.5 1.4 -2 3 -3.1 4.2 -3.3 1.9 -0.3 3.8 0.3 5.8 1.5a23 23 0 0 1 5 4.4c-4.8 1.1 -8.6 0.4 -12.4 -0.3a17.6 17.6 0 0 1 -6.1 -2.5c-1.6 -1.1 -2.1 -2.1 -4.6 -4.7 -2.9 -3 -6 -2.1 -5 2.5 2.2 4.3 6 6.3 10.7 7 2.2 0.4 5.6 1.2 9.4 1.2 3.8 0 8.1 -0.5 10.5 0 -1.4 0.8 -3 2.4 -6.2 3 -3.2 0.6 -8 -2 -11 -2.6 0.4 2.5 3.5 4.8 9.7 6 10.2 2.2 18.7 4 24.3 7 5.6 3 9.1 6.8 11.6 9.8 5 6 5.3 10.5 5.6 11.5 1 9.5 -2.2 14.8 -8.4 16.4 -3 0.8 -8.5 -0.7 -10.5 -3 -2 -2.4 -4 -6.4 -3.4 -12.7 0.5 -2.5 3.4 -9 1 -10.3a291.6 291.6 0 0 0 -34.4 -16c-2.7 -1.1 -5 2.5 -5.8 4A53.5 53.5 0 0 1 129 107c-4.6 -8.1 -12.1 0 -10.9 7.7 2.1 8.6 8.6 14.8 16.5 19.2 8 4.5 18.1 8.8 28.3 8.6 5.5 1 5.5 8.2 -1.1 9.5 -13 0 -23.2 -0.2 -32.9 -9.6 -7.4 -6.7 -11.5 1.3 -9.4 5.8 3.6 14 23.6 18 43.8 13.4 7.8 -1.3 3.1 7 0.9 7.2 -8.4 6 -23.5 12 -36.8 -0.1 -6.1 -4.7 -10.2 -0.7 -8 6 6 17.5 28.5 13.8 44 5.2 4 -2.2 7.6 3 2.7 6.9 -19.2 13.4 -28.9 13.6 -37.6 8.4 -10.8 -4.3 -11.8 7.8 -5.3 11.8 7.2 4.4 25.4 1 38.9 -7.4 5.7 -4.2 6 2.4 2.3 5 -15.9 13.8 -22.2 17.5 -38.8 15.2 -8.2 -0.6 -8 9.5 -1.6 13.5 8.8 5.4 26.1 -3.6 39.5 -14.7 5.6 -3 6.6 2 3.8 7.8a57.4 57.4 0 0 1 -23.3 19.2 29.1 29.1 0 0 1 -19.5 0.7c-6.2 -2.2 -7 4.2 -3.6 10 2 3.5 10.6 4.7 19.7 1.4 9.2 -3.2 19 -10.8 25.7 -19.8 6 -5.1 5.2 1.8 2.5 6.7 -13.5 21.3 -25.9 29.2 -42.1 27.9 -7.3 -1.2 -8.9 4.4 -4.3 9.6 8 6.7 18.2 6.4 27 -0.2a751 751 0 0 0 30.8 -32.6c5.5 -4.4 7.3 0 5.7 9 -1.5 5.1 -5.2 10.5 -15.3 14.5 -7 4 -1.8 9.4 3.4 9.5 2.9 0 8.7 -3.3 13 -8.3 5.9 -6.5 6.2 -11 9.5 -21.1 3 -5 8.4 -2.7 8.4 2.5 -2.6 10.2 -4.8 12 -10 16.2 -5.1 4.7 3.4 6.3 6.3 4.4 8.3 -5.6 11.3 -12.8 14.1 -19.4 2 -4.8 7.8 -2.5 5.1 5.3 -6.4 18.5 -17 25.8 -35.5 29.6 -1.9 0.3 -3 1.4 -2.4 3.6l7.5 7.5c-11.5 3.3 -20.8 5.2 -32.2 8.5L142 300.6c-1.5 -3.4 -2.2 -8.7 -10.4 -5 -5.7 -2.6 -8.2 -1.6 -11.4 1 4.5 0.1 6.5 1.3 8.3 3.4 2.3 6 7.6 6.6 13 5 3.5 2.9 5.4 5.2 9 8.2l-17.8 -0.6c-6.3 -6.7 -11.3 -6.3 -15.8 -1 -3.5 0.5 -5 0.5 -7.3 4.7 3.7 -1.5 6 -2 7.7 -0.3 6.6 3.9 11 3 14.3 0l18.7 1.1c-2.3 2 -5.6 3.1 -8 5.2 -9.7 -2.8 -14.7 1 -16.4 8.8a18.2 18.2 0 0 0 -1.4 10c1 -3.2 2.5 -5.9 5.3 -7.6 8.6 2.2 11.8 -1.3 12.3 -6.5 4.2 -3.4 10.5 -4.1 14.6 -7.6 4.9 1.6 7.2 2.6 12.1 4.1 1.7 5.3 5.7 7.4 12 6 7.7 0.3 6.3 3.4 7 5.9 2 -3.6 2 -7 -2.8 -10.3 -1.7 -4.6 -5.5 -6.7 -10.4 -4 -4.7 -1.3 -5.9 -3.2 -10.5 -4.6 11.7 -3.7 20 -4.5 31.8 -8.3 3 2.8 5.2 4.8 8.2 7.2 1.6 1 3 1.2 4 0 7.3 -10.6 10.6 -20 17.4 -27 2.6 -2.9 6 -6.8 9.6 -7.8 1.8 -0.4 4 -0.2 5.5 1.4 1.4 1.6 2.6 4.4 2 8.7 -0.6 6.2 -2 8.2 -3.8 11.8 -1.7 3.7 -3.9 6 -6 8.8 -4.4 5.7 -10.1 9 -13.5 11.2 -6.8 4.4 -9.7 2.5 -15 2.2 -6.7 0.8 -8.5 4.1 -3 8.7a21 21 0 0 0 13.7 2.3c3.3 -0.6 7 -4.8 9.8 -7 3 -3.6 8.1 0.6 4.7 4.7 -6.3 7.5 -12.6 12.4 -20.3 12.3 -8.2 1 -6.7 5.7 -1.3 7.9 9.8 4 18.6 -3.5 23 -8.5 3.5 -3.7 6 -3.9 5.3 2 -3.4 10.5 -8.1 14.6 -15.7 15.1 -6.2 -0.5 -6.3 4.2 -1.7 7.5 10.3 7 17.7 -5 21.2 -12.4 2.5 -6.6 6.3 -3.5 6.7 2 0 7.3 -3.2 13.2 -12 20.7 6.7 10.7 14.5 21.7 21.3 32.5l20.5 -228.2 -20.5 -36c-2.1 -2 -9.3 -10.5 -11.2 -11.7 -0.7 -0.7 -1.1 -1.2 -0.1 -1.6 1 -0.4 3.2 -0.8 4.8 -1 -4.4 -4.4 -8 -5.8 -16.3 -8.2 2 -0.8 4 -0.3 9.9 -0.6a32.3 32.3 0 0 0 -14.4 -11c4.5 -3 5.3 -3.3 9.8 -7 -7.7 -0.6 -14.3 -2 -20.8 -4a41 41 0 0 0 -12.8 -3.7m0.7 9c4 0 6.6 1.4 6.6 3 0 1.7 -2.5 3.1 -6.6 3.1 -4 0 -6.6 -1.5 -6.6 -3.2 0 -1.7 2.6 -3 6.6 -3z"
android:fillColor="#000001" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="512">
<path
android:pathData="M204.9 99.5c-5 0 -13.2 1.6 -13 5.4 -14 -2.3 -15.4 3.4 -14.6 8.5 1.4 -2 3 -3.1 4.2 -3.3 1.9 -0.3 3.8 0.3 5.8 1.5a23 23 0 0 1 5 4.4c-4.8 1.1 -8.6 0.4 -12.4 -0.3a17.6 17.6 0 0 1 -6.1 -2.5c-1.6 -1.1 -2.1 -2.1 -4.6 -4.7 -2.9 -3 -6 -2.1 -5 2.5 2.2 4.3 6 6.3 10.7 7 2.2 0.4 5.6 1.2 9.4 1.2 3.8 0 8.1 -0.5 10.5 0 -1.4 0.8 -3 2.4 -6.2 3 -3.2 0.6 -8 -2 -11 -2.6 0.4 2.5 3.5 4.8 9.7 6 10.2 2.2 18.7 4 24.3 7 5.6 3 9.1 6.8 11.6 9.8 5 6 5.3 10.5 5.6 11.5 1 9.5 -2.2 14.8 -8.4 16.4 -3 0.8 -8.5 -0.7 -10.5 -3 -2 -2.4 -4 -6.4 -3.4 -12.7 0.5 -2.5 3.4 -9 1 -10.3a291.6 291.6 0 0 0 -34.4 -16c-2.7 -1.1 -5 2.5 -5.8 4A53.5 53.5 0 0 1 129 107c-4.6 -8.1 -12.1 0 -10.9 7.7 2.1 8.6 8.6 14.8 16.5 19.2 8 4.5 18.1 8.8 28.3 8.6 5.5 1 5.5 8.2 -1.1 9.5 -13 0 -23.2 -0.2 -32.9 -9.6 -7.4 -6.7 -11.5 1.3 -9.4 5.8 3.6 14 23.6 18 43.8 13.4 7.8 -1.3 3.1 7 0.9 7.2 -8.4 6 -23.5 12 -36.8 -0.1 -6.1 -4.7 -10.2 -0.7 -8 6 6 17.5 28.5 13.8 44 5.2 4 -2.2 7.6 3 2.7 6.9 -19.2 13.4 -28.9 13.6 -37.6 8.4 -10.8 -4.3 -11.8 7.8 -5.3 11.8 7.2 4.4 25.4 1 38.9 -7.4 5.7 -4.2 6 2.4 2.3 5 -15.9 13.8 -22.2 17.5 -38.8 15.2 -8.2 -0.6 -8 9.5 -1.6 13.5 8.8 5.4 26.1 -3.6 39.5 -14.7 5.6 -3 6.6 2 3.8 7.8a57.4 57.4 0 0 1 -23.3 19.2 29.1 29.1 0 0 1 -19.5 0.7c-6.2 -2.2 -7 4.2 -3.6 10 2 3.5 10.6 4.7 19.7 1.4 9.2 -3.2 19 -10.8 25.7 -19.8 6 -5.1 5.2 1.8 2.5 6.7 -13.5 21.3 -25.9 29.2 -42.1 27.9 -7.3 -1.2 -8.9 4.4 -4.3 9.6 8 6.7 18.2 6.4 27 -0.2a751 751 0 0 0 30.8 -32.6c5.5 -4.4 7.3 0 5.7 9 -1.5 5.1 -5.2 10.5 -15.3 14.5 -7 4 -1.8 9.4 3.4 9.5 2.9 0 8.7 -3.3 13 -8.3 5.9 -6.5 6.2 -11 9.5 -21.1 3 -5 8.4 -2.7 8.4 2.5 -2.6 10.2 -4.8 12 -10 16.2 -5.1 4.7 3.4 6.3 6.3 4.4 8.3 -5.6 11.3 -12.8 14.1 -19.4 2 -4.8 7.8 -2.5 5.1 5.3 -6.4 18.5 -17 25.8 -35.5 29.6 -1.9 0.3 -3 1.4 -2.4 3.6l7.5 7.5c-11.5 3.3 -20.8 5.2 -32.2 8.5L142 300.6c-1.5 -3.4 -2.2 -8.7 -10.4 -5 -5.7 -2.6 -8.2 -1.6 -11.4 1 4.5 0.1 6.5 1.3 8.3 3.4 2.3 6 7.6 6.6 13 5 3.5 2.9 5.4 5.2 9 8.2l-17.8 -0.6c-6.3 -6.7 -11.3 -6.3 -15.8 -1 -3.5 0.5 -5 0.5 -7.3 4.7 3.7 -1.5 6 -2 7.7 -0.3 6.6 3.9 11 3 14.3 0l18.7 1.1c-2.3 2 -5.6 3.1 -8 5.2 -9.7 -2.8 -14.7 1 -16.4 8.8a18.2 18.2 0 0 0 -1.4 10c1 -3.2 2.5 -5.9 5.3 -7.6 8.6 2.2 11.8 -1.3 12.3 -6.5 4.2 -3.4 10.5 -4.1 14.6 -7.6 4.9 1.6 7.2 2.6 12.1 4.1 1.7 5.3 5.7 7.4 12 6 7.7 0.3 6.3 3.4 7 5.9 2 -3.6 2 -7 -2.8 -10.3 -1.7 -4.6 -5.5 -6.7 -10.4 -4 -4.7 -1.3 -5.9 -3.2 -10.5 -4.6 11.7 -3.7 20 -4.5 31.8 -8.3 3 2.8 5.2 4.8 8.2 7.2 1.6 1 3 1.2 4 0 7.3 -10.6 10.6 -20 17.4 -27 2.6 -2.9 6 -6.8 9.6 -7.8 1.8 -0.4 4 -0.2 5.5 1.4 1.4 1.6 2.6 4.4 2 8.7 -0.6 6.2 -2 8.2 -3.8 11.8 -1.7 3.7 -3.9 6 -6 8.8 -4.4 5.7 -10.1 9 -13.5 11.2 -6.8 4.4 -9.7 2.5 -15 2.2 -6.7 0.8 -8.5 4.1 -3 8.7a21 21 0 0 0 13.7 2.3c3.3 -0.6 7 -4.8 9.8 -7 3 -3.6 8.1 0.6 4.7 4.7 -6.3 7.5 -12.6 12.4 -20.3 12.3 -8.2 1 -6.7 5.7 -1.3 7.9 9.8 4 18.6 -3.5 23 -8.5 3.5 -3.7 6 -3.9 5.3 2 -3.4 10.5 -8.1 14.6 -15.7 15.1 -6.2 -0.5 -6.3 4.2 -1.7 7.5 10.3 7 17.7 -5 21.2 -12.4 2.5 -6.6 6.3 -3.5 6.7 2 0 7.3 -3.2 13.2 -12 20.7 6.7 10.7 14.5 21.7 21.3 32.5l20.5 -228.2 -20.5 -36c-2.1 -2 -9.3 -10.5 -11.2 -11.7 -0.7 -0.7 -1.1 -1.2 -0.1 -1.6 1 -0.4 3.2 -0.8 4.8 -1 -4.4 -4.4 -8 -5.8 -16.3 -8.2 2 -0.8 4 -0.3 9.9 -0.6a32.3 32.3 0 0 0 -14.4 -11c4.5 -3 5.3 -3.3 9.8 -7 -7.7 -0.6 -14.3 -2 -20.8 -4a41 41 0 0 0 -12.8 -3.7m0.7 9c4 0 6.6 1.4 6.6 3 0 1.7 -2.5 3.1 -6.6 3.1 -4 0 -6.6 -1.5 -6.6 -3.2 0 -1.7 2.6 -3 6.6 -3z"
android:fillColor="#000001" />
</group>
</vector>
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v170.7H0z"
android:fillColor="#D90012" />
<path
android:pathData="M0 170.7h512v170.6H0z"
android:fillColor="#0033A0" />
<path
android:pathData="M0 341.3h512V512H0z"
android:fillColor="#F2A800" />
</vector>
@@ -0,0 +1,42 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v259.8H0z"
android:fillType="evenOdd"
android:fillColor="#FF0000" />
<path
android:pathData="M0 252.2h512V512H0z"
android:fillType="evenOdd"
android:fillColor="#000001" />
<path
android:pathData="M228.7 148.2c165.2 43.3 59 255.6 -71.3 167.2l-8.8 13.6c76.7 54.6 152.6 10.6 174 -46.4 22.2 -58.8 -7.6 -141.5 -92.6 -150z"
android:fillType="evenOdd"
android:fillColor="#FFEC00" />
<path
android:pathData="M170 330.8l21.7 10.1 -10.2 21.8 -21.7 -10.2zm149 -99.5h24v24h-24zm-11.7 -38.9l22.3 -8.6 8.7 22.3 -22.3 8.7zm-26 -29.1l17.1 -16.9 16.9 17 -17 16.9zm-26.2 -39.8l22.4 8.4 -8.5 22.4 -22.4 -8.4zM316 270l22.3 8.9 -9 22.2 -22.2 -8.9zm-69.9 70l22 -9.3 9.5 22 -22 9.4zm-39.5 2.8h24v24h-24zm41.3 -116l-20.3 -15 -20.3 14.6 8 -23 -20.3 -15h24.5l8.5 -22.6 7.8 22.7 24.7 -0.3 -19.6 15.3z"
android:fillType="evenOdd"
android:fillColor="#FFEC00" />
<path
android:pathData="M336 346.4c-1.2 0.4 -6.2 12.4 -9.7 18.2l3.7 1c13.6 4.8 20.4 9.2 26.2 17.5a7.9 7.9 0 0 0 10.2 0.7s2.8 -1 6.4 -5c3 -4.5 2.2 -8 -1.4 -11.1 -11 -8 -22.9 -14 -35.4 -21.3"
android:fillType="evenOdd"
android:fillColor="#FFEE00" />
<path
android:pathData="M365.3 372.8a4.3 4.3 0 1 1 -8.7 0 4.3 4.3 0 0 1 8.6 0zm-21.4 -13.6a4.3 4.3 0 1 1 -8.7 0 4.3 4.3 0 0 1 8.7 0m10.9 7a4.3 4.3 0 1 1 -8.7 0 4.3 4.3 0 0 1 8.7 0"
android:fillType="evenOdd"
android:fillColor="#000001" />
<path
android:pathData="M324.5 363.7c-42.6 -24.3 -87.3 -50.5 -130 -74.8 -18.7 -11.7 -19.6 -33.4 -7 -49.9 1.2 -2.3 2.8 -1.8 3.4 -0.5 1.5 8 6 16.3 11.4 21.5A5288 5288 0 0 1 334 345.6c-3.4 5.8 -6 12.3 -9.5 18z"
android:fillType="evenOdd"
android:fillColor="#FFEE00" />
<path
android:pathData="M297.2 305.5l17.8 16 -16 17.8 -17.8 -16z"
android:fillType="evenOdd"
android:fillColor="#FFEC00" />
<path
android:pathData="M331.5 348.8l-125 -75.5m109.6 58.1L274 304.1m18.2 42.7L249.3 322"
android:strokeColor="#000000"
android:strokeWidth="3" />
</vector>
@@ -0,0 +1,23 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#3A7DCE" />
<path
android:pathData="M107.7 240.9c-3.5 -7.9 -3.5 -7.9 -3.5 -15.7 -1.8 0 -2.1 0.4 -3.1 0 -1 -0.3 -1.4 7.3 -4.7 5.8 -0.5 -0.7 2.4 -6.2 -0.8 -8.4 -1 -0.8 0.3 -5.3 -0.2 -7.2 0 0 -4 2.3 -7 -5.9 -1.4 -2.1 -3.4 2 -3.4 2s0.9 2.5 -0.7 3c-2.3 -1.8 -3.9 -0.8 -6.7 -3.3 -2.9 -2.5 0.6 -5.4 -4.8 -7.6 3.5 -9.8 3.5 -7.8 12.2 -11.8 -5.2 -3.9 -5.2 -3.9 -8.7 -9.8 -5.3 -2 -7 -3.9 -12.2 -7.8 -7 -9.8 -10.5 -29.4 -10.5 -43.2 4.4 -4.6 10.5 15.7 19.2 21.6l12.2 5.9c7 4 8.7 7.8 14 11.8l15.6 5.9c7 5.8 10.5 13.7 15.7 15.6 5.7 0 6.8 -3.6 8.6 -3.9 10.2 -0.5 15.5 -2 17.5 -5.5 2 -2.8 7 1.6 21 -4.3l-1.8 -7.8s3.8 -3.5 8.8 -2c-0.2 -3.6 -0.5 -13.1 4.4 -17.5 -3 -3.5 -1 -6 -1 -6s2.8 -3 3.2 -4.6c-1.5 -8.7 1.2 -8.8 1.9 -11.3 0.6 -2.6 -2.4 -1.7 -1.6 -5.2 0.9 -3.5 6 -4.4 6.6 -7.3 0.7 -2.8 -1.5 -4.3 -1.3 -5 1 -2.7 0.1 -9.2 0 -11.7 9.3 -2.9 12.4 -11.4 15.7 -7.9 1.7 -11.8 3.5 -15.7 14 -15.7 1.4 -3.6 -3.9 -6.7 -1.8 -7.8 3.5 -0.5 6.1 -0.3 10.2 5.7 1.3 1.9 1.5 -2.8 2.8 -3.3 1.4 -0.5 4.5 -0.5 5 -2.8 0.4 -2.4 1.1 -5.5 2.9 -9.4 1.5 -3.2 2.6 1.2 4 7.4 7.3 0.3 23.9 2.2 30.9 4.3 5.2 1.6 8.7 -1.5 13.7 -2.1 3.7 4.2 7.2 1 9.1 10 2.8 4.7 7.3 0.3 8.3 1.8 5.9 18 26 5.8 27.4 6.1 2.6 0 5.7 8.1 7.7 8 3.3 -0.7 2.4 -3.2 5.2 -2.2 -0.7 6.8 5.7 14.7 5.7 19.7 0 0 1.5 0.9 3 -0.6 1.4 -1.5 2.7 -5.4 4 -5.3 3 0.5 4.3 1 7.8 1.6 9.4 3.7 14.3 4.5 18 6.3 1.6 3.6 3.3 5.4 6.8 4.7 2.8 2.2 0.7 5 2.4 5.2 3.5 -2 4.7 -4.1 8.1 -2.2 3.5 2 7 6 8.8 9.8 0 2 -1.8 9.8 0 21.6 0.8 4 1.3 7 5 13.8 -1 6.9 4.7 18.5 4.7 21.5 0 3.9 -2.8 6 -4.5 9.8 7 6 0 15.7 -3.5 21.6 26.2 5.9 14 17.7 34.9 11.8 -5.3 13.7 -3.4 12.6 1.8 26.3 -10.4 7.9 -0.2 10.3 -7.2 20 -0.4 0.7 4.2 8.6 10.6 8.6 -1.7 15.7 -7 9.8 -5.2 33.3 -13.8 -0.3 -8.2 17.6 -17.5 15.7 0.6 11.3 5.3 12.2 3.5 23.6 -7 2 -7 2 -10.4 7.8l-5.3 -2c-1.7 9.9 -5.2 11.8 0 21.6 0 0 -6.7 0.3 -8.7 0 -0.1 3.4 3 4.3 3.5 7.9 -0.3 1.4 -10 7.6 -17.4 7.8 -2 4.9 5.2 10 4.8 12.5 -8.2 1.7 -11.8 13 -11.8 13s4.2 2 3.5 4c-2.3 -1.9 -3.5 -2 -7 -2 -1.7 0.5 -6 -0.1 -10 7.6 -4.5 1.7 -6.6 1 -10 6.1 -1.5 -4.8 -3.7 0 -6.3 2 -2.7 1.8 -6.2 6.4 -6.7 6.2 0.1 -1.3 1.6 -6.2 1.6 -6.2l-8.7 2h-1c-0.8 0.1 -0.6 -5.7 -2.2 -5.5 -1.7 0.3 -6.4 7.3 -8 7.6 -1.6 0.2 -2.1 -2.3 -3.5 -2 -1.4 0.1 -4.1 7.4 -5 7.6 -1 0.2 -5 -4.4 -8.3 -3.8 -17.2 6.8 -19.9 -13.4 -22.6 -2 -3.6 -2.1 -3 -0.9 -6.6 0.2 -2.3 0.7 -2.5 -3.5 -4.6 -3.4 -4.2 0.1 -4 4.5 -6.2 3.2 -1.8 -9.2 -13 -7.5 -14.1 -11.5 -0.9 -4 4.8 -4 6.7 -6.8 1.4 -4 -1.5 -5.5 4.3 -9.4 7.4 -5.7 3.1 -7.8 4.4 -12.1 2.4 -6.2 2.4 -7.7 0.4 -13.2 0 0 -5.8 -17.6 -7 -17.6 -3.4 -1.1 -3.4 6.5 -8.5 8.6 -10.5 3.9 -29 -10 -32.2 -10 -3 0.1 -16.5 3.7 -16 -4 -2 7.5 -9.6 1.8 -10 1.8 -7 0 -4.3 6 -9 5.8 -2.1 -0.8 -23.6 -2.2 -23.6 -2.2v4l-14 -8 -12.2 -3.9c-10.4 -3.9 -5.2 -13.7 -22.6 -7.8v-11.8h-8.7c3.4 -23.5 0 -11.7 -1.8 -33.3l-7 2c-7 -10.7 9.7 -8.6 -5.2 -15.8 0 0 0.3 -11.7 -3.5 -7.8 -0.7 0.5 1.8 5.9 1.8 5.9 -14 -2 -17.5 -5.9 -17.5 -21.6 0 0 11.5 1.9 10.5 0 -1.6 -3 -3.8 -22 -3.4 -23.3 -0.2 -2.6 10.7 -9.1 8.6 -15.3 1.3 -0.6 5.3 -0.6 5.3 -0.6"
android:fillColor="#FFFFFF" />
<group
android:scaleX="0.86021"
android:scaleY="0.96774"
android:translateX="-50"
android:translateY="10">
<path
android:pathData="M595.5 297.6c-0.6 1.3 -0.5 2.6 0.1 3.6 1.1 -1.7 0.2 -2.4 0 -3.6zm-476 -149.4s-3 -0.4 -2.4 2.3c1 -2 2.3 -2.2 2.4 -2.3zm-0.3 -6.4c-1.7 0 -3.8 -0.2 -3 2.5 1 -2.1 3 -2.4 3 -2.5zm12.7 36.3s2.6 -0.2 2 2.5c-1 -2 -2 -2.4 -2 -2.5z"
android:strokeColor="#FFFFFF"
android:strokeWidth="2.5"
android:strokeLineJoin="round" />
</group>
</vector>
@@ -0,0 +1,363 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#74ACDF" />
<path
android:pathData="M0 170.7h512v170.7H0z"
android:fillColor="#FFFFFF" />
<group
android:scaleX="1.024"
android:scaleY="1.024"
android:translateX="-153.6">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
</group>
<group
android:rotation="90"
android:translateX="512">
<group
android:scaleX="1.024"
android:scaleY="1.024"
android:translateX="-153.6">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
</group>
</group>
<group
android:rotation="-0.000000000000007016709"
android:scaleX="-1"
android:scaleY="-1"
android:translateX="512"
android:translateY="512">
<group
android:scaleX="1.024"
android:scaleY="1.024"
android:translateX="-153.6">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
</group>
</group>
<group
android:rotation="-90"
android:translateY="512">
<group
android:scaleX="1.024"
android:scaleY="1.024"
android:translateX="-153.6">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M396.8 251.3l28.5 62s0.5 1.2 1.3 0.9c0.8 -0.4 0.3 -1.6 0.3 -1.6l-23.7 -64m-0.7 24.2c-0.4 9.4 5.4 14.6 4.7 23 -0.8 8.5 3.8 13.2 5 16.5 1 3.3 -1.2 5.2 -0.3 5.7 1 0.5 3 -2.1 2.4 -6.8 -0.7 -4.6 -4.2 -6 -3.4 -16.3 0.8 -10.3 -4.2 -12.7 -3 -22"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.1" />
</group>
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
<group
android:rotation="22.5"
android:translateX="126.119"
android:translateY="-134.0433">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="45"
android:translateX="293.934"
android:translateY="-209.6194">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
<group
android:rotation="67.5"
android:translateX="477.8965"
android:translateY="-215.2227">
<path
android:pathData="M404.3 274.4c0.5 9 5.6 13 4.6 21.3 2.2 -6.5 -3.1 -11.6 -2.8 -21.2m-7.7 -23.8l19.5 42.6 -16.3 -43.9"
android:fillColor="#85340A" />
</group>
</group>
</group>
<path
android:pathData="M284.4 256A28.4 28.4 0 0 1 227.6 256A28.4 28.4 0 0 1 284.4 256Z"
android:fillColor="#F6B40E"
android:strokeColor="#85340A"
android:strokeWidth="1.5" />
<path
android:pathData="M265.7 250c-2 0 -3.8 0.8 -4.9 2.5 2.2 2 7 2.2 10.3 -0.2a7.5 7.5 0 0 0 -5.4 -2.4zm0 0.4c1.9 0 3.6 0.8 3.9 1.7 -2.2 2.4 -5.7 2.2 -7.9 0.4 1 -1.5 2.5 -2.1 4 -2.1"
android:fillColor="#843511" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="512.3">
<path
android:pathData="M246.2 248.6c2.8 0 3.5 0.6 4.8 1.7 1.3 1.1 2 0.9 2.2 1.1 0.2 0.2 0 0.9 -0.4 0.7 -0.5 -0.3 -1.4 -0.7 -2.7 -1.8 -1.3 -1 -2.6 -1 -4 -1 -3.8 0 -6 3.2 -6.5 3 -0.4 -0.2 2.2 -3.7 6.6 -3.7"
android:fillColor="#85340A" />
</group>
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="512.3">
<path
android:pathData="M238.3 249.9c5 -4.4 11.4 -5 14.9 -1.8a8.6 8.6 0 0 1 1.6 3.7c0.5 2.5 -0.3 5.2 -2.3 8 0.3 0 0.7 0.1 1 0.4 1.7 -3.4 2.3 -6.8 1.7 -10l-0.7 -2.5c-4.8 -4 -11.4 -4.4 -16.2 2.2"
android:fillColor="#85340A" />
</group>
<group
android:translateX="19.3">
<path
android:pathData="M248.3 252.1A2 2 0 0 1 244.3 252.1A2 2 0 0 1 248.3 252.1Z"
android:fillColor="#85340A" />
</group>
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="512.3">
<path
android:pathData="M241 253.4c3.7 2.8 7.4 2.6 9.6 1.3 2.2 -1.3 2.2 -1.8 1.7 -1.8 -0.4 0 -0.9 0.5 -2.6 1.4 -1.8 0.8 -4.4 0.8 -8.8 -1z"
android:fillColor="#85340A" />
</group>
<path
android:pathData="M251.6 260a2 2 0 1 0 2 3c0.8 0.6 1.8 0.6 2.4 0.6h0.3c0.5 0 1.6 0 2.3 -0.6 0.4 0.5 1 0.8 1.6 0.8a2 2 0 0 0 0.4 -3.9c0.5 0.2 0.9 0.7 0.9 1.3a1.3 1.3 0 0 1 -2.7 0 3 3 0 0 1 -2.7 1.8 3.3 3.3 0 0 1 -2.7 -1.8c0 0.7 -0.6 1.3 -1.3 1.3a1.3 1.3 0 0 1 -0.4 -2.6zm2.2 5.8c-2.2 0 -3 2 -5 3.3 1 -0.5 2 -1.3 3.5 -2.2 1.5 -0.9 2.8 0.2 3.7 0.2 0.9 0 2.2 -1.1 3.7 -0.2 1.5 0.9 2.4 1.7 3.5 2.2 -2 -1.4 -2.8 -3.3 -5 -3.3a6 6 0 0 0 -2.2 0.6c-1 -0.4 -1.8 -0.6 -2.2 -0.6"
android:fillColor="#85340A" />
<path
android:pathData="M253 268.3c-0.8 0 -2 0.3 -3.6 0.8 4 -1 4.8 0.4 6.6 0.4 1.7 0 2.6 -1.3 6.6 -0.4 -4.4 -1.4 -5.3 -0.5 -6.6 -0.5 -0.9 0 -1.5 -0.3 -3 -0.3"
android:fillColor="#85340A" />
<path
android:pathData="M249.6 269h-0.8c4.6 0.5 2.4 3.1 7.2 3.1 4.8 0 2.6 -2.6 7.2 -3 -4.8 -0.5 -3.3 2.4 -7.2 2.4 -3.7 0 -2.6 -2.5 -6.4 -2.5"
android:fillColor="#85340A" />
<path
android:pathData="M260 276.1a4 4 0 0 0 -8 0 4 4 0 0 1 8 0"
android:fillColor="#85340A" />
<path
android:pathData="M238.3 249.9c5 -4.4 11.4 -5 14.9 -1.8a8.6 8.6 0 0 1 1.6 3.7c0.5 2.5 -0.3 5.2 -2.3 8 0.3 0 0.7 0.1 1 0.4 1.7 -3.4 2.3 -6.8 1.7 -10l-0.7 -2.5c-4.8 -4 -11.4 -4.4 -16.2 2.2"
android:fillColor="#85340A" />
<path
android:pathData="M246.2 248.6c2.8 0 3.5 0.6 4.8 1.7 1.3 1.1 2 0.9 2.2 1.1 0.2 0.2 0 0.9 -0.4 0.7 -0.5 -0.3 -1.4 -0.7 -2.7 -1.8 -1.3 -1 -2.6 -1 -4 -1 -3.8 0 -6 3.2 -6.5 3 -0.4 -0.2 2.2 -3.7 6.6 -3.7"
android:fillColor="#85340A" />
<group
android:translateX="-19.6">
<path
android:pathData="M265.7 250c-2 0 -3.8 0.8 -4.9 2.5 2.2 2 7 2.2 10.3 -0.2a7.5 7.5 0 0 0 -5.4 -2.4zm0 0.4c1.9 0 3.6 0.8 3.9 1.7 -2.2 2.4 -5.7 2.2 -7.9 0.4 1 -1.5 2.5 -2.1 4 -2.1"
android:fillColor="#843511" />
</group>
<path
android:pathData="M248.3 252.1A2 2 0 0 1 244.3 252.1A2 2 0 0 1 248.3 252.1Z"
android:fillColor="#85340A" />
<path
android:pathData="M241 253.4c3.7 2.8 7.4 2.6 9.6 1.3 2.2 -1.3 2.2 -1.8 1.7 -1.8 -0.4 0 -0.9 0.5 -2.6 1.4 -1.8 0.8 -4.4 0.8 -8.8 -1z"
android:fillColor="#85340A" />
</vector>
@@ -0,0 +1,750 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0v512h512V0Z"
android:fillColor="#006233" />
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1071.9 2779.7c-25.9 38.9 -7.2 64.2 19.5 66 17.6 1.3 54.2 -24.9 54.1 -55.7l-10 -5.6c5.6 15.8 -0.2 20.8 -12.1 31.6 -23.5 21.3 -71.5 22.8 -51.5 -36.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="0.4" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1277.2 2881.7c145.8 4.1 192.2 -137 102.2 -257.8l-8.9 13.3c5.8 56.3 14.2 111.8 15 169.5 -17.6 20.7 -43.2 13 -48.3 -10 0.3 -31.2 -9.9 -57.6 -22.8 -82.8l-7.2 13.3c8.4 20.7 17.5 44 19.4 69.5 -41.6 49.9 -87.6 60 -70.5 -5.6 -32.9 57.5 16.9 98 73.3 9.5 12.1 60.4 58.9 22.9 61.7 9.9 5.1 -39.6 2.5 -103.4 -7.8 -153.8 40.6 70.3 42 121 20.4 154.9 -24 37.7 -76.2 55.3 -126.5 70.1z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1359.9 2722.2c-31.2 2.3 -47.2 -4.1 -30.3 -27.2 16.7 -22.6 32.3 -4.6 36.5 25.6 3.9 28.3 -54.8 64.4 -75.1 64.4 -30.7 0 -44.9 -39.5 -16.6 -75 -36.4 103.6 78.6 43.5 85.5 12.2zm-21.6 -24c-3.8 -0.2 -6.6 6.5 -4.7 7.8 5.5 3.8 14.2 1.5 15.1 -0.4 1.9 -4.2 -5.1 -7.2 -10.4 -7.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1190.5 2771.1c-30 59 -0.1 83.4 38.4 76.6 22.4 -4.1 50.8 -20 67.2 -41.7 0.3 -47.8 -0.4 -95.2 -4.6 -141.5 15 -17.9 -1.3 -17.8 -7 -37 -2.6 11.2 -8.9 23.3 -2.8 32 4.3 46.7 6.7 94 6.6 142.2 -30.2 24.3 -52.9 33.3 -69.1 33.1 -33.5 -0.3 -40.7 -28.5 -28.7 -63.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1251.8 2786.7c-0.5 -44.5 -1.2 -95 -5.2 -126.1 15.6 -17.3 -0.8 -17.7 -5.9 -37.1 -3 11 -9.6 23 -3.8 31.9 2.6 47.6 5.1 95.2 5.6 142.8 3.6 -2.3 7.7 -3.2 9.3 -11.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1135.4 2784.6c-3.8 -4.8 -6.5 -10.2 -9.6 -14.9 -0.5 -6.7 4 -12.9 4.6 -16.3 5.1 7.9 8.1 13.9 12.2 17.8m5.4 3.1c7.5 3 16.7 3 25.2 3.2 32.8 0.6 67.3 -4.8 63.6 39.6a66.2 66.2 0 0 1 -65.2 61.9c-41.7 -0.4 -77.3 -46.4 -13 -131.1 6.2 -1 14.3 0.7 21 1.3 11.5 0.9 23.3 -0.2 36.8 -11 -1.6 -27.9 -1.6 -54.3 -5 -79.5 -5.8 -8.9 0.8 -20.8 3.8 -31.9 5.1 19.4 21.4 19.8 5.9 37.2 3.7 28 4.1 56.5 4.1 73.5 -7.8 11.9 -13.9 24.5 -36.7 29.3 -23.3 -3.4 -33.8 -36 -58.1 -25.2 6.7 -29.4 68.4 -36.1 74.6 -12.9 -4.1 24.2 -61.7 14.5 -77 92.7 -4.7 24.1 20.7 46.3 46.8 44.5 25.5 -1.7 52.7 -19.4 55.4 -49.2 2.1 -24.9 -33 -22 -47.7 -21.7 -21.4 0.5 -34.9 -2.8 -43 -7.5m21.9 -53.9c3.8 -3.6 17.1 -6.1 21.9 -0.3 -3.6 2.4 -7.1 5 -10 8.1 -5 -2.6 -8.3 -5.2 -11.9 -7.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="0.4" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1194 2650.9a49 49 0 0 1 5.3 21c-2.2 10.4 -11.1 20.1 -20.3 20.4 -5.7 0.2 -12.1 -1.4 -16.6 -10.3 -0.5 -1.1 -2.9 -3.7 -5.2 -2.5 -10.1 16.6 -17.6 23.6 -26.7 23.5 -18.2 -0.3 -12.8 -16.5 -29.6 -21.5 -7 -0.2 -18.5 6.9 -24.4 20.8 -22.4 63.5 -42.8 -0.2 -34.1 -29.8 1.3 28.3 8.1 45.1 15.1 44.6 5.1 -0.5 9.6 -12.3 16.1 -24.7 5 -9.5 17 -26.6 29.7 -26.6 11.6 0.3 4.3 21.6 27.5 21.3 11.2 -0.2 21.5 -8.8 31.9 -26 2.3 -0.4 2.9 3.7 3.4 5.1 1.6 5.9 11.8 22.1 25.6 7.3 -0.7 -3.2 -0.4 -8.5 -3.9 -9.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1266.9 2598.3c-12.3 6.1 -21.3 0.5 -26.4 -4.9 8.9 -1.8 15.8 -5 17.8 -12 -4 -9 -13.5 -12.9 -26.9 -13 -17.9 0.5 -27.1 7.7 -28.2 17.6 8.3 0.3 15.8 -2 19 6 -14.7 7.2 -32 9.8 -50.8 9.7 -30.8 1.6 -35.3 -12.3 -43.4 -24.5 -0.6 -0.8 -3.3 -2.1 -4.7 -1.9 -9.5 0 -16.5 33.2 -27.2 33.1 -10.7 -1.4 -8.3 -21.4 -11.4 -32.8 -2.6 17.9 3.3 84.5 36.4 12.2 1 -2.4 2.4 -1.7 3.3 0.3 8.9 20.2 27 27.2 46.5 28.2 16.3 0.9 37.1 -6.2 59.4 -18.8 5.9 6.5 10.6 13.9 23 15.3 14.5 0.7 30 -9.8 33.5 -22.8 1.8 -6.7 2.1 -19.9 -5 -20.1 -9.9 -0.3 -17.1 23.7 -14.8 45.3 0.2 -0.3 1.3 -5.4 1.3 -5.4m-43.8 -28.8c6.5 -3 12.8 -4.4 17.8 2.2a27.4 27.4 0 0 0 -8.4 4c-2.8 -2.2 -6.6 -3.3 -9.4 -6.2zm47.8 14.9c1.6 -7.1 2.5 -12.8 8.3 -16.5 1.2 7.5 1.4 11.7 -8.3 16.5zm39 11c-1.9 -6.1 -3.8 -11.4 -4.4 -18 -1.4 -13.4 10.1 -21 20.5 -19.9 10.7 1.1 17.8 5.1 28 8.6 8 2.7 18.8 4.8 29.1 7.7 5.8 2.6 0 9.4 -1.5 10.3 -25.8 10.1 -44.1 26.1 -60.5 26.8 -9.8 0.5 -18.5 -5.9 -26.4 -19 -0.5 -25.4 -1.4 -55.2 -3.9 -73.9 3.8 -3.8 4.6 -6.6 6.4 -9.7 2 24.7 2.8 50.7 3.3 76.9 2.1 4.5 4.7 8.3 9.4 10.2zm16.5 2c-13.8 3.9 -12.1 -7.8 -13.4 -15 -1.5 -8.4 -0.5 -17.9 10.2 -15.5 13.9 3.7 26.6 8.6 38.9 13.8z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="0.4" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1314.3 2621.3l1.9 9.3h1.5l-0.6 -8.7"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="0.4" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1094.2 2718.5l7 -7.2 8.1 6.9 -7.5 6.7zm17.8 -2.4l7.1 -7.2 8.1 6.9 -7.5 6.7zm-49.5 -74.6l7.1 -7.2 8.1 6.9 -7.5 6.7zm3.2 21.2l7.1 -7.2 8 6.9 -7.5 6.7zm128.5 35.5l6.5 -5.3 6 6.5 -6.8 4.8zm-85.8 -135.7l4.6 -4.7 5.3 4.5 -4.9 4.4zm11.7 -1.5l4.6 -4.8 5.3 4.6 -4.9 4.3zm245.6 53.7l-4.4 3.7 -4.2 -4.3 4.6 -3.4z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="4"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1158.7 2747.4l-0.5 7.9 12.6 1.2 10.1 -7.6z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="0.4" />
</group>
<group
android:scaleX="0.38779"
android:scaleY="0.35285"
android:translateX="-224"
android:translateY="-715.6">
<path
android:pathData="M1265.2 2599.8l3.7 -0.8 -0.4 10.3 -2.3 0.9z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF"
android:strokeColor="#FFFFFF"
android:strokeWidth="1" />
</group>
<path
android:pathData="M256 348c55 0 99.8 -40.7 99.8 -90.8a87.3 87.3 0 0 0 -34.7 -68.8 74.9 74.9 0 0 1 20.5 51.3c0 43.5 -38.3 78.8 -85.6 78.8s-85.6 -35.3 -85.6 -78.8a74.8 74.8 0 0 1 20.6 -51.3 87.3 87.3 0 0 0 -34.8 68.8c0 50.1 44.8 90.9 99.8 90.9z"
android:fillColor="#FFFFFF" />
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-54 1623c-88 44 -198 32 -291 -28 -4 -2 -6 1 -2 12 10 29 18 52 -12 95 -13 19 2 22 24 20 112 -11 222 -36 275 -57zm-2 52c-35 14 -95 31 -162 43 -27 4 -26 21 22 27 49 5 112 -30 150 -61z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M0 1579c12 0 34 -5 56 -8 41 -7 11 56 -56 56v21c68 0 139 -74 124 -107 -21 -48 -79 -7 -124 -7s-103 -41 -124 7c-15 33 56 107 124 107v-21c-67 0 -97 -63 -56 -56 22 3 44 8 56 8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M54 1623c88 44 198 32 291 -28 4 -2 6 1 2 12 -10 29 -18 52 12 95 13 19 -2 22 -24 20 -112 -11 -222 -36 -275 -57zm2 52c35 14 94 31 162 43 27 4 26 21 -22 27 -49 5 -112 -30 -150 -61z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M3 1665c2 17 5 54 28 38 31 -21 38 -37 38 -67 0 -19 -23 -47 -69 -47s-69 28 -69 47c0 30 7 46 38 67 23 16 25 -21 28 -38 1 -6 6 -4 6 0z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-29 384c-13 -74 -122 -79 -139 -91 -20 -13 -17 0 -10 20 20 52 88 73 119 79 25 4 33 6 30 -8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M4 386c11 -76 -97 -112 -110 -129 -15 -18 -17 -7 -10 14 13 45 60 98 88 112 23 12 30 17 32 3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M93 430c10 -91 -78 -105 -101 -134 -15 -18 -16 -8 -11 13 10 46 54 100 81 117 21 13 30 18 31 4z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M66 410c-91 -59 -155 -26 -181 -29 -25 -3 -33 13 10 37 53 29 127 25 156 14 30 -12 21 -18 15 -22zm137 40c-28 -98 -93 -82 -112 -94s-21 -9 -17 13c8 39 75 82 108 95 12 4 27 10 21 -14z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M190 467c-78 -63 -139 -16 -163 -23 -18 -5 -10 7 -3 12 50 35 112 54 160 32 19 -8 20 -10 6 -21zm169 64c1 -62 -127 -88 -154 -126 -16 -23 -30 -11 -22 26 12 48 100 101 148 111 29 6 28 -4 28 -11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M355 542c-81 -73 -149 -49 -174 -56 -25 -6 -35 9 4 39 48 36 122 43 153 36s23 -14 17 -19zm145 107c-23 -106 -96 -128 -114 -148 -17 -20 -35 -14 -20 34 18 57 77 107 108 119 30 13 28 3 26 -5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M499 663c-59 -95 -136 -92 -160 -105 -23 -14 -39 -2 -8 39 36 50 110 78 144 80s28 -7 24 -14z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M575 776c34 -108 -44 -148 -52 -166 -9 -18 -18 -18 -23 1 -22 77 49 152 60 167 11 14 13 7 15 -2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M559 806c-27 -121 -98 -114 -114 -131 -17 -17 -19 -5 -16 17 8 59 79 99 111 119 10 6 22 13 19 -5zm68 142c49 -114 -9 -191 -27 -208 -18 -16 -29 -23 -23 0 8 35 -20 125 23 191 14 22 16 43 27 17z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M601 971c11 -70 -29 -134 -72 -159 -25 -15 -26 -11 -26 10 2 65 63 119 81 149 17 28 16 7 17 0z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M590 1153c-36 -132 39 -208 62 -223 22 -16 36 -22 26 3 -15 37 1 140 -56 205 -18 22 -25 45 -32 15z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M598 1124c30 -115 -35 -180 -55 -193 -19 -13 -31 -18 -22 3 12 32 -1 122 49 178 16 19 22 38 28 12z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M561 1070c-54 58 -55 143 -31 193 15 29 17 27 31 6 38 -61 15 -149 17 -188 1 -37 -11 -17 -17 -11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M650 1162c0 80 -49 145 -101 165 -30 11 -30 8 -26 -16 14 -90 83 -123 108 -152 24 -28 19 -5 19 3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M464 1400c88 -80 41 -136 45 -188 2 -28 -9 -21 -19 -11 -56 55 -59 153 -47 191 5 17 13 15 21 8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M582 1348c-29 88 -106 142 -171 145 -38 2 -37 -1 -24 -27 49 -94 136 -105 175 -129 36 -22 23 2 20 11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M343 1513c114 -57 91 -152 112 -176 15 -17 -3 -15 -12 -9 -67 39 -121 101 -122 167 0 25 2 28 22 18z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M187 1619c144 23 211 -86 253 -96 22 -5 6 -14 -5 -15 -96 -11 -218 34 -255 84 -15 20 -15 24 7 27z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M333 1448c-29 95 -137 173 -218 179 -38 3 -38 -1 -24 -26 65 -118 178 -138 218 -168 34 -26 27 6 24 15zM29 384c13 -74 122 -79 139 -91 20 -13 17 0 10 20 -20 52 -88 73 -119 79 -25 4 -33 6 -30 -8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-4 386c-11 -76 97 -112 110 -129 15 -18 17 -7 10 14 -13 45 -60 98 -88 112 -23 12 -30 17 -32 3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-93 430c-10 -91 78 -105 101 -134 15 -18 16 -8 11 13 -10 46 -54 100 -81 117 -21 13 -30 18 -31 4z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-66 410c91 -59 155 -26 181 -29 25 -3 33 13 -10 37 -53 29 -127 25 -156 14 -30 -12 -21 -18 -15 -22zm-137 40c28 -98 93 -82 112 -94s21 -9 17 13c-8 39 -75 82 -108 95 -12 4 -27 10 -21 -14z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-190 467c78 -63 139 -16 163 -23 18 -5 10 7 3 12 -50 35 -112 54 -160 32 -19 -8 -20 -10 -6 -21zm-169 64c-1 -62 127 -88 154 -126 16 -23 30 -11 22 26 -12 48 -100 101 -148 111 -29 6 -28 -4 -28 -11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-355 542c81 -73 149 -49 174 -56 25 -6 35 9 -4 39 -48 36 -122 43 -153 36s-23 -14 -17 -19zm-145 107c23 -106 96 -128 114 -148 17 -20 35 -14 20 34 -18 57 -77 107 -108 119 -30 13 -28 3 -26 -5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-499 663c59 -95 136 -92 160 -105 23 -14 39 -2 8 39 -36 50 -110 78 -144 80s-28 -7 -24 -14z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-575 776c-34 -108 44 -148 52 -166 9 -18 18 -18 23 1 22 77 -49 152 -60 167 -11 14 -13 7 -15 -2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-559 806c27 -121 98 -114 114 -131 17 -17 19 -5 16 17 -8 59 -79 99 -111 119 -10 6 -22 13 -19 -5zm-68 142c-49 -114 9 -191 27 -208 18 -16 29 -23 23 0 -8 35 20 125 -23 191 -14 22 -16 43 -27 17z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-601 971c-11 -70 29 -134 72 -159 25 -15 26 -11 26 10 -2 65 -63 119 -81 149 -17 28 -16 7 -17 0z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-590 1153c36 -132 -39 -208 -62 -223 -22 -16 -36 -22 -26 3 15 37 -1 140 56 205 18 22 24 45 32 15z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-598 1124c-30 -115 35 -180 55 -193 19 -13 31 -18 22 3 -12 32 1 122 -49 178 -16 19 -22 38 -28 12z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-561 1070c54 58 55 143 31 193 -15 29 -17 27 -31 6 -38 -61 -15 -149 -17 -188 -1 -37 11 -17 17 -11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-650 1162c0 80 49 145 101 165 30 11 30 8 26 -16 -14 -90 -83 -123 -108 -152 -24 -28 -19 -5 -19 3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-464 1400c-88 -80 -41 -136 -45 -188 -2 -28 9 -21 19 -11 56 55 59 153 47 191 -5 17 -13 15 -21 8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-582 1348c29 88 106 142 171 145 38 2 37 -1 24 -27 -49 -94 -136 -105 -175 -129 -36 -22 -23 2 -20 11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-343 1513c-114 -57 -91 -152 -112 -176 -15 -17 3 -15 12 -9 67 39 121 101 122 167 0 25 -2 28 -22 18z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-187 1619c-144 23 -211 -86 -253 -96 -22 -5 -6 -14 5 -15 96 -11 218 34 255 84 15 20 15 24 -7 27z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<group
android:scaleX="0.25022"
android:scaleY="0.22768"
android:translateX="256"
android:translateY="29">
<path
android:pathData="M-333 1448c29 95 137 173 218 179 38 3 38 -1 24 -26 -65 -118 -178 -138 -218 -168 -34 -26 -27 6 -24 15z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="8" />
</group>
<path
android:pathData="M298.3 137.4c-4.8 -3.1 -22.3 -1.3 -25.5 -3.4 6.2 4.8 20.2 1.4 25.5 3.4m42.3 8.2c-3.8 -6.1 -26 -10.2 -29.3 -15.7 5.8 10.5 23 9.1 29.3 15.7m-3.3 7c-8.2 -7.2 -27.5 -4.2 -33.2 -8.6 13.5 11.2 21 2.5 33.2 8.7zM289 120.4c5.3 2.5 11.8 5 15 10.9 -3.7 -4.6 -10.5 -6.4 -16 -10.2 0.3 0 0.8 -0.5 1 -0.7m82.1 46.9c-3.3 -6.9 -14.8 -14.4 -15.8 -16.9 3.3 8.9 12.8 11 15.8 16.9m3 12c-10 -14.3 -25.8 -12.7 -32 -18.2 4.7 5.3 22.8 8.7 32 18.2m23.3 22.1c0.7 -15.2 -11.8 -21 -12.3 -29.6 -0.2 10.3 12.8 24.2 12.3 29.6m-6.3 8.2c-2.5 -13.2 -19.5 -14.1 -22.5 -21.8 0 7.2 20 14.8 22.5 21.8m14 -7.5c9 10 2.8 25.3 6.5 36.4 -4.5 -8.2 -2.2 -28.6 -6.5 -36.4m-14.7 42.8c13.5 13.2 8 28 13.5 34.4 -6.8 -9 -5.8 -26.2 -13.5 -34.4m28 1.8c-11.5 11.6 -4.5 29.1 -10.5 37.4 6.7 -7.1 5.7 -28.8 10.5 -37.4m-14.5 0c-1.5 -13.4 -15.3 -20.5 -16.5 -27.8 -1.5 7.3 13.2 18.7 16.5 27.8m-7 32.1c2.2 9.4 -6 29.4 -3.5 35.5 -5.5 -10.7 4.7 -31 3.5 -35.5m17.7 21.4c-5.5 16.6 -16.5 15.5 -20 25.5 2.5 -9.5 17 -18.2 20 -25.5m-35.7 7.8c-7.3 11.1 -1.3 23.9 -7.3 31.8 8.5 -8 4 -22.7 7.3 -31.8m17.5 30.5c-8.8 14.8 -26.8 13.4 -34 24.1 7.2 -13.4 29.5 -15.7 34 -24.1m-31.8 -1.9c-15.5 9.8 -10.8 20 -22.5 31 14.7 -11 13.5 -23 22.5 -31m-7.3 39.7c-15 -0.5 -36.5 17.3 -49.5 15.9 13 2.5 37 -13.4 49.5 -16zm-24.2 -16c-1 13.9 -40 22.8 -44.3 32.1 4.7 -12.3 39 -21.4 44.3 -32zm-88.4 -256c-5 -4 -11 -7.1 -12.7 -11 1.2 5 6.2 8.7 11.2 12 0.5 -0.2 1 -0.9 1.5 -1m-8.5 4c-7.7 -3.4 -16.7 -3.2 -20.7 -8 2.5 4.8 11 6.7 18.2 9.2 0.8 -0.5 1.8 -1 2.6 -1.2zm-22.5 29.2c4.8 -3.2 22.3 -1.4 25.5 -3.4 -6.2 4.7 -20.2 1.3 -25.5 3.4m-42.3 8.2c3.8 -6.2 26 -10.3 29.3 -15.7 -5.8 10.4 -23 9 -29.3 15.7m3.3 7c8.2 -7.3 27.5 -4.3 33.3 -8.6 -13.5 11.1 -21 2.5 -33.3 8.6m33.3 -21.4c4.7 -9 18.2 -10.2 21.7 -15.7 -5.2 8.2 -16.7 9.6 -21.7 15.7m38.5 -8c13.8 -5.9 27.3 -0.9 33.8 -3.6 -8 3.9 -27 2 -33.8 3.7zm-105.6 44c3.3 -6.8 14.8 -14.4 15.8 -16.9 -3.3 9 -12.8 11 -15.8 16.9m-3 12c10 -14.3 25.8 -12.7 32 -18.2 -4.7 5.3 -22.7 8.7 -32 18.3zm-23.3 22.1c-0.7 -15.2 11.8 -21 12.3 -29.6 0.2 10.3 -12.8 24.2 -12.3 29.6m6.3 8.2c2.5 -13.2 19.5 -14 22.5 -21.8 0 7.3 -20 14.8 -22.5 21.8m-14 -7.5c-9 10 -2.8 25.3 -6.5 36.4 4.5 -8.1 2.2 -28.6 6.5 -36.4m14.7 42.8c-13.5 13.2 -8 28 -13.5 34.4 6.8 -8.9 5.8 -26.2 13.5 -34.4m-28 1.9c11.5 11.6 4.5 29 10.5 37.3 -6.7 -7 -5.7 -28.7 -10.5 -37.3m14.5 0c1.5 -13.5 15.3 -20.5 16.5 -27.8 1.5 7.3 -13.2 18.7 -16.5 27.8m7 32c-2.2 9.4 6 29.4 3.5 35.6 5.5 -10.7 -4.7 -31 -3.5 -35.5zm-17.7 21.4c5.5 16.7 16.5 15.5 20 25.5 -2.5 -9.5 -17 -18.2 -20 -25.4zm35.8 7.8c7.2 11.2 1.2 23.9 7.2 31.9 -8.5 -8 -4 -22.8 -7.2 -31.9m-17.6 30.5c8.8 14.8 26.8 13.4 34 24.1 -7.2 -13.4 -29.5 -15.7 -34 -24.1m31.8 -1.8c15.5 9.8 10.8 20 22.5 31 -14.7 -11 -13.5 -23 -22.5 -31m7.3 39.6c15 -0.5 36.5 17.3 49.5 16 -13 2.4 -37 -13.5 -49.5 -16m24.3 -16c1 14 40 22.8 44.2 32.2 -4.7 -12.3 -39 -21.4 -44.3 -32.1zm56.7 -236.5c3 -12.3 18 -14.6 20 -21.9 -0.7 7.8 -18.5 16.4 -20 22zM280 93.3c-2.2 9.3 -18.5 14.6 -20.7 21.6 0.7 -9.5 17.5 -15 20.7 -21.6m-12.7 22c7.7 -11.3 23.7 -8.3 29.3 -15 -4 7.8 -23.8 8 -29.3 15"
android:fillColor="#006233" />
<path
android:pathData="M373.2 256c0 59.2 -52.7 107.1 -117.7 107.1s-117.6 -47.9 -117.6 -107c0 -59.2 52.6 -107 117.6 -107s117.7 47.8 117.7 107z"
android:strokeColor="#F7C608"
android:strokeWidth="1.9"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
<path
android:pathData="M232.4 363.2l-0.4 1.3c-0.3 0.9 -1.2 1.3 -2.2 1.3 -2.5 -0.7 -5.6 -1.3 -8.5 -2l2.7 -8.3a90.2 90.2 0 0 0 8.5 1.8c1 0.2 1.5 1 1.2 2l-0.4 1m-20.2 -5.1l0.4 -1.3c0.3 -1 1.2 -1.4 2.2 -1.1 2.3 0.8 5.1 1.8 8.3 2.7l-2.7 8.3c-3 -0.8 -5.8 -1.6 -8.3 -2.5 -1 -0.5 -1.2 -2.2 -0.9 -3"
android:fillColor="#F7C608" />
<path
android:pathData="M230.8 362.5l-0.3 0.9c-0.2 0.6 -1 1 -1.8 0.9l-7 -1.8 1.9 -5.9a87 87 0 0 0 7 1.6c0.9 0.2 1.3 0.8 1 1.5l-0.2 0.7m-16.8 -4.3l0.3 -1c0.2 -0.6 1 -0.9 1.8 -0.6l6.9 2.1 -2 6a105.5 105.5 0 0 1 -7 -2c-0.6 -0.4 -0.9 -1.7 -0.7 -2.3"
android:fillColor="#006233" />
<path
android:pathData="M200.2 352.8l-0.8 1.2c-0.5 0.7 -1.5 1 -2.5 0.6 -2.1 -1.2 -5 -2.6 -7.5 -4.1l5.1 -7.3a85.7 85.7 0 0 0 7.6 4c0.9 0.5 1.1 1.4 0.6 2.2l-0.7 1m-17.8 -10.2l0.8 -1.2c0.5 -0.7 1.6 -1 2.4 -0.5 2 1.5 4.4 3.1 7.1 4.7l-5.1 7.3a97 97 0 0 1 -7.2 -4.5c-0.8 -0.7 -0.4 -2.4 0 -3.1"
android:fillColor="#F7C608" />
<path
android:pathData="M198.9 351.7l-0.6 0.8c-0.4 0.6 -1.2 0.7 -2 0.4l-6.2 -3.5 3.7 -5.2c2.2 1.4 4.6 2.5 6.3 3.4 0.7 0.4 1 1 0.5 1.6l-0.5 0.7m-14.8 -8.5l0.6 -0.8c0.4 -0.5 1.2 -0.6 2 -0.2a95.4 95.4 0 0 0 5.9 3.8l-3.7 5.2a68.3 68.3 0 0 1 -6 -3.7c-0.6 -0.5 -0.5 -1.8 -0.1 -2.3"
android:fillColor="#006233" />
<path
android:pathData="M172.6 334.6l-1.2 0.9c-0.7 0.6 -1.8 0.5 -2.6 0l-6 -5.9 7.3 -5.6c2 2.2 4.4 4.3 6 5.7 0.7 0.7 0.6 1.6 -0.1 2.2l-1 0.8m-14 -14.3l1.2 -1a1.8 1.8 0 0 1 2.5 0.2 78 78 0 0 0 5.3 6.4l-7.1 5.6a98.8 98.8 0 0 1 -5.6 -6.1c-0.4 -0.9 0.4 -2.5 1.1 -3"
android:fillColor="#F7C608" />
<path
android:pathData="M171.6 333.2l-0.8 0.6c-0.5 0.5 -1.3 0.3 -2 -0.1l-5 -5 5.2 -4a78.2 78.2 0 0 0 5 4.8c0.6 0.6 0.6 1.3 0 1.8l-0.6 0.5m-11.6 -12l0.8 -0.5c0.6 -0.5 1.4 -0.4 2 0.2a76.5 76.5 0 0 0 4.4 5.2l-5.1 4a67.8 67.8 0 0 1 -4.6 -5c-0.5 -0.7 0 -1.9 0.6 -2.3"
android:fillColor="#006233" />
<path
android:pathData="M151.7 310l-1.4 0.6c-0.9 0.4 -2 0 -2.5 -0.7 -1 -2 -2.7 -4.7 -4 -7.1l8.7 -3.6c1.4 2.7 3 5.3 4.1 7 0.4 0.9 0 1.8 -0.8 2.1l-1.2 0.5m-9 -17.3l1.4 -0.6c1 -0.3 2 0 2.3 0.8a75.3 75.3 0 0 0 3.2 7.5l-8.6 3.6c-1.3 -2.5 -2.5 -5 -3.4 -7.4 -0.2 -1 1 -2.2 2 -2.6"
android:fillColor="#F7C608" />
<path
android:pathData="M151.2 308.4l-1 0.4c-0.6 0.3 -1.4 0 -1.9 -0.6l-3.2 -6 6.2 -2.6a72.3 72.3 0 0 0 3.4 6c0.3 0.6 0 1.3 -0.6 1.6l-0.8 0.4m-7.4 -14.4l1 -0.4c0.6 -0.3 1.4 0 1.7 0.7 0.7 1.8 1.6 4 2.7 6.2l-6.2 2.5a78 78 0 0 1 -2.9 -6c-0.1 -0.8 0.7 -1.8 1.4 -2"
android:fillColor="#006233" />
<path
android:pathData="M139.2 281.1l-1.5 0.2a2.1 2.1 0 0 1 -2.2 -1.3l-1.5 -7.9 9.4 -1.2a68 68 0 0 0 1.7 7.8c0.2 1 -0.4 1.7 -1.4 1.8l-1.3 0.2m-3.2 -18.9l1.5 -0.2c1 -0.1 1.8 0.4 2 1.4 0 2.2 0.2 5 0.7 8l-9.4 1.1c-0.4 -2.7 -0.9 -5.3 -1 -7.9 0.1 -1 1.7 -1.8 2.7 -2"
android:fillColor="#F7C608" />
<path
android:pathData="M139.2 279.5l-1 0.1c-0.7 0.1 -1.3 -0.4 -1.6 -1.1 -0.3 -1.9 -0.9 -4.3 -1.2 -6.6l6.7 -0.9a68.7 68.7 0 0 0 1.4 6.6c0 0.7 -0.3 1.3 -1 1.4l-1 0.2m-2.6 -15.8l1 -0.1c0.8 0 1.4 0.4 1.5 1.2 0.1 1.8 0.3 4.1 0.7 6.5l-6.8 1c-0.3 -2.3 -0.7 -4.6 -0.8 -6.6 0 -0.8 1.2 -1.5 2 -1.6"
android:fillColor="#006233" />
<path
android:pathData="M136.2 250.2l-1.5 -0.2c-1 -0.1 -1.6 -1 -1.7 -1.9l1 -7.9 9.4 1.3a69 69 0 0 0 -0.7 7.9c-0.2 0.9 -1 1.5 -2 1.3l-1.3 -0.1m2.8 -19l1.5 0.2c1 0.2 1.6 1 1.4 1.8a73.3 73.3 0 0 0 -1.7 7.9l-9.4 -1.3a85 85 0 0 1 1.5 -7.8c0.4 -1 2.2 -1.4 3.2 -1.2"
android:fillColor="#F7C608" />
<path
android:pathData="M136.8 248.6l-1.1 -0.2c-0.7 0 -1.2 -0.7 -1.2 -1.5l0.9 -6.5 6.7 0.8a69.3 69.3 0 0 0 -0.7 6.7c-0.1 0.7 -0.7 1.2 -1.4 1.1l-1 -0.1m2.4 -15.8l1 0.2c0.8 0 1.2 0.7 1 1.4 -0.4 1.9 -1 4.1 -1.3 6.5l-6.7 -0.8c0.3 -2.3 0.7 -4.5 1.2 -6.6 0.3 -0.7 1.6 -1 2.3 -1"
android:fillColor="#006233" />
<path
android:pathData="M142.9 219.7l-1.3 -0.6c-1 -0.3 -1.3 -1.2 -1.1 -2.2 1 -2 2.1 -4.8 3.4 -7.3l8.6 3.6a75 75 0 0 0 -3.2 7.4c-0.4 0.9 -1.4 1.2 -2.3 0.8l-1.1 -0.4m8.5 -17.5l1.3 0.5c1 0.4 1.3 1.3 0.9 2.1a77.3 77.3 0 0 0 -4.1 7l-8.6 -3.5a78 78 0 0 1 3.8 -7.1c0.7 -0.8 2.6 -0.8 3.5 -0.4"
android:fillColor="#F7C608" />
<path
android:pathData="M144 218.4l-1 -0.5c-0.7 -0.2 -1 -1 -0.7 -1.7l2.8 -6 6.2 2.5a70.7 70.7 0 0 0 -2.7 6.1c-0.3 0.7 -1 1 -1.7 0.8l-0.9 -0.4m7.1 -14.5l1 0.4c0.7 0.3 0.9 1 0.6 1.7a76.1 76.1 0 0 0 -3.4 5.9l-6.2 -2.6a82.2 82.2 0 0 1 3.2 -6c0.5 -0.6 2 -0.6 2.6 -0.4"
android:fillColor="#006233" />
<path
android:pathData="M158.8 192.2l-1.2 -0.9c-0.7 -0.6 -0.8 -1.6 -0.3 -2.4 1.6 -1.7 3.5 -4.1 5.5 -6.2l7.2 5.7a76.9 76.9 0 0 0 -5.4 6.3 1.8 1.8 0 0 1 -2.4 0.2l-1 -0.8m13.6 -14.6l1.1 1c0.8 0.5 0.9 1.5 0.2 2.2a83.6 83.6 0 0 0 -6.1 5.7l-7.2 -5.7 6 -5.8c0.8 -0.6 2.6 0 3.4 0.5"
android:fillColor="#F7C608" />
<path
android:pathData="M160.2 191.1l-0.8 -0.6c-0.6 -0.4 -0.6 -1.2 -0.2 -1.9l4.7 -5 5.1 4a76.1 76.1 0 0 0 -4.5 5.2c-0.5 0.6 -1.3 0.7 -1.9 0.3l-0.7 -0.6m11.3 -12.1l0.9 0.6c0.5 0.5 0.5 1.2 0 1.8a85 85 0 0 0 -5 4.8l-5.2 -4a58 58 0 0 1 4.9 -5c0.6 -0.5 2 -0.1 2.5 0.3"
android:fillColor="#006233" />
<path
android:pathData="M182.5 169.9l-0.8 -1.2c-0.6 -0.8 -0.3 -1.7 0.4 -2.4l7.2 -4.5 5.1 7.3a83.2 83.2 0 0 0 -7 4.7 1.8 1.8 0 0 1 -2.5 -0.5l-0.7 -1m17.6 -10.5l0.8 1.2c0.6 0.7 0.3 1.7 -0.5 2.2a83.6 83.6 0 0 0 -7.7 3.9l-5.1 -7.3c2.5 -1.5 5 -3 7.5 -4.1 1 -0.3 2.6 0.7 3 1.4"
android:fillColor="#F7C608" />
<path
android:pathData="M184.2 169.2l-0.6 -0.8c-0.4 -0.6 -0.2 -1.3 0.4 -1.8 1.8 -1 4 -2.5 6 -3.8l3.7 5.2 -5.9 3.9c-0.7 0.4 -1.5 0.3 -1.9 -0.2l-0.5 -0.7m14.6 -8.8l0.6 0.9c0.4 0.5 0.2 1.2 -0.5 1.6a88.8 88.8 0 0 0 -6.4 3.3l-3.6 -5.2a96.5 96.5 0 0 1 6.2 -3.4c0.8 -0.3 2 0.4 2.4 1"
android:fillColor="#006233" />
<path
android:pathData="M212.2 154.5l-0.4 -1.3c-0.3 -0.9 0.2 -1.7 1 -2.2 2.5 -0.6 5.5 -1.7 8.4 -2.5l2.7 8.3a88 88 0 0 0 -8.3 2.7c-1 0.3 -1.9 -0.2 -2.1 -1l-0.4 -1.1m20 -5.7l0.5 1.3c0.3 1 -0.2 1.8 -1.2 2a94.8 94.8 0 0 0 -8.5 1.8l-2.7 -8.3c2.9 -0.7 5.8 -1.5 8.5 -2 1 0 2.2 1.3 2.5 2.2"
android:fillColor="#F7C608" />
<path
android:pathData="M214 154.3l-0.3 -1c-0.2 -0.6 0.2 -1.2 1 -1.5 2 -0.6 4.5 -1.4 7 -2l1.9 5.9a86.6 86.6 0 0 0 -7 2.2c-0.8 0.1 -1.5 -0.1 -1.7 -0.8l-0.2 -0.7m16.7 -4.7l0.3 1c0.2 0.6 -0.3 1.2 -1 1.4a98 98 0 0 0 -7.2 1.6l-1.9 -6a107 107 0 0 1 7 -1.7c1 0 1.9 0.9 2 1.5"
android:fillColor="#006233" />
<path
android:pathData="M245.4 147.4v-1.3c0 -1 0.8 -1.6 1.8 -1.9l8.7 -0.2v8.7a89.5 89.5 0 0 0 -8.7 0.4c-1 0 -1.8 -0.7 -1.8 -1.6v-1.1m21 -0.3v1.4c0 1 -0.7 1.6 -1.7 1.6a96 96 0 0 0 -8.8 -0.4V144c3 0 6 0 8.8 0.2 1 0.2 1.7 1.8 1.7 2.7"
android:fillColor="#F7C608" />
<path
android:pathData="M247.2 147.7v-1c0 -0.6 0.6 -1.1 1.5 -1.3l7.3 -0.1v6.1a92 92 0 0 0 -7.3 0.4c-0.9 0 -1.5 -0.5 -1.5 -1.2v-0.8m17.5 -0.2v1c0 0.7 -0.6 1.2 -1.5 1.2a87.9 87.9 0 0 0 -7.2 -0.4v-6.1l7.2 0.1c0.9 0.2 1.5 1.3 1.5 2"
android:fillColor="#006233" />
<path
android:pathData="M277.3 149l0.4 -1.4c0.2 -0.8 1.2 -1.3 2.2 -1.3 2.4 0.6 5.6 1.2 8.5 2l-2.6 8.3a90.2 90.2 0 0 0 -8.6 -1.7c-1 -0.3 -1.5 -1.1 -1.2 -2l0.4 -1.1m20.3 5l-0.5 1.3c-0.2 0.9 -1.2 1.4 -2.1 1.1a93.4 93.4 0 0 0 -8.3 -2.6l2.6 -8.3a82 82 0 0 1 8.3 2.4c1 0.4 1.2 2.2 1 3"
android:fillColor="#F7C608" />
<path
android:pathData="M279 149.7l0.2 -1c0.2 -0.6 1 -1 1.8 -0.9 2 0.6 4.6 1 7 1.7l-1.8 6a89 89 0 0 0 -7.1 -1.6c-0.8 -0.2 -1.3 -0.8 -1 -1.4l0.2 -0.8m16.8 4.2l-0.3 1c-0.2 0.6 -1 0.9 -1.7 0.7a92.3 92.3 0 0 0 -7 -2.2l2 -6 6.9 2c0.8 0.4 1 1.7 0.8 2.3"
android:fillColor="#006233" />
<path
android:pathData="M309.5 159l0.8 -1c0.6 -0.9 1.6 -1 2.6 -0.8l7.5 4 -5 7.4a86 86 0 0 0 -7.7 -3.8 1.6 1.6 0 0 1 -0.6 -2.3l0.7 -1m18 10l-0.9 1.2a1.8 1.8 0 0 1 -2.4 0.5 87.8 87.8 0 0 0 -7.1 -4.6l5 -7.3c2.6 1.4 5.1 2.9 7.3 4.4 0.7 0.7 0.4 2.4 -0.1 3.2"
android:fillColor="#F7C608" />
<path
android:pathData="M310.9 160.2l0.6 -0.8c0.4 -0.6 1.2 -0.7 2 -0.4 1.7 1 4.1 2.1 6.2 3.4l-3.6 5.2a84.9 84.9 0 0 0 -6.4 -3.3c-0.7 -0.4 -1 -1 -0.5 -1.6l0.5 -0.7m14.8 8.3l-0.5 0.8c-0.4 0.6 -1.2 0.7 -2 0.3a86.9 86.9 0 0 0 -6 -3.8l3.7 -5.2c2.1 1.2 4.3 2.4 6 3.6 0.7 0.6 0.6 1.8 0.2 2.4"
android:fillColor="#006233" />
<path
android:pathData="M337.4 177l1.1 -0.8c0.8 -0.7 1.8 -0.6 2.7 0 1.6 1.7 4 3.7 6 5.8l-7.2 5.7a79.8 79.8 0 0 0 -6.2 -5.7c-0.6 -0.7 -0.5 -1.6 0.2 -2.2l1 -0.8m14 14.2l-1.1 1a1.8 1.8 0 0 1 -2.5 -0.2c-1.4 -1.9 -3.3 -4 -5.4 -6.3l7.2 -5.7c2 2 3.9 4 5.5 6.1 0.5 0.8 -0.3 2.4 -1 3"
android:fillColor="#F7C608" />
<path
android:pathData="M338.3 178.5l0.8 -0.7c0.6 -0.4 1.4 -0.3 2 0.1 1.4 1.5 3.4 3.2 5 5l-5 4a78.5 78.5 0 0 0 -5.2 -4.8c-0.5 -0.5 -0.5 -1.3 0 -1.7l0.7 -0.6m11.7 11.9l-0.8 0.6c-0.6 0.4 -1.4 0.3 -2 -0.2a80.2 80.2 0 0 0 -4.5 -5.2l5.1 -4c1.7 1.6 3.3 3.3 4.7 5 0.4 0.6 -0.1 1.8 -0.6 2.3"
android:fillColor="#006233" />
<path
android:pathData="M358.5 201.5l1.4 -0.6c0.9 -0.4 1.9 0 2.5 0.7 1 2 2.7 4.6 4 7l-8.7 3.7c-1.3 -2.7 -3 -5.2 -4.1 -7 -0.4 -0.8 0 -1.7 0.8 -2.1l1.2 -0.5m9 17.2l-1.3 0.6c-0.9 0.4 -1.9 0 -2.3 -0.8a75.5 75.5 0 0 0 -3.3 -7.4l8.7 -3.6a86.5 86.5 0 0 1 3.4 7.3c0.2 1 -1 2.2 -2 2.6"
android:fillColor="#F7C608" />
<path
android:pathData="M359 203l1 -0.4c0.6 -0.2 1.4 0 1.9 0.7 0.9 1.7 2.2 3.9 3.2 6l-6.1 2.5a79.4 79.4 0 0 0 -3.4 -5.8c-0.4 -0.7 -0.2 -1.4 0.5 -1.7l0.8 -0.4m7.6 14.4l-1 0.4c-0.7 0.3 -1.4 0 -1.8 -0.7 -0.7 -1.8 -1.6 -4 -2.7 -6.2l6.1 -2.6a86.3 86.3 0 0 1 3 6c0.1 0.9 -0.7 1.8 -1.4 2.1"
android:fillColor="#006233" />
<path
android:pathData="M371.2 230.3l1.5 -0.2c1 -0.2 1.9 0.4 2.3 1.3l1.5 7.8 -9.3 1.3a69.8 69.8 0 0 0 -1.9 -7.8c-0.1 -0.9 0.5 -1.7 1.5 -1.8l1.2 -0.2m3.4 18.9l-1.4 0.2c-1 0.1 -1.9 -0.4 -2 -1.3l-0.8 -8 9.3 -1.3c0.5 2.7 1 5.4 1.1 7.9 0 1 -1.7 1.9 -2.7 2"
android:fillColor="#F7C608" />
<path
android:pathData="M371.2 232l1 -0.2c0.8 -0.1 1.4 0.4 1.7 1.1l1.3 6.5 -6.7 1a68.8 68.8 0 0 0 -1.5 -6.6c-0.1 -0.7 0.3 -1.3 1 -1.4l1 -0.2m2.7 15.7l-1 0.2c-0.7 0.1 -1.4 -0.4 -1.5 -1.2a71.7 71.7 0 0 0 -0.7 -6.5l6.7 -1c0.4 2.3 0.8 4.5 1 6.6 -0.1 0.8 -1.3 1.5 -2 1.6"
android:fillColor="#006233" />
<path
android:pathData="M374.5 261.2l1.5 0.2c1 0 1.7 0.9 1.8 1.8 -0.4 2.3 -0.6 5.2 -1 8l-9.4 -1.2c0.5 -3 0.7 -6 0.7 -8 0.1 -0.9 1 -1.5 2 -1.3l1.2 0.1m-2.5 19l-1.5 -0.2c-1 -0.1 -1.7 -0.9 -1.5 -1.8 0.5 -2.2 1.2 -4.9 1.6 -7.8l9.5 1.1c-0.4 2.7 -0.8 5.4 -1.5 7.9 -0.3 0.9 -2.2 1.3 -3.2 1.2"
android:fillColor="#F7C608" />
<path
android:pathData="M374 262.8l1 0.1c0.8 0 1.2 0.7 1.3 1.5l-0.8 6.6 -6.8 -0.8c0.4 -2.5 0.6 -5 0.7 -6.6 0 -0.8 0.7 -1.3 1.4 -1.2h0.9m-2.2 15.9l-1 -0.1c-0.8 -0.1 -1.2 -0.8 -1 -1.5 0.4 -1.9 0.9 -4 1.3 -6.6l6.7 0.9a82 82 0 0 1 -1.2 6.5c-0.2 0.8 -1.6 1.2 -2.3 1"
android:fillColor="#006233" />
<path
android:pathData="M368.2 291.7l1.3 0.6c1 0.3 1.3 1.2 1.1 2.2 -1 2 -2 4.8 -3.3 7.3l-8.7 -3.5a76 76 0 0 0 3.1 -7.5c0.4 -0.8 1.4 -1.1 2.3 -0.8l1.2 0.5m-8.4 17.6l-1.3 -0.6c-1 -0.4 -1.3 -1.3 -1 -2.1 1.3 -2 2.8 -4.4 4.1 -7l8.7 3.4c-1.2 2.5 -2.5 5 -3.8 7.2 -0.6 0.8 -2.5 0.7 -3.5 0.3"
android:fillColor="#F7C608" />
<path
android:pathData="M367.1 293l1 0.5c0.7 0.3 0.9 1 0.7 1.7l-2.8 6.1 -6.2 -2.5a70.7 70.7 0 0 0 2.6 -6.2c0.4 -0.6 1.1 -1 1.8 -0.7l0.8 0.3m-7 14.6l-1 -0.4c-0.6 -0.2 -0.8 -1 -0.5 -1.7a76 76 0 0 0 3.3 -5.9l6.2 2.5a86 86 0 0 1 -3.1 6c-0.5 0.7 -1.9 0.7 -2.5 0.5"
android:fillColor="#006233" />
<path
android:pathData="M352.5 319.4l1.2 0.8c0.8 0.6 0.8 1.6 0.4 2.4l-5.5 6.2 -7.2 -5.6c2 -2.2 4 -4.6 5.3 -6.3 0.6 -0.7 1.6 -0.8 2.4 -0.2l1 0.7m-13.5 14.7l-1.1 -0.8c-0.8 -0.6 -0.9 -1.6 -0.2 -2.3a77 77 0 0 0 6 -5.8l7.3 5.6a94.1 94.1 0 0 1 -5.9 6c-0.8 0.5 -2.6 0 -3.4 -0.6"
android:fillColor="#F7C608" />
<path
android:pathData="M351.1 320.4l0.9 0.6c0.5 0.5 0.5 1.2 0.1 1.9l-4.6 5.1 -5.2 -4c1.8 -1.8 3.4 -3.8 4.5 -5.2 0.5 -0.6 1.3 -0.7 1.9 -0.3l0.7 0.5m-11.2 12.3l-0.8 -0.7c-0.6 -0.4 -0.6 -1.1 0 -1.7a82 82 0 0 0 5 -4.9l5.1 4a77 77 0 0 1 -4.8 5c-0.7 0.5 -2 0.2 -2.6 -0.3"
android:fillColor="#006233" />
<path
android:pathData="M329 341.9l0.8 1.1c0.6 0.8 0.4 1.7 -0.3 2.4l-7.2 4.6 -5.2 -7.3a83 83 0 0 0 7 -4.7 1.8 1.8 0 0 1 2.5 0.4l0.6 1m-17.4 10.7l-0.8 -1.2c-0.6 -0.7 -0.4 -1.7 0.5 -2.2a89.9 89.9 0 0 0 7.6 -4l5.2 7.3c-2.5 1.4 -5 3 -7.5 4.1 -1 0.4 -2.5 -0.6 -3 -1.4"
android:fillColor="#F7C608" />
<path
android:pathData="M327.3 342.5l0.6 0.9c0.4 0.5 0.2 1.2 -0.4 1.8l-6 3.7 -3.7 -5.1a84.6 84.6 0 0 0 5.9 -4c0.7 -0.4 1.5 -0.3 1.9 0.3l0.5 0.7m-14.6 8.8l-0.5 -0.8c-0.4 -0.6 -0.2 -1.3 0.5 -1.7a88.6 88.6 0 0 0 6.3 -3.3l3.7 5.1c-2 1.3 -4.2 2.5 -6.2 3.5 -0.8 0.3 -2 -0.3 -2.4 -0.9"
android:fillColor="#006233" />
<path
android:pathData="M299.5 357.4l0.4 1.4c0.3 0.8 -0.2 1.7 -1 2.1l-8.4 2.6 -2.7 -8.3a80.4 80.4 0 0 0 8.2 -2.7c1 -0.3 1.9 0.1 2.2 1l0.3 1.1m-20 5.8l-0.4 -1.3c-0.3 -0.9 0.2 -1.8 1.1 -2 2.5 -0.4 5.5 -1 8.6 -1.9l2.7 8.3c-2.9 0.8 -5.7 1.6 -8.4 2 -1 0.1 -2.3 -1.2 -2.6 -2"
android:fillColor="#F7C608" />
<path
android:pathData="M297.7 357.7l0.3 0.9c0.2 0.6 -0.2 1.2 -1 1.6 -2 0.6 -4.5 1.4 -7 2l-1.9 -5.8a87.7 87.7 0 0 0 6.9 -2.3c0.8 -0.2 1.5 0.1 1.8 0.7l0.2 0.8m-16.7 4.8l-0.3 -1c-0.2 -0.6 0.3 -1.2 1 -1.4a87.9 87.9 0 0 0 7.1 -1.6l2 5.9a106 106 0 0 1 -7 1.7c-0.9 0.1 -1.8 -0.8 -2 -1.4"
android:fillColor="#006233" />
<path
android:pathData="M266.3 364.8v1.4c0 1 -0.7 1.6 -1.7 1.8 -2.5 0 -5.7 0.3 -8.8 0.3v-8.6a87.7 87.7 0 0 0 8.7 -0.5c1 0 1.8 0.6 1.8 1.5v1.2m-21 0.4v-1.4c0 -0.9 0.7 -1.6 1.7 -1.6 2.5 0.2 5.5 0.4 8.7 0.4l0.1 8.6a100.6 100.6 0 0 1 -8.7 -0.1c-1 -0.2 -1.8 -1.8 -1.8 -2.7"
android:fillColor="#F7C608" />
<path
android:pathData="M264.5 364.6v1c0 0.6 -0.6 1 -1.4 1.3l-7.3 0.2v-6.2c2.6 0 5.3 -0.2 7.2 -0.4 0.9 0 1.5 0.5 1.5 1.1v0.8m-17.5 0.4v-1c0 -0.7 0.6 -1.2 1.4 -1.2 2.1 0.2 4.6 0.3 7.3 0.3l0.1 6.2 -7.3 -0.1c-0.8 -0.2 -1.5 -1.3 -1.5 -2"
android:fillColor="#006233" />
</vector>
File diff suppressed because one or more lines are too long
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 170.7h512v170.6H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 0h512v170.7H0zm0 341.3h512V512H0z"
android:fillColor="#C8102E" />
</vector>
@@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#00008B" />
<path
android:pathData="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93 -93.5L0 37V0h31l96 94 93 -94z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M92 162l5.5 17L21 256H0v-1.5zm62 -6l27 4 75 73.5V256zM256 0l-96 98 -2 -22 75 -76zM0 0.5L96.5 95 67 91 0 24.5z"
android:fillColor="#FF0000" />
<path
android:pathData="M88 0v256h80V0zM0 88v80h256V88z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 104v48h256v-48zM104 0v256h48V0z"
android:fillColor="#FF0000" />
<path
android:pathData="M202 402.8l-45.8 5.4 4.6 45.9 -32.8 -32.4 -33 32.2 4.9 -45.9 -45.8 -5.8L93 377.4 69 338l43.6 15 15.8 -43.4 15.5 43.5 43.7 -14.7 -24.3 39.2 38.8 25.1Zm222.7 8l-20.5 2.6 2.2 20.5 -14.8 -14.4 -14.7 14.5 2 -20.5 -20.5 -2.4 17.3 -11.2 -10.9 -17.5 19.6 6.5 6.9 -19.5 7.1 19.4 19.5 -6.7 -10.7 17.6zM415 293.6l2.7 -13 -9.8 -9 13.2 -1.5 5.5 -12.1 5.5 12.1 13.2 1.5 -9.8 9 2.7 13 -11.6 -6.6zm-84.1 -60l-20.3 2.2 1.8 20.3 -14.4 -14.5 -14.8 14.1 2.4 -20.3 -20.2 -2.7 17.3 -10.8 -10.5 -17.5 19.3 6.8 7.2 -19.1 6.7 19.3 19.4 -6.3 -10.9 17.3zm175.8 -32.8l-20.9 2.7 2.3 20.9 -15.1 -14.7 -15 14.8 2.1 -21 -20.9 -2.4 17.7 -11.5 -11.1 -17.9 20 6.7 7 -19.8 7.2 19.8 19.9 -6.9 -11 18zm-82.1 -83.5l-20.7 2.3 1.9 20.8 -14.7 -14.8L376 140l2.4 -20.7 -20.7 -2.8 17.7 -11 -10.7 -17.9 19.7 6.9 7.3 -19.5 6.8 19.7 19.8 -6.5 -11.1 17.6z"
android:fillColor="#FFFFFF" />
</vector>
@@ -0,0 +1,543 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M0 0v512h768V0z"
android:fillColor="#3399CC" />
<path
android:pathData="M0 341.3v28.5h768v-28.5zm0 57v28.4h768v-28.5H0z"
android:fillColor="#FFFF00" />
<path
android:pathData="M122 28l2.4 2.5 -2.3 -2.4zm-2.3 4.8l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M119.7 35.2l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M117.3 40l2.4 2.3z"
android:fillColor="#66CCCC" />
<path
android:pathData="M122 40l2.4 2.3 -2.3 -2.3z"
android:fillColor="#CC6666" />
<path
android:pathData="M126.8 40l2.4 2.3z"
android:fillColor="#66CCCC" />
<path
android:pathData="M117.3 42.4l2.4 2.3zm9.5 0l2.4 2.3z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M119.7 44.7l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M115 47.1l2.3 2.4 -2.4 -2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M121.7 32.9L105 96.2l-63.5 17.2 63.3 16.5 16.9 63.3 16.9 -63.3 63.2 -16.9 -63.3 -16.8z"
android:fillColor="#CC0000"
android:strokeColor="#FFFFFF"
android:strokeWidth="3" />
<path
android:pathData="M129.2 47.1l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M115 49.5l2.3 2.4 -2.4 -2.4m14.3 0l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M117.3 51.9l2.4 2.3zm9.5 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M112.5 54.3l2.4 2.3z"
android:fillColor="#6699CC" />
<path
android:pathData="M118.1 55.8l0.8 1.6zm9.5 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M131.6 54.3l2.4 2.3z"
android:fillColor="#6699CC" />
<path
android:pathData="M112.5 56.6L115 59zm19 0L134 59z"
android:fillColor="#99CCFF" />
<path
android:pathData="M115 59l2.3 2.4 -2.4 -2.4m14.3 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M110.2 61.4l2.3 2.4zm23.8 0l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M110.2 63.8l2.3 2.4zm23.8 0l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M110.2 66.2l2.3 2.3zm23.8 0l2.4 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M107.8 68.5l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M112.5 68.5L115 71zm19 0L134 71z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M136.3 68.5l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M107.8 71l2.4 2.3 -2.4 -2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M113.3 72.5l0.8 1.6zm19 0l0.9 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M136.3 71l2.4 2.3 -2.3 -2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M107.8 73.3l2.4 2.4zm28.6 0l2.3 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M110.2 75.7l2.3 2.3zm23.8 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M105.4 78l2.4 2.4 -2.4 -2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M111 79.6l0.7 1.6zm23.9 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M138.7 78l2.4 2.4 -2.4 -2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M105.4 80.4l2.4 2.4zm33.3 0l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M107.8 82.8l2.4 2.4zm28.6 0l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M103 85.2l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M108.6 86.8l0.8 1.6zm28.5 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M141.1 85.2l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M103 87.6l2.4 2.4zm38.1 0l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M105.4 90l2.4 2.3zm33.3 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M100.6 92.3l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M105.4 92.3l2.4 2.4zm33.3 0l2.4 2.4z"
android:fillColor="#CC3333" />
<path
android:pathData="M143.5 92.3l2.4 2.4zm-50 2.4l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M95.9 94.7l2.4 2.4zm52.3 0l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M150.6 94.7l2.4 2.4zm-64.2 2.4l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M88.7 97.1l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M98.3 97.1l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M100.6 97.1l2.4 2.4zm42.9 0l2.4 2.4z"
android:fillColor="#CC3333" />
<path
android:pathData="M145.9 97.1l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M155.4 97.1l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M157.8 97.1l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M76.8 99.5l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M79.2 99.5l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M81.6 99.5l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M91.1 99.5l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M95 100.3l1.7 0.8 -1.6 -0.8m54.7 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M153 99.5l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M162.5 99.5l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M165 99.5l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M167.3 99.5l2.4 2.4zm-97.6 2.4l2.4 2.3z"
android:fillColor="#6699CC" />
<path
android:pathData="M72 101.9l2.5 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M74.5 101.9l2.3 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M84 101.9l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M88 102.7l1.5 0.8zm69 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M160.2 101.9l2.3 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M169.7 101.9l2.3 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M172 101.9l2.4 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M174.4 101.9l2.4 2.3zm-111.8 2.3l2.3 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M65 104.2l2.3 2.4 -2.4 -2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M76.8 104.2l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M80.8 105l1.6 0.8zm83.3 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M167.3 104.2l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M179.2 104.2l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M181.6 104.2l2.3 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M55.4 106.6l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M57.8 106.6l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M67.3 106.6l2.4 2.4zm109.5 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M186.3 106.6l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M188.7 106.6l2.4 2.4zM48.3 109l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M50.6 109l2.4 2.4 -2.3 -2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M60.2 109l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M64.1 109.8l1.6 0.8zm116.7 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M184 109l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M193.5 109l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M195.9 109l2.3 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M41.1 111.4l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M43.5 111.4l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M53 111.4l2.4 2.4zm138.1 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M200.6 111.4l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M203 111.4l2.4 2.4zm-166.6 2.4l2.4 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M48.3 113.8l2.4 2.3zm147.6 0l2.3 2.3z"
android:fillColor="#CC6666" />
<path
android:pathData="M207.8 113.8l2.3 2.3zM41 116l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M43.5 116.1l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M53 116.1l2.4 2.4zm138.1 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M200.6 116.1l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M203 116.1l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M48.3 118.5l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M50.6 118.5L53 121l-2.3 -2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M60.2 118.5l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M64.1 119.3l1.6 0.8zm116.7 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M184 118.5l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M193.5 118.5l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M195.9 118.5l2.3 2.4zM55.4 121l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M57.8 120.9l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M67.3 120.9l2.4 2.4zm109.5 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M186.3 120.9l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M188.7 120.9l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M62.5 123.3l2.4 2.4 -2.3 -2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M65 123.3l2.3 2.4 -2.4 -2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M76.8 123.3l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M80.8 124l1.6 0.9 -1.6 -0.8m83.3 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M167.3 123.3l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M179.2 123.3l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M181.6 123.3l2.3 2.4zm-111.9 2.4l2.4 2.3z"
android:fillColor="#6699CC" />
<path
android:pathData="M72 125.7l2.5 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M74.5 125.7l2.3 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M84 125.7l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M88 126.5l1.5 0.7zm69 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M160.2 125.7l2.3 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M169.7 125.7l2.3 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M172 125.7l2.4 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M174.4 125.7l2.4 2.3zM76.8 128l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M79.2 128l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M81.6 128l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M91.1 128l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M95 128.8l1.7 0.8 -1.6 -0.8m54.7 0l1.6 0.8z"
android:fillColor="#CC3333" />
<path
android:pathData="M153 128l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M162.5 128l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M165 128l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M167.3 128l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M86.4 130.4l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M88.7 130.4l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M98.3 130.4l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M100.6 130.4l2.4 2.4zm42.9 0l2.4 2.4z"
android:fillColor="#CC3333" />
<path
android:pathData="M145.9 130.4l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M155.4 130.4l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M157.8 130.4l2.3 2.4zm-64.3 2.4l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M95.9 132.8l2.4 2.4zm52.3 0l2.4 2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M150.6 132.8l2.4 2.4zm-50 2.4l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M105.4 135.2l2.4 2.4zm33.3 0l2.4 2.4z"
android:fillColor="#CC3333" />
<path
android:pathData="M143.5 135.2l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M105.4 137.6l2.4 2.3zm33.3 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M103 140l2.4 2.3z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M108.6 141.5l0.8 1.6zm28.5 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M141.1 140l2.4 2.3z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M103 142.3l2.4 2.4zm38.1 0l2.4 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M107.8 144.7l2.4 2.4zm28.6 0l2.3 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M105.4 147l2.4 2.5z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M111 148.7l0.7 1.6zm23.9 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M138.7 147l2.4 2.5z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M105.4 149.5l2.4 2.3zm33.3 0l2.4 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M110.2 151.8l2.3 2.4zm23.8 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M107.8 154.2l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M113.3 155.8l0.8 1.6zm19 0l0.9 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M136.3 154.2l2.4 2.4z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M107.8 156.6l2.4 2.4zm28.6 0l2.3 2.4z"
android:fillColor="#99CCCC" />
<path
android:pathData="M107.8 159l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M112.5 159l2.4 2.4zm19 0l2.5 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M136.3 159l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M110.2 161.4l2.3 2.3zm23.8 0l2.4 2.3z"
android:fillColor="#CCFFFF" />
<path
android:pathData="M110.2 163.8l2.3 2.3zm23.8 0l2.4 2.3z"
android:fillColor="#99CCCC" />
<path
android:pathData="M110.2 166.1l2.3 2.4zm23.8 0l2.4 2.4z"
android:fillColor="#6699CC" />
<path
android:pathData="M115 168.5l2.3 2.4 -2.4 -2.4m14.3 0l2.4 2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M112.5 170.9l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M118.1 172.5l0.8 1.6zm9.5 0l0.8 1.6z"
android:fillColor="#CC3333" />
<path
android:pathData="M131.6 170.9l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M112.5 173.3l2.4 2.3zm19 0l2.5 2.3z"
android:fillColor="#6699CC" />
<path
android:pathData="M117.3 175.7l2.4 2.3zm9.5 0l2.4 2.3z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M115 178l2.3 2.4 -2.4 -2.4zm14.2 0l2.4 2.4z"
android:fillColor="#99CCFF" />
<path
android:pathData="M115 180.4l2.3 2.4 -2.4 -2.4m14.3 0l2.4 2.4z"
android:fillColor="#66CCCC" />
<path
android:pathData="M119.7 182.8l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4z"
android:fillColor="#FFCCCC" />
<path
android:pathData="M117.3 185.2l2.4 2.3zm9.5 0l2.4 2.3z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M117.3 187.6l2.4 2.3z"
android:fillColor="#66CCCC" />
<path
android:pathData="M122 187.6l2.4 2.3 -2.3 -2.3z"
android:fillColor="#CC6666" />
<path
android:pathData="M126.8 187.6l2.4 2.3z"
android:fillColor="#66CCCC" />
<path
android:pathData="M119.7 192.3l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4z"
android:fillColor="#CCCCFF" />
<path
android:pathData="M119.7 194.7l2.4 2.4zm4.7 0l2.4 2.4 -2.3 -2.4m-2.4 4.8l2.4 2.3z"
android:fillColor="#99CCCC" />
</group>
</vector>
@@ -0,0 +1,28 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="0.6024"
android:scaleY="0.6024"
android:translateX="-100">
<clip-path
android:pathData="M166 0h850v850H166z" />
<path
android:pathData="M0 0h1300v850H0z"
android:fillColor="#0053A5" />
<path
android:pathData="M400 0h250v850H400z"
android:fillColor="#FFCE00" />
<path
android:pathData="M0 300h1300v250H0z"
android:fillColor="#FFCE00" />
<path
android:pathData="M475 0h100v850H475z"
android:fillColor="#D21034" />
<path
android:pathData="M0 375h1300v100H0z"
android:fillColor="#D21034" />
</group>
</vector>
@@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#3F9C35" />
<path
android:pathData="M0 0h512v341.3H0z"
android:fillColor="#ED2939" />
<path
android:pathData="M0 0h512v170.7H0z"
android:fillColor="#00B9E4" />
<path
android:pathData="M315.6 256A76.8 76.8 0 0 1 162 256A76.8 76.8 0 0 1 315.6 256Z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M319.9 256A64 64 0 0 1 191.9 256A64 64 0 0 1 319.9 256Z"
android:fillColor="#ED2939" />
<path
android:pathData="M324.2 213.3l8.1 23 22 -10.5 -10.4 22 23 8.2 -23 8.2 10.4 22 -22 -10.5 -8.1 23 -8.2 -23 -22 10.5 10.5 -22 -23 -8.2 23 -8.2 -10.5 -22 22 10.5z"
android:fillColor="#FFFFFF" />
</vector>
@@ -0,0 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#000099" />
<path
android:pathData="M77 0l437 437V0z"
android:fillType="evenOdd"
android:fillColor="#FFCC00" />
<path
android:pathData="M461.4 470.4l-26.1 -19.1 -26.9 19 10.2 -31.2 -26.4 -19.2h32.7l10.2 -31 10 31.1 32.8 0.1 -26.2 19.4zm76.7 10.4h-32.7l-10 -31.2 -10.2 31.1h-32.8l26.4 19.2 -10.1 31.2 26.8 -19 26.2 19 -9.8 -30.9zM391.8 379.6l26.2 -19.4h-32.7L375.2 329 365 360h-32.7l26.4 19.3 -10.1 31.1 26.8 -19 26.1 19.1zm-60.3 -60.4l26.2 -19.4 -32.8 -0.1 -10 -31.2 -10.2 31.2 -32.7 -0.1 26.4 19.2 -10.2 31.2 26.9 -19 26.1 19.1zm-59.7 -59.7l26.2 -19.4h-32.7l-10.1 -31.2L245 240h-32.7l26.4 19.2 -10.1 31.2 26.8 -19 26.1 19zm-60.4 -60.3l26.2 -19.3 -32.8 -0.1 -10 -31.2 -10.2 31.2 -32.7 -0.1 26.4 19.2 -10.2 31.2 26.9 -19 26.1 19 -9.7 -30.8zm-59.7 -59.9L178 120l-32.7 -0.1 -10 -31.2 -10.3 31.1H92.2l26.4 19.2 -10.1 31.2 26.8 -19 26.1 19zm-60 -60L118 60l-32.7 -0.1 -10 -31.2L65 59.8H32.2L58.6 79l-10.1 31.2 26.8 -19 26.2 19zm-60 -60L58 0 25.2 -0.1l-10 -31.2L4.8 -0.2h-32.7L-1.4 19l-10.1 31.2 26.8 -19 26.1 19z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
</vector>
@@ -0,0 +1,23 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 -0.2h512V512H0z"
android:fillColor="#00267F" />
<path
android:pathData="M170.7 -0.2h170.6V512H170.7z"
android:fillColor="#FFC726" />
<path
android:pathData="M256 173.3c-5.5 15.1 -11.2 30.9 -23.3 43a51.7 51.7 0 0 1 14.6 -2.3v63.6l-18 2.7c-0.7 0 -0.9 -1 -0.9 -2.4a243.6 243.6 0 0 0 -11.7 -53.6c-0.4 -2.3 -7.2 -11.3 -2 -9.7 0.7 0 7.7 3 6.6 1.6a68 68 0 0 0 -37.1 -19.2c-1.2 -0.3 -2 0.3 -0.9 1.7 18 27.7 33.1 60.4 33 99.2 7 0 24 -4.1 31 -4.1v44.9h8.8l2 -125.4z"
android:fillColor="#000001" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="512">
<path
android:pathData="M256 173.3c-5.5 15.1 -11.2 30.9 -23.3 43a51.7 51.7 0 0 1 14.6 -2.3v63.6l-18 2.7c-0.7 0 -0.9 -1 -0.9 -2.4a243.6 243.6 0 0 0 -11.7 -53.6c-0.4 -2.3 -7.2 -11.3 -2 -9.7 0.7 0 7.7 3 6.6 1.6a68 68 0 0 0 -37.1 -19.2c-1.2 -0.3 -2 0.3 -0.9 1.7 18 27.7 33.1 60.4 33 99.2 7 0 24 -4.1 31 -4.1v44.9h8.8l2 -125.4z"
android:fillColor="#000001" />
</group>
</vector>
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#006A4E" />
<path
android:pathData="M400.7 256A170.7 170.7 0 0 1 59.3 256A170.7 170.7 0 0 1 400.7 256Z"
android:fillColor="#F42A41" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h170.7v512H0z"
android:fillType="evenOdd"
android:fillColor="#000001" />
<path
android:pathData="M170.7 0h170.6v512H170.7z"
android:fillType="evenOdd"
android:fillColor="#FFD90C" />
<path
android:pathData="M341.3 0H512v512H341.3z"
android:fillType="evenOdd"
android:fillColor="#F31830" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M512 511.6H0.5V0H512z"
android:fillType="evenOdd"
android:fillColor="#DE0000" />
<path
android:pathData="M511.8 512H0V256.2h511.7z"
android:fillType="evenOdd"
android:fillColor="#35A100" />
<path
android:pathData="M389 223.8l-82.9 56.5 31.7 91.6 -82.7 -56.7 -82.8 56.7 31.7 -91.6 -82.8 -56.6 102.3 0.2 31.6 -91.7 31.5 91.6"
android:fillType="evenOdd"
android:fillColor="#FFF300" />
</vector>
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v170.7H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 170.7h512v170.6H0z"
android:fillColor="#00966E" />
<path
android:pathData="M0 341.3h512V512H0z"
android:fillColor="#D62612" />
</vector>
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0"
android:fillColor="#FFFFFF" />
<path
android:pathData="M512 0H102.4l83.4 51.2 -83.4 51.2 83.4 51.2 -83.4 51.2 83.4 51.2 -83.4 51.2 83.4 51.2 -83.4 51.2 83.4 51.2 -83.4 51.2H512"
android:fillColor="#CE1126" />
</vector>
@@ -0,0 +1,40 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="2.9257"
android:scaleY="2.9257"
android:translateX="-178"
android:translateY="-986">
<clip-path
android:pathData="M60.8 337h175v175h-175z" />
<path
android:pathData="M0 337l146.6 87.5L0 512zm293.1 0l-146.5 87.5L293 512z"
android:fillType="evenOdd"
android:fillColor="#18B637" />
<path
android:pathData="M0 337l146.6 87.5L293 337zm0 175l146.6 -87.5L293 512z"
android:fillType="evenOdd"
android:fillColor="#CF0921" />
<path
android:pathData="M293.1 337h-27.3L0 495.7V512h27.3l265.8 -158.7z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M197.2 424.5a50.6 50.6 0 1 1 -101.2 0 50.6 50.6 0 0 1 101.2 0"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 337v16.3L265.8 512h27.3v-16.3L27.3 337z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M156.5 405.4l-6.6 0.1 -3.4 5.6 -3.4 -5.6 -6.5 -0.1 3.2 -5.8 -3.2 -5.7 6.6 -0.2 3.4 -5.6 3.4 5.7h6.5l-3.1 5.8zm-22 38.2h-6.6l-3.4 5.7 -3.4 -5.6 -6.6 -0.2 3.2 -5.7 -3.1 -5.8 6.5 -0.1 3.4 -5.6 3.4 5.6 6.6 0.2 -3.2 5.7zm44.6 0h-6.6l-3.4 5.7 -3.4 -5.6 -6.5 -0.2 3.1 -5.7 -3.1 -5.8 6.6 -0.1 3.4 -5.6 3.4 5.6 6.5 0.2 -3.2 5.7z"
android:fillType="evenOdd"
android:fillColor="#CF0921"
android:strokeColor="#18B637"
android:strokeWidth="1.25" />
</group>
</vector>
@@ -0,0 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="0.7688"
android:scaleY="0.7688"
android:translateX="-52"
android:translateY="118.4">
<clip-path
android:pathData="M67.6 -154h666v666h-666z" />
<path
android:pathData="M0 -154h333v666H0z"
android:fillType="evenOdd"
android:fillColor="#319400" />
<path
android:pathData="M333 -154h666v333H333z"
android:fillType="evenOdd"
android:fillColor="#FFD600" />
<path
android:pathData="M333 179h666v333H333z"
android:fillType="evenOdd"
android:fillColor="#DE2110" />
</group>
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 0h170.7v512H0z"
android:fillType="evenOdd"
android:fillColor="#00267F" />
<path
android:pathData="M341.3 0H512v512H341.3z"
android:fillType="evenOdd"
android:fillColor="#F31830" />
</vector>
@@ -0,0 +1,440 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#CF142B" />
<path
android:pathData="M0 0h256v256H0z"
android:fillColor="#000066" />
<path
android:pathData="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93 -93.5L0 37V0h31l96 94 93 -94z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M92 162l5.5 17L21 256H0v-1.5zm62 -6l27 4 75 73.5V256zM256 0l-96 98 -2 -22 75 -76zM0 0.5L96.5 95 67 91 0 24.5z"
android:fillColor="#C8102E" />
<path
android:pathData="M88 0v256h80V0zM0 88v80h256V88z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 104v48h256v-48zM104 0v256h48V0z"
android:fillColor="#C8102E" />
<path
android:pathData="M467 146.6v161.6c0 43.1 -86.1 57.2 -86.1 57.2s-86.5 -14 -86.5 -57.4V146.6z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M467 308.2c0 43.1 -86.1 57.2 -86.1 57.2s-86.5 -14 -86.5 -57.4c0 0 0 -3.5 1.8 -5.4 0 0 -1 7.1 4.5 12.6 0 0 -4.3 -7.8 0 -15.3 0 0 -1.6 9.8 4.4 15.3 0 0 -3.3 -7.9 0.4 -16.7 0 0 -1.8 14.3 4.8 17.3 0 0 1.8 -8.4 -0.9 -13.6 0 0 4.6 1.8 4.3 13.8 0 0 1.5 -1.8 1.8 -10.5 0 0 0.3 10 3.6 12.3 0 0 1.2 -1 -0.4 -5.5 -1.5 -4.4 0.6 -6 1 -6 0 0 -0.7 5 3.4 8.8 0 0 -1.7 -7.9 0.8 -9 0 0 -0.6 6.7 4.7 8.1 0 0 0.4 -1.9 -0.8 -4 0 0 -1 -2.5 -0.2 -4.5 0 0 1.6 6 3.9 7 0 0 -1.3 -3.6 0 -7 0 0 0.2 5 4.8 7.1 0 0 -3 -4 -2 -8.2l28.8 1.4 14.9 0.7 44.7 -3 7.6 -6.7s3.1 4.1 -1.7 10.8c0 0 4.7 -0.8 6.3 -8.3 0 0 1.9 4.1 -0.7 8.8 0 0 5.2 -5.4 6 -11.3 0 0 2 5.8 -3 12 0 0 4.5 -1.6 6.4 -8.1 0 0 1.5 4 -2.8 9.5 0 0 8.1 -4.1 8 -13 0 0 3.2 4.8 -0.6 11.6 0 0 4 -3.7 4.6 -9.3 0 0 2.2 2.5 -0.3 9.4 0 0 5 -4.8 5.9 -9.9 0 0 1 4.8 -3.3 10.8 0 0 3 -0.8 5.8 -6.6 0 0 0.7 2.4 -1.8 6.6 0 0 2.7 -0.5 4.5 -5.9 0 0 0.4 3.2 -0.5 6 0 0 2.2 -1.3 2.7 -7.3 0 0 1.1 1.9 1.1 4.4v0.8z"
android:fillColor="#2F8F22" />
<path
android:pathData="M422.7 214.7s-3 0.6 -6.9 -0.6c-3.8 -1.2 -5.4 -0.7 -6.6 0 0 0 1.6 -3.1 -2.2 -5.6 0 0 1.2 3.2 -0.5 4.6 0 0 -0.7 0.7 -1.7 -0.3 0 0 -1.3 -1.5 -2.7 -2.4 0 0 3.2 -1.2 2.6 -4.5 -0.6 -3.3 -2.4 -3.6 -3.2 -4.1a6 6 0 0 0 0 2.4s-3.6 -2 1.2 -4.7 4 -4.4 3 -5.8a13.1 13.1 0 0 0 -3.5 -3.6s1 1.6 0.7 2.9c-0.1 1.2 -2.4 2 -1.9 -0.1 0.5 -2.4 0 -2 0 -4.3 0 0 4.2 1.4 6 -2.8 0 0 1.5 -4.3 -3.8 -6.4 0 0 1.3 1.8 0.7 3 0 0 -1.2 2.2 -2.5 0.6 -1.3 -1.7 -2.3 -2.2 -2.2 -4.2 0 0 5 0.7 3.6 -4.7 0 0 -0.8 3.6 -7.2 -1.2 0 0 4.2 -4.2 2.5 -7.6 0 0 -0.4 -1.5 -4.8 -0.7 0 0 3.8 -2.4 2.2 -4.5 0 0 -0.8 -1.3 -4.5 0.4 0 0 1.4 -2.3 -2.2 -5 0 0 -2.3 1.2 -3.5 2.4 0 0 -2.4 -3 -4 -4.3 0 0 -2.8 1.1 -3.5 4.3 0 0 -1.4 -1.5 -4.3 -2.4 0 0 -1.5 2.8 0.4 5 0 0 -1.4 0 -3.9 -1.1 0 0 -2.9 -1.2 -2.4 1.1 0.4 2.4 0.6 3 1.2 4.2 0 0 -6.4 -1.5 -6.2 2a8.8 8.8 0 0 0 3.1 6.2s-3.6 4.8 -6.7 1.2c0 0 -1.2 1.2 1.2 4.2 0 0 2.4 2.5 0.4 4.2 0 0 -2.5 2 -3.7 -2 0 0 -4.2 4.1 0.7 7.2 0 0 3.1 1.8 6.3 -1 0 0 -1 8 -4 6.4 0 0 -1.8 -1.2 1.4 -2.9 0 0 -4.8 -0.6 -5.5 4 0 0 -0.6 3.5 3.6 5 0 0 3.1 1.2 -0.1 3.6 0 0 -2.4 1.7 -0.9 4.4 0 0 1.8 2.8 -2.8 3.2 0 0 -2.4 0 -3.4 -0.4 0 0 -1 2 -0.3 4 0 0 -2.4 -1.7 -7.5 0.2 -5.3 2 -5 0.6 -5.3 1.2l-1.5 2.4s2.7 3.6 2.8 3.3l-0.6 4 1.5 0.6 10.7 -4.8 11 -5.7 9 0.4 5.5 1.3 7.3 0.6 5.4 -2.8h7.6l8.3 4.2 9.6 5.7 5 1 3.8 -0.3v-7.8z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M335.6 223.7s4.1 2.2 6 -0.3c0 0 2.2 -4.4 -2.8 -6 0 0 2.7 -3.2 -0.3 -6.2 0 0 -1.5 -1.6 -4.1 -0.5 0 0 -1.2 -2.3 -3.7 -2.2 0 0 -2.4 0 -3.1 2.5 0 0 -3.1 -1.2 -4.8 0.6 0 0 -3 3.2 1 5.8l3 0.3 2.8 -1.4 3.2 0.9s-0.8 3.2 2.8 6.5z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M429 216.1a6.7 6.7 0 0 1 6.8 3.8c2.7 6.2 -3 9.6 -3 9.6 0.4 1.3 0.5 3.2 0.5 3.2 7.9 1 6.5 9.8 6.5 9.8l-2.7 -2.2c-4.5 -1.8 -9.3 2.2 -12.6 8.6 -3.3 6.6 -1.8 9.5 -1.2 17.3 0.6 7.7 13.1 12.4 13.1 12.4l-9.8 25c-3.8 10 -11.9 5.9 -14.3 3.7 -2.2 -2 -2.8 -0.8 -3.9 0 -1.2 1 5.3 6 -6.6 10.8 -11.6 4.7 -13.7 8.3 -15.7 9.5 -1.9 1.2 -10 0.5 -10.7 -0.6 -1 -1 -0.5 -1 -3.6 -2.9 -3 -1.7 -8.1 -3.5 -13.7 -6.2s-5.5 -6.2 -5.4 -6.9c0 -0.7 2 -6.5 -4.6 -1.9 -6.6 4.7 -12.2 -2.2 -12.2 -2.2 -1.2 -1.7 -6.8 -16.4 -6.8 -16.4a92.4 92.4 0 0 0 -4.3 -12s-0.3 0.8 4.6 -2c4.7 -2.7 7 -7.3 8.7 -11.9 1.6 -4.6 0 -12.5 -0.6 -14 -0.6 -1.6 -4.2 -8.9 -8.7 -10.4 -4.5 -1.6 -7.6 2.4 -7.6 2.4s-1.3 -9 6.6 -10c0 0 0 -1.8 0.5 -3.1 0 0 -5.6 -3.4 -3 -9.6 0 0 1.8 -4.3 6.8 -3.8l-1.2 2.4s-1.2 12.6 17.3 4.2c18.5 -8.6 17.9 -10.2 28.6 -4.8l7.6 -0.1s11.1 -5.3 14.7 -3c3.6 2.3 16.3 9.4 16.3 9.4s12.4 4.7 15 -4z"
android:fillColor="#64B4D1"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M373.1 271s-0.6 -3.9 -1.2 -6.4c0 0 -1.4 -3.9 1 -6.8l2.8 -3.3s1.8 -2.4 4 -2.7c0 0 2.4 0 2.5 -0.5 0.2 -0.5 2.7 -4.5 8.6 0 0 0 1.7 -3 4.7 -3.6 0 0 3 -0.8 4.6 1.4 0 0 3.4 -2.6 6.4 1.7 0 0 4 -2.4 7.2 2.3 0 0 3.9 -2 6.4 2.1 2.5 4.3 2 6 2 6l2 6.8 6.5 8 -15.3 5.8h-6.9l-13.7 3.6 -24.3 1.9 -6.7 -8 9.5 -8.3z"
android:fillColor="#FFFFFF"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M352.6 311.5s-3.6 0.1 -5.5 1.2c-1.8 0.8 -3.2 1.8 -5.3 3.2 0 0 -1.1 1.3 -5.3 0.5 0 0 -7.1 -1.7 -7.1 4 0 0 -8.9 0.6 -5.3 8.3 0 0 2.4 6 7.4 1.8 0 0 -3.2 4.5 3 6.3 0 0 4.4 1.2 5.7 -3.5 0 0 0.7 -1.8 -1 -4 0 0 2.2 -0.4 3.6 -2.7 0 0 -4.5 5.8 0.5 8 0 0 6.3 1.5 6.7 -5 0 0 -0.6 -3.2 1.9 -4.3 0 0 5 -1.2 7.1 -6.6 0 0 -7.1 -3.9 -6.4 -7.2zM337.9 254s-5.6 -2.5 -8.3 0c0 0 -3.6 -2.2 -7.5 0 0 0 -3.7 2.4 -6.3 5.2 0 0 -1.8 1.5 -1.2 6.4 0 0 1 3.5 0.4 5.1 0 0 -1.2 -0.2 -3.7 2.8 0 0 -3 3.5 -6 0.3 0 0 1 4.6 6.2 3.8 0 0 -2.5 2 -0.4 7 0 0 1.7 3.6 -1 8.2 0 0 4.6 -1.8 4.5 -7.2 0 0 -0.5 -3.6 1 -6 0 0 -1.5 2.2 1.6 7.1 0 0 2.4 3.6 0.5 7.2 0 0 4.4 -1.6 4 -7 -0.5 -5.4 -3 -3.2 -1.4 -8.2 0 0 0.5 2.6 1.8 4a7.2 7.2 0 0 1 2.4 7s2.6 -3.4 2 -6.8a13.1 13.1 0 0 0 -1.3 -4.4l8.3 -4.8 4.3 -7.5z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M325.2 275.5s-3.6 -0.2 -4 -3m-6.2 -1.8s1.2 0 2.4 1.2c0 0 0.7 1.2 2 1"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M330.3 265.2s-1.8 0 -2.9 -0.8c0 0 -1 -0.7 -1.5 0.4 0 0 -1 1.6 0.7 2.3 0 0 2.3 1.2 -1.2 3.4 0 0 4 -1.6 2.4 -3.6 0 0 -1.8 -1.2 -1.2 -1.7 0 0 0.2 -0.4 1 0 0.7 0.6 2.1 0.4 2.7 0"
android:fillColor="#000000" />
<path
android:pathData="M385 275l2 -0.6 -13.9 -48h-0.5z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M338.5 328.3s-3.2 -1.9 -6 0.3c0 0 0.4 -1.2 2.5 -1.7 0 0 1.1 -3.2 4.2 -2.9 0 0 -1.3 1.6 -3 2.8 0 0 1.9 0.2 2.5 1.5z"
android:fillColor="#000000" />
<path
android:pathData="M327 335.8s-5.2 -3.2 -2.3 -8.7c0 0 0.8 -1.5 2.4 -1.2 0 0 3.2 1 0.7 5.5 0 0 -1.3 2.9 -0.7 4.5zm10.6 5.3s-7.4 -3.4 -5.1 -9.2c0 0 0.7 -2 2.3 -1.8 0 0 2.9 0.2 2.3 4 0 0 -0.8 3.6 0.5 7z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M336 319.6s-2.2 1.7 -3 2.8c0 0 -1 -1.2 -2.2 -1.8 0 0 1.4 -0.3 2.1 0.3 0 0 1.2 -1 3.1 -1.3"
android:fillColor="#000000" />
<path
android:pathData="M342.6 339.6s6 -1.4 4.8 -7.5c0 0 -0.6 -2.6 -3 -2.2 0 0 -3 0.8 -1.1 4.6 0 0 1.2 2.6 -0.7 5.1z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M369 212.7l5.7 1.9s5.3 2.3 12.2 0l5.3 -2 -3.6 5.4v2.9l2.2 3.2s-1.4 0.6 -5.4 -2c0 0 -4.4 -3.4 -9.7 0 0 0 -3 2 -5.3 2l3.4 -3.8 -1.3 -3.5 -3.6 -4.3z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M344.9 332.5s0.2 -0.4 0 -0.5l-0.5 0.2s-0.6 1 0 2.4c0 0 0.5 0.9 0.2 1.8l0.1 0.4s0.3 -0.1 0.3 -0.4c0 0 0.3 -0.8 -0.3 -1.8 0 0 -0.6 -1.4 0.2 -2.1"
android:fillColor="#FFFFFF" />
<path
android:pathData="M425.3 223.7s-4.1 2.2 -6 -0.3c0 0 -2 -4.4 3 -6 0 0 -2.8 -3.2 0 -6.2 0 0 1.6 -1.6 4.2 -0.5 0 0 1.2 -2.3 3.7 -2.2 0 0 2.4 0 3.1 2.5 0 0 3.2 -1.2 5 0.6 0 0 2.8 3.2 -1.3 5.8l-2.8 0.3 -2.9 -1.4 -3.1 0.9s0.8 3.2 -2.9 6.5z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M392.2 220.4s0 0.8 -0.8 1c0 0 -1 0.3 -1.6 -0.9v-0.3c0 -0.5 -0.2 -2 1.4 -3.3 0 0 2.7 -2.1 7.7 0.5a192 192 0 0 0 14.8 7.5s3 1.6 7.8 1.8c0 0 6.6 0.5 9.3 -4.1 0 0 2.2 -3.5 0 -5.8 0 0 -0.8 -1 -2.2 -0.8a3 3 0 0 0 -1.8 1.2s-1.1 1.4 0 2.5c0 0 1.6 1 2.2 -1 0 0.2 0.5 1.7 -0.3 2.9 0 0 -4 6 -15 -0.1l-14.2 -8.1s-7.2 -3.7 -11.6 2.1c0 0 -3.5 4.8 1 7.9 0 0 3.4 2 5.4 -1.2 0 0 1.8 -3.1 -1 -4.4 0 0 -2.3 -1.2 -3.3 1.2s1.8 3 2 1.3c0 0 0 -0.4 0.3 0z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M335.3 245.2v-9c0 -0.8 0 -1.2 1.2 -2.2 1 -0.8 2.2 -2.3 3.7 1.7 0 0 3.2 -3.5 4.3 -4 0 0 1.9 -1.5 3.2 0.7 0 0 1.7 -2.6 3 -3.2 0 0 3.2 -2 3.3 4.2l2.5 -2.4s2 -1.5 4.2 0.7c0 0 3.6 3.6 4 4.6 0 0 0.9 1 1 2.7 0 0 0 2 1 3 0 0 1.2 1 2.2 1.2 0 0 2.5 0.1 3.6 2.6 0 0 0.4 -0.5 1.7 11.2v21.5l-14.4 17.1 -23.2 -6.6 -9.2 -3.9 -2.1 -6.6 9 -5.9 4.7 -13 -1.4 -9.3 -2.3 -5.2z"
android:fillColor="#E4CB5E"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M399 256.4l1.2 -1.5 2.5 -2s4 10.4 4.2 12.7v3.2s6 1.6 7.1 10.7l-5 9.2 -7.7 -4.4 -2.3 -1.5z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M325.7 328.4s0.2 -0.3 0 -0.6l-0.5 0.4s-1.6 1.7 -0.3 4.4c0 0 0 0.4 0.4 0.2 0 0 0.2 0 0 -0.3 0 0 -1.2 -2.4 0.4 -4z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M349 326.6s0.1 -0.8 -0.3 -1.6c0 0 -0.4 -0.6 -0.3 -1.5m5.6 -90.1s0 2.3 0.7 4c0.6 1.6 3 4.5 3 5.9"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M408.4 311.5s3.6 0.1 5.5 1.2c1.9 0.8 3.3 1.8 5.5 3.2 0 0 1 1.3 5.1 0.5 0 0 7.3 -1.7 7.3 4 0 0 8.7 0.6 5.1 8.3 0 0 -2.4 6 -7.4 1.8 0 0 3.2 4.5 -3 6.3 0 0 -4.4 1.2 -5.7 -3.5 0 0 -0.7 -1.8 1 -4 0 0 -2 -0.4 -3.5 -2.7 0 0 4.5 5.8 -0.5 8 0 0 -6.3 1.5 -6.7 -5 0 0 0.5 -3.2 -1.9 -4.3 0 0 -5 -1.2 -7.2 -6.6 0 0 7.1 -3.9 6.4 -7.2z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M351.2 243.4l6 47.8m-4.6 -47.9l6.7 44.6m-5.5 -44.8l7.7 44.2"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M366 283.5l2.1 -0.7 -14 -48h-0.4z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M358 241.3l14.2 35.5m-15 -35l13.5 37"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M335 337.6s-1.7 -1.5 -1.5 -4.3c0 0 0 -0.6 -0.2 -0.7 0 0 -0.4 -0.1 -0.4 0.6 0 0 -0.4 2.9 1.6 4.5 0 0 0.1 0.3 0.3 0.2 0 0 0.3 0 0 -0.3z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M358.8 240.8l14.3 32.4M355 242.8l9 43.7"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M427.4 275c-6.4 -3.6 -7.8 -11.4 -7.8 -11.4a24.6 24.6 0 0 1 1.7 -14.3c4 -8.6 11 -10.3 11 -10.3s-6.8 4.8 -8.8 11.2c0 0 -1.4 5.5 -0.5 10.7 0.8 5.5 0.4 4.1 1.7 8.3l2.7 6z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M400 254.7l-26.5 8.5 -1.5 12c-6.3 9.1 -19.2 10.7 -19.2 10.7l10 10.7 19.1 4 10.2 -7.8 9.2 -8.4c-1 -4.5 -0.5 -11.2 -0.5 -11.2 0 -1.2 0.5 -3.8 0.5 -3.8s-1.6 -10.7 -1.2 -14.5z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M372.4 272.2s17.5 -5.5 28 -10m-36.5 20s22 -4 37.4 -12.8l5.6 -3.8"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M406.9 268.8l-6 4.4s-24.6 11.2 -43.3 11.6m43.2 -3.6s-18.9 9.7 -29.6 9.8"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M423.2 254s5.6 -2.5 8.3 0c0 0 3.6 -2.2 7.7 0 0 0 3.5 2.4 6.2 5.2 0 0 1.8 1.5 1.2 6.4 0 0 -1 3.5 -0.4 5.1 0 0 1.2 -0.2 3.6 2.8 0 0 3.2 3.5 6 0.3 0 0 -0.9 4.6 -6 3.8 0 0 2.4 2 0.2 7 0 0 -1.5 3.6 1 8.2 0 0 -4.6 -1.8 -4.3 -7.2 0 0 0.3 -3.6 -1 -6 0 0 1.3 2.2 -1.8 7.1 0 0 -2.3 3.6 -0.3 7.2 0 0 -4.6 -1.6 -4 -7 0.3 -5.4 3 -3.2 1.2 -8.2 0 0 -0.3 2.6 -1.6 4a7.2 7.2 0 0 0 -2.4 7s-2.6 -3.4 -2 -6.8c0.6 -3.5 1.1 -4.4 1.1 -4.4l-8.3 -4.8 -4.2 -7.5z"
android:fillColor="#D40000"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeLineJoin="round" />
<path
android:pathData="M328 284.4s0.8 -3.7 4.2 -2.4c0 0 1.2 -6 7.8 -6.2 6.4 -0.2 6.8 6.4 6.8 6.8 0 0 2 -2.8 5 -2.5 0 0 5.6 -0.3 3.7 8.5l1 1.2s4 -9.9 12.7 -7.4c0 0 8.3 2.6 3 10.7 0 0 4.1 5.5 7.6 5 3.6 -0.5 6.7 -1.6 10.1 -7.8 3.6 -6.2 11.7 -7.2 13.7 -6.8 2 0.3 3.7 1.8 4 3.2 0 0 4.4 -14.3 19.9 -12.2l6.2 3.3 2.4 1 -3.6 10L424 308l-6.5 2 -6.8 -3.9 -2.4 1.2 -0.1 5.9 -9 6.4 -6.2 2.5 -6.8 4.8 -1.6 4.2s-3.7 -1.7 -8 0l-1.5 -3.6 -4 -3.7 -15.5 -7.4 -2.8 -9 -2.8 -1.3 -3.2 3.6 -4.6 0.6 -6.9 -4.8 -7.5 -21z"
android:fillColor="#FFFFFF"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M395.5 214s-6 -0.2 -5.7 6"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M434.4 279.3c-10.3 -3.2 -13.1 -14.3 -13.1 -14.3a25.5 25.5 0 0 1 1.3 -15.5c4.8 -11 12.6 -11 12.6 -11a4 4 0 0 1 4.6 3.2c0.3 2.4 -1.3 3.3 -1.3 3.3 -2.8 1.5 -4.6 -0.5 -4.6 -0.5 -1.2 -1.6 -0.2 -2.9 -0.2 -2.9 0.7 -1 2 -0.4 2 -0.4 1.2 0.2 1 1.6 1 1.6s0.3 -1.6 -1.2 -1.8c0 0 -3.2 -0.7 -6.8 3.8 0 0 -4.8 6.1 -4.8 14.1 0 0 -0.6 14.8 14.8 18.6 0 0 -1.7 2.4 -4.7 11.1 0 0 -3.3 11.2 -6.4 17.3 0 0 -4.3 8.6 -13.8 5.1 0 0 -5.6 -2.5 -5.6 -6.5 0 0 -0.4 -3.8 3 -4 0 0 3.3 -0.3 3.3 2.5 0 0 0 3 -3.6 2.4 0 0 -1.2 -0.3 -1 -1.5 0 0 0.2 -1.2 1.7 -0.6 1.6 0.6 0 0 0 -0.1 0 0 -0.6 -0.3 -1.2 0 0 0 -0.6 0 -0.6 1 0 0 0 0.6 0.8 1.1l1.6 0.2s1 2 3.1 2.7a8 8 0 0 0 7 -1.2 10.7 10.7 0 0 0 3 -4.3 113.3 113.3 0 0 0 5.3 -13.5s1.8 -5.7 3.3 -8.7z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M405.3 307.4s2 -0.2 2 1.5c0 0 0 2.4 -3.2 1.9 0 0 -3 -0.6 -1.9 -4 0 0 0.7 -2.3 3.6 -2 0 0 2.7 0 4 3.8 0 0 0.9 3.3 -0.8 6 -1.8 3 -6.2 5 -8.3 6 0 0 -8.8 3.3 -11.4 5.3 0 0 -4 2.9 -2.1 5.6 0 0 0.7 1.1 1.6 1.1 0 0 1.2 0 1.4 -1.2 0 0 0 0.7 -0.8 1 0 0 -0.8 0.4 -1.6 -0.3 0 0 -1 -1 -0.3 -2.4 0 0 1.1 -1.6 3.6 -0.6 0 0 2 1.1 1.2 3.3 0 0 -0.8 2.1 -3.3 2 0 0 -2 0 -3.3 -1.2 -1.9 -2.1 -2 -6 -0.2 -8 0 0 1.6 -2.1 4.8 -3.6l9 -3.5a18 18 0 0 0 6.4 -4.1s1.3 -1.4 1.8 -4c0 0 0.3 -2 -0.9 -2.4l-1.2 -0.3z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M405.5 307.4s2.2 -0.4 3.5 2.2c0 0 0.7 1.5 0.8 2.5m0.8 -9s-2.2 0.3 -1.1 3.4c1.2 2.9 3 3.7 3.6 4.2"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M369 220.4s0 0.8 0.9 1c0 0 0.8 0.2 1.3 -0.9l0.1 -0.3c0 -0.5 0.3 -2 -1.3 -3.3 0 0 -2.7 -2.1 -7.7 0.5 0 0 -4 2 -6.7 3.6 0 0 -7.2 3.8 -8.1 4 0 0 -3.1 1.6 -7.9 1.8 0 0 -6.6 0.5 -9.3 -4.1 0 0 -2.1 -3.5 0 -5.8 0 0 0.8 -1 2.3 -0.8 0.6 0.1 1.2 0.4 1.8 1.2 0 0 1 1.4 -0.2 2.5 0 0 -1.5 1 -2.1 -1 0 0.2 -0.4 1.6 0.5 3 0 0 3.9 5.9 14.8 -0.3l14.3 -8s7.1 -3.7 11.5 2c0 0 3.5 4.8 -1 8 0 0 -3.3 2 -5.4 -1.2 0 0 -1.7 -3 1 -4.4 0 0 2.3 -1.2 3.4 1.2 1 2.4 -2 3 -2.1 1.3 0 0 0 -0.4 -0.2 0zm-35.2 54.7c6.3 -3.5 7.7 -11.5 7.7 -11.5 1.4 -8 -1.7 -14.3 -1.7 -14.3 -4 -8.6 -11 -10.3 -11 -10.3s6.9 4.8 8.8 11.2c0 0 1.5 5.5 0.6 10.7 -0.9 5.5 -0.5 4.1 -1.8 8.3z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M365.7 214s6 -0.2 5.6 6"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M326.6 279.3c10.4 -3.2 13.1 -14.3 13.1 -14.3a25.5 25.5 0 0 0 -1.2 -15.5c-4.7 -11 -12.6 -11 -12.6 -11a4 4 0 0 0 -4.5 3.2c-0.4 2.4 1.3 3.3 1.3 3.3 2.7 1.5 4.5 -0.5 4.5 -0.5 1.2 -1.6 0.2 -2.9 0.2 -2.9 -0.7 -1 -2 -0.4 -2 -0.4 -1.2 0.2 -1 1.6 -1 1.6s-0.3 -1.6 1.3 -1.8c0 0 3.2 -0.7 6.8 3.8 0 0 4.7 6.1 4.7 14.1 0 0 0.6 14.8 -14.8 18.6 0 0 1.7 2.4 4.7 11.1 0 0 3.3 11.2 6.5 17.3 0 0 4.2 8.6 13.8 5.1 0 0 5.6 -2.5 5.6 -6.5 0 0 0.3 -3.8 -3 -4 0 0 -3.4 -0.3 -3.4 2.5 0 0 0 3 3.6 2.4 0 0 1.2 -0.3 1 -1.5 0 0 -0.1 -1.2 -1.7 -0.6 -1.5 0.6 0 0 0 -0.1 0 0 0.6 -0.3 1.2 0 0 0 0.6 0 0.6 1 0 0 0 0.6 -0.7 1.1l-1.6 0.2s-1 2 -3.2 2.7a7.5 7.5 0 0 1 -7 -1.2 10.7 10.7 0 0 1 -3 -4.3 113.5 113.5 0 0 1 -5.3 -13.5s-1.7 -5.7 -3.2 -8.7l-0.6 -1.2z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M355.8 307.4s-1.9 -0.2 -1.9 1.5c0 0 0 2.4 3.1 1.9 0 0 3 -0.6 2 -4 0 0 -0.8 -2.3 -3.7 -2 0 0 -2.7 0 -3.9 3.8 0 0 -1 3.3 0.7 6 1.8 3 6.2 5 8.4 6 0 0 8.7 3.3 11.3 5.3 0 0 4 2.9 2.1 5.6 0 0 -0.6 1.1 -1.6 1.1 0 0 -1.2 0 -1.3 -1.2 0 0 0 0.7 0.7 1 0 0 0.8 0.4 1.6 -0.3 0 0 1 -1 0.3 -2.4 0 0 -1 -1.6 -3.5 -0.6 0 0 -2.1 1.1 -1.2 3.3 0 0 0.8 2.1 3.3 2 0 0 1.9 0 3.2 -1.2 1.9 -2.1 2 -6 0.3 -8 0 0 -1.6 -2.1 -4.7 -3.6 -2 -0.6 -5.5 -2.1 -9.1 -3.5a16.5 16.5 0 0 1 -6.4 -4.1s-1.3 -1.4 -1.8 -4c0 0 -0.4 -2 0.8 -2.4z"
android:fillColor="#F5CE00"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M355.6 307.4s-2.2 -0.4 -3.5 2.2c0 0 -0.7 1.5 -0.8 2.5m-0.7 -9s2.1 0.3 1 3.4c-1.1 2.9 -3 3.7 -3.5 4.2m27.4 -91.1s5.1 -3.3 10.4 0.3m-39.7 31.3s0.7 -3 -2.7 -8l-3.2 -7.5m7.4 -3.3l2.4 6.6 2.9 6.8"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M348.5 254.3s2 2.1 1.8 5.6m-8 -7.9s2 1 1.8 6.8c0 0 0 4 3 6.2m-5.2 1.4s6.6 -0.7 7.1 3.5c0 0 0 4 2.4 4.3 0 0 3.3 0.3 4 3.6M344 271s1.2 1.7 2.4 2.6m6.2 -7s1.7 2.7 2 4.1m5.4 -35s1.5 2.1 3 3m3.2 9.6s3.3 1.6 2.9 10c0 0 -0.5 5 1 7.7"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M350.5 242.6l0.3 0.8s6 0.3 9.2 -3.8l-0.4 -0.8s-5.2 -0.3 -9 3.8z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M372 274.5s20.7 -6 28.7 -9.6"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M369.9 236.5l-0.2 -0.6 10 -4 0.3 0.8z"
android:fillColor="#784421"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
<path
android:pathData="M370.7 236.1l6.8 33.3m-5.6 -33.6l7.8 33m-6.5 -33.6l8.5 32.9m-5.1 -34.1l11.5 24.6m-10 -25l12.3 24.2M379.2 233l13.3 24.3M377 269.6l5.3 -1.6m-9.2 -1.6s15.3 -4.5 27 -9.2M372.9 268s19.4 -5 27.2 -8.8m-21.3 24.6l1 3.3 2.8 -1 -0.9 -3.1m5 -1.3l1 3 2.7 -0.9 -1 -3m-16 -17.6l-0.2 -4.2 25.5 -7.7 1.4 3.6m-16 0.8l1.3 3.8m7.5 -6.4l1.7 3.6m0.4 -4.3l1.6 3.3m0.5 -4l1.5 3.6m0 -4l2.9 -1.6 1.2 3.1m-2.6 -2.3l1.4 3.3"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M336.9 299.1s-5 -5.1 0 -10c0 0 -5.5 -2.6 -4.7 -7m13.6 21s-5.2 0.7 -3.7 -9.4c0 0 -2.1 4 -2.9 6a4.7 4.7 0 0 0 2 5.4c1 0.6 5.6 1.8 7 -1.2m-8.2 -16.2s-2.2 1.9 -0.6 5.4m2.7 -5s0.2 3.5 2 5.4m-0.4 -6.7s0 4 2.8 6.6m-1.4 -8s0 4.5 3.3 7.4m13.5 -0.7s1.7 -3.9 5.2 -3.6c0 0 -1.6 0.8 -1.6 2.5 0 0 -0.3 3 2.8 3.2 0 0 2.5 0.4 3.9 -1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M370.5 309.1s-9 -4.2 -8 -10.1c0 0 0.4 -3.6 4 -5.4m-2 3.8s-0.8 2.5 1 4.3m1 -6s-1.1 2.8 0.8 4.8m1.4 -6.3s-1.3 2.4 0.2 4.5m-8.3 11s4.8 4.3 8.6 4.3m-10.2 -2.9s4.6 3.6 7.4 4.2m-9 -3.2s5.6 4.9 9 5.2m13.7 4.6s-5.4 3 -1.1 6.2m-2.4 -9.4l9 -4.6m-6.8 6.2s9.1 -5.5 11.7 -6.7m-7 7.2s7.7 -5.2 12 -7.5m-6.9 7.1s5.4 -4 10.5 -7.1m1.8 -5.1s-2.6 -3.9 -11.2 0c0 0 3.2 -2.9 9.4 -5.2m8.6 -16.3s0.7 3.1 0 5"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M393.9 301.7s1.7 -2.6 6.3 -4c0 0 1.2 3 4.7 2.5 0 0 5.3 -1.1 3.6 -7 0 0 -1 -4.2 -7.1 -4.7m18 -7.3s6.2 1.2 6 6.1c0 0 0.7 7.6 -7.3 9m6.5 -12s1.7 -3.7 5.5 -5.2m-4.5 -2.2s1.6 2.8 2.7 3.1m-3.6 -1l2 2.5m-2.6 -0.5a8 8 0 0 0 1.6 1.6m-33.4 -30.8s1.2 -2 4.3 -1.2m12.2 15.8s1.9 -7.8 8.4 -5m-2.6 -0.6s0.6 -3.6 -1 -5.5m-3.5 5.2s0.8 1.5 0 2.7"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M423.5 341s7.4 -3.3 5.2 -9.1c0 0 -0.7 -2 -2.4 -1.8 0 0 -2.9 0.1 -2.4 4 0 0 1 3.8 -0.5 7z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M426.2 337.6s1.6 -1.5 1.4 -4.3c0 0 -0.1 -0.6 0.1 -0.7 0 0 0.4 -0.1 0.4 0.6 0 0 0.5 2.9 -1.5 4.5 0 0 0 0.3 -0.3 0.2 0 0 -0.2 0 -0.1 -0.3"
android:fillColor="#FFFFFF" />
<path
android:pathData="M434 335.8s5.3 -3.2 2.4 -8.7c0 0 -0.8 -1.5 -2.4 -1.2 0 0 -3.2 1 -0.7 5.5 0 0 1.2 2.9 0.7 4.5z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M435.4 328.4s-0.3 -0.3 0 -0.6l0.3 0.4s1.6 1.7 0.4 4.4c0 0 -0.2 0.4 -0.5 0.2v-0.3s1.2 -2.4 -0.2 -4z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M418.4 339.6s-5.8 -1.4 -4.7 -7.5c0 0 0.5 -2.6 3 -2.2 0 0 3 0.8 1.1 4.6 0 0 -1.2 2.6 0.6 5.1z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M416.2 332.5s-0.2 -0.4 0 -0.5c0 0 0.3 0 0.4 0.2 0 0 0.6 1 0.2 2.4 0 0 -0.5 0.9 -0.3 1.8 0 0 0 0.3 -0.2 0.4l-0.3 -0.4s-0.2 -0.8 0.3 -1.8c0 0 0.6 -1.4 0 -2.1z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M422.6 328.3s3.3 -1.9 6 0.3c0 0 -0.3 -1.2 -2.4 -1.7 0 0 -1.1 -3.2 -4.2 -2.9 0 0 1.2 1.6 3 2.8 0 0 -1.8 0.2 -2.4 1.5m2.4 -8.7s2.4 1.7 3.2 2.8c0 0 0.8 -1.2 2 -1.8 0 0 -1.3 -0.3 -2 0.3 0 0 -1.2 -1 -3.1 -1.3z"
android:fillColor="#000000" />
<path
android:pathData="M412.1 326.6s-0.2 -0.8 0.4 -1.6c0 0 0.3 -0.6 0.2 -1.5m23.4 -48s3.4 -0.2 4 -3m6 -1.8s-1.2 0 -2.3 1.2c0 0 -0.8 1.2 -2 1"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M431 265.2s1.7 0 2.7 -0.8c0 0 1 -0.7 1.7 0.4 0 0 1 1.6 -0.9 2.3 0 0 -2.1 1.2 1.3 3.4 0 0 -4.1 -1.6 -2.4 -3.6 0 0 1.8 -1.2 1.1 -1.7 0 0 -0.2 -0.4 -1 0 -0.7 0.6 -2 0.4 -2.6 0z"
android:fillColor="#000000" />
<path
android:pathData="M433.3 221.6s0.9 -1.2 0.5 -4.4 2.6 -3.7 3.7 -2.8c0 0 1.2 1 0 3.1a8.3 8.3 0 0 1 -4.2 4.1z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M434.4 219s1.2 -1.1 0.6 -3.6l0.1 -0.2h0.4s0.6 2.8 -0.6 4.2c0 0 -0.3 0.3 -0.5 0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M432.5 220.4s-0.1 -1.4 -2.4 -3.6c-2.4 -2.4 -0.5 -4.4 1 -4.4 0 0 1.4 0 2 2.3a8.3 8.3 0 0 1 -0.6 5.7z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M432.1 217.4s0 -1.6 -2.1 -3.3v-0.4h0.3s2.3 1.8 2.3 3.8c0 0 0 0.3 -0.2 0.3 0 0 -0.3 0 -0.3 -0.4"
android:fillColor="#FFFFFF" />
<path
android:pathData="M429.3 219.3s-0.6 -1 -3.5 -2.1c-2.8 -1 -2.1 -3.5 -1 -4 0 0 1.4 -0.5 2.7 1.1a7.6 7.6 0 0 1 1.8 5z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M428 217.3s-0.6 -1.4 -3.3 -2.1c0 0 -0.2 0 -0.2 -0.3 0 0 0 -0.2 0.4 -0.1 0 0 2.8 0.6 3.7 2.4l-0.2 0.3s-0.2 0 -0.3 -0.2z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M431 220.4s-1.3 0.5 -4.4 -1c-3 -1.5 -4.4 1.1 -3.8 2.3 0 0 0.5 1.6 2.9 1.2a8.3 8.3 0 0 0 5.4 -2.4z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M424 221.4s1.3 1 3.8 0h0.4s0 0.2 -0.2 0.3c0 0 -2.7 1.2 -4.5 0.1 0 0 -0.2 0 0 -0.3h0.4z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M426.6 210.7s1.5 0.8 1.2 2.5"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M433.3 211s0.6 1.9 0 3"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M327.6 221.6s-0.9 -1.2 -0.5 -4.4c0.3 -3.4 -2.5 -3.7 -3.6 -2.8 0 0 -1.2 1 -0.1 3.1a8.3 8.3 0 0 0 4.2 4.1z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M326.5 219s-1 -1.1 -0.6 -3.6v-0.2h-0.5s-0.5 2.8 0.7 4.2c0 0 0.3 0.3 0.4 0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M328.5 220.4s0 -1.4 2.4 -3.6c2.4 -2.4 0.5 -4.4 -1 -4.4 0 0 -1.5 0 -2 2.3a8.3 8.3 0 0 0 0.6 5.7z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M328.9 217.4s0 -1.6 2 -3.3c0 0 0.2 -0.3 0 -0.4h-0.2s-2.4 1.8 -2.4 3.8c0 0 0 0.3 0.3 0.3 0 0 0.3 0 0.3 -0.4"
android:fillColor="#FFFFFF" />
<path
android:pathData="M331.6 219.3s0.6 -1 3.6 -2.1c2.7 -1 2 -3.5 0.8 -4 0 0 -1.2 -0.5 -2.6 1.1a7.6 7.6 0 0 0 -1.8 5z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M333 217.3s0.5 -1.4 3.1 -2.1c0 0 0.3 0 0.3 -0.3 0 0 0 -0.2 -0.3 -0.1 0 0 -2.8 0.6 -3.6 2.4v0.3s0.3 0 0.4 -0.2z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M329.8 220.4s1.5 0.5 4.4 -1c3.1 -1.5 4.5 1.1 4 2.3 0 0 -0.6 1.6 -3 1.2a8.3 8.3 0 0 1 -5.4 -2.4z"
android:fillColor="#64B4D1"
android:strokeColor="#00247D"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M337 221.4s-1.3 1 -4 0h-0.2v0.3s2.9 1.2 4.5 0.1c0 0 0.3 0 0 -0.3z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M334.4 210.7s-1.6 0.8 -1.2 2.5"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="2.6" />
<path
android:pathData="M327.6 211s-0.6 1.9 0 3"
android:strokeColor="#000000"
android:strokeWidth="1.2"
android:strokeMiterLimit="10" />
<path
android:pathData="M394.1 193.6s1 2.7 0.6 5.2c-0.4 2.4 0.1 2.9 1 3.4 0.7 0.3 2.3 -0.4 2.4 -2.2 0 0 2 3.8 -1.7 6.3 0 0 -2.8 1.7 -5 -0.4 -0.9 -0.9 -1.2 -3 -0.8 -5 0 0 0.6 -2.7 -0.4 -5.5 0 0 1.5 1.6 1.2 4.9 0 0 -0.9 6 3.5 5.6 0 0 3 0 3.1 -3.6 0 0 -1.2 1.2 -2.5 0.8a2.4 2.4 0 0 1 -1.8 -2.8c0.2 -1.6 0.6 -4.3 0.4 -6.7m-4.8 9.5s-0.3 4.8 -4.5 5.9c0 0 0.6 -0.9 -0.4 -3.3 0 0 -1 -1.2 -1 -3.3 0 0 -1.1 1 0.3 3.8 1 1.7 0.1 3.6 -0.1 3.7 -0.4 0.1 7 -1 5.6 -6.7zm-5.6 -4.5s-1 -1.2 -1.2 -3.8c0 -2.7 -0.4 -3.4 -0.8 -3.6 0 0 0.5 2.3 0.4 3.6 0 1.5 0 2.4 0.3 3 0 0 -2.4 0.3 -3.8 -3 -1.3 -3.3 -2.7 -3 -3.5 -3 0 0 0.9 0.1 2.4 3 1.7 3 2.2 3.7 6.2 3.7zm-10.7 -7s1.2 3.2 1.3 4.8c0 0 -3.1 -1 -4 -3.5 0 0 -3.2 1 -2 4.7 0 0 -2.8 -1 -4.1 -3.2 0 0 1.5 1.2 3 1.7 0 0 -0.2 -3.1 3.6 -4.2 0 0 0.6 2.7 2.7 3.3zm5 -5.4s1.2 1.5 3.3 1.5a3.6 3.6 0 0 0 3.3 -1.5s-0.2 2.6 -3.3 2.7c0 0 -3.3 0 -3.3 -2.7m-13.5 18.5l2 1.9s1.2 1.2 2 -0.3c0 0 1.4 -2.4 3 -2.2 0 0 -1.3 0.7 -2.4 3 0 0 -0.3 0.7 -1.2 0.8 -0.5 0 -1 0.2 -1.8 -0.7l-1.6 -2.4zm16.7 -29.4c-3.2 0 -0.5 2.4 -0.5 2.4 0 4 -3 5.4 -5.2 4.2 -2.3 -1.2 -0.5 -4 -0.5 -4s-2.4 1.5 -1 3.9c1.6 2.4 5.8 1.2 7.2 -0.9 1.6 2.2 5.7 3.3 7.2 0.9 1.6 -2.4 -0.9 -4 -0.9 -4s1.8 2.9 -0.4 4c-2.2 1.3 -5.4 0 -5.3 -4 0 0 2.8 -2.5 -0.5 -2.5zm2 -4.4s1.2 2 1 5c0 0 1 -3 -1 -4.9zm-10 4.7s-0.2 -2.2 -2.4 -2.4c0 0 2 1.3 2.4 2.4m16.1 0s0.3 -2.2 2.4 -2.4c0 0 -1.8 1.3 -2.4 2.4m-19.3 3.2s1.7 0.5 2.6 -0.7zm-5.4 -13.1s2 -0.1 3.9 2.7c0 0 -2 1 -2.4 1.6 0 0 0 -1 1 -1.7 0 0 -0.4 -1.4 -2.5 -2.5zm32 0s-2 -0.1 -3.8 2.7c0 0 1.9 1 2.4 1.6 0 0 0 -1 -1 -1.7 0 0 0.4 -1.4 2.4 -2.5zm-14.7 2.2s1.7 0.5 3.8 -0.7c0 0 2.7 -1.4 4.3 0 0 0 -1.4 -0.7 -4.3 0.7 0 0 -2.7 1.6 -3.8 0"
android:fillColor="#000000" />
<path
android:pathData="M383.7 169.6s1.5 -2.5 6 -2c0 0 -1.2 3.6 -6 2"
android:fillColor="#FFFFFF" />
<path
android:pathData="M387.5 168.8A0.8 1.1 0 0 1 385.9 168.8A0.8 1.1 0 0 1 387.5 168.8Z"
android:fillColor="#784421" />
<path
android:pathData="M387.2 168.8A0.5 0.7 0 0 1 386.2 168.8A0.5 0.7 0 0 1 387.2 168.8Z"
android:fillColor="#000000" />
<path
android:pathData="M374.2 164.1s2.7 0.3 4.5 1.2c0 0 1.8 1.2 3.8 -0.3 0 0 2.3 -1.4 3.7 -3.1 0 0 -3.4 2.3 -4.7 2.7 0 0 -1.2 -1 -1.6 -2.3 0 0 0.1 -1 2 -2.7 0 0 -2.5 0.8 -3 2.9a7.2 7.2 0 0 0 1.5 2.3s-0.5 0.3 -1.7 -0.6c0 0 -2.7 -0.8 -4.5 0zm7.1 17c-2.3 2.1 0 1.9 0 1.9s2.4 0.2 0 -2zm-1.4 -13.2s-1.8 0.5 -4 -0.7c0 0 -2.6 -1.4 -4.2 0 0 0 1.4 -0.7 4.3 0.7 0 0 2.8 1.6 4 0z"
android:fillColor="#000000" />
<path
android:pathData="M378.1 169.6s-1.4 -2.5 -6 -2c0 0 1.2 3.6 6 2"
android:fillColor="#FFFFFF" />
<path
android:pathData="M375.8 168.8A0.8 1.1 0 0 1 374.2 168.8A0.8 1.1 0 0 1 375.8 168.8Z"
android:fillColor="#784421" />
<path
android:pathData="M375.5 168.8A0.5 0.7 0 0 1 374.5 168.8A0.5 0.7 0 0 1 375.5 168.8Z"
android:fillColor="#000000" />
<path
android:pathData="M467.3 146.6v161.6c0 43.1 -86.2 57.2 -86.2 57.2s-86.3 -14 -86.3 -57.2V146.6z"
android:strokeColor="#000000"
android:strokeWidth="1.2" />
</vector>
@@ -0,0 +1,118 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#F7E017" />
<path
android:pathData="M0 35.6V263l512 106.7v-121z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 156.4v106.7l512 213.3V369.8z"
android:fillColor="#000001" />
<group
android:scaleX="0.71111"
android:scaleY="0.71111"
android:translateX="-256">
<path
android:pathData="M695.7 569.7a117.2 117.2 0 0 1 -49.4 -17.2c-2.4 -1.6 -4.6 -3 -5 -3 -0.4 0 -0.6 1.9 -0.6 4.1 0 6.4 -2.6 9.6 -9 11.3 -6.2 1.6 -15.6 -1.6 -23.2 -8a68.3 68.3 0 0 0 -24.7 -13.5 39.9 39.9 0 0 0 -28 3.6 8.7 8.7 0 0 1 -2.8 1.3c-1.1 0 -1 -6.9 0.2 -9 1.5 -3 5.1 -5.8 9.4 -7.3 2.2 -0.8 4 -1.8 4 -2.3 0 -0.4 -0.8 -2 -1.7 -3.6 -2.9 -5.1 -1.7 -10 3.4 -13.9 5.2 -4 14 -4.6 21.7 -1.7a32 32 0 0 0 4 1.4c1 0 0.4 -1.5 -2.4 -5.6 -3.2 -4.7 -3.9 -7 -3.5 -12.7a14.7 14.7 0 0 1 13.5 -13.5c5.8 -0.4 9.4 1.6 18 9.7a144 144 0 0 0 86 41.6c8.3 1 24.8 0.5 34.5 -1a156 156 0 0 0 81.8 -40.8c6.4 -6 9.4 -7.6 14.7 -7.6 4.5 0 7.7 1.4 11 5 3 3.3 4 6.4 3.6 11.5 -0.2 3.2 -0.7 4.7 -2.6 7.9 -2.8 4.5 -2.3 5 3.2 2.8 7.6 -3 16.9 -1.6 21.9 3.2 4.4 4.2 4.8 8.4 1.4 14 -1.3 2.1 -2.3 4 -2.3 4.4 0 0.6 1 0.8 5.5 1.6 6 1 9.5 5.4 9.5 12.2 0 2 -0.3 3.7 -0.6 3.7s-2.6 -0.9 -5 -1.9c-7 -2.9 -11 -3.6 -19.2 -3.5 -6.2 0 -8.3 0.3 -12.6 1.7a57.5 57.5 0 0 0 -19.5 11.5c-6.4 5.7 -10.4 7.5 -16.6 7.4 -5.8 0 -9.7 -1.7 -11.8 -5 -1.1 -1.8 -1.3 -2.8 -1 -6.8 0.2 -2.6 0.1 -4.7 0 -4.7 -0.3 0 -2.5 1.4 -5 3.1A80.5 80.5 0 0 1 778 560a181.6 181.6 0 0 1 -82.3 9.7"
android:fillColor="#CF1126" />
<path
android:pathData="M706.3 525.2a136.4 136.4 0 0 1 -97.9 -55.7c-24.4 -33.2 -32 -77.1 -24.6 -117.2 4 -18.3 12 -36.6 25.5 -49.6a114.6 114.6 0 0 0 -8.7 74.3c9 49.8 51 91.9 101.3 99.2 20 5.7 40.5 -0.4 59.5 -6.5 42 -14.8 74 -54.6 77.8 -99.1 3.3 -24 -0.3 -49.1 -11.2 -71 6.2 3.3 14 16.2 18.6 24.8 16 31 16.7 68.1 7.3 101.2 -12.8 42.1 -45 79 -87.5 92.4a165.7 165.7 0 0 1 -60 7.2z"
android:fillColor="#CF1126" />
<path
android:pathData="M512 469.9c-2.5 -0.4 -5.3 2.1 -4.3 4.7 1.8 2.6 5 4 7.8 5.2a54.2 54.2 0 0 0 23.2 3.6 49.6 49.6 0 0 0 17 -3c3 -1 6.8 -2 8 -5.4 1.3 -2.1 -1 -4.3 -3.1 -3.9 -3 0.7 -6 2 -9 2.9a57.7 57.7 0 0 1 -20.3 2 54 54 0 0 1 -14.4 -4.2c-1.6 -0.7 -3.1 -1.7 -4.9 -1.9"
android:fillColor="#CF1126" />
<path
android:pathData="M514.8 459.5c-2.5 -0.4 -4.7 2.6 -3.7 5 2 2.8 5.3 4.3 8.4 5.6a42.4 42.4 0 0 0 17 2.9h1.5a37.6 37.6 0 0 0 14.4 -2.8c2.7 -1.1 6.1 -2.2 7.3 -5.2 0.9 -1.7 0.2 -4.1 -2 -4.3 -1.8 0 -3.5 1.2 -5.3 1.7a44.3 44.3 0 0 1 -20.6 3.2c-4.4 -0.5 -8.5 -2.1 -12.5 -4 -1.5 -0.7 -2.8 -1.8 -4.5 -2z"
android:fillColor="#CF1126" />
<path
android:pathData="M518.3 449.6c-2.2 -0.3 -3.7 2.2 -3.3 4.1 0.3 1.8 1.8 3 3.1 4a30 30 0 0 0 18.6 5.3h1.6a28 28 0 0 0 12 -2.8c2.5 -1 5.4 -2.3 6.3 -5.2 0.4 -1.3 0.6 -3.2 -0.9 -4 -1.6 -0.8 -3.1 0.5 -4.5 1a34 34 0 0 1 -15.5 3.9 27 27 0 0 1 -13.1 -4c-1.5 -0.7 -2.7 -2 -4.3 -2.3"
android:fillColor="#CF1126" />
<path
android:pathData="M481.5 302.7c-3.2 3.3 -0.7 9.3 -1 13.5 1.8 13.2 3.9 26.5 8.8 39 6 12 18.8 18.5 26.5 29.2 2.8 5.1 1.8 11.3 2.4 17 0.4 15.3 0.3 30.7 0 46 7 3.6 14.5 7 22.5 5.7 4.7 -1.1 13.5 -1.8 14.5 -6.5l-1 -79.5c-2.7 -8.1 -11 -12.3 -17.1 -17.5a155.5 155.5 0 0 1 -14.2 -16.1c-2.6 -4.5 -12.9 -6 -9.2 1.6 2.2 6.7 7.7 11.6 9.1 18.6 0.3 3.9 5 11 1 13.2a24.5 24.5 0 0 0 -10.7 -10c-4.4 -3.3 -11.7 -4.7 -13.3 -10.5a42.9 42.9 0 0 0 -11 -22c1.5 -7.4 0 -16.7 -6.4 -21.5z"
android:fillColor="#CF1126" />
<path
android:pathData="M491.4 304.2c-3 0.5 -2.8 4.2 -1.5 6.2a27.2 27.2 0 0 1 1.1 13.4 44.1 44.1 0 0 1 10.6 21.7c0 3 3.2 4 5.3 5.5 4.9 3.1 10.3 5.4 14.7 9.3 0.9 1 1.6 2 1 0 -0.7 -2.6 -1 -5.4 -3 -7.3 -2.8 -3 -6.2 -5.6 -10.2 -6.4 -0.3 -4.2 -2.3 -8 -4.1 -11.6 -2 -3.5 -4.1 -7.2 -7.5 -9.4 0 -6.1 0 -12.5 -2.6 -18.2 -0.8 -1.4 -2 -3.1 -3.8 -3.2"
android:fillColor="#CF1126" />
<path
android:pathData="M499.7 306.6c-2 0.6 -1.6 3.2 -1 4.7a54 54 0 0 1 1 13.2c3.9 3 6.2 7.4 8.4 11.6 1.4 2.8 2.6 5.8 3.1 8.9 3.1 1 5.8 3 8.2 5 -1 -2.8 -3 -5 -4.5 -7.7s-3 -5.6 -3.7 -8.7c-3 -3.1 -4.6 -7.6 -4 -12 0.2 -4.7 -1.3 -9.6 -4.5 -13.2 -0.8 -0.8 -1.8 -1.7 -3 -1.8"
android:fillColor="#CF1126" />
<path
android:pathData="M509.2 308c-1.2 0.2 -1.8 1.2 -2.4 2.1 -0.3 0.9 0.8 1.8 1 2.8a21.8 21.8 0 0 1 1.4 10.4c-0.1 2.5 0.8 5 2 7a3.9 3.9 0 0 1 3.5 -2.8c0.5 0 1.4 0.2 1 -0.7 -0.4 -4.8 -1.1 -9.6 -2.8 -14a9.6 9.6 0 0 0 -2.8 -4.5c-0.2 -0.2 -0.6 -0.4 -1 -0.3z"
android:fillColor="#CF1126" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="1440">
<path
android:pathData="M512 469.9c-2.5 -0.4 -5.3 2.1 -4.3 4.7 1.8 2.6 5 4 7.8 5.2a54.2 54.2 0 0 0 23.2 3.6 49.6 49.6 0 0 0 17 -3c3 -1 6.8 -2 8 -5.4 1.3 -2.1 -1 -4.3 -3.1 -3.9 -3 0.7 -6 2 -9 2.9a57.7 57.7 0 0 1 -20.3 2 54 54 0 0 1 -14.4 -4.2c-1.6 -0.7 -3.1 -1.7 -4.9 -1.9"
android:fillColor="#CF1126" />
<path
android:pathData="M514.8 459.5c-2.5 -0.4 -4.7 2.6 -3.7 5 2 2.8 5.3 4.3 8.4 5.6a42.4 42.4 0 0 0 17 2.9h1.5a37.6 37.6 0 0 0 14.4 -2.8c2.7 -1.1 6.1 -2.2 7.3 -5.2 0.9 -1.7 0.2 -4.1 -2 -4.3 -1.8 0 -3.5 1.2 -5.3 1.7a44.3 44.3 0 0 1 -20.6 3.2c-4.4 -0.5 -8.5 -2.1 -12.5 -4 -1.5 -0.7 -2.8 -1.8 -4.5 -2z"
android:fillColor="#CF1126" />
<path
android:pathData="M518.3 449.6c-2.2 -0.3 -3.7 2.2 -3.3 4.1 0.3 1.8 1.8 3 3.1 4a30 30 0 0 0 18.6 5.3h1.6a28 28 0 0 0 12 -2.8c2.5 -1 5.4 -2.3 6.3 -5.2 0.4 -1.3 0.6 -3.2 -0.9 -4 -1.6 -0.8 -3.1 0.5 -4.5 1a34 34 0 0 1 -15.5 3.9 27 27 0 0 1 -13.1 -4c-1.5 -0.7 -2.7 -2 -4.3 -2.3"
android:fillColor="#CF1126" />
<path
android:pathData="M481.5 302.7c-3.2 3.3 -0.7 9.3 -1 13.5 1.8 13.2 3.9 26.5 8.8 39 6 12 18.8 18.5 26.5 29.2 2.8 5.1 1.8 11.3 2.4 17 0.4 15.3 0.3 30.7 0 46 7 3.6 14.5 7 22.5 5.7 4.7 -1.1 13.5 -1.8 14.5 -6.5l-1 -79.5c-2.7 -8.1 -11 -12.3 -17.1 -17.5a155.5 155.5 0 0 1 -14.2 -16.1c-2.6 -4.5 -12.9 -6 -9.2 1.6 2.2 6.7 7.7 11.6 9.1 18.6 0.3 3.9 5 11 1 13.2a24.5 24.5 0 0 0 -10.7 -10c-4.4 -3.3 -11.7 -4.7 -13.3 -10.5a42.9 42.9 0 0 0 -11 -22c1.5 -7.4 0 -16.7 -6.4 -21.5z"
android:fillColor="#CF1126" />
<path
android:pathData="M491.4 304.2c-3 0.5 -2.8 4.2 -1.5 6.2a27.2 27.2 0 0 1 1.1 13.4 44.1 44.1 0 0 1 10.6 21.7c0 3 3.2 4 5.3 5.5 4.9 3.1 10.3 5.4 14.7 9.3 0.9 1 1.6 2 1 0 -0.7 -2.6 -1 -5.4 -3 -7.3 -2.8 -3 -6.2 -5.6 -10.2 -6.4 -0.3 -4.2 -2.3 -8 -4.1 -11.6 -2 -3.5 -4.1 -7.2 -7.5 -9.4 0 -6.1 0 -12.5 -2.6 -18.2 -0.8 -1.4 -2 -3.1 -3.8 -3.2"
android:fillColor="#CF1126" />
<path
android:pathData="M499.7 306.6c-2 0.6 -1.6 3.2 -1 4.7a54 54 0 0 1 1 13.2c3.9 3 6.2 7.4 8.4 11.6 1.4 2.8 2.6 5.8 3.1 8.9 3.1 1 5.8 3 8.2 5 -1 -2.8 -3 -5 -4.5 -7.7s-3 -5.6 -3.7 -8.7c-3 -3.1 -4.6 -7.6 -4 -12 0.2 -4.7 -1.3 -9.6 -4.5 -13.2 -0.8 -0.8 -1.8 -1.7 -3 -1.8"
android:fillColor="#CF1126" />
<path
android:pathData="M509.2 308c-1.2 0.2 -1.8 1.2 -2.4 2.1 -0.3 0.9 0.8 1.8 1 2.8a21.8 21.8 0 0 1 1.4 10.4c-0.1 2.5 0.8 5 2 7a3.9 3.9 0 0 1 3.5 -2.8c0.5 0 1.4 0.2 1 -0.7 -0.4 -4.8 -1.1 -9.6 -2.8 -14a9.6 9.6 0 0 0 -2.8 -4.5c-0.2 -0.2 -0.6 -0.4 -1 -0.3z"
android:fillColor="#CF1126" />
</group>
<path
android:pathData="M715.7 476a35.6 35.6 0 0 1 -29.9 -24c0.3 -2.2 3 1.2 4.3 1.5a19 19 0 0 0 8 2.6c3.5 1.5 5.7 5 9.1 6.9 1.6 1.2 7.2 3.6 6.1 -0.3 -1.3 -2 -2.2 -4.6 -1 -7 1.8 -4.1 4.7 -7.7 7.7 -11.2 2.1 -0.7 3.6 3.6 5.1 5 2.1 3.3 4.7 7.3 3.4 11.3 -1.2 1.5 -2 6 1.3 4.6 4 -1.8 7.3 -4.8 10.6 -7.6 3 -2 6.7 -2.1 9.7 -4 1.5 -0.3 4.4 -3.1 5 -1.6a44.9 44.9 0 0 1 -7.4 12.3 32.1 32.1 0 0 1 -18.8 10.9c-4.4 0.8 -8.8 1 -13.2 0.6"
android:fillColor="#CF1126" />
<path
android:pathData="M731.5 460.2c0.3 -2.7 -0.3 -5.4 -1.7 -8 -2.1 -4.2 -5 -8 -8 -11.9 -2.8 -1.6 -4.3 3.7 -6.1 5.2 -2.9 4.3 -6.5 8.7 -6.7 14 -1.6 2.5 -4.6 -2 -5.9 -3.5a19 19 0 0 1 -4 -12 50.8 50.8 0 0 1 3.6 -20.6c2 -5.6 5.1 -11 4.8 -17 0.2 -4.7 -0.7 -9.7 -4.4 -12.8 -3.6 -2.8 2.3 -3.4 4.1 -2 3.2 0.3 4.9 5.5 7.8 4.2 1.1 -2.7 1.4 -6 3.8 -8.1 2.3 -3.2 4.7 1.3 5.5 3.5 1.7 1.8 0 6.5 2.6 6.6 3.2 -2.3 5.5 -6 9.6 -6.9 1.7 -1 4.5 0 2.3 1.8 -3 2.9 -5.6 6.4 -6.2 10.7 -0.9 5.3 0.4 10.7 2.7 15.4 4.5 9.4 8 20 5.7 30.5 -1 4.6 -4.2 8.6 -8 11.3 -0.5 0.3 -1.3 0.3 -1.5 -0.4"
android:fillColor="#CF1126" />
<path
android:pathData="M726.7 389.6a21.2 21.2 0 0 0 -5.6 -7c-2.4 0 -3.9 3 -5.5 4.6 -1.1 2.1 -2.5 5.6 -5.3 2.9 -4.5 -2.6 -5.2 -8.3 -5.2 -13 -0.3 -7.6 2.8 -14.7 5.5 -21.6 1.7 -4.3 1.3 -9.2 0.2 -13.6 -1.3 -5 -5.4 -8.6 -8.5 -12.6 0.2 -1.5 4.2 -0.7 5.7 -0.4 3.4 0.9 5.4 3.8 7.9 6 1.8 -0.6 1 -4.2 1.9 -5.9 0 -2.4 3.2 -5.5 4.5 -2.1 2 2.2 0 6.5 2.5 7.8 2.4 -0.9 3.6 -3.5 5.8 -4.7a8 8 0 0 1 7.8 -0.5c0.9 2.2 -2.6 4 -3.6 6a20.4 20.4 0 0 0 -3.8 18c1.4 5 3.8 9.5 4.7 14.5a40.1 40.1 0 0 1 -0.5 17.2c-0.9 3.4 -3.8 5.6 -6.8 7 -0.8 -0.7 -1.2 -1.7 -1.7 -2.6"
android:fillColor="#CF1126" />
<path
android:pathData="M711.6 326.9c-3.4 -2.5 -4.5 -4.8 -4.5 -9.5 0 -2.3 0.5 -3.6 2 -5.8 2.4 -3.2 2 -4.2 -1.3 -3.3 -5.3 1.5 -7.8 0.2 -8 -4.3 0 -2.2 0.4 -3.1 3.3 -6.7 2.4 -2.8 3.3 -4.3 2.8 -4.8 -0.5 -0.4 -3.3 2 -9 7.8a124 124 0 0 1 -11.4 10.6c-9.8 6.6 -19.2 7.6 -23.5 2.5 -2.2 -2.6 -2.1 -4 0.4 -5.6a27.4 27.4 0 0 0 4.4 -3.7 86 86 0 0 1 16.1 -11.6c3.6 -1.8 4.4 -3 2.1 -3 -3 0 -12.5 6.2 -19.8 12.8 -2.1 2 -5.2 4.2 -6.8 5a25.4 25.4 0 0 1 -13.9 1c-2.2 -0.7 -6.3 -4.5 -6.3 -5.9 0 -0.3 1 -1.1 2 -1.8a30 30 0 0 0 4.6 -3.2c5.8 -5 16.8 -10.3 25.5 -12.2 2.8 -0.5 1.7 -2 -1.4 -1.8a56 56 0 0 0 -25 11.7c-8.3 6.9 -20.8 6.2 -24.8 -1.3 -0.7 -1.3 -1.2 -2.5 -1 -2.7a92.8 92.8 0 0 0 20.4 -7.8 51.5 51.5 0 0 1 18.1 -6.5c2.8 -0.5 3 -1.9 0.3 -2.2 -3.6 -0.4 -9 1.4 -18.5 6 -12.3 6.1 -15.8 7.2 -22.2 6.8 -6 -0.4 -9.3 -1.9 -14 -6.4 -3.2 -3 -7.6 -10.5 -6.8 -11.4a63.5 63.5 0 0 0 15.8 1.3c8.3 0 10.6 -0.2 15 -1.5a84.3 84.3 0 0 0 24 -12.1 57.5 57.5 0 0 1 36.8 -13.6c12.4 0 20.2 2.8 27.2 9.9 2.4 2.4 4.4 3.9 4.7 3.6 0.3 -0.3 0.6 -4.5 0.7 -9.3 0 0 3.7 -0.4 4.5 0.7 0 7.7 0 8.4 1.2 8.4 0.7 0 1.5 -0.8 2 -2 1 -2.5 5 -6 9.2 -8.2 9 -4.5 24.7 -4.7 37.3 -0.3a62.4 62.4 0 0 1 16.7 9.5 90.2 90.2 0 0 0 24 12c6.8 2 19 2.5 25.1 1a61.9 61.9 0 0 1 5.4 -1c2.3 0 -1.6 7.6 -6.2 12.1 -8.4 8.2 -19.3 8.1 -34.6 -0.1 -9.6 -5.2 -21 -8 -21 -5.2 0 0.6 0.6 1 1.5 1 3.3 0 9.7 2.2 18.7 6.5a53.7 53.7 0 0 0 18.3 6.5c2.3 0 2.4 1.5 0.2 4.7 -2.3 3.4 -6.2 5 -11.7 5 -5.3 0 -8.3 -1.1 -13 -5 -8 -6.6 -27.6 -14 -26.9 -10 0.2 0.7 1.1 1.2 3.2 1.5a56 56 0 0 1 23.1 11l5.9 4.3c1.1 0.6 1.1 0.8 0.2 2.5 -1.4 2.8 -5.2 4.9 -9.2 5.3 -5.2 0.6 -9.8 -1 -14.5 -5 -10 -8.3 -19.3 -14.3 -22.3 -14.3 -2.5 0 -1.4 1.4 3 3.7a79.7 79.7 0 0 1 15.8 11c2 1.9 4.3 3.7 5 4.1 1.9 1 1.8 2.4 -0.2 5s-5.4 3.8 -9.7 3.3c-8.6 -0.9 -15.4 -5 -26 -16a70.7 70.7 0 0 0 -8.2 -7.8c-1.4 0 -0.5 1.9 2.2 5 3.4 3.7 4 5.8 2.7 9 -1.1 2.6 -3 3.3 -6.8 2.2 -4 -1 -4.6 0 -2 3.1 3.8 4.9 3.3 10.7 -1.5 14.8a12 12 0 0 1 -3.4 2.3c-0.4 0 -1.4 -1 -2.3 -2.4 -3 -4.6 -5.7 -4.6 -8.7 0a53.6 53.6 0 0 1 -2 3 113.1 113.1 0 0 1 -3 -2.2"
android:fillColor="#CF1126" />
<path
android:pathData="M726.7 233l-5.2 4 -4.6 -3.4v27.8h9.8z"
android:fillColor="#CF1126" />
<path
android:pathData="M694.9 204.3a88.3 88.3 0 0 1 -9 32.3l11.1 -10.3 7.7 9.2 8.4 -9.4 8.5 8 8.2 -8.3 8.5 10 7.4 -8.2 12.6 9c-4.6 -10 -10.7 -18.6 -10 -32.8 -12.1 9 -41 10.6 -53.4 0.4z"
android:fillColor="#CF1126" />
<path
android:pathData="M717 197.6c-4.5 0 -9.2 0.1 -13.4 1a20.1 20.1 0 0 0 -7.8 3c0.3 8.6 41 12.1 51.9 0.2a20 20 0 0 0 -8.2 -3.3c-4 -0.8 -8.6 -0.8 -12.9 -1v7.1H717z"
android:fillColor="#CF1126" />
<path
android:pathData="M724.9 154h-6.3v49.4h6.4z"
android:fillColor="#CF1126" />
<path
android:pathData="M724.9 155.2l-2.4 23.7 24.3 11.9 -12.3 -16.5 16.8 -5.5zm-2.7 -6.1c-3.7 0 -6.4 1.4 -6.4 3s2.7 3 6.4 3 6.4 -1.4 6.4 -3 -2.7 -3 -6.4 -3"
android:fillColor="#CF1126" />
</group>
<path
android:pathData="M249.6 401c2.9 -1 4.5 -2.7 5.6 -6a18 18 0 0 0 1 -3.9c-0.3 -1 -1.6 -1 -2.9 0.2 -1 0.7 -1 1.1 -0.8 2.7 0.7 4 -0.7 5 -8.3 5.8 -0.7 0 -2.9 0 -4.8 -0.3 -3.6 -0.4 -4.8 0 -3.5 1a7 7 0 0 0 2.2 1c2 0.5 9.4 0.2 11.5 -0.6zm15.7 -0.7c0.4 -0.4 1.8 -1 3.2 -1.5 1.8 -0.6 2.8 -1.2 3.5 -2.4 2.2 -3.3 1.8 -6.1 -1.4 -10 -1.8 -2 -2.6 -2 -4 0.4 -1.2 2 -1.2 2 0.6 2.5 1 0.2 1.8 1 2.3 1.8 1.9 3.3 1.3 5.3 -1.5 5.3 -2.6 0 -3.3 0.4 -4 2a8.9 8.9 0 0 0 -0.6 2.1c0 0.7 1 0.6 1.9 -0.2m-5.2 -3.8c0.5 -1.3 0.7 -3.6 0.6 -8.4 0 -3.7 -0.1 -6.8 -0.3 -7 -0.4 -0.3 -2.5 1 -2.8 1.9 -0.1 0.5 0.1 1.5 0.5 2.3 0.7 1.3 0.8 2.5 0.6 7.5 -0.3 6.3 0.1 7.3 1.4 3.7"
android:fillColor="#F7E017" />
<path
android:pathData="M248.1 393.6c0.3 -1.2 0.6 -3.6 0.7 -5.4 0.2 -1.7 0.5 -4 0.8 -5 0.8 -2.4 0 -3 -2 -1.6l-1.4 1 0.3 3.5c0.3 3.2 -0.2 9.1 -1 11.4 -0.1 0.7 0.2 0.5 1 -0.4a9.4 9.4 0 0 0 1.6 -3.6zm-10.7 1.7c2.6 -2.2 2.3 -6 2.9 -9 0 -2 1.3 -4.4 0.4 -6.1 -2.4 0.4 -4 2.7 -2.7 5 0.1 2.7 0 5.6 -1.3 8 -1.1 1.5 -4.7 1 -4.5 -1.1 0.9 -3.3 -3 -1.7 -4.6 -0.8 -1.2 0.8 -3.7 0.9 -2.8 -1.2 -0.6 -2.8 -4.1 -1 -6 -1 -1.8 0 -0.2 -3.7 -2.8 -3 -4.8 -0.5 -10.2 0 -14.4 -3 -2.4 -1.1 -2 -4 -0.8 -6 1.6 -2.6 2 -5.9 4.4 -7.9 2.4 -2.3 -2.2 -1.3 -3.3 -0.5 -2.3 1.2 -0.2 4.5 -2 6.3 -1.2 2 -2.7 4.5 -5.2 4.2 -3.8 -0.7 -6 -4.2 -8.6 -6.5 -2.3 -0.5 -1 3.7 0.2 4.6a23.3 23.3 0 0 0 7.9 3.8c2.8 -0.5 2.9 3.2 5.3 3.8 4.4 2 9.3 2.6 14 2.9 2 0.1 0.9 3.5 3.4 2.8 1.4 0.4 4.5 -0.5 4.6 1.1 -2 2.5 2 2.5 3.6 2 2 -0.3 4.4 -1 5 1.6 1.6 1.8 4.6 1.5 6.5 0.5z"
android:fillColor="#F7E017" />
<path
android:pathData="M195 373.7c0.7 -1 1.9 -3 2.6 -4.5a17.3 17.3 0 0 1 2.1 -3.7c1.3 -1.4 0.6 -2.2 -1.5 -1.7 -1 0.2 -1.5 0.6 -1.6 1.5 -0.6 3 -1.7 6.1 -2.7 7.5 -1.8 2.6 -1.8 2.7 -1 2.7 0.3 0 1.2 -0.8 2 -1.8zM168.2 357c-2 0 -2 1.3 -0.1 2 0.9 0.3 1.7 1 2.3 2.4 2 3.7 3 4.4 8 4.8l3.3 0.3 0.1 2c0.1 1 0.4 2 0.6 2 0.3 0 1.5 -0.6 2.8 -1.2 2.3 -1.2 4.6 -4 4.6 -5.7 0 -1.1 -2 -2.4 -3.6 -2.4a7 7 0 0 0 -3.4 1.5c-3.6 2.6 -7.4 2 -9.5 -1.3 -1.7 -2.8 -3.5 -4.4 -5.1 -4.4m17.4 7c1 0 1.2 0.7 0.7 2 -0.4 1 -1.6 1 -2 0 -0.3 -1 0.3 -2 1.3 -2m134.9 -4.4c-1.3 0 -1.7 0.3 -2.5 1.6 -1.4 2 -1.5 6.3 -0.2 7.8 0.7 1 0.8 1 2.5 0.3 2.3 -1 2.7 -0.9 2.6 0.3 0 3.2 -4.5 9.2 -9.2 12.5a8.5 8.5 0 0 0 -2.5 2.1c-0.4 1 1.4 0.7 3.5 -0.4 3 -1.5 6.8 -5.4 8.4 -8.5 1.2 -2.5 1.4 -3.3 1.6 -7.6 0 -4 0 -5.1 -0.7 -6.5 -0.7 -1.5 -1 -1.6 -2.9 -1.6zm0.2 2.8c1 0 1.1 0.2 1.2 1.6 0.1 1.2 0 1.9 -0.7 2.5 -1 0.8 -1 0.8 -1.8 -0.4 -1 -1.7 -0.4 -3.7 1.3 -3.7m-21.6 30.3a16 16 0 0 0 8.2 -7.7 20.6 20.6 0 0 0 1.3 -3.3c0 -0.6 -2 -1.5 -3.3 -1.5s-1.4 -0.9 -1 -3.2c0.6 -2.3 0 -5.1 -1 -5.1 -0.4 0 -1 0.5 -1.4 1.1 -0.7 1 -0.7 1.5 -0.2 3 0.7 2 0.1 3.7 -1.8 5 -1 0.7 -1.5 1.5 -1.5 2.2 0 0.6 0.1 1.1 0.2 1.1l2.3 -1.1 2 -1.2 1.3 1c0.6 0.5 1.2 1.4 1.2 1.9 0 2.5 -7.2 6.8 -12.2 7.2 -2.6 0.2 -3 0 -4 -0.8 -0.7 -0.8 -1 -1.4 -0.8 -2.3l0.6 -2.7c0.5 -2.2 -0.5 -1.9 -2.1 0.7 -1.4 2 -1.8 4.4 -1 5.6 0.6 1 4.7 1.9 7.6 1.7 1.8 -0.1 3.7 -0.6 5.6 -1.6m27.7 -15.5c2.6 -2.6 3.8 -5.8 3.8 -10.7v-3.7l2.1 -1c2.8 -1.3 5.5 -4 5.5 -5.4 0 -1.6 -0.7 -1.5 -1.9 0.2 -0.9 1.2 -2 1.9 -6.4 3.9 -1.1 0.5 -1.2 0.8 -1.4 5.4 -0.3 5.3 -1 7.2 -4 10.9 -1.8 2.1 -1.9 2.4 -0.6 2.4 0.5 0 1.8 -0.8 3 -2zm-28.5 -3c0.3 -0.7 -1.2 -1.2 -1.8 -0.6 -0.3 0.3 -0.3 0.7 -0.1 1 0.4 0.7 1.7 0.5 2 -0.3zm39.3 -10.1c0.3 -0.8 -1.2 -1.3 -1.8 -0.7 -0.3 0.3 -0.3 0.8 -0.1 1 0.4 0.7 1.7 0.5 2 -0.3zm-47.3 -27.6c-1 0.5 -1.5 1.6 -2.2 2.5 -0.5 0.3 -0.1 0.6 0.2 1 1.8 1.9 2.5 4.5 3.4 7 0.8 2.8 1.9 5.9 1 8.9 -0.4 1.1 -1.3 2.3 -2.6 2 -2.2 -0.2 -4.3 -0.7 -6.4 -0.7 -2 0 -3.5 1.8 -5.4 1.6 -1.3 0.1 -1.2 -2.5 -2.4 -1.8 -0.6 1.4 -0.3 2.9 -0.4 4.4 0.3 0.2 0.9 0 1.2 0h4c0.2 1.4 0.1 3 1.1 4 1.4 0.5 2.9 0 4.1 -0.5 1.4 -0.6 1.6 -2.3 2 -3.5 0.4 -1.4 2.2 -1 3.3 -1.6a6.1 6.1 0 0 0 4.1 -6.1c-0.1 -4.1 -1.7 -8 -2.9 -11.8 -0.6 -1.7 -1 -3.4 -1.7 -5.1 0 -0.1 -0.2 -0.3 -0.4 -0.2zm-6.4 23.3c1.4 0 2 1.7 1.8 2.9 -0.6 1.6 -2.6 0.6 -3 -0.6 -0.7 -1 -0.2 -2.4 1.2 -2.3"
android:fillColor="#F7E017" />
<path
android:pathData="M230.4 346.5a3.6 3.6 0 0 0 -2.1 0.7c-3.8 2.7 -4.8 5.8 -2.2 7 1.9 0.9 1.4 2 -1.6 3.5 -4.2 2 -8 1.8 -15 -1.1 -1.8 -0.8 -2.3 -0.5 -1.9 1.1 0.4 1.6 1.9 2.4 5.4 3.3 3.9 0.8 8.5 0.6 11.5 -0.7a14.9 14.9 0 0 0 4.6 -3.6l2.3 -2.5 2.7 0.3c3.3 0.4 3.4 0.5 3.4 2 0 1.3 0 1.4 3.1 1.6l5 0.3c1.4 0 2.2 0.3 2.6 1 0.6 0.7 1 0.8 6 0.3 4.6 -0.4 5.6 -0.4 7.7 0.4 1.5 0.5 3.1 0.7 4.4 0.5 3.6 -0.4 8.5 -3.3 9.2 -5.5 0.1 -0.2 1.4 -0.7 2.9 -1 3.6 -0.7 3.8 -1.5 0.4 -1.9a24.3 24.3 0 0 1 -4.9 -1.2 13 13 0 0 0 -3.7 -0.9c-1.8 0 -3.6 1.1 -3.6 2.3 0 0.8 0.3 0.9 2.5 0.7 2 -0.3 2.6 -0.2 3.6 0.7 0.8 0.6 1.2 1.2 1 1.4 -0.4 0.8 -4.6 2.7 -6.5 3a5 5 0 0 1 -3.2 -0.4c-1.7 -0.8 -4.1 -1 -4.6 -0.3 -0.1 0.4 -0.7 0.2 -1.4 -0.5l-1 -1 -2.6 1c-2.6 1 -3.5 1 -3.5 -0.2 0 -0.6 -0.7 -0.6 -4.5 -0.4 -4.2 0.3 -4.6 0.2 -5.4 -0.6 -0.7 -0.8 -0.7 -1.1 -0.2 -2 0.5 -0.7 0.5 -1 0 -1.5 -0.4 -0.4 -1 -0.4 -2.6 0 -4.1 1.1 -5.3 0.5 -5.3 -2.7 0 -2 -1.1 -3.1 -2.5 -3.1m-1 3c0.2 0 0.3 0 0.6 0.4 0.4 0.3 0.6 1 0.4 1.4 -0.3 1 -2.1 0.9 -2.5 -0.1 -0.1 -0.5 0 -1 0.6 -1.4z"
android:fillColor="#F7E017" />
<path
android:pathData="M222 352.4c2.4 -1.6 2.4 -1.4 2.7 -5.9 0.3 -3 0.3 -3.3 -0.6 -3.3 -1.2 0 -1.9 1.3 -1.9 3.9 0 1.6 -0.2 2.4 -1 3.3 -2.2 2 -7.4 1.1 -8 -1.5 -0.2 -0.9 0 -1.7 1.1 -3.2 2.3 -3.2 1.8 -4 -1 -1.6 -2 1.7 -2.3 1.7 -1.9 0.3 0.3 -1.3 -0.4 -1.9 -2 -1.5 -0.7 0.2 -1.1 0.7 -1.3 1.7 -0.2 1 -0.7 1.5 -1.4 1.6 -1.3 0.4 -3.4 -0.8 -3.4 -1.9 0 -0.7 3.2 -4.6 7.3 -9a19 19 0 0 0 2.9 -3.3c0 -0.2 -0.9 -0.4 -1.9 -0.4 -1.5 0 -1.8 0.2 -1.8 0.9 0 0.4 -2.1 3.2 -4.7 6 -5.3 6 -5.7 7.3 -3 8.8a6.4 6.4 0 0 0 6.9 -0.2l1.7 -1.2v2.2c0 2.7 0.5 3.6 2.7 4.8a8.5 8.5 0 0 0 8.5 -0.5zm111.3 -36.9c-2 1.2 -0.5 3.7 -0.2 5.3 -0.8 2.2 -3.6 2.8 -5.7 3.3 -3 0.4 -5.1 3 -6.2 5.6 -0.6 1.7 -2.1 4.3 -3.7 1.7 -1.4 -1.4 -4 -2.5 -5.6 -0.9 -1.3 1.2 -1.6 3 -2.1 4.6 -0.7 -1.2 -1 -3 -2.6 -3.4 -2.5 0.3 -1.6 3.5 -0.5 4.8 1.1 1.5 2.1 3.5 1 5.3 -0.8 2.2 -4 3.6 -6 1.8 -1.7 -1 -0.5 -4.3 -2.2 -4.5 -0.9 0.7 -1 4.1 -2.3 2.2 -1 -1.6 -0.5 -3.8 -1.7 -5.2 -1.4 0.2 -2.6 2.6 -2.1 4a23 23 0 0 1 3.4 8.8c0.5 1.3 0 3.7 1.1 4.2 0.8 -2 0 -4.2 0.7 -6.2 1.8 -0.2 4 0.6 5.9 0.2 2.8 -0.4 5 -2.7 5.9 -5.2 0.3 -2 0 -3.8 -0.1 -5.7 2.2 0.3 4.5 0.3 6.6 1 1 1.6 -0.3 3.9 -0.6 5.6 -1.1 3.6 -4 6.2 -6.7 8.6 -1.1 0.7 -1.3 2.5 0.4 1.6 3.7 -1.6 6.4 -5 8 -8.6 1.2 -2.7 0.2 -5.8 1 -8.6 1.1 -2.2 3.8 -1.7 5.8 -1.7 2 -0.1 3.8 -2.5 3 -4.5 -0.6 -2.3 1.9 -3.4 3.5 -4.2 2.2 -1.1 4 -3.4 3.8 -6 -0.1 -1.3 0 -3.8 -1.8 -3.9m-7.9 13.3c2.4 0.7 -0.4 5.2 -1.7 2.3 -0.3 -1 0.6 -2.3 1.7 -2.3m-11 3.3c3.1 -0.2 2 4.3 -0.6 2.3 -1.4 -0.7 -1 -2.4 0.6 -2.3m-111.7 17.4c0.1 -0.5 -0.1 -0.8 -0.5 -0.8 -0.9 0 -1.4 0.8 -1 1.4 0.4 0.7 1.4 0.3 1.5 -0.6m36.2 -4c0 -0.7 -0.3 -1 -0.8 -0.8 -1.2 0.2 -1.4 1.7 -0.2 1.7 0.7 0 1 -0.3 1 -1zm-44.7 -21.7c-1.5 -0.3 -2.4 0.9 -2.9 2 -1 1.9 -2.4 3.7 -4.3 4.7 -1.4 0.4 -3 -0.2 -4.1 -0.9 -1.5 -0.7 -1.1 -2.4 -1.8 -3.6 -1 -0.8 -2.8 0.3 -2.8 1.6 -0.1 1.7 1.5 2.7 2.8 3.3 1.1 0.7 2.7 1.1 3.2 2.5 0 1.2 0.4 2.5 1.9 2 1.6 0 2 2 1.3 3.2a6.8 6.8 0 0 0 -0.8 4.3c0.8 0.7 1.6 -1 2.2 -1.6l1.1 -1.5c2.8 0.2 5.7 0.5 8.5 0.4 2 0 3.8 -1.3 5 -2.7 1.9 -2 3.4 -4.2 5.5 -5.8 1.5 -0.4 0.7 -3.2 -0.9 -2.4 -1.4 0.6 -1.8 2.1 -2.8 3.1 -1.6 2 -3.3 4 -5.4 5.6 -1.5 0.6 -3.2 0.4 -4.8 0 -0.6 -0.5 1.3 -1 1.6 -1.6 0.9 -1 2 -1.8 2.4 -3 -0.5 -1 -2 -1.1 -3 -1.1 -2.7 0.3 -4.7 2.5 -7.3 2.7 -2 0 -1 -2.1 0 -2.8 1.7 -2.1 3.6 -4.1 5.5 -6.2 0.5 -0.6 2.4 -1.2 1.2 -2 -0.4 -0.2 -0.9 -0.2 -1.3 -0.2m1.3 10.6c1.3 0.7 -0.9 2 -1.8 1.8 -1.2 0.3 -1.2 -0.9 -0.2 -1.1 0.6 -0.3 1.3 -0.7 2 -0.7m-4.1 2.8c0.7 0 2.3 0.7 0.8 1.1 -1 0.8 -2.2 -0.8 -0.8 -1.1"
android:fillColor="#F7E017" />
<path
android:pathData="M223.4 339c0 -1 -1.8 -0.9 -2 0.2 -0.1 0.6 0 0.8 1 0.7 0.5 -0.1 1 -0.5 1 -0.9m79.7 -7c0.2 -1 -1.2 -1.6 -1.9 -1 -0.7 0.8 0 2.1 1 2 0.4 -0.2 0.8 -0.6 0.9 -1m-124 -9.8c1.2 -1 1.2 -1.1 0.7 -3.5 -0.8 -3.3 -0.7 -3.7 0.5 -4 1.6 -0.4 5.7 1.8 6.6 3.5 0.7 1.4 0.7 1.4 -0.5 2.5 -1.3 1.2 -1.3 2.6 0 2.6 1 0 4 -2.8 4 -3.8 0 -1.3 -3.3 -4.6 -5.8 -5.8a11.4 11.4 0 0 0 -5 -1c-3.3 0 -3.7 0.7 -2.9 4.5 1 4.4 -0.3 5 -4 1.7a11.1 11.1 0 0 1 -3.6 -9.2c0 -4.4 1.7 -6.6 5.4 -7 2.6 -0.4 2.5 -1 0 -1.4 -3.9 -0.6 -7 2 -8.3 6.4 -1.3 5 1.8 11.1 7.2 14.2 2.9 1.7 4 1.7 5.7 0.3m148.5 -5.5c0.3 -0.3 0.5 -1 0.5 -1.5s0.6 -1.7 1.2 -2.5a7.2 7.2 0 0 0 1.2 -2c0 -0.9 -1.5 -0.8 -2.6 0 -1.2 1 -2 1 -2 0.1 0 -0.2 0.5 -0.7 1.2 -1 1.7 -0.8 1.8 -1.6 0.4 -2.3 -1.9 -0.8 -3.7 0.7 -3.9 3.2 -0.1 1.7 0 2 1.3 2.7 1.2 0.7 1.4 1.1 1.2 2 -0.3 1.8 0.4 2.4 1.5 1.3m14 -1.6c1 -0.9 1.8 -2 1.8 -2.3 0 -0.3 0.9 -1.2 2 -2 3 -2.2 3.7 -4.4 2.3 -7.9 -0.5 -1.3 -2.2 -3.2 -5.8 -6.5a37 37 0 0 0 -5.7 -4.6c-1 0 -0.9 3.7 0.1 4 1.9 0.6 3 1.4 5.8 4 3.4 3 4.9 5.8 4 7.3 -0.7 1.5 -1.8 1 -4.8 -2 -1.5 -1.7 -3 -3 -3.3 -3 -0.4 0 -0.6 0.5 -0.6 1.4 0 1 0.5 2 2 3.7 2.5 2.8 2.8 4.4 1 5.9 -0.8 0.5 -1.4 1 -1.6 1a35.7 35.7 0 0 0 -9.5 -10.6c-0.5 0 -0.7 0.4 -0.7 1.5 0 1.3 0.3 1.8 1.3 2.3 1.2 0.6 4.4 3.8 7.5 7.6 0.9 1 1.8 2 2 2 0.1 0 1.1 -0.8 2.1 -1.8zm6.2 -17.8c-0.4 -1.3 -9 -10 -9.8 -10 -0.5 0 -0.6 0.5 -0.5 1.9 0 1.7 0.3 2 1.4 2.2 0.8 0.3 3 2 5 4s3.8 3.4 4 3.3zm-51 98.7a1.3 1.2 0 1 1 -2.4 0 1.3 1.2 0 1 1 2.5 0zm4.6 -1.5a1.3 1.2 0 1 1 -2.6 0 1.3 1.2 0 1 1 2.6 0"
android:fillColor="#F7E017" />
</vector>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#21468B" />
<path
android:pathData="M0 0h512v341.3H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 0h512v170.7H0z"
android:fillColor="#AE1C28" />
</vector>
@@ -0,0 +1,88 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#229E45" />
<path
android:pathData="M261.4 405.4l229.8 -149.2L260 106.6l-230.7 150z"
android:fillType="evenOdd"
android:fillColor="#F8E509" />
<path
android:pathData="M361.5 256a97.2 97.2 0 1 1 -194.3 -0.2 97.2 97.2 0 0 1 194.3 0.2"
android:fillType="evenOdd"
android:fillColor="#2B49A3" />
<path
android:pathData="M232.3 314.2l-3 -1.8 -3.1 1.6 0.7 -3.5 -2.4 -2.5 3.4 -0.4 1.6 -3.2 1.5 3.3 3.4 0.6 -2.6 2.4m65.7 20l-3 -1.8 -3.2 1.6 0.7 -3.5 -2.4 -2.5 3.5 -0.4 1.6 -3.2 1.4 3.3 3.4 0.6 -2.5 2.4m-27.6 -22.9l-2.6 -1.5 -2.7 1.3 0.6 -3 -2 -2.2 2.9 -0.3 1.4 -2.7 1.2 2.8 3 0.5 -2.2 2m66.2 -6.4l-2.6 -1.5 -2.6 1.3 0.6 -2.9 -2 -2.1 2.9 -0.4 1.3 -2.6 1.3 2.7 2.9 0.5 -2.2 2m-66.6 -16.7l-3 -1.8 -3.1 1.6 0.7 -3.5 -2.4 -2.5 3.4 -0.4 1.6 -3.1 1.5 3.2 3.4 0.6 -2.6 2.4M188 245l-3 -1.8 -3 1.6 0.6 -3.5 -2.4 -2.5 3.5 -0.4 1.6 -3.2 1.4 3.3 3.4 0.6 -2.5 2.4m10.1 43.5l-3 -1.7 -3.1 1.5 0.7 -3.4 -2.4 -2.6 3.4 -0.4 1.6 -3 1.5 3.1 3.4 0.7 -2.6 2.3m100.6 -51.3l-2.6 -1.5 -2.8 1.3 0.6 -3 -2 -2.3 3 -0.3 1.4 -2.8 1.3 2.9 3 0.5 -2.3 2.1m-5 29.2L290 255l-2.1 1 0.4 -2.4 -1.6 -1.7 2.4 -0.3 1.1 -2.2 1 2.3 2.4 0.4 -1.8 1.6m-108.4 38.5l-2 -1.2 -2.1 1 0.4 -2.3 -1.6 -1.7 2.4 -0.2 1 -2 1 2 2.3 0.5 -1.7 1.6m152.6 11.5l-1.7 -0.8 -1.7 0.7 0.4 -1.7 -1.3 -1.3 1.9 -0.2 0.9 -1.5 0.7 1.6 1.9 0.3 -1.4 1.2"
android:fillType="evenOdd"
android:fillColor="#FFFFEF" />
<path
android:pathData="M183.5 292.3l-2 -1.2 -2.1 1 0.5 -2.3 -1.7 -1.7 2.3 -0.2 1.1 -2 1 2 2.3 0.5 -1.7 1.6"
android:fillType="evenOdd"
android:fillColor="#FFFFEF" />
<path
android:pathData="M183.5 292.3l-2 -1.2 -2.1 1 0.5 -2.3 -1.7 -1.7 2.3 -0.2 1.1 -2 1 2 2.3 0.5 -1.7 1.6m32.2 2.3l-2 -1.2 -2 1 0.4 -2.3 -1.6 -1.7 2.3 -0.2 1 -2.1 1 2.1 2.3 0.5 -1.7 1.6m-3.7 13l-2 -1.2 -2 1 0.4 -2.3 -1.6 -1.7 2.3 -0.3 1 -2 1 2 2.3 0.5 -1.7 1.6m66.7 -17l-2 -1.2 -2.1 1 0.4 -2.3 -1.6 -1.7 2.3 -0.2 1.1 -2.1 1 2.1 2.2 0.4 -1.7 1.6m-19.1 2.4l-2 -1.2 -2.1 1 0.5 -2.3 -1.6 -1.7 2.3 -0.2 1 -2.1 1 2.1 2.3 0.4 -1.7 1.6m-52.5 -4.4l-1.2 -0.7 -1.3 0.6 0.2 -1.5 -1 -1 1.5 -0.2 0.7 -1.3 0.5 1.4 1.5 0.2 -1 1M333.2 310l-2 -1.1 -2.1 1 0.5 -2.3 -1.6 -1.7 2.3 -0.3 1 -2 1 2 2.3 0.5 -1.7 1.6m-16 4.4l-1.6 -1 -1.7 1 0.4 -2 -1.4 -1.4 2 -0.2 0.8 -1.7 0.8 1.7 2 0.4 -1.5 1.3m8 1.8l-1.6 -1 -1.6 0.9 0.3 -1.8 -1.2 -1.3 1.8 -0.2 0.8 -1.6 0.7 1.6 1.8 0.3 -1.3 1.3m22.2 -17.4l-1.5 -0.9 -1.6 0.8 0.4 -1.7 -1.2 -1.3 1.7 -0.2 0.8 -1.5 0.7 1.6 1.7 0.3 -1.3 1.2M317 322.9l-2 -1.1 -2 1 0.5 -2.2 -1.6 -1.5 2.2 -0.3 1.1 -1.9 1 2 2.1 0.4 -1.6 1.4m0.4 10.9l-1.8 -1 -1.8 0.9 0.4 -2.2 -1.4 -1.5 2 -0.3 1 -1.9 0.8 2 2 0.4 -1.5 1.4M302.3 312l-1.5 -0.9 -1.6 0.8 0.4 -1.8 -1.2 -1.2 1.7 -0.2 0.8 -1.6 0.7 1.6 1.7 0.3 -1.3 1.2m-13.5 1.8l-1.5 -0.9 -1.6 0.8 0.4 -1.8 -1.2 -1.2 1.7 -0.2 0.8 -1.6 0.7 1.6 1.7 0.3 -1.2 1.2M265 291.4l-1.5 -0.9 -1.6 0.8 0.4 -1.7 -1.2 -1.3 1.7 -0.2 0.8 -1.5 0.7 1.6 1.7 0.3 -1.3 1.1m2.9 43.5l-1.3 -0.7 -1.3 0.7 0.3 -1.5 -1 -1 1.4 -0.3 0.7 -1.3 0.6 1.4 1.5 0.2 -1.1 1m-35.2 -66l-3 -1.7 -3.1 1.5 0.7 -3.4 -2.4 -2.6 3.4 -0.4 1.6 -3.1 1.5 3.2 3.4 0.6 -2.6 2.4"
android:fillType="evenOdd"
android:fillColor="#FFFFEF" />
<path
android:pathData="M355.1 291a95 95 0 0 0 4.4 -15.1c-51.6 -45.4 -109.2 -68.7 -182 -63.9a95 95 0 0 0 -6.4 15.9 233 233 0 0 1 184 63z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M331.9 265.4l1.8 1a2.6 2.6 0 0 0 -0.2 1.8c0.1 0.4 0.5 0.9 1 1.2 0.6 0.4 1.1 0.6 1.6 0.6 0.4 0 0.8 -0.3 1 -0.6 0.1 -0.2 0.2 -0.4 0.1 -0.7l-0.3 -0.8 -1.2 -1.3a5.9 5.9 0 0 1 -1.4 -2.3 2.8 2.8 0 0 1 1.6 -3.3 2.9 2.9 0 0 1 1.7 -0.2 5.3 5.3 0 0 1 2 0.9 6 6 0 0 1 2 2.4 3 3 0 0 1 -0.5 2.6l-1.8 -1.1c0.2 -0.5 0.3 -1 0.2 -1.4 -0.1 -0.3 -0.5 -0.7 -1 -1 -0.5 -0.4 -1 -0.5 -1.4 -0.5a0.8 0.8 0 0 0 -0.6 0.3 0.8 0.8 0 0 0 -0.1 0.7c0 0.4 0.5 1 1.2 1.7l1.5 2a3 3 0 0 1 -0.2 3.2 3.1 3.1 0 0 1 -1.4 1.1 3 3 0 0 1 -1.9 0.2 6 6 0 0 1 -2.1 -1 4.6 4.6 0 0 1 -2 -2.5c-0.3 -0.9 -0.2 -1.9 0.4 -3m-8.8 -5.7l2 1a2.6 2.6 0 0 0 -0.2 1.6c0.1 0.5 0.5 1 1 1.3 0.6 0.4 1.1 0.5 1.6 0.4 0.4 0 0.8 -0.2 1 -0.6a1 1 0 0 0 0.1 -0.6c0 -0.3 -0.1 -0.5 -0.4 -0.8l-1.2 -1.3a6 6 0 0 1 -1.5 -2.2 2.8 2.8 0 0 1 0.3 -2.4 2.8 2.8 0 0 1 1.2 -1 3 3 0 0 1 1.7 -0.2c0.6 0 1.2 0.3 2 0.8 1 0.7 1.8 1.4 2 2.3a3 3 0 0 1 -0.3 2.6l-1.9 -1.1c0.3 -0.5 0.3 -1 0.2 -1.3 -0.2 -0.4 -0.5 -0.7 -1 -1a2.4 2.4 0 0 0 -1.5 -0.5 0.8 0.8 0 0 0 -0.6 0.4 0.8 0.8 0 0 0 0 0.7c0 0.3 0.5 0.9 1.2 1.7 0.8 0.7 1.3 1.4 1.6 1.8a3 3 0 0 1 -0.1 3.3 3.2 3.2 0 0 1 -3.2 1.4 6.1 6.1 0 0 1 -2.2 -0.9 4.7 4.7 0 0 1 -2.1 -2.4 4.1 4.1 0 0 1 0.3 -3m-10.8 -3l5.6 -9 6.7 4 -1 1.6 -4.8 -3 -1.3 2 4.6 2.8 -1 1.6 -4.5 -2.8 -1.5 2.5 5 3 -0.9 1.6zm-15.8 -12.9l0.9 -1.6 4 2.2 -1.9 3.7a7.2 7.2 0 0 1 -4.8 -0.6 5.8 5.8 0 0 1 -2.2 -2 4.5 4.5 0 0 1 -0.8 -2.6c0 -1 0.3 -1.9 0.8 -2.8a6.1 6.1 0 0 1 2 -2.3c0.7 -0.6 1.7 -0.9 2.7 -0.9 0.7 0 1.6 0.3 2.5 0.7a5 5 0 0 1 2.3 2.2c0.4 0.8 0.5 1.7 0.3 2.7l-2.1 -0.6a2.2 2.2 0 0 0 -0.2 -1.5 2.5 2.5 0 0 0 -1.2 -1.1 2.9 2.9 0 0 0 -2.4 -0.3c-0.7 0.3 -1.4 1 -2 2a4.8 4.8 0 0 0 -0.5 3c0.2 0.8 0.7 1.4 1.6 1.8l1.3 0.4h1.3l0.6 -1.2zm-68.8 -17l1.6 -10.6 3.2 0.5 0.8 7.5 3 -7 3.1 0.5 -1.5 10.6 -2 -0.3 1.2 -8.3 -3.3 8 -2 -0.3 -0.9 -8.7 -1.2 8.4zm-10.7 -1.3l1 -10.6 7.8 0.7 -0.1 1.8 -5.8 -0.5 -0.2 2.3 5.3 0.5 -0.1 1.8 -5.3 -0.5 -0.3 3 5.9 0.5 -0.2 1.8z"
android:fillColor="#309E3A" />
<path
android:pathData="M181.4 218.8c0 -1 0.2 -2 0.5 -2.7l1 -1.4 1.5 -1a5.8 5.8 0 0 1 2.3 -0.3 5 5 0 0 1 3.7 1.6c1 1 1.3 2.3 1.3 4 0 1.8 -0.6 3.1 -1.5 4a5 5 0 0 1 -3.8 1.4 5 5 0 0 1 -3.7 -1.5 5 5 0 0 1 -1.3 -4z"
android:fillColor="#309E3A" />
<path
android:pathData="M183.6 218.8c0 1.2 0.2 2.2 0.8 2.8 0.5 0.7 1.2 1 2 1a3 3 0 0 0 2.2 -0.9c0.5 -0.6 0.8 -1.5 0.9 -2.7 0 -1.3 -0.2 -2.2 -0.8 -2.8a2.7 2.7 0 0 0 -2 -1c-1 0 -1.7 0.3 -2.2 0.9 -0.6 0.6 -0.9 1.5 -1 2.7z"
android:fillColor="#F7FFFF" />
<path
android:pathData="M194 224.4l0.1 -10.7h4.5c1.2 0 2 0.2 2.5 0.4s1 0.5 1.2 1 0.5 1 0.5 1.7c0 0.8 -0.3 1.4 -0.7 2 -0.5 0.5 -1.2 0.8 -2.2 1 0.5 0.2 0.9 0.5 1.2 0.8l1.2 1.8 1.3 2H201l-1.5 -2.3a16 16 0 0 0 -1.2 -1.6 1.6 1.6 0 0 0 -0.6 -0.4 3.5 3.5 0 0 0 -1 -0.2h-0.5v4.5z"
android:fillColor="#309E3A" />
<path
android:pathData="M196.2 218.2h1.6a8.1 8.1 0 0 0 2 0l0.5 -0.5c0.2 -0.2 0.3 -0.5 0.3 -0.8 0 -0.4 -0.1 -0.7 -0.3 -0.9a1.3 1.3 0 0 0 -0.8 -0.4h-3.2z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M206.2 214.2l3.9 0.2a7.6 7.6 0 0 1 2 0.3 4 4 0 0 1 1.5 1 5 5 0 0 1 1 1.9c0.2 0.7 0.2 1.5 0.2 2.5a5.3 5.3 0 0 1 -1.7 4.1c-0.4 0.3 -0.9 0.6 -1.5 0.8h-2l-4 -0.1z"
android:fillColor="#309E3A" />
<path
android:pathData="M208.2 216.1l-0.3 7 1.6 0.2h1.3l0.9 -0.5c0.3 -0.2 0.4 -0.5 0.6 -1l0.3 -2 -0.1 -1.8c-0.2 -0.5 -0.3 -0.8 -0.6 -1a2 2 0 0 0 -1 -0.6 9.6 9.6 0 0 0 -1.7 -0.2z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M258.5 233.3l2.5 -10.4 3.3 0.8c1.3 0.3 2.1 0.6 2.5 0.8 0.5 0.3 1 0.7 1.2 1.3 0.3 0.7 0.3 1.4 0.1 2.2a3 3 0 0 1 -1.9 2.3 3 3 0 0 1 -1.1 0.3 12 12 0 0 1 -2.2 -0.4l-1.4 -0.3 -1 3.9z"
android:fillColor="#309E3A" />
<path
android:pathData="M262.6 225.2l-0.7 3 1.2 0.2c0.8 0.2 1.4 0.3 1.7 0.2a1.4 1.4 0 0 0 1.2 -1l-0.1 -1.1a1.5 1.5 0 0 0 -0.8 -0.7l-1.5 -0.4z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M268.4 236.3l3.5 -10.1 4.3 1.5a8 8 0 0 1 2.2 1c0.4 0.4 0.7 0.9 0.9 1.5s0 1.1 -0.2 1.7c-0.2 0.8 -0.7 1.3 -1.3 1.6a3 3 0 0 1 -2.3 0.3l0.8 1.2 0.6 2 0.5 2.4 -2.4 -0.8 -0.7 -2.7a14.5 14.5 0 0 0 -0.6 -1.9 1.6 1.6 0 0 0 -0.4 -0.6 3.4 3.4 0 0 0 -1 -0.5l-0.4 -0.1 -1.5 4.2z"
android:fillColor="#309E3A" />
<path
android:pathData="M272.4 231.2l1.5 0.5 1.9 0.5c0.3 0 0.5 0 0.7 -0.2l0.5 -0.7v-1a1.3 1.3 0 0 0 -0.6 -0.6l-1.5 -0.5 -1.6 -0.6z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M280.9 235.9a6.8 6.8 0 0 1 1.3 -2.5c0.3 -0.5 0.8 -0.8 1.3 -1.1a4.2 4.2 0 0 1 1.6 -0.5c0.7 0 1.5 0 2.3 0.3a5 5 0 0 1 3.2 2.5c0.6 1.2 0.7 2.7 0.1 4.3a5.6 5.6 0 0 1 -2.5 3.5 5 5 0 0 1 -4 0.2 5 5 0 0 1 -3.2 -2.5 5.5 5.5 0 0 1 -0.1 -4.2"
android:fillColor="#309E3A" />
<path
android:pathData="M283 236.5c-0.3 1.1 -0.3 2 0 2.8 0.4 0.8 1 1.3 1.8 1.6 0.8 0.2 1.5 0.1 2.2 -0.3 0.7 -0.4 1.3 -1.2 1.7 -2.4 0.3 -1.2 0.3 -2.1 0 -2.9a2.7 2.7 0 0 0 -1.8 -1.5 2.7 2.7 0 0 0 -2.3 0.3c-0.7 0.4 -1.2 1.2 -1.6 2.4"
android:fillColor="#FFFFFF" />
<path
android:pathData="M301.7 250.8l4.9 -9.5 4 2c1 0.6 1.7 1 2 1.4 0.4 0.5 0.6 1 0.7 1.5s0 1.2 -0.4 1.7c-0.3 0.7 -0.8 1.2 -1.5 1.5 -0.7 0.2 -1.4 0.2 -2.3 -0.1 0.3 0.4 0.5 0.9 0.6 1.3l0.3 2.1 0.2 2.5 -2.3 -1.2 -0.3 -2.8 -0.3 -2a1.6 1.6 0 0 0 -0.4 -0.6 3.5 3.5 0 0 0 -0.9 -0.6l-0.4 -0.2 -2 4z"
android:fillColor="#309E3A" />
<path
android:pathData="M306.4 246.3l1.4 0.7 1.8 0.8c0.3 0 0.5 0 0.7 -0.2a1.5 1.5 0 0 0 0.8 -1.5 1.3 1.3 0 0 0 -0.6 -0.7 21 21 0 0 0 -1.3 -0.8l-1.5 -0.7z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M341.2 270.3c0.6 -1 1.2 -1.6 2 -2a5 5 0 0 1 1.6 -0.7 4.2 4.2 0 0 1 1.6 0c0.7 0.1 1.5 0.4 2.2 1a5 5 0 0 1 2.3 3.3 6 6 0 0 1 -1.1 4.1 5.6 5.6 0 0 1 -3.5 2.6 5 5 0 0 1 -3.9 -0.9 5 5 0 0 1 -2.3 -3.3 5.5 5.5 0 0 1 1 -4.1z"
android:fillColor="#309E3A" />
<path
android:pathData="M343 271.4c-0.6 1 -0.9 2 -0.8 2.8a3 3 0 0 0 1.3 2 2.7 2.7 0 0 0 2.2 0.4c0.8 -0.2 1.6 -0.8 2.3 -1.9 0.7 -1 1 -1.9 0.8 -2.7 0 -0.8 -0.5 -1.4 -1.2 -2s-1.5 -0.6 -2.3 -0.4c-0.8 0.2 -1.5 0.8 -2.2 1.8z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M246.4 229l1.7 -7.6 5.6 1.3 -0.3 1.3 -4 -1 -0.4 1.7 3.7 0.9 -0.3 1.3 -3.7 -1 -0.5 2.1 4.2 1 -0.3 1.3z"
android:fillColor="#309E3A" />
</vector>
@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="1.066"
android:scaleY="1.067"
android:translateX="-60.4"
android:translateY="-28.1">
<clip-path
android:pathData="M56.6 26.4H537v480.3H56.6z" />
<path
android:pathData="M990 506.2H9.4V27.6H990z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M990 370.6H9.4V169.2H990z"
android:fillType="evenOdd"
android:fillColor="#FFE900" />
<path
android:pathData="M990 506.2H9.4V346.7H990zm0 -319H9.4V27.9H990z"
android:fillType="evenOdd"
android:fillColor="#08CED6" />
<path
android:pathData="M9 25.9c2.1 0 392.3 237 392.3 237L7.8 505.3z"
android:fillType="evenOdd"
android:fillColor="#000001" />
</group>
</vector>
@@ -0,0 +1,376 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#FFD520" />
<path
android:pathData="M0 512h512V0z"
android:fillColor="#FF4E12" />
<path
android:pathData="M281.9 162.5c-4 -1.4 -6.4 0.6 -6.3 5.7 0.1 5 2.8 7.9 6.7 6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M285.3 153.1c-3.2 -2.6 -6.3 -1.5 -7.8 3.3s0.1 8.4 4.4 7.9z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M290.7 144c-2.8 -3 -6 -2.5 -8.2 2 -2.2 4.5 -1.3 8.3 3 8.5zm-3.5 44.2c-4.8 1.8 -5.3 8.3 -2.3 12.3s8.5 4.8 11.6 0z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M281.6 174.4c-4.5 -1.5 -8.6 4.6 -9.3 10 -0.8 7 -10.6 9.2 -5.2 19.7 1.1 -6.7 5.5 -10.3 9 -10.6 3.5 -0.2 8.8 -1 11 -5.3zm14.3 26.9c-5.2 1.3 -6 8.3 -2.2 13.3 3.2 4.3 13.3 3.3 13 -1L296 201.3zm15 42.3c0.2 -4.5 -7 -6.3 -10.5 -5.4 -3.6 0.9 -10.3 -0.1 -11.9 -3.9 -1.2 3 0.6 6.3 5.7 8 3.8 1.2 3.8 4 2.6 5.2 3 0.5 11.5 0.5 14 -3.9z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M306.8 214.7c-5.2 -2.2 -8.3 1.2 -10.2 4.6 -3 4.9 -11.8 -1.4 -14.8 5.1 4 -1.7 8.2 2 10.1 3.3 5.6 3.6 16.2 2.5 17.7 -6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M309.8 220.8c-5.2 3.8 -7.2 8.5 -7 11.6 0 3.2 4.5 10 9.2 10.5 2.8 -5.7 4.2 -17.6 -2.2 -22.1zM288.4 245c0 -1.9 2.8 -2.6 4.7 -2 1.8 0.6 4.7 2.5 3.7 4.5zM260 234.7c-0.5 -2.3 3.2 -6.2 8 -4 5 2.1 5.6 6.3 3.6 7.9z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M272 238.8c-0.4 -1.2 3.1 -3.7 9.1 -2.2s7.5 5.4 7.3 8.4zm-12.6 -4.1c3.1 -2.4 2 -7 -0.9 -8.3 -5.1 -2.5 -3.2 -9 -6.5 -10.3 -3.3 -1.2 -6.4 -3.5 -6.5 -5.8 -1.7 3.2 -0.7 6 1.6 8s-1.8 10.2 1.1 12.4zm-67.3 -1.8c-2.6 -4.1 -9 -3.3 -11.5 -0.5 -2.7 3 -2.3 7.2 0.2 9zm15 -6.1c-1 -5.5 -7.6 -6.2 -11.2 -4.8 -3.7 1.4 -6.2 7 -3.8 11z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M217.2 226c2.4 -4.6 -2.2 -11.5 -7.5 -12.5 -4.4 -0.9 -9.6 -0.8 -11.3 -5.2 -1 3.8 1.7 6.2 5 8.3 3.3 2.2 -0.6 7.7 4.7 10.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M216.7 226.2c-1 -3.3 1.2 -7.8 5.7 -7.5 4.5 0.4 7 3.6 5 7.7z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M226.8 226.4c-0.7 -3.4 2.2 -7.5 6.6 -6.5 4.4 0.9 6.5 4.5 4 8.3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M236.7 228c-0.4 -3.4 2.6 -7.4 7 -6.2 4.4 1.1 6.3 4.8 3.5 8.5zM161 285.6c-8.4 0 -10.5 2 -11.7 10.6 -1.5 10.8 13.2 12 11.7 -10.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M164.7 274.3c-12.9 -5 -20 15.5 -32.7 11.9 4.6 7.3 15.7 0 19.8 0.7 7 1.3 22.2 -1.3 13 -12.6zm-8.4 28c-6.4 -3 -13.3 6.8 -12 11.1 1.6 5.5 16.2 1 12 -11.1zm-29.9 42.1c3.6 1 7.8 3 7 9.8 -0.7 6.8 -13.5 20.6 -25 21.4 -11.6 0.7 -15.7 14.7 -25.7 10.8 9.3 -1.8 9.3 -12.3 16.6 -15.6 -5.3 -1.9 -8 10 -14.8 10 -6.8 0 -10 10.9 -18.3 10.1 -8.3 -0.7 -9.2 13.1 -25.8 13.3 -12.6 0.1 -28.3 15 -34 8.6 12.3 -1.8 17.3 -8.6 24.6 -16.1 11.8 -12 25.1 -6.7 29.7 -17.3a30.9 30.9 0 0 1 -17.9 5.2c-7.7 -0.1 -16.2 12.3 -24.8 6.8 5 -0.6 8.3 -2.8 13.5 -8.3 5.4 -5.6 13.3 -2 19.6 -7.8 9.8 -9 18.2 -1.5 27.6 -12.8 -2.6 -1.2 -8.3 -0.3 -13.5 2.4 -5.3 2.8 -12 -1.9 -18.1 1.4 0.7 -7.4 14.8 -3.2 23.6 -8.3 10 -5.8 18.1 -4 26 -3.4 -11 0 -15.2 -10.4 -30.3 -7.4 -6.5 1.3 -11.8 -9 -18.3 -3.8 0.2 -3.9 7 -7 14 -3.2 7 3.7 10 -3.3 24 5.5 5.7 3.6 15.6 -2.3 21.9 1.6 -0.8 -2.4 -4.4 -3.9 -8.6 -3.5 2.6 -5.4 19.6 -4.7 27 0.7z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M137.6 336.3c-5.5 -4.3 -13.2 0.9 -18.4 -1.2 0 3.6 1.7 8.8 7.5 10.8a139 139 0 0 0 11 -9.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M146.3 324.1c-8.7 -4.4 -10.2 6.5 -17 4.3 0.3 3.1 2.8 7 8.3 7.9z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M151.4 314.2c-12.8 -5 -14.4 7.3 -22 4.9 1.8 4.2 12.6 6.5 18.1 5l4 -10zm17.6 -53.9c-3.4 -4.8 -10.5 -0.9 -11.7 4.8 -1.1 5.6 1.7 13.5 6.4 11.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M177.7 245.2c-6 -1.3 -12.7 -0.7 -12 5 -2.2 1 -2.9 8.5 3.3 10.1l8.7 -15z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M181.6 241.3c-5.8 -6.7 -12.3 -6.6 -15.9 -3.7 -6.6 5.3 -13 2.2 -13.3 7.5 4 -3 7.6 0.6 10.8 -0.5 3.3 -1.1 5.7 5.2 14.7 2.5zm-14 101.4c0.9 1.6 6.3 2.4 9 -0.4 3.4 -3.7 -0.4 -13.8 -6 -14.6 -5.5 -0.7 -6 11.5 -3 15z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M161.3 343c8 2.8 11.3 -3.7 7 -7.9a79.6 79.6 0 0 1 -7 7.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M131.7 353.7c-1.5 4.6 -9.3 5.3 -18 19.4 -8.9 14 -17.3 8.1 -19.4 17.8 10.5 -8.5 18.8 -2.9 25.1 -11.3 9.6 -12.8 17.4 -11 21.1 -19.6 5.3 -12.3 28.4 -12 29.6 -31.4 -7.7 -1.5 -32.4 19.4 -38.4 25.1zM330 164c10 3.3 10.3 16.3 21.8 20.6 11.6 4.2 12.7 14.5 22.1 12 -8.8 -2.4 -8.2 -12.5 -17.3 -15 -10.8 -3 -14.8 -19.4 -23.4 -21.9m42.8 72.5c1.8 4 1.5 11.1 -4.7 13 3.4 2.2 8.4 0.1 11.1 -4.5 -4.1 9.2 -1.3 17.5 5.2 19 -3.1 -6.3 3.9 -9.3 1.6 -13.5 4.2 1.8 7.8 7.4 7.7 11 5.4 -6 -4 -14.1 -2.3 -19.8zm-65 64.5c-6.2 -5.4 -8.8 1.4 -11.8 -1 -2.8 -2.1 -6.6 -2.4 -8 -0.2 5.2 0.1 2.7 4.2 12.9 5.2 -10.2 0.7 -8.4 12.1 -15.2 11.6 7.3 6.9 11 -6.2 17 -4 -1.8 0.5 2.7 4.6 -0.4 10.1 5 -0.1 7.1 -7.1 7.8 -10.8zm-135.5 58.6c-2.3 -1.8 -8.8 -2.7 -11.3 -1.2 -2.5 1.5 -1.6 1.9 1.4 2.1 3 0.3 6.9 5.1 0.4 5.4 -3 0.1 -2 7.4 -8.3 8 2.5 3 9.9 1 12.5 -2.5 -0.5 2.9 3.3 5.4 1.8 8.8 4.6 0.5 2 -9.4 9.3 -8.9 -3 0.4 -1.8 7.2 3.5 5.4 -3.1 1.5 -1.5 5.2 2 4.3 -2.2 0.7 -3 3.6 0.1 5.3 3 -4.2 -0.3 -19 -11.4 -26.7zM449 216.7a17.4 17.4 0 1 0 0 -34.8 17.4 17.4 0 0 0 0 34.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M358 237.7c5.3 -5 13.3 -7.5 18.8 -3.7 5.5 3.7 23.9 8.2 33 2 9 -6.3 13.2 -9.6 17.2 -8.8 3 4.5 6.7 6.6 11.2 7 1.4 1.5 6.3 2.8 9 2.4 4 1 9 -0.3 12.9 -4.5 6 0.8 11.6 -3.7 13.8 -10.5 6.4 -0.7 6.8 -7.9 2.7 -12.6 -3.7 -0.8 -0.8 -13.5 -14.5 -11 5.7 3.5 1.3 10.6 6.1 13.8 -3.2 0 -7.4 1.4 -8.4 6.3 1.2 -3.4 -0.2 -5.6 -1.1 -6.4 0.1 -2.9 -6.3 -10 -12.3 -7.4 4.3 1 1.9 8 5 10.6a8 8 0 0 0 -6 3.2c-1.7 -2.9 -7.4 -5.9 -11 -6.1 0 -1 -0.1 -3 -0.6 -4a18 18 0 0 1 -2.2 -11.2c-3 3.2 -5.6 7.8 -7 11 -4.8 -3.2 -16.6 1.5 -22.2 2.8 -5.5 1.3 -24 -1.8 -28.3 -6.3a47.9 47.9 0 0 0 -20.4 -9.5c-10.7 -3.1 -10.8 -14.8 -22.6 -22.9 -0.2 14.6 21.9 60.8 26.9 65.8zm-123 111a16.8 16.8 0 1 0 0 -33.6 16.8 16.8 0 0 0 0 33.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M194.7 335.8c3.4 4.4 9.2 4.1 11.6 3.7 2 5.3 8.4 5.2 11.2 8 2.7 3 12.2 2.7 15 1 -2.6 -0.2 -5.9 -1.7 -9 -4.3 -3.8 -3.2 -2 -9.5 -5 -11.8 2.2 -2.5 2.6 -6.7 2.1 -8.3 2.4 -1.4 4.2 -3.6 4.4 -4.8a15 15 0 0 0 9.3 -4c2.1 2 7.5 -0.6 10.4 2.8 0.7 -8.3 -7.3 -12.7 -12.5 -10 -2.2 -1 -7.8 -0.3 -8.8 1.2 -1.8 -0.8 -6.7 1.7 -9 3.4 2.6 -1.4 3 -5.5 2 -7 2 -1 4.5 -3.8 4.7 -6 3 0.5 7.5 -1.5 9.6 -1 -3.3 -4.2 -8.7 -5.7 -14.2 -5.4 -5.8 0.4 -8.2 4.4 -9 8.7 -3.3 2 -4.5 8.8 -3.2 11.2 -2 0 -3.8 1.8 -4.5 2.9a26 26 0 0 0 -9.1 -2m1.2 -6.8c-1.2 -3.3 0.3 -6.2 1 -8.8 2 -6.6 0.8 -8.3 -5 -7.4a46 46 0 0 0 4 16.2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M187.5 291.4c1.5 1.6 6.9 2.3 7.4 -2.5 0.7 -5.5 -1.5 -7.6 -6.3 -5.5 -0.4 1.3 -0.8 6.4 -1 8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M188.7 283.2c2 0.8 6.3 2.5 8.7 -2.2 2 -3.9 -0.6 -6.9 -4.8 -6.6 -1 1.1 -3 5.1 -4 8.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M192.4 274c0.5 1.5 5.6 6.5 9.4 2.9 3.7 -3.6 3.7 -9 -1.9 -11 -1.5 0.2 -6 5.5 -7.5 8.1z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M199.9 265.8c1.1 3.2 4.6 8.6 11.2 6 6.5 -2.4 3.7 -10.6 0.7 -12.2 -1.7 0 -8.9 3.3 -12 6.2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M211.8 259.6c-0.5 2.7 0 10.3 9 10.1 8.8 0 6.3 -10.5 4 -12 -3.6 0 -9.7 0.1 -13 1.9z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M225.3 258c-1 2.2 -3.3 16.2 14.1 12.4 2.3 -0.5 8.2 -13.5 -14.2 -12.3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M234.8 259.3c-1.8 1.8 2.8 16 14.6 13.6 11.8 -2.4 1.9 -15.9 -14.6 -13.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M244.8 261.4c-1.8 4 1 15.5 15.5 15.5 13.3 0 -0.6 -15.2 -15.4 -15.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M256.3 264.8c-1 2.2 -2.1 14.4 15 15.5 12.5 0.7 9.5 -16.9 -15 -15.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M274.7 270c-2.1 3.8 -4.4 13.2 14.5 14 12 0.4 4.6 -13.8 -14.5 -14z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M290.4 272.9c-2.7 3.7 -0.7 11.1 6.3 12.5 8.8 1.8 10 -6.5 4 -10.5s-10.3 -2 -10.3 -2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M299 274.6c-2 3.5 -0.8 12 12.5 12 2.8 0 13.3 -10.7 -12.5 -12zM195.9 438.4a19.5 19.5 0 1 0 0 -39.1 19.5 19.5 0 0 0 0 39z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M339.1 154.3c-1.5 1.5 -4.6 6 -5.2 7.8 -6.6 19.6 10.9 34.3 21 55.3a61 61 0 0 1 -5.5 59.2c-4.3 5.7 -3 7.3 -8.5 13.1 -2.1 2.2 -4.5 5 -3.8 13 3.6 -1.2 8.6 2 9.6 4.8 2.5 -1.2 6 -0.7 7.3 0.8 4.2 -2 7.8 -1 11.5 3 3.3 -0.5 6.8 0 10 3.5 1.8 -3.5 5.3 -4.8 7.8 -4 -0.2 -4.5 4.3 -7.8 8.3 -6a7.4 7.4 0 0 1 9.6 -8.8c4.5 -3.5 13.5 -3.8 18 1.5 -8 -2.3 -7.7 6.3 -14.5 5.5 1.8 5 -2.8 8 -7.3 9.5 2.9 -1.3 6 -3 7 -1.2 2.5 -2.2 7.6 -1.4 8.8 -0.3 3.4 -1 6.6 -0.2 8 3.8 4.6 2.8 7.6 9.8 4.3 15 -1 -5.5 -4.7 -5.2 -6.2 -7.5 -3.6 1.3 -7 1.3 -8 -1 -2 2 -8.9 3.8 -11.9 0.8 -1.1 4.5 -5 8.3 -9.5 8.3 1.2 3.5 -2.3 9.5 -5 12.5 4.2 2.3 3 7.3 2 10.3 6.5 1 1 6.8 12.3 10.6 -5.6 1.7 -16.4 0 -17.9 -6.8 -5.5 -0.3 -9.3 -5.8 -9 -11.6 -4.3 -4 -5 -9.7 1 -13.8 -5 1.5 -7.8 -6.5 -15 -3.2 -3.7 1.6 -13.2 -1.2 -13.1 -4.5 -1.5 2.5 -10.7 1.5 -12 -2.8 -3 1.6 -10 -1.1 -9.9 -5.3 -3.9 1.8 -9.1 -1.4 -8.9 -5.4 -3.6 -0.5 -4 -3.7 -3.8 -6.5 -3.2 -1.5 -2.3 -4.7 -1 -8.4 -2.3 -2.5 -1.3 -6 0.4 -9.3 -2.5 -2.5 -2 -5.5 -1.2 -9 -12.1 -1 -27.2 -4 -61.8 -14.6 -52.2 -16 -66.3 21.6 -54.8 45.2 13.4 27.2 -1.5 33.1 3 53.5 4.8 1 7.3 5 7 9.3 2.9 0 5 2.7 4 7.7a8.7 8.7 0 0 1 7.4 2.3c1.7 -3.3 7.5 -4 10.5 -0.2 6.6 -0.5 9.8 4.7 9.6 11.3a17.6 17.6 0 0 1 -1.5 18.8c0.3 -2.6 0 -6.4 -0.2 -8.7 -0.2 -4.1 -6 -5 -5.4 -8.4 -3 0.3 -5.9 -1.4 -6.9 -3.6a6.6 6.6 0 0 1 -6.4 1.2c3.4 1.5 6 7.6 5 11.6 1.8 3 1.4 8.5 -0.7 11 -1 4.8 -4.8 6.6 -9.7 4.4a8.4 8.4 0 0 0 3.7 -7.5 9.8 9.8 0 0 1 -2.8 -6.2c-4.9 0.8 -11.7 -3.4 -13 -5a19.5 19.5 0 0 0 -19.4 19.6c-0.5 -4 -5.6 -8 -5 -11.4 -3 -9.3 1.3 -18 13.6 -19.7 -1.5 -3.5 3.7 -7.2 1.7 -11.2a94.8 94.8 0 0 0 -14.3 -19.6c4.3 -7.3 3 -17 0.5 -23.1 -3.6 -8.7 -7 -6.5 -19.8 7.5 -21 23 -48.8 16.6 -73.4 31.7 -6.5 4 -13 5.5 -6 -1.5s25.6 -14 37.7 -20.1c22.6 -11.3 41.7 -30.2 49.2 -66.8 17.7 -86.2 82.9 -57.8 124 -41.7 38.7 15 31.7 -19.1 12.1 -39.7 -23.5 -24.7 -18.8 -44.2 -7.8 -59.8 19.9 -2.7 57.9 4.2 50.2 10.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M409 366a21.5 21.5 0 1 0 0 -43 21.5 21.5 0 0 0 0 43z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M327.1 155.3c-4.8 21.1 -0.8 30.7 6.3 40 14.5 19.2 26 63 9.5 91.6"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M352.2 262.2c2 -0.8 5.8 -3.1 6.7 -7.3m-5.2 -1.9c0.6 -3.6 6.3 -5.2 6.4 -9m-6.3 -5.2c-0.3 -3.7 5.7 -7.1 4.8 -10.9m-8 -2.6c-0.5 -2.1 5 -6.2 3.5 -9.6m-7.7 -3.6c-1.1 -2.4 2.7 -5.1 1 -7.7m-7 -2.9c-0.4 -1.6 2 -5.2 0.7 -7.3m-6.7 -5c0.5 -0.7 2.5 -2.2 1.7 -4.1m-5.9 -5c0.9 -0.5 3.3 -1.3 3 -3.1"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round" />
<path
android:pathData="M204.5 416.8c-5 -1.8 -11.3 0.7 -12.5 5m3.7 3.9c0.7 -4.3 7.2 -6.2 9.2 -4.2 -4.1 -2.2 -6.1 5.8 -2.5 6m33.8 -101.1c-3 1.5 -4 7 0 11.1m4.5 -9.9c-2.1 1.8 -2 7 1.1 8.3 -2.6 -1.9 0 -5.1 2 -5.3 1.8 0 3 2.2 0.8 4.4m172.5 5c-7 -1.8 -12.7 6.3 -6.3 13.6 0 -7 5 -11.7 11 -10.4m-2.7 4.8a2.6 2.6 0 0 0 -2.7 2.7c0 1.4 1.2 2.7 3.1 2.7 1.3 0 2.3 -1.4 2.3 -2.6m22 -157c1.2 4.4 7 6.1 11.7 5.1m0 -2.8c-3.6 0.2 -6.6 -3.2 -6.4 -6.1 0 2.1 5 3.1 6.4 1.7"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
<path
android:pathData="M206.3 339.5c-1 -2.5 3 -5 3.1 -7.4 0.2 -2.4 4.6 -4.2 9 0.3m-2 -26.8c-1 0.4 -1.7 1 -2.4 1.2m11 12.5c-1 0 -3.3 0 -4.5 -0.9m0.1 5.7c-0.9 0.4 -2.8 1.2 -4 1.4m-39 74.4c-0.2 2.3 2 5.6 3.3 6.6m6.4 -12c-1.2 2 -2 5.2 -1.2 7.4m20 0.2c-2.3 -1.5 -0.8 -5.4 -1 -8 -0.3 -2.5 2.6 -6.5 8.2 -3m-28.4 -3.3c2.3 -0.4 4.7 -0.3 6.2 0.3m22.5 -7.5a8.1 8.1 0 0 0 -1.4 3.9m12 -4.2c-1.8 0 -3.3 1.3 -4.1 2.6M199.8 316c2 0.7 7.2 3.9 7.4 7.2m13.9 -23.6c-6.2 0 -8.5 -6.4 -3.9 -6.4m15 14.8c-2.4 1 -1.3 5.2 2 7.2m-16.7 32.3c-1.2 -1.5 0.3 -6 4.2 -4.6m5 50.4c0.2 -3.8 5 -6 7 -1.8m-24.9 12.7c-0.3 -4.2 1.8 -5.6 3.7 -5.8 1.9 -0.3 4.6 1.3 5.8 4m-47 5c0.3 -2.5 2.5 -5.2 4.7 -4.8M401.2 296c-1.7 1.2 -2.7 6.5 3.5 7m-13 1.8c0 0.6 0.7 1.5 1.2 1.8m28.3 8.2c-1.6 -1.3 -5.8 3.8 -2 7.5M381.3 357c-1 -3.6 2.4 -4.5 5.5 -3.8m-13.5 -21.6c1.9 -1.2 3.8 -2.6 6.1 -3.2m-7.1 17c0 -3 1.5 -5.5 2.9 -6.2m8.1 -28.4a17 17 0 0 0 2.4 9m27.5 -8.8c-1.8 0.6 -3.4 1.3 -4.1 2.8m2.1 7.5c0.9 -0.7 1.9 -1.6 2.3 -2.2m45.2 -107.4c0 3.5 -4.4 5.4 -7.3 3.2m16.8 -3c2 1.4 8.7 0 7.1 -3.9M460 232a9.7 9.7 0 0 1 -4.7 -3m18.6 -7.4a7.3 7.3 0 0 1 -5 -0.5m-30.7 13.1c1.3 0 4.3 -0.5 6.3 -1.6m-10 -20.6a5.4 5.4 0 0 0 -3.8 0.7m29 5.4a10 10 0 0 1 -3 5.1"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round" />
<path
android:pathData="M430.2 223.7c3.1 -1.4 7 9.3 14.5 5.5m0.7 -11c-1 1.3 -1.7 3.4 -1.8 5.3"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
<path
android:pathData="M295.2 201.8c1 -0.1 2.8 -0.5 3.1 -1.8M166 318.8c3.8 2.1 6.4 5.8 4.8 11.2m167.8 -139.6c1.2 0.7 5.4 0.7 7.8 -0.2m3 2.7c0 1.7 0.4 8.4 -3 9.8m1.3 -1c3.1 1 9.4 0.7 11.4 -5m-4.4 4.8a6.9 6.9 0 0 1 -2.8 10m4 -5.8c3.7 1.2 12.1 1.3 11.2 -5.8m-2.8 5.8c2.5 3.5 13.5 7.6 11.8 0.3m-22 9.8c4.3 1 10.3 -1.9 7.8 -9.4m12 3.8c0.7 2.9 14.7 5.9 12.8 -0.6m-2.6 3.7c2.6 6 16.6 5.6 12.2 -2.5M394 217c2.8 3.4 15 1.4 10.2 -6.8m-0.1 6.7c7.6 5.7 16.5 -2.5 6.9 -8.6m4.4 6.7c6.7 5.4 15 -4.4 9.1 -7.2m-62.8 5c2.2 0.6 6.7 0.3 7.7 -3.6m-1.7 2.6c-0.2 5.8 9.4 8 11.8 1.4m-3.2 3.5c1.8 3.8 10.2 5.3 11.6 0m-1.4 2.4c1.4 3.8 8.7 3.4 10.7 -0.5m-2.7 2.5c2.3 5 11.6 5 13.7 -2.2m-1.6 3.1c3.6 2.3 11.4 1.4 10.8 -5.6m-1.5 5c5.4 4.4 13 0.1 9.3 -7.3m-0.4 13c2.9 -0.4 4.4 -6.2 1.4 -7.7m-68.3 8.8c6 -3.3 7.1 -8.8 3 -14.2m2.1 8.7c3.8 2.2 11 -0.2 12.2 -5.7m-7 6.3c2 2.7 2.5 6.1 -0.3 9.3m2 -5.8c6.7 -4.2 15 3.5 8.8 8.2m-1.1 -8.6c1.5 -0.4 4.1 -3.1 4.4 -6.3m-1.4 9.2c2.7 -2.9 21.6 3 9.7 9m-1 -17c3.7 1.5 5.6 6.6 0 8.4m4.8 4.3c4 -4.2 16.6 -1.5 12.1 3.7m-3 -5.4c2.2 -7.6 15.7 -2.9 11.3 0.3m-14 -8c0.3 1.6 0.4 5.3 -2 7.3m13.2 -8.7a6 6 0 0 1 -0.7 5m9.3 -5c0.7 1.5 2 4 -0.8 6.2m-106.7 -63.9c0.1 7.2 2.6 12 12.3 7.4m-9.3 1.2c-4.8 6.4 0.6 13.3 10 6.4m-24.7 -3.3c6.5 7 18.2 1.9 10.7 -8.8m7.9 14.8c-1.3 7 4.4 8.3 9 5.2m-33.4 -10c1.2 6.9 8.3 12.4 15.2 8M304 188c0 9.9 13.7 11 16.8 0.7m-5 6.3c4.5 9 14 5.4 17.2 -0.1m-27 -14.5c1.8 4.5 5.3 9.4 13.5 5.7m-38.6 -7.8c1.1 3.7 7.7 8 15.2 3m-10.5 1.7c-4 5.9 4 11.4 13.6 2.6m-8.9 4.7c1.7 8.2 5 14.9 16.7 4.2m-5.9 4.3c4.3 5.3 10.8 8.5 17 -0.4"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M322.7 200.3c-0.4 6.3 0.9 9.4 5.8 9.2 3.8 -0.2 7.5 -3.3 9.6 -6.6m-10.5 6.6c-0.1 7.1 5.5 12.8 16 5.5m-11.6 2.9c-2 5.4 4 14.2 15.8 9.6m-40.8 -24c-0.8 7 5.7 11.6 16 2.7m-11 5c0.4 5.7 6.8 12.5 16.2 2.7m-11.7 4.5c-0.7 9.6 8.2 12.4 15.7 5m-29 -12.2c2 0.1 3.5 -1.6 4.5 -2.9m-0.3 10c1.7 0.3 4.7 -1.3 5.7 -3.3m-1.3 14.7c2 2.1 8.8 0.6 9.6 -2.3m-2 2.1c3.7 8.8 13.7 8.5 17.9 -1.5m-2 3.6c2 5.1 6.7 8.4 14.5 6.6m-10.7 -1.4c-4.4 7.2 1.4 15.6 11.2 7.3m-8.8 3.4c-0.5 4.5 3.7 9.7 9.3 10.3M323 234.3c-1.5 10.2 5.8 15 15 9.7m-25.6 -4.8c2.4 1.9 6.6 2.1 10.6 0.6m5 6c-2.3 8.5 6.5 14.6 14 5.1m-26.2 -10.3c0 4.4 4.4 9.2 11.8 7.8m20.7 8.8c-5 3.4 -6 9.4 1 13.3m-13.3 -15c0.2 5 2.6 8 8.3 8.4m-15.7 -11.1c-7.6 6.9 -0.2 15 8.8 8.1m-3.6 2.2c-2.5 7.9 7 12.7 12 4.6m-27.5 -21.5c-2.8 7.8 0.7 13 7.1 12.5m-17 -14c0.3 4.7 4.3 6.3 8.9 5.3m-6 -0.4c-3.5 6.6 1.7 10 8.5 7.6m20.6 14.5c-1.1 4.2 -0.5 7.2 5.6 8.6m-5.2 -2.7c-7.5 3.4 -8 10.6 -2.3 15.2m-3.7 -23.1a7.4 7.4 0 0 0 1.1 12m-34 -35c-4.3 4.3 -0.3 15.9 9.2 9.5m15.2 5.2c-5.8 4.8 -3.1 13.5 6.4 11m-16 -14.6c-3 8.5 0 11.5 6.7 11.7"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M295.4 246.4a8 8 0 0 0 -1.4 11.9c2.2 2.5 6.5 1.4 7.8 -1.9M284.6 243c-5.7 7.4 0 16.2 8.2 13.6m22.7 8.4c-5.9 2 -10.4 7.5 -6.7 12.1 2 2.8 11.4 3.2 14 -7.5m-18 -11.5c-3.3 4.9 -2.2 9.5 4 11.9m-4.3 -2.8c-3.6 2 -6 4.4 -5.2 8.8m-3 -16.4c-1.3 5.9 0.3 9.5 4 11.3m-4.1 -4.3c-5.6 -0.4 -8.5 2 -6.6 7.5m0.5 -6.1c-5.6 -2 -6.4 -6.8 -4 -11.8m-0.8 7.4c-6 0.2 -8.7 3.2 -8.7 7.4"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M277.1 240.1c-4.4 1.9 -5.8 7.8 -4.1 11 1.6 3.3 6.8 3.6 9.9 1.4m-18 -17c-4.1 4.5 0.5 13.3 7.7 11.1m-18 -14.7c-3.8 5.3 0.3 14.1 10 11.6m0.5 24.5c-1 -6.3 5.5 -10.4 13.5 -2.3m-3.9 -12.7a9.9 9.9 0 0 0 -3.1 8.3M244.2 229c-4.1 7 0.9 13.5 9.8 11m13.5 6.5c-6 5.9 -4 11.8 0.5 15.2m-4.3 -8.3c-9 0.1 -9.4 10.4 -2.1 13.7m-4.7 -24c-3.6 2.5 -4.8 9.4 1.5 12.2m-1.7 3.2c-3.8 -1.7 -8.3 0.4 -8 4.8m2.3 -4.6c-3.4 -8 -13.3 -6.7 -12.4 1.6m15.2 -11.6c-2.2 0.4 -6.4 1.7 -8 5m0.6 -14c-4 4.5 -1 10 2.3 11M234.4 227c-0.7 5.4 1.4 8 8.2 7.6m-5.8 -0.7c-2.6 6.6 0.9 9.4 7.7 9m-6.2 -1c-4 4.8 -1.2 10 2.7 12.1m-4.6 -6c-7.1 -0.9 -8.2 7.4 -5.9 11.3"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M230.7 226.3c-4.4 1.9 -7 7.4 -4.6 10.8 2.4 3.4 7.2 2.3 9.8 0.5m-8.3 1c-3.6 5.5 -0.3 9.7 3.6 11.3"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M213.6 225.7c-3 3 -1.1 9.1 5.9 9.3 5.6 0 8.5 -5.3 6.8 -9m-7.8 9c-2.3 5 -0.9 10.4 7.6 9.5m3.7 7.9c-5.3 -2.4 -12.3 0 -9.3 6.3m-0.8 -15.2c-2.1 3 -1.3 7.3 1 10m-1.3 -2c-3.6 0.6 -7 2.5 -4.8 8m-0.5 -4.5c-4.5 -1.3 -10.3 2 -6.8 6.6m-0.8 -4.4c-3.8 -0.6 -8.5 3.5 -4.7 7.6m-1.5 -3.4c-3.5 1 -7.7 5 -4 8m21.7 -27.7c-5 2.3 -5.6 8 -3.2 12m-2.1 -22.4c-7.5 2.9 -7.4 13 0.9 16m-3.5 -2.2c-4.6 2.7 -5.4 7.7 -2.4 11m-5.5 -28.6c-3 1 -2.8 10.3 5.2 10m-13.5 -6.8c-6 4 1.2 14.2 11 6.9m-5.4 2.5c-0.9 4.1 0.3 8.7 7 9.2m-6.6 -3.7a6.5 6.5 0 0 0 3 12.3m-18.2 -21.2c-6.1 5.7 5 10.6 9.2 2.4m-17.7 7c-3 3.7 7.5 13.2 12.1 -2.7m1.2 -0.3c0.2 3.8 2.5 6 7.1 6.3m0 3.6c-7.5 1.2 -9.9 10.5 -1.6 12.5m-12.2 -13.7c-0.2 3.5 3.4 6.4 7.6 5.8m3.7 7.6c-6.8 1.5 -7.6 10.3 -1.6 9.8m-3.1 8.2c-5.7 -1.7 -5.8 -8.4 -0.8 -11"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M184.7 277.3c-4.8 2.8 -2.9 9.8 -0.4 10.8s4.5 -0.3 4.8 -2.4m-0.4 9.6c0.5 3.3 -11.6 2 -5.4 -8.1m0 8.7c-4.1 6.4 2.5 11.6 6.7 6.2m-6.2 1.5c-1.6 5.2 4.6 8.9 8.6 4.9m-22.1 -53c-2.3 4.6 9 6.3 9.8 -3.2m-13 10c-2.2 9 14.8 7.2 10.4 -4.5m0.4 6a8 8 0 0 0 11.3 -6.1m-5.1 6.4a9.8 9.8 0 0 0 4.6 6.1m-12.8 -3.7c-0.7 4.9 4.2 8.9 9.8 8.5m-9 -3.8c-2.7 3.8 -3.5 11 5.1 11.6m-18.2 -10.3c-1.4 3.9 6.8 7.9 11.6 1.5m-14.1 8.4c-0.7 3 6.7 7 10.8 -5.6m-3.3 6.4c1.8 3.1 7.7 5.6 11.3 -0.5m-5.9 3.7c-1.5 4.4 2.7 8.6 7.7 7.3m-17 -8.3c-1 6.3 6.2 10 10.7 6.7m-15.6 -4c-2.1 8.1 8.2 11.1 12 5.1m-2.5 2.4c0.3 4.5 7.4 8.4 12.9 4.6m-25.5 -0.8c-0.5 2 8 4 9.2 -3m-4.3 4.7c2 5.2 8.8 6.4 12.7 0.1m-2.3 2.5c0.9 4.8 7 7.5 12.5 4.2m2.2 1.9c-1.4 6.4 5.3 11.5 9.4 8m-20 -9.1c-2 7 6.7 11 11.6 7.1m-22.2 -10.7c-0.5 6.6 4.6 10.5 10.5 7.6m-21.7 -7c-1.7 4.3 7.6 7.8 12 4.2m-17.8 7.5c2.4 2.8 10.7 0 11.5 -6.1m-2.3 4.5c3 3.5 10.2 5.4 13 -2.1m-2.4 3.9c-0.2 5.4 9.5 9.3 12.6 -0.7m11.4 2c-0.9 2.6 1.2 6.8 5.5 7.3m-13.5 -9c-0.6 3 3.8 7.3 8.4 5.6m1 1.2c-1.3 3.3 -0.3 8 4.1 8m-3.7 -1.9c-3.3 2.8 -2 7.7 2.8 7.9m-4.5 -3.2c-4.7 3.1 -3 10 3.1 9.6m-17.2 -23c0 6.8 8.4 7.8 10 1.6m-3.2 4c-1.3 4 2 7.9 7.1 6.8m-6.1 41.7c1.1 1.6 5.8 -1.2 4.5 -4 -1.2 -2.7 -6.2 -1.2 -5.6 1.7m4.5 -2.8c0.6 -5.5 -6 -6.4 -7.6 -1.6m2.4 -2.8c1.7 -2.7 -3.9 -6.5 -6.1 -2.5m2 -1.6c1.5 -4 -4.8 -5.8 -5.3 -2.1m-1.4 -5.3c0.8 -2 7.8 -0.8 4.8 3.4m5.4 5c2.8 -2.5 -1.9 -7.7 -4.8 -5.8m23.4 13.5c-2.2 0.2 -4.5 1.6 -2.9 6.3 1.2 3.2 6 3.4 6.7 1.4"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M199 372.9c-2 -1.4 -6.7 1 -4.6 5.4 1.6 3.4 5.7 2 6.3 0.3m-13.6 0.7c1 2 6.4 1.1 7.3 -1m-3.7 -5.2c1.2 -0.7 3.2 0.2 3.7 1.2m-4 -32.1c-3.7 2.4 -1.4 9.6 4.2 7.8m-5.4 -2c-2.9 2.3 -0.2 9.4 5.2 6.7m-4.3 0c-2 2 0 7.6 5.2 6.6m-6 -3.8c-1 -0.5 -4 -0.1 -5.3 1.7m2 -27.1c-2.7 2.6 -1.4 8 3.8 8.4m-4.7 -3c-4 2 -4 9.9 4 10.2m-4.3 -1.3c-2.2 1.8 -1.2 8.6 4.5 7.7m-2.7 -0.2c-0.8 0.8 -1 2.8 -0.3 3.7m-2.2 -6.3c-2 0 -4.7 1.5 -5.4 3.6m-3.6 -7.3c0.8 -2 7 -1.9 7.4 4m0.6 -7a4 4 0 0 0 -3 2.7m0.3 -21.1c-2.7 2.4 -4 10.1 4.2 11.6m-9.6 4.3c0 -2 5.6 -3.8 7.5 -0.7m-11.1 -10.5c0.8 1.5 4.7 3.7 7 2m-27.2 -14.3a6.2 6.2 0 0 0 7 6.4c4.2 -0.5 5 -4.2 3.8 -6.6m-3.2 6.7c-2.7 3.4 0.7 8.2 3.8 6.8m-0.6 -9.2c1.6 -0.6 7 -1.4 8.6 1.1m-26 0c-1.3 1.8 6.5 3.7 9 0m-2.5 2c-0.3 2.4 1 6.7 7.4 5"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M159.5 334.6c1 -2 -3.8 -5.6 -7.4 -1.7 -3.7 3.9 0.5 8.3 2.7 6.8m-12 -13.5c-2 3.3 5.4 9.3 9.5 3.7"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M138 331.9c-2.7 2.7 0.6 7.6 4.5 6.1 4 -1.5 3.6 -5.6 2.7 -6.7"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M132.8 336.9c-2 2 0 6.5 3 6.5s4.7 -2.3 4.1 -5.2m5 -1.7c-0.5 3 3.8 5 6.6 2.2m0.1 -5.2c0.4 -0.7 0 -1.7 -0.6 -2.2m-22.7 9.5c-2.5 2 2.8 7.4 6.1 2.4m12.8 -3.5c-1.6 1.5 0.9 5.5 3.4 4.3m-12 -1.5c0.3 2.7 5.6 4.7 9 0.6m-6.2 2c-0.8 1.8 0.9 4.5 2.9 4.1m47.1 11.5c-2 3.8 4.3 8.3 8.8 3.7m-4.3 2c-1 2 0.2 5 2 6m-7.9 -1.7c0.5 -1.8 3.2 -3.6 5.6 -2.7m-8.8 -2.2c0.3 -1.7 2.6 -3.4 4.3 -3m143.5 -75.4c-8.9 0.2 -5.1 14.5 2.5 11.6m-5.4 -1c-1.7 2.9 1.7 7.5 5.4 4.8m-1 0.5c-2.6 4.4 6.8 11.1 10.6 4.2m-3 2.7c0 4.1 12.2 6.7 10.4 -1.5m-1.1 4.5c2.8 4.9 13.6 5.4 12.5 -2m-2.4 5.1c2.3 3.3 12.8 5.3 12.5 -1.5M320.3 275c1.5 3.9 6.7 5.3 12.3 3m-15.6 -0.2c3.6 2.2 -1.6 12.5 -7 8.4m7 -2c4 1.8 8.7 0.5 10 -5m-2.3 4.2c0.4 2.9 4.5 5.2 10 4m-19.7 -1c5 4.3 -2.2 13 -5.5 9m7.4 -5.7c2.4 1.7 8.6 0.7 9.2 -4m-2.8 4c0.5 3 3 4.1 6.3 4.3m-14 -0.2c2.5 3.5 8.7 4.6 11.5 -0.1m-2.8 2.6c-0.2 3.4 3.5 6.2 7.4 5.4m-21 2.2c3.2 1.6 6.7 -4.5 4 -8.8m-0.3 15.3c4 0.3 4.4 -5.7 0.8 -9m8.1 14.4c3.3 -0.8 2.3 -8 -5.6 -8.5m15.5 13.8c3.2 -0.9 0.7 -8.8 -8 -8.3m20 11c2.1 -3.2 -5 -8.8 -10.7 -5.9m16.6 10.5c3.9 1 6.5 -9.2 -5.8 -7.6m13 7.6c3.3 -1 5.7 -7 -4.2 -5m11.7 5.5c3 1.5 4.4 -7.3 -4.8 -5m-45.8 -22.4c3.7 2.1 9.6 -0.4 9.1 -5.2m-1.5 4.2c1.3 2.2 0.8 6.6 -1.6 7.8m2 -2.5c2.5 1 5.9 0 7.9 -4m-3.5 4c0.7 1.7 1 5.2 -0.6 7m1.2 -4c2.8 1.5 6 -0.5 7.4 -3.4m-1.7 2.5c2 1.2 3.7 7.1 0.4 9.5m1.8 -2.7c2.4 0.1 6 0.1 8.2 -3m-1.6 1.7c2.1 0.6 4.6 4.2 3.7 7.3m0.2 -1.1c2.4 -0.3 6.5 -2 7.6 -4.8m-1.1 1.9a6.5 6.5 0 0 1 3.1 6.3m0 -2c2.4 -0.2 4.5 -1.4 5.2 -4m-0.7 1.7c1.8 0.6 4 2.6 4 5m-0.2 -1.5c1.8 -0.3 3 -1.4 4.2 -3.1m4.7 -0.3c2.3 2.3 -0.7 9.8 -5.4 8.4m-42.8 -160.6c-4.6 2.8 -17.8 2 -11.3 -9m12.6 1.6c-9.2 3.7 -20.5 -3.4 -8.7 -11m-3.1 -2.5c-7.7 0 -12.8 12.3 -2.5 16.5m-27.3 -11.4c-2 4 5.2 8.2 10 4.3 3.9 -3 3.6 -11.2 1.3 -14.3M281 160c-2.5 8.3 16 8.8 13 -4.4m-14 16.7c0.6 6.3 17.7 4.3 12.2 -8.4m2 -3.5c1.4 1.9 5.1 5.1 11.5 4.5m-8.5 -13.4c0.6 2.2 4.4 4 9.3 2.3M125.9 342.6c-4.4 3.1 2.3 8 4.7 2.6m-8.1 -0.2c-4.3 3 2.3 8 4.8 2.6m-8.4 -0.3c-4.3 3.1 2.3 8 4.8 2.6m-8.6 -0.4c-4.1 2.2 0.7 7.6 5 2.8m-9 -0.8c-4.2 2.2 0.7 7.6 4.9 2.9m16 -9.3c0 3.2 6.1 4.5 8.3 -0.3M136 348c-1.9 2.4 1.6 5.4 3.5 4.3m-11.6 -4.7c-0.2 2.7 5.1 4.2 7.7 1.3m-4.8 1.5c-1.7 2.2 1.6 5.2 3.8 4.3m-10.2 -4.7c0.2 2.2 3.2 4.6 6.5 3.2m-4.6 -0.3c-1.2 1.1 -0.6 3.8 1.2 4.6m-7.7 -4.8c-0.5 2 2.8 5.4 6.2 3.2m-5.5 -1c-2 1.7 -1.8 4 0.8 4.4m-5.6 -4.6c-0.3 1.3 1.4 3.5 3.6 3.2m-14.4 -3.3c-2 1 3.2 6.5 6.4 1.5m-11.3 0.8c-2.5 1.2 3.7 7.2 6.5 1m9.8 -1.3c-2 0.5 -3.2 3.3 -1.6 4.4m-4.8 -3.4c-0.2 1.2 2.1 3 4 2.3m-5.6 -1.8c-2 1.2 -1 4.5 1.3 4m-8 -1.8c-1.8 1.3 -0.6 4 1.8 3.3m1.4 -3.5c0 0.7 1.6 1.8 2.9 1.4M95.4 359c-2.2 1 -2.1 6.5 5.3 3.5m-10.3 -1.3c-3 1.5 -2 5.7 4.7 1.7m0.5 0.3c-0.8 0.6 -1.7 3.4 1.4 2.3m-7 -1c-1.3 1.1 -0.5 3.5 2.3 2.6m-8.8 -2.2c-2.3 1.3 2.7 3 6 -0.4m-4.5 2c-1 1 -1 4 1.6 3m-8 -1.8c-1.5 1.2 1 2.7 5.8 0.6m-4 1c-1.7 1.5 -1.5 3.3 1 2.8m-6.1 -2c-2 1.8 0.8 3 4.2 1.6m-4.2 0.4c-3.3 1.5 -1.9 4.3 0.2 3.2m111 6.4c-0.8 1.7 1.7 3 4.1 2.7 2.3 -0.4 4.5 -2.3 2.8 -5m0 3.3c2.3 1.8 6.4 -0.2 6.4 -2.9"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M332 116.7c-10 -5 -30.9 -14.4 -36.8 -6.8 5.4 -2.3 21.2 0.1 34.3 12.2z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M338 116.1c-11.5 -13.5 -18.4 -10.5 -26.7 -15.1 -7.9 -4.4 -20.4 -5.3 -22.8 1.7 11.5 -5.6 22 3 28.4 4 9 1.4 14 8.3 16.6 11.5l4.6 -2zm43.8 -1.7c-6 -13.8 -18.9 -10.2 -24.6 -16 -8.3 -8.6 -29.2 -16.5 -37.9 -10.6 19 -1 27.2 13.1 37.4 18 7.3 3.6 15 11.1 25.1 8.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M359.2 112.9c-10.3 -12.8 -26 -24.1 -33.4 -19.8 9.6 0.5 12.6 7.1 19.4 11.4 6.8 4.3 3.7 10.4 14 8.4zm-49 22.6c-10.7 -4 -31.8 -6 -41.6 6.3 16.3 2.7 41 1.2 41.7 -6.3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M308.3 140.3c-10.8 -5 -19.3 2 -29.4 1 -19.4 -1.9 -33.2 -0.8 -35 8.5 11.1 -9.9 29.7 -1.7 37.2 -3.8 7.6 -2 35.4 -0.2 44.2 3.6 -4.5 -5.6 -11.5 -7 -17 -9.3zm33.9 -28.8c-2.6 -8.3 -2.4 -17 10 -16.4 -3.1 -4 -14.7 -6 -16.6 8.6 -13.7 -10 -28.6 -11.8 -31.4 -3.1 7 -6 18 -1.6 31 13.2a23.2 23.2 0 0 1 7 -2.3z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M323.3 123c-7.8 -5 -18.3 -13.2 0.1 -16.5 -7.8 -4.3 -19.4 -2.4 -18.1 12.2 -21.2 -8.6 -36.3 -5.7 -39.5 2.7 -3.5 9.3 9.6 14.5 11.8 8.6 -2.4 1 -10.5 -1.8 -6.3 -7 4.3 -5.3 26.2 -1.4 47 9.5 5.8 3 25.6 2.5 5 -9.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M317.8 136.8c-6 -12.3 -25.5 -1.2 -29.4 -13 -5.4 17.4 27.7 7.7 29.4 13zm124 13.3c4 2 7.6 -1.2 1.3 -3.7 4 2 7.7 -1 1.4 -3.6 4.1 2 7.7 -1 1.4 -3.6 -1.7 1.7 -4 7.9 -4.2 10.9zm2 -23.6c9.1 -9.6 -0.7 -12.8 10.4 -22.6 9 -8 1.7 -13.4 10.3 -19.6 2.7 -2 8.7 -6 9.3 -10 3.6 9 -11.3 10.2 -10.3 24.8 0.6 9.3 -5.7 8.5 -8 24 -0.6 3.4 -2.8 10.7 -11.6 3.4z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M447.9 130.7c5 -10.8 10.8 -10.6 13.5 -14.8 5.3 -8 16.5 1.4 26 -5.8 -1.7 10.2 -14.4 6.6 -20 13.1 -5.4 6.5 -10 9.5 -19.5 7.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M449.1 134.3c8.8 -7 15.3 -2.4 21.4 -6 15.3 -9.4 21.5 1.8 35.1 -2.6 -3.6 8.8 -23.8 1.3 -32.6 7.8s-39.7 12.8 -23.9 0.8zm-25.6 50a11 11 0 0 0 -9.1 -9.8c-5.3 -0.6 -7.6 -6.1 -11.6 -6.4 -4 -0.2 -6.7 -8.2 -12.2 -8.1 -5.5 0.1 -7.8 7.3 5.2 13.8 13 6.5 27.2 14 27.7 10.5zm-16.3 3.4c-5.5 0.3 -6.3 8.3 -11.6 8.6 7.3 3.9 12.6 -1.8 16.4 -6.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M411.7 188.7c-4.7 4 -6.1 12.5 0.8 14.9 -4.2 -5.7 7.3 -8.3 3.7 -13.6z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M416.5 189c-3.8 7.3 5.9 8.2 3.4 13.7 5.5 -1.3 6.4 -11.7 1.4 -14.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M379.6 173.4c9 -0.5 17.3 4.4 22.8 12.3 3.5 5 15.3 7 19.4 3 4 -4 1.7 -12.5 -8.3 -9.8 -2.5 -4.2 -9.8 -2.7 -13.3 -6.2 -3.5 -3.6 -17.1 -13.6 -20.6 0.7z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M413.5 179c-2.4 0.4 -3.2 4.6 -1.7 6.7m6.8 -4.2c0.8 1.2 0.3 3 -0.1 3.9m-24.6 -11.6c4.6 0.2 5.5 3.6 10.5 4.9"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round" />
<path
android:pathData="M390.8 162.4c16 4 28.8 7.5 36.7 12a42.5 42.5 0 0 0 30.8 2.8c10.7 -3 31.3 -5.8 30.3 7.5 5.6 -6.6 -1.5 -13.8 -15.8 -15 0.3 -6.6 -6.7 -12.5 -11.7 -8.6 4.6 -0.6 8.6 8 -0.5 11.6A8.2 8.2 0 0 0 449 163c4.3 1.3 8.7 8.5 -1 11.3 -6.1 1.8 -15 -0.5 -21.6 -4.5 -6.6 -4 -43.8 -18.6 -35.7 -7.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M431.3 155.8c-5 2.3 -1.8 7.6 -9.5 10.6 -7.8 3 -13.2 10 -11.5 15.8 5.3 -11.5 14.6 -11 17.9 -15.6 3.2 -4.5 8 -11.1 3.1 -10.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M432.7 156.6c-0.3 9.2 -7.5 5.8 -4.7 18.7a26 26 0 0 1 -0.2 17c8 -5.8 2.9 -18.2 6.5 -22.9a33 33 0 0 0 5 -8.8c-2 5.3 -1.8 15 3.3 17.6 -4.1 -9.8 11.2 -17.8 0.6 -29.1 -1.5 2.7 -6.2 7.6 -10.5 7.5zm-25.6 -9.2c1.2 2 2.5 6.7 1.4 9.3a22 22 0 0 0 7.2 -8c5.2 0.7 7.2 7.1 2.3 10 3 0 8.2 0 11 -3.5 -3.5 -3.9 -14.4 -9.9 -22 -7.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M329 129.4a9.6 9.6 0 0 0 -4.7 -2c-7.6 -1.5 -3.6 -8.3 2.8 -8.3 13.8 -15 21.6 -3.4 38.4 -8.2 6 -1.7 10 -1.2 13.2 0.2 7.5 -5 16.3 -3.6 22.7 2.3 0.7 -1.1 1.7 -2 3 -2.4 6 -1.6 10.7 3.4 12.3 10 4.6 -1 9.9 1.4 13.4 4.5 4.7 -2.5 8 -2.6 9.2 0 4.3 -2 9.8 -3.3 12.6 3.5 2.8 6.8 -6.5 4.7 -8 19 -1 8.9 -10.8 12.4 -18.6 7 -12.5 -8.3 -24.6 -9.7 -30.7 3.1 -6 12.8 -10.7 20.3 -25.3 16 -5.3 -1.4 -12 0.6 -16.3 6.4 -4.3 5.7 -10.8 0.3 -18.6 1 9.8 -1.5 6 -4 14.5 -4.6 7.8 -0.5 5.8 -7.7 10.8 -8.8 -19.5 5 -18.8 -2.2 -34.9 2.8 7 -9 18.1 -4 23.6 -9.3 -14.5 -0.2 -21 -9.7 -27.6 -5.8 -10.3 6.3 -5.8 24.2 -32.6 22.6 -13 -0.7 -21.4 1 -29.2 8.8 13.6 -28 32 -12.6 41 -21.6a66 66 0 0 0 12 -14.3 6 6 0 0 1 4 -3.1c-22.4 -7 -8.9 -18 13 -18.8z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M439.3 125.5c0.4 0.7 0.5 1.6 0.5 2.7 0 5.6 -8.2 5.8 -8.7 14 -0.3 4.2 -0.8 6.6 -3.7 6.1 -2.9 -0.5 -5.4 -5 -2.6 -10.3"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round" />
<path
android:pathData="M333.1 121.2a10.6 10.6 0 0 0 -6 -2m51.5 -8.1c6.7 2.9 9.9 9.8 19.6 10 9.3 0.4 15 13.9 30.6 5.1l1.2 -0.6m-28.6 -12.2a12.3 12.3 0 0 0 -1.3 8m-29 20.4c-11.9 0 -14.9 6 -14.9 11.8 0 5.8 5.6 13.3 15.3 13.3 9.8 0 15.1 -6 15.1 -12.6s-6 -12.5 -15.6 -12.5z"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M373.2 166.6c-0.3 -3.2 -6.2 -2.7 -6 -5.2s3.3 -3.6 3.3 -7 5.3 -3.8 7 -1c1.8 2.7 7.1 8 8.2 5.3m-8.1 -5.4a9.7 9.7 0 0 0 -0.4 12.8m4.1 -8.5c-0.8 1.9 -1 4.8 0 6.5"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M428.2 148.4c9.3 0.7 10.8 -9.4 4 -10m-15.3 -17.5c-3.2 -4 -10.6 -5.4 -10.7 3.2"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M405.3 134c-3.1 -7.8 -11.2 -9 -15.4 -5 -3.6 3.2 -3.7 11.6 4 13.4 2.6 -3.1 7.8 -7.3 11.4 -8.4zm-3.4 -4.9c-4.6 -4 -11.2 3.6 -5.2 10.6M316 148c3 -0.7 7.4 0.8 14.2 4 4.3 2 17 6.3 25.1 2 -8.3 3 -14.5 -9.6 -20.8 -8 -6.3 1.5 -17.8 3.8 -22.6 -0.8 11.8 0.8 18.1 -8.6 31.6 -0.5a23 23 0 0 0 12.8 3.5c-11 -13.3 -25.6 -4.8 -27.1 -15.6 6.7 7.2 23 -1.6 31.2 11.8m-28.8 -9.8c-1.6 -1.9 -0.9 -3.8 -2.5 -5.3"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
<path
android:pathData="M416.9 121c-2.8 -3 -8.8 -0.7 -7.1 5.3a9.4 9.4 0 0 1 7 -5.4zm-17.1 16a20.6 20.6 0 0 1 5.5 -3 12 12 0 0 0 -3.7 -5.1c-1.4 -1 -5.6 4.6 -1.8 8.1"
android:fillColor="#000000" />
<path
android:pathData="M392.4 126.8c-4.5 -3 -8.7 -2.7 -10 -0.2 -3.3 -0.1 -6 2.3 -6.2 7m7 2c-5.4 -3.7 -12.8 -2.3 -12.3 6m-3.2 4.7c2.6 -2.1 6.4 -3.6 9.2 0.1m31 -8.3c-1 1.4 -1.7 3.6 0 6.8 -2 -2.6 -7.1 -2.6 -12.5 4.4m24.5 -11.5c-6.5 0.7 -6.4 5 -1.1 6.9m-45.4 -22.9c-5.5 -1.1 -9.5 2.2 -1.9 5M384 118c-7.8 -2 -11 0 -7.4 1.8m-15.1 29.4c-0.3 2.8 1.3 6.4 5.8 2.3m-4.3 6c0 0.8 -0.1 1.6 -0.6 2.3m-17.5 -39c-4.7 -1.5 -5.6 -5.9 -0.1 -5.5m-1.5 15.6c-5.3 -1.8 -5.3 -7 -0.9 -6.4m10.7 3.7c-6.2 -1.5 -6.4 -5.7 -1.8 -5.1m2.5 -8c-3.2 -0.2 -8.3 3.5 0.2 5.6m9 1.8c-7.7 -1.2 -7.5 2 -3 4m8.8 -11.3c-6 -1.1 -8 2.4 -4 3.9M350.3 137c-1.4 -1.2 -2.6 -6.9 4.3 -5.2m10 3.4c-4.6 -1.2 -9 3.3 -4.8 6m11 -11.4c-5 -0.8 -9 0.5 -6.4 2.3"
android:strokeColor="#000000"
android:strokeWidth="0.4"
android:strokeLineCap="round" />
<path
android:pathData="M416.6 121a9.3 9.3 0 0 0 -6.8 5.3"
android:fillColor="#FFFFFF"
android:strokeColor="#000000"
android:strokeWidth="0.4" />
</vector>
@@ -0,0 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M-68 0h699.7v512H-68z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M-93 -77.8h218.7v276.2H-93zM249.4 -0.6h381v199h-381zM-67.6 320h190.4v190.3H-67.5zm319.6 2.1h378.3v188.2H252z"
android:fillType="evenOdd"
android:fillColor="#D72828" />
<path
android:pathData="M156.7 -25.4H221v535.7h-64.5z"
android:fillType="evenOdd"
android:fillColor="#003897" />
<path
android:pathData="M-67.5 224.8h697.8v63.5H-67.5z"
android:fillType="evenOdd"
android:fillColor="#003897" />
</group>
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#00CBFF" />
<path
android:pathData="M0 192h512v128H0z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 212.7h512V299H0z"
android:fillType="evenOdd"
android:fillColor="#000001" />
</vector>
@@ -0,0 +1,54 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0Z"
android:fillColor="#CE1720" />
<group
android:scaleX="0.5625"
android:scaleY="0.56889"
android:translateX="5">
<clip-path
android:pathData="M0 0h200v608h8v284l-8 8H0Z" />
<path
android:pathData="M36 0v14h-9v14H16v16H8v13H-8V24H8V6H-8V0Zm26 77v15h-8v12h-8V92h-8V77h-8V57h8V42h8V30h8v12h8v15h8v20Zm-17 -1h10V58H45ZM19 183h8v-18h-8zm54 0h8v-18h-8ZM-8 305H6v13h6v16h9v15h12v-15h9v-16h8v-13H38v-15h21v10h13v17h11v19h-8v14h-7v13h-6v14h-9v12h-7v11h-9v14H24v-15h-9v-14H8v-9H-8v-23H8v-20H-8Z"
android:fillColor="#FFFFFF" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="200">
<path
android:pathData="M36 0v14h-9v14H16v16H8v13H-8V24H8V6H-8V0Zm26 77v15h-8v12h-8V92h-8V77h-8V57h8V42h8V30h8v12h8v15h8v20Zm-17 -1h10V58H45ZM19 183h8v-18h-8zm54 0h8v-18h-8ZM-8 305H6v13h6v16h9v15h12v-15h9v-16h8v-13H38v-15h21v10h13v17h11v19h-8v14h-7v13h-6v14h-9v12h-7v11h-9v14H24v-15h-9v-14H8v-9H-8v-23H8v-20H-8Z"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M96 0v32h8V0h32v14h-8v14h-12v16h-8v13H92V44h-8V28H72V14h-8V0Zm-2 274v-11h-6v-13h-7v-14h-8v-14h-8v-10h-9v-14H44v14h-9v10h-7v14h-8v14h-6v13H8v17H-8v-44H8v-20H-8v-33H8v14h10v14h10v-14h10v-14h8v-18h-8v-14H28v-14H18v14H8v14H-8v-41H8v-19H-8V77H8v13h8v16h11v13h9v15h7v12h14v-12h7v-15h9v-13h11V90h8V77h16v13h8v16h11v13h9v15h7v12h14v-12h7v-15h9v-13h11V90h8V77h16v28h-16v19h16v41h-16v-14h-10v-14h-10v14h-10v14h-8v18h8v14h10v14h10v-14h10v-14h16v33h-16v20h16v44h-16v-17h-6v-13h-6v-14h-8v-14h-7v-10h-9v-14h-12v14h-9v10h-8v14h-8v14h-7v13h-6v11zm2 -167v27h8v-27zm-4 58v-14H82v-14H72v14H62v14h-8v18h8v14h10v14h10v-14h10v-14h16v14h10v14h10v-14h10v-14h8v-18h-8v-14h-10v-14h-10v14h-10v14zm4 46v27h8v-27z"
android:fillColor="#FFFFFF" />
<group
android:scaleY="-1"
android:translateY="900">
<path
android:pathData="M36 0v14h-9v14H16v16H8v13H-8V24H8V6H-8V0Zm26 77v15h-8v12h-8V92h-8V77h-8V57h8V42h8V30h8v12h8v15h8v20Zm-17 -1h10V58H45ZM19 183h8v-18h-8zm54 0h8v-18h-8ZM-8 305H6v13h6v16h9v15h12v-15h9v-16h8v-13H38v-15h21v10h13v17h11v19h-8v14h-7v13h-6v14h-9v12h-7v11h-9v14H24v-15h-9v-14H8v-9H-8v-23H8v-20H-8Z"
android:fillColor="#FFFFFF" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="200">
<path
android:pathData="M36 0v14h-9v14H16v16H8v13H-8V24H8V6H-8V0Zm26 77v15h-8v12h-8V92h-8V77h-8V57h8V42h8V30h8v12h8v15h8v20Zm-17 -1h10V58H45ZM19 183h8v-18h-8zm54 0h8v-18h-8ZM-8 305H6v13h6v16h9v15h12v-15h9v-16h8v-13H38v-15h21v10h13v17h11v19h-8v14h-7v13h-6v14h-9v12h-7v11h-9v14H24v-15h-9v-14H8v-9H-8v-23H8v-20H-8Z"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M96 0v32h8V0h32v14h-8v14h-12v16h-8v13H92V44h-8V28H72V14h-8V0Zm-2 274v-11h-6v-13h-7v-14h-8v-14h-8v-10h-9v-14H44v14h-9v10h-7v14h-8v14h-6v13H8v17H-8v-44H8v-20H-8v-33H8v14h10v14h10v-14h10v-14h8v-18h-8v-14H28v-14H18v14H8v14H-8v-41H8v-19H-8V77H8v13h8v16h11v13h9v15h7v12h14v-12h7v-15h9v-13h11V90h8V77h16v13h8v16h11v13h9v15h7v12h14v-12h7v-15h9v-13h11V90h8V77h16v28h-16v19h16v41h-16v-14h-10v-14h-10v14h-10v14h-8v18h8v14h10v14h10v-14h10v-14h16v33h-16v20h16v44h-16v-17h-6v-13h-6v-14h-8v-14h-7v-10h-9v-14h-12v14h-9v10h-8v14h-8v14h-7v13h-6v11zm2 -167v27h8v-27zm-4 58v-14H82v-14H72v14H62v14h-8v18h8v14h10v14h10v-14h10v-14h16v14h10v14h10v-14h10v-14h8v-18h-8v-14h-10v-14h-10v14h-10v14zm4 46v27h8v-27z"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M-8 408H8v14h7v8h8v14h7v12h-7v14h-8v8H8v14H-8Zm216 0v84h-16v-14h-7v-8h-8v-14h-7v-12h7v-14h8v-8h7v-14ZM62 459h8v-18h-8zm76 0v-18h-8v18zm-42 -59h8v-18h-8zm0 100v18h8v-18Zm-50 -75h14v-11h10v-10h5v-10h6v-14h8v-14h4v-13h14v13h4v14h8v14h6v10h5v10h10v11h14v50h-14v11h-10v10h-5v10h-6v14h-8v14h-4v13H93v-13h-4v-14h-8v-14h-6v-10h-5v-10H60v-11H46Zm50 9v-15h-8v-10h-8v25h8v9h5v14h-5v9h-8v25h8v-10h8v-15h8v15h8v10h8v-25h-8v-9h-5v-14h5v-9h8v-25h-8v10h-8v15z"
android:fillColor="#FFFFFF" />
</group>
<path
android:pathData="M117.3 341.3h395V512h-395z"
android:fillColor="#007C30" />
</vector>
File diff suppressed because one or more lines are too long
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M81.1 0h362.3v512H81.1z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M-100 0H81.1v512H-100zm543.4 0h181.1v512H443.4zM135.3 247.4l-14 4.8 65.4 57.5c5 14.8 -1.7 19.1 -6 26.9l71 -9 -1.8 71.5 14.8 -0.5 -3.3 -70.9 71.2 8.4c-4.4 -9.3 -8.3 -14.2 -4.3 -29l65.4 -54.5 -11.4 -4.1c-9.4 -7.3 4 -34.8 6 -52.2 0 0 -38.1 13.1 -40.6 6.2l-9.9 -18.5 -34.6 38c-3.8 1 -5.4 -0.6 -6.3 -3.8l16 -79.7 -25.4 14.3c-2.1 0.9 -4.2 0 -5.6 -2.4l-24.5 -49 -25.2 50.9c-1.9 1.8 -3.8 2 -5.4 0.8l-24.2 -13.6 14.5 79.2c-1.1 3 -3.9 4 -7.1 2.3l-33.3 -37.8c-4.3 7 -7.3 18.4 -13 21 -5.7 2.3 -25 -4.9 -37.9 -7.7 4.4 15.9 18.2 42.3 9.5 51z"
android:fillColor="#D52B1E" />
</vector>
@@ -0,0 +1,67 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#008000" />
<path
android:pathData="M329.4 250.4A61.2 61.2 0 0 1 207 250.4A61.2 61.2 0 0 1 329.4 250.4Z"
android:fillColor="#FFE000" />
<path
android:pathData="M337.7 250.4A50.4 50.4 0 0 1 236.9 250.4A50.4 50.4 0 0 1 337.7 250.4Z"
android:fillColor="#008000" />
<path
android:pathData="M139.4 189.2A64.2 64.2 0 0 1 11 189.2A64.2 64.2 0 0 1 139.4 189.2Z"
android:fillColor="#FFE000" />
<path
android:pathData="M70.7 237.6h16s0.8 -1.5 -0.1 -2.2c-0.9 -0.8 -4.3 -1 -3.4 -3.5 2 -5.4 2.2 -3.7 3.4 -16.4 1.2 -12.7 1.7 -32.6 1.7 -32.6H86s0.5 6.2 -0.9 14.3c-1.3 8 -1.7 8.7 -3.2 15 -1.4 6.1 -1.7 6.6 -3 10.3 -1.3 3.6 -1.5 3.7 -3.5 7l-2.5 4.2c-0.6 1 -1.3 0.7 -1.7 1.4 -0.4 0.8 -0.5 2.5 -0.5 2.5z"
android:fillColor="#802000"
android:strokeColor="#7B3100"
android:strokeWidth="1.4" />
<path
android:pathData="M83 142.5c0 2.5 -0.2 5.7 -1.2 8.4 -1 3 -2.2 6 -2.1 9 -1.7 0.7 -3.4 -3.5 -5 -1 1.2 3.3 4 6 5.9 9 0.3 1 3 3.5 1.5 4 -4 -1.3 -5 -6.4 -7.5 -9.5a17.5 17.5 0 0 0 -14.2 -9c-2.3 0 -9.6 -0.6 -7.7 3.2 2.8 2 6.3 3.2 9 5.3 2.1 0.2 5.8 3.6 5.6 5 -3.6 -1.5 -5.3 -3.3 -9.2 -4.8 -5.3 -2 -12.6 -0.9 -15.5 4.4 -0.6 1.4 -1.4 5.3 0.3 5.7 2 -3.1 5 -6.6 9.2 -5.7 3.3 0.3 -3.8 6.3 -1 5 0.8 -0.3 2.8 -1.6 4.1 -1.7 1.4 -0.2 2.2 0.8 3.2 1 2.1 0.3 2.7 1.1 2.5 1.6 -0.2 0.6 -1 0.1 -3 0.8 -1 0.3 -1.6 1.3 -2.9 1.7 -1.2 0.4 -3.8 0.4 -4.7 0 -3.4 -1.4 -8.9 -1.1 -10 3 0 2 -1.6 -0.1 -2.3 0.7 -0.6 2 -0.8 4 -3.8 3.9 -1.8 1.9 -3.6 3.9 -6 5.2 1.4 3.1 6.8 -3.1 6.5 -0.5 -2.3 3.2 1.2 3.9 2.8 1.4 2.6 -2.8 5.9 -6.1 9.8 -3.3 1.9 1.7 3 -1 4.3 -0.8 0.9 2.2 2 0 3 -0.5 1.5 -0.2 1 2 3 0.6 3.7 -2.5 8.3 -0.4 12 -2.8 3.8 -1.8 0.5 1.4 -0.6 2.7 -1.7 3.3 -0.2 7.7 -4 9.7 -1.4 4 1.8 9.2 -1.5 12.1 -0.5 1.9 4.3 1.7 5.6 2.4 2.4 0.1 0 -5.3 2.2 -6 3.1 1.9 3 -3.5 2.4 -5.2 0.3 -3.7 0.5 -7.8 2.3 -11.3 2 -4.1 3.9 1.7 1.6 3.4 -1.2 3.8 -3 8.7 -0.2 12.2 0.9 0.2 1.5 2.2 2.6 2.8 1 0.7 2.5 -0.1 2.8 -2 1.4 -5.4 0.7 -11.4 2.7 -16.7 1.3 -1.7 3.3 -0.3 4.1 1.2 2.8 3.2 4.7 7.2 8 9.9a14 14 0 0 1 7.2 6.7c0 2.4 6.8 2.7 4.8 0 -2 -2.5 -0.7 -5.2 1.3 -6.9 1 0.3 0.7 -1.6 0 -0.9 -1.4 -0.3 -1.5 -2.8 0.3 -1.6 3.2 1 -0.2 -2.3 -1.3 -2.4 -2.7 -1.6 -5.7 -3.5 -7 -6.4 3.4 0 7 2 10.5 0.8 2.9 -1.5 5.7 0.1 6.7 2.6 2.2 -0.4 1.3 -2.5 0 -3.3 1.6 -0.6 2.7 -2 0.8 -3.2 -1 -1.4 1.4 -3.6 -1.6 -3.5 0.1 -2.3 -0.8 -4.3 -3.2 -5.1 -2.5 -2.1 -9.7 3 -9.5 -1.7 -0.7 -2.5 3 -0.3 4 -1.6 1 -2.7 -5 -2.4 -3 -4.5 1.2 -0.8 7.4 -2 2.6 -3a7.6 7.6 0 0 1 -6.4 -1c-1.7 3 -6.7 -1.6 -5.8 3.6 -0.7 2 -5 7 -6.3 3.1 1 -3 6.3 -4 4.6 -8 -0.2 -2.6 -2.3 0.4 -3.3 0.2 -0.5 -1.6 1.5 -3.5 3 -3.9 2.7 2.2 2.8 -2.7 5.5 -2.3 2 -0.4 -0.7 -1.2 -1.2 -1.6 0.5 -1.4 3.5 -2.2 0.6 -3.4 -2.6 -2 -4.5 2 -6.6 2.1 -2 -2.3 1.8 -3.4 2.9 -4.6 0 -1 -2.3 -0.3 -1.6 -1 0.6 -1.2 4.8 -1.3 2.8 -2.9 -2.9 -1 -6.6 -0.7 -9.4 0.5 -1.8 0.6 -2.3 4.6 -3.8 4.4 -0.8 -1.7 0.2 -5.2 -2.2 -5.8zm13.7 38.9c2.3 -0.4 0 3.3 -1 3.3 0.1 -1.3 -3.2 -1.2 -1.1 -2.4a6.7 6.7 0 0 1 2.1 -1z"
android:fillColor="#008000" />
<group
android:scaleX="0.05833"
android:scaleY="0.05833"
android:translateX="-25.8"
android:translateY="103.5">
<group
android:translateX="7560"
android:translateY="4200">
<path
android:pathData="M0 -360l69.4 215.8 212 -80.3L156 -35.6 351 80.1 125 99.8l31.1 224.6L0 160l-156.2 164.3 31.1 -224.5L-351 80l195 -115.7 -125.5 -188.9 212 80.3z"
android:fillColor="#FFE000" />
</group>
<group
android:translateX="6300"
android:translateY="2205">
<path
android:pathData="M0 -360l69.4 215.8 212 -80.3L156 -35.6 351 80.1 125 99.8l31.1 224.6L0 160l-156.2 164.3 31.1 -224.5L-351 80l195 -115.7 -125.5 -188.9 212 80.3z"
android:fillColor="#FFE000" />
</group>
<group
android:translateX="7560"
android:translateY="840">
<path
android:pathData="M0 -360l69.4 215.8 212 -80.3L156 -35.6 351 80.1 125 99.8l31.1 224.6L0 160l-156.2 164.3 31.1 -224.5L-351 80l195 -115.7 -125.5 -188.9 212 80.3z"
android:fillColor="#FFE000" />
</group>
<group
android:translateX="8680"
android:translateY="1869">
<path
android:pathData="M0 -360l69.4 215.8 212 -80.3L156 -35.6 351 80.1 125 99.8l31.1 224.6L0 160l-156.2 164.3 31.1 -224.5L-351 80l195 -115.7 -125.5 -188.9 212 80.3z"
android:fillColor="#FFE000" />
</group>
<group
android:translateX="8064"
android:translateY="2730">
<path
android:pathData="M0 -210L54.9 -75.5l144.8 10.6 -111 93.8 34.7 141L0 93.3 -123.4 170l34.6 -141 -111 -93.8 145 -10.6z"
android:fillColor="#FFE000" />
</group>
</group>
</vector>
@@ -0,0 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="0.853"
android:scaleY="0.853"
android:translateY="75.1">
<clip-path
android:pathData="M0 -88h600v600H0z" />
<path
android:pathData="M0 -88h800v600H0z"
android:fillColor="#007FFF" />
<path
android:pathData="M36 32h84l26 -84 26 84h84l-68 52 26 84 -68 -52 -68 52 26 -84zM750 -88L0 362v150h50L800 62V-88z"
android:fillColor="#F7D618" />
<path
android:pathData="M800 -88L0 392v120L800 32z"
android:fillColor="#CE1021" />
</group>
</vector>
@@ -0,0 +1,41 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#003399" />
<path
android:pathData="M288.5 266.5A32.5 32.5 0 0 1 223.5 266.5A32.5 32.5 0 0 1 288.5 266.5Z"
android:strokeColor="#FFCC00"
android:strokeWidth="29.3" />
<path
android:pathData="M350.2 266.5A94.2 94.2 0 0 1 161.8 266.5A94.2 94.2 0 0 1 350.2 266.5Z"
android:strokeColor="#FFCC00"
android:strokeWidth="29.3" />
<path
android:pathData="M346.3 176.1l90.3 90.3 -90.3 90.3 -90.3 -90.3z"
android:fillColor="#003399" />
<path
android:pathData="M102.1 251.8h63.2v29.3h-63.2zm276.4 0h94.2v29.3h-94.2zm-76.6 -51.9l41.3 -41.3 20.7 20.7 -41.3 41.3zM241.3 51.8h29.3V166h-29.3z"
android:fillColor="#FFCC00" />
<path
android:pathData="M169.5 170.3A14.7 14.7 0 0 1 140.1 170.3A14.7 14.7 0 0 1 169.5 170.3Z"
android:fillColor="#FFCC00" />
<path
android:pathData="M83.3 266.5A14.7 14.7 0 0 1 53.9 266.5A14.7 14.7 0 0 1 83.3 266.5Z"
android:fillColor="#FFCC00" />
<path
android:pathData="M270.7 406.8A14.7 14.7 0 0 1 241.3 406.8A14.7 14.7 0 0 1 270.7 406.8Z"
android:fillColor="#FFCC00" />
<path
android:pathData="M270.7 453.9A14.7 14.7 0 0 1 241.3 453.9A14.7 14.7 0 0 1 270.7 453.9Z"
android:fillColor="#FFCC00" />
<path
android:pathData="M364.9 266.5A14.7 14.7 0 0 1 335.5 266.5A14.7 14.7 0 0 1 364.9 266.5Z"
android:fillColor="#FFCC00" />
<path
android:pathData="M136.9 364.3l20.7 -20.7 20.7 20.7 -20.7 20.7zm218.5 22.3L376 366l20.7 20.7 -20.7 20.8z"
android:fillColor="#FFCC00" />
</vector>
@@ -0,0 +1,34 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M-52 -0.5h768v127H-52z"
android:fillType="evenOdd"
android:fillColor="#0000FF" />
<path
android:pathData="M-52 383.5h768V512H-52z"
android:fillType="evenOdd"
android:fillColor="#FFFF00" />
<path
android:pathData="M-52 255h768v128.5H-52z"
android:fillType="evenOdd"
android:fillColor="#009A00" />
<path
android:pathData="M-52 126.5h768V255H-52z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M268 0h128v512H268z"
android:fillType="evenOdd"
android:fillColor="#FF0000" />
<path
android:pathData="M109.5 112.3L75.9 89.1l-33.4 23.4 11.6 -39.2 -32.5 -24.6 40.7 -1L75.7 8.8l13.5 38.6 40.8 0.8L97.6 73"
android:fillType="evenOdd"
android:fillColor="#FFFF00" />
</group>
</vector>
@@ -0,0 +1,25 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="1.032"
android:scaleY="1.032"
android:translateX="-119.5">
<clip-path
android:pathData="M115.7 0h496.1v496h-496z" />
<path
android:pathData="M0 0h744v496H0z"
android:fillType="evenOdd"
android:fillColor="#FFFF00" />
<path
android:pathData="M0 0v496L496 0z"
android:fillType="evenOdd"
android:fillColor="#00CA00" />
<path
android:pathData="M248 496h496V0z"
android:fillType="evenOdd"
android:fillColor="#FF0000" />
</group>
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#FF0000" />
<path
android:pathData="M96 208h320v96H96z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M208 96h96v320h-96z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M341.5 0H512v512H341.5z"
android:fillType="evenOdd"
android:fillColor="#00CD00" />
<path
android:pathData="M0 0h170.3v512H0z"
android:fillType="evenOdd"
android:fillColor="#FF9A00" />
<path
android:pathData="M170.3 0h171.2v512H170.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</vector>
@@ -0,0 +1,28 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#000066" />
<path
android:pathData="M344.8 250.1l5.7 -18.3 -15.4 -11.7 19.4 -0.2 6.5 -18.1 6.3 18.1 19.4 0.6 -15.6 11.4 5.6 18.4 -15.9 -11m29.7 14.4l11.4 -15.3 -10.6 -16.3 18.4 6.4 12 -14.8V233l18 7.1 -18.4 5.5 -0.9 19.2 -11.3 -15.8m-108 16.5l-0.8 -19.2 -18.4 -5.7 18.2 -7v-19.1l12 14.9 18.4 -6.2 -10.8 16.1 11.4 15.4 -18.6 -5m-43.6 45l-8 -17.4 -19.2 2 14 -13.5 -7.2 -17.7 16.7 9 14.6 -13 -3.7 19.1 16.3 9.7 -19 2.8m-19.2 61l-14.6 -12.1 -16.5 10 7 -18.3 -14 -12.8 18.9 0.9 7.7 -18 4.7 18.8 18.9 1.7 -16 10.8m3.5 66.3l-18.2 -5.3 -11 16 -0.8 -19.7 -18 -6 17.7 -6.9v-19.7l11.7 15.5 18 -6.1 -10.5 16.3m32.4 55.9l-18.7 2.6 -3.8 19.1L244 428l-18.8 1.8 13.5 -13.5 -7.9 -18 16.9 9.3 14 -13 -3 19.3m49.4 41.7l-16.7 9 3 19.3 -14.1 -13.6 -17 8.3 8 -17.4 -13.5 -14.1 19 2.8 8.7 -17 3.7 19m59.1 10l-9 16.8 12.8 14.5 -19.1 -3.6 -9.8 16.4 -2.7 -19 -18.9 -4.4 17.4 -8.2 -1.9 -19 13.5 13.9m63 -14.4l-0.7 19.2 18 7 -18.6 5.6 -1.3 19.1 -11 -15.7 -18.8 4.9 11.9 -15.4 -10.3 -16.1 18.3 6.2m59.8 -223.2l13.1 13.9 17.5 -8.1 -9 17.4L475 284l-18.7 -3 -9.8 17 -2.5 -19.3 -18.6 -4 17.2 -8.7m37.6 23.1l6 18.3 19.1 0.3 -15.5 11.7L495 338l-15.6 -11 -16 11.1 6 -18.5 -15.2 -11.6 19.3 -0.5m21.4 36.5l-2.2 19 17.3 8.6 -19 4 -3 19 -9.5 -16.7 -19.1 3.2 13 -14.3 -8.8 -17 17.7 7.9m3.2 43.7l-8.5 17.1 13.3 14 -19.1 -2.8 -9.3 16.7 -3.3 -18.9 -19 -3.7 17 -8.8 -2.5 -19 14 13.5m-10.9 43l-16.1 10 4.1 19 -14.8 -12.6 -16.5 9.4 7 -18 -14.4 -13.2 19.1 1.6 7.7 -17.6 4.9 19"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 -0.5h256v256H0z"
android:fillColor="#000066" />
<path
android:pathData="M256 -0.5v32l-95 96 95 93.5v34.5h-33.5l-95.5 -94 -93 94H0v-34L93 128 0 36.5v-37h31l96 94 93 -94z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M92 161.5l5.5 17 -76.5 77H0V254zm62 -6l27 4 75 73.5v22.5zM256 -0.5l-96 98 -2 -22 75 -76zM0 0l96.5 94.5 -29.5 -4L0 24z"
android:fillColor="#C8102E" />
<path
android:pathData="M88 -0.5v256h80V-0.5zm-88 88v80h256v-80z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 103.5v48h256v-48zM104 -0.5v256h48V-0.5z"
android:fillColor="#C8102E" />
</vector>
@@ -0,0 +1,28 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="0.722"
android:scaleY="0.722">
<clip-path
android:pathData="M0 0h708.7v708.7H0z" />
<path
android:pathData="M354.3 0H1063v354.3H354.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 0h354.3v354.3H0z"
android:fillType="evenOdd"
android:fillColor="#0039A6" />
<path
android:pathData="M232.3 265.3l-55 -41.1 -54.5 41.5 20.3 -67.5 -54.5 -41.7 67.4 -0.6 21 -67.3 21.3 67.2h67.5L211.4 198z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 354.3h1063v354.4H0z"
android:fillType="evenOdd"
android:fillColor="#D52B1E" />
</group>
</vector>
@@ -0,0 +1,87 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h170.7v512H0z"
android:fillColor="#007A5E" />
<path
android:pathData="M170.7 0h170.6v512H170.7z"
android:fillColor="#CE1126" />
<path
android:pathData="M341.3 0H512v512H341.3z"
android:fillColor="#FCD116" />
<group
android:scaleX="5.6889"
android:scaleY="5.6889"
android:translateX="256"
android:translateY="256">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
<group
android:rotation="-0"
android:scaleX="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
</group>
<group
android:rotation="72">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
<group
android:rotation="-0"
android:scaleX="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
</group>
</group>
<group
android:rotation="-36"
android:scaleX="-1"
android:scaleY="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
<group
android:rotation="-0"
android:scaleX="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
</group>
</group>
<group
android:rotation="36"
android:scaleX="-1"
android:scaleY="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
<group
android:rotation="-0"
android:scaleX="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
</group>
</group>
<group
android:rotation="-72">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
<group
android:rotation="-0"
android:scaleX="-1">
<path
android:pathData="M0 -8L-2.5 -0.4 1.3 0.9z"
android:fillColor="#FCD116" />
</group>
</group>
</group>
</vector>
@@ -0,0 +1,58 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#EE1C25" />
<group
android:scaleX="76.8"
android:scaleY="76.8"
android:translateX="128"
android:translateY="128">
<path
android:pathData="M1 -0.3L-0.7 0.8 0 -1 0.6 0.8 -1 -0.3z"
android:fillColor="#FFFF00" />
</group>
<group
android:rotation="59"
android:scaleX="-25.5827"
android:scaleY="-25.5827"
android:translateX="256.3313"
android:translateY="51.02527">
<path
android:pathData="M1 -0.3L-0.7 0.8 0 -1 0.6 0.8 -1 -0.3z"
android:fillColor="#FFFF00" />
</group>
<group
android:rotation="81.9"
android:scaleX="-25.6"
android:scaleY="-25.6"
android:translateX="307.0804"
android:translateY="102.4708">
<path
android:pathData="M1 -0.3L-0.7 0.8 0 -1 0.6 0.8 -1 -0.3z"
android:fillColor="#FFFF00" />
</group>
<group
android:rotation="-74"
android:scaleX="25.6137"
android:scaleY="25.6137"
android:translateX="306.9002"
android:translateY="179.2703">
<path
android:pathData="M1 -0.3L-0.7 0.8 0 -1 0.6 0.8 -1 -0.3z"
android:fillColor="#FFFF00" />
</group>
<group
android:rotation="-51.29543"
android:scaleX="25.58752"
android:scaleY="25.58752"
android:translateX="256"
android:translateY="230.4">
<path
android:pathData="M1 -0.3L-0.7 0.8 0 -1 0.6 0.8 -1 -0.3z"
android:fillColor="#FFFF00" />
</group>
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#FFE800" />
<path
android:pathData="M0 256h512v256H0z"
android:fillType="evenOdd"
android:fillColor="#00148E" />
<path
android:pathData="M0 384h512v128H0z"
android:fillType="evenOdd"
android:fillColor="#DA0010" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 0h170.7v512H0z"
android:fillType="evenOdd"
android:fillColor="#000091" />
<path
android:pathData="M341.3 0H512v512H341.3z"
android:fillType="evenOdd"
android:fillColor="#E1000F" />
</vector>
@@ -0,0 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillType="evenOdd"
android:fillColor="#0000B4" />
<path
android:pathData="M0 80.5h512v343.7H0z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 168.2h512v168.2H0z"
android:fillType="evenOdd"
android:fillColor="#D90000" />
</vector>
@@ -0,0 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M-32 0h768v512H-32z"
android:fillType="evenOdd"
android:fillColor="#002A8F" />
<path
android:pathData="M-32 102.4h768v102.4H-32zm0 204.8h768v102.4H-32z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M-32 0l440.7 255.7L-32 511z"
android:fillType="evenOdd"
android:fillColor="#CB1515" />
<path
android:pathData="M161.8 325.5L114.3 290l-47.2 35.8 17.6 -58.1 -47.2 -36 58.3 -0.4 18.1 -58 18.5 57.8 58.3 0.1 -46.9 36.3z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
</group>
</vector>
@@ -0,0 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group>
<clip-path
android:pathData="M0 0h512v512H0z" />
<path
android:pathData="M-123.4 233H723v206h-846.5z"
android:fillType="evenOdd"
android:fillColor="#FFFFFF" />
<path
android:pathData="M-122.8 0h846v256.6h-846zm0.3 385.9h852.1V512h-852.1z"
android:fillType="evenOdd"
android:fillColor="#081873" />
<path
android:pathData="M-122.5 302.6h846v39.6h-846z"
android:fillType="evenOdd"
android:fillColor="#DE3929" />
<path
android:pathData="M131 399.2l6.6 20.4H159l-17.4 12.7 6.6 20.5L131 440l-17.4 12.7 6.7 -20.5 -17.4 -12.7h21.5M317 250.4l6.7 20.5H345l-17.4 12.6 6.6 20.5 -17.4 -12.7 -17.4 12.7 6.6 -20.5 -17.4 -12.6h21.6m-222 64.4l6.6 20.5h21.5L99 368.6l6.7 20.4 -17.4 -12.6L70.9 389l6.6 -20.4 -17.4 -12.7h21.5M317 329.5l6.7 20.4H345l-17.4 12.7 6.6 20.4 -17.4 -12.6 -17.4 12.7 6.6 -20.5 -17.4 -12.7h21.6m-40.5 -161.7l6.7 20.4H298l-17.4 12.7 6.6 20.5 -17.4 -12.7 -17.4 12.7 6.7 -20.5 -17.5 -12.7h21.6m-64.5 -45.2l6.7 20.5h21.5l-17.4 12.6 6.6 20.5 -17.4 -12.6 -17.4 12.6 6.7 -20.5 -17.4 -12.6H192m-64.5 2.9l6.7 20.5h21.5l-17.4 12.6 6.7 20.5 -17.5 -12.7 -17.4 12.7 6.7 -20.5 -17.4 -12.6H121m-34.8 43.2l6.6 20.5h21.6l-17.5 12.6 6.7 20.5 -17.4 -12.7 -17.4 12.7 6.6 -20.5L58 271h21.5m119.2 149.4l6.7 20.5h21.5l-17.4 12.6 6.7 20.5 -17.5 -12.7 -17.4 12.7 6.7 -20.5 -17.4 -12.6H192m82.2 -41.7l6.6 20.4h21.5L285 432.3l6.7 20.5 -17.4 -12.7 -17.5 12.7 6.7 -20.5 -17.4 -12.7h21.5"
android:fillType="evenOdd"
android:fillColor="#FFCE08" />
</group>
</vector>
@@ -0,0 +1,36 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<group
android:scaleX="0.057"
android:scaleY="0.057">
<clip-path
android:pathData="M0 0h9000v9000H0z" />
<path
android:pathData="M0 0h13500v9000H0z"
android:fillColor="#002B7F" />
<path
android:pathData="M0 5625h13500v1125H0z"
android:fillColor="#F9E814" />
<group
android:scaleX="750"
android:scaleY="750"
android:translateX="1500"
android:translateY="1500">
<path
android:pathData="M0 -1l0.2 0.7H1L0.3 0l0.2 0.7L0 0.4l-0.6 0.4 0.2 -0.7 -0.5 -0.4h0.7z"
android:fillColor="#FFFFFF" />
</group>
<group
android:scaleX="1000"
android:scaleY="1000"
android:translateX="3000"
android:translateY="3000">
<path
android:pathData="M0 -1l0.2 0.7H1L0.3 0l0.2 0.7L0 0.4l-0.6 0.4 0.2 -0.7 -0.5 -0.4h0.7z"
android:fillColor="#FFFFFF" />
</group>
</group>
</vector>
@@ -0,0 +1,57 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#0021AD" />
<path
android:pathData="M0 0h512v512z"
android:fillColor="#1C8A42" />
<path
android:pathData="M317.7 256A61.7 61.7 0 0 1 194.3 256A61.7 61.7 0 0 1 317.7 256Z"
android:fillColor="#FFC639" />
<path
android:pathData="M218.3 228.3c4.3 5.8 10.6 15.5 15.8 13 4 0 6 0.3 6.6 3A39.5 39.5 0 0 0 276 229s0.8 0 0.5 -4.8c0 -2.2 3 -1.7 3 -1 0.4 1 0.3 1.8 0.9 1.8 1.2 -0.4 2.9 -3.1 4.3 -4.8 0.3 -0.8 0.1 -1.6 0.2 -2.6 0.8 -1.8 2.6 -1.4 3 -0.4 0.3 0.6 0.3 1 0.7 1.7 1.8 1.2 5.2 0 5.5 0 0.3 -1.5 1.3 -1.3 1.3 -1.3 1.2 -0.3 0.7 -0.2 1.6 0.2 -0.8 8.2 1.6 8.6 1.4 12.8 0 4.7 -1.4 6 -1.4 7.8 0.4 2.2 7.3 2.3 5 4.1 -2.2 1.2 0 3.3 -3.3 4.1 -9.4 4.8 -11.2 8.9 -11.2 8.9s-2.3 4.4 -2.6 4.4c-1.6 3 -3.5 1.4 -4.7 2.8 -0.5 1.8 -1.1 5.9 0 8 0.5 2.8 0 4.4 -0.8 7.3 -0.6 6 -3 6.9 -3.3 9 -1 2.2 0.3 12.8 -0.8 12.8 -7 0.1 -12.3 -1.3 -15 -1.9 2.6 -11.6 1.6 -21.8 1.6 -22.8 -0.7 -8.3 -12.4 -6.3 -14.2 -7.4 -1.5 -0.3 -2.4 -1.5 -3 -2 -1.6 -0.2 -2.2 -0.6 -3.9 -0.8 -0.8 0.4 -0.3 0.9 -2.2 1.4 -4.6 0.6 -6.7 -4 -6.7 -4 0.2 -1.6 -10.5 0.3 -16.4 -1 -2.4 1.3 -3.4 5.2 -5.4 5.7 0 1.2 -3.2 -1 -3.9 -2.2 0 -3.5 3.1 -5 3.1 -5 2.5 -1.9 4 -2.2 5.3 -3.4 0.6 -3 0.3 -5.3 1.6 -7.6 1 -1.7 2.7 -1 3.8 -1.7 1.2 -0.8 1.7 -6 0.6 -7.3l-5 -4.5c-1.6 -4.5 1.8 -7.3 2.7 -7"
android:fillColor="#1C8A42" />
<path
android:pathData="M452.3 63.7c-2.8 -11 -27.9 -34.8 -46.6 -50 -4.5 -3 -7.4 -1.2 -6.9 3.1 2.4 4 4.1 8.2 6.5 12.1 0.6 2.6 1.9 4.4 2.5 7 0 0 0.2 4.5 0.6 5a25 25 0 0 1 6.6 11.8 52.4 52.4 0 0 0 12.3 16.6c6.6 4.2 1.8 17.1 2 24 0 4.3 -3.2 3.8 -5.9 3.3 -21.5 -19.8 -42.8 -19.8 -61.6 -25.5 -7.4 -0.8 -7.5 2.7 -5.1 4.6 13.1 14 25.5 23.6 41.7 31.6l8.2 5.1 9.4 7.8c7.2 4.7 7.8 9 7.8 9.4 0.2 8.8 -4.5 15.6 -5.8 18.3 -2.5 9.3 -7.5 11 -7.5 11 -40.1 27 -61.2 34 -126.4 25.7 -1 -0.5 -7.2 0.5 0 3.1 16.6 5.5 57.3 14.4 96.7 -4.3 9.5 -6.6 15.9 -4.4 22.7 -8.4 11.3 -7 27.3 -15.6 30.3 -16.5 8.7 -4.7 33.3 -10 39 -14.7 6.5 -0.5 13.2 -1.4 13.7 -7 2.1 -1.3 5.2 -0.3 7.5 -4.9 5.2 -0.9 4.3 -2.7 4.3 -2.7 -1.3 -3.7 -6 -5.2 -9.5 -7.8 -5.1 -1.7 -8.6 -2.2 -12.3 -0.4l-3.5 1.6s-5.5 -0.8 -5.5 -1.2c-12.1 -0.7 -11 -41 -15.2 -57.7"
android:fillColor="#FFC639" />
<path
android:pathData="M542.5 217.8a3 1.9 16 1 1 -5.8 -1.8 3 1.9 16 0 1 5.8 1.8"
android:fillColor="#1C8A42" />
<group
android:scaleX="0.68267"
android:scaleY="0.68267"
android:translateX="-11.8"
android:translateY="182.4">
<path
android:pathData="M188.2 191l-12.8 -12 -12.9 11.8 1.4 -17.4 -17.3 -2.8 14.5 -9.8 -8.6 -15.2 16.7 5.3 6.5 -16.2L182 151l16.7 -5 -8.8 15 14.4 10 -17.3 2.5z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M233.4 335.5l-13.8 -9.1 -13.4 9.6 4.8 -15.5 -13.6 -9.5 16.6 -0.4 5 -15.5 5.6 15.3 16.7 -0.1L228 320l5.3 15.4z"
android:fillColor="#FFFFFF" />
<group
android:translateX="2.5"
android:translateY="269.1">
<path
android:pathData="M188.2 191l-12.8 -12 -12.9 11.8 1.4 -17.4 -17.3 -2.8 14.5 -9.8 -8.6 -15.2 16.7 5.3 6.5 -16.2L182 151l16.7 -5 -8.8 15 14.4 10 -17.3 2.5z"
android:fillColor="#FFFFFF" />
</group>
<group
android:translateX="-112.1"
android:translateY="123.2">
<path
android:pathData="M188.2 191l-12.8 -12 -12.9 11.8 1.4 -17.4 -17.3 -2.8 14.5 -9.8 -8.6 -15.2 16.7 5.3 6.5 -16.2L182 151l16.7 -5 -8.8 15 14.4 10 -17.3 2.5z"
android:fillColor="#FFFFFF" />
</group>
<group
android:translateX="108.4"
android:translateY="85">
<path
android:pathData="M188.2 191l-12.8 -12 -12.9 11.8 1.4 -17.4 -17.3 -2.8 14.5 -9.8 -8.6 -15.2 16.7 5.3 6.5 -16.2L182 151l16.7 -5 -8.8 15 14.4 10 -17.3 2.5z"
android:fillColor="#FFFFFF" />
</group>
</group>
</vector>
@@ -0,0 +1,23 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v512H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M243 425.2a0.9 0.9 0 0 1 -0.3 -0.2v-0.1l-1.4 -1.4a75.9 75.9 0 0 1 -4 -4.9L232 412l-0.7 -0.9 -6.6 -2 -4.8 -2.3 2.5 -2.9 9 3.8 6.6 1.4 12.2 9a122.2 122.2 0 0 0 -6.8 6.4 2.2 2.2 0 0 0 -0.2 0.4l0.8 -0.5 0.8 0.7 -1.7 0.1zm-45.5 -13.7c-5.8 0 -11.5 -1.6 -17 -4.8s0.8 -1.3 2.5 -2.6c1.6 -1.2 4.6 -2.7 9.5 -2.7 5.8 0 12.8 2 20.9 5.8 -0.3 0.2 -6.7 4.3 -15.9 4.3m-25 -5.5c-1.1 0 -2 -0.5 -2.8 -1.2a5.5 5.5 0 0 1 -1.2 -2.5 12.5 12.5 0 0 1 -0.3 -3.5 3.7 3.7 0 0 1 1.4 -0.4c2.2 0 3.9 2 4.6 3.8 0.4 1 0.5 1.9 0.3 2.6s-1.1 1.1 -2 1.1zm44 -5.2c-14.8 -2 -21 -7.4 -23.7 -11.6a13.4 13.4 0 0 1 -2.3 -8.5s1 -0.2 2.3 -0.2c4 0 14 2 23.7 20.3m-30.3 -2.9c-6.3 0 -11.2 -1 -14.3 -3.2a8.8 8.8 0 0 1 -3.2 -3.6 5.8 5.8 0 0 1 -0.5 -1.7 19.4 19.4 0 0 1 7.6 -1.4c5 0 12.4 1.6 20.2 9.2a92 92 0 0 1 -9.8 0.7m-30.6 -1.2c-6.7 0 -15.9 -2 -21.6 -7.7a66.9 66.9 0 0 1 14.5 -1.8c6.3 0 11 1.2 14.2 3.6 1.2 0.8 1.8 1.6 1.9 2.4 0.1 0.6 -0.2 1.3 -0.9 1.8 -1.4 1 -4 1.7 -7.6 1.7zm-21.7 -11a2.7 2.7 0 0 1 -2 -1 5 5 0 0 1 -1 -2.2c-0.4 -1.6 -0.3 -3.1 -0.3 -3.1a2 2 0 0 1 1 -0.3c1 0 1.8 0.5 2.3 1a6 6 0 0 1 1.4 2.2c0.3 1 0.4 1.7 0.2 2.3 -0.2 0.5 -0.8 1 -1.6 1zm50 -1.2c-1.1 0 -2 -0.4 -2.7 -1.1a5.5 5.5 0 0 1 -1.2 -2.5 12.5 12.5 0 0 1 -0.3 -3.6 3.7 3.7 0 0 1 1.3 -0.3c2.2 0 4 1.9 4.6 3.7 0.4 1 0.5 2 0.3 2.6 -0.3 0.7 -1.1 1.2 -2 1.2m-24.4 -1c-13.4 -0.5 -20.4 -4.3 -23.8 -7.4a15.7 15.7 0 0 1 -3.7 -4.7 10 10 0 0 1 -0.7 -2s1.2 -0.5 3.3 -0.5h0.3c4.5 0 13.8 1.9 24.6 14.6m14.6 -1.4a32.6 32.6 0 0 1 -20.1 -9.9 20.6 20.6 0 0 1 -4.5 -7.4s1.4 -0.3 3.4 -0.4a16.2 16.2 0 0 1 0.9 0c5.4 0.1 15.3 2.6 20.3 17.7m-55.4 -5.2c-3.6 0 -7 -0.3 -10.2 -1.2 -5.7 -1.4 -8.1 -3.5 -9.2 -5.1a5.4 5.4 0 0 1 -0.8 -2.2 3.6 3.6 0 0 1 0 -0.9s3.7 -1 8.9 -1.1a37.4 37.4 0 0 1 7.9 0.7 23.2 23.2 0 0 1 13.7 8.6s-4.3 1.2 -10.3 1.2m25 -9c-1 0 -2 -0.5 -2.7 -1.2a5.5 5.5 0 0 1 -1.2 -2.5 12.3 12.3 0 0 1 -0.3 -3.5 3.7 3.7 0 0 1 1.3 -0.3h0.1c2.2 0 3.9 1.8 4.6 3.7 0.4 1 0.5 1.8 0.2 2.6 -0.3 0.7 -1 1.1 -2 1.1zm-18.8 -2.7c-0.1 0 -5.1 -1.2 -10.2 -4.4 -4.8 -3 -10.5 -8 -11.3 -16s0.5 -0.2 1.2 -0.2h0.2c1.4 0 4.3 0.4 7.8 3 4.5 3.4 8.6 9.4 12.3 17.7zm12.3 -0.4s-3.6 -1.4 -8 -5.2a51.4 51.4 0 0 1 -14.4 -19.9s1 -0.5 2.5 -0.6a3.7 3.7 0 0 1 0.3 0h0.4c2 0 5.1 0.9 8.6 4.7a55 55 0 0 1 10.6 21m-32 -1c-4 0 -5.4 -2.2 -5.9 -3.1a6.7 6.7 0 0 1 -0.4 -3.2 9 9 0 0 1 2 -0.3h0.2c3.2 0 5.8 1.7 6.9 3.3 0.2 0.3 0.9 1.5 0.3 2.3 -0.4 0.7 -1.4 1 -3 1zm-9 -11.4c-2.3 0 -5.8 -0.2 -9.5 -0.8 -3.7 -0.7 -5.8 -3.8 -6.9 -6.3a20.4 20.4 0 0 1 -1.5 -5.3c11.3 0.3 16.7 3.6 19.2 6.3a10 10 0 0 1 2.7 6zm11.8 -11.8a45.6 45.6 0 0 1 -2.6 -3.6c-1.4 -2.1 -2.6 -4.3 -2.6 -6a85 85 0 0 0 -0.6 -7.4l-0.7 -5c0.3 0.2 7.1 2.7 7.1 9.1 0 6.4 -0.6 12.8 -0.6 12.9m-8.8 -0.6h-0.3c-2 -0.4 -5.5 -2 -9.4 -4.2a40.5 40.5 0 0 1 -10 -7.5c-1.8 -2.1 -3 -5.5 -3.2 -10a37 37 0 0 1 0 -6 3.5 3.5 0 0 1 1.2 -0.3c1.5 0 3 0.7 5.2 2.2a42.4 42.4 0 0 1 5.6 4.7 84.5 84.5 0 0 1 6.1 6.8 93.9 93.9 0 0 1 5.5 12.3v1.5a0.8 0.8 0 0 1 -0.4 0.4 1 1 0 0 1 -0.4 0z"
android:fillColor="#435125" />
<group
android:rotation="-0"
android:scaleX="-1"
android:translateX="462.7">
<path
android:pathData="M243 425.2a0.9 0.9 0 0 1 -0.3 -0.2v-0.1l-1.4 -1.4a75.9 75.9 0 0 1 -4 -4.9L232 412l-0.7 -0.9 -6.6 -2 -4.8 -2.3 2.5 -2.9 9 3.8 6.6 1.4 12.2 9a122.2 122.2 0 0 0 -6.8 6.4 2.2 2.2 0 0 0 -0.2 0.4l0.8 -0.5 0.8 0.7 -1.7 0.1zm-45.5 -13.7c-5.8 0 -11.5 -1.6 -17 -4.8s0.8 -1.3 2.5 -2.6c1.6 -1.2 4.6 -2.7 9.5 -2.7 5.8 0 12.8 2 20.9 5.8 -0.3 0.2 -6.7 4.3 -15.9 4.3m-25 -5.5c-1.1 0 -2 -0.5 -2.8 -1.2a5.5 5.5 0 0 1 -1.2 -2.5 12.5 12.5 0 0 1 -0.3 -3.5 3.7 3.7 0 0 1 1.4 -0.4c2.2 0 3.9 2 4.6 3.8 0.4 1 0.5 1.9 0.3 2.6s-1.1 1.1 -2 1.1zm44 -5.2c-14.8 -2 -21 -7.4 -23.7 -11.6a13.4 13.4 0 0 1 -2.3 -8.5s1 -0.2 2.3 -0.2c4 0 14 2 23.7 20.3m-30.3 -2.9c-6.3 0 -11.2 -1 -14.3 -3.2a8.8 8.8 0 0 1 -3.2 -3.6 5.8 5.8 0 0 1 -0.5 -1.7 19.4 19.4 0 0 1 7.6 -1.4c5 0 12.4 1.6 20.2 9.2a92 92 0 0 1 -9.8 0.7m-30.6 -1.2c-6.7 0 -15.9 -2 -21.6 -7.7a66.9 66.9 0 0 1 14.5 -1.8c6.3 0 11 1.2 14.2 3.6 1.2 0.8 1.8 1.6 1.9 2.4 0.1 0.6 -0.2 1.3 -0.9 1.8 -1.4 1 -4 1.7 -7.6 1.7zm-21.7 -11a2.7 2.7 0 0 1 -2 -1 5 5 0 0 1 -1 -2.2c-0.4 -1.6 -0.3 -3.1 -0.3 -3.1a2 2 0 0 1 1 -0.3c1 0 1.8 0.5 2.3 1a6 6 0 0 1 1.4 2.2c0.3 1 0.4 1.7 0.2 2.3 -0.2 0.5 -0.8 1 -1.6 1zm50 -1.2c-1.1 0 -2 -0.4 -2.7 -1.1a5.5 5.5 0 0 1 -1.2 -2.5 12.5 12.5 0 0 1 -0.3 -3.6 3.7 3.7 0 0 1 1.3 -0.3c2.2 0 4 1.9 4.6 3.7 0.4 1 0.5 2 0.3 2.6 -0.3 0.7 -1.1 1.2 -2 1.2m-24.4 -1c-13.4 -0.5 -20.4 -4.3 -23.8 -7.4a15.7 15.7 0 0 1 -3.7 -4.7 10 10 0 0 1 -0.7 -2s1.2 -0.5 3.3 -0.5h0.3c4.5 0 13.8 1.9 24.6 14.6m14.6 -1.4a32.6 32.6 0 0 1 -20.1 -9.9 20.6 20.6 0 0 1 -4.5 -7.4s1.4 -0.3 3.4 -0.4a16.2 16.2 0 0 1 0.9 0c5.4 0.1 15.3 2.6 20.3 17.7m-55.4 -5.2c-3.6 0 -7 -0.3 -10.2 -1.2 -5.7 -1.4 -8.1 -3.5 -9.2 -5.1a5.4 5.4 0 0 1 -0.8 -2.2 3.6 3.6 0 0 1 0 -0.9s3.7 -1 8.9 -1.1a37.4 37.4 0 0 1 7.9 0.7 23.2 23.2 0 0 1 13.7 8.6s-4.3 1.2 -10.3 1.2m25 -9c-1 0 -2 -0.5 -2.7 -1.2a5.5 5.5 0 0 1 -1.2 -2.5 12.3 12.3 0 0 1 -0.3 -3.5 3.7 3.7 0 0 1 1.3 -0.3h0.1c2.2 0 3.9 1.8 4.6 3.7 0.4 1 0.5 1.8 0.2 2.6 -0.3 0.7 -1 1.1 -2 1.1zm-18.8 -2.7c-0.1 0 -5.1 -1.2 -10.2 -4.4 -4.8 -3 -10.5 -8 -11.3 -16s0.5 -0.2 1.2 -0.2h0.2c1.4 0 4.3 0.4 7.8 3 4.5 3.4 8.6 9.4 12.3 17.7zm12.3 -0.4s-3.6 -1.4 -8 -5.2a51.4 51.4 0 0 1 -14.4 -19.9s1 -0.5 2.5 -0.6a3.7 3.7 0 0 1 0.3 0h0.4c2 0 5.1 0.9 8.6 4.7a55 55 0 0 1 10.6 21m-32 -1c-4 0 -5.4 -2.2 -5.9 -3.1a6.7 6.7 0 0 1 -0.4 -3.2 9 9 0 0 1 2 -0.3h0.2c3.2 0 5.8 1.7 6.9 3.3 0.2 0.3 0.9 1.5 0.3 2.3 -0.4 0.7 -1.4 1 -3 1zm-9 -11.4c-2.3 0 -5.8 -0.2 -9.5 -0.8 -3.7 -0.7 -5.8 -3.8 -6.9 -6.3a20.4 20.4 0 0 1 -1.5 -5.3c11.3 0.3 16.7 3.6 19.2 6.3a10 10 0 0 1 2.7 6zm11.8 -11.8a45.6 45.6 0 0 1 -2.6 -3.6c-1.4 -2.1 -2.6 -4.3 -2.6 -6a85 85 0 0 0 -0.6 -7.4l-0.7 -5c0.3 0.2 7.1 2.7 7.1 9.1 0 6.4 -0.6 12.8 -0.6 12.9m-8.8 -0.6h-0.3c-2 -0.4 -5.5 -2 -9.4 -4.2a40.5 40.5 0 0 1 -10 -7.5c-1.8 -2.1 -3 -5.5 -3.2 -10a37 37 0 0 1 0 -6 3.5 3.5 0 0 1 1.2 -0.3c1.5 0 3 0.7 5.2 2.2a42.4 42.4 0 0 1 5.6 4.7 84.5 84.5 0 0 1 6.1 6.8 93.9 93.9 0 0 1 5.5 12.3v1.5a0.8 0.8 0 0 1 -0.4 0.4 1 1 0 0 1 -0.4 0z"
android:fillColor="#435125" />
</group>
<path
android:pathData="M468.3 81.5l-2 0.8 -0.8 0.3 -2.4 -0.2 -2.3 1.1 -4 2.8 -0.2 0.1 -1.5 0.4 -1.4 -0.6 -0.8 0.4 -0.3 1.6 -0.7 1.2 -1 0.7 -3.2 0.3 -2.7 1.4 -3.6 -1 -1.6 0.7 -3.5 3.1 -1.8 0.9h-0.6l-2.4 -0.2 -1 0.4L429 97l-2.8 0.2 -0.9 0.6 -1.4 2.8 -1.5 1.6 -0.8 0.1 -1 -0.3 -0.7 0.1 -0.3 1.8 -0.6 0.8 -2 0.6 -1.4 1.3 -1.4 0.6H412l-1.7 1 -3.4 0.3 -1.3 1.3 -0.4 0.3 -0.6 0.4 -1 0.6 -0.3 0.2 -1.3 -0.3 -1.5 0.6 -0.6 -1 -1 0.7h-1.4l-1.7 -0.7 -1.3 -0.6 -1 0.2 -0.3 1.6v0.2l-1 1.3 -1.9 1.1 -0.2 0.4 -2.1 2.7 -4 4.3 -3.5 1.7 -3.5 1 -2.5 2 -6.5 3.3 -10.2 5.1 -2.1 0.7 -3 0.4 -5.3 2 -4.8 1.4 -0.3 0.1 -0.9 0.3 -6.6 2 -3.1 -0.3 -1.9 0.7 -4.8 -0.6 -3.3 0.1 -2 0.4 -4 2 -6.7 3.1 -2.2 2 -3.5 1.9 -4 1.2v-1.7l-1.4 0.4 -1 0.3 -3.3 0.5h-1.8l-1.1 -0.3h-0.2l-6.7 2.3 -7.4 0.7 -3.7 1.2h-2.8l-1.8 0.4 -3.4 0.5 -1.2 -0.4h-0.3l-10 0.4 -4.6 -0.5 -2.2 0.5 -3.6 -1.3 -5.4 -0.6 -1.2 -0.4 -2.8 -0.8 -1.3 0.7 -1 0.1 -2.2 -0.8h-0.9l-1.8 0.7 -1.1 -0.3 -1 -0.8 -2.4 -0.3 -1.4 -1.3 -8 1.1 -2.2 -0.6 -7.3 -2.2 -1.2 0.1 -1.4 1 -2.2 0.9 -1.9 0.5h-2.6l-3 -0.7 -3 -1.5 -1.2 -0.3 -2.5 0.3h-0.8l-4.6 -2.5 -6 -3.7 -4.1 -2 -1.6 -0.2 -0.2 0.7 0.8 2.4 0.3 2.4 -0.1 2.1v1.4l0.3 1.2 1.5 1.6 0.6 1.7 0.5 4.5v4.6l-0.8 7.3 -0.2 1 -0.9 3.9 -0.7 3.4 -3 9.3 -0.9 1.1 -2 1.4 -4.7 3.2 -3.4 2 -1 0.4 -2.8 0.2 -1.7 -0.1 -2.2 -1.2 -2 -0.5 -2.8 -2 -3.1 -0.6 -3.4 -2 -0.8 -1 -1.9 -0.2 -2.5 -0.8 -1 -0.2 -0.6 -0.2 -3.2 -0.1 -3 -1.4 -1.6 -0.4 -2.2 -0.1 -2.3 1 -1.1 0.6 -1.5 -0.6h-1l-1.3 1.9 -0.1 0.3 -0.8 0.4H108l-0.8 0.3 -1.2 0.5 -1 0.5 -0.5 0.2h-0.4l-0.5 0.2h-0.7l-1.2 -0.6 -0.6 -0.4 -1.1 -0.2 -0.6 0.4v2l-0.6 1.1L97 196l-1.7 1.5 -1.2 1.8 -3.1 7.1 -2 3 -0.6 0.6 -2 2.3 -1.9 1.4 -4.2 3.2 -4 1.5 -3.4 0.7h-1.6l-3.2 -0.4 -2.8 -0.9 -3.1 -2 -3.5 -2.7 -4.9 -4.9 -0.7 -0.4H53l-1.5 -1h-1.2l-0.4 0.7 -0.3 1 -0.2 1 -0.5 5.5v0.3l0.3 2.2 3.8 5.3 1.1 2.8 0.2 0.3 0.8 1.3 0.6 1L57 232l-0.9 2.2 0.5 1.4 -1.2 0.9 -0.2 1.2 3.4 4.3 0.7 1.8 -0.8 2.6 -1.3 1.4 -0.4 0.4 0.2 1.1 1.6 1.4 2.6 2.4 1.4 3.5 1 0.9 1.3 -0.3 0.7 0.6h1l1 1 0.7 0.3 1.1 0.5 0.8 1.1 0.2 3.3 1.6 4.2v2.6l1 1.6 0.3 1.3 -0.5 3.5 1.2 1.1 1.3 -0.3 0.9 0.2 1.4 1.1 1.7 2.6 1.6 -0.2 1 0.5 5 4.5 1.2 0.6 1 0.4 1 1 1.5 -1h0.2l1.7 -0.2 0.8 0.5 1.4 1h2l4 1.3 1.9 0.4 3.6 2.3 1.6 1 0.9 0.7 1.2 1 2.4 1 2 0.5 1.2 0.3 0.9 0.3 4.5 1.8 2.4 0.5 2.3 0.9 1.6 0.6h1.2l1.7 -1.5h1.7l1.4 0.3 1.3 -0.2 2.1 -1.3 0.5 -0.7 1.5 -0.7 5 -0.6 1.5 0.5 3.8 -1.7 2.6 0.7 2.2 -0.8 5 1.1 1.3 1 1.4 1.6h1.8l-0.6 1.2 2.1 2.3 2 3v0.3l1.5 4.1 1 1.5 0.8 2v1.4l-1.1 0.9 -0.2 0.5v0.2l0.2 0.5 0.4 -0.2 0.8 -0.5 1 -0.1 1.8 0.2h1.1l1.9 -0.8 1.2 -0.6 2 0.8h2.1l0.9 0.4 2.6 1.1 1.3 0.2 0.5 -0.4 0.3 -0.7 -0.2 -0.8 -1 -1.2 -2.1 -2.5 -1 -1.3 -0.6 -1.8 -0.2 -2.4 -0.2 -1.6 0.3 -2.1 0.6 -0.8 0.4 -1.7 0.1 -0.4 1.2 -1.6 3.2 -2 3.4 -3 2.7 -1.9 2.8 -1.2v-0.3l0.4 0.1 7 -2.4h0.2l3.1 -0.6 21.3 1.5 0.8 -0.2 0.7 -2 0.4 -0.4 0.2 -0.2 2.4 -1 1 -0.2 3 0.8 1.3 0.3 2 -1.1h1.4l3 -1.6h1.8l0.6 -0.2 3.5 -2.6 3.4 -1 1 -0.4 0.2 -0.2 3.5 -1.8 2.2 -1.7 1.9 -1 2 -0.5 5.5 -0.4 1.1 -1.8 2.3 -0.4 1.5 -1.6 1.6 -0.6 1.1 -1.7 1 -1.4 1.4 -0.8 4.3 -0.2 5.2 0.6 0.7 -0.4 1.1 -4.2 1.2 -0.8 3.3 -4.7V252l0.6 -2.1 -0.4 -3.8 0.5 -3.8 2 -4.8 1.8 -2 2.9 -1.9 1.5 -0.6 2 -0.4h0.4l0.5 -0.1 7.2 -0.1h2.6l2.4 -0.1 6 1 0.5 0.2 2 0.6 2.4 1.9 2.5 2.4 0.5 0.5 1.6 0.6 0.5 0.3 1.4 -0.3 1.9 -1 1.4 -1.2 2 -1v-0.1l1.1 -1.7 0.5 -0.7 3.8 -1.5 4.5 -0.2 0.5 -0.3 0.3 -0.1 1.1 -1.4h1.1l2.7 1 1.9 -0.4 1.5 0.6 1.1 -0.2 2.2 -0.2 2.4 1.6 1.4 0.2 4.8 2.8h0.4l0.2 0.1 0.6 -0.1 0.9 -0.3 0.2 0.1 0.5 0.8 0.8 0.1 0.9 -1.2 -0.4 -0.5 -0.1 -0.2 -1.7 -0.4 -1.6 -2.6 1.5 -1.6 -2.3 -2.8 -0.4 -0.5 -0.1 -0.2 -0.8 -1.2 -4 -6.2 -5.4 -4.2 -1.8 -1.5 -0.7 -0.5 -2.8 -2.9 -2 -2.6 -0.3 -0.6 -0.4 -1 -1.2 -2.5 -2 -1.7 -1.8 -1.8v-0.1l-3.6 -4.8 -0.6 -0.8 -0.8 -0.5h-1.8l-0.2 -0.2v-0.1l0.8 -1 1 -0.2 0.4 -0.9 -1.8 -5.2v-0.2l-0.2 -1.6 1.5 -7.6 0.2 -1 2.5 -5 1.6 -1.3 1.6 -3.3 1.5 -2.1 1.4 -1.4 0.2 -0.1 2.5 -1.5 2.1 -0.3 2 -0.3 3.5 1h4l1.5 -0.2 2.5 -0.8 1.2 -0.7 0.6 -1 1.2 -4.2 0.5 -1.4 0.7 -1.4 4.6 -5.3 3.4 -3.1 7.7 -5.7 3.8 -2.2 1.9 -1.2 17.2 -7.6 4.4 -4.5 2.3 -2.4 4.2 -2.7 4.8 -2 4.1 -3.3 0.9 -1.1 1.2 -3.7 0.9 -0.2 0.9 -1.9 0.2 -0.5 3.4 -2.4 0.4 -0.2L456 95l2 0.2 1 -1.5 3.8 -0.6 0.6 -0.2 1 -0.4 0.8 -1.4v-0.3l0.1 -3.6 0.8 -1 0.5 -2.4 0.4 -0.6 0.4 -0.5 1.1 -0.8z"
android:fillColor="#D47600" />
</vector>
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="512"
android:viewportHeight="512"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M0 0h512v256H0z"
android:fillColor="#FFFFFF" />
<path
android:pathData="M0 256h512v256H0z"
android:fillColor="#D7141A" />
<path
android:pathData="M300 256L0 56v400z"
android:fillColor="#11457E" />
</vector>

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