feat(auth): update platform selection screen and login text
- Add "Continue" string resource for navigation - Update login screen heading to "Welcome back!" - Add login subheading "Great to see you again!" - Update registration form heading to "Make it Official!" - Change registration data text to "New Here? Let's Get You Set Up!" - Change platform button text from "Login" to "Confirm" - Set API URL to "https://api.revolt.chat" for both platform options
This commit is contained in:
parent
80db00ee2a
commit
6a413f8e17
|
|
@ -138,7 +138,7 @@ fun LoginGreetingScreen(navController: NavController) {
|
|||
Spacer(modifier = Modifier.height(5.dp))
|
||||
|
||||
ElevatedButton(
|
||||
onClick = { navController.navigate("register/greeting") },
|
||||
onClick = { navController.navigate("register/details") },
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("view_signup_page_button")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
package chat.revolt.screens.login
|
||||
|
||||
import android.util.Log
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
|
|
@ -10,18 +11,20 @@ import androidx.compose.foundation.layout.fillMaxWidth
|
|||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.imePadding
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.layout.width
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.text.input.TextObfuscationMode
|
||||
import androidx.compose.foundation.text.input.rememberTextFieldState
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.HorizontalDivider
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.IconButton
|
||||
import androidx.compose.material3.LocalTextStyle
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Scaffold
|
||||
import androidx.compose.material3.SecureTextField
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.TextButton
|
||||
import androidx.compose.material3.TopAppBar
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.LaunchedEffect
|
||||
import androidx.compose.runtime.getValue
|
||||
|
|
@ -31,7 +34,6 @@ import androidx.compose.runtime.setValue
|
|||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.autofill.ContentType
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.testTag
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
|
|
@ -150,6 +152,7 @@ class LoginViewModel @Inject constructor(
|
|||
}
|
||||
}
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltViewModel()) {
|
||||
val passwordTextFieldState = rememberTextFieldState()
|
||||
|
|
@ -158,8 +161,6 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
}
|
||||
val showPassword = remember { mutableStateOf(false) }
|
||||
|
||||
val context = LocalContext.current
|
||||
|
||||
LaunchedEffect(viewModel.navigateTo) {
|
||||
when (viewModel.navigateTo) {
|
||||
"mfa" -> {
|
||||
|
|
@ -189,21 +190,53 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
}
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.padding(20.dp)
|
||||
.imePadding()
|
||||
.safeDrawingPadding(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Scaffold(
|
||||
topBar = {
|
||||
Column {
|
||||
TopAppBar(
|
||||
modifier = Modifier.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
title = {},
|
||||
actions = {
|
||||
Row(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
horizontalArrangement = Arrangement.SpaceBetween,
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
IconButton(
|
||||
content = {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.icn_arrow_back_24dp),
|
||||
contentDescription = stringResource(R.string.back)
|
||||
)
|
||||
},
|
||||
onClick = { navController.popBackStack() }
|
||||
)
|
||||
Text(text = "Register")
|
||||
}
|
||||
},
|
||||
)
|
||||
HorizontalDivider()
|
||||
}
|
||||
}
|
||||
) { innerPadding ->
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.weight(1f),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
.padding(innerPadding)
|
||||
.fillMaxSize()
|
||||
.padding(vertical = 20.dp, horizontal = 16.dp)
|
||||
.imePadding(),
|
||||
verticalArrangement = Arrangement.Top,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
Image(
|
||||
modifier = Modifier
|
||||
.size(120.dp),
|
||||
painter = painterResource(R.drawable.login_charachter_img),
|
||||
contentDescription = "Login character"
|
||||
)
|
||||
Spacer(modifier = Modifier.height(4.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.login_heading),
|
||||
style = MaterialTheme.typography.displaySmall.copy(
|
||||
|
|
@ -212,15 +245,31 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
textAlign = TextAlign.Center
|
||||
),
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 20.dp, vertical = 10.dp)
|
||||
.padding(horizontal = 20.dp, vertical = 4.dp)
|
||||
.fillMaxWidth()
|
||||
)
|
||||
Text(
|
||||
text = stringResource(R.string.login_subheading),
|
||||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
style = MaterialTheme.typography.titleMedium.copy(
|
||||
fontSize = 16.sp,
|
||||
textAlign = TextAlign.Center,
|
||||
fontWeight = FontWeight.Normal
|
||||
),
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 20.dp)
|
||||
.fillMaxWidth()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.width(270.dp),
|
||||
.fillMaxWidth(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
horizontalAlignment = Alignment.Start
|
||||
) {
|
||||
FormTextField(
|
||||
value = viewModel.email,
|
||||
|
|
@ -229,7 +278,8 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
action = ImeAction.Next,
|
||||
onChange = viewModel::setEmail,
|
||||
modifier = Modifier
|
||||
.padding(vertical = 25.dp)
|
||||
.fillMaxWidth()
|
||||
.padding(bottom = 16.dp)
|
||||
.semantics {
|
||||
contentType = ContentType.EmailAddress
|
||||
}
|
||||
|
|
@ -250,6 +300,7 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
showPassword.value = !showPassword.value
|
||||
}) {
|
||||
when {
|
||||
|
||||
showPassword.value -> {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.icn_visibility_off_24dp),
|
||||
|
|
@ -266,59 +317,27 @@ fun LoginScreen(navController: NavController, viewModel: LoginViewModel = hiltVi
|
|||
}
|
||||
}
|
||||
},
|
||||
modifier = Modifier.semantics {
|
||||
contentType = ContentType.Password
|
||||
}
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.semantics {
|
||||
contentType = ContentType.Password
|
||||
}
|
||||
)
|
||||
|
||||
Weblink(
|
||||
text = stringResource(R.string.password_forgot),
|
||||
url = "$REVOLT_APP/login/reset",
|
||||
modifier = Modifier.padding(vertical = 7.dp)
|
||||
modifier = Modifier.padding(vertical = 12.dp)
|
||||
)
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
if (viewModel.error != null) {
|
||||
Text(
|
||||
text = viewModel.error!!,
|
||||
color = MaterialTheme.colorScheme.error,
|
||||
style = MaterialTheme.typography.titleMedium.copy(
|
||||
textAlign = TextAlign.Center,
|
||||
fontWeight = FontWeight.Normal,
|
||||
fontSize = 15.sp
|
||||
),
|
||||
modifier = Modifier.padding(vertical = 7.dp)
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth(),
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Weblink(
|
||||
text = stringResource(R.string.resend_verification),
|
||||
url = "$REVOLT_APP/login/resend",
|
||||
modifier = Modifier
|
||||
.padding(vertical = 7.dp)
|
||||
.testTag("resend_verification_link")
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(10.dp))
|
||||
|
||||
Row {
|
||||
TextButton(onClick = {
|
||||
navController.popBackStack()
|
||||
}) {
|
||||
Text(text = stringResource(R.string.back))
|
||||
}
|
||||
|
||||
Spacer(modifier = Modifier.width(10.dp))
|
||||
|
||||
Button(onClick = {
|
||||
viewModel.doLogin()
|
||||
}) {
|
||||
Button(
|
||||
onClick = {
|
||||
viewModel.doLogin()
|
||||
},
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("confirm_platform_button")
|
||||
) {
|
||||
Text(text = stringResource(R.string.login))
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
package chat.revolt.screens.register
|
||||
|
||||
import android.content.Context
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
|
|
@ -10,12 +11,16 @@ import androidx.compose.foundation.layout.fillMaxWidth
|
|||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.imePadding
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.safeDrawingPadding
|
||||
import androidx.compose.foundation.layout.width
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.HorizontalDivider
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.IconButton
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Scaffold
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.material3.TextButton
|
||||
import androidx.compose.material3.TopAppBar
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
|
|
@ -24,6 +29,8 @@ import androidx.compose.ui.Alignment
|
|||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.autofill.ContentType
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.platform.testTag
|
||||
import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.semantics.contentType
|
||||
import androidx.compose.ui.semantics.semantics
|
||||
|
|
@ -112,28 +119,59 @@ class RegisterDetailsScreenViewModel : ViewModel() {
|
|||
}
|
||||
}
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
fun RegisterDetailsScreen(
|
||||
navController: NavController,
|
||||
viewModel: RegisterDetailsScreenViewModel = viewModel()
|
||||
) {
|
||||
val context = LocalContext.current
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.padding(20.dp)
|
||||
.imePadding()
|
||||
.safeDrawingPadding(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Scaffold(
|
||||
topBar = {
|
||||
Column {
|
||||
TopAppBar(
|
||||
modifier = Modifier.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
title = {},
|
||||
actions = {
|
||||
Row(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
horizontalArrangement = Arrangement.SpaceBetween,
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
IconButton(
|
||||
content = {
|
||||
Icon(
|
||||
painter = painterResource(R.drawable.icn_arrow_back_24dp),
|
||||
contentDescription = stringResource(R.string.back)
|
||||
)
|
||||
},
|
||||
onClick = { navController.popBackStack() }
|
||||
)
|
||||
Text(text = stringResource(R.string.login))
|
||||
}
|
||||
},
|
||||
)
|
||||
HorizontalDivider()
|
||||
}
|
||||
}
|
||||
) { innerPadding ->
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.weight(1f),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
.padding(innerPadding)
|
||||
.fillMaxSize()
|
||||
.padding(vertical = 20.dp, horizontal = 16.dp)
|
||||
.imePadding(),
|
||||
verticalArrangement = Arrangement.Top,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
Image(
|
||||
modifier = Modifier
|
||||
.size(120.dp),
|
||||
painter = painterResource(R.drawable.login_charachter_img),
|
||||
contentDescription = "Login character"
|
||||
)
|
||||
Spacer(modifier = Modifier.height(4.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.register_form_heading),
|
||||
style = MaterialTheme.typography.displaySmall.copy(
|
||||
|
|
@ -142,33 +180,31 @@ fun RegisterDetailsScreen(
|
|||
textAlign = TextAlign.Center
|
||||
),
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 10.dp)
|
||||
.padding(horizontal = 20.dp, vertical = 4.dp)
|
||||
.fillMaxWidth()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(10.dp))
|
||||
|
||||
Text(
|
||||
text = stringResource(R.string.register_data),
|
||||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
style = MaterialTheme.typography.titleMedium.copy(
|
||||
fontSize = 16.sp,
|
||||
textAlign = TextAlign.Center,
|
||||
fontWeight = FontWeight.Normal
|
||||
),
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 10.dp)
|
||||
.padding(horizontal = 20.dp)
|
||||
.fillMaxWidth()
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(40.dp))
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth(),
|
||||
verticalArrangement = Arrangement.Center,
|
||||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
horizontalAlignment = Alignment.Start
|
||||
) {
|
||||
FormTextField(
|
||||
value = viewModel.email,
|
||||
|
|
@ -176,66 +212,34 @@ fun RegisterDetailsScreen(
|
|||
label = stringResource(R.string.register_email),
|
||||
type = KeyboardType.Email,
|
||||
action = ImeAction.Next,
|
||||
modifier = Modifier.semantics { contentType = ContentType.EmailAddress }
|
||||
modifier = Modifier.fillMaxWidth().semantics { contentType = ContentType.EmailAddress }
|
||||
)
|
||||
Text(
|
||||
text = stringResource(R.string.register_email_verification_hint),
|
||||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
fontSize = 12.sp,
|
||||
modifier = Modifier.padding(horizontal = 40.dp, vertical = 10.dp)
|
||||
)
|
||||
|
||||
Spacer(modifier = Modifier.height(10.dp))
|
||||
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
FormTextField(
|
||||
value = viewModel.password,
|
||||
onChange = { viewModel.password = it },
|
||||
label = stringResource(R.string.register_password),
|
||||
type = KeyboardType.Password,
|
||||
action = ImeAction.Done,
|
||||
modifier = Modifier.semantics { contentType = ContentType.NewPassword }
|
||||
)
|
||||
Text(
|
||||
text = stringResource(R.string.register_password_rules),
|
||||
color = MaterialTheme.colorScheme.onBackground.copy(
|
||||
alpha = 0.5f
|
||||
),
|
||||
fontSize = 12.sp,
|
||||
modifier = Modifier.padding(horizontal = 40.dp, vertical = 10.dp)
|
||||
type = KeyboardType.Email,
|
||||
action = ImeAction.Next,
|
||||
modifier = Modifier.fillMaxWidth().semantics { contentType = ContentType.EmailAddress }
|
||||
)
|
||||
Spacer(modifier = Modifier.height(32.dp))
|
||||
|
||||
if (!viewModel.error.isNullOrBlank()) {
|
||||
Text(
|
||||
text = viewModel.error!!,
|
||||
color = MaterialTheme.colorScheme.error,
|
||||
modifier = Modifier.padding(horizontal = 40.dp, vertical = 10.dp),
|
||||
textAlign = TextAlign.Center
|
||||
)
|
||||
val context = LocalContext.current
|
||||
|
||||
Button(
|
||||
onClick = {
|
||||
viewModel.initCaptcha(context) {
|
||||
viewModel.doRegistration(navController)
|
||||
}
|
||||
},
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.testTag("setup_continue_button")
|
||||
) {
|
||||
Text(text = stringResource(R.string.continue_))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Row {
|
||||
TextButton(onClick = {
|
||||
navController.popBackStack()
|
||||
}) {
|
||||
Text(text = stringResource(R.string.back))
|
||||
}
|
||||
|
||||
Spacer(modifier = Modifier.width(10.dp))
|
||||
|
||||
Button(
|
||||
onClick = {
|
||||
viewModel.initCaptcha(context) {
|
||||
viewModel.doRegistration(navController)
|
||||
}
|
||||
},
|
||||
enabled = viewModel.email.isNotBlank() && viewModel.password.isNotBlank()
|
||||
) {
|
||||
Text(text = stringResource(R.string.signup))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,201 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="65dp"
|
||||
android:height="64dp"
|
||||
android:viewportWidth="65"
|
||||
android:viewportHeight="64">
|
||||
<path
|
||||
android:pathData="M25.55,34.42C24.121,40.643 23.405,47.03 23.42,53.416C23.423,54.419 23.401,55.451 23.118,56.421C22.986,56.874 22.777,57.26 22.549,57.669C22.288,58.136 21.945,58.269 21.444,58.457C20.516,58.806 19.565,59.356 19.211,60.282C18.949,60.966 19.082,61.785 19.546,62.352C20.686,63.743 23.083,63.701 24.679,63.506C24.56,62.963 25.054,62.377 25.609,62.4C26.165,62.424 26.607,63.05 26.443,63.581C27.565,63.541 31.511,64.124 31.399,62.503C30.836,54.311 31.922,46.01 34.573,38.239"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M25.399,34.377C24.801,36.986 24.328,39.623 23.979,42.277C23.63,44.936 23.408,47.611 23.314,50.29C23.291,50.953 23.276,51.616 23.268,52.279C23.261,52.937 23.274,53.596 23.255,54.253C23.236,54.897 23.182,55.542 23.024,56.169C22.951,56.457 22.853,56.734 22.724,57.002C22.601,57.258 22.474,57.537 22.301,57.763C22.017,58.132 21.532,58.241 21.124,58.413C20.649,58.612 20.192,58.86 19.802,59.199C19.423,59.529 19.118,59.96 18.992,60.451C18.861,60.959 18.917,61.502 19.131,61.979C19.519,62.84 20.426,63.335 21.303,63.561C22.2,63.792 23.148,63.804 24.067,63.732C24.273,63.716 24.479,63.695 24.685,63.67C24.795,63.656 24.864,63.577 24.842,63.463C24.756,63.01 25.185,62.511 25.653,62.566C26.096,62.618 26.41,63.117 26.292,63.538C26.264,63.638 26.343,63.748 26.449,63.745C26.977,63.727 27.508,63.781 28.036,63.8C28.701,63.824 29.373,63.831 30.034,63.735C30.528,63.663 31.126,63.523 31.422,63.08C31.587,62.834 31.573,62.566 31.554,62.284C31.515,61.682 31.485,61.079 31.463,60.476C31.377,58.064 31.433,55.646 31.629,53.241C31.824,50.849 32.158,48.47 32.628,46.117C33.102,43.75 33.713,41.411 34.459,39.115C34.55,38.837 34.643,38.56 34.737,38.283C34.805,38.083 34.49,37.998 34.422,38.196C33.655,40.446 33.018,42.74 32.515,45.063C32.016,47.365 31.649,49.695 31.412,52.039C31.173,54.404 31.07,56.783 31.104,59.16C31.112,59.745 31.129,60.33 31.154,60.914C31.167,61.216 31.182,61.517 31.199,61.818C31.214,62.07 31.247,62.326 31.244,62.578C31.242,62.773 31.16,62.931 31.005,63.057C30.831,63.201 30.593,63.282 30.372,63.338C29.763,63.492 29.118,63.496 28.493,63.486C27.907,63.477 27.322,63.432 26.736,63.418C26.64,63.416 26.545,63.415 26.449,63.418L26.606,63.625C26.783,62.998 26.307,62.294 25.653,62.24C24.959,62.182 24.402,62.892 24.528,63.55L24.685,63.343C23.808,63.449 22.909,63.495 22.031,63.372C21.167,63.251 20.27,62.954 19.692,62.266C19.358,61.869 19.211,61.338 19.256,60.825C19.301,60.323 19.564,59.875 19.923,59.531C20.284,59.184 20.732,58.935 21.189,58.737C21.604,58.557 22.069,58.448 22.406,58.13C22.593,57.954 22.712,57.727 22.833,57.504C22.971,57.247 23.1,56.984 23.201,56.71C23.412,56.135 23.5,55.512 23.548,54.904C23.597,54.276 23.588,53.647 23.59,53.018C23.591,52.355 23.601,51.692 23.618,51.028C23.687,48.415 23.877,45.804 24.189,43.208C24.503,40.589 24.943,37.984 25.503,35.407C25.572,35.092 25.642,34.777 25.714,34.464C25.761,34.259 25.446,34.172 25.399,34.377Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M25.556,34.42C25.556,34.423 25.555,34.427 25.554,34.43C25.264,36.186 24.922,37.932 24.529,39.667C24.094,42.328 23.787,45.011 23.609,47.702C26.44,47.432 29.309,47.556 32.106,48.071C32.661,44.734 34.304,39.153 35.396,35.951L25.556,34.42Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M26.759,57.842C26.719,57.846 26.688,57.848 26.667,57.851C26.593,57.86 26.501,57.86 26.465,57.795C26.438,57.749 26.455,57.691 26.472,57.64C26.711,56.89 26.628,56.023 26.171,55.382C25.559,54.524 23.918,54.114 23.133,54.997C22.812,55.358 22.829,55.896 22.848,56.379C22.889,57.431 22.411,58.094 21.443,58.458C20.515,58.806 19.565,59.356 19.211,60.282C18.949,60.966 19.082,61.786 19.546,62.352C20.686,63.743 23.083,63.701 24.679,63.506C24.56,62.963 25.054,62.377 25.609,62.4C26.165,62.424 26.607,63.05 26.443,63.581C27.565,63.541 31.511,64.124 31.399,62.503C31.287,60.871 31.241,59.235 31.259,57.6C31.26,57.591 27.499,57.78 26.759,57.842Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M26.763,57.68C26.727,57.683 26.691,57.688 26.655,57.69C26.644,57.691 26.613,57.688 26.605,57.693L26.594,57.692C26.576,57.688 26.579,57.693 26.602,57.707L26.621,57.723C26.627,57.703 26.633,57.682 26.64,57.662C26.646,57.641 26.653,57.62 26.659,57.598C26.675,57.541 26.689,57.483 26.702,57.425C26.744,57.229 26.767,57.027 26.769,56.827C26.774,56.419 26.689,56.013 26.516,55.644C26.227,55.026 25.656,54.612 25.006,54.434C24.391,54.265 23.691,54.313 23.183,54.728C22.884,54.972 22.742,55.309 22.698,55.686C22.654,56.064 22.72,56.444 22.673,56.821C22.59,57.472 22.182,57.945 21.599,58.219C21.256,58.38 20.897,58.497 20.563,58.678C20.224,58.861 19.9,59.085 19.629,59.36C19.076,59.922 18.813,60.688 18.964,61.469C19.104,62.192 19.601,62.766 20.224,63.131C21.401,63.82 22.897,63.838 24.217,63.72C24.372,63.706 24.527,63.689 24.683,63.67C24.793,63.657 24.862,63.577 24.84,63.464C24.753,63.011 25.181,62.513 25.649,62.567C26.093,62.617 26.408,63.118 26.289,63.539C26.261,63.638 26.34,63.749 26.447,63.745C26.923,63.729 27.402,63.775 27.877,63.795C28.494,63.82 29.115,63.834 29.73,63.772C30.231,63.722 30.793,63.637 31.201,63.315C31.365,63.185 31.493,63.007 31.542,62.801C31.574,62.665 31.568,62.532 31.559,62.393C31.54,62.109 31.523,61.825 31.508,61.541C31.439,60.229 31.413,58.914 31.426,57.601C31.427,57.549 31.396,57.481 31.346,57.46C31.221,57.406 31.043,57.445 30.912,57.451C30.602,57.465 30.292,57.481 29.982,57.496C29.197,57.536 28.411,57.577 27.626,57.623C27.338,57.64 27.05,57.656 26.763,57.68C26.555,57.697 26.553,58.024 26.763,58.006C28.096,57.895 29.437,57.847 30.773,57.784C30.889,57.779 31.006,57.773 31.122,57.768C31.155,57.767 31.189,57.768 31.222,57.764C31.277,57.759 31.286,57.787 31.181,57.742L31.1,57.601C31.088,58.722 31.105,59.842 31.154,60.962C31.177,61.492 31.236,62.026 31.242,62.555C31.244,62.73 31.188,62.877 31.068,62.998C30.765,63.306 30.232,63.39 29.813,63.437C29.223,63.504 28.626,63.496 28.033,63.474C27.506,63.456 26.974,63.401 26.447,63.419L26.604,63.625C26.781,62.998 26.303,62.294 25.649,62.24C24.956,62.184 24.399,62.894 24.525,63.55L24.683,63.344C23.424,63.496 22.053,63.548 20.852,63.075C20.257,62.841 19.69,62.429 19.419,61.833C19.102,61.137 19.233,60.32 19.724,59.74C20.2,59.177 20.874,58.86 21.546,58.594C22.126,58.364 22.625,57.982 22.862,57.39C22.982,57.09 23.023,56.762 23.017,56.441C23.009,56.073 22.964,55.67 23.12,55.324C23.378,54.748 24.114,54.6 24.677,54.695C25.275,54.796 25.848,55.116 26.153,55.652C26.348,55.995 26.441,56.389 26.443,56.782C26.444,56.977 26.425,57.17 26.382,57.36C26.344,57.533 26.223,57.751 26.353,57.911C26.456,58.039 26.617,58.019 26.763,58.006C26.97,57.988 26.972,57.661 26.763,57.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.02,61.164C21.964,61.116 21.951,61.036 21.941,60.962C21.885,60.531 21.846,60.094 21.719,59.679C21.593,59.269 21.356,58.894 21.043,58.621C20.254,58.972 19.514,59.489 19.211,60.281C18.949,60.965 19.082,61.785 19.546,62.352C20.686,63.743 23.083,63.701 24.679,63.506C24.56,62.963 25.054,62.376 25.609,62.4C26.165,62.424 26.607,63.05 26.443,63.581C27.565,63.541 31.511,64.124 31.399,62.502C31.365,62.005 31.338,61.507 31.316,61.009C28.289,61.077 25.263,61.145 22.236,61.213C22.16,61.215 22.077,61.214 22.02,61.164Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.139,61.049C22.074,60.979 22.086,60.794 22.075,60.704C22.06,60.586 22.045,60.467 22.029,60.349C21.993,60.101 21.949,59.853 21.873,59.614C21.738,59.19 21.494,58.803 21.162,58.506C21.102,58.453 21.034,58.449 20.964,58.481C20.298,58.78 19.647,59.199 19.256,59.832C18.851,60.485 18.817,61.303 19.137,61.998C19.713,63.254 21.258,63.661 22.514,63.748C23.237,63.798 23.964,63.757 24.682,63.67C24.792,63.657 24.861,63.577 24.839,63.464C24.752,63.011 25.181,62.513 25.649,62.566C26.092,62.617 26.408,63.117 26.288,63.538C26.26,63.638 26.34,63.749 26.446,63.745C26.813,63.733 27.181,63.763 27.547,63.78C28.038,63.803 28.529,63.822 29.02,63.812C29.498,63.802 29.986,63.771 30.452,63.654C30.81,63.563 31.185,63.41 31.406,63.099C31.52,62.939 31.572,62.741 31.568,62.545C31.556,62.034 31.505,61.521 31.482,61.01C31.478,60.923 31.411,60.844 31.319,60.846C28.905,60.901 26.491,60.955 24.077,61.009C23.743,61.017 23.409,61.024 23.075,61.032C22.898,61.036 22.722,61.04 22.546,61.043C22.424,61.046 22.208,61.094 22.105,61.024C21.932,60.905 21.768,61.188 21.941,61.306C22.031,61.367 22.133,61.377 22.239,61.377C22.406,61.376 22.573,61.369 22.741,61.366C23.047,61.359 23.353,61.352 23.66,61.345C24.282,61.331 24.904,61.317 25.526,61.303C26.751,61.275 27.977,61.248 29.202,61.22C29.908,61.204 30.614,61.189 31.319,61.173L31.156,61.01C31.176,61.471 31.201,61.932 31.232,62.393C31.243,62.567 31.25,62.723 31.172,62.859C31.021,63.123 30.692,63.254 30.389,63.333C29.506,63.563 28.544,63.5 27.641,63.458C27.244,63.439 26.844,63.405 26.446,63.419L26.603,63.625C26.781,62.998 26.302,62.293 25.649,62.24C24.956,62.183 24.398,62.894 24.524,63.55L24.682,63.344C23.495,63.487 22.226,63.536 21.076,63.156C20.526,62.974 19.993,62.669 19.637,62.202C19.212,61.645 19.12,60.847 19.42,60.212C19.753,59.508 20.442,59.071 21.129,58.763L20.931,58.737C21.279,59.048 21.501,59.448 21.613,59.898C21.675,60.146 21.711,60.399 21.742,60.652C21.768,60.861 21.757,61.117 21.908,61.28C22.05,61.435 22.281,61.204 22.139,61.049Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M23.635,47.705C24.73,47.525 25.848,47.476 26.958,47.484C28.091,47.492 29.228,47.562 30.35,47.72C30.885,47.795 31.417,47.89 31.94,48.023C32.144,48.075 32.231,47.761 32.027,47.709C31.017,47.451 29.972,47.323 28.934,47.241C27.75,47.148 26.557,47.127 25.371,47.195C24.76,47.23 24.151,47.291 23.548,47.39C23.341,47.425 23.429,47.739 23.635,47.705Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M30.367,47.473C30.534,45.946 30.826,44.432 31.163,42.934C31.519,41.356 31.934,39.79 32.413,38.245C32.647,37.488 32.898,36.736 33.175,35.994C33.249,35.797 32.934,35.712 32.861,35.907C32.337,37.307 31.902,38.74 31.511,40.182C31.081,41.765 30.707,43.365 30.412,44.979C30.261,45.806 30.132,46.638 30.04,47.473C30.017,47.682 30.344,47.68 30.367,47.473Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.953,47.33C28.298,44.216 28.937,41.128 29.799,38.117C30.034,37.295 30.288,36.478 30.563,35.668C30.63,35.469 30.315,35.383 30.248,35.581C29.237,38.563 28.486,41.639 27.98,44.745C27.841,45.604 27.722,46.466 27.626,47.33C27.603,47.539 27.93,47.537 27.953,47.33Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M25.609,47.208C25.772,45.577 26.017,43.954 26.328,42.345C26.649,40.686 27.041,39.04 27.523,37.42C27.78,36.555 28.064,35.697 28.383,34.852C28.457,34.655 28.142,34.57 28.068,34.765C27.488,36.303 27.021,37.882 26.625,39.477C26.215,41.134 25.883,42.811 25.626,44.498C25.489,45.398 25.373,46.302 25.282,47.208C25.261,47.417 25.588,47.415 25.609,47.208Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.617,33.627C35.962,33.445 38.324,33.486 40.661,33.749C42.475,33.953 42.656,35.4 43.111,36.901C43.643,38.655 44.117,40.426 44.533,42.211C45.365,45.78 45.964,49.404 46.323,53.052C46.421,54.05 46.546,55.075 46.925,56.012C47.102,56.45 47.349,56.813 47.617,57.197C47.923,57.635 48.278,57.733 48.796,57.87C49.754,58.124 50.755,58.576 51.2,59.461C51.529,60.116 51.479,60.945 51.074,61.555C50.079,63.053 47.69,63.252 46.083,63.218C46.146,62.666 45.597,62.132 45.046,62.211C44.496,62.29 44.119,62.958 44.335,63.47C43.215,63.542 39.347,64.518 39.296,62.894C39.035,54.687 37.121,46.536 33.704,39.071"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M33.618,33.79C35.308,33.661 37.007,33.644 38.699,33.744C39.12,33.769 39.54,33.801 39.96,33.84C40.333,33.875 40.718,33.893 41.081,33.994C41.563,34.127 41.952,34.423 42.213,34.849C42.48,35.285 42.621,35.784 42.76,36.271C42.958,36.964 43.169,37.654 43.366,38.347C43.824,39.958 44.234,41.583 44.595,43.219C45.315,46.481 45.834,49.783 46.166,53.107C46.318,54.637 46.569,56.195 47.582,57.418C47.978,57.896 48.599,57.964 49.155,58.146C49.748,58.34 50.338,58.626 50.759,59.099C51.21,59.606 51.363,60.313 51.171,60.963C51.007,61.52 50.583,61.96 50.1,62.261C49.142,62.859 47.948,63.015 46.841,63.051C46.589,63.06 46.336,63.06 46.084,63.055L46.247,63.218C46.306,62.537 45.623,61.913 44.948,62.064C44.338,62.201 43.95,62.933 44.179,63.513L44.336,63.307C43.798,63.343 43.263,63.452 42.729,63.526C42.069,63.616 41.396,63.693 40.729,63.654C40.315,63.629 39.691,63.557 39.508,63.129C39.46,63.018 39.459,62.882 39.455,62.756C39.445,62.462 39.433,62.169 39.418,61.875C39.39,61.288 39.353,60.701 39.308,60.115C39.128,57.784 38.816,55.463 38.376,53.167C37.935,50.867 37.364,48.592 36.667,46.356C35.971,44.124 35.149,41.932 34.206,39.793C34.088,39.524 33.967,39.256 33.845,38.988C33.758,38.798 33.477,38.963 33.563,39.153C34.55,41.312 35.412,43.528 36.143,45.786C36.876,48.049 37.48,50.354 37.949,52.686C38.418,55.013 38.753,57.366 38.951,59.731C39,60.326 39.041,60.921 39.074,61.517C39.09,61.811 39.104,62.104 39.115,62.398C39.124,62.62 39.112,62.85 39.152,63.069C39.248,63.596 39.769,63.838 40.246,63.924C40.894,64.041 41.568,63.988 42.218,63.916C42.827,63.848 43.429,63.74 44.036,63.664C44.136,63.651 44.236,63.64 44.336,63.633C44.431,63.627 44.535,63.532 44.493,63.426C44.334,63.022 44.566,62.504 44.998,62.388C45.49,62.256 45.962,62.74 45.92,63.218C45.913,63.307 46.001,63.38 46.084,63.382C47.226,63.404 48.421,63.327 49.498,62.916C50.623,62.487 51.652,61.574 51.576,60.268C51.493,58.832 50.167,58.08 48.924,57.736C48.643,57.658 48.348,57.599 48.098,57.443C47.814,57.265 47.637,56.951 47.461,56.675C47.025,55.992 46.801,55.223 46.662,54.43C46.515,53.592 46.459,52.74 46.364,51.895C46.27,51.052 46.162,50.21 46.042,49.37C45.801,47.681 45.508,45.999 45.164,44.327C44.816,42.631 44.415,40.946 43.963,39.275C43.74,38.453 43.502,37.636 43.258,36.82C43.1,36.293 42.973,35.753 42.767,35.242C42.578,34.772 42.317,34.334 41.904,34.029C41.37,33.634 40.716,33.586 40.077,33.525C38.36,33.359 36.632,33.313 34.909,33.386C34.478,33.405 34.048,33.431 33.618,33.464C33.41,33.48 33.408,33.806 33.618,33.79Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.617,33.627C35.962,33.445 38.324,33.486 40.661,33.749C42.475,33.953 42.656,35.4 43.111,36.901C43.643,38.655 44.117,40.426 44.533,42.211C45.365,45.78 45.964,49.404 46.323,53.052C46.421,54.05 46.546,55.075 46.925,56.012C47.102,56.45 47.349,56.813 47.617,57.197C47.923,57.635 48.278,57.733 48.796,57.87C49.754,58.124 50.755,58.576 51.2,59.461C51.529,60.116 51.479,60.945 51.074,61.555C50.079,63.053 47.69,63.252 46.083,63.218C46.146,62.666 45.597,62.132 45.046,62.211C44.496,62.29 44.119,62.958 44.335,63.47C43.215,63.542 39.347,64.518 39.296,62.894C39.035,54.687 37.121,46.536 33.704,39.071"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M33.618,33.79C35.308,33.661 37.007,33.644 38.699,33.744C39.12,33.769 39.54,33.801 39.96,33.84C40.333,33.875 40.718,33.893 41.081,33.994C41.563,34.127 41.952,34.423 42.213,34.849C42.48,35.285 42.621,35.784 42.76,36.271C42.958,36.964 43.169,37.654 43.366,38.347C43.824,39.958 44.234,41.583 44.595,43.219C45.315,46.481 45.834,49.783 46.166,53.107C46.318,54.637 46.569,56.195 47.582,57.418C47.978,57.896 48.599,57.964 49.155,58.146C49.748,58.34 50.338,58.626 50.759,59.099C51.21,59.606 51.363,60.313 51.171,60.963C51.007,61.52 50.583,61.96 50.1,62.261C49.142,62.859 47.948,63.015 46.841,63.051C46.589,63.06 46.336,63.06 46.084,63.055L46.247,63.218C46.306,62.537 45.623,61.913 44.948,62.064C44.338,62.201 43.95,62.933 44.179,63.513L44.336,63.307C43.798,63.343 43.263,63.452 42.729,63.526C42.069,63.616 41.396,63.693 40.729,63.654C40.315,63.629 39.691,63.557 39.508,63.129C39.46,63.018 39.459,62.882 39.455,62.756C39.445,62.462 39.433,62.169 39.418,61.875C39.39,61.288 39.353,60.701 39.308,60.115C39.128,57.784 38.816,55.463 38.376,53.167C37.935,50.867 37.364,48.592 36.667,46.356C35.971,44.124 35.149,41.932 34.206,39.793C34.088,39.524 33.967,39.256 33.845,38.988C33.758,38.798 33.477,38.963 33.563,39.153C34.55,41.312 35.412,43.528 36.143,45.786C36.876,48.049 37.48,50.354 37.949,52.686C38.418,55.013 38.753,57.366 38.951,59.731C39,60.326 39.041,60.921 39.074,61.517C39.09,61.811 39.104,62.104 39.115,62.398C39.124,62.62 39.112,62.85 39.152,63.069C39.248,63.596 39.769,63.838 40.246,63.924C40.894,64.041 41.568,63.988 42.218,63.916C42.827,63.848 43.429,63.74 44.036,63.664C44.136,63.651 44.236,63.64 44.336,63.633C44.431,63.627 44.535,63.532 44.493,63.426C44.334,63.022 44.566,62.504 44.998,62.388C45.49,62.256 45.962,62.74 45.92,63.218C45.913,63.307 46.001,63.38 46.084,63.382C47.226,63.404 48.421,63.327 49.498,62.916C50.623,62.487 51.652,61.574 51.576,60.268C51.493,58.832 50.167,58.08 48.924,57.736C48.643,57.658 48.348,57.599 48.098,57.443C47.814,57.265 47.637,56.951 47.461,56.675C47.025,55.992 46.801,55.223 46.662,54.43C46.515,53.592 46.459,52.74 46.364,51.895C46.27,51.052 46.162,50.21 46.042,49.37C45.801,47.681 45.508,45.999 45.164,44.327C44.816,42.631 44.415,40.946 43.963,39.275C43.74,38.453 43.502,37.636 43.258,36.82C43.1,36.293 42.973,35.753 42.767,35.242C42.578,34.772 42.317,34.334 41.904,34.029C41.37,33.634 40.716,33.586 40.077,33.525C38.36,33.359 36.632,33.313 34.909,33.386C34.478,33.405 34.048,33.431 33.618,33.464C33.41,33.48 33.408,33.806 33.618,33.79Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M44.533,42.211C44.117,40.426 43.643,38.655 43.111,36.901C42.656,35.4 42.475,33.953 40.661,33.749C38.324,33.486 35.962,33.445 33.617,33.627L33.704,39.071C35.09,42.1 36.229,45.241 37.111,48.454C38.194,48.057 39.322,47.783 40.467,47.639C41.543,47.503 42.631,47.482 43.716,47.462C44.336,47.45 44.955,47.438 45.575,47.426C45.282,45.678 44.936,43.938 44.533,42.211Z"
|
||||
android:fillColor="#3B1954"/>
|
||||
<path
|
||||
android:pathData="M25.399,34.377C24.801,36.986 24.328,39.623 23.979,42.277C23.63,44.936 23.408,47.611 23.314,50.29C23.291,50.953 23.276,51.616 23.268,52.279C23.261,52.937 23.274,53.596 23.255,54.253C23.236,54.897 23.182,55.542 23.024,56.169C22.951,56.457 22.853,56.734 22.724,57.002C22.601,57.258 22.474,57.537 22.301,57.763C22.017,58.132 21.532,58.241 21.124,58.413C20.649,58.612 20.192,58.86 19.802,59.199C19.423,59.529 19.118,59.96 18.992,60.451C18.861,60.959 18.917,61.502 19.131,61.979C19.519,62.84 20.426,63.335 21.303,63.561C22.2,63.792 23.148,63.804 24.067,63.732C24.273,63.716 24.479,63.695 24.685,63.67C24.795,63.656 24.864,63.577 24.842,63.463C24.756,63.01 25.185,62.511 25.653,62.566C26.096,62.618 26.41,63.117 26.292,63.538C26.264,63.638 26.343,63.748 26.449,63.745C26.977,63.727 27.508,63.781 28.036,63.8C28.701,63.824 29.373,63.831 30.034,63.735C30.528,63.663 31.126,63.523 31.422,63.08C31.587,62.834 31.573,62.566 31.554,62.284C31.515,61.682 31.485,61.079 31.463,60.476C31.377,58.064 31.433,55.646 31.629,53.241C31.824,50.849 32.158,48.47 32.628,46.117C33.102,43.75 33.713,41.411 34.459,39.115C34.55,38.837 34.643,38.56 34.737,38.283C34.805,38.083 34.49,37.998 34.422,38.196C33.655,40.446 33.018,42.74 32.515,45.063C32.016,47.365 31.649,49.695 31.412,52.039C31.173,54.404 31.07,56.783 31.104,59.16C31.112,59.745 31.129,60.33 31.154,60.914C31.167,61.216 31.182,61.517 31.199,61.818C31.214,62.07 31.247,62.326 31.244,62.578C31.242,62.773 31.16,62.931 31.005,63.057C30.831,63.201 30.593,63.282 30.372,63.338C29.763,63.492 29.118,63.496 28.493,63.486C27.907,63.477 27.322,63.432 26.736,63.418C26.64,63.416 26.545,63.415 26.449,63.418L26.606,63.625C26.783,62.998 26.307,62.294 25.653,62.24C24.959,62.182 24.402,62.892 24.528,63.55L24.685,63.343C23.808,63.449 22.909,63.495 22.031,63.372C21.167,63.251 20.27,62.954 19.692,62.266C19.358,61.869 19.211,61.338 19.256,60.825C19.301,60.323 19.564,59.875 19.923,59.531C20.284,59.184 20.732,58.935 21.189,58.737C21.604,58.557 22.069,58.448 22.406,58.13C22.593,57.954 22.712,57.727 22.833,57.504C22.971,57.247 23.1,56.984 23.201,56.71C23.412,56.135 23.5,55.512 23.548,54.904C23.597,54.276 23.588,53.647 23.59,53.018C23.591,52.355 23.601,51.692 23.618,51.028C23.687,48.415 23.877,45.804 24.189,43.208C24.503,40.589 24.943,37.984 25.503,35.407C25.572,35.092 25.642,34.777 25.714,34.464C25.761,34.259 25.446,34.172 25.399,34.377Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M33.618,33.79C35.308,33.661 37.007,33.644 38.699,33.744C39.12,33.769 39.54,33.801 39.96,33.84C40.333,33.875 40.718,33.893 41.081,33.994C41.563,34.127 41.952,34.423 42.213,34.849C42.48,35.285 42.621,35.784 42.76,36.271C42.958,36.964 43.169,37.654 43.366,38.347C43.824,39.958 44.234,41.583 44.595,43.219C45.315,46.481 45.834,49.783 46.166,53.107C46.318,54.637 46.569,56.195 47.582,57.418C47.978,57.896 48.599,57.964 49.155,58.146C49.748,58.34 50.338,58.626 50.759,59.099C51.21,59.606 51.363,60.313 51.171,60.963C51.007,61.52 50.583,61.96 50.1,62.261C49.142,62.859 47.948,63.015 46.841,63.051C46.589,63.06 46.336,63.06 46.084,63.055L46.247,63.218C46.306,62.537 45.623,61.913 44.948,62.064C44.338,62.201 43.95,62.933 44.179,63.513L44.336,63.307C43.798,63.343 43.263,63.452 42.729,63.526C42.069,63.616 41.396,63.693 40.729,63.654C40.315,63.629 39.691,63.557 39.508,63.129C39.46,63.018 39.459,62.882 39.455,62.756C39.445,62.462 39.433,62.169 39.418,61.875C39.39,61.288 39.353,60.701 39.308,60.115C39.128,57.784 38.816,55.463 38.376,53.167C37.935,50.867 37.364,48.592 36.667,46.356C35.971,44.124 35.149,41.932 34.206,39.793C34.088,39.524 33.967,39.256 33.845,38.988C33.758,38.798 33.477,38.963 33.563,39.153C34.55,41.312 35.412,43.528 36.143,45.786C36.876,48.049 37.48,50.354 37.949,52.686C38.418,55.013 38.753,57.366 38.951,59.731C39,60.326 39.041,60.921 39.074,61.517C39.09,61.811 39.104,62.104 39.115,62.398C39.124,62.62 39.112,62.85 39.152,63.069C39.248,63.596 39.769,63.838 40.246,63.924C40.894,64.041 41.568,63.988 42.218,63.916C42.827,63.848 43.429,63.74 44.036,63.664C44.136,63.651 44.236,63.64 44.336,63.633C44.431,63.627 44.535,63.532 44.493,63.426C44.334,63.022 44.566,62.504 44.998,62.388C45.49,62.256 45.962,62.74 45.92,63.218C45.913,63.307 46.001,63.38 46.084,63.382C47.226,63.404 48.421,63.327 49.498,62.916C50.623,62.487 51.652,61.574 51.576,60.268C51.493,58.832 50.167,58.08 48.924,57.736C48.643,57.658 48.348,57.599 48.098,57.443C47.814,57.265 47.637,56.951 47.461,56.675C47.025,55.992 46.801,55.223 46.662,54.43C46.515,53.592 46.459,52.74 46.364,51.895C46.27,51.052 46.162,50.21 46.042,49.37C45.801,47.681 45.508,45.999 45.164,44.327C44.816,42.631 44.415,40.946 43.963,39.275C43.74,38.453 43.502,37.636 43.258,36.82C43.1,36.293 42.973,35.753 42.767,35.242C42.578,34.772 42.317,34.334 41.904,34.029C41.37,33.634 40.716,33.586 40.077,33.525C38.36,33.359 36.632,33.313 34.909,33.386C34.478,33.405 34.048,33.431 33.618,33.464C33.41,33.48 33.408,33.806 33.618,33.79Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M43.447,57.792C43.487,57.791 43.518,57.791 43.54,57.791C43.614,57.793 43.706,57.784 43.736,57.715C43.757,57.666 43.734,57.61 43.713,57.561C43.399,56.839 43.395,55.968 43.786,55.285C44.308,54.37 45.9,53.798 46.77,54.597C47.125,54.924 47.162,55.462 47.192,55.944C47.257,56.994 47.799,57.606 48.798,57.871C49.756,58.125 50.757,58.576 51.202,59.462C51.531,60.116 51.481,60.945 51.076,61.555C50.081,63.054 47.692,63.252 46.085,63.219C46.148,62.666 45.599,62.132 45.048,62.211C44.498,62.291 44.121,62.958 44.338,63.47C43.217,63.543 39.349,64.518 39.298,62.894C39.246,61.26 39.127,59.627 38.945,58.002C38.944,57.993 42.705,57.804 43.447,57.792Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M43.447,57.954C43.596,57.952 43.765,57.96 43.86,57.823C43.977,57.654 43.835,57.449 43.781,57.284C43.655,56.902 43.611,56.488 43.675,56.091C43.731,55.747 43.861,55.4 44.09,55.134C44.292,54.9 44.546,54.72 44.825,54.589C45.36,54.336 46.065,54.264 46.564,54.637C47.156,55.079 46.948,55.945 47.132,56.571C47.303,57.151 47.71,57.604 48.259,57.852C48.579,57.996 48.923,58.065 49.254,58.179C49.596,58.297 49.929,58.447 50.232,58.646C50.868,59.065 51.291,59.724 51.252,60.502C51.217,61.21 50.786,61.799 50.215,62.187C49.153,62.909 47.763,63.048 46.513,63.058C46.37,63.059 46.228,63.058 46.085,63.055L46.248,63.218C46.309,62.532 45.613,61.905 44.936,62.067C44.334,62.211 43.953,62.938 44.18,63.513L44.337,63.306C43.875,63.338 43.416,63.427 42.957,63.493C42.374,63.578 41.787,63.651 41.197,63.662C40.735,63.67 40.187,63.668 39.779,63.422C39.633,63.334 39.527,63.212 39.484,63.051C39.443,62.901 39.455,62.726 39.449,62.563C39.439,62.288 39.427,62.012 39.413,61.737C39.349,60.489 39.247,59.243 39.108,58.002L39.027,58.143C38.994,58.161 38.915,58.164 38.983,58.161C39.012,58.16 39.04,58.158 39.069,58.156C39.162,58.15 39.256,58.145 39.349,58.14C39.664,58.123 39.98,58.107 40.296,58.091C41.066,58.053 41.837,58.016 42.608,57.984C42.888,57.972 43.167,57.959 43.447,57.954C43.657,57.951 43.658,57.624 43.447,57.628C42.093,57.651 40.738,57.739 39.386,57.812C39.277,57.818 39.167,57.824 39.058,57.83C38.996,57.834 38.918,57.83 38.863,57.861C38.817,57.886 38.776,57.947 38.782,58.002C38.91,59.152 39.008,60.306 39.072,61.462C39.088,61.746 39.101,62.031 39.113,62.315C39.123,62.541 39.115,62.773 39.143,62.998C39.17,63.215 39.266,63.416 39.428,63.565C39.799,63.905 40.362,63.967 40.842,63.985C41.461,64.008 42.081,63.939 42.693,63.857C43.241,63.784 43.788,63.67 44.337,63.633C44.432,63.626 44.537,63.532 44.495,63.426C44.336,63.026 44.563,62.512 44.988,62.39C45.483,62.249 45.964,62.735 45.922,63.218C45.914,63.307 46.003,63.38 46.085,63.381C47.402,63.407 48.824,63.307 50.012,62.688C50.607,62.377 51.148,61.9 51.409,61.27C51.716,60.526 51.603,59.655 51.114,59.018C50.648,58.41 49.935,58.055 49.221,57.824C48.889,57.717 48.546,57.65 48.239,57.477C47.98,57.332 47.761,57.13 47.612,56.873C47.246,56.243 47.449,55.486 47.144,54.84C46.847,54.21 46.09,53.989 45.444,54.073C44.801,54.157 44.167,54.493 43.771,55.013C43.285,55.651 43.219,56.556 43.445,57.305C43.473,57.398 43.501,57.52 43.554,57.601C43.552,57.599 43.582,57.669 43.583,57.634C43.583,57.621 43.603,57.626 43.572,57.627C43.53,57.629 43.489,57.627 43.447,57.628C43.237,57.631 43.237,57.957 43.447,57.954Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M48.499,60.621C48.55,60.568 48.555,60.486 48.557,60.413C48.57,59.978 48.564,59.54 48.65,59.113C48.733,58.693 48.932,58.296 49.216,57.993C50.036,58.263 50.824,58.703 51.206,59.461C51.535,60.116 51.485,60.945 51.079,61.555C50.084,63.053 47.695,63.252 46.089,63.218C46.152,62.666 45.602,62.132 45.052,62.211C44.501,62.29 44.125,62.958 44.341,63.47C43.22,63.542 39.353,64.518 39.301,62.894C39.285,62.395 39.263,61.897 39.234,61.399C42.253,61.163 45.271,60.928 48.289,60.692C48.364,60.686 48.447,60.676 48.499,60.621Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M48.639,60.704C48.768,60.533 48.723,60.246 48.729,60.047C48.735,59.801 48.743,59.554 48.779,59.311C48.846,58.863 49.023,58.444 49.331,58.108L49.172,58.15C49.812,58.364 50.475,58.685 50.882,59.245C51.308,59.831 51.383,60.635 51.049,61.283C50.489,62.371 49.154,62.782 48.03,62.95C47.389,63.046 46.736,63.068 46.088,63.055L46.251,63.218C46.312,62.532 45.616,61.905 44.938,62.067C44.336,62.211 43.956,62.938 44.183,63.513L44.34,63.306C43.988,63.33 43.637,63.393 43.287,63.445C42.826,63.514 42.363,63.581 41.898,63.622C41.443,63.662 40.98,63.686 40.524,63.636C40.208,63.602 39.845,63.523 39.623,63.296C39.521,63.191 39.472,63.046 39.464,62.894C39.438,62.396 39.425,61.897 39.397,61.399L39.234,61.563C41.715,61.368 44.196,61.175 46.677,60.981C47.029,60.953 47.381,60.926 47.733,60.898C47.899,60.885 48.066,60.872 48.233,60.859C48.378,60.847 48.499,60.833 48.614,60.737C48.775,60.601 48.543,60.371 48.383,60.506C48.347,60.536 48.275,60.529 48.233,60.533C48.159,60.539 48.085,60.544 48.011,60.55C47.862,60.562 47.714,60.573 47.566,60.585C47.261,60.609 46.955,60.632 46.65,60.656C46.048,60.703 45.446,60.75 44.844,60.798C43.65,60.891 42.456,60.984 41.261,61.078C40.585,61.13 39.91,61.183 39.234,61.236C39.15,61.243 39.065,61.306 39.07,61.399C39.096,61.86 39.118,62.321 39.134,62.783C39.141,62.991 39.16,63.191 39.272,63.372C39.468,63.688 39.835,63.839 40.185,63.911C41.13,64.106 42.147,63.939 43.089,63.802C43.507,63.741 43.921,63.661 44.34,63.633C44.435,63.626 44.54,63.532 44.498,63.426C44.339,63.026 44.566,62.512 44.991,62.39C45.486,62.249 45.967,62.735 45.925,63.218C45.917,63.307 46.006,63.38 46.088,63.381C47.368,63.407 48.733,63.31 49.903,62.744C50.477,62.467 51.018,62.04 51.32,61.467C51.682,60.781 51.672,59.921 51.276,59.251C50.841,58.514 50.045,58.098 49.259,57.836C49.206,57.818 49.137,57.837 49.1,57.878C48.793,58.212 48.582,58.625 48.492,59.07C48.44,59.322 48.419,59.581 48.409,59.838C48.404,59.96 48.401,60.082 48.398,60.204C48.396,60.306 48.422,60.453 48.357,60.539C48.231,60.707 48.515,60.87 48.639,60.704Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M45.574,47.067C44.451,46.996 43.32,47.058 42.202,47.178C41.052,47.302 39.907,47.491 38.783,47.765C38.253,47.895 37.726,48.044 37.213,48.231C37.017,48.303 37.101,48.618 37.299,48.546C38.259,48.196 39.263,47.967 40.266,47.785C41.413,47.576 42.576,47.438 43.742,47.385C44.352,47.358 44.964,47.355 45.574,47.394C45.784,47.407 45.783,47.08 45.574,47.067Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M39.14,47.776C38.806,46.203 38.309,44.663 37.774,43.148C37.199,41.517 36.562,39.908 35.871,38.322C35.543,37.569 35.203,36.822 34.839,36.086C34.746,35.898 34.465,36.063 34.558,36.251C35.243,37.638 35.854,39.062 36.428,40.499C37.07,42.104 37.665,43.731 38.17,45.386C38.42,46.202 38.648,47.027 38.825,47.863C38.869,48.068 39.184,47.981 39.14,47.776Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M41.529,47.391C40.87,44.313 39.922,41.291 38.758,38.368C38.436,37.56 38.096,36.76 37.736,35.968C37.649,35.778 37.367,35.943 37.454,36.133C38.752,38.985 39.802,41.958 40.613,44.985C40.834,45.811 41.035,46.642 41.214,47.478C41.258,47.684 41.573,47.597 41.529,47.391Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M43.842,47.036C43.515,45.422 43.107,43.824 42.634,42.246C42.146,40.618 41.588,39.01 40.942,37.437C40.595,36.592 40.222,35.757 39.816,34.938C39.723,34.75 39.441,34.916 39.534,35.103C40.264,36.572 40.885,38.093 41.436,39.637C42.002,41.223 42.494,42.836 42.915,44.467C43.142,45.347 43.347,46.232 43.528,47.123C43.569,47.328 43.884,47.241 43.842,47.036Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M43.507,57.579C44.46,58.876 46.08,59.625 47.688,59.477C47.895,59.458 47.897,59.131 47.688,59.15C46.201,59.287 44.676,58.622 43.789,57.414C43.666,57.247 43.383,57.409 43.507,57.579Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.03,56.369C46.859,56.426 46.702,56.529 46.588,56.67C46.532,56.741 46.482,56.814 46.446,56.897C46.404,56.993 46.38,57.087 46.368,57.192C46.363,57.231 46.389,57.281 46.416,57.308C46.444,57.336 46.49,57.357 46.531,57.355C46.573,57.354 46.617,57.34 46.646,57.308C46.678,57.274 46.689,57.238 46.694,57.192C46.698,57.157 46.687,57.232 46.694,57.197C46.695,57.188 46.697,57.178 46.699,57.169C46.702,57.153 46.706,57.138 46.71,57.122C46.715,57.104 46.721,57.085 46.727,57.067C46.73,57.06 46.733,57.052 46.736,57.045C46.745,57.021 46.738,57.041 46.732,57.053C46.749,57.022 46.763,56.989 46.781,56.959C46.791,56.942 46.801,56.926 46.813,56.91C46.817,56.904 46.822,56.897 46.827,56.891C46.836,56.878 46.802,56.922 46.825,56.894C46.847,56.866 46.872,56.84 46.897,56.816C46.91,56.804 46.924,56.792 46.937,56.781L46.945,56.775C46.958,56.764 46.955,56.767 46.935,56.783C46.941,56.78 46.948,56.773 46.954,56.769C46.983,56.749 47.013,56.73 47.044,56.714C47.06,56.706 47.076,56.699 47.092,56.692C47.044,56.714 47.104,56.688 47.116,56.684C47.197,56.657 47.258,56.57 47.23,56.484C47.204,56.403 47.116,56.341 47.03,56.369Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.277,57.133C47.223,57.174 47.174,57.217 47.132,57.271C47.081,57.336 47.044,57.4 47.012,57.477C46.959,57.605 46.951,57.742 46.97,57.879C46.976,57.916 47.014,57.958 47.045,57.976C47.08,57.997 47.132,58.006 47.171,57.993C47.211,57.98 47.249,57.956 47.269,57.918C47.291,57.876 47.292,57.838 47.285,57.792L47.284,57.784L47.29,57.827C47.284,57.777 47.284,57.727 47.29,57.677L47.284,57.72C47.29,57.682 47.298,57.644 47.311,57.606C47.313,57.598 47.316,57.59 47.319,57.583C47.321,57.577 47.323,57.572 47.326,57.567L47.316,57.591C47.32,57.573 47.333,57.554 47.342,57.538C47.351,57.522 47.361,57.507 47.371,57.492C47.378,57.482 47.401,57.455 47.368,57.495C47.373,57.488 47.378,57.482 47.383,57.475C47.396,57.461 47.41,57.446 47.424,57.433C47.43,57.427 47.436,57.422 47.442,57.416C47.451,57.408 47.485,57.383 47.442,57.415C47.477,57.389 47.505,57.362 47.517,57.318C47.528,57.279 47.523,57.227 47.5,57.192C47.478,57.157 47.444,57.126 47.403,57.117C47.363,57.108 47.311,57.107 47.277,57.133Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M25.571,33.461C25.624,33.962 25.48,34.459 25.379,34.952C25.264,35.513 25.202,36.083 25.141,36.652C25.645,36.648 26.153,36.672 26.657,36.686C29.087,36.756 31.517,36.921 33.934,37.178C35.541,37.349 37.143,37.563 38.735,37.834C39.581,37.977 40.406,38.217 41.244,38.398C41.417,38.435 43.495,38.732 43.461,38.596C43.097,37.117 42.608,35.689 42.156,34.241C41.724,32.857 41.503,31.371 40.707,30.129"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M25.407,33.462C25.458,34.001 25.295,34.517 25.195,35.04C25.094,35.573 25.035,36.113 24.977,36.652C24.968,36.74 25.06,36.816 25.14,36.815C26.197,36.81 27.258,36.863 28.314,36.912C29.372,36.961 30.43,37.028 31.486,37.113C33.605,37.283 35.721,37.52 37.822,37.849C38.341,37.931 38.861,38.013 39.375,38.126C39.881,38.238 40.382,38.369 40.887,38.485C41.339,38.59 41.798,38.649 42.259,38.705C42.518,38.736 42.778,38.766 43.039,38.784C43.182,38.794 43.396,38.831 43.529,38.756C43.671,38.676 43.611,38.521 43.579,38.394C43.517,38.149 43.451,37.904 43.383,37.66C43.243,37.157 43.09,36.656 42.934,36.157C42.634,35.198 42.31,34.246 42.051,33.274C41.813,32.387 41.589,31.489 41.187,30.658C41.086,30.448 40.972,30.244 40.847,30.047C40.735,29.87 40.453,30.034 40.566,30.212C41.051,30.977 41.325,31.84 41.562,32.709C41.812,33.628 42.077,34.538 42.366,35.446C42.673,36.408 42.978,37.371 43.23,38.349C43.245,38.405 43.252,38.481 43.277,38.534C43.304,38.59 43.259,38.598 43.316,38.54C43.346,38.509 43.347,38.492 43.38,38.467C43.413,38.442 43.377,38.476 43.371,38.467C43.373,38.47 43.409,38.464 43.366,38.466C43.283,38.47 43.2,38.467 43.116,38.463C42.873,38.449 42.63,38.422 42.387,38.394C41.986,38.347 41.578,38.305 41.182,38.218C40.694,38.11 40.21,37.984 39.723,37.871C39.23,37.756 38.734,37.667 38.235,37.587C36.198,37.257 34.147,37.015 32.091,36.837C30.031,36.658 27.966,36.559 25.899,36.499C25.646,36.492 25.393,36.488 25.14,36.489L25.304,36.652C25.362,36.106 25.422,35.56 25.531,35.022C25.635,34.507 25.784,33.992 25.734,33.462C25.714,33.254 25.388,33.252 25.407,33.462Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M47.705,57.68C47.611,57.828 47.565,58.012 47.581,58.186C47.586,58.23 47.597,58.269 47.629,58.301C47.658,58.329 47.704,58.351 47.745,58.349C47.787,58.347 47.831,58.333 47.86,58.301C47.888,58.271 47.912,58.228 47.908,58.186C47.903,58.135 47.904,58.084 47.91,58.033L47.904,58.077C47.913,58.017 47.929,57.958 47.952,57.902L47.936,57.941C47.95,57.908 47.967,57.876 47.986,57.845C48.032,57.772 48.004,57.662 47.928,57.621C47.847,57.579 47.753,57.603 47.705,57.68Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.682,35.921C32.822,36.209 37.995,36.365 43.125,35.833C45.66,35.57 48.181,35.137 50.64,34.463C52.293,34.01 53.957,33.881 54.063,31.763C54.179,29.465 52.552,26.774 51.535,24.791C48.902,19.651 46.241,14.507 43.064,9.677C41.488,7.281 39.798,4.925 37.897,2.773C36.583,1.286 33.994,-0.574 31.983,0.464C29.944,1.517 28.769,3.923 27.713,5.846C26.372,8.289 25.068,10.754 23.835,13.253C21.406,18.18 19.246,23.253 17.641,28.511C17.213,29.91 16.554,32.027 17.323,33.43C17.973,34.617 19.708,35.021 20.926,35.241C23.154,35.645 25.421,35.795 27.682,35.921Z"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M27.689,36.084C32.035,36.327 36.396,36.477 40.745,36.196C42.875,36.058 45,35.818 47.101,35.434C48.146,35.243 49.184,35.017 50.212,34.749C50.921,34.564 51.65,34.41 52.343,34.172C52.913,33.976 53.456,33.687 53.808,33.181C54.232,32.573 54.282,31.774 54.218,31.058C54.061,29.301 53.225,27.655 52.421,26.115C50.54,22.514 48.715,18.885 46.711,15.35C44.656,11.727 42.431,8.177 39.868,4.89C38.775,3.488 37.658,2.038 36.165,1.039C34.9,0.192 33.253,-0.409 31.813,0.373C30.393,1.146 29.419,2.527 28.618,3.891C28.196,4.61 27.806,5.348 27.406,6.08C26.887,7.029 26.373,7.98 25.868,8.936C23.896,12.666 22.043,16.463 20.424,20.361C19.624,22.288 18.882,24.239 18.215,26.216C17.903,27.138 17.606,28.065 17.33,28.998C17.09,29.808 16.878,30.637 16.824,31.484C16.775,32.258 16.869,33.106 17.34,33.749C17.767,34.333 18.42,34.691 19.086,34.938C19.805,35.205 20.563,35.347 21.316,35.473C22.376,35.65 23.444,35.773 24.514,35.868C25.571,35.961 26.63,36.025 27.689,36.084C27.899,36.096 27.898,35.77 27.689,35.758C25.563,35.639 23.433,35.501 21.332,35.146C20.594,35.021 19.852,34.879 19.149,34.615C18.505,34.373 17.848,34.001 17.494,33.388C17.084,32.68 17.09,31.799 17.198,31.012C17.308,30.206 17.54,29.423 17.777,28.647C18.362,26.731 19.016,24.837 19.733,22.967C21.196,19.15 22.908,15.433 24.757,11.789C25.713,9.903 26.706,8.036 27.722,6.182C28.489,4.782 29.207,3.315 30.256,2.098C30.769,1.501 31.368,0.965 32.072,0.605C32.751,0.258 33.528,0.268 34.249,0.472C35.755,0.899 37.009,1.99 38.016,3.148C40.683,6.216 42.95,9.636 45.035,13.119C47.138,16.633 49.035,20.264 50.905,23.906C51.714,25.481 52.623,27.031 53.271,28.682C53.582,29.476 53.841,30.312 53.9,31.167C53.947,31.849 53.891,32.618 53.418,33.154C53.023,33.602 52.443,33.813 51.884,33.972C51.122,34.191 50.346,34.383 49.576,34.573C47.561,35.068 45.51,35.41 43.449,35.636C39.239,36.096 34.995,36.085 30.769,35.91C29.742,35.867 28.715,35.815 27.689,35.758C27.479,35.746 27.48,36.073 27.689,36.084Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.189,19.194C20.158,19.82 18.144,20.505 16.145,21.227C15.027,21.631 13.913,22.048 12.806,22.482C12.246,22.702 11.686,22.922 11.131,23.155C11.006,23.208 9.829,23.689 9.829,23.687C10.951,18.552 11.686,13.474 11.144,8.216C11.102,7.813 11.025,7.129 10.473,7.122C10.248,7.119 10.047,7.278 9.935,7.472C9.822,7.667 9.783,7.893 9.745,8.114C9.233,7.86 8.874,7.369 8.646,6.845C8.418,6.321 8.305,5.756 8.161,5.203C8.107,4.994 8.045,4.781 7.917,4.606C7.789,4.432 7.58,4.301 7.365,4.324C7.15,4.347 6.958,4.564 7.011,4.774C7.031,4.44 6.748,4.118 6.415,4.095C6.082,4.072 5.757,4.351 5.73,4.684C5.681,4.444 5.423,4.272 5.181,4.306C4.938,4.339 4.74,4.562 4.722,4.806C4.682,4.536 4.307,4.43 4.069,4.564C3.831,4.698 3.715,4.974 3.646,5.239C3.294,6.598 3.796,8.037 4.485,9.26C5.087,10.33 5.57,11.128 5.233,12.376C3.952,17.114 1.619,21.572 1.665,26.585C1.673,27.517 1.813,28.401 2.225,29.248C2.417,29.644 2.664,30.025 3.013,30.294C3.444,30.627 3.994,30.762 4.531,30.851C5.58,31.025 6.65,31.059 7.71,30.986C8.746,30.915 9.772,30.744 10.793,30.559C13.245,30.117 18.069,28.986 20.488,28.388"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M22.145,19.037C20.218,19.631 18.307,20.277 16.409,20.959C14.6,21.608 12.802,22.29 11.025,23.024C10.787,23.122 10.548,23.22 10.309,23.317C10.138,23.387 9.963,23.48 9.785,23.529L9.986,23.73C10.553,21.133 11.03,18.512 11.286,15.865C11.413,14.552 11.486,13.234 11.489,11.915C11.492,10.634 11.446,9.34 11.29,8.068C11.241,7.664 11.138,7.15 10.701,6.997C10.433,6.902 10.146,6.993 9.948,7.189C9.711,7.423 9.641,7.756 9.587,8.071L9.827,7.974C8.893,7.494 8.626,6.398 8.394,5.463C8.281,5.005 8.177,4.437 7.697,4.222C7.282,4.037 6.764,4.333 6.853,4.817C6.887,5.003 7.169,4.952 7.173,4.774C7.184,4.35 6.843,3.957 6.414,3.932C5.976,3.906 5.614,4.265 5.566,4.684L5.887,4.641C5.806,4.322 5.486,4.101 5.158,4.145C4.821,4.191 4.595,4.482 4.558,4.806L4.879,4.763C4.82,4.467 4.505,4.316 4.224,4.348C3.876,4.389 3.664,4.693 3.55,4.997C3.274,5.733 3.333,6.595 3.517,7.344C3.714,8.146 4.083,8.879 4.485,9.595C4.832,10.213 5.181,10.86 5.18,11.588C5.18,11.993 5.066,12.376 4.956,12.762C4.843,13.158 4.724,13.552 4.6,13.945C4.353,14.731 4.086,15.512 3.818,16.292C3.282,17.846 2.735,19.398 2.307,20.986C1.879,22.569 1.573,24.191 1.512,25.832C1.481,26.66 1.5,27.498 1.707,28.305C1.895,29.04 2.233,29.85 2.826,30.353C3.444,30.876 4.289,30.997 5.066,31.091C5.961,31.199 6.866,31.21 7.764,31.146C9.252,31.039 10.726,30.753 12.185,30.455C14.743,29.931 17.287,29.335 19.824,28.719C20.06,28.661 20.295,28.604 20.531,28.545C20.735,28.495 20.649,28.18 20.444,28.231C18.049,28.822 15.645,29.383 13.233,29.901C11.998,30.167 10.759,30.419 9.51,30.614C7.807,30.879 6.047,30.986 4.344,30.652C3.976,30.58 3.609,30.479 3.286,30.285C2.967,30.092 2.727,29.806 2.538,29.488C2.133,28.808 1.925,28.023 1.857,27.238C1.787,26.427 1.83,25.6 1.909,24.791C1.986,24.006 2.116,23.226 2.284,22.455C2.957,19.347 4.21,16.409 5.119,13.37C5.333,12.651 5.586,11.927 5.474,11.167C5.372,10.477 5.01,9.861 4.673,9.263C4.284,8.572 3.951,7.847 3.788,7.066C3.709,6.686 3.676,6.296 3.702,5.908C3.724,5.568 3.774,5.151 3.978,4.866C4.06,4.75 4.176,4.66 4.324,4.67C4.44,4.677 4.54,4.731 4.564,4.85C4.603,5.045 4.865,4.975 4.884,4.806C4.927,4.43 5.472,4.334 5.572,4.728C5.621,4.919 5.873,4.856 5.893,4.684C5.921,4.441 6.169,4.235 6.414,4.258C6.669,4.283 6.853,4.528 6.847,4.774L7.168,4.73C7.131,4.533 7.386,4.454 7.532,4.506C7.738,4.578 7.856,4.784 7.925,4.979C8.076,5.409 8.147,5.867 8.278,6.303C8.511,7.08 8.91,7.869 9.662,8.255C9.747,8.299 9.883,8.268 9.902,8.158C9.947,7.896 9.989,7.594 10.194,7.405C10.338,7.273 10.556,7.237 10.71,7.373C10.96,7.594 10.964,8.046 10.994,8.352C11.117,9.598 11.17,10.851 11.161,12.103C11.144,14.585 10.881,17.06 10.475,19.508C10.245,20.894 9.971,22.271 9.671,23.643C9.645,23.763 9.747,23.879 9.872,23.844C10.019,23.804 10.163,23.727 10.304,23.669C10.535,23.575 10.766,23.481 10.996,23.386C11.765,23.071 12.535,22.76 13.309,22.46C15.188,21.733 17.084,21.049 18.991,20.402C20.067,20.037 21.147,19.686 22.232,19.351C22.432,19.289 22.347,18.974 22.145,19.037Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M9.755,7.999C8.821,7.991 8.051,8.556 7.352,9.111C7.283,9.167 7.295,9.284 7.352,9.342C7.42,9.411 7.514,9.397 7.583,9.342C8.212,8.842 8.914,8.318 9.755,8.326C9.965,8.327 9.966,8.001 9.755,7.999Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M6.867,4.77C6.904,5.461 7.115,6.134 7.484,6.72C7.596,6.897 7.879,6.734 7.766,6.555C7.427,6.018 7.228,5.404 7.194,4.77C7.183,4.561 6.856,4.559 6.867,4.77Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M5.602,4.574C5.627,5.344 5.834,6.096 6.208,6.769C6.31,6.953 6.592,6.788 6.49,6.604C6.144,5.982 5.951,5.286 5.928,4.574C5.921,4.365 5.595,4.364 5.602,4.574Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M4.593,4.633C4.532,5.266 4.658,5.905 4.94,6.474C5.034,6.662 5.316,6.497 5.222,6.309C4.964,5.79 4.864,5.209 4.92,4.633C4.928,4.545 4.839,4.47 4.756,4.47C4.661,4.47 4.602,4.545 4.593,4.633Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M26.384,57.487C25.624,58.776 24.186,59.606 22.689,59.619C22.479,59.621 22.478,59.947 22.689,59.945C24.299,59.932 25.848,59.039 26.666,57.652C26.773,57.47 26.491,57.306 26.384,57.487Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.986,57.105C23.022,57.113 23.059,57.124 23.094,57.138C23.106,57.142 23.129,57.157 23.087,57.134C23.094,57.138 23.103,57.141 23.111,57.145C23.126,57.153 23.142,57.161 23.157,57.169C23.189,57.187 23.219,57.207 23.248,57.229C23.261,57.238 23.215,57.202 23.242,57.224C23.25,57.231 23.258,57.237 23.265,57.244C23.279,57.256 23.291,57.268 23.304,57.28C23.316,57.292 23.328,57.305 23.339,57.318C23.345,57.325 23.351,57.331 23.356,57.338C23.36,57.343 23.364,57.347 23.367,57.352L23.352,57.332C23.377,57.36 23.396,57.395 23.414,57.427C23.423,57.442 23.431,57.458 23.438,57.473C23.442,57.481 23.445,57.489 23.449,57.497C23.427,57.451 23.441,57.48 23.445,57.49C23.459,57.526 23.469,57.562 23.478,57.599C23.496,57.682 23.597,57.739 23.678,57.713C23.766,57.684 23.812,57.601 23.792,57.512C23.715,57.163 23.421,56.868 23.072,56.79C22.989,56.772 22.892,56.815 22.872,56.904C22.853,56.987 22.896,57.085 22.986,57.105Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.736,57.862C22.749,57.871 22.763,57.88 22.776,57.889C22.798,57.904 22.75,57.868 22.765,57.88C22.77,57.885 22.776,57.889 22.781,57.893C22.804,57.913 22.826,57.936 22.846,57.959C22.85,57.964 22.854,57.97 22.858,57.975C22.826,57.939 22.845,57.957 22.852,57.967C22.861,57.979 22.869,57.992 22.876,58.005C22.892,58.031 22.906,58.059 22.918,58.087L22.902,58.048C22.921,58.096 22.935,58.145 22.942,58.195L22.937,58.152C22.941,58.187 22.943,58.221 22.942,58.256C22.938,58.342 23.019,58.423 23.105,58.419C23.196,58.415 23.264,58.348 23.268,58.256C23.279,57.985 23.131,57.721 22.9,57.58C22.827,57.536 22.718,57.562 22.677,57.639C22.635,57.718 22.658,57.815 22.736,57.862Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M22.267,58.37L22.271,58.376L22.245,58.343C22.281,58.389 22.309,58.439 22.332,58.492L22.316,58.453C22.338,58.507 22.353,58.562 22.361,58.62L22.355,58.576C22.36,58.606 22.362,58.636 22.362,58.666C22.362,58.751 22.437,58.833 22.525,58.829C22.613,58.825 22.689,58.757 22.688,58.666C22.688,58.577 22.674,58.486 22.644,58.402C22.628,58.355 22.608,58.309 22.584,58.265C22.559,58.22 22.529,58.18 22.497,58.14C22.474,58.109 22.419,58.092 22.382,58.092C22.342,58.092 22.294,58.11 22.267,58.14C22.238,58.171 22.217,58.211 22.219,58.255L22.225,58.298C22.233,58.326 22.247,58.35 22.267,58.37Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M45.18,25.408C48.964,24.607 52.832,23.827 57.13,22.304C56.889,22.389 56.56,23.188 56.445,23.388C55.866,24.394 55.373,25.45 54.949,26.53C53.492,30.248 53.031,34.099 53.08,38.069C53.085,38.474 53.101,39.163 53.65,39.22C53.873,39.243 54.088,39.103 54.217,38.919C54.347,38.736 54.407,38.514 54.464,38.297C54.951,38.597 55.265,39.118 55.444,39.66C55.624,40.202 55.685,40.775 55.779,41.339C55.814,41.552 55.856,41.77 55.968,41.956C56.079,42.141 56.275,42.29 56.492,42.286C56.708,42.283 56.919,42.084 56.885,41.871C56.836,42.201 57.088,42.547 57.418,42.6C57.748,42.653 58.096,42.405 58.153,42.076C58.18,42.319 58.421,42.513 58.666,42.502C58.91,42.491 59.128,42.286 59.168,42.045C59.183,42.318 59.547,42.457 59.796,42.345C60.045,42.233 60.186,41.968 60.278,41.711C60.752,40.389 60.382,38.911 59.806,37.63C59.303,36.511 58.894,35.673 59.343,34.46C61.046,29.857 63.772,25.627 64.179,20.631C64.255,19.702 64.195,18.809 63.862,17.929C63.706,17.517 63.495,17.115 63.172,16.815C62.772,16.445 62.237,16.261 61.71,16.124C60.681,15.855 59.619,15.725 58.556,15.702C57.518,15.679 56.481,15.757 55.447,15.849C52.965,16.068 48.058,16.759 45.596,17.136"
|
||||
android:fillColor="#FFDE17"/>
|
||||
<path
|
||||
android:pathData="M45.133,25.25C48.212,24.598 51.293,23.952 54.311,23.05C55.242,22.772 56.167,22.471 57.083,22.146C57.285,22.075 57.359,22.383 57.17,22.461C57.151,22.469 57.081,22.554 57.053,22.593C56.991,22.681 56.937,22.775 56.886,22.87C56.792,23.043 56.71,23.222 56.621,23.397C56.489,23.656 56.336,23.905 56.201,24.163C56.037,24.474 55.88,24.79 55.731,25.108C55.15,26.351 54.673,27.643 54.304,28.964C53.577,31.562 53.275,34.256 53.24,36.949C53.235,37.326 53.235,37.704 53.24,38.081C53.243,38.294 53.248,38.511 53.311,38.717C53.371,38.916 53.519,39.091 53.749,39.054C54.113,38.996 54.224,38.55 54.304,38.253C54.33,38.154 54.454,38.099 54.543,38.155C55.275,38.619 55.604,39.453 55.764,40.269C55.854,40.726 55.873,41.213 56.012,41.658C56.069,41.844 56.18,42.038 56.374,42.104C56.54,42.161 56.736,42.06 56.719,41.87H57.045C57.016,42.123 57.172,42.392 57.436,42.438C57.699,42.484 57.941,42.28 57.992,42.032C58.024,41.88 58.282,41.872 58.307,42.032C58.335,42.204 58.478,42.351 58.662,42.338C58.845,42.326 58.972,42.17 59.007,42.001C59.047,41.807 59.31,41.875 59.328,42.044C59.34,42.154 59.472,42.209 59.567,42.219C59.729,42.236 59.862,42.125 59.952,42C60.16,41.711 60.243,41.309 60.292,40.964C60.402,40.183 60.261,39.385 60.021,38.642C59.778,37.887 59.375,37.196 59.141,36.44C59.038,36.107 58.975,35.758 58.984,35.41C58.994,35.017 59.095,34.646 59.232,34.281C60.321,31.378 61.799,28.636 62.841,25.715C63.356,24.273 63.764,22.784 63.949,21.261C64.048,20.447 64.098,19.618 63.939,18.808C63.798,18.088 63.522,17.27 62.912,16.812C62.62,16.592 62.274,16.458 61.926,16.354C61.512,16.23 61.086,16.138 60.66,16.063C59.802,15.914 58.931,15.855 58.061,15.861C56.658,15.87 55.255,16.016 53.862,16.175C51.354,16.461 48.852,16.812 46.355,17.184C46.116,17.22 45.875,17.256 45.636,17.293C45.43,17.324 45.341,17.01 45.549,16.978C46.734,16.797 47.921,16.626 49.109,16.461C50.469,16.272 51.831,16.09 53.194,15.927C54.548,15.765 55.907,15.615 57.27,15.555C58.183,15.515 59.099,15.531 60.008,15.641C60.839,15.741 61.71,15.882 62.487,16.206C62.84,16.354 63.171,16.556 63.426,16.846C63.678,17.131 63.853,17.469 63.991,17.821C64.301,18.607 64.398,19.457 64.36,20.297C64.289,21.906 63.914,23.508 63.418,25.035C62.921,26.564 62.285,28.043 61.63,29.51C60.973,30.98 60.294,32.441 59.71,33.942C59.562,34.323 59.396,34.706 59.335,35.112C59.28,35.478 59.317,35.849 59.413,36.205C59.624,36.987 60.048,37.694 60.305,38.46C60.563,39.227 60.718,40.053 60.631,40.864C60.569,41.434 60.358,42.572 59.583,42.546C59.287,42.536 59.034,42.346 59.002,42.044L59.322,42.088C59.258,42.399 58.985,42.652 58.662,42.665C58.345,42.678 58.042,42.431 57.992,42.118H58.307C58.222,42.527 57.807,42.823 57.393,42.76C56.981,42.698 56.671,42.282 56.719,41.87C56.743,41.663 57.026,41.658 57.045,41.87C57.065,42.082 56.937,42.278 56.754,42.378C56.56,42.484 56.327,42.462 56.139,42.354C55.691,42.096 55.64,41.532 55.569,41.074C55.424,40.128 55.261,38.996 54.379,38.437L54.618,38.34C54.534,38.656 54.433,38.989 54.169,39.203C53.944,39.384 53.647,39.441 53.382,39.311C52.973,39.11 52.925,38.576 52.915,38.175C52.881,36.745 52.939,35.307 53.076,33.883C53.357,30.976 54.041,28.125 55.22,25.448C55.549,24.703 55.93,23.992 56.316,23.276C56.428,23.069 56.521,22.851 56.637,22.646C56.745,22.454 56.87,22.234 57.083,22.146L57.17,22.461C54.088,23.552 50.92,24.343 47.728,25.032C46.892,25.213 46.056,25.388 45.22,25.565C45.015,25.608 44.927,25.294 45.133,25.25Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M54.453,38.085C55.309,38.17 56.059,37.705 56.745,37.254C56.921,37.139 57.085,37.421 56.91,37.536C56.178,38.017 55.365,38.502 54.453,38.412C54.246,38.391 54.244,38.065 54.453,38.085Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M56.702,41.873C56.725,41.238 56.59,40.607 56.301,40.041C56.205,39.854 56.487,39.689 56.583,39.876C56.897,40.493 57.054,41.18 57.028,41.873C57.021,42.082 56.694,42.083 56.702,41.873Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M57.934,42.182C57.975,41.472 57.854,40.759 57.566,40.108C57.53,40.027 57.543,39.934 57.624,39.885C57.693,39.843 57.812,39.863 57.848,39.943C58.159,40.647 58.305,41.412 58.261,42.182C58.249,42.391 57.922,42.392 57.934,42.182Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M58.954,42.171C59.061,41.602 58.999,41.015 58.789,40.477C58.757,40.395 58.825,40.298 58.903,40.276C58.996,40.25 59.072,40.307 59.104,40.39C59.335,40.984 59.387,41.632 59.269,42.258C59.253,42.344 59.148,42.394 59.068,42.372C58.977,42.347 58.938,42.258 58.954,42.171Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M56.546,22.85C56.836,22.329 57.148,21.821 57.481,21.327C57.53,21.254 57.624,21.222 57.704,21.269C57.776,21.311 57.812,21.419 57.763,21.492C57.43,21.986 57.118,22.494 56.827,23.015C56.725,23.198 56.443,23.034 56.546,22.85Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M9.804,23.015C9.675,23.579 9.529,24.138 9.367,24.693C9.308,24.895 9.623,24.981 9.682,24.78C9.844,24.225 9.99,23.666 10.118,23.102C10.165,22.898 9.851,22.81 9.804,23.015Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M51.941,56.837C51.692,56.216 51.997,55.426 52.624,55.162C52.789,55.093 53.021,55.036 53.142,55.208C53.258,55.372 53.296,55.623 53.322,55.817C53.382,56.28 53.313,56.761 53.12,57.187C53.033,57.381 53.275,57.518 53.402,57.352C53.639,57.043 53.952,56.796 54.303,56.629C54.443,56.563 54.67,56.44 54.815,56.55C54.919,56.629 54.954,56.791 54.966,56.913C55.001,57.257 54.896,57.638 54.752,57.948C54.593,58.292 54.361,58.589 54.07,58.831C53.941,58.938 54.08,59.147 54.229,59.104C54.53,59.017 54.902,58.901 55.198,59.064C55.441,59.197 55.555,59.493 55.574,59.757C55.615,60.327 55.307,60.883 54.812,61.162L55.01,61.419C55.227,61.138 55.635,61.223 55.905,61.378C56.267,61.586 56.557,61.892 56.965,62.02C57.072,62.054 57.164,61.964 57.171,61.863C57.204,61.388 57.754,61.057 58.198,61.177C58.688,61.308 58.964,61.879 58.872,62.356C58.833,62.561 59.147,62.649 59.187,62.443C59.314,61.785 58.941,61.009 58.25,60.853C57.598,60.706 56.892,61.187 56.845,61.863L57.051,61.705C56.604,61.564 56.298,61.167 55.863,60.999C55.506,60.86 55.033,60.859 54.779,61.188C54.672,61.326 54.803,61.543 54.977,61.444C55.605,61.09 55.989,60.354 55.887,59.634C55.838,59.29 55.663,58.936 55.342,58.771C54.963,58.576 54.53,58.677 54.142,58.789L54.3,59.062C54.859,58.599 55.213,57.921 55.286,57.2C55.316,56.904 55.285,56.549 55.057,56.33C54.774,56.059 54.377,56.225 54.078,56.377C53.699,56.57 53.379,56.851 53.12,57.187L53.402,57.352C53.588,56.939 53.685,56.492 53.667,56.037C53.652,55.674 53.597,55.138 53.291,54.893C52.985,54.649 52.531,54.803 52.244,55.002C51.96,55.199 51.751,55.481 51.629,55.803C51.494,56.16 51.484,56.568 51.626,56.924C51.704,57.117 52.02,57.033 51.941,56.837Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M53.169,63.154C53.183,63.138 53.198,63.123 53.213,63.108C53.233,63.089 53.177,63.133 53.211,63.11C53.219,63.104 53.228,63.099 53.237,63.094C53.244,63.09 53.259,63.086 53.264,63.08C53.257,63.088 53.224,63.095 53.254,63.086C53.273,63.079 53.293,63.075 53.313,63.07C53.341,63.065 53.265,63.075 53.308,63.071C53.318,63.07 53.329,63.07 53.339,63.07C53.357,63.07 53.376,63.071 53.394,63.072C53.423,63.075 53.348,63.064 53.39,63.072C53.401,63.074 53.411,63.076 53.421,63.079C53.441,63.084 53.46,63.089 53.479,63.096C53.493,63.101 53.518,63.118 53.473,63.093C53.483,63.098 53.493,63.102 53.502,63.107C53.521,63.117 53.54,63.128 53.557,63.14C53.57,63.149 53.591,63.174 53.556,63.138C53.561,63.144 53.568,63.148 53.574,63.153C53.589,63.167 53.603,63.182 53.617,63.198C53.635,63.218 53.591,63.161 53.615,63.195C53.62,63.204 53.626,63.212 53.631,63.221C53.635,63.228 53.638,63.235 53.642,63.241C53.661,63.277 53.632,63.212 53.64,63.237C53.647,63.257 53.65,63.277 53.656,63.297C53.642,63.247 53.653,63.275 53.654,63.293C53.654,63.304 53.654,63.314 53.654,63.325C53.65,63.41 53.731,63.492 53.817,63.488C53.909,63.484 53.976,63.417 53.98,63.325C53.997,62.932 53.549,62.672 53.196,62.762C53.098,62.787 53.002,62.844 52.938,62.924C52.91,62.959 52.891,62.992 52.891,63.039C52.891,63.079 52.908,63.127 52.938,63.154C52.998,63.209 53.112,63.226 53.169,63.154Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M10.825,62.632C10.35,62.078 10.092,61.151 10.465,60.476C10.627,60.181 10.976,59.943 11.324,60.054C11.577,60.134 11.767,60.496 11.577,60.726L11.85,60.798C11.795,60.424 11.906,60.042 12.117,59.732C12.226,59.573 12.368,59.432 12.53,59.327C12.683,59.227 12.917,59.095 13.103,59.167C13.28,59.237 13.335,59.473 13.373,59.639C13.425,59.868 13.451,60.102 13.452,60.338C13.455,60.817 13.356,61.295 13.158,61.732C13.088,61.887 13.282,62.081 13.414,61.93C13.761,61.532 14.375,61.382 14.854,61.627C15.33,61.871 15.589,62.448 15.467,62.965C15.418,63.17 15.733,63.257 15.781,63.052C15.935,62.398 15.626,61.657 15.019,61.346C14.415,61.036 13.63,61.188 13.184,61.699L13.44,61.896C13.629,61.479 13.743,61.037 13.772,60.579C13.798,60.155 13.768,59.675 13.603,59.278C13.53,59.103 13.413,58.943 13.232,58.868C13.027,58.784 12.804,58.833 12.607,58.917C12.262,59.065 11.975,59.33 11.782,59.65C11.557,60.023 11.473,60.455 11.535,60.885C11.552,61.003 11.734,61.046 11.808,60.957C12.018,60.702 12.025,60.344 11.845,60.067C11.644,59.758 11.274,59.65 10.924,59.73C10.087,59.921 9.887,60.91 10.009,61.637C10.085,62.092 10.295,62.514 10.594,62.862C10.731,63.022 10.961,62.79 10.825,62.632Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.825,15.773C28.066,16.381 28.679,16.735 29.319,16.764C30.066,16.797 30.752,16.378 31.286,15.893C31.442,15.752 31.21,15.521 31.055,15.663C30.602,16.074 30.029,16.438 29.396,16.439C28.89,16.44 28.334,16.178 28.139,15.686C28.063,15.493 27.747,15.578 27.825,15.773Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M34.065,15.815C34.644,16.374 35.406,16.871 36.243,16.837C36.952,16.809 37.658,16.398 37.884,15.7C37.949,15.5 37.634,15.414 37.569,15.613C37.381,16.195 36.75,16.514 36.166,16.512C35.443,16.51 34.797,16.068 34.296,15.584C34.145,15.438 33.914,15.669 34.065,15.815Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M27.741,13.108C28.576,12.295 29.807,11.934 30.949,12.174C31.154,12.217 31.242,11.903 31.036,11.859C29.778,11.595 28.432,11.98 27.51,12.878C27.359,13.024 27.59,13.255 27.741,13.108Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M38.493,12.936C37.588,11.828 36.092,11.291 34.688,11.536C34.482,11.572 34.569,11.887 34.775,11.851C36.069,11.625 37.434,12.153 38.262,13.167C38.395,13.329 38.624,13.097 38.493,12.936Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M31.561,12.227C31.299,13.59 31.163,14.973 31.091,16.357C31.055,17.061 31.034,17.766 31.02,18.471C31.01,19.029 30.911,19.726 31.273,20.202C31.561,20.579 32.276,20.686 32.518,20.2C32.612,20.012 32.33,19.847 32.236,20.035C32.161,20.187 31.999,20.221 31.842,20.19C31.626,20.147 31.488,19.991 31.417,19.789C31.333,19.548 31.334,19.288 31.337,19.036C31.341,18.721 31.348,18.406 31.355,18.092C31.384,16.864 31.438,15.635 31.567,14.413C31.642,13.709 31.742,13.009 31.876,12.314C31.915,12.109 31.6,12.021 31.561,12.227Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M29.303,20.097C29.598,21.228 30.499,22.118 31.619,22.438C32.686,22.744 33.976,22.511 34.715,21.635C35.113,21.164 35.328,20.575 35.441,19.975C35.479,19.77 35.165,19.682 35.126,19.888C35.036,20.37 34.884,20.843 34.603,21.249C34.328,21.645 33.928,21.935 33.472,22.088C32.474,22.423 31.336,22.187 30.542,21.497C30.09,21.104 29.769,20.59 29.618,20.011C29.565,19.808 29.25,19.894 29.303,20.097Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M29.016,20.027C29.127,20.122 29.258,20.175 29.405,20.185C29.534,20.194 29.672,20.159 29.781,20.088C29.852,20.041 29.889,19.942 29.839,19.865C29.793,19.794 29.692,19.756 29.616,19.806C29.602,19.815 29.588,19.824 29.573,19.831C29.566,19.835 29.558,19.838 29.551,19.842C29.594,19.82 29.572,19.833 29.56,19.838C29.529,19.849 29.497,19.857 29.464,19.861L29.507,19.855C29.464,19.861 29.42,19.861 29.376,19.856L29.419,19.862C29.398,19.859 29.376,19.854 29.355,19.849C29.344,19.846 29.334,19.843 29.323,19.839C29.317,19.837 29.283,19.823 29.312,19.836C29.341,19.848 29.307,19.833 29.302,19.83C29.292,19.825 29.283,19.82 29.273,19.814C29.264,19.808 29.255,19.802 29.246,19.796C29.223,19.78 29.279,19.824 29.247,19.796C29.213,19.767 29.176,19.748 29.131,19.748C29.091,19.748 29.043,19.766 29.016,19.796C28.96,19.857 28.947,19.967 29.016,20.027Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M34.797,20.029C34.958,20.103 35.13,20.121 35.304,20.083C35.458,20.048 35.61,19.96 35.71,19.837C35.738,19.802 35.758,19.768 35.758,19.721C35.758,19.681 35.74,19.633 35.71,19.606C35.65,19.551 35.536,19.535 35.479,19.606C35.46,19.629 35.44,19.651 35.417,19.671C35.411,19.677 35.405,19.682 35.398,19.687C35.384,19.701 35.432,19.664 35.404,19.683C35.392,19.692 35.379,19.7 35.367,19.708C35.354,19.716 35.341,19.723 35.328,19.73C35.32,19.734 35.313,19.737 35.305,19.741C35.3,19.743 35.278,19.753 35.302,19.743C35.327,19.732 35.299,19.743 35.293,19.745C35.287,19.748 35.281,19.75 35.275,19.752C35.259,19.757 35.243,19.762 35.226,19.766C35.212,19.769 35.197,19.772 35.182,19.774C35.177,19.775 35.153,19.779 35.179,19.775C35.208,19.771 35.178,19.775 35.171,19.775C35.141,19.778 35.111,19.778 35.081,19.776C35.073,19.775 35.065,19.774 35.057,19.774C35.036,19.772 35.099,19.781 35.065,19.775C35.051,19.772 35.036,19.769 35.022,19.765C35.007,19.762 34.993,19.758 34.979,19.753C34.972,19.751 34.966,19.748 34.96,19.746C34.926,19.734 34.995,19.762 34.962,19.747C34.885,19.711 34.783,19.722 34.739,19.805C34.701,19.877 34.715,19.99 34.797,20.029Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M42.186,9.593C42.387,9.476 42.57,9.337 42.738,9.183C41.255,6.958 39.67,4.776 37.9,2.773C36.586,1.286 33.996,-0.574 31.986,0.464C29.947,1.517 28.772,3.923 27.716,5.846C26.796,7.521 25.897,9.206 25.023,10.905C26.556,10.462 28.045,9.844 29.364,8.95C30.787,7.984 32.008,6.686 32.734,5.127C33.508,7.159 35.417,8.558 37.419,9.407C38.938,10.051 40.759,10.422 42.186,9.593Z"
|
||||
android:fillColor="#662D91"/>
|
||||
<path
|
||||
android:pathData="M42.271,9.734C42.482,9.61 42.675,9.462 42.856,9.298C42.907,9.252 42.92,9.158 42.882,9.1C41.733,7.377 40.529,5.688 39.222,4.08C38.646,3.371 38.067,2.647 37.399,2.023C36.81,1.472 36.154,0.979 35.437,0.606C34.75,0.248 33.981,-0.016 33.197,0.001C32.396,0.018 31.7,0.376 31.076,0.858C29.775,1.864 28.913,3.328 28.133,4.747C27.159,6.518 26.197,8.295 25.265,10.089C25.138,10.333 25.012,10.578 24.886,10.823C24.823,10.945 24.927,11.104 25.07,11.063C27.603,10.327 30.068,9.084 31.751,6.998C32.195,6.447 32.578,5.85 32.878,5.209L32.58,5.17C33.117,6.564 34.16,7.67 35.384,8.497C36.004,8.916 36.671,9.265 37.36,9.556C38.109,9.873 38.892,10.114 39.703,10.203C40.586,10.299 41.492,10.18 42.271,9.734C42.454,9.63 42.29,9.348 42.107,9.452C40.74,10.234 39.062,9.889 37.679,9.337C36.376,8.818 35.123,8.067 34.154,7.043C33.618,6.475 33.176,5.815 32.895,5.084C32.85,4.967 32.662,4.905 32.596,5.045C31.516,7.347 29.439,8.974 27.149,9.976C26.447,10.284 25.72,10.534 24.983,10.748L25.168,10.988C26.11,9.155 27.093,7.344 28.076,5.533C28.829,4.147 29.586,2.708 30.726,1.595C31.261,1.072 31.92,0.562 32.662,0.392C33.389,0.226 34.152,0.392 34.828,0.677C35.557,0.984 36.227,1.437 36.827,1.949C37.47,2.497 38.016,3.137 38.557,3.784C39.852,5.332 41.043,6.964 42.176,8.634C42.318,8.844 42.459,9.054 42.6,9.265L42.626,9.067C42.465,9.213 42.294,9.342 42.107,9.452C41.926,9.56 42.09,9.842 42.271,9.734Z"
|
||||
android:fillColor="#662D91"/>
|
||||
</vector>
|
||||
|
|
@ -8,6 +8,7 @@
|
|||
<string name="share">Share</string>
|
||||
<string name="lets_go">Let\'s go</string>
|
||||
<string name="confirm">Confirm</string>
|
||||
<string name="continue_">Continue</string>
|
||||
<string name="loading">Fetching some info, hang in there…</string>
|
||||
<string name="rate_limit_toast">Hold your horses! You\'re doing that too often in a short amount of time.</string>
|
||||
|
||||
|
|
@ -39,7 +40,8 @@
|
|||
<string name="could_not_log_in_cta_try_again">Try again</string>
|
||||
<string name="could_not_log_in_cta_logout">Log out</string>
|
||||
|
||||
<string name="login_heading">Let\'s log you in</string>
|
||||
<string name="login_heading">Welcome back!</string>
|
||||
<string name="login_subheading">Great to see you again!</string>
|
||||
<string name="password_forgot">Forgot password?</string>
|
||||
<string name="resend_verification">Resend a verification email</string>
|
||||
<string name="password_manager_hint">Using a password manager?</string>
|
||||
|
|
@ -49,8 +51,8 @@
|
|||
<string name="register_heading">Welcome to Revolt</string>
|
||||
<string name="register_image_alt">Use Revolt to chat about stuff.</string>
|
||||
<string name="register_instructions">It\'s like a place to hang out, get together, and talk about stuff. Best part, it\'s on the internet.</string>
|
||||
<string name="register_form_heading">Let\'s get you set up.</string>
|
||||
<string name="register_data">Your data is safe with us. We don\'t sell it, and neither do we use it to show you ads.</string>
|
||||
<string name="register_form_heading">Make it Official!</string>
|
||||
<string name="register_data">New Here? Let’s Get You Set Up!</string>
|
||||
<string name="register_email">Email</string>
|
||||
<string name="register_email_verification_hint">We\'ll send you a verification email to confirm your account.</string>
|
||||
<string name="register_password">Password</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue