Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#52 [feat] 행복루틴 엠티뷰 서버 연결 #59

Merged
merged 8 commits into from
Jan 17, 2024
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.sopetit.softie.domain.entity

import androidx.annotation.DrawableRes

data class HappyDoll(
@DrawableRes val faceImageUrl: Int
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HappyDoll ㅋㅋㅋㅋㅋㅋㅋ

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

작명센스가 영...

Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,38 @@ package com.sopetit.softie.ui.happyroutine
import android.content.Intent
import android.os.Bundle
import android.view.View
import androidx.fragment.app.viewModels
import com.sopetit.softie.R
import com.sopetit.softie.databinding.FragmentHappyRoutineBinding
import com.sopetit.softie.ui.happyroutine.addlist.HappyAddListActivity
import com.sopetit.softie.util.binding.BindingFragment
import com.sopetit.softie.util.setStatusBarColor

class HappyRoutineFragment :
BindingFragment<FragmentHappyRoutineBinding>(R.layout.fragment_happy_routine) {

private val viewModel by viewModels<HappyRoutineViewModel>()

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setStatusBarColor(R.color.background)

setClickEmptyCardListener()
val dollType = "BROWN"

setDollBinding(dollType)
setCardEnter()
}

private fun setDollBinding(dollType: String?) {
if (dollType != null) {
val faceImageUrl = viewModel.getFaceImageUrl(dollType)
binding.ivHappyRoutineCharacter.setImageResource(faceImageUrl)
} else {
}
}

private fun setClickEmptyCardListener() {
binding.clHappyRoutineEmptyCard.setOnClickListener {
val intentToHappyAddList = Intent(activity, HappyAddListActivity::class.java)
startActivity(intentToHappyAddList)
private fun setCardEnter() {
binding.ivHappyRoutineEmptyCard.setOnClickListener {
val intent = Intent(requireContext(), HappyAddListActivity::class.java)
startActivity(intent)
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package com.sopetit.softie.ui.happyroutine

import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import com.sopetit.softie.R
import com.sopetit.softie.domain.entity.HappyDoll

class HappyRoutineViewModel : ViewModel() {

private val _mockHappyDollList: MutableLiveData<List<HappyDoll>> = MutableLiveData(
mutableListOf(
HappyDoll(
faceImageUrl = R.drawable.ic_bear_face_1
),
HappyDoll(
faceImageUrl = R.drawable.ic_bear_face_2
),
HappyDoll(
faceImageUrl = R.drawable.ic_bear_face_3
),
HappyDoll(
faceImageUrl = R.drawable.ic_bear_face_4
),
)
)

val mockHappyDollList: LiveData<List<HappyDoll>> get() = _mockHappyDollList

fun getFaceImageUrl(type: String): Int {
return when (type) {
"BROWN" -> R.drawable.ic_bear_face_1
"GRAY" -> R.drawable.ic_bear_face_2
"PANDA" -> R.drawable.ic_bear_face_3
"RED" -> R.drawable.ic_bear_face_4
else -> R.drawable.ic_bear_face_1
}
}
}
38 changes: 38 additions & 0 deletions app/src/main/res/drawable/ic_bear_face_2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="53dp"
android:height="50dp"
android:viewportWidth="53"
android:viewportHeight="50">
<group>
<clip-path
android:pathData="M0,0h53v50h-53z"/>
<path
android:pathData="M8.995,1.696C12.226,-0.206 16.361,0.924 18.226,4.22L18.768,5.178C19.479,6.433 19.057,8.04 17.827,8.764L10.579,13.034C9.349,13.758 7.774,13.328 7.064,12.073L6.522,11.115C4.657,7.819 5.765,3.599 8.995,1.696Z"
android:fillColor="#8D8989"/>
<path
android:pathData="M42.576,13.034L35.328,8.765C34.098,8.04 33.676,6.433 34.386,5.178L34.929,4.22C36.793,0.925 40.929,-0.206 44.16,1.697C47.39,3.599 48.498,7.819 46.633,11.115L46.091,12.073C45.381,13.328 43.806,13.759 42.576,13.034Z"
android:fillColor="#8D8989"/>
<path
android:pathData="M52.319,28.079C52.319,42.568 40.806,49.214 26.606,49.214C12.406,49.214 0.895,42.569 0.895,28.079C0.895,13.589 12.406,1.846 26.606,1.846C40.806,1.846 52.319,13.592 52.319,28.08V28.079Z"
android:fillColor="#8D8989"/>
<path
android:pathData="M52.34,28.08L52.224,28.266L52.352,28.454L52.356,28.641L52.406,28.829L52.198,29.009L52.19,29.195L52.181,29.382L52.155,29.566L52.249,29.758L52.173,29.94L52.249,30.133L52.22,30.317L52.229,30.505L52.215,30.692L52.057,30.862L52.235,31.071L52.046,31.235V31.422L52.174,31.631L52.069,31.803L51.972,31.976L51.97,32.164L51.931,32.347L52.037,32.557L51.889,32.718L51.866,32.904L51.929,33.109L51.673,33.242L51.735,33.448L51.705,33.632L51.686,33.82L51.677,34.011L51.626,34.191L51.487,34.346L51.396,34.513L51.342,34.69L51.315,34.877L51.271,35.058L51.256,35.249L51.212,35.432L51.075,35.58L51.046,35.768L50.85,35.891L51.016,36.157L50.854,36.292L50.834,36.486L50.776,36.665L50.514,36.75L50.553,36.973L50.53,37.168L50.403,37.313L50.192,37.415L50.3,37.678L50.104,37.786L50.132,38.012L49.887,38.088L49.806,38.255L49.9,38.524L49.685,38.613L49.527,38.734L49.57,38.98L49.327,39.043L49.414,39.322L49.256,39.441L49.079,39.543L49.018,39.727L48.84,39.828L48.818,40.04L48.596,40.105L48.569,40.316L48.545,40.535L48.415,40.667L48.169,40.704L48.03,40.829L47.968,41.019L47.974,41.269L47.686,41.26L47.61,41.438L47.547,41.632L47.443,41.789L47.244,41.854L47.069,41.938L47.008,42.139L46.818,42.207L46.75,42.403L46.656,42.573L46.447,42.617L46.29,42.717L46.236,42.933L46.058,43.011L45.962,43.181L45.831,43.314L45.59,43.308L45.457,43.436L45.341,43.584L45.169,43.66L45.061,43.822L44.97,44.007L44.825,44.123L44.696,44.259L44.527,44.339L44.335,44.384L44.199,44.511L44.055,44.628L43.854,44.655L43.689,44.736L43.628,44.986L43.494,45.122L43.257,45.081L43.095,45.167L42.991,45.357L42.831,45.448L42.626,45.454L42.502,45.611L42.278,45.58L42.124,45.678L41.978,45.795L41.852,45.952L41.721,46.1L41.524,46.116L41.394,46.268L41.15,46.181L41.018,46.332L40.887,46.485L40.68,46.47L40.567,46.67L40.39,46.725L40.207,46.764L40.013,46.774L39.859,46.883L39.673,46.908L39.481,46.918L39.341,47.065L39.13,47.022L38.951,47.063L38.866,47.371L38.626,47.236L38.454,47.301L38.271,47.328L38.152,47.547L37.93,47.455L37.772,47.562L37.589,47.59L37.437,47.72L37.245,47.711L37.096,47.856L36.905,47.852L36.735,47.927L36.581,48.057L36.39,48.051L36.209,48.086L36.049,48.2L35.83,48.074L35.693,48.287L35.489,48.216L35.339,48.386L35.134,48.304L34.952,48.328L34.793,48.461L34.627,48.564L34.43,48.505L34.229,48.433L34.069,48.562L33.88,48.549L33.706,48.617L33.544,48.757L33.36,48.765L33.178,48.785L33,48.833L32.814,48.826L32.615,48.728L32.433,48.751L32.275,48.942L32.079,48.859L31.888,48.801L31.717,48.908L31.523,48.825L31.353,48.942L31.178,49.021L31.003,49.107L30.805,48.972L30.636,49.137L30.44,48.992L30.254,48.947L30.09,49.185L29.905,49.172L29.71,49.016L29.536,49.154L29.349,49.098L29.174,49.226L28.992,49.263L28.798,49.06L28.625,49.251L28.436,49.118L28.256,49.2L28.07,49.11L27.887,49.121L27.708,49.266L27.523,49.159L27.341,49.235L27.155,49.125L26.974,49.129L26.791,49.305L26.606,49.314L26.424,49.27L26.241,49.183L26.058,49.212L25.875,49.275L25.69,49.309L25.51,49.185L25.327,49.218L25.145,49.153L24.959,49.244L24.784,49.056L24.593,49.25L24.418,49.079L24.23,49.152L24.047,49.153L23.859,49.249L23.676,49.239L23.506,49.027L23.325,49.002L23.141,49.02L22.962,48.969L22.779,48.965L22.585,49.084L22.412,48.968L22.219,49.066H22.034L21.848,49.076L21.673,48.988L21.493,48.958L21.327,48.805L21.15,48.746L20.947,48.883L20.785,48.718L20.596,48.754L20.42,48.688L20.246,48.614L20.061,48.618L19.85,48.779L19.665,48.77L19.518,48.543L19.344,48.473L19.145,48.547L18.978,48.446L18.772,48.548L18.584,48.554L18.419,48.445L18.242,48.388L18.08,48.275L17.916,48.168L17.713,48.239L17.513,48.29L17.348,48.191L17.157,48.197L17.026,47.965L16.831,47.99L16.668,47.892L16.47,47.923L16.311,47.812L16.117,47.824L15.97,47.672L15.794,47.623L15.619,47.571L15.387,47.704L15.281,47.428L15.035,47.596L14.913,47.379L14.705,47.423L14.543,47.33L14.379,47.24L14.2,47.199L14.033,47.121L13.891,46.978L13.671,47.043L13.479,47.025L13.377,46.785L13.146,46.869L12.981,46.786L12.872,46.569L12.672,46.574L12.53,46.44L12.344,46.408L12.175,46.335L11.97,46.342L11.823,46.221L11.648,46.161L11.566,45.909L11.377,45.879L11.142,45.938L11.072,45.67L10.922,45.564L10.655,45.673L10.526,45.525L10.335,45.491L10.232,45.298L10.104,45.154L9.892,45.151L9.779,44.982L9.595,44.929L9.514,44.713L9.261,44.77L9.205,44.518L9.004,44.488L8.846,44.396L8.711,44.267L8.611,44.089L8.343,44.15L8.29,43.909L8.096,43.862L8.024,43.652L7.867,43.556L7.759,43.397L7.559,43.354L7.47,43.173L7.306,43.084L7.076,43.07L7.049,42.82L6.866,42.75L6.66,42.702L6.585,42.512L6.42,42.417L6.275,42.301L6.187,42.127L6.111,41.943L5.959,41.835L5.76,41.769L5.617,41.649L5.482,41.522L5.383,41.362L5.219,41.26L5.299,40.944L5.155,40.825L5.024,40.696L4.879,40.577L4.777,40.421L4.634,40.3L4.582,40.106L4.447,39.979L4.224,39.913L4.281,39.644L4.13,39.524L3.896,39.46L3.843,39.271L3.777,39.093L3.751,38.891L3.532,38.809L3.595,38.554L3.42,38.442L3.356,38.266L3.183,38.15L3.043,38.016L2.993,37.83L2.896,37.672L2.92,37.45L2.864,37.271L2.649,37.169L2.552,37.009L2.48,36.837L2.444,36.647L2.498,36.422L2.317,36.297L2.328,36.091L2.144,35.965L2.266,35.717L2.153,35.563L2.12,35.377L1.868,35.268L1.834,35.083L1.93,34.855L1.742,34.721L1.875,34.486L1.827,34.307L1.682,34.157L1.727,33.952L1.688,33.771L1.428,33.646L1.561,33.421L1.552,33.233L1.42,33.073L1.332,32.902L1.229,32.733L1.233,32.541L1.238,32.351L1.258,32.158L1.187,31.981L1.091,31.808L1.26,31.593L0.984,31.445L1.141,31.235L0.978,31.069L1.105,30.866L1.125,30.677L1.009,30.503L0.96,30.32L1.029,30.126L0.859,29.953L0.947,29.759L0.943,29.573L0.922,29.387L0.966,29.199L0.827,29.017L0.976,28.825L0.947,28.64L0.781,28.455L0.996,28.267L0.984,28.08L0.859,27.893L0.862,27.708L0.816,27.521L0.908,27.337L1.029,27.156L0.974,26.969L0.798,26.774L1.043,26.602L0.877,26.405L1.022,26.229L1.097,26.049L0.937,25.85L0.904,25.659L1.104,25.493L1.153,25.313L1.078,25.118L1.126,24.936L1.195,24.759L1.146,24.565L1.041,24.362L1.058,24.177L1.126,23.999L1.352,23.847L1.198,23.633L1.394,23.479L1.362,23.285L1.391,23.103L1.375,22.91L1.526,22.752L1.56,22.57L1.498,22.366L1.514,22.18L1.686,22.031L1.618,21.823L1.76,21.668L1.594,21.433L1.761,21.285L1.916,21.136L1.752,20.897L1.963,20.765L1.891,20.55L2.005,20.391L2.177,20.251L2.196,20.063L2.149,19.852L2.225,19.683L2.216,19.482L2.357,19.336L2.518,19.198L2.588,19.028L2.614,18.84L2.523,18.606L2.747,18.496L2.686,18.271L2.904,18.161L2.906,17.962L3.046,17.821L2.997,17.598L3,17.396L3.275,17.318L3.213,17.086L3.311,16.927L3.35,16.74L3.445,16.581L3.624,16.465L3.675,16.282L3.689,16.081L3.748,15.904L4.008,15.834L4.047,15.646L3.984,15.399L4.129,15.268L4.34,15.177L4.366,14.979L4.345,14.751L4.46,14.604L4.549,14.443L4.642,14.281L4.895,14.222L4.867,13.987L4.895,13.783L5.063,13.672L5.298,13.609L5.353,13.425L5.493,13.297L5.586,13.139L5.536,12.877L5.701,12.768L5.924,12.703L5.883,12.444L5.982,12.287L6.199,12.221L6.228,12.01L6.349,11.871L6.461,11.725L6.659,11.648L6.606,11.487L6.531,11.336L6.599,11.069L6.482,10.925L6.373,10.773L6.308,10.599L6.109,10.485L6.219,10.235L6.117,10.079L5.892,9.962L5.816,9.789L6.004,9.536L5.838,9.391L5.888,9.188L5.805,9.017L5.781,8.833L5.704,8.658L5.605,8.482L5.656,8.289L5.694,8.099L5.685,7.915L5.503,7.731L5.692,7.545L5.7,7.36L5.63,7.17L5.682,6.987L5.603,6.79L5.577,6.595L5.692,6.423L5.821,6.259L5.91,6.09L5.963,5.915V5.723L5.86,5.494L5.917,5.313L6.128,5.193L6.236,5.038L6.184,4.814L6.227,4.626L6.372,4.49L6.354,4.267L6.599,4.193L6.686,4.029L6.663,3.791L6.854,3.695L7.02,3.591L7.03,3.363L7.198,3.261L7.374,3.171L7.507,3.046L7.57,2.853L7.726,2.749L7.891,2.659L7.924,2.417L8.144,2.395L8.306,2.307L8.391,2.116L8.559,2.035L8.743,1.984L8.866,1.838L8.962,1.636L9.209,1.702L9.269,1.411L9.458,1.37L9.657,1.356L9.851,1.343L9.992,1.194L10.14,1.049L10.353,1.102L10.494,0.917L10.697,0.95L10.881,0.924L11.08,0.975L11.233,0.776L11.436,0.867L11.611,0.772L11.805,0.852L11.987,0.82L12.17,0.766L12.354,0.872L12.54,0.665L12.721,0.76L12.895,0.866L13.094,0.699L13.262,0.835L13.435,0.915L13.623,0.889L13.805,0.911L13.991,0.917L14.134,1.092L14.311,1.131L14.51,1.105L14.694,1.133L14.892,1.132L15.041,1.258L15.188,1.379L15.399,1.363L15.544,1.487L15.63,1.719L15.802,1.782L15.925,1.929L16.133,1.938L16.221,2.133L16.441,2.137L16.497,2.367L16.761,2.327L16.926,2.421L17.05,2.562L17.209,2.664L17.224,2.913L17.461,2.943L17.406,3.241L17.653,3.271L17.697,3.543L17.871,3.327L18.086,3.392L18.261,3.341L18.414,3.228L18.54,3.026L18.787,3.205L18.922,3.03L19.066,2.874L19.282,2.965L19.443,2.867L19.655,2.952L19.787,2.749L19.989,2.805L20.134,2.639L20.333,2.69L20.495,2.588L20.685,2.601L20.864,2.572L21.021,2.44L21.224,2.523L21.361,2.289L21.547,2.292L21.733,2.295L21.922,2.318L22.112,2.355L22.285,2.292L22.458,2.234L22.628,2.144L22.792,2.008L22.982,2.051L23.163,2.037L23.344,2.012L23.542,2.145L23.711,2.03L23.891,2L24.08,2.085L24.258,2.045L24.43,1.925L24.619,2.026L24.798,1.998L24.97,1.839L25.162,2.01L25.333,1.828L25.513,1.737L25.697,1.811L25.877,1.761L26.063,1.953L26.244,1.913L26.424,1.793L26.606,1.842L26.791,1.968L26.974,1.938L27.159,1.84L27.347,1.734L27.526,1.928L27.717,1.754L27.896,1.871L28.084,1.792L28.266,1.843L28.451,1.847L28.63,1.932L28.809,1.994L28.986,2.085L29.17,2.09L29.373,1.912L29.532,2.147L29.722,2.108L29.926,1.955L30.1,2.053L30.292,2.006L30.477,2.019L30.655,2.08L30.809,2.287L30.999,2.27L31.186,2.261L31.381,2.223L31.556,2.293L31.746,2.28L31.9,2.449L32.063,2.566L32.281,2.429L32.436,2.578L32.611,2.639L32.806,2.616L32.991,2.636L33.13,2.835L33.347,2.733L33.542,2.719L33.676,2.925L33.845,3.003L34.029,3.029L34.212,3.058L34.39,3.107L34.611,3.017L34.73,3.249L34.914,3.277L35.137,3.195L35.298,3.299L35.47,3.529L35.656,3.374L35.617,3.097L35.754,2.972L35.896,2.854L36.003,2.698L36.107,2.538L36.238,2.406L36.393,2.301L36.659,2.343L36.763,2.18L36.957,2.143L36.972,1.838L37.141,1.76L37.407,1.852L37.557,1.754L37.646,1.534L37.819,1.472L37.995,1.418L38.163,1.352L38.344,1.319L38.494,1.204L38.651,1.1L38.819,1.027L38.999,0.989L39.199,1.04L39.368,0.971L39.54,0.913L39.697,0.745L39.892,0.812L40.064,0.716L40.248,0.7L40.437,0.803L40.62,0.882L40.798,0.902L40.984,0.803L41.175,0.679L41.361,0.708L41.54,0.798L41.726,0.815L41.918,0.788L42.095,0.863L42.296,0.815L42.46,0.942L42.598,1.141L42.818,1.047L42.997,1.1L43.153,1.218L43.303,1.342L43.464,1.434L43.646,1.477L43.819,1.543L43.941,1.71L44.116,1.772L44.316,1.791L44.458,1.91L44.588,2.047L44.839,2.008L44.858,2.295L45.047,2.35L45.262,2.381L45.386,2.522L45.449,2.728L45.619,2.818L45.643,3.05L45.829,3.128L45.987,3.236L46.017,3.449L46.235,3.514L46.198,3.771L46.335,3.898L46.482,4.021L46.502,4.225L46.722,4.311L46.818,4.471L46.917,4.631L46.847,4.87L47.034,4.99L47.016,5.198L47.163,5.341L47.307,5.49L47.364,5.671L47.303,5.884L47.24,6.092L47.262,6.275L47.415,6.432L47.353,6.631L47.493,6.798L47.419,6.993L47.479,7.174L47.451,7.361L47.469,7.545L47.63,7.731L47.653,7.922L47.569,8.106L47.543,8.293L47.515,8.478L47.491,8.664L47.472,8.851L47.526,9.054L47.254,9.185L47.261,9.376L47.19,9.548L47.271,9.767L47.049,9.887L47.184,10.136L47.028,10.274L46.866,10.405L46.905,10.628L46.872,10.82L46.754,10.969L46.684,11.145L46.451,11.206L46.549,11.434L46.499,11.625L46.663,11.729L46.765,11.883L46.989,11.941L46.951,12.206L47.161,12.277L47.171,12.5L47.267,12.659L47.381,12.804L47.499,12.945L47.584,13.111L47.742,13.226L47.862,13.367L48.079,13.443L48.041,13.693L48.296,13.744L48.228,14.011L48.394,14.123L48.425,14.322L48.586,14.44L48.642,14.624L48.672,14.821L48.904,14.897L48.945,15.089L48.978,15.284L49.063,15.447L49.104,15.637L49.246,15.768L49.296,15.951L49.447,16.08L49.602,16.209L49.605,16.416L49.628,16.611L49.867,16.7L49.797,16.94L50.008,17.045L50.032,17.239L50.046,17.437L50.15,17.592L50.141,17.799L50.233,17.961L50.281,18.141L50.495,18.252L50.63,18.399L50.597,18.613L50.693,18.774L50.845,18.915L50.752,19.149L50.809,19.326L50.885,19.496L50.997,19.653L51.121,19.808L50.959,20.058L51.137,20.195L51.258,20.351L51.219,20.558L51.375,20.706L51.348,20.907L51.339,21.104L51.375,21.285L51.47,21.452L51.531,21.628L51.598,21.803L51.65,21.983L51.661,22.171L51.796,22.331L51.644,22.555L51.838,22.703L51.887,22.883L51.888,23.074L51.762,23.287L52.028,23.427L51.984,23.624L52.03,23.806L52.14,23.978L52.161,24.163L52.057,24.368L52.037,24.558L52.058,24.743L52.018,24.935L52.25,25.093L52.278,25.279L52.253,25.47L52.171,25.665L52.298,25.84L52.138,26.04L52.271,26.216L52.378,26.396L52.394,26.583L52.174,26.781L52.242,26.963L52.399,27.145L52.358,27.333L52.209,27.522L52.196,27.708L52.227,27.893L52.34,28.08Z"
android:strokeWidth="1.05402"
android:fillColor="#00000000"
android:strokeColor="#615856"/>
<path
android:pathData="M13.988,22.464L13.861,22.639L13.849,22.818L13.785,22.986L13.747,23.179L13.638,23.337L13.447,23.396L13.273,23.444L13.182,23.714L12.988,23.785L12.783,23.639L12.601,23.64L12.41,23.638L12.281,23.471H12.066L11.928,23.337L11.843,23.16L11.609,23.074L11.61,22.854L11.715,22.637L11.623,22.464L11.56,22.266L11.702,22.107L11.83,21.969L11.905,21.813L11.866,21.528L12.086,21.485L12.26,21.416L12.455,21.434L12.586,21.196L12.783,21.257L12.986,21.164L13.173,21.242L13.352,21.325L13.523,21.425L13.646,21.583L13.799,21.711L13.727,21.973L13.966,22.072L13.872,22.288L13.988,22.464Z"
android:fillColor="#000000"/>
<path
android:pathData="M41.499,22.464L41.557,22.647L41.445,22.802L41.486,23.013L41.354,23.15L41.283,23.335L41.199,23.544L40.95,23.506L40.763,23.51L40.599,23.556L40.431,23.726L40.259,23.564L40.092,23.525L39.924,23.478L39.725,23.456L39.507,23.406L39.494,23.159L39.484,22.956L39.191,22.875L39.366,22.636L39.117,22.464L39.285,22.278L39.228,22.066L39.427,21.942L39.548,21.811L39.518,21.534L39.711,21.455L39.928,21.456L40.042,21.246L40.263,21.39L40.431,21.152L40.61,21.309L40.81,21.27L40.951,21.422L41.071,21.563L41.238,21.64L41.435,21.719L41.489,21.914L41.553,22.092L41.73,22.254L41.499,22.464Z"
android:fillColor="#000000"/>
<path
android:pathData="M30.918,25.888L31.02,26.071L31.072,26.292L30.887,26.411L30.75,26.535L30.617,26.654L30.595,26.916L30.371,26.926L30.18,26.961L30.05,27.098L29.842,27.079L29.738,27.289L29.541,27.282L29.379,27.364L29.262,27.592L29.037,27.474L28.889,27.623L28.684,27.544L28.539,27.734L28.332,27.614L28.174,27.759L27.98,27.696L27.793,27.657L27.628,27.799L27.458,27.937L27.275,27.961L27.088,27.883L26.9,27.719L26.721,27.75L26.54,27.734L26.361,27.763L26.176,27.906L25.992,27.939L25.817,27.81L25.638,27.785L25.461,27.736L25.27,27.812L25.092,27.768L24.923,27.672L24.719,27.782L24.534,27.781L24.377,27.634L24.18,27.67L24.066,27.397L23.83,27.553L23.689,27.397L23.497,27.392L23.358,27.25L23.142,27.282L23.072,27.016L22.801,27.127L22.692,26.95L22.562,26.815L22.507,26.607L22.386,26.487L22.233,26.384L22.096,26.252L22.15,26.051L22.121,25.888L21.942,25.68L22.196,25.565L22.254,25.404L22.329,25.239L22.414,25.066L22.589,24.99L22.785,24.962L22.797,24.639L23.055,24.725L23.169,24.546L23.331,24.459L23.561,24.552L23.707,24.431L23.864,24.329L24.05,24.324L24.184,24.124L24.381,24.156L24.583,24.244L24.718,23.986L24.897,23.951L25.101,24.083L25.267,23.955L25.456,24.002H25.638L25.81,23.875L25.995,23.905L26.174,23.837L26.361,24.042L26.54,23.796L26.723,23.827L26.905,23.885L27.091,23.806L27.266,23.947L27.454,23.873L27.619,24.054L27.817,23.919L28.001,23.924L28.173,24.014L28.349,24.062L28.514,24.166L28.682,24.24L28.879,24.194L29.031,24.326L29.24,24.259L29.403,24.35L29.602,24.337L29.688,24.61L29.944,24.48L30.029,24.724L30.2,24.784L30.315,24.936L30.564,24.903L30.709,25.026L30.868,25.14L30.873,25.376L31.056,25.493L31.01,25.709L30.918,25.888Z"
android:fillColor="#000000"/>
<path
android:pathData="M26.349,27.855L26.348,28.044L26.385,28.235L26.27,28.424L26.336,28.615L26.361,28.805L26.368,28.996L26.447,29.187L26.419,29.376L26.413,29.567L26.411,29.757L26.422,29.948L26.211,30.139L26.448,30.329L26.345,30.519L26.369,30.71L26.449,30.902L26.22,31.093"
android:strokeWidth="1.18577"
android:fillColor="#00000000"
android:strokeColor="#000000"/>
</group>
</vector>
Loading