Merge branch 'illustration-revamp' into 'master'

Illustration revamp

See merge request briar/briar!1722
This commit is contained in:
akwizgran
2022-11-01 11:50:29 +00:00
148 changed files with 5095 additions and 2786 deletions

View File

@@ -76,7 +76,7 @@ public class FeedFragment extends BaseFragment
list = v.findViewById(R.id.postList);
list.setLayoutManager(layoutManager);
list.setAdapter(adapter);
list.setEmptyImage(R.drawable.ic_empty_state_blog);
list.setEmptyImage(R.drawable.il_empty_state_blogs);
list.setEmptyText(R.string.blogs_feed_empty_state);
list.setEmptyAction(R.string.blogs_feed_empty_state_action);

View File

@@ -93,7 +93,7 @@ public class ContactListFragment extends BaseFragment
list = contentView.findViewById(R.id.list);
list.setLayoutManager(new LinearLayoutManager(requireContext()));
list.setAdapter(adapter);
list.setEmptyImage(R.drawable.ic_empty_state_contact_list);
list.setEmptyImage(R.drawable.il_empty_state_contact_list);
list.setEmptyText(getString(R.string.no_contacts));
list.setEmptyAction(getString(R.string.no_contacts_action));

View File

@@ -22,7 +22,7 @@ import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TOP;
import static android.view.View.GONE;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
import static org.briarproject.briar.android.util.UiUtils.onSingleLinkClick;
@MethodsNotNullByDefault
@@ -70,8 +70,11 @@ public class AddNearbyContactErrorFragment extends BaseFragment {
TextView explanation = v.findViewById(R.id.errorMessage);
Bundle args = getArguments();
String errorMessage = args == null ? null : args.getString(ERROR_MSG);
if (errorMessage == null) explanation.setVisibility(GONE);
else explanation.setText(args.getString(ERROR_MSG));
if (errorMessage == null) {
explanation.setText(getString(R.string.add_contact_error_two_way));
} else {
explanation.setText(args.getString(ERROR_MSG));
}
// make feedback link clickable
TextView sendFeedback = v.findViewById(R.id.sendFeedback);
@@ -100,6 +103,12 @@ public class AddNearbyContactErrorFragment extends BaseFragment {
viewModel.stopListening();
}
@Override
public void onStart() {
super.onStart();
hideViewOnSmallScreen(requireView().findViewById(R.id.errorIcon));
}
private void triggerFeedback() {
UiUtils.triggerFeedback(requireContext());
finish();

View File

@@ -4,7 +4,6 @@ import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ScrollView;
import org.briarproject.briar.R;
import org.briarproject.briar.android.activity.ActivityComponent;
@@ -19,8 +18,6 @@ import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts.RequestMultiplePermissions;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.FOCUS_DOWN;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
public class AddNearbyContactIntroFragment extends BaseFragment {
@@ -34,8 +31,6 @@ public class AddNearbyContactIntroFragment extends BaseFragment {
private AddNearbyContactViewModel viewModel;
private AddNearbyContactPermissionManager permissionManager;
private ScrollView scrollView;
private final ActivityResultLauncher<String[]> permissionLauncher =
registerForActivityResult(new RequestMultiplePermissions(), r -> {
permissionManager.onRequestPermissionResult(r);
@@ -67,10 +62,8 @@ public class AddNearbyContactIntroFragment extends BaseFragment {
public View onCreateView(LayoutInflater inflater,
@Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_keyagreement_id, container,
false);
scrollView = v.findViewById(R.id.scrollView);
View button = v.findViewById(R.id.continueButton);
button.setOnClickListener(view -> {
viewModel.stopDiscovery();
@@ -98,8 +91,6 @@ public class AddNearbyContactIntroFragment extends BaseFragment {
permissionManager.resetPermissions();
// Reset plugins in case they were assigned when we weren't signed-in
viewModel.resetPlugins();
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
}
@Override

View File

@@ -1,15 +1,12 @@
package org.briarproject.briar.android.contact.add.remote;
import android.animation.ObjectAnimator;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TextView;
import android.widget.Toast;
@@ -33,12 +30,12 @@ import androidx.lifecycle.ViewModelProvider;
import static android.content.Context.CLIPBOARD_SERVICE;
import static android.widget.Toast.LENGTH_SHORT;
import static org.briarproject.bramble.api.contact.HandshakeLinkConstants.LINK_REGEX;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
import static org.briarproject.briar.android.util.UiUtils.observeOnce;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
public class LinkExchangeFragment extends BaseFragment
implements OnGlobalLayoutListener {
public class LinkExchangeFragment extends BaseFragment {
private static final String TAG = LinkExchangeFragment.class.getName();
@@ -92,29 +89,13 @@ public class LinkExchangeFragment extends BaseFragment
observeOnce(viewModel.getHandshakeLink(), this,
this::onHandshakeLinkLoaded);
if (savedInstanceState == null) {
ScrollView scrollView = (ScrollView) v;
// we need to wait for views to be laid out to get the heights
scrollView.getViewTreeObserver().addOnGlobalLayoutListener(this);
}
return v;
}
@Override
public void onGlobalLayout() {
ScrollView scrollView = (ScrollView) requireView();
View layout = scrollView.getChildAt(0);
int scrollBy = layout.getHeight() - scrollView.getHeight();
if (scrollBy > 0) {
// smoothScrollTo() is too fast due to the transition animation
ObjectAnimator animator = ObjectAnimator
.ofInt(scrollView, "scrollY", scrollBy);
animator.setDuration(1000);
animator.start();
}
layout.getViewTreeObserver().removeGlobalOnLayoutListener(this);
public void onStart() {
super.onStart();
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
private void onHandshakeLinkLoaded(String link) {

View File

@@ -8,8 +8,6 @@ import android.text.Editable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.Toast;
import com.google.android.material.textfield.TextInputEditText;
@@ -23,6 +21,7 @@ import org.briarproject.bramble.api.identity.Author;
import org.briarproject.briar.R;
import org.briarproject.briar.android.activity.ActivityComponent;
import org.briarproject.briar.android.fragment.BaseFragment;
import org.briarproject.briar.android.view.BriarButton;
import org.briarproject.nullsafety.MethodsNotNullByDefault;
import org.briarproject.nullsafety.ParametersNotNullByDefault;
@@ -35,13 +34,12 @@ import androidx.appcompat.app.AlertDialog.Builder;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.INVISIBLE;
import static android.view.View.VISIBLE;
import static android.widget.Toast.LENGTH_LONG;
import static java.util.Objects.requireNonNull;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_AUTHOR_NAME_LENGTH;
import static org.briarproject.bramble.util.StringUtils.utf8IsTooLong;
import static org.briarproject.briar.android.util.UiUtils.getDialogIcon;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -57,8 +55,6 @@ public class NicknameFragment extends BaseFragment {
private TextInputLayout contactNameLayout;
private TextInputEditText contactNameInput;
private Button addButton;
private ProgressBar progressBar;
@Override
public String getUniqueTag() {
@@ -95,14 +91,18 @@ public class NicknameFragment extends BaseFragment {
contactNameLayout = v.findViewById(R.id.contactNameLayout);
contactNameInput = v.findViewById(R.id.contactNameInput);
addButton = v.findViewById(R.id.addButton);
BriarButton addButton = v.findViewById(R.id.addButton);
addButton.setOnClickListener(view -> onAddButtonClicked());
progressBar = v.findViewById(R.id.progressBar);
return v;
}
@Override
public void onStart() {
super.onStart();
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
@Override
public void onSaveInstanceState(@NonNull Bundle outState) {
super.onSaveInstanceState(outState);
@@ -131,9 +131,6 @@ public class NicknameFragment extends BaseFragment {
String name = getNicknameOrNull();
if (name == null) return; // invalid nickname
addButton.setVisibility(INVISIBLE);
progressBar.setVisibility(VISIBLE);
LifecycleOwner owner = getViewLifecycleOwner();
viewModel.getAddContactResult().observe(owner, result -> {
if (result == null) return;
@@ -214,7 +211,7 @@ public class NicknameFragment extends BaseFragment {
private void showWarningDialog(String name1, String name2) {
Context ctx = requireContext();
Builder b = new Builder(ctx, R.style.BriarDialogTheme);
b.setIcon(getDialogIcon(ctx, R.drawable.alerts_and_states_error));
b.setIcon(getDialogIcon(ctx, R.drawable.ic_error));
b.setTitle(getString(R.string.duplicate_link_dialog_title));
b.setMessage(
getString(R.string.duplicate_link_dialog_text_3, name1, name2));

View File

@@ -26,6 +26,7 @@ import androidx.lifecycle.ViewModelProvider;
import static android.widget.Toast.LENGTH_LONG;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -72,6 +73,7 @@ public class BluetoothIntroFragment extends Fragment {
@Override
public void onStart() {
super.onStart();
hideViewOnSmallScreen(requireView().findViewById(R.id.introImageView));
conditionManager.reset();
}

View File

@@ -70,7 +70,7 @@ public abstract class BaseContactSelectorFragment<I extends SelectableContactIte
list = contentView.findViewById(R.id.list);
list.setLayoutManager(new LinearLayoutManager(getActivity()));
list.setEmptyImage(R.drawable.ic_empty_state_contact_list);
list.setEmptyImage(R.drawable.il_empty_state_contact_list);
list.setEmptyText(getString(R.string.no_contacts_selector));
list.setEmptyAction(getString(R.string.no_contacts_selector_action));
adapter = getAdapter(requireContext(), this);

View File

@@ -22,12 +22,11 @@ import androidx.annotation.Nullable;
import androidx.annotation.StringRes;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.widget.ImageViewCompat;
import androidx.core.widget.NestedScrollView;
import androidx.fragment.app.Fragment;
import static android.view.View.FOCUS_DOWN;
import static android.view.View.GONE;
import static androidx.core.widget.ImageViewCompat.setImageTintList;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
/**
* A fragment to be used at the end of a user flow
@@ -61,7 +60,6 @@ public class FinalFragment extends Fragment {
return f;
}
private NestedScrollView scrollView;
protected Button buttonView;
protected final OnBackPressedCallback onBackPressedCallback =
new OnBackPressedCallback(true) {
@@ -79,7 +77,6 @@ public class FinalFragment extends Fragment {
View v = inflater
.inflate(R.layout.fragment_final, container, false);
scrollView = (NestedScrollView) v;
ImageView iconView = v.findViewById(R.id.iconView);
TextView titleView = v.findViewById(R.id.titleView);
TextView textView = v.findViewById(R.id.textView);
@@ -88,9 +85,12 @@ public class FinalFragment extends Fragment {
Bundle args = requireArguments();
titleView.setText(args.getInt(ARG_TITLE));
iconView.setImageResource(args.getInt(ARG_ICON));
int color = getResources().getColor(args.getInt(ARG_ICON_TINT));
ColorStateList tint = ColorStateList.valueOf(color);
ImageViewCompat.setImageTintList(iconView, tint);
int tintRes = args.getInt(ARG_ICON_TINT);
if (tintRes != 0) {
int color = getResources().getColor(tintRes);
ColorStateList tint = ColorStateList.valueOf(color);
setImageTintList(iconView, tint);
}
int textRes = args.getInt(ARG_TEXT);
if (textRes == 0) {
textView.setVisibility(GONE);
@@ -122,8 +122,7 @@ public class FinalFragment extends Fragment {
@Override
public void onStart() {
super.onStart();
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.iconView));
}
@Override

View File

@@ -9,7 +9,6 @@ import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.ScrollView;
import android.widget.TextView;
import com.google.android.material.snackbar.Snackbar;
@@ -27,12 +26,12 @@ import androidx.lifecycle.ViewModelProvider;
import static android.content.pm.ApplicationInfo.FLAG_TEST_ONLY;
import static android.os.Build.VERSION.SDK_INT;
import static android.view.View.FOCUS_DOWN;
import static android.view.View.INVISIBLE;
import static android.view.View.VISIBLE;
import static androidx.transition.TransitionManager.beginDelayedTransition;
import static com.google.android.material.snackbar.BaseTransientBottomBar.LENGTH_LONG;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -48,7 +47,6 @@ public class HotspotIntroFragment extends Fragment {
private Button startButton;
private ProgressBar progressBar;
private TextView progressTextView;
private ScrollView scrollView;
private final AbstractConditionManager conditionManager = SDK_INT < 29 ?
new ConditionManager(this, this::onPermissionUpdate) :
@@ -73,7 +71,6 @@ public class HotspotIntroFragment extends Fragment {
startButton = v.findViewById(R.id.startButton);
progressBar = v.findViewById(R.id.progressBar);
progressTextView = v.findViewById(R.id.progressTextView);
scrollView = v.findViewById(R.id.scrollView);
startButton.setOnClickListener(this::onButtonClick);
@@ -86,8 +83,7 @@ public class HotspotIntroFragment extends Fragment {
public void onStart() {
super.onStart();
conditionManager.onStart();
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
private void onButtonClick(View view) {

View File

@@ -15,7 +15,7 @@ class LoginUtils {
static AlertDialog createKeyStrengthenerErrorDialog(Context ctx) {
AlertDialog.Builder builder =
new AlertDialog.Builder(ctx, R.style.BriarDialogTheme);
builder.setIcon(getDialogIcon(ctx, R.drawable.alerts_and_states_error));
builder.setIcon(getDialogIcon(ctx, R.drawable.ic_error));
builder.setTitle(R.string.dialog_title_cannot_check_password);
builder.setMessage(R.string.dialog_message_cannot_check_password);
builder.setPositiveButton(R.string.ok, null);

View File

@@ -29,8 +29,7 @@ public class ErrorFragment extends FinalFragment {
ErrorFragment f = new ErrorFragment();
Bundle args = new Bundle();
args.putInt(ARG_TITLE, title);
args.putInt(ARG_ICON, R.drawable.alerts_and_states_error);
args.putInt(ARG_ICON_TINT, R.color.briar_red_500);
args.putInt(ARG_ICON, R.drawable.ic_error);
args.putInt(ARG_TEXT, text);
f.setArguments(args);
return f;

View File

@@ -186,8 +186,7 @@ public class MailboxActivity extends BriarActivity {
tag = ErrorFragment.TAG;
} else if (s instanceof MailboxPairingState.Paired) {
f = FinalFragment.newInstance(R.string.mailbox_setup_paired_title,
R.drawable.ic_check_circle_outline,
R.color.briar_brand_green,
R.drawable.ic_check_circle, 0,
R.string.mailbox_setup_paired_description);
tag = FinalFragment.TAG;
} else {

View File

@@ -1,7 +1,6 @@
package org.briarproject.briar.android.mailbox;
import android.content.Context;
import android.content.res.ColorStateList;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
@@ -21,7 +20,6 @@ import org.briarproject.nullsafety.ParametersNotNullByDefault;
import javax.inject.Inject;
import androidx.annotation.ColorRes;
import androidx.annotation.DrawableRes;
import androidx.annotation.Nullable;
import androidx.annotation.UiThread;
@@ -33,8 +31,6 @@ import androidx.lifecycle.ViewModelProvider;
import static android.view.View.GONE;
import static android.view.View.INVISIBLE;
import static android.view.View.VISIBLE;
import static androidx.core.content.ContextCompat.getColor;
import static androidx.core.widget.ImageViewCompat.setImageTintList;
import static androidx.transition.TransitionManager.beginDelayedTransition;
import static org.briarproject.bramble.api.mailbox.MailboxConstants.API_CLIENT_TOO_OLD;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
@@ -141,24 +137,20 @@ public class MailboxStatusFragment extends Fragment {
}
private void onMailboxStateChanged(MailboxStatus status) {
@ColorRes int tintRes;
@DrawableRes int iconRes;
String title;
String message = null;
if (status.hasProblem(System.currentTimeMillis())) {
tintRes = R.color.briar_red_500;
title = getString(R.string.mailbox_status_failure_title);
iconRes = R.drawable.alerts_and_states_error;
iconRes = R.drawable.ic_error;
showUnlinkWarning = false;
wizardButton.setVisibility(VISIBLE);
} else if (status.getAttemptsSinceSuccess() > 0) {
iconRes = R.drawable.ic_help_outline_white;
iconRes = R.drawable.ic_exclamation_mark;
title = getString(R.string.mailbox_status_problem_title);
tintRes = R.color.briar_orange_500;
showUnlinkWarning = false;
wizardButton.setVisibility(VISIBLE);
} else if (status.getMailboxCompatibility() < 0) {
tintRes = R.color.briar_red_500;
if (status.getMailboxCompatibility() == API_CLIENT_TOO_OLD) {
title = getString(R.string.mailbox_status_app_too_old_title);
message =
@@ -169,19 +161,16 @@ public class MailboxStatusFragment extends Fragment {
message = getString(
R.string.mailbox_status_mailbox_too_old_message);
}
iconRes = R.drawable.alerts_and_states_error;
iconRes = R.drawable.ic_error;
showUnlinkWarning = true;
wizardButton.setVisibility(GONE);
} else {
iconRes = R.drawable.ic_check_circle_outline;
iconRes = R.drawable.ic_check_circle;
title = getString(R.string.mailbox_status_connected_title);
tintRes = R.color.briar_brand_green;
showUnlinkWarning = true;
wizardButton.setVisibility(GONE);
}
imageView.setImageResource(iconRes);
int color = getColor(requireContext(), tintRes);
setImageTintList(imageView, ColorStateList.valueOf(color));
statusTitleView.setText(title);
if (message == null) {
statusMessageView.setVisibility(GONE);

View File

@@ -6,7 +6,6 @@ import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ScrollView;
import org.briarproject.briar.R;
import org.briarproject.nullsafety.MethodsNotNullByDefault;
@@ -21,8 +20,8 @@ import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.FOCUS_DOWN;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -36,7 +35,6 @@ public class SetupDownloadFragment extends Fragment {
private MailboxViewModel viewModel;
private CameraPermissionManager permissionManager;
private ScrollView scrollView;
private final ActivityResultLauncher<String[]> permissionLauncher =
registerForActivityResult(new RequestMultiplePermissions(), r -> {
@@ -62,7 +60,6 @@ public class SetupDownloadFragment extends Fragment {
@Nullable Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_mailbox_setup_download,
container, false);
scrollView = v.findViewById(R.id.scrollView);
permissionManager = new CameraPermissionManager(requireActivity(),
permissionLauncher::launch);
@@ -80,8 +77,7 @@ public class SetupDownloadFragment extends Fragment {
public void onStart() {
super.onStart();
requireActivity().setTitle(R.string.mailbox_setup_title);
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
// Permissions may have been granted manually while we were stopped
permissionManager.resetPermissions();
}

View File

@@ -6,7 +6,6 @@ import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ScrollView;
import org.briarproject.briar.R;
import org.briarproject.nullsafety.MethodsNotNullByDefault;
@@ -19,8 +18,8 @@ import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.FOCUS_DOWN;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -33,8 +32,6 @@ public class SetupIntroFragment extends Fragment {
private MailboxViewModel viewModel;
private ScrollView scrollView;
@Override
public void onAttach(Context context) {
super.onAttach(context);
@@ -51,7 +48,6 @@ public class SetupIntroFragment extends Fragment {
@Nullable Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_mailbox_setup_intro,
container, false);
scrollView = v.findViewById(R.id.scrollView);
Button button = v.findViewById(R.id.continueButton);
button.setOnClickListener(view -> viewModel.showDownloadFragment());
return v;
@@ -61,8 +57,7 @@ public class SetupIntroFragment extends Fragment {
public void onStart() {
super.onStart();
requireActivity().setTitle(R.string.mailbox_setup_title);
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
}

View File

@@ -70,7 +70,7 @@ public class GroupListFragment extends BaseFragment implements
adapter = new GroupListAdapter(this);
list = v.findViewById(R.id.list);
list.setEmptyImage(R.drawable.ic_empty_state_group_list);
list.setEmptyImage(R.drawable.il_empty_state_group_list);
list.setEmptyText(R.string.groups_list_empty);
list.setEmptyAction(R.string.groups_list_empty_action);
list.setLayoutManager(new LinearLayoutManager(getContext()));

View File

@@ -6,7 +6,6 @@ import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ScrollView;
import org.briarproject.briar.R;
import org.briarproject.briar.android.widget.OnboardingFullDialogFragment;
@@ -20,8 +19,8 @@ import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.FOCUS_DOWN;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
@@ -33,7 +32,6 @@ public class ChooserFragment extends Fragment {
ViewModelProvider.Factory viewModelFactory;
private RemovableDriveViewModel viewModel;
private ScrollView scrollView;
@Override
public void onAttach(Context context) {
@@ -51,8 +49,6 @@ public class ChooserFragment extends Fragment {
View v = inflater.inflate(R.layout.fragment_transfer_data_chooser,
container, false);
scrollView = (ScrollView) v;
Button buttonLearnMore = v.findViewById(R.id.buttonLearnMore);
buttonLearnMore.setOnClickListener(e -> showLearnMoreDialog());
@@ -75,8 +71,7 @@ public class ChooserFragment extends Fragment {
// as we only support one per ViewModel instance
requireActivity().supportFinishAfterTransition();
} else {
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
}

View File

@@ -25,8 +25,7 @@ public class ErrorFragment extends FinalFragment {
ErrorFragment f = new ErrorFragment();
Bundle args = new Bundle();
args.putInt(ARG_TITLE, title);
args.putInt(ARG_ICON, R.drawable.alerts_and_states_error);
args.putInt(ARG_ICON_TINT, R.color.briar_red_500);
args.putInt(ARG_ICON, R.drawable.ic_error);
args.putInt(ARG_TEXT, text);
f.setArguments(args);
return f;

View File

@@ -8,7 +8,6 @@ import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.ScrollView;
import android.widget.Toast;
import org.briarproject.briar.R;
@@ -26,10 +25,10 @@ import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.view.View.FOCUS_DOWN;
import static android.view.View.VISIBLE;
import static android.widget.Toast.LENGTH_LONG;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
import static org.briarproject.briar.android.util.UiUtils.launchActivityToOpenFile;
@RequiresApi(19)
@@ -50,7 +49,6 @@ public class ReceiveFragment extends Fragment {
ViewModelProvider.Factory viewModelFactory;
private RemovableDriveViewModel viewModel;
private ScrollView scrollView;
private Button button;
private ProgressBar progressBar;
@@ -72,7 +70,6 @@ public class ReceiveFragment extends Fragment {
View v = inflater.inflate(R.layout.fragment_transfer_data_receive,
container, false);
scrollView = (ScrollView) v;
progressBar = v.findViewById(R.id.progressBar);
button = v.findViewById(R.id.fileButton);
button.setOnClickListener(view ->
@@ -93,8 +90,7 @@ public class ReceiveFragment extends Fragment {
public void onStart() {
super.onStart();
requireActivity().setTitle(R.string.removable_drive_title_receive);
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
@Override

View File

@@ -9,7 +9,6 @@ import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.ScrollView;
import android.widget.TextView;
import android.widget.Toast;
@@ -31,13 +30,13 @@ import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProvider;
import static android.os.Build.VERSION.SDK_INT;
import static android.view.View.FOCUS_DOWN;
import static android.view.View.VISIBLE;
import static android.widget.Toast.LENGTH_LONG;
import static java.util.logging.Level.WARNING;
import static java.util.logging.Logger.getLogger;
import static org.briarproject.bramble.util.LogUtils.logException;
import static org.briarproject.briar.android.AppModule.getAndroidComponent;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@RequiresApi(19)
@MethodsNotNullByDefault
@@ -55,7 +54,6 @@ public class SendFragment extends Fragment {
ViewModelProvider.Factory viewModelFactory;
private RemovableDriveViewModel viewModel;
private ScrollView scrollView;
private TextView introTextView;
private Button button;
private ProgressBar progressBar;
@@ -78,7 +76,6 @@ public class SendFragment extends Fragment {
View v = inflater.inflate(R.layout.fragment_transfer_data_send,
container, false);
scrollView = (ScrollView) v;
introTextView = v.findViewById(R.id.introTextView);
progressBar = v.findViewById(R.id.progressBar);
button = v.findViewById(R.id.fileButton);
@@ -107,8 +104,7 @@ public class SendFragment extends Fragment {
public void onStart() {
super.onStart();
requireActivity().setTitle(R.string.removable_drive_title_send);
// Scroll down in case the screen is small, so the button is visible
scrollView.post(() -> scrollView.fullScroll(FOCUS_DOWN));
hideViewOnSmallScreen(requireView().findViewById(R.id.imageView));
}
@Override

View File

@@ -16,6 +16,8 @@ import javax.inject.Inject;
import androidx.annotation.Nullable;
import androidx.lifecycle.ViewModelProvider;
import static org.briarproject.briar.android.util.UiUtils.hideViewOnSmallScreen;
@MethodsNotNullByDefault
@ParametersNotNullByDefault
public class CrashFragment extends BaseFragment {
@@ -55,4 +57,9 @@ public class CrashFragment extends BaseFragment {
return TAG;
}
@Override
public void onStart() {
super.onStart();
hideViewOnSmallScreen(requireView().findViewById(R.id.errorIcon));
}
}

View File

@@ -7,6 +7,7 @@ import android.app.KeyguardManager;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.Debug;
@@ -84,6 +85,8 @@ import static android.text.format.DateUtils.WEEK_IN_MILLIS;
import static android.text.format.DateUtils.YEAR_IN_MILLIS;
import static android.view.KeyEvent.ACTION_DOWN;
import static android.view.KeyEvent.KEYCODE_ENTER;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
import static android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
import static android.view.WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE;
import static android.view.WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN;
@@ -499,6 +502,17 @@ public class UiUtils {
return icon;
}
public static void hideViewOnSmallScreen(View view) {
boolean small = isSmallScreenRelativeToFontSize(view.getContext());
view.setVisibility(small ? GONE : VISIBLE);
}
public static boolean isSmallScreenRelativeToFontSize(Context ctx) {
Configuration config = ctx.getResources().getConfiguration();
if (config.fontScale == 0f) return true;
return config.screenHeightDp / config.fontScale < 600;
}
/**
* Logs the exception and shows a Toast to the user.
* <p>

View File

@@ -47,7 +47,8 @@ public class BriarButton extends FrameLayout {
attributes.recycle();
ContextThemeWrapper wrapper = new ContextThemeWrapper(context, style);
button = new AppCompatButton(wrapper, null, style);
button = isInEditMode() ? new AppCompatButton(context) :
new AppCompatButton(wrapper, null, style);
button.setText(text);
addView(button);
progressBar = findViewById(R.id.briar_button_progress_bar);

View File

@@ -1,124 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="160dp"
android:viewportWidth="250"
android:viewportHeight="200">
<path
android:fillColor="#15212D"
android:pathData="M95.436,100.233C95.436,93.523 100.876,88.084 107.585,88.084H130.365C137.074,88.084 142.514,93.523 142.514,100.233V123.012C142.514,129.722 137.074,135.161 130.365,135.161H107.585C100.876,135.161 95.436,129.722 95.436,123.012V100.233Z" />
<path
android:fillColor="#15212D"
android:pathData="M102.336,10.261C102.336,4.594 106.93,0 112.597,0H131.836C137.503,0 142.097,4.594 142.097,10.261V29.5C142.097,35.167 137.503,39.761 131.836,39.761H112.597C106.93,39.761 102.336,35.167 102.336,29.5V10.261Z" />
<path
android:fillColor="#15212D"
android:pathData="M34.818,148.09C34.818,143.427 38.599,139.646 43.262,139.646H59.093C63.757,139.646 67.537,143.427 67.537,148.09V163.921C67.537,168.585 63.757,172.365 59.093,172.365H43.262C38.599,172.365 34.818,168.585 34.818,163.921V148.09Z" />
<path
android:fillColor="#15212D"
android:pathData="M110.024,186.044C110.024,183.557 112.04,181.541 114.527,181.541H122.971C125.458,181.541 127.475,183.557 127.475,186.044V194.488C127.475,196.976 125.458,198.992 122.971,198.992H114.527C112.04,198.992 110.024,196.976 110.024,194.488V186.044Z" />
<path
android:fillColor="#15212D"
android:pathData="M173.713,141.6C173.713,134.89 179.152,129.451 185.862,129.451H208.641C215.351,129.451 220.79,134.89 220.79,141.6V164.38C220.79,171.089 215.351,176.528 208.641,176.528H185.862C179.152,176.528 173.713,171.089 173.713,164.38V141.6Z" />
<path
android:fillColor="#15212D"
android:pathData="M232.049,95.416C232.049,92.928 234.065,90.912 236.553,90.912H244.997C247.484,90.912 249.5,92.928 249.5,95.416V103.86C249.5,106.347 247.484,108.363 244.997,108.363H236.553C234.065,108.363 232.049,106.347 232.049,103.86V95.416Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M120.481,84.227V45.268H122.481V84.227H120.481Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M117.685,176.101L117.685,139.646H119.685L119.685,176.101H117.685Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M3.28,108.445L4.046,106.598C4.338,106.719 4.66,106.787 5.003,106.787H7.114V108.787H5.003C4.393,108.787 3.811,108.665 3.28,108.445ZM11.336,108.787V106.787H13.447C13.79,106.787 14.113,106.719 14.405,106.598L15.171,108.445C14.64,108.665 14.058,108.787 13.447,108.787H11.336ZM17.951,97.95H15.951V95.839C15.951,95.496 15.883,95.174 15.762,94.882L17.609,94.116C17.829,94.646 17.951,95.229 17.951,95.839V97.95ZM7.114,91.336H5.003C4.393,91.336 3.811,91.457 3.28,91.678L4.046,93.525C4.338,93.404 4.66,93.336 5.003,93.336H7.114V91.336ZM0.5,102.172H2.5V104.283C2.5,104.626 2.568,104.949 2.689,105.241L0.842,106.007C0.622,105.476 0.5,104.894 0.5,104.283V102.172ZM0.5,97.95H2.5V95.839C2.5,95.496 2.568,95.174 2.689,94.882L0.842,94.116C0.622,94.646 0.5,95.229 0.5,95.839V97.95ZM11.336,91.336V93.336H13.447C13.79,93.336 14.113,93.404 14.405,93.525L15.171,91.678C14.64,91.457 14.058,91.336 13.447,91.336H11.336ZM17.951,102.172H15.951V104.283C15.951,104.626 15.883,104.949 15.762,105.241L17.609,106.007C17.829,105.476 17.951,104.894 17.951,104.283V102.172Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M41.177,64.517V62.648H43.177V64.517H41.177ZM41.177,71.991V68.254H43.177V71.991H41.177ZM41.177,79.465V75.728H43.177V79.465H41.177ZM41.177,86.938V83.202H43.177V86.938H41.177ZM41.177,94.412V90.675H43.177V94.412H41.177ZM41.177,99.018V98.149H43.177V99.018H44.91V101.018H39.681V99.018H41.177ZM24.705,101.018H22.209V99.018H24.705V101.018ZM34.689,101.018H29.697V99.018H34.689V101.018ZM52.107,101.018H50.374V99.018H54.854V101.018H54.107V102.148H52.107V101.018ZM61.844,101.018H58.349V99.018H61.844V101.018ZM67.087,101.018H65.339V99.018H67.087C68.048,99.018 68.966,99.209 69.805,99.557L69.039,101.404C68.439,101.156 67.78,101.018 67.087,101.018ZM72.187,106.118C72.187,105.425 72.049,104.766 71.8,104.166L73.648,103.4C73.995,104.239 74.187,105.157 74.187,106.118C74.187,106.812 74.325,107.47 74.574,108.07L72.726,108.836C72.378,107.998 72.187,107.079 72.187,106.118ZM52.107,110.668V106.408H54.107V110.668H52.107ZM79.287,113.218C78.326,113.218 77.408,113.027 76.569,112.679L77.335,110.832C77.935,111.081 78.594,111.218 79.287,111.218H81.59V113.218H79.287ZM88.5,113.218H86.197V111.218H88.5V113.218ZM52.107,119.188V114.928H54.107V119.188H52.107ZM52.107,127.709V123.449H54.107V127.709H52.107ZM52.107,134.099V131.969H54.107V134.099H52.107Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M105.214,134.93L105.602,132.968C106.242,133.095 106.905,133.161 107.585,133.161H109.484V135.161H107.585C106.774,135.161 105.981,135.082 105.214,134.93ZM128.466,135.161V133.161H130.365C131.045,133.161 131.708,133.095 132.347,132.968L132.736,134.93C131.969,135.082 131.176,135.161 130.365,135.161H128.466ZM137.115,133.115L136.002,131.453C137.11,130.712 138.064,129.757 138.805,128.65L140.467,129.762C139.58,131.087 138.44,132.228 137.115,133.115ZM142.514,102.131H140.514V100.233C140.514,99.553 140.447,98.89 140.32,98.25L142.282,97.862C142.434,98.629 142.514,99.422 142.514,100.233V102.131ZM140.467,93.483L138.805,94.595C138.064,93.488 137.11,92.534 136.002,91.792L137.115,90.13C138.44,91.017 139.58,92.158 140.467,93.483ZM109.484,88.084H107.585C106.774,88.084 105.981,88.163 105.214,88.315L105.602,90.277C106.242,90.151 106.905,90.084 107.585,90.084H109.484V88.084ZM100.835,90.13L101.948,91.792C100.84,92.534 99.886,93.488 99.145,94.595L97.483,93.483C98.37,92.158 99.51,91.017 100.835,90.13ZM95.436,121.114H97.436V123.012C97.436,123.693 97.503,124.355 97.63,124.995L95.668,125.383C95.516,124.616 95.436,123.824 95.436,123.012V121.114ZM97.483,129.762L99.145,128.65C99.886,129.757 100.84,130.712 101.948,131.453L100.835,133.115C99.51,132.228 98.37,131.087 97.483,129.762ZM95.436,117.317H97.436V113.521H95.436V117.317ZM95.436,109.724H97.436V105.928H95.436V109.724ZM95.436,102.131H97.436V100.233C97.436,99.553 97.503,98.89 97.63,98.25L95.668,97.862C95.516,98.629 95.436,99.422 95.436,100.233V102.131ZM113.28,88.084V90.084H117.077V88.084H113.28ZM120.873,88.084V90.084H124.67V88.084H120.873ZM128.466,88.084V90.084H130.365C131.045,90.084 131.708,90.151 132.347,90.277L132.736,88.315C131.969,88.163 131.176,88.084 130.365,88.084H128.466ZM142.514,105.928H140.514V109.724H142.514V105.928ZM142.514,113.521H140.514V117.317H142.514V113.521ZM142.514,121.114H140.514V123.012C140.514,123.693 140.447,124.355 140.32,124.995L142.282,125.383C142.434,124.616 142.514,123.824 142.514,123.012V121.114ZM124.67,135.161V133.161H120.873V135.161H124.67ZM117.077,135.161V133.161H113.28V135.161H117.077Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M188.618,86.539V84.674H190.618V86.539H188.618ZM188.618,93.999V90.269H190.618V93.999H188.618ZM188.618,97.729H190.618V98.594H191.517V100.594H190.618V101.183H188.618V97.729ZM199.112,100.594H195.315V98.594H199.112V100.594ZM206.707,100.594H202.91V98.594H206.707V100.594ZM214.303,100.594H210.505V98.594H214.303V100.594ZM221.898,100.594H218.1V98.594H221.898V100.594ZM227.595,100.594H225.696V98.594H227.595V100.594ZM188.618,107.537V104.36H190.618V107.537H188.618ZM188.618,111.303V110.715H190.618V111.359C190.865,111.387 191.109,111.425 191.35,111.472L190.962,113.434C190.528,113.349 190.079,113.303 189.618,113.303H187.737V111.303H188.618ZM153.881,113.303H152V111.303H153.881V113.303ZM161.405,113.303H157.643V111.303H161.405V113.303ZM168.928,113.303H165.166V111.303H168.928V113.303ZM176.452,113.303H172.69V111.303H176.452V113.303ZM183.975,113.303H180.214V111.303H183.975V113.303ZM195.34,116.361C194.837,115.611 194.19,114.964 193.44,114.462L194.552,112.8C195.52,113.448 196.353,114.281 197.001,115.249L195.34,116.361ZM196.498,120.183C196.498,119.722 196.453,119.273 196.367,118.839L198.329,118.451C198.44,119.012 198.498,119.591 198.498,120.183V121.203H196.498V120.183ZM196.498,124.261V123.242H198.498V124.261H196.498Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M183.491,176.297L183.879,174.335C184.519,174.462 185.182,174.528 185.862,174.528H187.76V176.528H185.862C185.051,176.528 184.258,176.449 183.491,176.297ZM206.743,176.528V174.528H208.641C209.322,174.528 209.985,174.462 210.624,174.335L211.012,176.297C210.246,176.449 209.453,176.528 208.641,176.528H206.743ZM215.392,174.482L214.279,172.82C215.387,172.079 216.341,171.125 217.082,170.017L218.744,171.13C217.857,172.455 216.717,173.595 215.392,174.482ZM220.79,143.498H218.79V141.6C218.79,140.92 218.724,140.257 218.597,139.617L220.559,139.229C220.711,139.996 220.79,140.789 220.79,141.6V143.498ZM218.744,134.85L217.082,135.963C216.341,134.855 215.387,133.901 214.279,133.159L215.392,131.497C216.717,132.384 217.857,133.525 218.744,134.85ZM187.76,129.451H185.862C185.051,129.451 184.258,129.531 183.491,129.682L183.879,131.644C184.519,131.518 185.182,131.451 185.862,131.451H187.76V129.451ZM179.112,131.497L180.225,133.159C179.117,133.901 178.163,134.855 177.421,135.963L175.759,134.85C176.646,133.525 177.787,132.384 179.112,131.497ZM173.713,162.481H175.713V164.38C175.713,165.06 175.78,165.723 175.906,166.362L173.944,166.751C173.793,165.984 173.713,165.191 173.713,164.38V162.481ZM175.759,171.13L177.421,170.017C178.163,171.125 179.117,172.079 180.225,172.82L179.112,174.482C177.787,173.595 176.646,172.455 175.759,171.13ZM173.713,158.685H175.713V154.888H173.713V158.685ZM173.713,151.092H175.713V147.295H173.713V151.092ZM173.713,143.498H175.713V141.6C175.713,140.92 175.78,140.257 175.906,139.617L173.944,139.229C173.793,139.996 173.713,140.789 173.713,141.6V143.498ZM191.557,129.451V131.451H195.354V129.451H191.557ZM199.15,129.451V131.451H202.947V129.451H199.15ZM206.743,129.451V131.451H208.641C209.322,131.451 209.985,131.518 210.624,131.644L211.012,129.682C210.246,129.531 209.453,129.451 208.641,129.451H206.743ZM220.79,147.295H218.79V151.092H220.79V147.295ZM220.79,154.888H218.79V158.685H220.79V154.888ZM220.79,162.481H218.79V164.38C218.79,165.06 218.724,165.723 218.597,166.362L220.559,166.751C220.711,165.984 220.79,165.191 220.79,164.38V162.481ZM202.947,176.528V174.528H199.15V176.528H202.947ZM195.354,176.528V174.528H191.557V176.528H195.354Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M110.594,39.566L110.982,37.604C111.503,37.707 112.042,37.761 112.597,37.761H115.001V39.761H112.597C111.911,39.761 111.242,39.694 110.594,39.566ZM129.431,39.761V37.761H131.836C132.39,37.761 132.93,37.707 133.45,37.604L133.838,39.566C133.191,39.694 132.521,39.761 131.836,39.761H129.431ZM137.537,38.033L136.424,36.371C137.326,35.767 138.103,34.99 138.706,34.089L140.368,35.201C139.619,36.32 138.656,37.284 137.537,38.033ZM142.097,12.666H140.097V10.261C140.097,9.707 140.042,9.167 139.939,8.646L141.901,8.258C142.029,8.906 142.097,9.576 142.097,10.261V12.666ZM140.368,4.56L138.706,5.672C138.103,4.771 137.326,3.994 136.424,3.39L137.537,1.728C138.656,2.477 139.619,3.441 140.368,4.56ZM115.001,0H112.597C111.911,0 111.242,0.067 110.594,0.195L110.982,2.157C111.503,2.054 112.042,2 112.597,2H115.001V0ZM106.895,1.728L108.008,3.39C107.106,3.994 106.33,4.771 105.726,5.672L104.064,4.56C104.813,3.441 105.777,2.477 106.895,1.728ZM102.336,27.095H104.336V29.5C104.336,30.054 104.39,30.594 104.493,31.114L102.531,31.503C102.403,30.855 102.336,30.185 102.336,29.5V27.095ZM104.064,35.201L105.726,34.089C106.33,34.99 107.106,35.767 108.008,36.371L106.895,38.033C105.777,37.284 104.813,36.32 104.064,35.201ZM102.336,22.285H104.336V17.476H102.336V22.285ZM102.336,12.666H104.336V10.261C104.336,9.707 104.39,9.167 104.493,8.646L102.531,8.258C102.403,8.906 102.336,9.576 102.336,10.261V12.666ZM119.811,0V2H124.621V0H119.811ZM129.431,0V2H131.836C132.39,2 132.93,2.054 133.45,2.157L133.838,0.195C133.191,0.067 132.521,0 131.836,0H129.431ZM142.097,17.476H140.097V22.285H142.097V17.476ZM142.097,27.095H140.097V29.5C140.097,30.054 140.042,30.594 139.939,31.114L141.901,31.503C142.029,30.855 142.097,30.185 142.097,29.5V27.095ZM124.621,39.761V37.761H119.811V39.761H124.621Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M40.03,171.724L40.796,169.877C41.553,170.191 42.384,170.365 43.262,170.365H45.241V172.365H43.262C42.117,172.365 41.025,172.137 40.03,171.724ZM57.114,172.365V170.365H59.093C59.971,170.365 60.802,170.191 61.559,169.877L62.325,171.724C61.33,172.137 60.238,172.365 59.093,172.365H57.114ZM67.537,150.069H65.537V148.09C65.537,147.213 65.363,146.381 65.049,145.624L66.896,144.858C67.309,145.853 67.537,146.945 67.537,148.09V150.069ZM45.241,139.646H43.262C42.117,139.646 41.025,139.874 40.03,140.287L40.796,142.135C41.553,141.821 42.384,141.646 43.262,141.646H45.241V139.646ZM34.818,161.943H36.818V163.921C36.818,164.799 36.993,165.63 37.306,166.387L35.459,167.153C35.046,166.158 34.818,165.066 34.818,163.921V161.943ZM34.818,157.985H36.818V154.027H34.818V157.985ZM34.818,150.069H36.818V148.09C36.818,147.213 36.993,146.381 37.306,145.624L35.459,144.858C35.046,145.853 34.818,146.945 34.818,148.09V150.069ZM49.199,139.646V141.646H53.157V139.646H49.199ZM57.114,139.646V141.646H59.093C59.971,141.646 60.802,141.821 61.559,142.135L62.325,140.287C61.33,139.874 60.238,139.646 59.093,139.646H57.114ZM67.537,154.027H65.537V157.985H67.537V154.027ZM67.537,161.943H65.537V163.921C65.537,164.799 65.363,165.63 65.049,166.387L66.896,167.154C67.309,166.158 67.537,165.066 67.537,163.921V161.943ZM53.157,172.365V170.365H49.199V172.365H53.157Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M112.803,198.65L113.569,196.803C113.862,196.924 114.184,196.992 114.527,196.992H116.638V198.992H114.527C113.917,198.992 113.334,198.87 112.803,198.65ZM120.86,198.992V196.992H122.971C123.314,196.992 123.636,196.924 123.929,196.803L124.695,198.65C124.164,198.87 123.582,198.992 122.971,198.992H120.86ZM127.475,188.155H125.475V186.044C125.475,185.701 125.407,185.379 125.285,185.087L127.133,184.321C127.353,184.852 127.475,185.434 127.475,186.044V188.155ZM116.638,181.541H114.527C113.917,181.541 113.334,181.663 112.803,181.883L113.569,183.73C113.862,183.609 114.184,183.541 114.527,183.541H116.638V181.541ZM110.024,192.377H112.024V194.488C112.024,194.832 112.092,195.154 112.213,195.446L110.365,196.212C110.145,195.681 110.024,195.099 110.024,194.488V192.377ZM110.024,188.155H112.024V186.044C112.024,185.701 112.092,185.379 112.213,185.087L110.365,184.321C110.145,184.852 110.024,185.434 110.024,186.044V188.155ZM120.86,181.541V183.541H122.971C123.314,183.541 123.636,183.609 123.929,183.73L124.695,181.883C124.164,181.663 123.582,181.541 122.971,181.541H120.86ZM127.475,192.377H125.475V194.488C125.475,194.832 125.407,195.154 125.285,195.446L127.133,196.212C127.353,195.681 127.475,195.099 127.475,194.488V192.377Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M178.996,79.823L179.762,77.976C180.48,78.274 181.269,78.439 182.101,78.439H184.003V80.439H182.101C181.001,80.439 179.952,80.22 178.996,79.823ZM195.412,80.439V78.439H197.314C198.146,78.439 198.935,78.274 199.653,77.976L200.419,79.823C199.463,80.22 198.414,80.439 197.314,80.439H195.412ZM205.427,59.015H203.427V57.113C203.427,56.281 203.262,55.492 202.964,54.774L204.811,54.008C205.208,54.964 205.427,56.013 205.427,57.113V59.015ZM184.003,49H182.101C181.001,49 179.952,49.219 178.996,49.616L179.762,51.463C180.48,51.165 181.269,51 182.101,51H184.003V49ZM173.988,70.424H175.988V72.326C175.988,73.158 176.153,73.947 176.451,74.665L174.604,75.432C174.207,74.475 173.988,73.426 173.988,72.326V70.424ZM173.988,66.621H175.988V62.818H173.988V66.621ZM173.988,59.015H175.988V57.113C175.988,56.281 176.153,55.492 176.451,54.774L174.604,54.008C174.207,54.964 173.988,56.013 173.988,57.113V59.015ZM187.806,49V51H191.609V49H187.806ZM195.412,49V51H197.314C198.146,51 198.935,51.165 199.653,51.463L200.419,49.616C199.463,49.219 198.414,49 197.314,49H195.412ZM205.427,62.818H203.427V66.621H205.427V62.818ZM205.427,70.424H203.427V72.326C203.427,73.158 203.262,73.947 202.964,74.665L204.811,75.432C205.208,74.475 205.427,73.426 205.427,72.326V70.424ZM191.609,80.439V78.439H187.806V80.439H191.609Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M234.829,108.021L235.595,106.174C235.887,106.295 236.209,106.363 236.553,106.363H238.664V108.363H236.553C235.942,108.363 235.36,108.241 234.829,108.021ZM242.886,108.363V106.363H244.997C245.34,106.363 245.662,106.295 245.954,106.174L246.72,108.021C246.189,108.241 245.607,108.363 244.997,108.363H242.886ZM249.5,97.526H247.5V95.416C247.5,95.072 247.432,94.75 247.311,94.458L249.158,93.692C249.378,94.223 249.5,94.805 249.5,95.416V97.526ZM238.664,90.912H236.553C235.942,90.912 235.36,91.034 234.829,91.254L235.595,93.101C235.887,92.98 236.209,92.912 236.553,92.912H238.664V90.912ZM232.049,101.749H234.049V103.86C234.049,104.203 234.117,104.525 234.238,104.817L232.391,105.583C232.171,105.052 232.049,104.47 232.049,103.86V101.749ZM232.049,97.526H234.049V95.416C234.049,95.072 234.117,94.75 234.238,94.458L232.391,93.692C232.171,94.223 232.049,94.805 232.049,95.416V97.526ZM242.886,90.912V92.912H244.997C245.34,92.912 245.662,92.98 245.954,93.101L246.72,91.254C246.189,91.034 245.607,90.912 244.997,90.912H242.886ZM249.5,101.749H247.5V103.86C247.5,104.203 247.432,104.525 247.311,104.817L249.158,105.583C249.378,105.052 249.5,104.47 249.5,103.86V101.749Z" />
<path
android:fillColor="#82C91E"
android:pathData="M29.825,34.377V53.66C29.825,55.226 31.1,56.517 32.682,56.517H34.021C35.586,56.517 36.877,55.226 36.877,53.66V34.377H29.825Z" />
<path
android:fillColor="#82C91E"
android:pathData="M36.861,25.083V21.452C36.861,19.887 35.586,18.596 34.021,18.596H32.682C31.116,18.596 29.825,19.887 29.825,21.452V25.083H36.861Z" />
<path
android:fillColor="#82C91E"
android:pathData="M52.514,40.735V21.452C52.514,19.887 51.239,18.596 49.674,18.596H48.334C46.769,18.596 45.478,19.887 45.478,21.452V40.735H52.514Z" />
<path
android:fillColor="#82C91E"
android:pathData="M45.478,50.029V53.66C45.478,55.225 46.769,56.516 48.334,56.516H49.674C51.239,56.516 52.53,55.225 52.53,53.66V50.029H45.478Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M28.696,41.865H25.065C23.5,41.865 22.209,43.14 22.209,44.721V46.061C22.209,47.626 23.484,48.917 25.065,48.917H28.696V41.865Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M57.274,41.865H37.99V48.917H57.274C58.839,48.917 60.13,47.626 60.13,46.061V44.721C60.13,43.14 58.839,41.865 57.274,41.865Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M44.348,26.213H25.065C23.5,26.213 22.209,27.488 22.209,29.069V30.408C22.209,31.974 23.484,33.265 25.065,33.265H44.348V26.213Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M57.274,26.213H53.643V33.265H57.274C58.839,33.265 60.13,31.99 60.13,30.408V29.069C60.13,27.488 58.839,26.213 57.274,26.213Z" />
<path
android:fillColor="#95DE2D"
android:fillType="evenOdd"
android:pathData="M108.864,99.496H129.086C129.852,99.496 130.587,99.801 131.129,100.343C131.671,100.886 131.975,101.622 131.975,102.39L131.975,127.191C131.975,128.296 130.688,128.899 129.841,128.191L124.6,123.804H108.864C108.098,123.804 107.363,123.499 106.821,122.956C106.279,122.413 105.975,121.677 105.975,120.91V102.39C105.975,101.622 106.279,100.886 106.821,100.343C107.363,99.801 108.098,99.496 108.864,99.496ZM116.549,112.318H110.597V104.126H127.353V112.318H121.499V115.152H123.64C124.026,115.152 124.22,115.619 123.947,115.893L119.331,120.517C119.161,120.686 118.887,120.686 118.718,120.517L114.102,115.893C113.829,115.619 114.022,115.152 114.408,115.152H116.549V112.318Z" />
<path
android:fillColor="#82C91E"
android:pathData="M190.408,151.152V162.299C190.408,163.204 191.145,163.95 192.059,163.95H192.833C193.738,163.95 194.484,163.204 194.484,162.299V151.152H190.408Z" />
<path
android:fillColor="#82C91E"
android:pathData="M194.475,145.779V143.68C194.475,142.775 193.738,142.029 192.833,142.029H192.059C191.154,142.029 190.408,142.775 190.408,143.68V145.779H194.475Z" />
<path
android:fillColor="#82C91E"
android:pathData="M203.523,154.827V143.68C203.523,142.775 202.786,142.029 201.881,142.029H201.107C200.202,142.029 199.456,142.775 199.456,143.68V154.827H203.523Z" />
<path
android:fillColor="#82C91E"
android:pathData="M199.456,160.201V162.3C199.456,163.204 200.202,163.951 201.107,163.951H201.881C202.786,163.951 203.533,163.204 203.533,162.3V160.201H199.456Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M189.755,155.48H187.656C186.751,155.48 186.005,156.217 186.005,157.131V157.905C186.005,158.81 186.742,159.556 187.656,159.556H189.755V155.48Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M206.275,155.48H195.128V159.556H206.275C207.18,159.556 207.926,158.81 207.926,157.905V157.131C207.926,156.217 207.18,155.48 206.275,155.48Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M198.803,146.433H187.656C186.751,146.433 186.005,147.17 186.005,148.084V148.859C186.005,149.763 186.742,150.51 187.656,150.51H198.803V146.433Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M206.275,146.433H204.176V150.51H206.275C207.18,150.51 207.926,149.773 207.926,148.859V148.084C207.926,147.17 207.18,146.433 206.275,146.433Z" />
</vector>

View File

@@ -0,0 +1,114 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="145">
<path
android:fillColor="#1E293B"
android:pathData="M48.87,41C48.87,36.58 45.29,33 40.87,33H14.87C10.45,33 6.87,36.58 6.87,41V103C6.87,107.42 10.45,111 14.87,111H40.87C45.29,111 48.87,107.42 48.87,103V41Z" />
<path
android:fillColor="#0B1120"
android:pathData="M48.87,47.25H6.87V101.25H48.87V47.25Z" />
<path
android:fillColor="#184080"
android:pathData="M11.47,69.1C11.47,66.89 13.26,65.1 15.47,65.1H40.26C42.47,65.1 44.26,66.89 44.26,69.1V79.39C44.26,81.6 42.47,83.39 40.26,83.39H15.47C13.26,83.39 11.47,81.6 11.47,79.39V69.1Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M17.24,71.55C17.24,71.14 17.57,70.8 17.99,70.8H37.86C38.27,70.8 38.61,71.14 38.61,71.55C38.61,71.97 38.27,72.3 37.86,72.3H17.99C17.57,72.3 17.24,71.97 17.24,71.55Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M17.24,77.65C17.24,77.24 17.57,76.9 17.99,76.9H28.67C29.08,76.9 29.42,77.24 29.42,77.65C29.42,78.07 29.08,78.4 28.67,78.4H17.99C17.57,78.4 17.24,78.07 17.24,77.65Z" />
<path
android:fillColor="#A3E635"
android:pathData="M27.87,42C27.32,42 26.87,41.55 26.87,41C26.87,40.45 27.32,40 27.87,40C28.42,40 28.87,40.45 28.87,41C28.87,41.55 28.42,42 27.87,42Z" />
<path
android:fillColor="#A3E635"
android:pathData="M19.12,41.02C19.12,40.61 19.45,40.27 19.87,40.27H23.87C24.28,40.27 24.62,40.61 24.62,41.02C24.62,41.44 24.28,41.77 23.87,41.77H19.87C19.45,41.77 19.12,41.44 19.12,41.02Z" />
<path
android:fillColor="#A3E635"
android:pathData="M31.87,40.27C31.45,40.27 31.12,40.61 31.12,41.02C31.12,41.44 31.45,41.77 31.87,41.77H35.87C36.28,41.77 36.62,41.44 36.62,41.02C36.62,40.61 36.28,40.27 35.87,40.27H31.87Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M48.87,41V103C48.87,107.42 45.29,111 40.87,111H14.87C10.45,111 6.87,107.42 6.87,103V41C6.87,36.58 10.45,33 14.87,33H40.87C45.29,33 48.87,36.58 48.87,41ZM14.87,34.5H40.87C44.46,34.5 47.37,37.41 47.37,41V47.25H8.37V41C8.37,37.41 11.28,34.5 14.87,34.5ZM47.37,48.75V99.75H8.37V48.75H47.37ZM47.37,103V101.25H8.37V103C8.37,106.59 11.28,109.5 14.87,109.5H40.87C44.46,109.5 47.37,106.59 47.37,103Z" />
<path
android:fillColor="#1E293B"
android:pathData="M281.87,41C281.87,36.58 278.29,33 273.87,33H247.87C243.45,33 239.87,36.58 239.87,41V103C239.87,107.42 243.45,111 247.87,111H273.87C278.29,111 281.87,107.42 281.87,103V41Z" />
<path
android:fillColor="#0B1120"
android:pathData="M281.87,47.25H239.87V101.25H281.87V47.25Z" />
<path
android:fillColor="#365314"
android:pathData="M244.47,69.1C244.47,66.89 246.26,65.1 248.47,65.1H273.26C275.47,65.1 277.26,66.89 277.26,69.1V79.39C277.26,81.6 275.47,83.39 273.26,83.39H248.47C246.26,83.39 244.47,81.6 244.47,79.39V69.1Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M250.24,71.55C250.24,71.14 250.57,70.8 250.99,70.8H270.86C271.27,70.8 271.61,71.14 271.61,71.55C271.61,71.97 271.27,72.3 270.86,72.3H250.99C250.57,72.3 250.24,71.97 250.24,71.55Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M250.24,77.65C250.24,77.24 250.57,76.9 250.99,76.9H261.67C262.08,76.9 262.42,77.24 262.42,77.65C262.42,78.07 262.08,78.4 261.67,78.4H250.99C250.57,78.4 250.24,78.07 250.24,77.65Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M260.87,42C260.32,42 259.87,41.55 259.87,41C259.87,40.45 260.32,40 260.87,40C261.42,40 261.87,40.45 261.87,41C261.87,41.55 261.42,42 260.87,42Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M252.12,41.02C252.12,40.61 252.45,40.27 252.87,40.27H256.87C257.28,40.27 257.62,40.61 257.62,41.02C257.62,41.44 257.28,41.77 256.87,41.77H252.87C252.45,41.77 252.12,41.44 252.12,41.02Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M264.87,40.27C264.45,40.27 264.12,40.61 264.12,41.02C264.12,41.44 264.45,41.77 264.87,41.77H268.87C269.28,41.77 269.62,41.44 269.62,41.02C269.62,40.61 269.28,40.27 268.87,40.27H264.87Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M281.87,41V103C281.87,107.42 278.29,111 273.87,111H247.87C243.45,111 239.87,107.42 239.87,103V41C239.87,36.58 243.45,33 247.87,33H273.87C278.29,33 281.87,36.58 281.87,41ZM247.87,34.5H273.87C277.46,34.5 280.37,37.41 280.37,41V47.25H241.37V41C241.37,37.41 244.28,34.5 247.87,34.5ZM280.37,48.75V99.75H241.37V48.75H280.37ZM280.37,103V101.25H241.37V103C241.37,106.59 244.28,109.5 247.87,109.5H273.87C277.46,109.5 280.37,106.59 280.37,103Z" />
<path
android:fillColor="#1E293B"
android:pathData="M150.87,54C150.87,49.58 147.29,46 142.87,46H126.87C122.45,46 118.87,49.58 118.87,54V70C118.87,74.42 122.45,78 126.87,78H142.87C147.29,78 150.87,74.42 150.87,70V54Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M126.87,47.5H142.87C146.46,47.5 149.37,50.41 149.37,54V70C149.37,73.59 146.46,76.5 142.87,76.5H126.87C123.28,76.5 120.37,73.59 120.37,70V54C120.37,50.41 123.28,47.5 126.87,47.5ZM142.87,46C147.29,46 150.87,49.58 150.87,54V70C150.87,74.42 147.29,78 142.87,78H126.87C122.45,78 118.87,74.42 118.87,70V54C118.87,49.58 122.45,46 126.87,46H142.87Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M138.93,61.38C139.52,62.63 139.29,64.17 138.26,65.2L134.28,69.18C132.96,70.5 130.82,70.5 129.5,69.18C128.18,67.86 128.18,65.72 129.5,64.4L133.48,60.42C134.51,59.39 136.05,59.16 137.3,59.75L136.11,60.95C135.55,60.87 134.97,61.05 134.54,61.48L130.56,65.46C129.83,66.19 129.83,67.39 130.56,68.12C131.3,68.85 132.49,68.85 133.22,68.12L137.2,64.14C137.63,63.71 137.81,63.13 137.74,62.57L138.93,61.38Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M132.43,64.25C133.68,64.84 135.22,64.61 136.26,63.58L140.24,59.6C141.55,58.28 141.55,56.14 140.24,54.82C138.91,53.5 136.77,53.5 135.45,54.82L131.48,58.8C130.44,59.83 130.22,61.37 130.8,62.62L132,61.42C131.93,60.87 132.11,60.29 132.54,59.86L136.51,55.88C137.25,55.14 138.44,55.14 139.17,55.88C139.91,56.61 139.91,57.8 139.17,58.54L135.2,62.52C134.77,62.94 134.19,63.12 133.63,63.05L132.43,64.25Z" />
<path
android:fillColor="#1E293B"
android:pathData="M169.87,73C169.87,68.58 166.29,65 161.87,65H145.87C141.45,65 137.87,68.58 137.87,73V89C137.87,93.42 141.45,97 145.87,97H161.87C166.29,97 169.87,93.42 169.87,89V73Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M145.87,66.5H161.87C165.46,66.5 168.37,69.41 168.37,73V89C168.37,92.59 165.46,95.5 161.87,95.5H145.87C142.28,95.5 139.37,92.59 139.37,89V73C139.37,69.41 142.28,66.5 145.87,66.5ZM161.87,65C166.29,65 169.87,68.58 169.87,73V89C169.87,93.42 166.29,97 161.87,97H145.87C141.45,97 137.87,93.42 137.87,89V73C137.87,68.58 141.45,65 145.87,65H161.87Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M157.93,80.38C158.52,81.63 158.29,83.17 157.26,84.2L153.28,88.18C151.96,89.5 149.82,89.5 148.5,88.18C147.18,86.86 147.18,84.72 148.5,83.4L152.48,79.42C153.51,78.39 155.05,78.16 156.3,78.75L155.11,79.95C154.55,79.87 153.97,80.05 153.54,80.48L149.56,84.46C148.83,85.19 148.83,86.39 149.56,87.12C150.3,87.85 151.49,87.85 152.22,87.12L156.2,83.14C156.63,82.71 156.81,82.13 156.74,81.57L157.93,80.38Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M151.43,83.25C152.68,83.84 154.22,83.61 155.26,82.58L159.24,78.6C160.55,77.28 160.55,75.14 159.24,73.82C157.91,72.5 155.77,72.5 154.45,73.82L150.48,77.8C149.44,78.83 149.22,80.37 149.8,81.62L151,80.42C150.93,79.87 151.11,79.29 151.54,78.86L155.51,74.88C156.25,74.14 157.44,74.14 158.17,74.88C158.91,75.61 158.91,76.8 158.17,77.54L154.2,81.52C153.77,81.94 153.19,82.12 152.63,82.05L151.43,83.25Z" />
<path
android:fillColor="#1457C5"
android:pathData="M87.87,62C87.87,64.21 86.08,66 83.87,66C81.66,66 79.87,64.21 79.87,62C79.87,59.79 81.66,58 83.87,58C86.08,58 87.87,59.79 87.87,62Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M103.87,62C103.87,64.21 102.08,66 99.87,66C97.66,66 95.87,64.21 95.87,62C95.87,59.79 97.66,58 99.87,58C102.08,58 103.87,59.79 103.87,62Z" />
<path
android:fillColor="#184080"
android:pathData="M71.87,62C71.87,64.21 70.08,66 67.87,66C65.66,66 63.87,64.21 63.87,62C63.87,59.79 65.66,58 67.87,58C70.08,58 71.87,59.79 71.87,62Z" />
<path
android:fillColor="#4D7C0F"
android:pathData="M200.87,81C200.87,78.79 202.66,77 204.87,77C207.08,77 208.87,78.79 208.87,81C208.87,83.21 207.08,85 204.87,85C202.66,85 200.87,83.21 200.87,81Z" />
<path
android:fillColor="#82C91E"
android:pathData="M184.87,81C184.87,78.79 186.66,77 188.87,77C191.08,77 192.87,78.79 192.87,81C192.87,83.21 191.08,85 188.87,85C186.66,85 184.87,83.21 184.87,81Z" />
<path
android:fillColor="#365314"
android:pathData="M216.87,81C216.87,78.79 218.66,77 220.87,77C223.08,77 224.87,78.79 224.87,81C224.87,83.21 223.08,85 220.87,85C218.66,85 216.87,83.21 216.87,81Z" />
</vector>

View File

@@ -0,0 +1,135 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#1E293B"
android:pathData="M41.8,13.7H95.8C102,13.7 107,18.7 107,24.9V145.9C107,152.1 102,157.1 95.8,157.1H41.8C35.6,157.1 30.6,152.1 30.6,145.9V25C30.6,18.7 35.6,13.7 41.8,13.7Z" />
<path
android:fillColor="#0B1120"
android:pathData="M100.1,40.6C100.1,36.6 96.9,33.4 92.9,33.4H44.9C40.9,33.4 37.7,36.6 37.7,40.6V136.6C37.7,140.6 40.9,143.8 44.9,143.8H92.9C96.9,143.8 100.1,140.6 100.1,136.6V40.6Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M95.8,13H41.8C35.2,13 29.8,18.4 29.8,25V146C29.8,152.6 35.2,158 41.8,158H95.8C102.4,158 107.8,152.6 107.8,146V25C107.8,18.3 102.5,13 95.8,13ZM106.3,146C106.3,151.8 101.6,156.5 95.8,156.5H41.8C36,156.5 31.3,151.8 31.3,146V25C31.3,19.2 36,14.5 41.8,14.5H95.8C101.6,14.5 106.3,19.2 106.3,25V146Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M68.8,26.9C70.5,26.9 71.8,25.6 71.8,23.9C71.8,22.2 70.5,20.9 68.8,20.9C67.1,20.9 65.8,22.2 65.8,23.9C65.8,25.6 67.2,26.9 68.8,26.9ZM68.8,22.4C69.6,22.4 70.3,23.1 70.3,23.9C70.3,24.7 69.6,25.4 68.8,25.4C68,25.4 67.3,24.7 67.3,23.9C67.3,23.1 68,22.4 68.8,22.4Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M50.8,24.4H60.8C61.2,24.4 61.6,24.1 61.6,23.6C61.6,23.1 61.3,22.8 60.8,22.8H50.8C50.4,22.8 50,23.1 50,23.6C50,24.1 50.4,24.4 50.8,24.4Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M76.8,24.4H86.8C87.2,24.4 87.6,24.1 87.6,23.6C87.6,23.1 87.3,22.8 86.8,22.8H76.8C76.4,22.8 76,23.1 76,23.6C76,24.1 76.4,24.4 76.8,24.4Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M92.8,32.6H44.8C40.4,32.6 36.8,36.2 36.8,40.6V136.6C36.8,141 40.4,144.6 44.8,144.6H92.8C97.2,144.6 100.8,141 100.8,136.6V40.6C100.8,36.2 97.2,32.6 92.8,32.6ZM99.3,136.6C99.3,140.2 96.4,143.1 92.8,143.1H44.8C41.2,143.1 38.3,140.2 38.3,136.6V40.6C38.3,37 41.2,34.1 44.8,34.1H92.8C96.4,34.1 99.3,37 99.3,40.6V136.6Z" />
<path
android:fillColor="#184080"
android:pathData="M90.8,45.8H61.4C61,45.8 60.6,45.5 60.6,45C60.6,44.5 60.9,44.2 61.4,44.2H90.9C91.3,44.2 91.7,44.5 91.7,45C91.7,45.5 91.2,45.8 90.8,45.8Z" />
<path
android:fillColor="#184080"
android:pathData="M77.2,51.7H61.4C61,51.7 60.6,51.4 60.6,50.9C60.6,50.4 60.9,50.1 61.4,50.1H77.2C77.6,50.1 78,50.4 78,50.9C78,51.4 77.6,51.7 77.2,51.7Z" />
<path
android:fillColor="#184080"
android:pathData="M90.8,87.8H61.4C61,87.8 60.6,87.5 60.6,87C60.6,86.5 60.9,86.2 61.4,86.2H90.9C91.3,86.2 91.7,86.5 91.7,87C91.7,87.5 91.2,87.8 90.8,87.8Z" />
<path
android:fillColor="#184080"
android:pathData="M77.2,93.7H61.4C61,93.7 60.6,93.4 60.6,92.9C60.6,92.4 60.9,92.1 61.4,92.1H77.2C77.6,92.1 78,92.4 78,92.9C78,93.4 77.6,93.7 77.2,93.7Z" />
<path
android:fillColor="#184080"
android:pathData="M90.8,66.8H61.4C61,66.8 60.6,66.5 60.6,66C60.6,65.5 60.9,65.2 61.4,65.2H90.9C91.3,65.2 91.7,65.5 91.7,66C91.7,66.5 91.2,66.8 90.8,66.8Z" />
<path
android:fillColor="#184080"
android:pathData="M77.2,72.7H61.4C61,72.7 60.6,72.4 60.6,71.9C60.6,71.4 60.9,71.1 61.4,71.1H77.2C77.6,71.1 78,71.4 78,71.9C78,72.4 77.6,72.7 77.2,72.7Z" />
<path
android:fillColor="#184080"
android:pathData="M90.8,129.8H61.4C61,129.8 60.6,129.5 60.6,129C60.6,128.5 60.9,128.2 61.4,128.2H90.9C91.3,128.2 91.7,128.5 91.7,129C91.7,129.5 91.2,129.8 90.8,129.8Z" />
<path
android:fillColor="#184080"
android:pathData="M77.2,135.7H61.4C61,135.7 60.6,135.4 60.6,134.9C60.6,134.4 60.9,134.1 61.4,134.1H77.2C77.6,134.1 78,134.4 78,134.9C78,135.4 77.6,135.7 77.2,135.7Z" />
<path
android:fillColor="#184080"
android:pathData="M90.8,108.8H61.4C61,108.8 60.6,108.5 60.6,108C60.6,107.5 60.9,107.2 61.4,107.2H90.9C91.3,107.2 91.7,107.5 91.7,108C91.7,108.5 91.2,108.8 90.8,108.8Z" />
<path
android:fillColor="#184080"
android:pathData="M77.2,114.7H61.4C61,114.7 60.6,114.4 60.6,113.9C60.6,113.4 60.9,113.1 61.4,113.1H77.2C77.6,113.1 78,113.4 78,113.9C78,114.4 77.6,114.7 77.2,114.7Z" />
<path
android:fillColor="#1E293B"
android:pathData="M96.8,34.8H150.8C157,34.8 162,39.8 162,46V167C162,173.2 157,178.2 150.8,178.2H96.8C90.6,178.2 85.6,173.2 85.6,167V46C85.6,39.8 90.6,34.8 96.8,34.8Z" />
<path
android:fillColor="#0B1120"
android:pathData="M155.1,61.6C155.1,57.6 151.9,54.4 147.9,54.4H99.9C95.9,54.4 92.7,57.6 92.7,61.6V157.6C92.7,161.6 95.9,164.8 99.9,164.8H147.9C151.9,164.8 155.1,161.6 155.1,157.6V61.6Z" />
<path
android:fillColor="#A3E635"
android:pathData="M150.8,34H96.8C90.2,34 84.8,39.4 84.8,46V167C84.8,173.6 90.2,179 96.8,179H150.8C157.4,179 162.8,173.6 162.8,167V46C162.8,39.4 157.5,34 150.8,34ZM161.3,167C161.3,172.8 156.6,177.5 150.8,177.5H96.8C91,177.5 86.3,172.8 86.3,167V46C86.3,40.2 91,35.5 96.8,35.5H150.8C156.6,35.5 161.3,40.2 161.3,46V167Z" />
<path
android:fillColor="#A3E635"
android:pathData="M123.8,47.9C125.5,47.9 126.8,46.6 126.8,44.9C126.8,43.2 125.5,41.9 123.8,41.9C122.1,41.9 120.8,43.2 120.8,44.9C120.8,46.6 122.2,47.9 123.8,47.9ZM123.8,43.4C124.6,43.4 125.3,44.1 125.3,44.9C125.3,45.7 124.6,46.4 123.8,46.4C123,46.4 122.3,45.7 122.3,44.9C122.3,44.1 123,43.4 123.8,43.4Z" />
<path
android:fillColor="#A3E635"
android:pathData="M105.8,45.4H115.8C116.2,45.4 116.6,45.1 116.6,44.6C116.6,44.1 116.3,43.8 115.8,43.8H105.8C105.4,43.8 105,44.1 105,44.6C105,45.1 105.4,45.4 105.8,45.4Z" />
<path
android:fillColor="#A3E635"
android:pathData="M131.8,45.4H141.8C142.2,45.4 142.6,45.1 142.6,44.6C142.6,44.1 142.3,43.8 141.8,43.8H131.8C131.4,43.8 131,44.1 131,44.6C131,45.1 131.4,45.4 131.8,45.4Z" />
<path
android:fillColor="#A3E635"
android:pathData="M147.8,53.6H99.8C95.4,53.6 91.8,57.2 91.8,61.6V157.6C91.8,162 95.4,165.6 99.8,165.6H147.8C152.2,165.6 155.8,162 155.8,157.6V61.6C155.8,57.2 152.2,53.6 147.8,53.6ZM154.3,157.6C154.3,161.2 151.4,164.1 147.8,164.1H99.8C96.2,164.1 93.3,161.2 93.3,157.6V61.6C93.3,58 96.2,55.1 99.8,55.1H147.8C151.4,55.1 154.3,58 154.3,61.6V157.6Z" />
<path
android:fillColor="#1E293B"
android:pathData="M49.8,54C53.06,54 55.7,51.31 55.7,48C55.7,44.69 53.06,42 49.8,42C46.54,42 43.9,44.69 43.9,48C43.9,51.31 46.54,54 49.8,54Z" />
<path
android:fillColor="#1E293B"
android:pathData="M49.8,96C53.06,96 55.7,93.31 55.7,90C55.7,86.69 53.06,84 49.8,84C46.54,84 43.9,86.69 43.9,90C43.9,93.31 46.54,96 49.8,96Z" />
<path
android:fillColor="#1E293B"
android:pathData="M49.8,75C53.06,75 55.7,72.31 55.7,69C55.7,65.69 53.06,63 49.8,63C46.54,63 43.9,65.69 43.9,69C43.9,72.31 46.54,75 49.8,75Z" />
<path
android:fillColor="#1E293B"
android:pathData="M49.8,138C53.06,138 55.7,135.31 55.7,132C55.7,128.69 53.06,126 49.8,126C46.54,126 43.9,128.69 43.9,132C43.9,135.31 46.54,138 49.8,138Z" />
<path
android:fillColor="#1E293B"
android:pathData="M49.8,117C53.06,117 55.7,114.31 55.7,111C55.7,107.69 53.06,105 49.8,105C46.54,105 43.9,107.69 43.9,111C43.9,114.31 46.54,117 49.8,117Z" />
<path
android:fillColor="#1E293B"
android:pathData="M104.8,75C108.06,75 110.7,72.31 110.7,69C110.7,65.69 108.06,63 104.8,63C101.54,63 98.9,65.69 98.9,69C98.9,72.31 101.54,75 104.8,75Z" />
<path
android:fillColor="#1E293B"
android:pathData="M104.8,159C108.06,159 110.7,156.31 110.7,153C110.7,149.69 108.06,147 104.8,147C101.54,147 98.9,149.69 98.9,153C98.9,156.31 101.54,159 104.8,159Z" />
<path
android:fillColor="#1E293B"
android:pathData="M104.8,138C108.06,138 110.7,135.31 110.7,132C110.7,128.69 108.06,126 104.8,126C101.54,126 98.9,128.69 98.9,132C98.9,135.31 101.54,138 104.8,138Z" />
<path
android:fillColor="#365314"
android:pathData="M116.4,66.8H145.9C146.3,66.8 146.7,66.5 146.7,66C146.7,65.5 146.4,65.2 145.9,65.2H116.4C116,65.2 115.6,65.5 115.6,66C115.6,66.5 116,66.8 116.4,66.8Z" />
<path
android:fillColor="#365314"
android:pathData="M116.4,72.7H132.2C132.6,72.7 133,72.4 133,71.9C133,71.4 132.7,71.1 132.2,71.1H116.4C116,71.1 115.6,71.4 115.6,71.9C115.6,72.4 116,72.7 116.4,72.7Z" />
<path
android:fillColor="#365314"
android:pathData="M145.8,149.3H116.4C116,149.3 115.6,149.6 115.6,150.1C115.6,150.6 115.9,150.9 116.4,150.9H145.9C146.3,150.9 146.7,150.6 146.7,150.1C146.7,149.6 146.2,149.3 145.8,149.3Z" />
<path
android:fillColor="#365314"
android:pathData="M132.2,155.2H116.4C116,155.2 115.6,155.5 115.6,156C115.6,156.5 115.9,156.8 116.4,156.8H132.2C132.6,156.8 133,156.5 133,156C133,155.5 132.6,155.2 132.2,155.2Z" />
<path
android:fillColor="#365314"
android:pathData="M145.8,128.3H116.4C116,128.3 115.6,128.6 115.6,129.1C115.6,129.6 115.9,129.9 116.4,129.9H145.9C146.3,129.9 146.7,129.6 146.7,129.1C146.7,128.6 146.2,128.3 145.8,128.3Z" />
<path
android:fillColor="#365314"
android:pathData="M116.4,135.7H132.2C132.6,135.7 133,135.4 133,134.9C133,134.4 132.7,134.1 132.2,134.1H116.4C116,134.1 115.6,134.4 115.6,134.9C115.6,135.4 116,135.7 116.4,135.7Z" />
<path
android:fillColor="#1649A0"
android:pathData="M74.8,83H172.8C175,83 176.8,84.8 176.8,87V114C176.8,116.2 175,118 172.8,118H74.8C72.6,118 70.8,116.2 70.8,114V87C70.8,84.8 72.6,83 74.8,83Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M164.8,95.3H112.8C112.4,95.3 112,95.6 112,96.1C112,96.6 112.3,96.9 112.8,96.9H164.8C165.2,96.9 165.6,96.6 165.6,96.1C165.6,95.6 165.2,95.3 164.8,95.3Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M140.8,104.1H112.8C112.4,104.1 112,104.4 112,104.9C112,105.4 112.3,105.7 112.8,105.7H140.8C141.2,105.7 141.6,105.4 141.6,104.9C141.6,104.4 141.2,104.1 140.8,104.1Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M92.3,102.2H90.8C86,102.2 82,106.1 82,111V111.1C82,111.5 82.3,111.8 82.8,111.8C83.3,111.8 83.6,111.4 83.6,111C83.6,107 86.9,103.8 90.8,103.8H92.3C96.3,103.8 99.5,107.1 99.5,111.1C99.5,111.5 99.8,111.8 100.3,111.8C100.8,111.8 101.1,111.4 101.1,111C101,106.1 97.1,102.2 92.3,102.2Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M91.6,99.5C94.3,99.5 96.5,97.3 96.5,94.6C96.5,91.9 94.3,89.7 91.6,89.7C88.9,89.7 86.7,91.9 86.7,94.6C86.7,97.4 88.9,99.5 91.6,99.5ZM91.6,91.3C93.5,91.3 95,92.8 95,94.7C95,96.6 93.4,98 91.6,98C89.8,98 88.2,96.5 88.2,94.6C88.2,92.7 89.7,91.3 91.6,91.3Z" />
</vector>

View File

@@ -0,0 +1,85 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="145">
<path
android:fillColor="#1E293B"
android:pathData="M268.9,41.8C268.9,37.39 265.32,33.8 260.9,33.8H234.9C230.48,33.8 226.9,37.39 226.9,41.8V103.81C226.9,108.22 230.48,111.81 234.9,111.81H260.9C265.32,111.81 268.9,108.22 268.9,103.81V41.8Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M234.9,35.3H260.9C264.49,35.3 267.4,38.21 267.4,41.8V103.81C267.4,107.39 264.49,110.31 260.9,110.31H234.9C231.31,110.31 228.4,107.39 228.4,103.81V41.8C228.4,38.21 231.31,35.3 234.9,35.3ZM260.9,33.8C265.32,33.8 268.9,37.39 268.9,41.8V103.81C268.9,108.22 265.32,111.81 260.9,111.81H234.9C230.48,111.81 226.9,108.22 226.9,103.81V41.8C226.9,37.39 230.48,33.8 234.9,33.8H260.9Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M246.9,41.81C246.9,42.36 247.35,42.81 247.9,42.81C248.45,42.81 248.9,42.36 248.9,41.81C248.9,41.25 248.45,40.8 247.9,40.8C247.35,40.8 246.9,41.25 246.9,41.81Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M239.15,41.83C239.15,41.41 239.49,41.08 239.9,41.08H243.9C244.32,41.08 244.65,41.41 244.65,41.83C244.65,42.24 244.32,42.58 243.9,42.58H239.9C239.49,42.58 239.15,42.24 239.15,41.83Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M251.15,41.83C251.15,41.41 251.49,41.08 251.9,41.08H255.9C256.32,41.08 256.65,41.41 256.65,41.83C256.65,42.24 256.32,42.58 255.9,42.58H251.9C251.49,42.58 251.15,42.24 251.15,41.83Z" />
<path
android:fillColor="#0B1120"
android:pathData="M268.9,48.05H226.9V102.05H268.9V48.05Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M228.4,49.55H267.4V100.55H228.4V49.55ZM268.9,48.05V102.05H226.9V48.05H268.9Z" />
<path
android:fillColor="#1E293B"
android:pathData="M61.9,41.8C61.9,37.39 58.32,33.8 53.9,33.8H27.9C23.48,33.8 19.9,37.39 19.9,41.8V103.81C19.9,108.22 23.48,111.81 27.9,111.81H53.9C58.32,111.81 61.9,108.22 61.9,103.81V41.8Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M27.9,35.3H53.9C57.49,35.3 60.4,38.21 60.4,41.8V103.81C60.4,107.39 57.49,110.31 53.9,110.31H27.9C24.31,110.31 21.4,107.39 21.4,103.81V41.8C21.4,38.21 24.31,35.3 27.9,35.3ZM53.9,33.8C58.32,33.8 61.9,37.39 61.9,41.8V103.81C61.9,108.22 58.32,111.81 53.9,111.81H27.9C23.48,111.81 19.9,108.22 19.9,103.81V41.8C19.9,37.39 23.48,33.8 27.9,33.8H53.9Z" />
<path
android:fillColor="#A3E635"
android:pathData="M39.9,41.81C39.9,42.36 40.35,42.81 40.9,42.81C41.45,42.81 41.9,42.36 41.9,41.81C41.9,41.25 41.45,40.8 40.9,40.8C40.35,40.8 39.9,41.25 39.9,41.81Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M32.15,41.83C32.15,41.41 32.49,41.08 32.9,41.08H36.9C37.32,41.08 37.65,41.41 37.65,41.83C37.65,42.24 37.32,42.58 36.9,42.58H32.9C32.49,42.58 32.15,42.24 32.15,41.83Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M44.15,41.83C44.15,41.41 44.49,41.08 44.9,41.08H48.9C49.32,41.08 49.65,41.41 49.65,41.83C49.65,42.24 49.32,42.58 48.9,42.58H44.9C44.49,42.58 44.15,42.24 44.15,41.83Z" />
<path
android:fillColor="#0B1120"
android:pathData="M61.9,48.05H19.9V102.05H61.9V48.05Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M21.4,49.55H60.4V100.55H21.4V49.55ZM61.9,48.05V102.05H19.9V48.05H61.9Z" />
<path
android:fillColor="#4D7C0F"
android:pathData="M96.15,72.8C96.15,75.01 94.36,76.8 92.15,76.8C89.94,76.8 88.15,75.01 88.15,72.8C88.15,70.6 89.94,68.8 92.15,68.8C94.36,68.8 96.15,70.6 96.15,72.8Z" />
<path
android:fillColor="#82C91E"
android:pathData="M112.15,72.8C112.15,75.01 110.36,76.8 108.15,76.8C105.94,76.8 104.15,75.01 104.15,72.8C104.15,70.6 105.94,68.8 108.15,68.8C110.36,68.8 112.15,70.6 112.15,72.8Z" />
<path
android:fillColor="#365314"
android:pathData="M80.15,72.8C80.15,75.01 78.36,76.8 76.15,76.8C73.94,76.8 72.15,75.01 72.15,72.8C72.15,70.6 73.94,68.8 76.15,68.8C78.36,68.8 80.15,70.6 80.15,72.8Z" />
<path
android:fillColor="#1457C5"
android:pathData="M192.65,72.8C192.65,70.6 194.44,68.8 196.65,68.8C198.86,68.8 200.65,70.6 200.65,72.8C200.65,75.01 198.86,76.8 196.65,76.8C194.44,76.8 192.65,75.01 192.65,72.8Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M176.65,72.8C176.65,70.6 178.44,68.8 180.65,68.8C182.86,68.8 184.65,70.6 184.65,72.8C184.65,75.01 182.86,76.8 180.65,76.8C178.44,76.8 176.65,75.01 176.65,72.8Z" />
<path
android:fillColor="#184080"
android:pathData="M208.65,72.8C208.65,70.6 210.44,68.8 212.65,68.8C214.86,68.8 216.65,70.6 216.65,72.8C216.65,75.01 214.86,76.8 212.65,76.8C210.44,76.8 208.65,75.01 208.65,72.8Z" />
<path
android:fillColor="#1E293B"
android:pathData="M166.27,62.8C166.27,56.18 160.9,50.8 154.27,50.8H134.27C127.64,50.8 122.27,56.18 122.27,62.8V82.8C122.27,89.43 127.64,94.8 134.27,94.8H154.27C160.9,94.8 166.27,89.43 166.27,82.8V62.8Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M134.27,52.3H154.27C160.07,52.3 164.77,57.01 164.77,62.8V82.8C164.77,88.6 160.07,93.3 154.27,93.3H134.27C128.47,93.3 123.77,88.6 123.77,82.8V62.8C123.77,57.01 128.47,52.3 134.27,52.3ZM154.27,50.8C160.9,50.8 166.27,56.18 166.27,62.8V82.8C166.27,89.43 160.9,94.8 154.27,94.8H134.27C127.64,94.8 122.27,89.43 122.27,82.8V62.8C122.27,56.18 127.64,50.8 134.27,50.8H154.27Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M144.08,62.35C144.34,62.23 144.65,62.26 144.88,62.45L150.58,67.15C150.75,67.29 150.85,67.5 150.85,67.72C150.86,67.94 150.76,68.15 150.6,68.3L145.55,72.68L150.6,77.05C150.76,77.19 150.85,77.4 150.85,77.62C150.85,77.83 150.76,78.04 150.6,78.18L144.89,83.15C144.67,83.34 144.36,83.39 144.09,83.27C143.82,83.14 143.65,82.88 143.65,82.58V74.32L139.19,78.19C138.88,78.46 138.4,78.42 138.13,78.11C137.86,77.8 137.89,77.32 138.21,77.05L143.26,72.68L138.21,68.3C137.89,68.03 137.86,67.55 138.13,67.24C138.4,66.93 138.88,66.89 139.19,67.17L143.65,71.03V63.03C143.65,62.74 143.82,62.47 144.08,62.35ZM145.15,74.32L148.96,77.62L145.15,80.94V74.32ZM145.15,71.03V64.62L148.94,67.75L145.15,71.03Z" />
</vector>

View File

@@ -0,0 +1,124 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="192">
<path
android:fillColor="#1E293B"
android:pathData="M112.4,21C112.4,16.58 108.82,13 104.4,13H88.4C83.98,13 80.4,16.58 80.4,21V37C80.4,41.42 83.98,45 88.4,45H104.4C108.82,45 112.4,41.42 112.4,37V21Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M88.4,14.5H104.4C107.99,14.5 110.9,17.41 110.9,21V37C110.9,40.59 107.99,43.5 104.4,43.5H88.4C84.81,43.5 81.9,40.59 81.9,37V21C81.9,17.41 84.81,14.5 88.4,14.5ZM104.4,13C108.82,13 112.4,16.58 112.4,21V37C112.4,41.42 108.82,45 104.4,45H88.4C83.98,45 80.4,41.42 80.4,37V21C80.4,16.58 83.98,13 88.4,13H104.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M60.4,127C60.4,122.58 56.82,119 52.4,119H36.4C31.98,119 28.4,122.58 28.4,127V143C28.4,147.42 31.98,151 36.4,151H52.4C56.82,151 60.4,147.42 60.4,143V127Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M36.4,120.5H52.4C55.99,120.5 58.9,123.41 58.9,127V143C58.9,146.59 55.99,149.5 52.4,149.5H36.4C32.81,149.5 29.9,146.59 29.9,143V127C29.9,123.41 32.81,120.5 36.4,120.5ZM52.4,119C56.82,119 60.4,122.58 60.4,127V143C60.4,147.42 56.82,151 52.4,151H36.4C31.98,151 28.4,147.42 28.4,143V127C28.4,122.58 31.98,119 36.4,119H52.4Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M43.65,116L43.65,100L45.15,100L45.15,116L43.65,116Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M95.65,66L95.65,48L97.15,48L97.15,66L95.65,66Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M95.65,155L95.65,126L97.15,126L97.15,155L95.65,155Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M150.15,67V92H148.65V67H150.15Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M149.17,96.45H126.4V94.95H149.17C153.58,94.95 157.15,98.52 157.15,102.93L157.15,121.7L155.65,121.7L155.65,102.93C155.65,99.35 152.75,96.45 149.17,96.45Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M43.63,95.25L66.4,95.25L66.4,96.75L43.63,96.75C39.22,96.75 35.65,93.18 35.65,88.77L35.65,70L37.15,70L37.15,88.77C37.15,92.35 40.05,95.25 43.63,95.25Z" />
<path
android:fillColor="#1E293B"
android:pathData="M157.4,52C157.4,49.79 155.61,48 153.4,48H145.4C143.19,48 141.4,49.79 141.4,52V60C141.4,62.21 143.19,64 145.4,64H153.4C155.61,64 157.4,62.21 157.4,60V52Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M145.4,49.5H153.4C154.78,49.5 155.9,50.62 155.9,52V60C155.9,61.38 154.78,62.5 153.4,62.5H145.4C144.02,62.5 142.9,61.38 142.9,60V52C142.9,50.62 144.02,49.5 145.4,49.5ZM153.4,48C155.61,48 157.4,49.79 157.4,52V60C157.4,62.21 155.61,64 153.4,64H145.4C143.19,64 141.4,62.21 141.4,60V52C141.4,49.79 143.19,48 145.4,48H153.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M104.4,162C104.4,159.79 102.61,158 100.4,158H92.4C90.19,158 88.4,159.79 88.4,162V170C88.4,172.21 90.19,174 92.4,174H100.4C102.61,174 104.4,172.21 104.4,170V162Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M92.4,159.5H100.4C101.78,159.5 102.9,160.62 102.9,162V170C102.9,171.38 101.78,172.5 100.4,172.5H92.4C91.02,172.5 89.9,171.38 89.9,170V162C89.9,160.62 91.02,159.5 92.4,159.5ZM100.4,158C102.61,158 104.4,159.79 104.4,162V170C104.4,172.21 102.61,174 100.4,174H92.4C90.19,174 88.4,172.21 88.4,170V162C88.4,159.79 90.19,158 92.4,158H100.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M123.24,81C123.24,74.37 117.87,69 111.24,69H81.24C74.61,69 69.24,74.37 69.24,81V111C69.24,117.63 74.61,123 81.24,123H111.24C117.87,123 123.24,117.63 123.24,111V81Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M81.24,70.5H111.24C117.04,70.5 121.74,75.2 121.74,81V111C121.74,116.8 117.04,121.5 111.24,121.5H81.24C75.44,121.5 70.74,116.8 70.74,111V81C70.74,75.2 75.44,70.5 81.24,70.5ZM111.24,69C117.87,69 123.24,74.37 123.24,81V111C123.24,117.63 117.87,123 111.24,123H81.24C74.61,123 69.24,117.63 69.24,111V81C69.24,74.37 74.61,69 81.24,69H111.24Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M86.13,83.57H105.57C106.31,83.57 107.01,83.87 107.53,84.39C108.06,84.92 108.35,85.63 108.35,86.37L108.35,110.31C108.35,111.38 107.11,111.96 106.3,111.28L101.26,107.57H86.13C85.39,107.57 84.68,107.28 84.16,106.75C83.64,106.23 83.35,105.52 83.35,104.78V86.37C83.35,85.63 83.64,84.92 84.16,84.39C84.68,83.87 85.39,83.57 86.13,83.57ZM93.52,95.95H87.79V88.04H103.9V95.95H98.27V98.69H100.33C100.71,98.69 100.89,99.14 100.63,99.4L96.19,103.87C96.03,104.03 95.76,104.03 95.6,103.87L91.16,99.4C90.9,99.14 91.09,98.69 91.46,98.69H93.52V95.95Z" />
<path
android:fillColor="#1E293B"
android:pathData="M172.4,132C172.4,127.58 168.82,124 164.4,124H148.4C143.98,124 140.4,127.58 140.4,132V148C140.4,152.42 143.98,156 148.4,156H164.4C168.82,156 172.4,152.42 172.4,148V132Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M148.4,125.5H164.4C167.99,125.5 170.9,128.41 170.9,132V148C170.9,151.59 167.99,154.5 164.4,154.5H148.4C144.81,154.5 141.9,151.59 141.9,148V132C141.9,128.41 144.81,125.5 148.4,125.5ZM164.4,124C168.82,124 172.4,127.58 172.4,132V148C172.4,152.42 168.82,156 164.4,156H148.4C143.98,156 140.4,152.42 140.4,148V132C140.4,127.58 143.98,124 148.4,124H164.4Z" />
<path
android:fillColor="#82C91E"
android:pathData="M152,138.54V145.66C152,146.24 152.47,146.71 153.05,146.71H153.55C154.13,146.71 154.6,146.24 154.6,145.66V138.54H152Z" />
<path
android:fillColor="#82C91E"
android:pathData="M154.6,135.11V133.77C154.6,133.19 154.13,132.71 153.55,132.71H153.05C152.48,132.71 152,133.19 152,133.77V135.11H154.6Z" />
<path
android:fillColor="#82C91E"
android:pathData="M160.38,140.89V133.77C160.38,133.19 159.91,132.71 159.33,132.71H158.83C158.26,132.71 157.78,133.19 157.78,133.77V140.89H160.38Z" />
<path
android:fillColor="#82C91E"
android:pathData="M157.78,144.32V145.66C157.78,146.24 158.26,146.71 158.83,146.71H159.33C159.91,146.71 160.38,146.24 160.38,145.66V144.32H157.78Z" />
<path
android:fillColor="#A3E635"
android:pathData="M151.58,141.3H150.24C149.66,141.3 149.19,141.77 149.19,142.36V142.85C149.19,143.43 149.66,143.91 150.24,143.91H151.58V141.3Z" />
<path
android:fillColor="#A3E635"
android:pathData="M162.13,141.3H155.01V143.91H162.13C162.71,143.91 163.19,143.43 163.19,142.85V142.36C163.19,141.77 162.71,141.3 162.13,141.3Z" />
<path
android:fillColor="#A3E635"
android:pathData="M157.36,135.53H150.24C149.66,135.53 149.19,136 149.19,136.58V137.07C149.19,137.65 149.66,138.13 150.24,138.13H157.36V135.53Z" />
<path
android:fillColor="#A3E635"
android:pathData="M162.13,135.53H160.79V138.13H162.13C162.71,138.13 163.19,137.66 163.19,137.07V136.58C163.19,136 162.71,135.53 162.13,135.53Z" />
<path
android:fillColor="#82C91E"
android:pathData="M28.03,50.65V64.89C28.03,66.05 28.97,67 30.13,67H31.12C32.28,67 33.23,66.05 33.23,64.89V50.65H28.03Z" />
<path
android:fillColor="#82C91E"
android:pathData="M33.22,43.79V41.11C33.22,39.95 32.28,39 31.12,39H30.13C28.98,39 28.03,39.95 28.03,41.11V43.79H33.22Z" />
<path
android:fillColor="#82C91E"
android:pathData="M44.78,55.35V41.11C44.78,39.95 43.84,39 42.68,39H41.69C40.54,39 39.58,39.95 39.58,41.11V55.35H44.78Z" />
<path
android:fillColor="#82C91E"
android:pathData="M39.58,62.21V64.89C39.58,66.05 40.54,67 41.69,67H42.68C43.84,67 44.79,66.05 44.79,64.89V62.21H39.58Z" />
<path
android:fillColor="#A3E635"
android:pathData="M27.19,56.18H24.51C23.35,56.18 22.4,57.12 22.4,58.29V59.28C22.4,60.43 23.34,61.39 24.51,61.39H27.19V56.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M48.29,56.18H34.05V61.39H48.29C49.45,61.39 50.4,60.43 50.4,59.28V58.29C50.4,57.12 49.45,56.18 48.29,56.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M38.75,44.62H24.51C23.35,44.62 22.4,45.56 22.4,46.73V47.72C22.4,48.88 23.34,49.83 24.51,49.83H38.75V44.62Z" />
<path
android:fillColor="#A3E635"
android:pathData="M48.29,44.62H45.61V49.83H48.29C49.45,49.83 50.4,48.89 50.4,47.72V46.73C50.4,45.56 49.45,44.62 48.29,44.62Z" />
</vector>

View File

@@ -0,0 +1,106 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="192">
<path
android:fillColor="#1E293B"
android:pathData="M189.4,29C189.4,22.37 184.03,17 177.4,17H86.4C79.77,17 74.4,22.37 74.4,29V163C74.4,169.63 79.77,175 86.4,175H177.4C184.03,175 189.4,169.63 189.4,163V29Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M86.4,18.5H177.4C183.2,18.5 187.9,23.2 187.9,29V163C187.9,168.8 183.2,173.5 177.4,173.5H86.4C80.6,173.5 75.9,168.8 75.9,163V29C75.9,23.2 80.6,18.5 86.4,18.5ZM177.4,17C184.03,17 189.4,22.37 189.4,29V163C189.4,169.63 184.03,175 177.4,175H86.4C79.77,175 74.4,169.63 74.4,163V29C74.4,22.37 79.77,17 86.4,17H177.4Z" />
<path
android:fillColor="#0B1120"
android:pathData="M183.4,35C183.4,30.58 179.82,27 175.4,27H88.4C83.98,27 80.4,30.58 80.4,35V157C80.4,161.42 83.98,165 88.4,165H175.4C179.82,165 183.4,161.42 183.4,157V35Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M88.4,28.5H175.4C178.99,28.5 181.9,31.41 181.9,35V157C181.9,160.59 178.99,163.5 175.4,163.5H88.4C84.81,163.5 81.9,160.59 81.9,157V35C81.9,31.41 84.81,28.5 88.4,28.5ZM175.4,27C179.82,27 183.4,30.58 183.4,35V157C183.4,161.42 179.82,165 175.4,165H88.4C83.98,165 80.4,161.42 80.4,157V35C80.4,30.58 83.98,27 88.4,27H175.4Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M131.9,38.26C131.07,38.26 130.4,37.58 130.4,36.76C130.4,35.93 131.07,35.26 131.9,35.26C132.73,35.26 133.4,35.93 133.4,36.76C133.4,37.58 132.73,38.26 131.9,38.26ZM131.9,39.76C130.24,39.76 128.9,38.41 128.9,36.76C128.9,35.1 130.24,33.76 131.9,33.76C133.56,33.76 134.9,35.1 134.9,36.76C134.9,38.41 133.56,39.76 131.9,39.76Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M115.85,74H146.96C148.14,74 149.27,74.47 150.1,75.32C150.93,76.16 151.4,77.3 151.4,78.49L151.4,116.97C151.4,118.69 149.42,119.63 148.12,118.53L140.05,112.57H115.85C114.67,112.57 113.54,112.1 112.7,111.26C111.87,110.41 111.4,109.27 111.4,108.08V78.49C111.4,77.3 111.87,76.16 112.7,75.32C113.54,74.47 114.67,74 115.85,74ZM127.67,93.9H118.51V81.18H144.29V93.9H135.29V98.29H138.58C139.17,98.29 139.47,99.02 139.05,99.44L131.95,106.62C131.69,106.88 131.27,106.88 131.01,106.62L123.9,99.44C123.48,99.02 123.78,98.29 124.38,98.29H127.67V93.9Z" />
<path
android:fillColor="#1E293B"
android:pathData="M3.4,29.03C3.4,22.4 8.77,17.03 15.4,17.03H55.4C62.03,17.03 67.4,22.4 67.4,29.03V125.03C67.4,131.65 62.03,137.03 55.4,137.03H15.4C8.77,137.03 3.4,131.65 3.4,125.03V29.03Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M55.4,18.53H15.4C9.6,18.53 4.9,23.23 4.9,29.03V125.03C4.9,130.82 9.6,135.53 15.4,135.53H55.4C61.2,135.53 65.9,130.82 65.9,125.03V29.03C65.9,23.23 61.2,18.53 55.4,18.53ZM15.4,17.03C8.77,17.03 3.4,22.4 3.4,29.03V125.03C3.4,131.65 8.77,137.03 15.4,137.03H55.4C62.03,137.03 67.4,131.65 67.4,125.03V29.03C67.4,22.4 62.03,17.03 55.4,17.03H15.4Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M35.4,27.01C34.88,27.01 34.44,26.58 34.44,26.03C34.44,25.47 34.88,25.05 35.4,25.05C35.92,25.05 36.36,25.47 36.36,26.03C36.36,26.58 35.92,27.01 35.4,27.01ZM35.4,28.51C34.04,28.51 32.94,27.4 32.94,26.03C32.94,24.66 34.04,23.55 35.4,23.55C36.76,23.55 37.86,24.66 37.86,26.03C37.86,27.4 36.76,28.51 35.4,28.51Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M19.88,25.77C19.88,25.35 20.22,25.02 20.63,25.02H28.84C29.25,25.02 29.59,25.35 29.59,25.77C29.59,26.18 29.25,26.52 28.84,26.52H20.63C20.22,26.52 19.88,26.18 19.88,25.77Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M41.22,25.77C41.22,25.35 41.55,25.02 41.97,25.02L50.17,25.02C50.58,25.02 50.92,25.35 50.92,25.77C50.92,26.18 50.58,26.52 50.17,26.52L41.97,26.52C41.55,26.52 41.22,26.18 41.22,25.77Z" />
<path
android:fillColor="#0B1120"
android:pathData="M61.66,41.25C61.66,36.83 58.08,33.25 53.66,33.25H17.14C12.73,33.25 9.14,36.83 9.14,41.25V117.94C9.14,122.36 12.73,125.94 17.14,125.94H53.66C58.08,125.94 61.66,122.36 61.66,117.94V41.25Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M17.14,34.75H53.66C57.25,34.75 60.16,37.66 60.16,41.25V117.94C60.16,121.53 57.25,124.44 53.66,124.44H17.14C13.56,124.44 10.64,121.53 10.64,117.94V41.25C10.64,37.66 13.56,34.75 17.14,34.75ZM53.66,33.25C58.08,33.25 61.66,36.83 61.66,41.25V117.94C61.66,122.36 58.08,125.94 53.66,125.94H17.14C12.73,125.94 9.14,122.36 9.14,117.94V41.25C9.14,36.83 12.73,33.25 17.14,33.25H53.66Z" />
<path
android:fillColor="#82C91E"
android:pathData="M27.55,74.96V88.42C27.55,89.52 28.43,90.42 29.52,90.42H30.45C31.54,90.42 32.43,89.52 32.43,88.42V74.96H27.55Z" />
<path
android:fillColor="#82C91E"
android:pathData="M32.42,68.47V65.93C32.42,64.84 31.54,63.94 30.45,63.94H29.52C28.44,63.94 27.55,64.84 27.55,65.93V68.47H32.42Z" />
<path
android:fillColor="#82C91E"
android:pathData="M43.26,79.4V65.93C43.26,64.84 42.37,63.94 41.29,63.94H40.36C39.28,63.94 38.38,64.84 38.38,65.93V79.4H43.26Z" />
<path
android:fillColor="#82C91E"
android:pathData="M38.38,85.89V88.42C38.38,89.52 39.28,90.42 40.36,90.42H41.29C42.37,90.42 43.27,89.52 43.27,88.42V85.89H38.38Z" />
<path
android:fillColor="#A3E635"
android:pathData="M26.76,80.19H24.25C23.17,80.19 22.27,81.08 22.27,82.18V83.12C22.27,84.21 23.16,85.11 24.25,85.11H26.76V80.19Z" />
<path
android:fillColor="#A3E635"
android:pathData="M46.55,80.19H33.2V85.11H46.55C47.64,85.11 48.53,84.21 48.53,83.12V82.18C48.53,81.08 47.64,80.19 46.55,80.19Z" />
<path
android:fillColor="#A3E635"
android:pathData="M37.6,69.25H24.25C23.17,69.25 22.27,70.14 22.27,71.25V72.18C22.27,73.28 23.16,74.18 24.25,74.18H37.6V69.25Z" />
<path
android:fillColor="#A3E635"
android:pathData="M46.55,69.25H44.04V74.18H46.55C47.64,74.18 48.53,73.29 48.53,72.18V71.25C48.53,70.14 47.64,69.25 46.55,69.25Z" />
<path
android:fillColor="#1E293B"
android:pathData="M67.4,155C67.4,150.58 63.82,147 59.4,147H47.4C42.98,147 39.4,150.58 39.4,155V167C39.4,171.42 42.98,175 47.4,175H59.4C63.82,175 67.4,171.42 67.4,167V155Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M47.4,148.5H59.4C62.99,148.5 65.9,151.41 65.9,155V167C65.9,170.59 62.99,173.5 59.4,173.5H47.4C43.81,173.5 40.9,170.59 40.9,167V155C40.9,151.41 43.81,148.5 47.4,148.5ZM59.4,147C63.82,147 67.4,150.58 67.4,155V167C67.4,171.42 63.82,175 59.4,175H47.4C42.98,175 39.4,171.42 39.4,167V155C39.4,150.58 42.98,147 47.4,147H59.4Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M56.32,155.31H53L48.75,162.62H53L51.74,167.73L58.05,159.63H53.88L56.32,155.31Z" />
<path
android:fillColor="#1E293B"
android:pathData="M31.4,155C31.4,150.58 27.82,147 23.4,147H11.4C6.98,147 3.4,150.58 3.4,155V167C3.4,171.42 6.98,175 11.4,175H23.4C27.82,175 31.4,171.42 31.4,167V155Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M11.4,148.5H23.4C26.99,148.5 29.9,151.41 29.9,155V167C29.9,170.59 26.99,173.5 23.4,173.5H11.4C7.81,173.5 4.9,170.59 4.9,167V155C4.9,151.41 7.81,148.5 11.4,148.5ZM23.4,147C27.82,147 31.4,150.58 31.4,155V167C31.4,171.42 27.82,175 23.4,175H11.4C6.98,175 3.4,171.42 3.4,167V155C3.4,150.58 6.98,147 11.4,147H23.4Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M11.18,158.86C12,158.05 12.97,157.4 14.03,156.96C15.1,156.51 16.24,156.29 17.4,156.29C18.56,156.29 19.7,156.51 20.77,156.96C21.83,157.4 22.8,158.05 23.62,158.86L22.56,159.92C21.88,159.25 21.08,158.71 20.19,158.34C19.31,157.98 18.36,157.79 17.4,157.79C16.44,157.79 15.49,157.98 14.61,158.34C13.72,158.71 12.92,159.25 12.24,159.92L11.18,158.86Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M13.51,161.19C14.02,160.68 14.62,160.27 15.29,159.99C15.96,159.72 16.68,159.57 17.4,159.57C18.12,159.57 18.84,159.72 19.51,159.99C20.18,160.27 20.78,160.68 21.3,161.19L20.24,162.25C19.86,161.88 19.42,161.58 18.93,161.38C18.45,161.18 17.93,161.07 17.4,161.07C16.87,161.07 16.35,161.18 15.87,161.38C15.38,161.58 14.94,161.88 14.57,162.25L13.51,161.19Z" />
<path
android:fillColor="#A3E635"
android:pathData="M18.36,164.13C18.36,164.65 17.93,165.08 17.4,165.08C16.87,165.08 16.44,164.65 16.44,164.13C16.44,163.6 16.87,163.17 17.4,163.17C17.93,163.17 18.36,163.6 18.36,164.13Z" />
</vector>

View File

@@ -0,0 +1,70 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#A3E635"
android:pathData="M101.81,89.08L92.5,83.81L92.5,94.34L101.81,89.08Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M92.99,102.92L102.3,108.18L102.3,97.66L92.99,102.92Z" />
<path
android:fillColor="#1E293B"
android:pathData="M6.4,36.03C6.4,29.4 11.77,24.03 18.4,24.03H72.4C79.03,24.03 84.4,29.4 84.4,36.03V157.03C84.4,163.66 79.03,169.03 72.4,169.03H18.4C11.77,169.03 6.4,163.66 6.4,157.03V36.03Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M72.4,25.53H18.4C12.6,25.53 7.9,30.23 7.9,36.03V157.03C7.9,162.83 12.6,167.53 18.4,167.53H72.4C78.2,167.53 82.9,162.83 82.9,157.03V36.03C82.9,30.23 78.2,25.53 72.4,25.53ZM18.4,24.03C11.77,24.03 6.4,29.4 6.4,36.03V157.03C6.4,163.66 11.77,169.03 18.4,169.03H72.4C79.03,169.03 84.4,163.66 84.4,157.03V36.03C84.4,29.4 79.03,24.03 72.4,24.03H18.4Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M45.4,36.41C44.57,36.41 43.9,35.74 43.9,34.91C43.9,34.08 44.57,33.41 45.4,33.41C46.23,33.41 46.9,34.08 46.9,34.91C46.9,35.74 46.23,36.41 45.4,36.41ZM45.4,37.91C43.74,37.91 42.4,36.57 42.4,34.91C42.4,33.25 43.74,31.91 45.4,31.91C47.06,31.91 48.4,33.25 48.4,34.91C48.4,36.57 47.06,37.91 45.4,37.91Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M26.65,34.59C26.65,34.18 26.99,33.84 27.4,33.84H37.4C37.82,33.84 38.15,34.18 38.15,34.59C38.15,35.01 37.82,35.34 37.4,35.34H27.4C26.99,35.34 26.65,35.01 26.65,34.59Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M52.65,34.59C52.65,34.18 52.99,33.84 53.4,33.84L63.4,33.84C63.82,33.84 64.15,34.18 64.15,34.59C64.15,35.01 63.82,35.34 63.4,35.34L53.4,35.34C52.99,35.34 52.65,35.01 52.65,34.59Z" />
<path
android:fillColor="#0B1120"
android:pathData="M77.4,51.63C77.4,47.22 73.82,43.63 69.4,43.63H21.4C16.98,43.63 13.4,47.22 13.4,51.63V147.63C13.4,152.05 16.98,155.63 21.4,155.63H69.4C73.82,155.63 77.4,152.05 77.4,147.63V51.63Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M21.4,45.13H69.4C72.99,45.13 75.9,48.04 75.9,51.63V147.63C75.9,151.22 72.99,154.13 69.4,154.13H21.4C17.81,154.13 14.9,151.22 14.9,147.63V51.63C14.9,48.04 17.81,45.13 21.4,45.13ZM69.4,43.63C73.82,43.63 77.4,47.22 77.4,51.63V147.63C77.4,152.05 73.82,155.63 69.4,155.63H21.4C16.98,155.63 13.4,152.05 13.4,147.63V51.63C13.4,47.22 16.98,43.63 21.4,43.63H69.4Z" />
<path
android:fillColor="#A3E635"
android:pathData="M51.07,114H47.29V110.22H51.07V114ZM47.29,100.78H43.51V110.22H47.29V100.78ZM62.4,97H58.62V104.56H62.4V97ZM58.62,93.22H54.85V97H58.62V93.22ZM35.96,97H32.18V100.78H35.96V97ZM32.18,93.22H28.4V97H32.18V93.22ZM45.4,83.78H49.18V80H45.4V83.78ZM31.23,82.83V88.5H36.9V82.83H31.23ZM39.73,91.33H28.4V80H39.73V91.33ZM31.23,105.5V111.17H36.9V105.5H31.23ZM39.73,114H28.4V102.67H39.73V114ZM53.9,82.83V88.5H59.57V82.83H53.9ZM62.4,91.33H51.07V80H56.73H62.4V91.33ZM58.62,110.22V104.56H51.07V108.33H54.85V114H62.4V110.22H58.62ZM54.85,97H47.29V100.78H54.85V97ZM47.29,93.22H35.96V97H39.73V100.78H43.51V97H47.29V93.22ZM49.18,91.33V87.56H45.4V83.78H41.62V91.33H49.18ZM35.48,84.25H32.65V87.08H35.48V84.25ZM35.48,106.92H32.65V109.75H35.48V106.92ZM58.15,84.25H55.32V87.08H58.15V84.25Z" />
<path
android:fillColor="#1E293B"
android:pathData="M109.4,35.95C109.4,29.32 114.77,23.95 121.4,23.95H175.4C182.03,23.95 187.4,29.32 187.4,35.95V156.95C187.4,163.58 182.03,168.95 175.4,168.95H121.4C114.77,168.95 109.4,163.58 109.4,156.95V35.95Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M175.4,25.45H121.4C115.6,25.45 110.9,30.15 110.9,35.95V156.95C110.9,162.75 115.6,167.45 121.4,167.45H175.4C181.2,167.45 185.9,162.75 185.9,156.95V35.95C185.9,30.15 181.2,25.45 175.4,25.45ZM121.4,23.95C114.77,23.95 109.4,29.32 109.4,35.95V156.95C109.4,163.58 114.77,168.95 121.4,168.95H175.4C182.03,168.95 187.4,163.58 187.4,156.95V35.95C187.4,29.32 182.03,23.95 175.4,23.95H121.4Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M148.4,36.41C147.57,36.41 146.9,35.74 146.9,34.91C146.9,34.08 147.57,33.41 148.4,33.41C149.23,33.41 149.9,34.08 149.9,34.91C149.9,35.74 149.23,36.41 148.4,36.41ZM148.4,37.91C146.74,37.91 145.4,36.57 145.4,34.91C145.4,33.25 146.74,31.91 148.4,31.91C150.06,31.91 151.4,33.25 151.4,34.91C151.4,36.57 150.06,37.91 148.4,37.91Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M129.65,34.59C129.65,34.18 129.99,33.84 130.4,33.84H140.4C140.82,33.84 141.15,34.18 141.15,34.59C141.15,35.01 140.82,35.34 140.4,35.34H130.4C129.99,35.34 129.65,35.01 129.65,34.59Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M155.65,34.59C155.65,34.18 155.99,33.84 156.4,33.84L166.4,33.84C166.82,33.84 167.15,34.18 167.15,34.59C167.15,35.01 166.82,35.34 166.4,35.34L156.4,35.34C155.99,35.34 155.65,35.01 155.65,34.59Z" />
<path
android:fillColor="#0B1120"
android:pathData="M180.4,51.63C180.4,47.22 176.82,43.63 172.4,43.63H124.4C119.98,43.63 116.4,47.22 116.4,51.63V147.63C116.4,152.05 119.98,155.63 124.4,155.63H172.4C176.82,155.63 180.4,152.05 180.4,147.63V51.63Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M124.4,45.13H172.4C175.99,45.13 178.9,48.04 178.9,51.63V147.63C178.9,151.22 175.99,154.13 172.4,154.13H124.4C120.81,154.13 117.9,151.22 117.9,147.63V51.63C117.9,48.04 120.81,45.13 124.4,45.13ZM172.4,43.63C176.82,43.63 180.4,47.22 180.4,51.63V147.63C180.4,152.05 176.82,155.63 172.4,155.63H124.4C119.98,155.63 116.4,152.05 116.4,147.63V51.63C116.4,47.22 119.98,43.63 124.4,43.63H172.4Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M154.07,114H150.29V110.22H154.07V114ZM150.29,100.78H146.51V110.22H150.29V100.78ZM165.4,97H161.62V104.56H165.4V97ZM161.62,93.22H157.85V97H161.62V93.22ZM138.96,97H135.18V100.78H138.96V97ZM135.18,93.22H131.4V97H135.18V93.22ZM148.4,83.78H152.18V80H148.4V83.78ZM134.24,82.83V88.5H139.9V82.83H134.24ZM142.74,91.33H131.4V80H142.74V91.33ZM134.24,105.5V111.17H139.9V105.5H134.24ZM142.74,114H131.4V102.67H142.74V114ZM156.9,82.83V88.5H162.57V82.83H156.9ZM165.4,91.33H154.07V80H159.74H165.4V91.33ZM161.62,110.22V104.56H154.07V108.33H157.85V114H165.4V110.22H161.62ZM157.85,97H150.29V100.78H157.85V97ZM150.29,93.22H138.96V97H142.74V100.78H146.51V97H150.29V93.22ZM152.18,91.33V87.56H148.4V83.78H144.62V91.33H152.18ZM138.49,84.25H135.65V87.08H138.49V84.25ZM138.49,106.92H135.65V109.75H138.49V106.92ZM161.15,84.25H158.32V87.08H161.15V84.25Z" />
</vector>

View File

@@ -0,0 +1,72 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="96dp"
android:viewportWidth="192"
android:viewportHeight="96">
<path
android:fillColor="#fbbf24"
android:fillType="evenOdd"
android:pathData="m96,42.07c-0.58,0 -1.05,0.47 -1.05,1.05v12.59c0,0.58 0.47,1.05 1.05,1.05 0.58,0 1.05,-0.47 1.05,-1.05L97.05,43.12c0,-0.58 -0.47,-1.05 -1.05,-1.05zM96,59.6c-0.58,0 -1.05,0.47 -1.05,1.05v0.13c0,0.58 0.47,1.05 1.05,1.05 0.58,0 1.05,-0.47 1.05,-1.05v-0.13c0,-0.58 -0.47,-1.05 -1.05,-1.05z"
android:strokeWidth="1.39386" />
<path
android:fillColor="#fbbf24"
android:fillType="evenOdd"
android:pathData="M114.72,64.46 L96.69,33.86c-0.3,-0.51 -1.08,-0.51 -1.38,0l-18.03,30.6c-0.25,0.42 0.02,1.08 0.69,1.08h36.05c0.67,0 0.94,-0.66 0.69,-1.08zM98.49,32.8c-1.11,-1.88 -3.88,-1.88 -4.98,0L75.48,63.4c-1.11,1.88 0.28,4.23 2.49,4.23h36.05c2.21,0 3.6,-2.35 2.49,-4.23z"
android:strokeWidth="1.39386" />
<path
android:fillColor="#334155"
android:pathData="m180.9,17c0,-4.42 -3.58,-8 -8,-8h-26c-4.42,0 -8,3.58 -8,8v62c0,4.42 3.58,8 8,8h26c4.42,0 8,-3.58 8,-8z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m146.9,10.5h26c3.59,0 6.5,2.91 6.5,6.5v62c0,3.59 -2.91,6.5 -6.5,6.5h-26c-3.59,0 -6.5,-2.91 -6.5,-6.5L140.4,17c0,-3.59 2.91,-6.5 6.5,-6.5zM172.9,9c4.42,0 8,3.58 8,8v62c0,4.42 -3.58,8 -8,8h-26c-4.42,0 -8,-3.58 -8,-8L138.9,17c0,-4.42 3.58,-8 8,-8z" />
<path
android:fillColor="#0b1120"
android:pathData="m180.9,23.25h-42v54h42z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m140.4,24.75h39v51h-39zM180.9,23.25v54h-42v-54z" />
<path
android:fillColor="#64748b"
android:pathData="m163.24,60.25h-2.22v-2.22h2.22zM161.01,52.47h-2.22v5.56h2.22zM169.9,50.25h-2.22v4.44h2.22zM167.68,48.03h-2.22v2.22h2.22zM154.35,50.25h-2.22v2.22h2.22zM152.12,48.03h-2.22v2.22h2.22zM159.9,42.47h2.22L162.12,40.25h-2.22zM151.57,41.91v3.33h3.33v-3.33zM156.57,46.91h-6.67L149.9,40.25h6.67zM151.57,55.25v3.33h3.33L154.9,55.25ZM156.57,60.25h-6.67v-6.67h6.67zM164.9,41.91v3.33h3.33v-3.33zM169.9,46.91h-6.67L163.24,40.25h3.33,3.33zM167.68,58.03v-3.33h-4.44v2.22h2.22v3.33h4.44v-2.22zM165.46,50.25h-4.45v2.22h4.45zM161.01,48.03h-6.67v2.22h2.22v2.22h2.22L158.79,50.25h2.22zM162.12,46.91v-2.22h-2.22v-2.22h-2.22v4.44zM154.07,42.75h-1.67v1.67h1.67zM154.07,56.08h-1.67v1.67h1.67zM167.4,42.75h-1.67v1.67h1.67z" />
<path
android:fillColor="#64748b"
android:pathData="m158.9,17c0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m151.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m163.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#334155"
android:pathData="m55.9,17c0,-4.42 -3.58,-8 -8,-8H21.9c-4.42,0 -8,3.58 -8,8v62c0,4.42 3.58,8 8,8H47.9c4.42,0 8,-3.58 8,-8z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="M21.9,10.5H47.9c3.59,0 6.5,2.91 6.5,6.5v62c0,3.59 -2.91,6.5 -6.5,6.5H21.9c-3.59,0 -6.5,-2.91 -6.5,-6.5V17c0,-3.59 2.91,-6.5 6.5,-6.5zM47.9,9c4.42,0 8,3.58 8,8v62c0,4.42 -3.58,8 -8,8H21.9c-4.42,0 -8,-3.58 -8,-8V17c0,-4.42 3.58,-8 8,-8z" />
<path
android:fillColor="#0b1120"
android:pathData="M55.9,23.25H13.9v54H55.9Z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="M15.4,24.75L54.4,24.75v51L15.4,75.75ZM55.9,23.25v54L13.9,77.25v-54z" />
<path
android:fillColor="#64748b"
android:pathData="m38.23,60.25h-2.22v-2.22h2.22zM36.01,52.47h-2.22v5.56h2.22zM44.9,50.25h-2.22v4.44h2.22zM42.68,48.03h-2.22v2.22h2.22zM29.35,50.25h-2.22v2.22h2.22zM27.12,48.03h-2.22v2.22h2.22zM34.9,42.47h2.22L37.12,40.25L34.9,40.25ZM26.57,41.91v3.33h3.33v-3.33zM31.57,46.91L24.9,46.91L24.9,40.25h6.67zM26.57,55.25v3.33h3.33L29.9,55.25ZM31.57,60.25h-6.67v-6.67h6.67zM39.9,41.91v3.33h3.33v-3.33zM44.9,46.91L38.23,46.91L38.23,40.25h3.33,3.33zM42.68,58.03v-3.33h-4.44v2.22h2.22L40.46,60.25L44.9,60.25L44.9,58.03ZM40.46,50.25h-4.44v2.22h4.44zM36.01,48.03h-6.67v2.22h2.22v2.22h2.22L33.79,50.25h2.22zM37.12,46.91v-2.22h-2.22v-2.22h-2.22v4.44zM29.07,42.75h-1.67v1.67h1.67zM29.07,56.08L27.4,56.08L27.4,57.75L29.07,57.75ZM42.4,42.75h-1.67v1.67h1.67z" />
<path
android:fillColor="#64748b"
android:pathData="m33.9,17c0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m26.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#64748b"
android:fillType="evenOdd"
android:pathData="m38.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
</vector>

View File

@@ -0,0 +1,176 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#334155"
android:pathData="M72.4,56C72.4,51.58 68.82,48 64.4,48H38.4C33.98,48 30.4,51.58 30.4,56V118C30.4,122.42 33.98,126 38.4,126H64.4C68.82,126 72.4,122.42 72.4,118V56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M38.4,49.5H64.4C67.99,49.5 70.9,52.41 70.9,56V118C70.9,121.59 67.99,124.5 64.4,124.5H38.4C34.81,124.5 31.9,121.59 31.9,118V56C31.9,52.41 34.81,49.5 38.4,49.5ZM64.4,48C68.82,48 72.4,51.58 72.4,56V118C72.4,122.42 68.82,126 64.4,126H38.4C33.98,126 30.4,122.42 30.4,118V56C30.4,51.58 33.98,48 38.4,48H64.4Z" />
<path
android:fillColor="#0B1120"
android:pathData="M72.4,62.25H30.4V116.25H72.4V62.25Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M31.9,63.75H70.9V114.75H31.9V63.75ZM72.4,62.25V116.25H30.4V62.25H72.4Z" />
<path
android:fillColor="#64748B"
android:pathData="M50.4,56C50.4,56.55 50.85,57 51.4,57C51.95,57 52.4,56.55 52.4,56C52.4,55.45 51.95,55 51.4,55C50.85,55 50.4,55.45 50.4,56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M42.65,56.02C42.65,55.61 42.99,55.27 43.4,55.27H47.4C47.82,55.27 48.15,55.61 48.15,56.02C48.15,56.44 47.82,56.77 47.4,56.77H43.4C42.99,56.77 42.65,56.44 42.65,56.02Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M54.65,56.02C54.65,55.61 54.99,55.27 55.4,55.27H59.4C59.82,55.27 60.15,55.61 60.15,56.02C60.15,56.44 59.82,56.77 59.4,56.77H55.4C54.99,56.77 54.65,56.44 54.65,56.02Z" />
<path
android:fillColor="#334155"
android:pathData="M50.4,51C50.4,46.58 46.82,43 42.4,43H16.4C11.98,43 8.4,46.58 8.4,51V113C8.4,117.42 11.98,121 16.4,121H42.4C46.82,121 50.4,117.42 50.4,113V51Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M16.4,44.5H42.4C45.99,44.5 48.9,47.41 48.9,51V113C48.9,116.59 45.99,119.5 42.4,119.5H16.4C12.81,119.5 9.9,116.59 9.9,113V51C9.9,47.41 12.81,44.5 16.4,44.5ZM42.4,43C46.82,43 50.4,46.58 50.4,51V113C50.4,117.42 46.82,121 42.4,121H16.4C11.98,121 8.4,117.42 8.4,113V51C8.4,46.58 11.98,43 16.4,43H42.4Z" />
<path
android:fillColor="#0B1120"
android:pathData="M50.4,57.25H8.4V111.25H50.4V57.25Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M9.9,58.75H48.9V109.75H9.9V58.75ZM50.4,57.25V111.25H8.4V57.25H50.4Z" />
<path
android:fillColor="#64748B"
android:pathData="M28.4,51C28.4,51.55 28.85,52 29.4,52C29.95,52 30.4,51.55 30.4,51C30.4,50.45 29.95,50 29.4,50C28.85,50 28.4,50.45 28.4,51Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M20.65,51.02C20.65,50.61 20.99,50.27 21.4,50.27H25.4C25.82,50.27 26.15,50.61 26.15,51.02C26.15,51.44 25.82,51.77 25.4,51.77H21.4C20.99,51.77 20.65,51.44 20.65,51.02Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M32.65,51.02C32.65,50.61 32.99,50.27 33.4,50.27H37.4C37.82,50.27 38.15,50.61 38.15,51.02C38.15,51.44 37.82,51.77 37.4,51.77H33.4C32.99,51.77 32.65,51.44 32.65,51.02Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M61.4,38.5C66.65,38.5 70.9,34.25 70.9,29C70.9,23.75 66.65,19.5 61.4,19.5C56.15,19.5 51.9,23.75 51.9,29C51.9,34.25 56.15,38.5 61.4,38.5ZM61.4,40C67.48,40 72.4,35.08 72.4,29C72.4,22.92 67.48,18 61.4,18C55.33,18 50.4,22.92 50.4,29C50.4,35.08 55.33,40 61.4,40Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M65.95,25.99C66.23,26.3 66.21,26.77 65.91,27.05L59.93,32.52L56.9,29.74C56.59,29.46 56.57,28.99 56.85,28.68C57.13,28.37 57.6,28.35 57.91,28.63L59.93,30.48L64.9,25.95C65.2,25.67 65.68,25.69 65.95,25.99Z" />
<path
android:fillColor="#334155"
android:pathData="M176.4,56C176.4,51.58 172.82,48 168.4,48H142.4C137.98,48 134.4,51.58 134.4,56V118C134.4,122.42 137.98,126 142.4,126H168.4C172.82,126 176.4,122.42 176.4,118V56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M142.4,49.5H168.4C171.99,49.5 174.9,52.41 174.9,56V118C174.9,121.59 171.99,124.5 168.4,124.5H142.4C138.81,124.5 135.9,121.59 135.9,118V56C135.9,52.41 138.81,49.5 142.4,49.5ZM168.4,48C172.82,48 176.4,51.58 176.4,56V118C176.4,122.42 172.82,126 168.4,126H142.4C137.98,126 134.4,122.42 134.4,118V56C134.4,51.58 137.98,48 142.4,48H168.4Z" />
<path
android:fillColor="#0B1120"
android:pathData="M176.4,62.25H134.4V116.25H176.4V62.25Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M135.9,63.75H174.9V114.75H135.9V63.75ZM176.4,62.25V116.25H134.4V62.25H176.4Z" />
<path
android:fillColor="#64748B"
android:pathData="M154.4,56C154.4,56.55 154.85,57 155.4,57C155.95,57 156.4,56.55 156.4,56C156.4,55.45 155.95,55 155.4,55C154.85,55 154.4,55.45 154.4,56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M146.65,56.02C146.65,55.61 146.99,55.27 147.4,55.27H151.4C151.82,55.27 152.15,55.61 152.15,56.02C152.15,56.44 151.82,56.77 151.4,56.77H147.4C146.99,56.77 146.65,56.44 146.65,56.02Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M158.65,56.02C158.65,55.61 158.99,55.27 159.4,55.27H163.4C163.82,55.27 164.15,55.61 164.15,56.02C164.15,56.44 163.82,56.77 163.4,56.77H159.4C158.99,56.77 158.65,56.44 158.65,56.02Z" />
<path
android:fillColor="#EF4444"
android:fillType="evenOdd"
android:pathData="M161.87,25.47C162.16,25.18 162.64,25.18 162.93,25.47L165.4,27.94L167.87,25.47C168.16,25.18 168.64,25.18 168.93,25.47C169.23,25.76 169.23,26.24 168.93,26.53L166.46,29L168.93,31.47C169.23,31.76 169.23,32.24 168.93,32.53C168.64,32.82 168.16,32.82 167.87,32.53L165.4,30.06L162.93,32.53C162.64,32.82 162.16,32.82 161.87,32.53C161.58,32.24 161.58,31.76 161.87,31.47L164.34,29L161.87,26.53C161.58,26.24 161.58,25.76 161.87,25.47Z" />
<path
android:fillColor="#EF4444"
android:fillType="evenOdd"
android:pathData="M165.4,38.5C170.65,38.5 174.9,34.25 174.9,29C174.9,23.75 170.65,19.5 165.4,19.5C160.15,19.5 155.9,23.75 155.9,29C155.9,34.25 160.15,38.5 165.4,38.5ZM165.4,40C171.48,40 176.4,35.08 176.4,29C176.4,22.92 171.48,18 165.4,18C159.33,18 154.4,22.92 154.4,29C154.4,35.08 159.33,40 165.4,40Z" />
<path
android:fillColor="#334155"
android:pathData="M125.56,78.48C126.16,76.94 127.64,75.92 129.29,75.92H145.62C147.27,75.92 148.75,76.94 149.35,78.48L151.45,83.92H123.45L125.56,78.48Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M124.86,78.21C125.57,76.38 127.33,75.17 129.29,75.17H145.62C147.58,75.17 149.34,76.38 150.05,78.21L152.55,84.67H122.36L124.86,78.21ZM129.29,76.67C127.95,76.67 126.75,77.5 126.26,78.75L124.55,83.17H150.36L148.65,78.75C148.16,77.5 146.96,76.67 145.62,76.67H129.29Z" />
<path
android:fillColor="#0B1120"
android:pathData="M113.4,91.92C113.4,87.5 116.98,83.92 121.4,83.92H153.4C157.82,83.92 161.4,87.5 161.4,91.92V111.92C161.4,116.34 157.82,119.92 153.4,119.92H121.4C116.98,119.92 113.4,116.34 113.4,111.92V91.92Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M112.65,91.92C112.65,87.09 116.57,83.17 121.4,83.17H153.4C158.23,83.17 162.15,87.09 162.15,91.92V111.92C162.15,116.75 158.23,120.67 153.4,120.67H121.4C116.57,120.67 112.65,116.75 112.65,111.92V91.92ZM121.4,84.67C117.4,84.67 114.15,87.92 114.15,91.92V111.92C114.15,115.93 117.4,119.17 121.4,119.17H153.4C157.4,119.17 160.65,115.93 160.65,111.92V91.92C160.65,87.92 157.4,84.67 153.4,84.67H121.4Z" />
<path
android:fillColor="#334155"
android:pathData="M150.4,101.92C150.4,109.1 144.58,114.92 137.4,114.92C130.22,114.92 124.4,109.1 124.4,101.92C124.4,94.74 130.22,88.92 137.4,88.92C144.58,88.92 150.4,94.74 150.4,101.92Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M137.4,113.42C143.75,113.42 148.9,108.27 148.9,101.92C148.9,95.57 143.75,90.42 137.4,90.42C131.05,90.42 125.9,95.57 125.9,101.92C125.9,108.27 131.05,113.42 137.4,113.42ZM137.4,114.92C144.58,114.92 150.4,109.1 150.4,101.92C150.4,94.74 144.58,88.92 137.4,88.92C130.22,88.92 124.4,94.74 124.4,101.92C124.4,109.1 130.22,114.92 137.4,114.92Z" />
<path
android:fillColor="#0B1120"
android:pathData="M144.4,101.92C144.4,105.79 141.27,108.92 137.4,108.92C133.54,108.92 130.4,105.79 130.4,101.92C130.4,98.05 133.54,94.92 137.4,94.92C141.27,94.92 144.4,98.05 144.4,101.92Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M137.4,107.42C140.44,107.42 142.9,104.96 142.9,101.92C142.9,98.88 140.44,96.42 137.4,96.42C134.36,96.42 131.9,98.88 131.9,101.92C131.9,104.96 134.36,107.42 137.4,107.42ZM137.4,108.92C141.27,108.92 144.4,105.79 144.4,101.92C144.4,98.05 141.27,94.92 137.4,94.92C133.54,94.92 130.4,98.05 130.4,101.92C130.4,105.79 133.54,108.92 137.4,108.92Z" />
<path
android:fillColor="#334155"
android:pathData="M280.4,56C280.4,51.58 276.82,48 272.4,48H246.4C241.98,48 238.4,51.58 238.4,56V118C238.4,122.42 241.98,126 246.4,126H272.4C276.82,126 280.4,122.42 280.4,118V56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M246.4,49.5H272.4C275.99,49.5 278.9,52.41 278.9,56V118C278.9,121.59 275.99,124.5 272.4,124.5H246.4C242.81,124.5 239.9,121.59 239.9,118V56C239.9,52.41 242.81,49.5 246.4,49.5ZM272.4,48C276.82,48 280.4,51.58 280.4,56V118C280.4,122.42 276.82,126 272.4,126H246.4C241.98,126 238.4,122.42 238.4,118V56C238.4,51.58 241.98,48 246.4,48H272.4Z" />
<path
android:fillColor="#0B1120"
android:pathData="M280.4,62.25H238.4V116.25H280.4V62.25Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M239.9,63.75H278.9V114.75H239.9V63.75ZM280.4,62.25V116.25H238.4V62.25H280.4Z" />
<path
android:fillColor="#64748B"
android:pathData="M258.4,56C258.4,56.55 258.85,57 259.4,57C259.95,57 260.4,56.55 260.4,56C260.4,55.45 259.95,55 259.4,55C258.85,55 258.4,55.45 258.4,56Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M250.65,56.02C250.65,55.61 250.99,55.27 251.4,55.27H255.4C255.82,55.27 256.15,55.61 256.15,56.02C256.15,56.44 255.82,56.77 255.4,56.77H251.4C250.99,56.77 250.65,56.44 250.65,56.02Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M262.65,56.02C262.65,55.61 262.99,55.27 263.4,55.27H267.4C267.82,55.27 268.15,55.61 268.15,56.02C268.15,56.44 267.82,56.77 267.4,56.77H263.4C262.99,56.77 262.65,56.44 262.65,56.02Z" />
<path
android:fillColor="#EF4444"
android:fillType="evenOdd"
android:pathData="M269.4,38.5C274.65,38.5 278.9,34.25 278.9,29C278.9,23.75 274.65,19.5 269.4,19.5C264.15,19.5 259.9,23.75 259.9,29C259.9,34.25 264.15,38.5 269.4,38.5ZM269.4,40C275.48,40 280.4,35.08 280.4,29C280.4,22.92 275.48,18 269.4,18C263.33,18 258.4,22.92 258.4,29C258.4,35.08 263.33,40 269.4,40Z" />
<path
android:fillColor="#EF4444"
android:fillType="evenOdd"
android:pathData="M265.87,25.47C266.16,25.18 266.64,25.18 266.93,25.47L269.4,27.94L271.87,25.47C272.16,25.18 272.64,25.18 272.93,25.47C273.23,25.76 273.23,26.24 272.93,26.53L270.46,29L272.93,31.47C273.23,31.76 273.23,32.24 272.93,32.53C272.64,32.82 272.16,32.82 271.87,32.53L269.4,30.06L266.93,32.53C266.64,32.82 266.16,32.82 265.87,32.53C265.58,32.24 265.58,31.76 265.87,31.47L268.34,29L265.87,26.53C265.58,26.24 265.58,25.76 265.87,25.47Z" />
<path
android:fillColor="#0B1120"
android:pathData="M259.32,85.29C263.74,85.29 267.32,88.88 267.32,93.29L267.32,113.29C267.32,117.71 263.74,121.29 259.32,121.29L225.32,121.29C220.9,121.29 217.32,117.71 217.32,113.29L217.32,93.29C217.32,88.88 220.9,85.29 225.32,85.29L259.32,85.29Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M259.32,84.54C264.15,84.54 268.07,88.46 268.07,93.29L268.07,113.29C268.07,118.13 264.15,122.04 259.32,122.04L225.32,122.04C220.49,122.04 216.57,118.13 216.57,113.29L216.57,93.29C216.57,88.46 220.49,84.54 225.32,84.54L259.32,84.54ZM266.57,93.29C266.57,89.29 263.32,86.04 259.32,86.04L225.32,86.04C221.32,86.04 218.07,89.29 218.07,93.29L218.07,113.29C218.07,117.3 221.32,120.54 225.32,120.54L259.32,120.54C263.32,120.54 266.57,117.3 266.57,113.29L266.57,93.29Z" />
<path
android:fillColor="#334155"
android:pathData="M264.15,91.58C265.47,90.63 267.32,91.57 267.32,93.21L267.32,113.29C267.32,117.71 263.74,121.29 259.32,121.29L225.32,121.29C220.9,121.29 217.32,117.71 217.32,113.29L217.32,93.21C217.32,91.57 219.17,90.63 220.49,91.58L242.32,107.35L264.15,91.58Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M235.04,103.29L217.88,90.9L218.76,89.69L242.32,106.7L265.88,89.69L266.76,90.9L249.6,103.29L266.76,115.68L265.88,116.9L248.32,104.22L242.32,108.55L236.32,104.22L218.76,116.9L217.88,115.69L235.04,103.29Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M259.32,84.54C264.15,84.54 268.07,88.46 268.07,93.29L268.07,113.29C268.07,118.13 264.15,122.04 259.32,122.04L225.32,122.04C220.49,122.04 216.57,118.13 216.57,113.29L216.57,93.29C216.57,88.46 220.49,84.54 225.32,84.54L259.32,84.54ZM266.57,93.29C266.57,89.29 263.32,86.04 259.32,86.04L225.32,86.04C221.32,86.04 218.07,89.29 218.07,93.29L218.07,113.29C218.07,117.3 221.32,120.54 225.32,120.54L259.32,120.54C263.32,120.54 266.57,117.3 266.57,113.29L266.57,93.29Z" />
</vector>

View File

@@ -0,0 +1,103 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="193">
<path
android:fillColor="#1E293B"
android:pathData="M112.4,21.88C112.4,17.46 108.82,13.88 104.4,13.88H88.4C83.98,13.88 80.4,17.46 80.4,21.88V37.88C80.4,42.3 83.98,45.88 88.4,45.88H104.4C108.82,45.88 112.4,42.3 112.4,37.88V21.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M88.4,15.38H104.4C107.99,15.38 110.9,18.29 110.9,21.88V37.88C110.9,41.47 107.99,44.38 104.4,44.38H88.4C84.81,44.38 81.9,41.47 81.9,37.88V21.88C81.9,18.29 84.81,15.38 88.4,15.38ZM104.4,13.88C108.82,13.88 112.4,17.46 112.4,21.88V37.88C112.4,42.3 108.82,45.88 104.4,45.88H88.4C83.98,45.88 80.4,42.3 80.4,37.88V21.88C80.4,17.46 83.98,13.88 88.4,13.88H104.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M60.4,127.88C60.4,123.46 56.82,119.88 52.4,119.88H36.4C31.98,119.88 28.4,123.46 28.4,127.88V143.88C28.4,148.3 31.98,151.88 36.4,151.88H52.4C56.82,151.88 60.4,148.3 60.4,143.88V127.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M36.4,121.38H52.4C55.99,121.38 58.9,124.29 58.9,127.88V143.88C58.9,147.47 55.99,150.38 52.4,150.38H36.4C32.81,150.38 29.9,147.47 29.9,143.88V127.88C29.9,124.29 32.81,121.38 36.4,121.38ZM52.4,119.88C56.82,119.88 60.4,123.46 60.4,127.88V143.88C60.4,148.3 56.82,151.88 52.4,151.88H36.4C31.98,151.88 28.4,148.3 28.4,143.88V127.88C28.4,123.46 31.98,119.88 36.4,119.88H52.4Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M43.65,116.88L43.65,100.88L45.15,100.88L45.15,116.88L43.65,116.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M95.65,66.88L95.65,48.88L97.15,48.88L97.15,66.88L95.65,66.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M95.65,155.88L95.65,126.88L97.15,126.88L97.15,155.88L95.65,155.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M150.15,67.88V92.88H148.65V67.88H150.15Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M149.17,97.33H126.4V95.83H149.17C153.58,95.83 157.15,99.41 157.15,103.81L157.15,122.58L155.65,122.58L155.65,103.81C155.65,100.24 152.75,97.33 149.17,97.33Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M43.63,96.13L66.4,96.13L66.4,97.63L43.63,97.63C39.22,97.63 35.65,94.06 35.65,89.65L35.65,70.88L37.15,70.88L37.15,89.65C37.15,93.23 40.05,96.13 43.63,96.13Z" />
<path
android:fillColor="#1E293B"
android:pathData="M157.4,52.88C157.4,50.67 155.61,48.88 153.4,48.88H145.4C143.19,48.88 141.4,50.67 141.4,52.88V60.88C141.4,63.09 143.19,64.88 145.4,64.88H153.4C155.61,64.88 157.4,63.09 157.4,60.88V52.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M145.4,50.38H153.4C154.78,50.38 155.9,51.5 155.9,52.88V60.88C155.9,62.26 154.78,63.38 153.4,63.38H145.4C144.02,63.38 142.9,62.26 142.9,60.88V52.88C142.9,51.5 144.02,50.38 145.4,50.38ZM153.4,48.88C155.61,48.88 157.4,50.67 157.4,52.88V60.88C157.4,63.09 155.61,64.88 153.4,64.88H145.4C143.19,64.88 141.4,63.09 141.4,60.88V52.88C141.4,50.67 143.19,48.88 145.4,48.88H153.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M104.4,162.88C104.4,160.67 102.61,158.88 100.4,158.88H92.4C90.19,158.88 88.4,160.67 88.4,162.88V170.88C88.4,173.09 90.19,174.88 92.4,174.88H100.4C102.61,174.88 104.4,173.09 104.4,170.88V162.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M92.4,160.38H100.4C101.78,160.38 102.9,161.5 102.9,162.88V170.88C102.9,172.26 101.78,173.38 100.4,173.38H92.4C91.02,173.38 89.9,172.26 89.9,170.88V162.88C89.9,161.5 91.02,160.38 92.4,160.38ZM100.4,158.88C102.61,158.88 104.4,160.67 104.4,162.88V170.88C104.4,173.09 102.61,174.88 100.4,174.88H92.4C90.19,174.88 88.4,173.09 88.4,170.88V162.88C88.4,160.67 90.19,158.88 92.4,158.88H100.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M123.52,81.88C123.52,75.26 118.15,69.88 111.52,69.88H81.52C74.9,69.88 69.52,75.26 69.52,81.88V111.88C69.52,118.51 74.9,123.88 81.52,123.88H111.52C118.15,123.88 123.52,118.51 123.52,111.88V81.88Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M81.52,71.38H111.52C117.32,71.38 122.02,76.08 122.02,81.88V111.88C122.02,117.68 117.32,122.38 111.52,122.38H81.52C75.73,122.38 71.02,117.68 71.02,111.88V81.88C71.02,76.08 75.73,71.38 81.52,71.38ZM111.52,69.88C118.15,69.88 123.52,75.26 123.52,81.88V111.88C123.52,118.51 118.15,123.88 111.52,123.88H81.52C74.9,123.88 69.52,118.51 69.52,111.88V81.88C69.52,75.26 74.9,69.88 81.52,69.88H111.52Z" />
<path
android:fillColor="#82C91E"
android:pathData="M89.45,94.44V106.65C89.45,107.64 90.26,108.46 91.26,108.46H92.11C93.1,108.46 93.91,107.64 93.91,106.65V94.44H89.45Z" />
<path
android:fillColor="#82C91E"
android:pathData="M93.9,88.56V86.26C93.9,85.27 93.1,84.46 92.11,84.46H91.26C90.27,84.46 89.45,85.27 89.45,86.26V88.56H93.9Z" />
<path
android:fillColor="#82C91E"
android:pathData="M103.81,98.47V86.26C103.81,85.27 103,84.46 102.01,84.46H101.17C100.18,84.46 99.36,85.27 99.36,86.26V98.47H103.81Z" />
<path
android:fillColor="#82C91E"
android:pathData="M99.36,104.35V106.65C99.36,107.64 100.18,108.46 101.17,108.46H102.01C103,108.46 103.82,107.64 103.82,106.65V104.35H99.36Z" />
<path
android:fillColor="#A3E635"
android:pathData="M88.74,99.18H86.44C85.45,99.18 84.63,99.99 84.63,100.99V101.84C84.63,102.83 85.44,103.64 86.44,103.64H88.74V99.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M106.82,99.18H94.62V103.64H106.82C107.81,103.64 108.63,102.83 108.63,101.84V100.99C108.63,99.99 107.81,99.18 106.82,99.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M98.64,89.28H86.44C85.45,89.28 84.63,90.08 84.63,91.08V91.93C84.63,92.92 85.44,93.74 86.44,93.74H98.64V89.28Z" />
<path
android:fillColor="#A3E635"
android:pathData="M106.82,89.28H104.53V93.74H106.82C107.81,93.74 108.63,92.93 108.63,91.93V91.08C108.63,90.08 107.81,89.28 106.82,89.28Z" />
<path
android:fillColor="#1E293B"
android:pathData="M172.4,132.88C172.4,128.46 168.82,124.88 164.4,124.88H148.4C143.98,124.88 140.4,128.46 140.4,132.88V148.88C140.4,153.3 143.98,156.88 148.4,156.88H164.4C168.82,156.88 172.4,153.3 172.4,148.88V132.88Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M148.4,126.38H164.4C167.99,126.38 170.9,129.29 170.9,132.88V148.88C170.9,152.47 167.99,155.38 164.4,155.38H148.4C144.81,155.38 141.9,152.47 141.9,148.88V132.88C141.9,129.29 144.81,126.38 148.4,126.38ZM164.4,124.88C168.82,124.88 172.4,128.46 172.4,132.88V148.88C172.4,153.3 168.82,156.88 164.4,156.88H148.4C143.98,156.88 140.4,153.3 140.4,148.88V132.88C140.4,128.46 143.98,124.88 148.4,124.88H164.4Z" />
<path
android:fillColor="#1E293B"
android:pathData="M52.4,45C52.4,40.58 48.82,37 44.4,37H28.4C23.98,37 20.4,40.58 20.4,45V61C20.4,65.42 23.98,69 28.4,69H44.4C48.82,69 52.4,65.42 52.4,61V45Z" />
<path
android:fillColor="#64748B"
android:fillType="evenOdd"
android:pathData="M28.4,38.5H44.4C47.99,38.5 50.9,41.41 50.9,45V61C50.9,64.59 47.99,67.5 44.4,67.5H28.4C24.81,67.5 21.9,64.59 21.9,61V45C21.9,41.41 24.81,38.5 28.4,38.5ZM44.4,37C48.82,37 52.4,40.58 52.4,45V61C52.4,65.42 48.82,69 44.4,69H28.4C23.98,69 20.4,65.42 20.4,61V45C20.4,40.58 23.98,37 28.4,37H44.4Z" />
</vector>

View File

@@ -0,0 +1,105 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#123060"
android:pathData="M41.83,84C41.83,85.1 40.93,86 39.83,86L20.97,86C19.87,86 18.97,85.1 18.97,84L18.97,65.61L41.83,65.61L41.83,84Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M42.58,84C42.58,85.52 41.35,86.75 39.83,86.75L20.97,86.75C19.45,86.75 18.22,85.52 18.22,84L18.22,64.86L42.58,64.86L42.58,84ZM39.83,85.25C40.52,85.25 41.08,84.69 41.08,84L41.08,66.36L19.72,66.36L19.72,84C19.72,84.69 20.28,85.25 20.97,85.25L39.83,85.25Z" />
<path
android:fillColor="#1E293B"
android:pathData="M46.4,61.62C46.4,63.83 44.61,65.62 42.4,65.62L18.4,65.62C16.19,65.62 14.4,63.83 14.4,61.62L14.4,27C14.4,24.79 16.19,23 18.4,23L42.4,23C44.61,23 46.4,24.79 46.4,27L46.4,61.62Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M47.15,61.62C47.15,64.24 45.02,66.37 42.4,66.37L18.4,66.37C15.78,66.37 13.65,64.24 13.65,61.62L13.65,27C13.65,24.38 15.78,22.25 18.4,22.25L42.4,22.25C45.02,22.25 47.15,24.38 47.15,27L47.15,61.62ZM42.4,64.87C44.2,64.87 45.65,63.42 45.65,61.62L45.65,27C45.65,25.21 44.2,23.75 42.4,23.75L18.4,23.75C16.61,23.75 15.15,25.21 15.15,27L15.15,61.62C15.15,63.42 16.61,64.87 18.4,64.87L42.4,64.87Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M37.78,77.59L33.22,77.59L33.22,74.46L37.78,74.46L37.78,77.59Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M27.58,77.59L23.02,77.59L23.02,74.46L27.58,74.46L27.58,77.59Z" />
<path
android:fillColor="#1E293B"
android:fillType="evenOdd"
android:pathData="M152,121C152,118.79 153.79,117 156,117H180.4C182.61,117 184.4,118.79 184.4,121V164C184.4,166.21 182.61,168 180.4,168H152V168H149.4C147.19,168 145.4,166.21 145.4,164V152.68C145.4,152.13 145.63,151.6 146.02,151.23L146.66,150.62C147.06,150.24 147.29,149.71 147.29,149.17V147.09C147.29,146.57 147.08,146.06 146.71,145.69L145.98,144.95C145.61,144.58 145.4,144.07 145.4,143.54V141.44C145.4,140.79 145.72,140.18 146.25,139.8L152,135.73V121ZM156.96,123.66C156.96,122.55 157.86,121.66 158.96,121.66H160.26C161.36,121.66 162.26,122.55 162.26,123.66V132.07C162.26,133.18 161.36,134.07 160.26,134.07H158.96C157.86,134.07 156.96,133.18 156.96,132.07V123.66ZM167.55,121.66C166.45,121.66 165.55,122.55 165.55,123.66V132.07C165.55,133.18 166.45,134.07 167.55,134.07H168.85C169.95,134.07 170.85,133.18 170.85,132.07V123.66C170.85,122.55 169.95,121.66 168.85,121.66H167.55ZM174.15,123.66C174.15,122.55 175.04,121.66 176.15,121.66H177.44C178.54,121.66 179.44,122.55 179.44,123.66V132.07C179.44,133.18 178.54,134.07 177.44,134.07H176.15C175.04,134.07 174.15,133.18 174.15,132.07V123.66Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M151.25,121C151.25,118.38 153.38,116.25 156,116.25H180.4C183.02,116.25 185.15,118.38 185.15,121V164C185.15,166.62 183.02,168.75 180.4,168.75H151.25V168.75H149.4C146.78,168.75 144.65,166.62 144.65,164V152.68C144.65,151.92 144.96,151.2 145.51,150.68L146.15,150.07C146.4,149.84 146.54,149.51 146.54,149.17V147.09C146.54,146.76 146.41,146.45 146.17,146.21L145.45,145.48C144.94,144.96 144.65,144.27 144.65,143.54V141.44C144.65,140.54 145.08,139.71 145.81,139.19L151.25,135.34V121ZM152.75,167.25H180.4C182.2,167.25 183.65,165.79 183.65,164V121C183.65,119.21 182.2,117.75 180.4,117.75H156C154.21,117.75 152.75,119.21 152.75,121V136.12L146.68,140.42C146.35,140.65 146.15,141.03 146.15,141.44V143.54C146.15,143.87 146.28,144.19 146.51,144.42L147.24,145.16C147.75,145.67 148.04,146.37 148.04,147.09V149.17C148.04,149.92 147.73,150.64 147.18,151.16L146.54,151.77C146.29,152.01 146.15,152.33 146.15,152.68V164C146.15,165.79 147.61,167.25 149.4,167.25H152.75V167.25ZM156.21,123.66C156.21,122.14 157.45,120.91 158.96,120.91H160.26C161.78,120.91 163.01,122.14 163.01,123.66V132.07C163.01,133.59 161.78,134.82 160.26,134.82H158.96C157.45,134.82 156.21,133.59 156.21,132.07V123.66ZM158.96,122.41C158.27,122.41 157.71,122.97 157.71,123.66V132.07C157.71,132.76 158.27,133.32 158.96,133.32H160.26C160.95,133.32 161.51,132.76 161.51,132.07V123.66C161.51,122.97 160.95,122.41 160.26,122.41H158.96ZM167.55,122.41C166.86,122.41 166.3,122.97 166.3,123.66V132.07C166.3,132.76 166.86,133.32 167.55,133.32H168.85C169.54,133.32 170.1,132.76 170.1,132.07V123.66C170.1,122.97 169.54,122.41 168.85,122.41H167.55ZM164.8,123.66C164.8,122.14 166.04,120.91 167.55,120.91H168.85C170.37,120.91 171.6,122.14 171.6,123.66V132.07C171.6,133.59 170.37,134.82 168.85,134.82H167.55C166.04,134.82 164.8,133.59 164.8,132.07V123.66ZM173.4,123.66C173.4,122.14 174.63,120.91 176.15,120.91H177.44C178.96,120.91 180.19,122.14 180.19,123.66V132.07C180.19,133.59 178.96,134.82 177.44,134.82H176.15C174.63,134.82 173.4,133.59 173.4,132.07V123.66ZM176.15,122.41C175.46,122.41 174.9,122.97 174.9,123.66V132.07C174.9,132.76 175.46,133.32 176.15,133.32H177.44C178.13,133.32 178.69,132.76 178.69,132.07V123.66C178.69,122.97 178.13,122.41 177.44,122.41H176.15Z" />
<path
android:fillColor="#1457C5"
android:pathData="M30.4,111C32.61,111 34.4,112.79 34.4,115C34.4,117.21 32.61,119 30.4,119C28.19,119 26.4,117.21 26.4,115C26.4,112.79 28.19,111 30.4,111Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M30.4,95C32.61,95 34.4,96.79 34.4,99C34.4,101.21 32.61,103 30.4,103C28.19,103 26.4,101.21 26.4,99C26.4,96.79 28.19,95 30.4,95Z" />
<path
android:fillColor="#184080"
android:pathData="M30.4,127C32.61,127 34.4,128.79 34.4,131C34.4,133.21 32.61,135 30.4,135C28.19,135 26.4,133.21 26.4,131C26.4,128.79 28.19,127 30.4,127Z" />
<path
android:fillColor="#1457C5"
android:pathData="M168.4,92C166.19,92 164.4,90.21 164.4,88C164.4,85.79 166.19,84 168.4,84C170.61,84 172.4,85.79 172.4,88C172.4,90.21 170.61,92 168.4,92Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M168.4,108C166.19,108 164.4,106.21 164.4,104C164.4,101.79 166.19,100 168.4,100C170.61,100 172.4,101.79 172.4,104C172.4,106.21 170.61,108 168.4,108Z" />
<path
android:fillColor="#184080"
android:pathData="M168.4,76C166.19,76 164.4,74.21 164.4,72C164.4,69.79 166.19,68 168.4,68C170.61,68 172.4,69.79 172.4,72C172.4,74.21 170.61,76 168.4,76Z" />
<path
android:fillColor="#1E293B"
android:pathData="M57.4,35.03C57.4,28.4 62.77,23.03 69.4,23.03H123.4C130.03,23.03 135.4,28.4 135.4,35.03V156.03C135.4,162.66 130.03,168.03 123.4,168.03H69.4C62.77,168.03 57.4,162.66 57.4,156.03V35.03Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M123.4,24.53H69.4C63.6,24.53 58.9,29.23 58.9,35.03V156.03C58.9,161.83 63.6,166.53 69.4,166.53H123.4C129.2,166.53 133.9,161.83 133.9,156.03V35.03C133.9,29.23 129.2,24.53 123.4,24.53ZM69.4,23.03C62.77,23.03 57.4,28.4 57.4,35.03V156.03C57.4,162.66 62.77,168.03 69.4,168.03H123.4C130.03,168.03 135.4,162.66 135.4,156.03V35.03C135.4,28.4 130.03,23.03 123.4,23.03H69.4Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M96.4,35.41C95.57,35.41 94.9,34.74 94.9,33.91C94.9,33.08 95.57,32.41 96.4,32.41C97.23,32.41 97.9,33.08 97.9,33.91C97.9,34.74 97.23,35.41 96.4,35.41ZM96.4,36.91C94.74,36.91 93.4,35.57 93.4,33.91C93.4,32.25 94.74,30.91 96.4,30.91C98.06,30.91 99.4,32.25 99.4,33.91C99.4,35.57 98.06,36.91 96.4,36.91Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M77.65,33.59C77.65,33.18 77.99,32.84 78.4,32.84H88.4C88.82,32.84 89.15,33.18 89.15,33.59C89.15,34.01 88.82,34.34 88.4,34.34H78.4C77.99,34.34 77.65,34.01 77.65,33.59Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M103.65,33.59C103.65,33.18 103.99,32.84 104.4,32.84L114.4,32.84C114.82,32.84 115.15,33.18 115.15,33.59C115.15,34.01 114.82,34.34 114.4,34.34L104.4,34.34C103.99,34.34 103.65,34.01 103.65,33.59Z" />
<path
android:fillColor="#0B1120"
android:pathData="M128.4,50.63C128.4,46.22 124.82,42.63 120.4,42.63H72.4C67.98,42.63 64.4,46.22 64.4,50.63V146.63C64.4,151.05 67.98,154.63 72.4,154.63H120.4C124.82,154.63 128.4,151.05 128.4,146.63V50.63Z" />
<path
android:fillColor="#A3E635"
android:fillType="evenOdd"
android:pathData="M72.4,44.13H120.4C123.99,44.13 126.9,47.04 126.9,50.63V146.63C126.9,150.22 123.99,153.13 120.4,153.13H72.4C68.81,153.13 65.9,150.22 65.9,146.63V50.63C65.9,47.04 68.81,44.13 72.4,44.13ZM120.4,42.63C124.82,42.63 128.4,46.22 128.4,50.63V146.63C128.4,151.05 124.82,154.63 120.4,154.63H72.4C67.98,154.63 64.4,151.05 64.4,146.63V50.63C64.4,46.22 67.98,42.63 72.4,42.63H120.4Z" />
<path
android:fillColor="#184080"
android:pathData="M71.4,104C71.4,95.16 78.56,88 87.4,88H105.4C114.24,88 121.4,95.16 121.4,104V148H87.4C78.56,148 71.4,140.84 71.4,132V104Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M105.4,89.5H87.4C79.39,89.5 72.9,95.99 72.9,104V132C72.9,140.01 79.39,146.5 87.4,146.5H119.9V104C119.9,95.99 113.41,89.5 105.4,89.5ZM87.4,88C78.56,88 71.4,95.16 71.4,104V132C71.4,140.84 78.56,148 87.4,148H121.4V104C121.4,95.16 114.24,88 105.4,88H87.4Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M83.96,109.91C83.96,109.5 84.29,109.16 84.71,109.16H108.03C108.44,109.16 108.78,109.5 108.78,109.91C108.78,110.32 108.44,110.66 108.03,110.66H84.71C84.29,110.66 83.96,110.32 83.96,109.91Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M83.96,118C83.96,117.59 84.29,117.25 84.71,117.25H108.03C108.44,117.25 108.78,117.59 108.78,118C108.78,118.42 108.44,118.75 108.03,118.75H84.71C84.29,118.75 83.96,118.42 83.96,118Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M83.96,134.18C83.96,133.76 84.29,133.43 84.71,133.43H96.37C96.78,133.43 97.12,133.76 97.12,134.18C97.12,134.59 96.78,134.93 96.37,134.93H84.71C84.29,134.93 83.96,134.59 83.96,134.18Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M83.96,101.82C83.96,101.41 84.29,101.07 84.71,101.07H108.03C108.44,101.07 108.78,101.41 108.78,101.82C108.78,102.24 108.44,102.57 108.03,102.57H84.71C84.29,102.57 83.96,102.24 83.96,101.82Z" />
<path
android:fillColor="#52ADF9"
android:fillType="evenOdd"
android:pathData="M83.96,126.09C83.96,125.68 84.29,125.34 84.71,125.34H108.1C108.51,125.34 108.85,125.68 108.85,126.09C108.85,126.51 108.51,126.84 108.1,126.84H84.71C84.29,126.84 83.96,126.51 83.96,126.09Z" />
</vector>

View File

@@ -0,0 +1,109 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#1E293B"
android:pathData="M265.47,33.75L239.47,33.75A7.25,7.25 0,0 0,232.22 41L232.22,103A7.25,7.25 0,0 0,239.47 110.25L265.47,110.25A7.25,7.25 0,0 0,272.72 103L272.72,41A7.25,7.25 0,0 0,265.47 33.75z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
<path
android:fillColor="#0B1120"
android:pathData="M272.72,48H232.22V100.5H272.72V48Z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
<path
android:fillColor="#365314"
android:pathData="M240.07,65.1L264.86,65.1A4,4 0,0 1,268.86 69.1L268.86,79.39A4,4 0,0 1,264.86 83.39L240.07,83.39A4,4 0,0 1,236.07 79.39L236.07,69.1A4,4 0,0 1,240.07 65.1z" />
<path
android:fillColor="#00000000"
android:pathData="M242.58,71.55H262.46"
android:strokeWidth="1.5"
android:strokeColor="#A3E635"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M242.58,77.65H253.26"
android:strokeWidth="1.5"
android:strokeColor="#A3E635"
android:strokeLineCap="round" />
<path
android:fillColor="#52ADF9"
android:pathData="M253.47,41a1,1 90,1 1,-2 0a1,1 90,1 1,2 0z" />
<path
android:fillColor="#52ADF9"
android:pathData="M244.47,40.27C244.05,40.27 243.72,40.61 243.72,41.02C243.72,41.44 244.05,41.77 244.47,41.77V40.27ZM248.47,41.77C248.88,41.77 249.22,41.44 249.22,41.02C249.22,40.61 248.88,40.27 248.47,40.27V41.77ZM244.47,41.77H248.47V40.27H244.47V41.77Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M256.47,40.27C256.05,40.27 255.72,40.61 255.72,41.02C255.72,41.44 256.05,41.77 256.47,41.77V40.27ZM260.47,41.77C260.88,41.77 261.22,41.44 261.22,41.02C261.22,40.61 260.88,40.27 260.47,40.27V41.77ZM256.47,41.77H260.47V40.27H256.47V41.77Z" />
<path
android:fillColor="#4D7C0F"
android:pathData="M89.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#82C91E"
android:pathData="M105.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#365314"
android:pathData="M73.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#4D7C0F"
android:pathData="M198.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#82C91E"
android:pathData="M214.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#365314"
android:pathData="M182.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#123060"
android:pathData="M29.04,43C29.04,41.9 29.93,41 31.04,41H49.9C51,41 51.9,41.9 51.9,43V61.39H29.04L29.04,43Z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
<path
android:fillColor="#1E293B"
android:pathData="M24.47,65.38C24.47,63.17 26.26,61.38 28.47,61.38H52.47C54.68,61.38 56.47,63.17 56.47,65.38L56.47,100C56.47,102.21 54.68,104 52.47,104H28.47C26.26,104 24.47,102.21 24.47,100L24.47,65.38Z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
<path
android:fillColor="#52ADF9"
android:pathData="M33.09,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#52ADF9"
android:pathData="M43.29,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#365314"
android:fillType="evenOdd"
android:pathData="M151.87,42L143.97,42H126.47C124.26,42 122.47,43.79 122.47,46L122.47,98C122.47,100.21 124.26,102 126.47,102L161.47,102C163.68,102 165.47,100.21 165.47,98L165.47,55.97L151.87,42Z" />
<path
android:fillColor="#A3E635"
android:pathData="M143.97,42L143.97,41.25H143.97V42ZM151.87,42L152.4,41.48L152.18,41.25L151.87,41.25L151.87,42ZM122.47,46H123.22H122.47ZM122.47,98H121.72H122.47ZM126.47,102V101.25V102ZM161.47,102V102.75V102ZM165.47,98H164.72H165.47ZM165.47,55.97H166.22V55.66L166,55.45L165.47,55.97ZM143.97,42.75L151.87,42.75L151.87,41.25L143.97,41.25L143.97,42.75ZM126.47,42.75H143.97V41.25H126.47V42.75ZM123.22,46C123.22,44.21 124.67,42.75 126.47,42.75V41.25C123.84,41.25 121.72,43.38 121.72,46H123.22ZM123.22,98L123.22,46H121.72L121.72,98H123.22ZM126.47,101.25C124.67,101.25 123.22,99.79 123.22,98H121.72C121.72,100.62 123.84,102.75 126.47,102.75V101.25ZM161.47,101.25L126.47,101.25V102.75L161.47,102.75V101.25ZM164.72,98C164.72,99.79 163.26,101.25 161.47,101.25V102.75C164.09,102.75 166.22,100.62 166.22,98H164.72ZM164.72,55.97L164.72,98H166.22L166.22,55.97H164.72ZM166,55.45L152.4,41.48L151.33,42.52L164.93,56.49L166,55.45Z" />
<path
android:fillColor="#65A30D"
android:pathData="M165.2,55.68L156.16,55.68C153.95,55.68 152.16,53.89 152.16,51.68L152.16,42.29L165.2,55.68Z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.07,63.49H153.91"
android:strokeWidth="1.5"
android:strokeColor="#A3E635"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.07,69.04H144.73"
android:strokeWidth="1.5"
android:strokeColor="#A3E635"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M135.64,80.73V87.41C135.64,89.49 137.32,91.18 139.4,91.18C141.48,91.18 143.16,89.49 143.16,87.41V80.73C143.16,78.65 141.48,76.97 139.4,76.97C137.32,76.97 135.64,78.65 135.64,80.73Z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
<path
android:fillColor="#65A30D"
android:pathData="M134.32,84.52L144.49,84.52A1.25,1.25 0,0 1,145.74 85.77L145.74,92.72A1.25,1.25 0,0 1,144.49 93.97L134.32,93.97A1.25,1.25 0,0 1,133.07 92.72L133.07,85.77A1.25,1.25 0,0 1,134.32 84.52z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
</vector>

View File

@@ -0,0 +1,109 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#1E293B"
android:pathData="M48.93,33.75L22.93,33.75A7.25,7.25 0,0 0,15.68 41L15.68,103A7.25,7.25 0,0 0,22.93 110.25L48.93,110.25A7.25,7.25 0,0 0,56.18 103L56.18,41A7.25,7.25 0,0 0,48.93 33.75z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
<path
android:fillColor="#0B1120"
android:pathData="M56.18,48H15.68V100.5H56.18V48Z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
<path
android:fillColor="#184080"
android:pathData="M23.54,65.1L48.33,65.1A4,4 0,0 1,52.33 69.1L52.33,79.39A4,4 0,0 1,48.33 83.39L23.54,83.39A4,4 0,0 1,19.54 79.39L19.54,69.1A4,4 0,0 1,23.54 65.1z" />
<path
android:fillColor="#00000000"
android:pathData="M26.05,71.55H45.92"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M26.05,77.65H36.73"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9"
android:strokeLineCap="round" />
<path
android:fillColor="#A3E635"
android:pathData="M36.93,41a1,1 90,1 1,-2 0a1,1 90,1 1,2 0z" />
<path
android:fillColor="#A3E635"
android:pathData="M27.93,40.27C27.52,40.27 27.18,40.61 27.18,41.02C27.18,41.44 27.52,41.77 27.93,41.77V40.27ZM31.93,41.77C32.35,41.77 32.68,41.44 32.68,41.02C32.68,40.61 32.35,40.27 31.93,40.27V41.77ZM27.93,41.77H31.93V40.27H27.93V41.77Z" />
<path
android:fillColor="#A3E635"
android:pathData="M39.93,40.27C39.52,40.27 39.18,40.61 39.18,41.02C39.18,41.44 39.52,41.77 39.93,41.77V40.27ZM43.93,41.77C44.35,41.77 44.68,41.44 44.68,41.02C44.68,40.61 44.35,40.27 43.93,40.27V41.77ZM39.93,41.77H43.93V40.27H39.93V41.77Z" />
<path
android:fillColor="#1457C5"
android:pathData="M89.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#2B8EF1"
android:pathData="M105.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#184080"
android:pathData="M73.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#1457C5"
android:pathData="M198.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#2B8EF1"
android:pathData="M214.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#184080"
android:pathData="M182.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#123060"
android:pathData="M236.51,43C236.51,41.9 237.4,41 238.51,41H257.36C258.47,41 259.36,41.9 259.36,43V61.39H236.51V43Z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
<path
android:fillColor="#1E293B"
android:pathData="M231.93,65.38C231.93,63.17 233.73,61.38 235.93,61.38H259.93C262.14,61.38 263.93,63.17 263.93,65.38V100C263.93,102.21 262.14,104 259.93,104H235.93C233.73,104 231.93,102.21 231.93,100V65.38Z"
android:strokeWidth="1.5"
android:strokeColor="#A3E635" />
<path
android:fillColor="#A3E635"
android:pathData="M240.56,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#A3E635"
android:pathData="M250.76,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#184080"
android:fillType="evenOdd"
android:pathData="M152.33,42L144.43,42H126.93C124.72,42 122.93,43.79 122.93,46L122.93,98C122.93,100.21 124.72,102 126.93,102L161.93,102C164.14,102 165.93,100.21 165.93,98L165.93,55.97L152.33,42Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M144.43,42L144.43,41.25H144.43V42ZM152.33,42L152.87,41.48L152.65,41.25L152.33,41.25L152.33,42ZM122.93,46H123.68H122.93ZM122.93,98H122.18H122.93ZM126.93,102V101.25V102ZM161.93,102V102.75V102ZM165.93,98H165.18H165.93ZM165.93,55.97H166.68V55.66L166.47,55.45L165.93,55.97ZM144.43,42.75L152.33,42.75L152.33,41.25L144.43,41.25L144.43,42.75ZM126.93,42.75H144.43V41.25H126.93V42.75ZM123.68,46C123.68,44.21 125.14,42.75 126.93,42.75V41.25C124.31,41.25 122.18,43.38 122.18,46H123.68ZM123.68,98L123.68,46H122.18L122.18,98H123.68ZM126.93,101.25C125.14,101.25 123.68,99.79 123.68,98H122.18C122.18,100.62 124.31,102.75 126.93,102.75V101.25ZM161.93,101.25L126.93,101.25V102.75L161.93,102.75V101.25ZM165.18,98C165.18,99.79 163.73,101.25 161.93,101.25V102.75C164.56,102.75 166.68,100.62 166.68,98H165.18ZM165.18,55.97L165.18,98H166.68L166.68,55.97H165.18ZM166.47,55.45L152.87,41.48L151.79,42.52L165.4,56.49L166.47,55.45Z" />
<path
android:fillColor="#196FDE"
android:pathData="M165.66,55.68L156.63,55.68C154.42,55.68 152.63,53.89 152.63,51.68L152.63,42.29L165.66,55.68Z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.54,63.49H154.38"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.54,69.04H145.2"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M143.63,80.73C143.63,78.65 141.95,76.97 139.87,76.97C137.79,76.97 136.1,78.65 136.1,80.73V87.41C136.1,89.49 137.79,91.18 139.87,91.18C141.95,91.18 143.63,89.49 143.63,87.41V80.73Z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
<path
android:fillColor="#196FDE"
android:pathData="M134.78,84.52L144.95,84.52A1.25,1.25 0,0 1,146.2 85.77L146.2,92.72A1.25,1.25 0,0 1,144.95 93.97L134.78,93.97A1.25,1.25 0,0 1,133.53 92.72L133.53,85.77A1.25,1.25 0,0 1,134.78 84.52z"
android:strokeWidth="1.5"
android:strokeColor="#52ADF9" />
</vector>

View File

@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="400dp"
android:height="100dp"
android:viewportHeight="49.5"
android:viewportWidth="194.8">
<path
android:fillColor="#ffffff"
android:pathData="M30.1 16.5l-9 0 0 -5c0 -2.4 -2 -4.4 -4.4 -4.4L4.4 7.1C2 7.1 0 9.1 0 11.5l0 24.2c0 2.4 2 4.4 4.4 4.4l9 0 0 5c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.2c0.1 -2.4 -1.9 -4.4 -4.3 -4.4zm-27.4 16.1l0 -20.9 15.8 0 0 20.9 -15.8 0zm10.7 4.6l-5.8 0 0 -1.5 5.8 0 0 1.5zm13.5 9.4l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -1.9 0.5 0c2.4 0 4.4 -2 4.4 -4.4l0 -14.6 10.8 0 0 20.9z"/>
<path
android:fillColor="#ffffff"
android:pathData="M101.2 16.5l-8.3 0 0 -4.4c0 -1.4 -1.2 -2.6 -2.6 -2.6l-3.9 0 -2.1 -2.5 -6.9 0 -2.2 2.5 -3.8 0c-1.4 0 -2.6 1.2 -2.6 2.6l0 13.3c0 1.4 1.2 2.6 2.6 2.6l13.1 0 0 17.2c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.3c0.2 -2.4 -1.8 -4.4 -4.3 -4.4zm-26.4 2.4c0 -3.3 2.7 -6 6 -6 3.3 0 6 2.7 6 6 0 3.3 -2.7 6 -6 6 -3.3 0 -6 -2.7 -6 -6zm23.2 27.7l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -14.1 3.1 0c1.4 0 2.6 -1.2 2.6 -2.6l0 -4.2 10.1 0 0 20.9z"/>
<path
android:fillColor="#ffffff"
android:pathData="M84.600003 18.9a3.8 3.8 0 0 1 -3.8 3.8 3.8 3.8 0 0 1 -3.8 -3.8 3.8 3.8 0 0 1 3.8 -3.8 3.8 3.8 0 0 1 3.8 3.8z"/>
<path
android:fillColor="#ffffff"
android:pathData="M175.3 16.5l-9.8 0 0 -5.7c0 -1.4 -1.2 -2.6 -2.6 -2.6l-19.3 0c-1.4 0 -2.6 1.2 -2.6 2.6l0 14.4c0 1.4 1.2 2.6 2.6 2.6l15.1 0 0 17.3c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.2c0.1 -2.4 -1.9 -4.4 -4.4 -4.4zm-12.4 -5.9l-9.6 6 -9.6 -6 19.2 0zm-19.4 14.8l0 -12.3 9.8 6.1 9.8 -6.1 0 12.3 -19.6 0zm28.6 21.2l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -14.2 1.6 0c1.4 0 2.6 -1.2 2.6 -2.6l0 -4.1 11.6 0 0 20.9z"/>
<path
android:fillColor="#db3b21"
android:pathData="M101.4 17.8l2 2 7.4 -7.3 7.3 7.3 2.1 -2 -7.4 -7.4 7.4 -7.3 -2.1 -2.1 -7.3 7.4 -7.4 -7.4 -2 2.1 7.3 7.3z"/>
<path
android:fillColor="#db3b21"
android:pathData="M176 17.8l2.1 2 7.3 -7.3 7.4 7.3 2 -2 -7.3 -7.4 7.3 -7.3 -2 -2.1 -7.4 7.4 -7.3 -7.4 -2.1 2.1 7.3 7.3z"/>
<path
android:fillColor="#67a60f"
android:pathData="M35.8 18.8l0 0L52.5 2.1 50.5 0 35.6 14.8 28.5 7.7l-2.1 2.1 9.2 9.1z"/>
</vector>

View File

@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="@android:color/transparent"/>
<stroke
android:width="2dp"
android:color="@color/color_primary"/>
</shape>

View File

@@ -1,21 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="35dp"
android:viewportWidth="500"
android:viewportHeight="175">
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m459.809,167.16 l-4.327,-4.334 -7.07,-2.427c-3.888,-1.335 -8.723,-2.996 -10.744,-3.691l-3.674,-1.263 3.524,-0.173c8.242,-0.404 12.988,-4.007 14.336,-10.884 0.796,-4.061 1.129,-17.298 0.83,-33.041 -0.153,-8.084 -0.166,-15.416 -0.028,-16.295 0.138,-0.878 0.535,-2.42 0.883,-3.426 1.222,-3.532 0.34,-11.908 -1.858,-17.631 -0.348,-0.908 -1.934,-4.215 -3.524,-7.35 -4.158,-8.2 -4.505,-8.942 -4.893,-10.484 -0.459,-1.821 -0.212,-5.435 0.463,-6.766 0.666,-1.315 2.157,-2.916 3.246,-3.487 1.299,-0.68 2.616,0.122 4.686,2.855 3.422,4.516 14.001,19.441 15.732,22.193 3.746,5.956 5.956,11.165 7.972,18.788 0.655,2.475 1.885,6.997 2.735,10.05 0.849,3.053 2.714,10.158 4.144,15.79l2.6,10.24 4.65,5.193c2.557,2.856 5.798,6.464 7.2,8.017 1.403,1.553 2.55,2.975 2.55,3.161 0,0.335 -34.5,29.299 -34.899,29.299 -0.115,0 -2.156,-1.95 -4.535,-4.334zM365.944,150.772c-1.258,-0.628 -2.206,-1.379 -2.914,-2.307 -2.089,-2.736 -1.95,2.369 -1.864,-68.482l0.078,-64.039 0.661,-1.235c1.015,-1.898 1.992,-2.911 3.74,-3.879l1.6,-0.886 37.784,-0.08c42.456,-0.089 39.402,-0.248 42.116,2.192 0.875,0.787 1.757,1.959 2.184,2.904 0.713,1.577 0.716,1.638 0.806,14.204l0.09,12.62 -1.798,-0.13c-1.426,-0.103 -2.081,0.007 -3.166,0.532 -2.013,0.974 -3.94,2.899 -5.115,5.108l-1.037,1.95 -0.007,-12.825 -0.007,-12.825h-33.6,-33.6v51.3,51.3h33.599,33.599l0.076,-34.425c0.073,-32.96 0.098,-34.361 0.591,-32.925 0.283,0.825 1.806,3.997 3.383,7.05 5.493,10.626 5.405,9.86 5.396,47.203 -0.007,27.621 -0.124,29.951 -1.662,33.109 -1.071,2.199 -2.711,3.71 -5.058,4.66l-1.674,0.677 -36.168,0.08 -36.168,0.08 -1.864,-0.931zM408.344,145.734c2.871,-1.309 4.458,-3.678 4.43,-6.617 -0.039,-4.116 -3.109,-7.223 -7.136,-7.223 -2.12,0 -3.567,0.609 -5.164,2.172 -2.245,2.198 -2.754,5.439 -1.301,8.287 0.713,1.398 2.521,3.009 3.962,3.53 1.497,0.542 3.84,0.475 5.209,-0.149z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m39.434,167.16 l4.327,-4.334 7.07,-2.427c3.888,-1.335 8.723,-2.996 10.744,-3.691l3.674,-1.263 -3.524,-0.173c-8.242,-0.404 -12.988,-4.007 -14.336,-10.884 -0.796,-4.061 -1.129,-17.298 -0.83,-33.041 0.153,-8.084 0.166,-15.416 0.028,-16.295 -0.138,-0.878 -0.535,-2.42 -0.883,-3.426 -1.222,-3.532 -0.34,-11.908 1.858,-17.631 0.348,-0.908 1.934,-4.215 3.524,-7.35 4.158,-8.2 4.505,-8.942 4.893,-10.484 0.459,-1.821 0.212,-5.435 -0.463,-6.766 -0.666,-1.315 -2.157,-2.916 -3.246,-3.487 -1.299,-0.68 -2.616,0.122 -4.686,2.855 -3.422,4.516 -14.001,19.441 -15.732,22.193 -3.746,5.956 -5.956,11.165 -7.972,18.788 -0.655,2.475 -1.885,6.997 -2.735,10.05 -0.849,3.053 -2.714,10.158 -4.144,15.79L14.4,125.824 9.75,131.017c-2.557,2.856 -5.798,6.464 -7.2,8.017 -1.403,1.553 -2.55,2.975 -2.55,3.161 0,0.335 34.5,29.299 34.899,29.299 0.115,0 2.156,-1.95 4.535,-4.334zM133.299,150.772c1.258,-0.628 2.206,-1.379 2.914,-2.307 2.089,-2.736 1.95,2.369 1.864,-68.482l-0.078,-64.039 -0.661,-1.235c-1.015,-1.898 -1.992,-2.911 -3.74,-3.879L132,9.944 94.216,9.865c-42.456,-0.089 -39.402,-0.248 -42.116,2.192 -0.875,0.787 -1.757,1.959 -2.184,2.904 -0.713,1.577 -0.716,1.638 -0.806,14.204l-0.09,12.62 1.798,-0.13c1.426,-0.103 2.081,0.007 3.166,0.532 2.013,0.974 3.94,2.899 5.115,5.108l1.037,1.95 0.007,-12.825 0.007,-12.825h33.6,33.6v51.3,51.3L93.752,126.194 60.153,126.194l-0.076,-34.425c-0.073,-32.96 -0.098,-34.361 -0.591,-32.925 -0.283,0.825 -1.806,3.997 -3.383,7.05 -5.493,10.626 -5.405,9.86 -5.396,47.203 0.007,27.621 0.124,29.951 1.662,33.109 1.071,2.199 2.711,3.71 5.058,4.66l1.674,0.677 36.168,0.08 36.168,0.08 1.864,-0.931zM90.9,145.734c-2.871,-1.309 -4.458,-3.678 -4.43,-6.617 0.039,-4.116 3.109,-7.223 7.136,-7.223 2.12,0 3.567,0.609 5.164,2.172 2.245,2.198 2.754,5.439 1.301,8.287 -0.713,1.398 -2.521,3.009 -3.962,3.53 -1.497,0.542 -3.84,0.475 -5.209,-0.149z" />
<path
android:fillColor="#0a3d91"
android:pathData="m247.254,71.979h4.736c13.165,0 23.763,10.599 23.763,23.763v32.175c0,13.165 -10.599,23.763 -23.763,23.763h-4.736c-13.165,0 -23.763,-10.599 -23.763,-23.763V95.743c0,-13.165 10.599,-23.763 23.763,-23.763z" />
<path
android:fillColor="#0a3d91"
android:pathData="m143.679,23.557c-1.59,2.624 0.182,5.575 2.785,6.643 2.695,1.572 6.171,4.987 9.148,2.232 2.233,-2.04 0.601,-5.728 -2.041,-6.67 -3.064,-1.677 -6.552,-5.515 -9.891,-2.205zM351.705,23.129c-2.768,1.961 -7.068,2.695 -8.378,6.043 -0.642,2.731 1.936,4.993 4.584,4.426 3.202,-1.638 7.057,-2.842 9.178,-5.948 0.569,-2.604 -1.493,-5.351 -4.268,-4.746 -0.416,-0.108 -0.76,0.035 -1.117,0.224zM324.943,36.301c-2.934,1.708 -7.32,1.923 -8.931,5.153 -0.908,2.654 1.432,5.159 4.124,4.861 3.356,-1.304 7.32,-2.113 9.737,-5.002 0.814,-2.538 -0.977,-5.47 -3.796,-5.129 -0.403,-0.146 -0.76,-0.038 -1.133,0.117zM169.707,38.764c-1.219,2.712 0.757,5.461 3.444,6.145 2.858,1.081 6.669,4.118 9.312,1.234 2.315,-2.037 0.339,-5.835 -2.41,-6.418 -3.328,-1.176 -7.385,-4.714 -10.346,-0.961zM296.98,46.381c-3.123,1.309 -7.492,0.971 -9.492,3.97 -1.232,2.519 0.773,5.298 3.48,5.34 3.487,-0.907 7.567,-1.113 10.303,-3.739 1.114,-2.422 -0.312,-5.546 -3.152,-5.551 -0.383,-0.196 -0.75,-0.127 -1.139,-0.02zM199.49,47.926c-2.229,1.462 -2.68,4.866 -0.276,6.377 2.587,1.471 5.915,1.955 8.84,2.495 2.785,0.332 4.746,-2.479 3.891,-5.049 -2.043,-3.28 -6.472,-2.734 -9.717,-4.089 -0.913,0.089 -1.826,0.177 -2.738,0.266zM268.003,52.434c-3.276,0.789 -7.461,-0.188 -9.936,2.382 -1.65,2.268 -0.157,5.354 2.504,5.862 3.612,-0.292 7.718,0.091 10.84,-2.094 1.462,-2.228 0.523,-5.532 -2.285,-5.959 -0.349,-0.249 -0.722,-0.239 -1.123,-0.19zM228.554,53.852c-1.933,1.836 -1.765,5.267 0.871,6.321 2.809,0.989 6.171,0.847 9.144,0.861 2.799,-0.173 4.226,-3.29 2.924,-5.665 -2.604,-2.852 -6.847,-1.542 -10.293,-2.27 -0.882,0.251 -1.764,0.501 -2.646,0.752z" />
<path
android:fillColor="#ffffff"
android:pathData="m252.501,112.09 l11.656,-11.452 -17.126,-19.791 0.019,25.792 -9.142,-9.245 -3.125,3.091 11.521,11.581 -11.498,11.308c3.031,3.056 0,0 3.031,3.056l9.189,-8.973c0.044,4.735 0.004,27.165 0.004,27.165l17.102,-20.773zM251.424,92.519 L258.222,100.383 251.424,107.016zM251.4,132.547 L251.424,117.151 258.317,124.139z" />
</vector>

View File

@@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="90dp"
android:height="90dp"
android:viewportWidth="91"
android:viewportHeight="90">
<path
android:fillColor="@color/il_lime"
android:pathData="M62.571,35.163C63.214,34.517 63.211,33.473 62.565,32.83C61.919,32.187 60.874,32.19 60.231,32.836L39.524,53.66L30.571,44.658C29.929,44.012 28.884,44.009 28.238,44.651C27.592,45.294 27.589,46.339 28.232,46.985L39.524,58.34L62.571,35.163Z" />
<path
android:fillColor="@color/il_lime"
android:fillType="evenOdd"
android:pathData="M89.401,45C89.401,69.3 69.702,89 45.401,89C21.101,89 1.401,69.3 1.401,45C1.401,20.699 21.101,1 45.401,1C69.702,1 89.401,20.699 89.401,45ZM86.101,45C86.101,67.478 67.879,85.7 45.401,85.7C22.923,85.7 4.701,67.478 4.701,45C4.701,22.522 22.923,4.3 45.401,4.3C67.879,4.3 86.101,22.522 86.101,45Z" />
</vector>

View File

@@ -1,9 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="128dp"
android:height="128dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M11.99,2C6.47,2 2,6.47 2,12s4.47,10 9.99,10S22,17.53 22,12 17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM16.18,7.76l-1.06,1.06 -1.06,-1.06L13,8.82l1.06,1.06L13,10.94 14.06,12l1.06,-1.06L16.18,12l1.06,-1.06 -1.06,-1.06 1.06,-1.06zM7.82,12l1.06,-1.06L9.94,12 11,10.94 9.94,9.88 11,8.82 9.94,7.76 8.88,8.82 7.82,7.76 6.76,8.82l1.06,1.06 -1.06,1.06zM12,14c-2.33,0 -4.31,1.46 -5.11,3.5h10.22c-0.8,-2.04 -2.78,-3.5 -5.11,-3.5z"/>
</vector>

View File

@@ -1,21 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="96dp"
android:viewportHeight="156"
android:viewportWidth="162">
<path
android:fillColor="#ffffff"
android:pathData="M140.87,53.647H91.565V64.235H140.87V53.647Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M140.869,99.529V88.941H115.512L126.077,99.529H140.869Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M140.869,71.294H97.904L108.469,81.882H140.869V71.294Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M147.912,14.823H41.556L84.521,57.882V28.941H147.912V120.706H147.208L157.773,131.294C160.59,128.47 161.999,124.941 161.999,120.706V28.941C161.999,21.176 155.66,14.823 147.912,14.823Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M129.6,120.706L84.522,75.529L23.948,14.823L9.157,0L0,9.176L10.565,19.765C8.452,21.882 7.043,25.412 7.043,28.941V120.706C7.043,128.471 13.383,134.824 21.13,134.824H125.374L146.504,156L155.661,146.824L143.687,134.824L129.6,120.706ZM84.522,120.706V93.882L111.287,120.706H84.522Z"/>
</vector>

View File

@@ -1,9 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportHeight="164"
android:viewportWidth="164">
<path
android:fillColor="#ffffff"
android:pathData="M27.334,0L27.334,13.666L136.668,13.666L136.668,0L27.334,0zM27.334,27.334C19.817,27.334 13.666,33.483 13.666,41L13.666,123C13.666,130.517 19.817,136.668 27.334,136.668L136.668,136.668C144.184,136.668 150.332,130.517 150.332,123L150.332,41C150.332,33.483 144.184,27.334 136.668,27.334L27.334,27.334zM82.15,44.758C89.592,44.758 95.348,46.477 99.42,49.914C103.525,53.351 105.576,58.239 105.576,64.58C105.576,67.35 105.027,69.869 103.926,72.139C102.825,74.408 101.055,76.728 98.619,79.098L92.863,84.453C91.228,86.022 90.093,87.64 89.459,89.309C88.825,90.944 88.475,93.03 88.408,95.566L74.092,95.566C74.092,90.694 74.641,86.856 75.742,84.053C76.843,81.216 78.63,78.762 81.1,76.693C83.569,74.624 85.437,72.739 86.705,71.037C88.006,69.302 88.658,67.401 88.658,65.332C88.658,60.293 86.489,57.771 82.15,57.771C80.148,57.771 78.53,58.506 77.295,59.975C76.06,61.443 75.409,63.429 75.342,65.932L58.424,65.932C58.49,59.257 60.592,54.068 64.73,50.363C68.869,46.626 74.675,44.758 82.15,44.758zM81.398,102.324C84.068,102.324 86.288,103.125 88.057,104.727C89.859,106.295 90.76,108.314 90.76,110.783C90.76,113.253 89.859,115.289 88.057,116.891C86.288,118.459 84.068,119.242 81.398,119.242C78.729,119.242 76.493,118.459 74.691,116.891C72.923,115.289 72.039,113.253 72.039,110.783C72.039,108.314 72.923,106.295 74.691,104.727C76.493,103.125 78.729,102.324 81.398,102.324zM27.334,150.332L27.334,164L136.668,164L136.668,150.332L27.334,150.332z"/>
</vector>

View File

@@ -1,15 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportHeight="148"
android:viewportWidth="148">
<path
android:fillColor="#ffffff"
android:pathData="M107.266,74.679C111.34,74.679 114.055,71.964 114.055,67.89V6.789C114.055,2.716 111.34,0 107.266,0H24.44L99.119,74.679H107.266Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M141.211,27.156H127.633V88.257H112.697L148,123.56V33.945C148,29.872 144.606,27.156 141.211,27.156Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M8.826,1.357L0,10.183L12.22,22.403V101.835L39.376,74.679H64.495L78.074,88.257H39.376V101.835C39.376,105.908 42.092,108.624 46.165,108.624H98.44L137.817,148L146.642,139.174L8.826,1.357Z"/>
</vector>

View File

@@ -1,18 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="81dp"
android:viewportHeight="140"
android:viewportWidth="172">
<path
android:fillColor="#ffffff"
android:pathData="M125.091,103.444L71.927,50.556L38.309,17.111L21.109,0L10.946,10.111L31.273,30.333C31.273,31.889 31.273,32.667 31.273,34.222C31.273,47.444 41.437,57.556 54.727,57.556C56.291,57.556 57.073,57.556 58.637,56.778L78.182,76.222C69.582,74.667 60.982,73.111 54.727,73.111C36.745,73.111 0,82.444 0,100.333V119.778H109.455V107.333L142.291,140L152.455,129.889L142.291,119.778L125.091,103.444Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M117.273,57.555C130.227,57.555 140.728,47.108 140.728,34.222C140.728,21.335 130.227,10.888 117.273,10.888C104.319,10.888 93.818,21.335 93.818,34.222C93.818,47.108 104.319,57.555 117.273,57.555Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M78.182,34.222C78.182,20.999 68.018,10.888 54.727,10.888C53.945,10.888 53.164,10.888 52.382,10.888L78.182,36.555C78.182,35.777 78.182,34.999 78.182,34.222Z"/>
<path
android:fillColor="#ffffff"
android:pathData="M117.272,73.11C116.49,73.11 115.709,73.11 114.927,73.11L161.836,119.777H172V100.333C172,82.444 135.254,73.11 117.272,73.11Z"/>
</vector>

View File

@@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="90dp"
android:height="90dp"
android:viewportWidth="91"
android:viewportHeight="90">
<path
android:fillColor="@color/il_red"
android:pathData="M33.568,30.833C32.924,30.189 31.879,30.189 31.235,30.833C30.59,31.478 30.59,32.522 31.235,33.167L43.068,45L31.235,56.833C30.59,57.478 30.59,58.522 31.235,59.167C31.879,59.811 32.924,59.811 33.568,59.167L45.402,47.333L57.235,59.167C57.879,59.811 58.924,59.811 59.568,59.167C60.213,58.522 60.213,57.478 59.568,56.833L47.735,45L59.568,33.167C60.213,32.522 60.213,31.478 59.568,30.833C58.924,30.189 57.879,30.189 57.235,30.833L45.402,42.667L33.568,30.833Z" />
<path
android:fillColor="@color/il_red"
android:fillType="evenOdd"
android:pathData="M89.401,45C89.401,69.3 69.702,89 45.401,89C21.101,89 1.401,69.3 1.401,45C1.401,20.699 21.101,1 45.401,1C69.702,1 89.401,20.699 89.401,45ZM86.101,45C86.101,67.478 67.879,85.7 45.401,85.7C22.923,85.7 4.701,67.478 4.701,45C4.701,22.522 22.923,4.3 45.401,4.3C67.879,4.3 86.101,22.522 86.101,45Z" />
</vector>

View File

@@ -0,0 +1,16 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="90dp"
android:height="90dp"
android:viewportWidth="91"
android:viewportHeight="90">
<path
android:fillColor="@color/il_orange"
android:pathData="M43.797,23.755C43.797,22.844 44.536,22.105 45.447,22.105C46.358,22.105 47.097,22.844 47.097,23.755V50.86C47.097,51.772 46.358,52.51 45.447,52.51C44.536,52.51 43.797,51.772 43.797,50.86V23.755Z" />
<path
android:fillColor="@color/il_orange"
android:pathData="M43.797,61.486C43.797,60.575 44.536,59.836 45.447,59.836C46.358,59.836 47.097,60.575 47.097,61.486V61.755C47.097,62.667 46.358,63.405 45.447,63.405C44.536,63.405 43.797,62.667 43.797,61.755V61.486Z" />
<path
android:fillColor="@color/il_orange"
android:fillType="evenOdd"
android:pathData="M89.4,45C89.4,69.3 69.701,89 45.4,89C21.1,89 1.4,69.3 1.4,45C1.4,20.699 21.1,1 45.4,1C69.701,1 89.4,20.699 89.4,45ZM86.1,45C86.1,67.478 67.878,85.7 45.4,85.7C22.922,85.7 4.7,67.478 4.7,45C4.7,22.522 22.922,4.3 45.4,4.3C67.878,4.3 86.1,22.522 86.1,45Z" />
</vector>

View File

@@ -1,124 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="160dp"
android:viewportWidth="250"
android:viewportHeight="200">
<path
android:fillColor="#F6FAFE"
android:pathData="M95.436,100.737C95.436,94.027 100.876,88.588 107.585,88.588H130.365C137.074,88.588 142.514,94.027 142.514,100.737V123.516C142.514,130.226 137.074,135.665 130.365,135.665H107.585C100.876,135.665 95.436,130.226 95.436,123.516V100.737Z" />
<path
android:fillColor="#F6FAFE"
android:pathData="M102.336,10.765C102.336,5.098 106.93,0.504 112.597,0.504H131.836C137.503,0.504 142.097,5.098 142.097,10.765V30.004C142.097,35.671 137.503,40.265 131.836,40.265H112.597C106.93,40.265 102.336,35.671 102.336,30.004V10.765Z" />
<path
android:fillColor="#F6FAFE"
android:pathData="M34.818,148.594C34.818,143.931 38.599,140.151 43.262,140.151H59.093C63.757,140.151 67.537,143.931 67.537,148.594V164.426C67.537,169.089 63.757,172.869 59.093,172.869H43.262C38.599,172.869 34.818,169.089 34.818,164.426V148.594Z" />
<path
android:fillColor="#F6FAFE"
android:pathData="M110.024,186.549C110.024,184.061 112.04,182.045 114.527,182.045H122.971C125.458,182.045 127.475,184.061 127.475,186.549V194.992C127.475,197.48 125.458,199.496 122.971,199.496H114.527C112.04,199.496 110.024,197.48 110.024,194.992V186.549Z" />
<path
android:fillColor="#F6FAFE"
android:pathData="M173.713,142.104C173.713,135.395 179.152,129.955 185.862,129.955H208.641C215.351,129.955 220.79,135.395 220.79,142.104V164.884C220.79,171.593 215.351,177.033 208.641,177.033H185.862C179.152,177.033 173.713,171.593 173.713,164.884V142.104Z" />
<path
android:fillColor="#F6FAFE"
android:pathData="M232.049,95.92C232.049,93.432 234.065,91.416 236.553,91.416H244.997C247.484,91.416 249.5,93.432 249.5,95.92V104.364C249.5,106.851 247.484,108.867 244.997,108.867H236.553C234.065,108.867 232.049,106.851 232.049,104.364V95.92Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M120.481,84.731V45.772H122.481V84.731H120.481Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M117.685,176.605L117.685,140.151H119.685L119.685,176.605H117.685Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M3.28,108.949L4.046,107.102C4.338,107.223 4.66,107.291 5.003,107.291H7.114V109.291H5.003C4.393,109.291 3.811,109.169 3.28,108.949ZM11.336,109.291V107.291H13.447C13.79,107.291 14.113,107.223 14.405,107.102L15.171,108.949C14.64,109.169 14.058,109.291 13.447,109.291H11.336ZM17.951,98.454H15.951V96.343C15.951,96 15.883,95.678 15.762,95.386L17.609,94.62C17.829,95.151 17.951,95.733 17.951,96.343V98.454ZM7.114,91.84H5.003C4.393,91.84 3.811,91.962 3.28,92.182L4.046,94.029C4.338,93.908 4.66,93.84 5.003,93.84H7.114V91.84ZM0.5,102.676H2.5V104.787C2.5,105.131 2.568,105.453 2.689,105.745L0.842,106.511C0.622,105.98 0.5,105.398 0.5,104.787V102.676ZM0.5,98.454H2.5V96.343C2.5,96 2.568,95.678 2.689,95.386L0.842,94.62C0.622,95.151 0.5,95.733 0.5,96.343V98.454ZM11.336,91.84V93.84H13.447C13.79,93.84 14.113,93.908 14.405,94.029L15.171,92.182C14.64,91.962 14.058,91.84 13.447,91.84H11.336ZM17.951,102.676H15.951V104.787C15.951,105.131 15.883,105.453 15.762,105.745L17.609,106.511C17.829,105.98 17.951,105.398 17.951,104.787V102.676Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M41.177,65.021V63.153H43.177V65.021H41.177ZM41.177,72.495V68.758H43.177V72.495H41.177ZM41.177,79.969V76.232H43.177V79.969H41.177ZM41.177,87.443V83.706H43.177V87.443H41.177ZM41.177,94.916V91.179H43.177V94.916H41.177ZM41.177,99.522V98.653H43.177V99.522H44.91V101.522H39.681V99.522H41.177ZM24.705,101.522H22.209V99.522H24.705V101.522ZM34.689,101.522H29.697V99.522H34.689V101.522ZM52.107,101.522H50.374V99.522H54.854V101.522H54.107V102.652H52.107V101.522ZM61.844,101.522H58.349V99.522H61.844V101.522ZM67.087,101.522H65.339V99.522H67.087C68.048,99.522 68.966,99.713 69.805,100.061L69.039,101.908C68.439,101.66 67.78,101.522 67.087,101.522ZM72.187,106.622C72.187,105.929 72.049,105.27 71.8,104.67L73.648,103.904C73.995,104.743 74.187,105.661 74.187,106.622C74.187,107.316 74.325,107.974 74.574,108.574L72.726,109.34C72.378,108.502 72.187,107.583 72.187,106.622ZM52.107,111.172V106.912H54.107V111.172H52.107ZM79.287,113.722C78.326,113.722 77.408,113.531 76.569,113.183L77.335,111.336C77.935,111.585 78.594,111.722 79.287,111.722H81.59V113.722H79.287ZM88.5,113.722H86.197V111.722H88.5V113.722ZM52.107,119.692V115.432H54.107V119.692H52.107ZM52.107,128.213V123.953H54.107V128.213H52.107ZM52.107,134.603V132.473H54.107V134.603H52.107Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M105.214,135.434L105.602,133.472C106.242,133.599 106.905,133.665 107.585,133.665H109.484V135.665H107.585C106.774,135.665 105.981,135.586 105.214,135.434ZM128.466,135.665V133.665H130.365C131.045,133.665 131.708,133.599 132.347,133.472L132.736,135.434C131.969,135.586 131.176,135.665 130.365,135.665H128.466ZM137.115,133.619L136.002,131.957C137.11,131.216 138.064,130.262 138.805,129.154L140.467,130.267C139.58,131.591 138.44,132.732 137.115,133.619ZM142.514,102.635H140.514V100.737C140.514,100.057 140.447,99.394 140.32,98.754L142.282,98.366C142.434,99.133 142.514,99.926 142.514,100.737V102.635ZM140.467,93.987L138.805,95.1C138.064,93.992 137.11,93.038 136.002,92.296L137.115,90.634C138.44,91.521 139.58,92.662 140.467,93.987ZM109.484,88.588H107.585C106.774,88.588 105.981,88.668 105.214,88.819L105.602,90.781C106.242,90.655 106.905,90.588 107.585,90.588H109.484V88.588ZM100.835,90.634L101.948,92.296C100.84,93.038 99.886,93.992 99.145,95.1L97.483,93.987C98.37,92.662 99.51,91.521 100.835,90.634ZM95.436,121.618H97.436V123.516C97.436,124.197 97.503,124.86 97.63,125.499L95.668,125.887C95.516,125.121 95.436,124.328 95.436,123.516V121.618ZM97.483,130.267L99.145,129.154C99.886,130.262 100.84,131.216 101.948,131.957L100.835,133.619C99.51,132.732 98.37,131.591 97.483,130.267ZM95.436,117.822H97.436V114.025H95.436V117.822ZM95.436,110.228H97.436V106.432H95.436V110.228ZM95.436,102.635H97.436V100.737C97.436,100.057 97.503,99.394 97.63,98.754L95.668,98.366C95.516,99.133 95.436,99.926 95.436,100.737V102.635ZM113.28,88.588V90.588H117.077V88.588H113.28ZM120.873,88.588V90.588H124.67V88.588H120.873ZM128.466,88.588V90.588H130.365C131.045,90.588 131.708,90.655 132.347,90.781L132.736,88.819C131.969,88.668 131.176,88.588 130.365,88.588H128.466ZM142.514,106.432H140.514V110.228H142.514V106.432ZM142.514,114.025H140.514V117.822H142.514V114.025ZM142.514,121.618H140.514V123.516C140.514,124.197 140.447,124.86 140.32,125.499L142.282,125.887C142.434,125.121 142.514,124.328 142.514,123.516V121.618ZM124.67,135.665V133.665H120.873V135.665H124.67ZM117.077,135.665V133.665H113.28V135.665H117.077Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M188.618,87.043V85.178H190.618V87.043H188.618ZM188.618,94.503V90.773H190.618V94.503H188.618ZM188.618,98.233H190.618V99.098H191.517V101.098H190.618V101.687H188.618V98.233ZM199.112,101.098H195.315V99.098H199.112V101.098ZM206.707,101.098H202.91V99.098H206.707V101.098ZM214.303,101.098H210.505V99.098H214.303V101.098ZM221.898,101.098H218.1V99.098H221.898V101.098ZM227.595,101.098H225.696V99.098H227.595V101.098ZM188.618,108.042V104.864H190.618V108.042H188.618ZM188.618,111.807V111.219H190.618V111.863C190.865,111.891 191.109,111.929 191.35,111.976L190.962,113.938C190.528,113.853 190.079,113.807 189.618,113.807H187.737V111.807H188.618ZM153.881,113.807H152V111.807H153.881V113.807ZM161.405,113.807H157.643V111.807H161.405V113.807ZM168.928,113.807H165.166V111.807H168.928V113.807ZM176.452,113.807H172.69V111.807H176.452V113.807ZM183.975,113.807H180.214V111.807H183.975V113.807ZM195.34,116.865C194.837,116.115 194.19,115.468 193.44,114.966L194.552,113.304C195.52,113.952 196.353,114.785 197.001,115.753L195.34,116.865ZM196.498,120.687C196.498,120.226 196.453,119.777 196.367,119.343L198.329,118.955C198.44,119.516 198.498,120.095 198.498,120.687V121.707H196.498V120.687ZM196.498,124.765V123.746H198.498V124.765H196.498Z" />
<path
android:fillColor="#74B816"
android:fillType="evenOdd"
android:pathData="M183.491,176.801L183.879,174.839C184.519,174.966 185.182,175.033 185.862,175.033H187.76V177.033H185.862C185.051,177.033 184.258,176.953 183.491,176.801ZM206.743,177.033V175.033H208.641C209.322,175.033 209.985,174.966 210.624,174.839L211.012,176.801C210.246,176.953 209.453,177.033 208.641,177.033H206.743ZM215.392,174.986L214.279,173.324C215.387,172.583 216.341,171.629 217.082,170.521L218.744,171.634C217.857,172.959 216.717,174.099 215.392,174.986ZM220.79,144.002H218.79V142.104C218.79,141.424 218.724,140.761 218.597,140.121L220.559,139.733C220.711,140.5 220.79,141.293 220.79,142.104V144.002ZM218.744,135.354L217.082,136.467C216.341,135.359 215.387,134.405 214.279,133.663L215.392,132.002C216.717,132.889 217.857,134.029 218.744,135.354ZM187.76,129.955H185.862C185.051,129.955 184.258,130.035 183.491,130.186L183.879,132.148C184.519,132.022 185.182,131.955 185.862,131.955H187.76V129.955ZM179.112,132.002L180.225,133.663C179.117,134.405 178.163,135.359 177.421,136.467L175.759,135.354C176.646,134.029 177.787,132.889 179.112,132.002ZM173.713,162.985H175.713V164.884C175.713,165.564 175.78,166.227 175.906,166.866L173.944,167.255C173.793,166.488 173.713,165.695 173.713,164.884V162.985ZM175.759,171.634L177.421,170.521C178.163,171.629 179.117,172.583 180.225,173.324L179.112,174.986C177.787,174.099 176.646,172.959 175.759,171.634ZM173.713,159.189H175.713V155.392H173.713V159.189ZM173.713,151.596H175.713V147.799H173.713V151.596ZM173.713,144.002H175.713V142.104C175.713,141.424 175.78,140.761 175.906,140.121L173.944,139.733C173.793,140.5 173.713,141.293 173.713,142.104V144.002ZM191.557,129.955V131.955H195.354V129.955H191.557ZM199.15,129.955V131.955H202.947V129.955H199.15ZM206.743,129.955V131.955H208.641C209.322,131.955 209.985,132.022 210.624,132.148L211.012,130.186C210.246,130.035 209.453,129.955 208.641,129.955H206.743ZM220.79,147.799H218.79V151.596H220.79V147.799ZM220.79,155.392H218.79V159.189H220.79V155.392ZM220.79,162.985H218.79V164.884C218.79,165.564 218.724,166.227 218.597,166.866L220.559,167.255C220.711,166.488 220.79,165.695 220.79,164.884V162.985ZM202.947,177.033V175.033H199.15V177.033H202.947ZM195.354,177.033V175.033H191.557V177.033H195.354Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M110.594,40.07L110.982,38.108C111.503,38.211 112.042,38.265 112.597,38.265H115.001V40.265H112.597C111.911,40.265 111.242,40.198 110.594,40.07ZM129.431,40.265V38.265H131.836C132.39,38.265 132.93,38.211 133.45,38.108L133.838,40.07C133.191,40.198 132.521,40.265 131.836,40.265H129.431ZM137.537,38.537L136.424,36.875C137.326,36.271 138.103,35.494 138.706,34.592L140.368,35.705C139.619,36.824 138.656,37.787 137.537,38.537ZM142.097,13.17H140.097V10.765C140.097,10.211 140.042,9.671 139.939,9.151L141.901,8.762C142.029,9.41 142.097,10.08 142.097,10.765V13.17ZM140.368,5.064L138.706,6.176C138.103,5.275 137.326,4.498 136.424,3.894L137.537,2.232C138.656,2.981 139.619,3.945 140.368,5.064ZM115.001,0.504H112.597C111.911,0.504 111.242,0.571 110.594,0.699L110.982,2.661C111.503,2.558 112.042,2.504 112.597,2.504H115.001V0.504ZM106.895,2.232L108.008,3.894C107.106,4.498 106.33,5.275 105.726,6.176L104.064,5.064C104.813,3.945 105.777,2.981 106.895,2.232ZM102.336,27.599H104.336V30.004C104.336,30.558 104.39,31.098 104.493,31.618L102.531,32.007C102.403,31.359 102.336,30.689 102.336,30.004V27.599ZM104.064,35.705L105.726,34.592C106.33,35.494 107.106,36.271 108.008,36.875L106.895,38.537C105.777,37.787 104.813,36.824 104.064,35.705ZM102.336,22.789H104.336V17.98H102.336V22.789ZM102.336,13.17H104.336V10.765C104.336,10.211 104.39,9.671 104.493,9.151L102.531,8.762C102.403,9.41 102.336,10.08 102.336,10.765V13.17ZM119.811,0.504V2.504H124.621V0.504H119.811ZM129.431,0.504V2.504H131.836C132.39,2.504 132.93,2.558 133.45,2.661L133.838,0.699C133.191,0.571 132.521,0.504 131.836,0.504H129.431ZM142.097,17.98H140.097V22.789H142.097V17.98ZM142.097,27.599H140.097V30.004C140.097,30.558 140.042,31.098 139.939,31.618L141.901,32.007C142.029,31.359 142.097,30.689 142.097,30.004V27.599ZM124.621,40.265V38.265H119.811V40.265H124.621Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M40.03,172.228L40.796,170.381C41.553,170.695 42.384,170.869 43.262,170.869H45.241V172.869H43.262C42.117,172.869 41.025,172.641 40.03,172.228ZM57.114,172.869V170.869H59.093C59.971,170.869 60.802,170.695 61.559,170.381L62.325,172.228C61.33,172.641 60.238,172.869 59.093,172.869H57.114ZM67.537,150.573H65.537V148.594C65.537,147.717 65.363,146.885 65.049,146.128L66.896,145.362C67.309,146.358 67.537,147.449 67.537,148.594V150.573ZM45.241,140.151H43.262C42.117,140.151 41.025,140.378 40.03,140.791L40.796,142.639C41.553,142.325 42.384,142.151 43.262,142.151H45.241V140.151ZM34.818,162.447H36.818V164.426C36.818,165.303 36.993,166.134 37.306,166.891L35.459,167.658C35.046,166.662 34.818,165.57 34.818,164.426V162.447ZM34.818,158.489H36.818V154.531H34.818V158.489ZM34.818,150.573H36.818V148.594C36.818,147.717 36.993,146.885 37.306,146.128L35.459,145.362C35.046,146.358 34.818,147.449 34.818,148.594V150.573ZM49.199,140.151V142.151H53.157V140.151H49.199ZM57.114,140.151V142.151H59.093C59.971,142.151 60.802,142.325 61.559,142.639L62.325,140.791C61.33,140.378 60.238,140.151 59.093,140.151H57.114ZM67.537,154.531H65.537V158.489H67.537V154.531ZM67.537,162.447H65.537V164.426C65.537,165.303 65.363,166.134 65.049,166.891L66.896,167.658C67.309,166.662 67.537,165.57 67.537,164.426V162.447ZM53.157,172.869V170.869H49.199V172.869H53.157Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M112.803,199.154L113.569,197.307C113.862,197.428 114.184,197.496 114.527,197.496H116.638V199.496H114.527C113.917,199.496 113.334,199.374 112.803,199.154ZM120.86,199.496V197.496H122.971C123.314,197.496 123.636,197.428 123.929,197.307L124.695,199.154C124.164,199.374 123.582,199.496 122.971,199.496H120.86ZM127.475,188.66H125.475V186.549C125.475,186.205 125.407,185.883 125.285,185.591L127.133,184.825C127.353,185.356 127.475,185.938 127.475,186.549V188.66ZM116.638,182.045H114.527C113.917,182.045 113.334,182.167 112.803,182.387L113.569,184.234C113.862,184.113 114.184,184.045 114.527,184.045H116.638V182.045ZM110.024,192.881H112.024V194.992C112.024,195.336 112.092,195.658 112.213,195.95L110.365,196.716C110.145,196.185 110.024,195.603 110.024,194.992V192.881ZM110.024,188.66H112.024V186.549C112.024,186.205 112.092,185.883 112.213,185.591L110.365,184.825C110.145,185.356 110.024,185.938 110.024,186.549V188.66ZM120.86,182.045V184.045H122.971C123.314,184.045 123.636,184.113 123.929,184.234L124.695,182.387C124.164,182.167 123.582,182.045 122.971,182.045H120.86ZM127.475,192.881H125.475V194.992C125.475,195.336 125.407,195.658 125.285,195.95L127.133,196.716C127.353,196.185 127.475,195.603 127.475,194.992V192.881Z" />
<path
android:fillColor="#657D99"
android:fillType="evenOdd"
android:pathData="M178.996,80.327L179.762,78.48C180.48,78.778 181.269,78.943 182.101,78.943H184.003V80.943H182.101C181.001,80.943 179.952,80.724 178.996,80.327ZM195.412,80.943V78.943H197.314C198.146,78.943 198.935,78.778 199.653,78.48L200.419,80.327C199.463,80.724 198.414,80.943 197.314,80.943H195.412ZM205.427,59.519H203.427V57.617C203.427,56.785 203.262,55.996 202.964,55.278L204.811,54.512C205.208,55.468 205.427,56.517 205.427,57.617V59.519ZM184.003,49.504H182.101C181.001,49.504 179.952,49.723 178.996,50.12L179.762,51.967C180.48,51.669 181.269,51.504 182.101,51.504H184.003V49.504ZM173.988,70.928H175.988V72.83C175.988,73.662 176.153,74.451 176.451,75.169L174.604,75.936C174.207,74.979 173.988,73.93 173.988,72.83V70.928ZM173.988,67.125H175.988V63.322H173.988V67.125ZM173.988,59.519H175.988V57.617C175.988,56.785 176.153,55.996 176.451,55.278L174.604,54.512C174.207,55.468 173.988,56.517 173.988,57.617V59.519ZM187.806,49.504V51.504H191.609V49.504H187.806ZM195.412,49.504V51.504H197.314C198.146,51.504 198.935,51.669 199.653,51.967L200.419,50.12C199.463,49.723 198.414,49.504 197.314,49.504H195.412ZM205.427,63.322H203.427V67.125H205.427V63.322ZM205.427,70.928H203.427V72.83C203.427,73.662 203.262,74.451 202.964,75.169L204.811,75.936C205.208,74.979 205.427,73.93 205.427,72.83V70.928ZM191.609,80.943V78.943H187.806V80.943H191.609Z" />
<path
android:fillColor="#435B77"
android:fillType="evenOdd"
android:pathData="M234.829,108.525L235.595,106.678C235.887,106.799 236.209,106.867 236.553,106.867H238.664V108.867H236.553C235.942,108.867 235.36,108.745 234.829,108.525ZM242.886,108.867V106.867H244.997C245.34,106.867 245.662,106.799 245.954,106.678L246.72,108.525C246.189,108.745 245.607,108.867 244.997,108.867H242.886ZM249.5,98.031H247.5V95.92C247.5,95.576 247.432,95.254 247.311,94.962L249.158,94.196C249.378,94.727 249.5,95.309 249.5,95.92V98.031ZM238.664,91.416H236.553C235.942,91.416 235.36,91.538 234.829,91.758L235.595,93.605C235.887,93.484 236.209,93.416 236.553,93.416H238.664V91.416ZM232.049,102.253H234.049V104.364C234.049,104.707 234.117,105.029 234.238,105.321L232.391,106.087C232.171,105.556 232.049,104.974 232.049,104.364V102.253ZM232.049,98.031H234.049V95.92C234.049,95.576 234.117,95.254 234.238,94.962L232.391,94.196C232.171,94.727 232.049,95.309 232.049,95.92V98.031ZM242.886,91.416V93.416H244.997C245.34,93.416 245.662,93.484 245.954,93.605L246.72,91.758C246.189,91.538 245.607,91.416 244.997,91.416H242.886ZM249.5,102.253H247.5V104.364C247.5,104.707 247.432,105.029 247.311,105.321L249.158,106.087C249.378,105.556 249.5,104.974 249.5,104.364V102.253Z" />
<path
android:fillColor="#82C91E"
android:pathData="M29.825,34.881V54.164C29.825,55.73 31.1,57.021 32.682,57.021H34.021C35.586,57.021 36.877,55.73 36.877,54.164V34.881H29.825Z" />
<path
android:fillColor="#82C91E"
android:pathData="M36.861,25.587V21.956C36.861,20.391 35.586,19.1 34.021,19.1H32.682C31.116,19.1 29.825,20.391 29.825,21.956V25.587H36.861Z" />
<path
android:fillColor="#82C91E"
android:pathData="M52.514,41.239V21.956C52.514,20.391 51.239,19.1 49.674,19.1H48.334C46.769,19.1 45.478,20.391 45.478,21.956V41.239H52.514Z" />
<path
android:fillColor="#82C91E"
android:pathData="M45.478,50.533V54.164C45.478,55.729 46.769,57.02 48.334,57.02H49.674C51.239,57.02 52.53,55.729 52.53,54.164V50.533H45.478Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M28.696,42.369H25.065C23.5,42.369 22.209,43.644 22.209,45.225V46.565C22.209,48.13 23.484,49.421 25.065,49.421H28.696V42.369Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M57.274,42.369H37.99V49.421H57.274C58.839,49.421 60.13,48.13 60.13,46.565V45.225C60.13,43.644 58.839,42.369 57.274,42.369Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M44.348,26.717H25.065C23.5,26.717 22.209,27.992 22.209,29.573V30.913C22.209,32.478 23.484,33.769 25.065,33.769H44.348V26.717Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M57.274,26.717H53.643V33.769H57.274C58.839,33.769 60.13,32.494 60.13,30.912V29.573C60.13,27.992 58.839,26.717 57.274,26.717Z" />
<path
android:fillColor="#95DE2D"
android:fillType="evenOdd"
android:pathData="M108.864,100H129.086C129.852,100 130.587,100.305 131.129,100.848C131.671,101.39 131.975,102.126 131.975,102.894L131.975,127.695C131.975,128.8 130.688,129.403 129.841,128.695L124.6,124.308H108.864C108.098,124.308 107.363,124.003 106.821,123.46C106.279,122.917 105.975,122.181 105.975,121.414V102.894C105.975,102.126 106.279,101.39 106.821,100.848C107.363,100.305 108.098,100 108.864,100ZM116.549,112.823H110.597V104.63H127.353V112.823H121.499V115.656H123.64C124.026,115.656 124.22,116.123 123.947,116.397L119.331,121.021C119.161,121.19 118.887,121.19 118.718,121.021L114.102,116.397C113.829,116.123 114.022,115.656 114.408,115.656H116.549V112.823Z" />
<path
android:fillColor="#82C91E"
android:pathData="M190.408,151.656V162.803C190.408,163.708 191.145,164.454 192.059,164.454H192.833C193.738,164.454 194.484,163.708 194.484,162.803V151.656H190.408Z" />
<path
android:fillColor="#82C91E"
android:pathData="M194.475,146.283V144.184C194.475,143.279 193.738,142.533 192.833,142.533H192.059C191.154,142.533 190.408,143.279 190.408,144.184V146.283H194.475Z" />
<path
android:fillColor="#82C91E"
android:pathData="M203.523,155.331V144.184C203.523,143.279 202.786,142.533 201.881,142.533H201.107C200.202,142.533 199.456,143.279 199.456,144.184V155.331H203.523Z" />
<path
android:fillColor="#82C91E"
android:pathData="M199.456,160.705V162.804C199.456,163.709 200.202,164.455 201.107,164.455H201.881C202.786,164.455 203.533,163.709 203.533,162.804V160.705H199.456Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M189.755,155.984H187.656C186.751,155.984 186.005,156.721 186.005,157.635V158.409C186.005,159.314 186.742,160.061 187.656,160.061H189.755V155.984Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M206.275,155.984H195.128V160.061H206.275C207.18,160.061 207.926,159.314 207.926,158.409V157.635C207.926,156.721 207.18,155.984 206.275,155.984Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M198.803,146.937H187.656C186.751,146.937 186.005,147.674 186.005,148.588V149.363C186.005,150.267 186.742,151.014 187.656,151.014H198.803V146.937Z" />
<path
android:fillColor="#95DE2D"
android:pathData="M206.275,146.937H204.176V151.014H206.275C207.18,151.014 207.926,150.277 207.926,149.363V148.588C207.926,147.674 207.18,146.937 206.275,146.937Z" />
</vector>

View File

@@ -1,57 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="237dp"
android:viewportHeight="178"
android:viewportWidth="150">
<path
android:fillAlpha="0.25"
android:pathData="M85.19,0.128 L3.357,0.329C2.465,0.331 1.611,0.69 0.981,1.329 0.352,1.967 -0.001,2.832 0,3.733L0.373,156.201c0.001,0.446 0.089,0.888 0.26,1.3 0.17,0.412 0.419,0.786 0.732,1.101 0.313,0.315 0.685,0.564 1.093,0.734 0.409,0.17 0.846,0.257 1.288,0.256l81.834,-0.201c0.892,-0.003 1.746,-0.363 2.375,-1.002 0.629,-0.639 0.981,-1.504 0.98,-2.405L88.554,3.516C88.551,2.617 88.196,1.755 87.565,1.12 86.935,0.485 86.081,0.128 85.19,0.128Z">
</path>
<path
android:fillAlpha="0.175"
android:fillColor="#6d6d6d"
android:pathData="M84.282,-0.002 L4.276,0.196C2.574,0.2 1.198,1.598 1.202,3.318L1.567,154.298c0.004,1.72 1.387,3.111 3.089,3.107l80.006,-0.198c1.702,-0.004 3.078,-1.402 3.074,-3.122L87.37,3.105C87.366,1.385 85.983,-0.006 84.282,-0.002Z"/>
<path
android:fillAlpha="0.25"
android:fillColor="#646464"
android:pathData="M81.939,3.957L65.934,3.996C65.689,5.664 64.862,7.188 63.602,8.293C62.342,9.398 60.732,10.01 59.064,10.02L29.303,10.092C27.635,10.091 26.021,9.487 24.756,8.389C23.49,7.29 22.655,5.77 22.402,4.104L6.637,4.143C5.769,4.145 4.938,4.495 4.326,5.117C3.714,5.739 3.371,6.58 3.373,7.457L3.461,44.068L3.717,150.168C3.721,151.045 4.069,151.885 4.686,152.502C5.302,153.119 6.136,153.464 7.004,153.461L82.307,153.275C83.172,153.27 83.999,152.921 84.609,152.301C85.219,151.681 85.561,150.841 85.561,149.967L85.307,43.563L85.221,7.256C85.218,6.379 84.871,5.539 84.256,4.92C83.641,4.301 82.807,3.955 81.939,3.957zM52.652,5.791L34.357,6.068C34.108,6.072 33.908,6.279 33.912,6.531L33.916,6.83C33.92,7.082 34.125,7.285 34.375,7.281L52.672,7.002C52.921,6.998 53.119,6.791 53.115,6.539L53.111,6.24C53.108,5.988 52.902,5.787 52.652,5.791z"/>
<path
android:fillAlpha="0.25"
android:fillColor="#dbdbdb"
android:pathData="M57.204,6.934C57.602,6.928 57.919,6.597 57.913,6.195 57.907,5.793 57.58,5.471 57.182,5.477c-0.398,0.006 -0.716,0.337 -0.71,0.739 0.006,0.402 0.333,0.723 0.731,0.717z"/>
<path
android:fillAlpha="0.25"
android:fillColor="#e0e0e0"
android:pathData="m17.641,19.459c-4.185,0 -7.576,3.446 -7.576,7.695 0,4.25 3.392,7.695 7.576,7.695 4.185,0 7.576,-3.446 7.576,-7.695 0,-4.25 -3.392,-7.695 -7.576,-7.695zM37.523,23.637v3.234h40.117v-3.234zM37.523,30.104v3.234L77.641,33.338L77.641,30.104ZM17.641,44.088c-4.185,0 -7.576,3.444 -7.576,7.693 0,4.25 3.392,7.695 7.576,7.695 4.185,0 7.576,-3.446 7.576,-7.695 0,-4.25 -3.392,-7.693 -7.576,-7.693zM37.523,48.266L37.523,51.5h40.117v-3.234zM37.523,54.732v3.232L77.641,57.965L77.641,54.732ZM17.641,68.715c-4.185,0 -7.576,3.446 -7.576,7.695 0,4.25 3.392,7.695 7.576,7.695 4.185,0 7.576,-3.446 7.576,-7.695 0,-4.25 -3.392,-7.695 -7.576,-7.695zM37.523,72.895v3.232h40.117v-3.232zM37.523,79.361L37.523,82.594L77.641,82.594L77.641,79.361ZM17.641,93.344c-4.185,0 -7.576,3.446 -7.576,7.695 0,4.25 3.392,7.695 7.576,7.695 4.185,0 7.576,-3.445 7.576,-7.695 0,-4.25 -3.392,-7.695 -7.576,-7.695zM37.523,97.523v3.232h40.117v-3.232zM37.523,103.988v3.234h40.117v-3.234zM17.641,117.973c-4.185,0 -7.576,3.446 -7.576,7.695 0,4.25 3.392,7.693 7.576,7.693 4.185,0 7.576,-3.443 7.576,-7.693 0,-4.249 -3.392,-7.695 -7.576,-7.695zM37.523,122.15v3.234h40.117v-3.234zM37.523,128.617v3.234h40.117v-3.234z"/>
<path
android:fillColor="#313131"
android:pathData="m136.95,18.407 l-80.006,0.198c-1.702,0.004 -3.078,1.402 -3.074,3.122l0.365,150.981c0.004,1.72 1.387,3.111 3.089,3.107l80.006,-0.198c1.702,-0.004 3.078,-1.402 3.074,-3.122L140.039,21.514c-0.004,-1.72 -1.387,-3.111 -3.089,-3.107z"/>
<path
android:fillColor="#3e3e3e"
android:pathData="M134.609,22.357L118.6,22.395C118.356,24.062 117.528,25.587 116.268,26.691C115.008,27.796 113.398,28.408 111.73,28.418L81.969,28.492C80.301,28.491 78.689,27.886 77.424,26.787C76.158,25.689 75.323,24.168 75.07,22.502L59.305,22.541C58.437,22.543 57.604,22.894 56.992,23.516C56.38,24.137 56.037,24.98 56.039,25.857L56.129,62.469L56.748,62.467L56.129,62.471L56.383,168.57C56.385,169.447 56.733,170.287 57.348,170.906C57.963,171.524 58.796,171.871 59.664,171.869L134.967,171.684C135.835,171.682 136.665,171.331 137.277,170.709C137.889,170.088 138.232,169.246 138.23,168.369L137.973,62.219L137.975,62.219L137.889,25.656C137.887,24.779 137.541,23.939 136.926,23.32C136.311,22.702 135.477,22.356 134.609,22.357z"/>
<path
android:fillColor="#e0e0e0"
android:pathData="M109.85,23.891C109.452,23.897 109.135,24.229 109.141,24.631C109.147,25.033 109.473,25.354 109.871,25.348C110.269,25.342 110.586,25.01 110.58,24.607C110.574,24.205 110.248,23.885 109.85,23.891zM105.32,24.201L87.025,24.479C86.776,24.482 86.576,24.691 86.58,24.943L86.584,25.242C86.588,25.494 86.793,25.695 87.043,25.691L105.34,25.414C105.589,25.41 105.787,25.203 105.783,24.951L105.779,24.65C105.775,24.398 105.569,24.197 105.32,24.201zM63.365,37.568L63.365,53.738L79.365,53.738L79.365,37.568L63.365,37.568zM86.748,37.568L86.748,40.801L126.865,40.801L126.865,37.568L86.748,37.568zM86.748,44.037L86.748,47.27L126.865,47.27L126.865,44.037L86.748,44.037zM71.787,112.996C67.603,112.996 64.211,116.441 64.211,120.691C64.211,124.941 67.603,128.387 71.787,128.387C75.972,128.387 79.365,124.941 79.365,120.691C79.365,116.441 75.972,112.996 71.787,112.996zM86.748,116.928L86.748,120.16L126.865,120.16L126.865,116.928L86.748,116.928zM86.748,123.393L86.748,126.627L126.865,126.627L126.865,123.393L86.748,123.393zM71.787,142.602C67.603,142.602 64.211,146.047 64.211,150.297C64.211,154.547 67.603,157.99 71.787,157.99C75.972,157.99 79.365,154.547 79.365,150.297C79.365,146.047 75.972,142.602 71.787,142.602zM86.748,145.535L86.748,148.768L126.865,148.768L126.865,145.535L86.748,145.535zM86.748,152.002L86.748,155.234L126.865,155.234L126.865,152.002L86.748,152.002z"/>
<path
android:fillColor="#d5d6d7"
android:pathData="M148.744,68.665H45.619v33.583h103.125z"/>
<path
android:fillColor="#87c214"
android:pathData="m97.822,50.504v5.723h17.967v-5.723zM86.748,81.104v3.232h40.117v-3.232zM86.748,87.572v3.232h40.117v-3.232z"/>
<path
android:fillColor="#f5f5f5"
android:pathData="m66.865,92.314c4.185,0 7.577,-3.445 7.577,-7.695 0,-4.25 -3.392,-7.695 -7.577,-7.695 -4.185,0 -7.577,3.445 -7.577,7.695 0,4.25 3.392,7.695 7.577,7.695z"/>
<path
android:fillColor="#87c214"
android:pathData="m70.13,90.006h-6.574c-0.315,0.002 -0.625,0.082 -0.904,0.231 -0.278,0.149 -0.517,0.365 -0.696,0.627 1.477,0.856 3.147,1.311 4.85,1.321 1.702,0.01 3.378,-0.427 4.864,-1.266 -0.167,-0.265 -0.393,-0.486 -0.661,-0.645 -0.268,-0.159 -0.569,-0.251 -0.879,-0.269z"/>
<path
android:fillColor="#333333"
android:pathData="m66.861,80.746c-2.08,0 -3.766,1.704 -3.766,3.807 0,0.394 0.076,0.766 0.186,1.123 -0.328,0.813 -0.822,1.878 -1.158,1.709 0,0 5.07,4.425 9.545,0 -0.355,-0.613 -0.773,-1.184 -1.219,-1.732 0.105,-0.35 0.178,-0.715 0.178,-1.1 0,-2.102 -1.686,-3.807 -3.766,-3.807z"/>
<path
android:fillColor="#fda57d"
android:pathData="m66.861,81.57c-1.801,0 -3.302,1.279 -3.674,2.986 -0.005,-0 -0.009,-0.006 -0.014,-0.006 -0.193,0 -0.35,0.297 -0.35,0.664 0,0.347 0.142,0.623 0.32,0.652 0.181,1.408 1.109,2.569 2.381,3.059v0.732c0,0.323 0.127,0.635 0.354,0.863 0.226,0.229 0.534,0.357 0.854,0.357h0.225c0.159,0 0.316,-0.032 0.463,-0.094 0.147,-0.061 0.28,-0.15 0.393,-0.264 0.112,-0.113 0.201,-0.248 0.262,-0.396 0.061,-0.148 0.092,-0.308 0.092,-0.469v-0.721c1.289,-0.484 2.232,-1.655 2.412,-3.076 0.168,-0.049 0.299,-0.312 0.299,-0.645 0,-0.363 -0.153,-0.656 -0.344,-0.662 -0.373,-1.705 -1.873,-2.982 -3.672,-2.982z"/>
<path
android:fillColor="#333333"
android:pathData="m63.253,83.934h7.179c0,0 -0.612,-2.93 -3.328,-2.74 -2.715,0.19 -3.852,2.74 -3.852,2.74z"/>
</vector>

View File

@@ -1,66 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="256dp"
android:height="204dp"
android:viewportWidth="256"
android:viewportHeight="204">
<path
android:fillColor="#657D99"
android:pathData="M41.583,100.841H22.181V102.841H52.75V136.663H54.75V102.841H68.034C70.924,102.841 73.267,105.184 73.267,108.074C73.267,112.068 76.505,115.307 80.5,115.307H92.727V113.307H80.5C77.61,113.307 75.267,110.964 75.267,108.074C75.267,104.079 72.029,100.841 68.034,100.841H43.583V63.659H41.583V100.841Z" />
<path
android:fillColor="#657D99"
android:pathData="M122.611,86.06V46.253H124.611V86.06H122.611Z" />
<path
android:fillColor="#657D99"
android:pathData="M119.754,179.928L119.754,142.682L121.754,142.682L121.754,179.928L119.754,179.928Z" />
<path
android:fillColor="#657D99"
android:pathData="M195.251,100.841V86.596H193.251V113.826H148.362V115.826H194.251C198.125,115.826 201.301,118.969 201.301,122.826V127.044H203.301V122.826C203.301,118.186 199.75,114.378 195.251,113.881V102.841H233.052V100.841H195.251Z" />
<path
android:fillColor="#657D99"
android:pathData="M32.121,57.411L32.888,55.564C33.596,55.858 34.375,56.021 35.197,56.021H37.079V58.021H35.197C34.107,58.021 33.069,57.804 32.121,57.411ZM48.377,58.021V56.021H50.26C51.082,56.021 51.86,55.858 52.569,55.564L53.335,57.411C52.388,57.804 51.349,58.021 50.26,58.021H48.377ZM58.293,36.807H56.293V34.924C56.293,34.102 56.13,33.323 55.836,32.615L57.684,31.849C58.077,32.796 58.293,33.834 58.293,34.924V36.807ZM37.079,26.89H35.197C34.107,26.89 33.069,27.107 32.121,27.5L32.888,29.347C33.596,29.053 34.375,28.89 35.197,28.89H37.079V26.89ZM27.163,48.104H29.163V49.987C29.163,50.809 29.326,51.588 29.62,52.296L27.772,53.062C27.38,52.115 27.163,51.076 27.163,49.987V48.104ZM27.163,44.338H29.163V40.572H27.163V44.338ZM27.163,36.807H29.163V34.924C29.163,34.102 29.326,33.323 29.62,32.615L27.772,31.849C27.38,32.796 27.163,33.834 27.163,34.924V36.807ZM40.845,26.89V28.89H44.611V26.89H40.845ZM48.377,26.89V28.89H50.26C51.082,28.89 51.86,29.053 52.569,29.347L53.335,27.5C52.388,27.107 51.349,26.89 50.26,26.89H48.377ZM58.293,40.572H56.293V44.338H58.293V40.572ZM58.293,48.104H56.293V49.987C56.293,50.809 56.13,51.588 55.836,52.296L57.684,53.062C58.077,52.115 58.293,51.076 58.293,49.987V48.104ZM44.611,58.021V56.021H40.845V58.021H44.611Z" />
<path
android:fillColor="#657D99"
android:pathData="M112.487,40.426L112.875,38.464C113.41,38.569 113.964,38.625 114.533,38.625H116.99V40.625H114.533C113.833,40.625 113.149,40.556 112.487,40.426ZM131.733,40.625V38.625H134.191C134.76,38.625 135.314,38.569 135.848,38.464L136.237,40.426C135.575,40.556 134.891,40.625 134.191,40.625H131.733ZM140.016,38.859L138.903,37.197C139.829,36.577 140.627,35.78 141.247,34.854L142.909,35.966C142.143,37.11 141.159,38.094 140.016,38.859ZM144.674,12.941H142.674V10.484C142.674,9.915 142.619,9.361 142.513,8.826L144.475,8.438C144.606,9.1 144.674,9.784 144.674,10.484V12.941ZM142.909,4.659L141.247,5.772C140.627,4.845 139.829,4.048 138.903,3.428L140.016,1.766C141.159,2.531 142.143,3.516 142.909,4.659ZM116.99,0H114.533C113.833,0 113.149,0.069 112.487,0.2L112.875,2.162C113.41,2.056 113.964,2 114.533,2H116.99V0ZM108.708,1.766L109.821,3.428C108.895,4.048 108.097,4.845 107.477,5.772L105.815,4.659C106.581,3.516 107.565,2.531 108.708,1.766ZM104.049,27.684H106.049V30.141C106.049,30.71 106.105,31.264 106.211,31.799L104.249,32.187C104.118,31.525 104.049,30.841 104.049,30.141V27.684ZM105.815,35.966L107.477,34.854C108.097,35.78 108.895,36.577 109.821,37.197L108.708,38.859C107.565,38.094 106.581,37.11 105.815,35.966ZM104.049,22.77H106.049V17.855H104.049V22.77ZM104.049,12.941H106.049V10.484C106.049,9.915 106.105,9.361 106.211,8.826L104.249,8.438C104.118,9.1 104.049,9.784 104.049,10.484V12.941ZM121.905,0V2H126.819V0H121.905ZM131.733,0V2H134.191C134.76,2 135.314,2.056 135.848,2.162L136.237,0.2C135.575,0.069 134.891,0 134.191,0H131.733ZM144.674,17.855H142.674V22.77H144.674V17.855ZM144.674,27.684H142.674V30.141C142.674,30.71 142.619,31.264 142.513,31.799L144.475,32.187C144.606,31.525 144.674,30.841 144.674,30.141V27.684ZM126.819,40.625V38.625H121.905V40.625H126.819Z" />
<path
android:fillColor="#657D99"
android:pathData="M183.397,81.99L184.163,80.143C184.902,80.449 185.714,80.619 186.57,80.619H188.513V82.619H186.57C185.446,82.619 184.375,82.396 183.397,81.99ZM200.171,82.619V80.619H202.114C202.97,80.619 203.782,80.449 204.521,80.143L205.287,81.99C204.309,82.396 203.238,82.619 202.114,82.619H200.171ZM210.403,60.729H208.403V58.787C208.403,57.93 208.233,57.118 207.927,56.38L209.774,55.613C210.18,56.591 210.403,57.663 210.403,58.787V60.729ZM188.513,50.497H186.57C185.446,50.497 184.375,50.721 183.397,51.126L184.163,52.973C184.902,52.667 185.714,52.497 186.57,52.497H188.513V50.497ZM178.281,72.387H180.281V74.33C180.281,75.186 180.451,75.998 180.757,76.737L178.91,77.503C178.504,76.525 178.281,75.454 178.281,74.33V72.387ZM178.281,68.501H180.281V64.615H178.281V68.501ZM178.281,60.729H180.281V58.787C180.281,57.93 180.451,57.118 180.757,56.38L178.91,55.613C178.504,56.591 178.281,57.663 178.281,58.787V60.729ZM192.399,50.497V52.497H196.285V50.497H192.399ZM200.171,50.497V52.497H202.114C202.97,52.497 203.782,52.667 204.521,52.973L205.287,51.126C204.309,50.721 203.238,50.497 202.114,50.497H200.171ZM210.403,64.615H208.403V68.501H210.403V64.615ZM210.403,72.387H208.403V74.33C208.403,75.186 208.233,75.998 207.927,76.737L209.774,77.503C210.18,76.525 210.403,75.454 210.403,74.33V72.387ZM196.285,82.619V80.619H192.399V82.619H196.285Z" />
<path
android:fillColor="#657D99"
android:pathData="M188.271,180.562L188.659,178.6C189.316,178.73 189.996,178.798 190.694,178.798H192.633V180.798H190.694C189.865,180.798 189.055,180.717 188.271,180.562ZM212.029,180.798V178.798H213.968C214.666,178.798 215.346,178.73 216.003,178.6L216.391,180.562C215.607,180.717 214.797,180.798 213.968,180.798H212.029ZM220.865,178.708L219.753,177.046C220.889,176.285 221.868,175.306 222.629,174.17L224.291,175.282C223.384,176.636 222.219,177.801 220.865,178.708ZM226.381,147.05H224.381V145.111C224.381,144.413 224.313,143.733 224.183,143.077L226.145,142.688C226.3,143.472 226.381,144.282 226.381,145.111V147.05ZM224.291,138.214L222.629,139.327C221.868,138.19 220.889,137.211 219.753,136.451L220.865,134.789C222.219,135.695 223.384,136.86 224.291,138.214ZM192.633,132.698H190.694C189.865,132.698 189.055,132.779 188.271,132.934L188.659,134.896C189.316,134.766 189.996,134.698 190.694,134.698H192.633V132.698ZM183.797,134.789L184.91,136.451C183.773,137.211 182.794,138.19 182.033,139.327L180.372,138.214C181.278,136.86 182.443,135.695 183.797,134.789ZM178.281,166.446H180.281V168.385C180.281,169.083 180.349,169.763 180.479,170.42L178.517,170.808C178.362,170.024 178.281,169.214 178.281,168.385V166.446ZM180.372,175.282L182.033,174.17C182.794,175.306 183.773,176.285 184.91,177.046L183.797,178.708C182.443,177.801 181.278,176.636 180.372,175.282ZM178.281,162.567H180.281V158.688H178.281V162.567ZM178.281,154.809H180.281V150.93H178.281V154.809ZM178.281,147.05H180.281V145.111C180.281,144.413 180.349,143.733 180.479,143.077L178.517,142.688C178.362,143.472 178.281,144.282 178.281,145.111V147.05ZM196.512,132.698V134.698H200.392V132.698H196.512ZM204.271,132.698V134.698H208.15V132.698H204.271ZM212.029,132.698V134.698H213.968C214.666,134.698 215.346,134.766 216.003,134.896L216.391,132.934C215.607,132.779 214.797,132.698 213.968,132.698H212.029ZM226.381,150.93H224.381V154.809H226.381V150.93ZM226.381,158.688H224.381V162.567H226.381V158.688ZM226.381,166.446H224.381V168.385C224.381,169.083 224.313,169.763 224.183,170.42L226.145,170.808C226.3,170.024 226.381,169.214 226.381,168.385V166.446ZM208.15,180.798V178.798H204.271V180.798H208.15ZM200.392,180.798V178.798H196.512V180.798H200.392Z" />
<path
android:fillColor="#657D99"
android:pathData="M40.389,175.457L41.155,173.609C41.934,173.932 42.789,174.111 43.692,174.111H45.713V176.111H43.692C42.522,176.111 41.406,175.878 40.389,175.457ZM57.845,176.111V174.111H59.867C60.769,174.111 61.625,173.932 62.403,173.609L63.169,175.457C62.152,175.878 61.037,176.111 59.867,176.111H57.845ZM68.494,153.33H66.494V151.309C66.494,150.406 66.315,149.551 65.992,148.772L67.84,148.006C68.261,149.023 68.494,150.139 68.494,151.309V153.33ZM45.713,142.682H43.692C42.522,142.682 41.406,142.914 40.389,143.336L41.155,145.184C41.934,144.861 42.789,144.682 43.692,144.682H45.713V142.682ZM35.064,165.462H37.064V167.484C37.064,168.386 37.244,169.242 37.567,170.02L35.719,170.786C35.297,169.769 35.064,168.654 35.064,167.484V165.462ZM35.064,161.418H37.064V157.374H35.064V161.418ZM35.064,153.33H37.064V151.309C37.064,150.406 37.244,149.551 37.567,148.772L35.719,148.006C35.297,149.023 35.064,150.139 35.064,151.309V153.33ZM49.757,142.682V144.682H53.801V142.682H49.757ZM57.845,142.682V144.682H59.867C60.769,144.682 61.625,144.861 62.403,145.184L63.169,143.336C62.152,142.914 61.037,142.682 59.867,142.682H57.845ZM68.494,157.374H66.494V161.418H68.494V157.374ZM68.494,165.462H66.494V167.484C66.494,168.386 66.315,169.242 65.992,170.02L67.84,170.786C68.261,169.769 68.494,168.654 68.494,167.484V165.462ZM53.801,176.111V174.111H49.757V176.111H53.801Z" />
<path
android:fillColor="#657D99"
android:pathData="M2.84,110.802L3.606,108.954C3.91,109.081 4.245,109.151 4.601,109.151H6.758V111.151H4.601C3.977,111.151 3.383,111.027 2.84,110.802ZM11.072,111.151V109.151H13.229C13.585,109.151 13.92,109.081 14.224,108.954L14.99,110.802C14.448,111.027 13.853,111.151 13.229,111.151H11.072ZM17.83,100.079H15.83V97.922C15.83,97.566 15.76,97.231 15.634,96.927L17.481,96.161C17.706,96.703 17.83,97.298 17.83,97.922V100.079ZM6.758,93.321H4.601C3.977,93.321 3.383,93.445 2.84,93.67L3.606,95.518C3.91,95.392 4.245,95.321 4.601,95.321H6.758V93.321ZM0,104.393H2V106.55C2,106.906 2.071,107.241 2.197,107.545L0.349,108.311C0.124,107.769 0,107.174 0,106.55V104.393ZM0,100.079H2V97.922C2,97.566 2.071,97.231 2.197,96.927L0.349,96.161C0.124,96.703 0,97.298 0,97.922V100.079ZM11.072,93.321V95.321H13.229C13.585,95.321 13.92,95.392 14.224,95.518L14.99,93.67C14.448,93.445 13.853,93.321 13.229,93.321H11.072ZM17.83,104.393H15.83V106.55C15.83,106.906 15.76,107.241 15.634,107.545L17.481,108.311C17.706,107.769 17.83,107.174 17.83,106.55V104.393Z" />
<path
android:fillColor="#657D99"
android:pathData="M114.745,202.969L115.511,201.122C115.815,201.248 116.149,201.318 116.506,201.318H118.663V203.318H116.506C115.882,203.318 115.287,203.194 114.745,202.969ZM122.977,203.318V201.318H125.133C125.49,201.318 125.825,201.248 126.129,201.122L126.895,202.969C126.352,203.194 125.757,203.318 125.133,203.318H122.977ZM129.735,192.246H127.735V190.09C127.735,189.733 127.664,189.398 127.538,189.094L129.386,188.328C129.611,188.871 129.735,189.466 129.735,190.09V192.246ZM118.663,185.488H116.506C115.882,185.488 115.287,185.612 114.745,185.837L115.511,187.685C115.815,187.559 116.149,187.488 116.506,187.488H118.663V185.488ZM111.905,196.56H113.905V198.717C113.905,199.074 113.975,199.408 114.101,199.712L112.254,200.478C112.029,199.936 111.905,199.341 111.905,198.717V196.56ZM111.905,192.246H113.905V190.09C113.905,189.733 113.975,189.398 114.101,189.094L112.254,188.328C112.029,188.871 111.905,189.466 111.905,190.09V192.246ZM122.977,185.488V187.488H125.133C125.49,187.488 125.825,187.559 126.129,187.685L126.895,185.837C126.352,185.612 125.757,185.488 125.133,185.488H122.977ZM129.735,196.56H127.735V198.717C127.735,199.074 127.664,199.408 127.538,199.712L129.386,200.478C129.611,199.936 129.735,199.341 129.735,198.717V196.56Z" />
<path
android:fillColor="#657D99"
android:pathData="M240.444,110.802L241.21,108.954C241.514,109.081 241.849,109.151 242.205,109.151H244.362V111.151H242.205C241.581,111.151 240.987,111.027 240.444,110.802ZM248.676,111.151V109.151H250.833C251.189,109.151 251.524,109.081 251.828,108.954L252.594,110.802C252.052,111.027 251.457,111.151 250.833,111.151H248.676ZM255.434,100.079H253.434V97.922C253.434,97.566 253.364,97.231 253.238,96.927L255.085,96.161C255.31,96.703 255.434,97.298 255.434,97.922V100.079ZM244.362,93.321H242.205C241.581,93.321 240.987,93.445 240.444,93.67L241.21,95.518C241.514,95.392 241.849,95.321 242.205,95.321H244.362V93.321ZM237.604,104.393H239.604V106.55C239.604,106.906 239.675,107.241 239.801,107.545L237.953,108.311C237.728,107.769 237.604,107.174 237.604,106.55V104.393ZM237.604,100.079H239.604V97.922C239.604,97.566 239.675,97.231 239.801,96.927L237.953,96.161C237.728,96.703 237.604,97.298 237.604,97.922V100.079ZM248.676,93.321V95.321H250.833C251.189,95.321 251.524,95.392 251.828,95.518L252.594,93.67C252.052,93.445 251.457,93.321 250.833,93.321H248.676ZM255.434,104.393H253.434V106.55C253.434,106.906 253.364,107.241 253.238,107.545L255.085,108.311C255.31,107.769 255.434,107.174 255.434,106.55V104.393Z" />
<path
android:fillColor="#87C214"
android:pathData="M108.75,109.808V129.511C108.75,131.11 110.052,132.429 111.668,132.429H113.036C114.636,132.429 115.955,131.11 115.955,129.511V109.808H108.75V109.808Z" />
<path
android:fillColor="#87C214"
android:pathData="M115.938,100.312V96.602C115.938,95.003 114.636,93.684 113.036,93.684H111.668C110.069,93.684 108.75,95.003 108.75,96.602V100.312H115.938V100.312Z" />
<path
android:fillColor="#87C214"
android:pathData="M131.931,116.305V96.602C131.931,95.003 130.628,93.684 129.029,93.684H127.66C126.061,93.684 124.742,95.003 124.742,96.602V116.305H131.931V116.305Z" />
<path
android:fillColor="#87C214"
android:pathData="M124.742,125.801V129.511C124.742,131.11 126.061,132.429 127.66,132.429H129.029C130.628,132.429 131.947,131.11 131.947,129.511V125.801H124.742Z" />
<path
android:fillColor="#95D220"
android:pathData="M107.595,117.459H103.886C102.286,117.459 100.967,118.761 100.967,120.377V121.746C100.967,123.345 102.27,124.664 103.886,124.664H107.595V117.459Z" />
<path
android:fillColor="#95D220"
android:pathData="M136.795,117.459H117.092V124.664H136.795C138.394,124.664 139.713,123.345 139.713,121.746V120.377C139.713,118.761 138.394,117.459 136.795,117.459Z" />
<path
android:fillColor="#95D220"
android:pathData="M123.588,101.466H103.886C102.286,101.466 100.967,102.769 100.967,104.385V105.753C100.967,107.352 102.27,108.671 103.886,108.671H123.588V101.466Z" />
<path
android:fillColor="#95D220"
android:pathData="M136.795,101.466H133.085V108.671H136.795C138.394,108.671 139.713,107.369 139.713,105.753V104.384C139.713,102.769 138.394,101.466 136.795,101.466Z" />
</vector>

View File

@@ -1,21 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="155dp"
android:height="155dp"
android:viewportWidth="155"
android:viewportHeight="155">
<path
android:fillColor="@color/briar_lime_400"
android:pathData="m34.889,27.866c-0.93,-0.021 -1.779,0.612 -1.994,1.555 -0.246,1.077 0.427,2.148 1.504,2.395l5.34,1.223c-6.857,4.771 -12.782,10.788 -17.445,17.768 -5.477,8.197 -9.072,17.492 -10.541,27.219 -0.217,1.437 0.827,2.738 2.271,2.898 1.444,0.16 2.741,-0.88 2.963,-2.316 1.373,-8.889 4.673,-17.381 9.682,-24.877 4.281,-6.406 9.717,-11.929 16.004,-16.316l-1.271,5.559c-0.246,1.077 0.427,2.15 1.504,2.396 1.077,0.246 2.15,-0.427 2.396,-1.504l2.076,-9.08c0.167,-0.732 0.108,-1.458 -0.109,-2.123 -0.033,-0.348 -0.136,-0.693 -0.314,-1.018 -0.354,-0.642 -0.935,-1.078 -1.586,-1.258 -0.31,-0.167 -0.638,-0.31 -0.998,-0.393l-9.078,-2.076c-0.135,-0.031 -0.269,-0.048 -0.402,-0.051zM111.871,30.743c-0.836,0.055 -1.633,0.527 -2.082,1.316 -0.717,1.263 -0.271,2.864 0.961,3.635 8.143,5.096 14.998,12.029 20.002,20.258 4.936,8.117 7.92,17.253 8.746,26.689l-4.25,-3.395c-0.863,-0.689 -2.121,-0.549 -2.811,0.314 -0.689,0.863 -0.549,2.121 0.314,2.811l7.277,5.813c1.726,1.379 4.242,1.097 5.621,-0.629l5.813,-7.277c0.69,-0.863 0.549,-2.121 -0.314,-2.811 -0.863,-0.689 -2.122,-0.549 -2.811,0.314l-3.59,4.494c-0.886,-10.274 -4.128,-20.221 -9.502,-29.057 -5.469,-8.994 -12.974,-16.564 -21.895,-22.105 -0.463,-0.288 -0.979,-0.404 -1.48,-0.371zM45.191,140.86c-0.852,0.028 -1.671,0.446 -2.164,1.209 -0.789,1.219 -0.443,2.855 0.807,3.596 9.034,5.356 19.211,8.518 29.715,9.217 10.503,0.699 21.012,-1.086 30.676,-5.197 1.337,-0.569 1.897,-2.143 1.277,-3.457 -0.621,-1.313 -2.188,-1.87 -3.527,-1.305 -8.852,3.73 -18.466,5.348 -28.076,4.709 -9.61,-0.64 -18.923,-3.518 -27.203,-8.389 -0.47,-0.276 -0.993,-0.4 -1.504,-0.383z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="M68.475,3.03C66.724,3.03 65.046,3.726 63.809,4.964 62.571,6.201 61.875,7.879 61.875,9.63L61.875,49.229c0,1.75 0.696,3.43 1.934,4.668 1.238,1.238 2.916,1.934 4.666,1.934h19.801c1.75,0 3.428,-0.696 4.666,-1.934 1.238,-1.238 1.934,-2.918 1.934,-4.668L94.875,9.63c0,-1.75 -0.696,-3.428 -1.934,-4.666C91.704,3.726 90.026,3.03 88.275,3.03ZM68.475,6.331h19.801c0.875,0 1.715,0.346 2.334,0.965 0.619,0.619 0.965,1.459 0.965,2.334L91.574,49.229c0,0.875 -0.346,1.715 -0.965,2.334C89.99,52.182 89.151,52.53 88.275,52.53L68.475,52.53c-0.875,0 -1.715,-0.348 -2.334,-0.967 -0.619,-0.619 -0.965,-1.459 -0.965,-2.334L65.176,9.63c0,-0.875 0.346,-1.715 0.965,-2.334 0.619,-0.619 1.459,-0.965 2.334,-0.965zM11.25,100.03 L0,111.43v22.799C0,136.319 1.688,138.03 3.75,138.03h22.5c2.063,0 3.75,-1.711 3.75,-3.801L30,103.831C30,101.741 28.313,100.03 26.25,100.03ZM131,103.63c-0.796,0 -1.559,0.316 -2.121,0.879 -0.563,0.562 -0.879,1.325 -0.879,2.121v13.5c-0.796,0 -1.559,0.316 -2.121,0.879 -0.563,0.562 -0.879,1.325 -0.879,2.121v16.5h3v-16.5h24v16.5h3v-16.5c0,-0.796 -0.316,-1.559 -0.879,-2.121 -0.562,-0.563 -1.325,-0.879 -2.121,-0.879v-13.5c0,-0.796 -0.316,-1.559 -0.879,-2.121 -0.562,-0.563 -1.325,-0.879 -2.121,-0.879zM12.807,103.831L26.25,103.831v30.398L3.75,134.229L3.75,113.007ZM131,106.63h18v13.5L131,120.13ZM9.375,109.53v7.6h3.75L13.125,109.53ZM15,109.53v7.6h3.75L18.75,109.53ZM20.625,109.53v7.6h3.75L24.375,109.53Z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m78.375,46.2c0.875,0 1.715,-0.348 2.333,-0.967 0.619,-0.619 0.966,-1.458 0.966,-2.333 0,-0.875 -0.348,-1.715 -0.966,-2.333C80.09,39.948 79.25,39.6 78.375,39.6c-0.875,0 -1.715,0.348 -2.333,0.966 -0.619,0.619 -0.967,1.458 -0.967,2.333 0,0.875 0.348,1.715 0.967,2.333 0.619,0.619 1.458,0.967 2.333,0.967z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m134,109.6h4.5v3H134Z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m141.5,109.6h4.5v3h-4.5z" />
</vector>

View File

@@ -1,15 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="120dp"
android:height="52dp"
android:viewportWidth="120"
android:viewportHeight="52">
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m15.975,14.267c-0.596,0 -1.168,0.238 -1.589,0.659 -0.422,0.421 -0.659,0.993 -0.659,1.589v10.111c-0.596,0 -1.166,0.236 -1.587,0.658 -0.422,0.421 -0.659,0.993 -0.659,1.589v12.359h2.247v-12.359h17.977v12.359h2.247L33.951,28.873c0,-0.596 -0.236,-1.168 -0.658,-1.589 -0.421,-0.422 -0.993,-0.658 -1.589,-0.658L31.704,16.515c0,-0.596 -0.238,-1.168 -0.659,-1.589 -0.421,-0.422 -0.993,-0.659 -1.589,-0.659zM15.975,16.515L29.456,16.515L29.456,26.626L15.975,26.626ZM18.222,18.739v2.247h3.37v-2.247zM23.84,18.739v2.247h3.37v-2.247z" />
<path
android:fillColor="@color/briar_brand_green"
android:pathData="m47.828,24.463v3.074h18.443l-8.453,8.453 2.182,2.182 12.172,-12.172 -12.172,-12.172 -2.182,2.182 8.453,8.453z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="M93.999,0C92.275,0 90.624,0.686 89.405,1.905 88.186,3.124 87.501,4.776 87.501,6.5L87.501,45.498c0,1.724 0.686,3.379 1.905,4.598C90.624,51.314 92.275,52 93.999,52h19.501c1.724,0 3.377,-0.686 4.596,-1.905C119.314,48.877 120,47.222 120,45.498L120,6.5C120,4.776 119.314,3.124 118.095,1.905 116.877,0.686 115.224,0 113.5,0ZM93.999,3.252h19.501c0.862,0 1.689,0.34 2.299,0.949 0.609,0.609 0.951,1.437 0.951,2.299L116.75,45.498c0,0.862 -0.342,1.689 -0.951,2.299 -0.609,0.609 -1.437,0.953 -2.299,0.953L93.999,48.75c-0.862,0 -1.687,-0.344 -2.297,-0.953 -0.609,-0.61 -0.951,-1.437 -0.951,-2.299L90.751,6.5c0,-0.862 0.342,-1.689 0.951,-2.299 0.61,-0.609 1.435,-0.949 2.297,-0.949zM103.749,36.016c-0.862,0 -1.687,0.342 -2.297,0.951 -0.609,0.61 -0.953,1.437 -0.953,2.299 0,0.862 0.344,1.687 0.953,2.297 0.609,0.61 1.435,0.951 2.297,0.951 0.862,0 1.689,-0.342 2.299,-0.951 0.609,-0.609 0.951,-1.435 0.951,-2.297 0,-0.862 -0.342,-1.689 -0.951,-2.299 -0.61,-0.609 -1.437,-0.951 -2.299,-0.951z" />
</vector>

View File

@@ -1,15 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="120dp"
android:height="52dp"
android:viewportWidth="120"
android:viewportHeight="52">
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="m91.223,12.31c-0.596,0 -1.168,0.238 -1.589,0.659 -0.422,0.421 -0.659,0.993 -0.659,1.589v10.111c-0.596,0 -1.166,0.236 -1.587,0.658 -0.422,0.421 -0.659,0.993 -0.659,1.589v12.359h2.247v-12.359h17.977v12.359h2.247L109.199,26.916c0,-0.596 -0.236,-1.168 -0.658,-1.589 -0.421,-0.422 -0.993,-0.658 -1.589,-0.658L106.952,14.558c0,-0.596 -0.238,-1.168 -0.659,-1.589 -0.421,-0.422 -0.993,-0.659 -1.589,-0.659zM91.223,14.558L104.704,14.558L104.704,24.669L91.223,24.669ZM93.47,16.782v2.247h3.37v-2.247zM99.088,16.782v2.247h3.37v-2.247z" />
<path
android:fillColor="@color/briar_brand_green"
android:pathData="m47.828,24.463v3.074h18.443l-8.453,8.453 2.182,2.182 12.172,-12.172 -12.172,-12.172 -2.182,2.182 8.453,8.453z" />
<path
android:fillColor="?attr/colorControlNormal"
android:pathData="M6.498,0C4.774,0 3.123,0.686 1.905,1.905 0.686,3.124 0,4.776 0,6.5L0,45.498c0,1.724 0.686,3.379 1.905,4.598C3.123,51.314 4.774,52 6.498,52L25.999,52c1.724,0 3.377,-0.686 4.596,-1.905 1.219,-1.219 1.905,-2.874 1.905,-4.598L32.499,6.5c0,-1.724 -0.686,-3.377 -1.905,-4.596C29.376,0.686 27.723,0 25.999,0ZM6.498,3.252L25.999,3.252c0.862,0 1.689,0.34 2.299,0.949 0.609,0.609 0.951,1.437 0.951,2.299L29.249,45.498c0,0.862 -0.342,1.689 -0.951,2.299 -0.61,0.609 -1.437,0.953 -2.299,0.953L6.498,48.75c-0.862,0 -1.687,-0.344 -2.297,-0.953C3.592,47.187 3.25,46.36 3.25,45.498L3.25,6.5c0,-0.862 0.342,-1.689 0.951,-2.299C4.811,3.592 5.636,3.252 6.498,3.252ZM16.249,36.016c-0.862,0 -1.687,0.342 -2.297,0.951 -0.61,0.61 -0.953,1.437 -0.953,2.299 0,0.862 0.344,1.687 0.953,2.297 0.609,0.61 1.435,0.951 2.297,0.951 0.862,0 1.689,-0.342 2.299,-0.951 0.609,-0.609 0.951,-1.435 0.951,-2.297 0,-0.862 -0.342,-1.689 -0.951,-2.299 -0.61,-0.609 -1.437,-0.951 -2.299,-0.951z" />
</vector>

View File

@@ -0,0 +1,138 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="145">
<path
android:fillColor="#ECFCCB"
android:pathData="M48.32,41C48.32,36.58 44.74,33 40.32,33H14.32C9.9,33 6.32,36.58 6.32,41V103C6.32,107.42 9.9,111 14.32,111H40.32C44.74,111 48.32,107.42 48.32,103V41Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M14.32,34.5H40.32C43.91,34.5 46.82,37.41 46.82,41V103C46.82,106.59 43.91,109.5 40.32,109.5H14.32C10.73,109.5 7.82,106.59 7.82,103V41C7.82,37.41 10.73,34.5 14.32,34.5ZM40.32,33C44.74,33 48.32,36.58 48.32,41V103C48.32,107.42 44.74,111 40.32,111H14.32C9.9,111 6.32,107.42 6.32,103V41C6.32,36.58 9.9,33 14.32,33H40.32Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M48.32,47.25H6.32V101.25H48.32V47.25Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M7.82,48.75H46.82V99.75H7.82V48.75ZM48.32,47.25V101.25H6.32V47.25H48.32Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M10.93,69.1C10.93,66.89 12.72,65.1 14.93,65.1H39.72C41.92,65.1 43.72,66.89 43.72,69.1V79.39C43.72,81.6 41.92,83.39 39.72,83.39H14.93C12.72,83.39 10.93,81.6 10.93,79.39V69.1Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M16.69,71.55C16.69,71.14 17.02,70.8 17.44,70.8H37.31C37.73,70.8 38.06,71.14 38.06,71.55C38.06,71.97 37.73,72.3 37.31,72.3H17.44C17.02,72.3 16.69,71.97 16.69,71.55Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M16.69,77.65C16.69,77.24 17.02,76.9 17.44,76.9H28.12C28.53,76.9 28.87,77.24 28.87,77.65C28.87,78.07 28.53,78.4 28.12,78.4H17.44C17.02,78.4 16.69,78.07 16.69,77.65Z" />
<path
android:fillColor="#65A30D"
android:pathData="M26.32,41C26.32,41.55 26.77,42 27.32,42C27.87,42 28.32,41.55 28.32,41C28.32,40.45 27.87,40 27.32,40C26.77,40 26.32,40.45 26.32,41Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M18.57,41.02C18.57,40.61 18.91,40.27 19.32,40.27H23.32C23.73,40.27 24.07,40.61 24.07,41.02C24.07,41.44 23.73,41.77 23.32,41.77H19.32C18.91,41.77 18.57,41.44 18.57,41.02Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M30.57,41.02C30.57,40.61 30.91,40.27 31.32,40.27H35.32C35.73,40.27 36.07,40.61 36.07,41.02C36.07,41.44 35.73,41.77 35.32,41.77H31.32C30.91,41.77 30.57,41.44 30.57,41.02Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M150.32,54C150.32,49.58 146.74,46 142.32,46H126.32C121.9,46 118.32,49.58 118.32,54V70C118.32,74.42 121.9,78 126.32,78H142.32C146.74,78 150.32,74.42 150.32,70V54Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M126.32,47.5H142.32C145.91,47.5 148.82,50.41 148.82,54V70C148.82,73.59 145.91,76.5 142.32,76.5H126.32C122.73,76.5 119.82,73.59 119.82,70V54C119.82,50.41 122.73,47.5 126.32,47.5ZM142.32,46C146.74,46 150.32,49.58 150.32,54V70C150.32,74.42 146.74,78 142.32,78H126.32C121.9,78 118.32,74.42 118.32,70V54C118.32,49.58 121.9,46 126.32,46H142.32Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M132.93,60.42C134.25,59.1 136.39,59.1 137.71,60.42C139.03,61.74 139.03,63.88 137.71,65.2L133.73,69.18C132.41,70.5 130.27,70.5 128.95,69.18C127.63,67.86 127.63,65.72 128.95,64.4L132.93,60.42ZM136.65,61.48C135.92,60.75 134.73,60.75 133.99,61.48L130.01,65.46C129.28,66.19 129.28,67.39 130.01,68.12C130.75,68.85 131.94,68.85 132.67,68.12L136.65,64.14C137.39,63.41 137.39,62.22 136.65,61.48Z" />
<path
android:fillColor="#D9D9D9"
android:pathData="M137.18,59.32L138.81,60.95L137.18,62.58L135.55,60.95L137.18,59.32Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M135.71,63.58C134.39,64.9 132.25,64.9 130.93,63.58C129.61,62.26 129.61,60.12 130.93,58.8L134.91,54.82C136.23,53.5 138.37,53.5 139.69,54.82C141.01,56.14 141.01,58.28 139.69,59.6L135.71,63.58ZM131.99,62.52C132.72,63.25 133.91,63.25 134.65,62.52L138.63,58.54C139.36,57.8 139.36,56.61 138.63,55.88C137.89,55.14 136.7,55.14 135.97,55.88L131.99,59.86C131.25,60.59 131.25,61.78 131.99,62.52Z" />
<path
android:fillColor="#D9D9D9"
android:pathData="M131.46,64.68L129.83,63.05L131.46,61.42L133.09,63.05L131.46,64.68Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M281.32,41C281.32,36.58 277.74,33 273.32,33H247.32C242.9,33 239.32,36.58 239.32,41V103C239.32,107.42 242.9,111 247.32,111H273.32C277.74,111 281.32,107.42 281.32,103V41Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M247.32,34.5H273.32C276.91,34.5 279.82,37.41 279.82,41V103C279.82,106.59 276.91,109.5 273.32,109.5H247.32C243.73,109.5 240.82,106.59 240.82,103V41C240.82,37.41 243.73,34.5 247.32,34.5ZM273.32,33C277.74,33 281.32,36.58 281.32,41V103C281.32,107.42 277.74,111 273.32,111H247.32C242.9,111 239.32,107.42 239.32,103V41C239.32,36.58 242.9,33 247.32,33H273.32Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M281.32,47.25H239.32V101.25H281.32V47.25Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M240.82,48.75H279.82V99.75H240.82V48.75ZM281.32,47.25V101.25H239.32V47.25H281.32Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M243.93,69.1C243.93,66.89 245.72,65.1 247.93,65.1H272.71C274.92,65.1 276.71,66.89 276.71,69.1V79.39C276.71,81.6 274.92,83.39 272.71,83.39H247.93C245.72,83.39 243.93,81.6 243.93,79.39V69.1Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M249.69,71.55C249.69,71.14 250.02,70.8 250.44,70.8H270.31C270.72,70.8 271.06,71.14 271.06,71.55C271.06,71.97 270.72,72.3 270.31,72.3H250.44C250.02,72.3 249.69,71.97 249.69,71.55Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M249.69,77.65C249.69,77.24 250.02,76.9 250.44,76.9H261.12C261.53,76.9 261.87,77.24 261.87,77.65C261.87,78.07 261.53,78.4 261.12,78.4H250.44C250.02,78.4 249.69,78.07 249.69,77.65Z" />
<path
android:fillColor="#196FDE"
android:pathData="M259.32,41C259.32,41.55 259.77,42 260.32,42C260.87,42 261.32,41.55 261.32,41C261.32,40.45 260.87,40 260.32,40C259.77,40 259.32,40.45 259.32,41Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M251.57,41.02C251.57,40.61 251.91,40.27 252.32,40.27H256.32C256.73,40.27 257.07,40.61 257.07,41.02C257.07,41.44 256.73,41.77 256.32,41.77H252.32C251.91,41.77 251.57,41.44 251.57,41.02Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M263.57,41.02C263.57,40.61 263.91,40.27 264.32,40.27H268.32C268.73,40.27 269.07,40.61 269.07,41.02C269.07,41.44 268.73,41.77 268.32,41.77H264.32C263.91,41.77 263.57,41.44 263.57,41.02Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M169.32,73C169.32,68.58 165.74,65 161.32,65H145.32C140.9,65 137.32,68.58 137.32,73V89C137.32,93.42 140.9,97 145.32,97H161.32C165.74,97 169.32,93.42 169.32,89V73Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M145.32,66.5H161.32C164.91,66.5 167.82,69.41 167.82,73V89C167.82,92.59 164.91,95.5 161.32,95.5H145.32C141.73,95.5 138.82,92.59 138.82,89V73C138.82,69.41 141.73,66.5 145.32,66.5ZM161.32,65C165.74,65 169.32,68.58 169.32,73V89C169.32,93.42 165.74,97 161.32,97H145.32C140.9,97 137.32,93.42 137.32,89V73C137.32,68.58 140.9,65 145.32,65H161.32Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M151.93,79.42C153.25,78.1 155.39,78.1 156.71,79.42C158.03,80.74 158.03,82.88 156.71,84.2L152.73,88.18C151.41,89.5 149.27,89.5 147.95,88.18C146.63,86.86 146.63,84.72 147.95,83.4L151.93,79.42ZM155.65,80.48C154.92,79.75 153.73,79.75 152.99,80.48L149.01,84.46C148.28,85.19 148.28,86.39 149.01,87.12C149.75,87.85 150.94,87.85 151.67,87.12L155.65,83.14C156.39,82.41 156.39,81.22 155.65,80.48Z" />
<path
android:fillColor="#D9D9D9"
android:pathData="M156.18,78.32L157.81,79.95L156.18,81.58L154.55,79.95L156.18,78.32Z" />
<path
android:fillColor="#BEF264"
android:fillType="evenOdd"
android:pathData="M154.71,82.58C153.39,83.9 151.25,83.9 149.93,82.58C148.61,81.26 148.61,79.12 149.93,77.8L153.91,73.82C155.23,72.5 157.37,72.5 158.69,73.82C160.01,75.14 160.01,77.28 158.69,78.6L154.71,82.58ZM150.99,81.52C151.72,82.25 152.91,82.25 153.65,81.52L157.63,77.54C158.36,76.8 158.36,75.61 157.63,74.88C156.89,74.14 155.7,74.14 154.97,74.88L150.99,78.86C150.25,79.59 150.25,80.78 150.99,81.52Z" />
<path
android:fillColor="#D9D9D9"
android:pathData="M150.46,83.68L148.83,82.05L150.46,80.42L152.09,82.05L150.46,83.68Z" />
<path
android:fillColor="#8BCAFD"
android:pathData="M87.32,62C87.32,64.21 85.53,66 83.32,66C81.11,66 79.32,64.21 79.32,62C79.32,59.79 81.11,58 83.32,58C85.53,58 87.32,59.79 87.32,62Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M103.32,62C103.32,64.21 101.53,66 99.32,66C97.11,66 95.32,64.21 95.32,62C95.32,59.79 97.11,58 99.32,58C101.53,58 103.32,59.79 103.32,62Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M71.32,62C71.32,64.21 69.53,66 67.32,66C65.11,66 63.32,64.21 63.32,62C63.32,59.79 65.11,58 67.32,58C69.53,58 71.32,59.79 71.32,62Z" />
<path
android:fillColor="#BEF264"
android:pathData="M200.32,81C200.32,78.79 202.11,77 204.32,77C206.53,77 208.32,78.79 208.32,81C208.32,83.21 206.53,85 204.32,85C202.11,85 200.32,83.21 200.32,81Z" />
<path
android:fillColor="#A3E635"
android:pathData="M184.32,81C184.32,78.79 186.11,77 188.32,77C190.53,77 192.32,78.79 192.32,81C192.32,83.21 190.53,85 188.32,85C186.11,85 184.32,83.21 184.32,81Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M216.32,81C216.32,78.79 218.11,77 220.32,77C222.53,77 224.32,78.79 224.32,81C224.32,83.21 222.53,85 220.32,85C218.11,85 216.32,83.21 216.32,81Z" />
</vector>

View File

@@ -0,0 +1,135 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#DDEDFE"
android:pathData="M41.3,13.7H95.3C101.5,13.7 106.5,18.7 106.5,24.9V145.9C106.5,152.1 101.5,157.1 95.3,157.1H41.3C35.1,157.1 30.1,152.1 30.1,145.9V25C30.1,18.7 35.1,13.7 41.3,13.7Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M99.6,40.6C99.6,36.6 96.4,33.4 92.4,33.4H44.4C40.4,33.4 37.2,36.6 37.2,40.6V136.6C37.2,140.6 40.4,143.8 44.4,143.8H92.4C96.4,143.8 99.6,140.6 99.6,136.6V40.6Z" />
<path
android:fillColor="#196FDE"
android:pathData="M95.3,13H41.3C34.7,13 29.3,18.4 29.3,25V146C29.3,152.6 34.7,158 41.3,158H95.3C101.9,158 107.3,152.6 107.3,146V25C107.3,18.3 102,13 95.3,13ZM105.8,146C105.8,151.8 101.1,156.5 95.3,156.5H41.3C35.5,156.5 30.8,151.8 30.8,146V25C30.8,19.2 35.5,14.5 41.3,14.5H95.3C101.1,14.5 105.8,19.2 105.8,25V146Z" />
<path
android:fillColor="#196FDE"
android:pathData="M68.3,26.9C70,26.9 71.3,25.6 71.3,23.9C71.3,22.2 70,20.9 68.3,20.9C66.6,20.9 65.3,22.2 65.3,23.9C65.3,25.6 66.7,26.9 68.3,26.9ZM68.3,22.4C69.1,22.4 69.8,23.1 69.8,23.9C69.8,24.7 69.1,25.4 68.3,25.4C67.5,25.4 66.8,24.7 66.8,23.9C66.8,23.1 67.5,22.4 68.3,22.4Z" />
<path
android:fillColor="#196FDE"
android:pathData="M50.3,24.4H60.3C60.7,24.4 61.1,24.1 61.1,23.6C61.1,23.1 60.8,22.8 60.3,22.8H50.3C49.9,22.8 49.5,23.1 49.5,23.6C49.5,24.1 49.9,24.4 50.3,24.4Z" />
<path
android:fillColor="#196FDE"
android:pathData="M76.3,24.4H86.3C86.7,24.4 87.1,24.1 87.1,23.6C87.1,23.1 86.8,22.8 86.3,22.8H76.3C75.9,22.8 75.5,23.1 75.5,23.6C75.5,24.1 75.9,24.4 76.3,24.4Z" />
<path
android:fillColor="#196FDE"
android:pathData="M92.3,32.6H44.3C39.9,32.6 36.3,36.2 36.3,40.6V136.6C36.3,141 39.9,144.6 44.3,144.6H92.3C96.7,144.6 100.3,141 100.3,136.6V40.6C100.3,36.2 96.7,32.6 92.3,32.6ZM98.8,136.6C98.8,140.2 95.9,143.1 92.3,143.1H44.3C40.7,143.1 37.8,140.2 37.8,136.6V40.6C37.8,37 40.7,34.1 44.3,34.1H92.3C95.9,34.1 98.8,37 98.8,40.6V136.6Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M90.3,45.8H60.9C60.5,45.8 60.1,45.5 60.1,45C60.1,44.5 60.4,44.2 60.9,44.2H90.4C90.8,44.2 91.2,44.5 91.2,45C91.2,45.5 90.7,45.8 90.3,45.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M76.7,51.7H60.9C60.5,51.7 60.1,51.4 60.1,50.9C60.1,50.4 60.4,50.1 60.9,50.1H76.7C77.1,50.1 77.5,50.4 77.5,50.9C77.5,51.4 77.1,51.7 76.7,51.7Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M90.3,87.8H60.9C60.5,87.8 60.1,87.5 60.1,87C60.1,86.5 60.4,86.2 60.9,86.2H90.4C90.8,86.2 91.2,86.5 91.2,87C91.2,87.5 90.7,87.8 90.3,87.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M76.7,93.7H60.9C60.5,93.7 60.1,93.4 60.1,92.9C60.1,92.4 60.4,92.1 60.9,92.1H76.7C77.1,92.1 77.5,92.4 77.5,92.9C77.5,93.4 77.1,93.7 76.7,93.7Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M90.3,66.8H60.9C60.5,66.8 60.1,66.5 60.1,66C60.1,65.5 60.4,65.2 60.9,65.2H90.4C90.8,65.2 91.2,65.5 91.2,66C91.2,66.5 90.7,66.8 90.3,66.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M76.7,72.7H60.9C60.5,72.7 60.1,72.4 60.1,71.9C60.1,71.4 60.4,71.1 60.9,71.1H76.7C77.1,71.1 77.5,71.4 77.5,71.9C77.5,72.4 77.1,72.7 76.7,72.7Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M90.3,129.8H60.9C60.5,129.8 60.1,129.5 60.1,129C60.1,128.5 60.4,128.2 60.9,128.2H90.4C90.8,128.2 91.2,128.5 91.2,129C91.2,129.5 90.7,129.8 90.3,129.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M76.7,135.7H60.9C60.5,135.7 60.1,135.4 60.1,134.9C60.1,134.4 60.4,134.1 60.9,134.1H76.7C77.1,134.1 77.5,134.4 77.5,134.9C77.5,135.4 77.1,135.7 76.7,135.7Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M90.3,108.8H60.9C60.5,108.8 60.1,108.5 60.1,108C60.1,107.5 60.4,107.2 60.9,107.2H90.4C90.8,107.2 91.2,107.5 91.2,108C91.2,108.5 90.7,108.8 90.3,108.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M76.7,114.7H60.9C60.5,114.7 60.1,114.4 60.1,113.9C60.1,113.4 60.4,113.1 60.9,113.1H76.7C77.1,113.1 77.5,113.4 77.5,113.9C77.5,114.4 77.1,114.7 76.7,114.7Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M96.3,34.8H150.3C156.5,34.8 161.5,39.8 161.5,46V167C161.5,173.2 156.5,178.2 150.3,178.2H96.3C90.1,178.2 85.1,173.2 85.1,167V46C85.1,39.8 90.1,34.8 96.3,34.8Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M154.6,61.6C154.6,57.6 151.4,54.4 147.4,54.4H99.4C95.4,54.4 92.2,57.6 92.2,61.6V157.6C92.2,161.6 95.4,164.8 99.4,164.8H147.4C151.4,164.8 154.6,161.6 154.6,157.6V61.6Z" />
<path
android:fillColor="#65A30D"
android:pathData="M150.3,34H96.3C89.7,34 84.3,39.4 84.3,46V167C84.3,173.6 89.7,179 96.3,179H150.3C156.9,179 162.3,173.6 162.3,167V46C162.3,39.4 157,34 150.3,34ZM160.8,167C160.8,172.8 156.1,177.5 150.3,177.5H96.3C90.5,177.5 85.8,172.8 85.8,167V46C85.8,40.2 90.5,35.5 96.3,35.5H150.3C156.1,35.5 160.8,40.2 160.8,46V167Z" />
<path
android:fillColor="#65A30D"
android:pathData="M123.3,47.9C125,47.9 126.3,46.6 126.3,44.9C126.3,43.2 125,41.9 123.3,41.9C121.6,41.9 120.3,43.2 120.3,44.9C120.3,46.6 121.7,47.9 123.3,47.9ZM123.3,43.4C124.1,43.4 124.8,44.1 124.8,44.9C124.8,45.7 124.1,46.4 123.3,46.4C122.5,46.4 121.8,45.7 121.8,44.9C121.8,44.1 122.5,43.4 123.3,43.4Z" />
<path
android:fillColor="#65A30D"
android:pathData="M105.3,45.4H115.3C115.7,45.4 116.1,45.1 116.1,44.6C116.1,44.1 115.8,43.8 115.3,43.8H105.3C104.9,43.8 104.5,44.1 104.5,44.6C104.5,45.1 104.9,45.4 105.3,45.4Z" />
<path
android:fillColor="#65A30D"
android:pathData="M131.3,45.4H141.3C141.7,45.4 142.1,45.1 142.1,44.6C142.1,44.1 141.8,43.8 141.3,43.8H131.3C130.9,43.8 130.5,44.1 130.5,44.6C130.5,45.1 130.9,45.4 131.3,45.4Z" />
<path
android:fillColor="#65A30D"
android:pathData="M147.3,53.6H99.3C94.9,53.6 91.3,57.2 91.3,61.6V157.6C91.3,162 94.9,165.6 99.3,165.6H147.3C151.7,165.6 155.3,162 155.3,157.6V61.6C155.3,57.2 151.7,53.6 147.3,53.6ZM153.8,157.6C153.8,161.2 150.9,164.1 147.3,164.1H99.3C95.7,164.1 92.8,161.2 92.8,157.6V61.6C92.8,58 95.7,55.1 99.3,55.1H147.3C150.9,55.1 153.8,58 153.8,61.6V157.6Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M49.3,54C52.56,54 55.2,51.31 55.2,48C55.2,44.69 52.56,42 49.3,42C46.04,42 43.4,44.69 43.4,48C43.4,51.31 46.04,54 49.3,54Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M49.3,96C52.56,96 55.2,93.31 55.2,90C55.2,86.69 52.56,84 49.3,84C46.04,84 43.4,86.69 43.4,90C43.4,93.31 46.04,96 49.3,96Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M49.3,75C52.56,75 55.2,72.31 55.2,69C55.2,65.69 52.56,63 49.3,63C46.04,63 43.4,65.69 43.4,69C43.4,72.31 46.04,75 49.3,75Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M49.3,138C52.56,138 55.2,135.31 55.2,132C55.2,128.69 52.56,126 49.3,126C46.04,126 43.4,128.69 43.4,132C43.4,135.31 46.04,138 49.3,138Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M49.3,117C52.56,117 55.2,114.31 55.2,111C55.2,107.69 52.56,105 49.3,105C46.04,105 43.4,107.69 43.4,111C43.4,114.31 46.04,117 49.3,117Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M104.3,75C107.56,75 110.2,72.31 110.2,69C110.2,65.69 107.56,63 104.3,63C101.04,63 98.4,65.69 98.4,69C98.4,72.31 101.04,75 104.3,75Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M104.3,159C107.56,159 110.2,156.31 110.2,153C110.2,149.69 107.56,147 104.3,147C101.04,147 98.4,149.69 98.4,153C98.4,156.31 101.04,159 104.3,159Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M104.3,138C107.56,138 110.2,135.31 110.2,132C110.2,128.69 107.56,126 104.3,126C101.04,126 98.4,128.69 98.4,132C98.4,135.31 101.04,138 104.3,138Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M115.9,66.8H145.4C145.8,66.8 146.2,66.5 146.2,66C146.2,65.5 145.9,65.2 145.4,65.2H115.9C115.5,65.2 115.1,65.5 115.1,66C115.1,66.5 115.5,66.8 115.9,66.8Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M115.9,72.7H131.7C132.1,72.7 132.5,72.4 132.5,71.9C132.5,71.4 132.2,71.1 131.7,71.1H115.9C115.5,71.1 115.1,71.4 115.1,71.9C115.1,72.4 115.5,72.7 115.9,72.7Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M145.3,149.3H115.8C115.4,149.3 115,149.6 115,150.1C115,150.6 115.3,150.9 115.8,150.9H145.3C145.7,150.9 146.1,150.6 146.1,150.1C146.1,149.6 145.7,149.3 145.3,149.3Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M131.7,155.2H115.9C115.5,155.2 115.1,155.5 115.1,156C115.1,156.5 115.4,156.8 115.9,156.8H131.7C132.1,156.8 132.5,156.5 132.5,156C132.5,155.5 132.1,155.2 131.7,155.2Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M145.3,128.3H115.8C115.4,128.3 115,128.6 115,129.1C115,129.6 115.3,129.9 115.8,129.9H145.3C145.7,129.9 146.1,129.6 146.1,129.1C146.1,128.6 145.7,128.3 145.3,128.3Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M115.9,135.7H131.7C132.1,135.7 132.5,135.4 132.5,134.9C132.5,134.4 132.2,134.1 131.7,134.1H115.9C115.5,134.1 115.1,134.4 115.1,134.9C115.1,135.4 115.5,135.7 115.9,135.7Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M74.3,83H172.3C174.5,83 176.3,84.8 176.3,87V114C176.3,116.2 174.5,118 172.3,118H74.3C72.1,118 70.3,116.2 70.3,114V87C70.3,84.8 72.1,83 74.3,83Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M164.3,95.3H112.3C111.9,95.3 111.5,95.6 111.5,96.1C111.5,96.6 111.8,96.9 112.3,96.9H164.3C164.7,96.9 165.1,96.6 165.1,96.1C165.1,95.6 164.7,95.3 164.3,95.3Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M140.3,104.1H112.3C111.9,104.1 111.5,104.4 111.5,104.9C111.5,105.4 111.8,105.7 112.3,105.7H140.3C140.7,105.7 141.1,105.4 141.1,104.9C141.1,104.4 140.7,104.1 140.3,104.1Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M91.8,102.2H90.3C85.5,102.2 81.5,106.1 81.5,111V111.1C81.5,111.5 81.8,111.8 82.3,111.8C82.8,111.8 83.1,111.4 83.1,111C83.1,107 86.4,103.8 90.3,103.8H91.8C95.8,103.8 99,107.1 99,111.1C99,111.5 99.3,111.8 99.8,111.8C100.3,111.8 100.6,111.4 100.6,111C100.5,106.1 96.6,102.2 91.8,102.2Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M91.1,99.5C93.8,99.5 96,97.3 96,94.6C96,91.9 93.8,89.7 91.1,89.7C88.4,89.7 86.2,91.9 86.2,94.6C86.2,97.4 88.4,99.5 91.1,99.5ZM91.1,91.3C93,91.3 94.5,92.8 94.5,94.7C94.5,96.6 92.9,98 91.1,98C89.3,98 87.7,96.5 87.7,94.6C87.7,92.7 89.2,91.3 91.1,91.3Z" />
</vector>

View File

@@ -0,0 +1,85 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="145">
<path
android:fillColor="#DDEDFE"
android:pathData="M268.9,40.8C268.9,36.39 265.32,32.8 260.9,32.8H234.9C230.48,32.8 226.9,36.39 226.9,40.8V102.81C226.9,107.22 230.48,110.81 234.9,110.81H260.9C265.32,110.81 268.9,107.22 268.9,102.81V40.8Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M234.9,34.3H260.9C264.49,34.3 267.4,37.21 267.4,40.8V102.81C267.4,106.39 264.49,109.31 260.9,109.31H234.9C231.31,109.31 228.4,106.39 228.4,102.81V40.8C228.4,37.21 231.31,34.3 234.9,34.3ZM260.9,32.8C265.32,32.8 268.9,36.39 268.9,40.8V102.81C268.9,107.22 265.32,110.81 260.9,110.81H234.9C230.48,110.81 226.9,107.22 226.9,102.81V40.8C226.9,36.39 230.48,32.8 234.9,32.8H260.9Z" />
<path
android:fillColor="#196FDE"
android:pathData="M246.9,40.81C246.9,41.36 247.35,41.81 247.9,41.81C248.45,41.81 248.9,41.36 248.9,40.81C248.9,40.25 248.45,39.8 247.9,39.8C247.35,39.8 246.9,40.25 246.9,40.81Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M239.15,40.83C239.15,40.41 239.49,40.08 239.9,40.08H243.9C244.32,40.08 244.65,40.41 244.65,40.83C244.65,41.24 244.32,41.58 243.9,41.58H239.9C239.49,41.58 239.15,41.24 239.15,40.83Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M251.15,40.83C251.15,40.41 251.49,40.08 251.9,40.08H255.9C256.32,40.08 256.65,40.41 256.65,40.83C256.65,41.24 256.32,41.58 255.9,41.58H251.9C251.49,41.58 251.15,41.24 251.15,40.83Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M268.9,47.05H226.9V101.05H268.9V47.05Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M228.4,48.55H267.4V99.55H228.4V48.55ZM268.9,47.05V101.05H226.9V47.05H268.9Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M61.9,40.8C61.9,36.39 58.32,32.8 53.9,32.8H27.9C23.48,32.8 19.9,36.39 19.9,40.8V102.81C19.9,107.22 23.48,110.81 27.9,110.81H53.9C58.32,110.81 61.9,107.22 61.9,102.81V40.8Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M27.9,34.3H53.9C57.49,34.3 60.4,37.21 60.4,40.8V102.81C60.4,106.39 57.49,109.31 53.9,109.31H27.9C24.31,109.31 21.4,106.39 21.4,102.81V40.8C21.4,37.21 24.31,34.3 27.9,34.3ZM53.9,32.8C58.32,32.8 61.9,36.39 61.9,40.8V102.81C61.9,107.22 58.32,110.81 53.9,110.81H27.9C23.48,110.81 19.9,107.22 19.9,102.81V40.8C19.9,36.39 23.48,32.8 27.9,32.8H53.9Z" />
<path
android:fillColor="#65A30D"
android:pathData="M39.9,40.81C39.9,41.36 40.35,41.81 40.9,41.81C41.45,41.81 41.9,41.36 41.9,40.81C41.9,40.25 41.45,39.8 40.9,39.8C40.35,39.8 39.9,40.25 39.9,40.81Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M32.15,40.83C32.15,40.41 32.49,40.08 32.9,40.08H36.9C37.32,40.08 37.65,40.41 37.65,40.83C37.65,41.24 37.32,41.58 36.9,41.58H32.9C32.49,41.58 32.15,41.24 32.15,40.83Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M44.15,40.83C44.15,40.41 44.49,40.08 44.9,40.08H48.9C49.32,40.08 49.65,40.41 49.65,40.83C49.65,41.24 49.32,41.58 48.9,41.58H44.9C44.49,41.58 44.15,41.24 44.15,40.83Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M61.9,47.05H19.9V101.05H61.9V47.05Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M21.4,48.55H60.4V99.55H21.4V48.55ZM61.9,47.05V101.05H19.9V47.05H61.9Z" />
<path
android:fillColor="#BEF264"
android:pathData="M96.15,71.8C96.15,74.01 94.36,75.8 92.15,75.8C89.94,75.8 88.15,74.01 88.15,71.8C88.15,69.6 89.94,67.8 92.15,67.8C94.36,67.8 96.15,69.6 96.15,71.8Z" />
<path
android:fillColor="#A3E635"
android:pathData="M112.15,71.8C112.15,74.01 110.36,75.8 108.15,75.8C105.94,75.8 104.15,74.01 104.15,71.8C104.15,69.6 105.94,67.8 108.15,67.8C110.36,67.8 112.15,69.6 112.15,71.8Z" />
<path
android:fillColor="#D9F99D"
android:pathData="M80.15,71.8C80.15,74.01 78.36,75.8 76.15,75.8C73.94,75.8 72.15,74.01 72.15,71.8C72.15,69.6 73.94,67.8 76.15,67.8C78.36,67.8 80.15,69.6 80.15,71.8Z" />
<path
android:fillColor="#8BCAFD"
android:pathData="M192.65,71.8C192.65,69.6 194.44,67.8 196.65,67.8C198.86,67.8 200.65,69.6 200.65,71.8C200.65,74.01 198.86,75.8 196.65,75.8C194.44,75.8 192.65,74.01 192.65,71.8Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M176.65,71.8C176.65,69.6 178.44,67.8 180.65,67.8C182.86,67.8 184.65,69.6 184.65,71.8C184.65,74.01 182.86,75.8 180.65,75.8C178.44,75.8 176.65,74.01 176.65,71.8Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M208.65,71.8C208.65,69.6 210.44,67.8 212.65,67.8C214.86,67.8 216.65,69.6 216.65,71.8C216.65,74.01 214.86,75.8 212.65,75.8C210.44,75.8 208.65,74.01 208.65,71.8Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M166.27,61.8C166.27,55.18 160.9,49.8 154.27,49.8H134.27C127.64,49.8 122.27,55.18 122.27,61.8V81.8C122.27,88.43 127.64,93.8 134.27,93.8H154.27C160.9,93.8 166.27,88.43 166.27,81.8V61.8Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M134.27,51.3H154.27C160.07,51.3 164.77,56.01 164.77,61.8V81.8C164.77,87.6 160.07,92.3 154.27,92.3H134.27C128.47,92.3 123.77,87.6 123.77,81.8V61.8C123.77,56.01 128.47,51.3 134.27,51.3ZM154.27,49.8C160.9,49.8 166.27,55.18 166.27,61.8V81.8C166.27,88.43 160.9,93.8 154.27,93.8H134.27C127.64,93.8 122.27,88.43 122.27,81.8V61.8C122.27,55.18 127.64,49.8 134.27,49.8H154.27Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M144.08,61.35C144.34,61.23 144.65,61.26 144.88,61.45L150.58,66.15C150.75,66.29 150.85,66.5 150.85,66.72C150.86,66.94 150.76,67.15 150.6,67.3L145.55,71.68L150.6,76.05C150.76,76.19 150.85,76.4 150.85,76.62C150.85,76.83 150.76,77.04 150.6,77.18L144.89,82.15C144.67,82.34 144.36,82.39 144.09,82.27C143.82,82.14 143.65,81.88 143.65,81.58V73.32L139.19,77.19C138.88,77.46 138.4,77.42 138.13,77.11C137.86,76.8 137.89,76.32 138.21,76.05L143.26,71.68L138.21,67.3C137.89,67.03 137.86,66.55 138.13,66.24C138.4,65.93 138.88,65.89 139.19,66.17L143.65,70.03V62.03C143.65,61.74 143.82,61.47 144.08,61.35ZM145.15,73.32L148.96,76.62L145.15,79.94V73.32ZM145.15,70.03V63.62L148.94,66.75L145.15,70.03Z" />
</vector>

View File

@@ -0,0 +1,25 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="80"
android:viewportHeight="80">
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M40.651,76.5C60.81,76.5 77.151,60.158 77.151,40C77.151,19.842 60.81,3.5 40.651,3.5C20.493,3.5 4.151,19.842 4.151,40C4.151,60.158 20.493,76.5 40.651,76.5ZM40.651,78C61.638,78 78.651,60.987 78.651,40C78.651,19.013 61.638,2 40.651,2C19.664,2 2.651,19.013 2.651,40C2.651,60.987 19.664,78 40.651,78Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M16.083,26.651C16.376,26.358 16.851,26.358 17.144,26.651L24.614,34.121L32.083,26.651C32.376,26.358 32.851,26.358 33.144,26.651C33.437,26.944 33.437,27.419 33.144,27.712L25.674,35.182L33.144,42.651C33.437,42.944 33.437,43.419 33.144,43.712C32.851,44.005 32.376,44.005 32.083,43.712L24.614,36.242L17.144,43.712C16.851,44.005 16.376,44.005 16.083,43.712C15.79,43.419 15.79,42.944 16.083,42.651L23.553,35.182L16.083,27.712C15.79,27.419 15.79,26.944 16.083,26.651Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M48.159,26.651C48.452,26.358 48.927,26.358 49.22,26.651L56.689,34.121L64.159,26.651C64.452,26.358 64.927,26.358 65.22,26.651C65.513,26.944 65.513,27.419 65.22,27.712L57.75,35.182L65.22,42.651C65.513,42.944 65.513,43.419 65.22,43.712C64.927,44.005 64.452,44.005 64.159,43.712L56.689,36.242L49.22,43.712C48.927,44.005 48.452,44.005 48.159,43.712C47.866,43.419 47.866,42.944 48.159,42.651L55.629,35.182L48.159,27.712C47.866,27.419 47.866,26.944 48.159,26.651Z" />
<path
android:fillColor="@color/il_background"
android:pathData="M53.713,63.403C53.713,59.938 52.337,56.616 49.888,54.167C47.438,51.717 44.116,50.341 40.651,50.341C37.187,50.341 33.865,51.717 31.415,54.167C28.965,56.616 27.589,59.938 27.589,63.403L40.651,63.403L53.713,63.403Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M52.116,61.903C51.787,59.39 50.639,57.039 48.827,55.227C46.659,53.059 43.718,51.841 40.651,51.841C37.585,51.841 34.644,53.059 32.476,55.227C30.664,57.039 29.516,59.39 29.187,61.903L52.116,61.903ZM53.627,61.903C53.29,58.991 51.981,56.26 49.888,54.167C47.438,51.717 44.116,50.341 40.651,50.341C37.187,50.341 33.865,51.717 31.415,54.167C29.322,56.26 28.012,58.991 27.676,61.903C27.618,62.398 27.589,62.899 27.589,63.403L53.713,63.403C53.713,62.899 53.684,62.398 53.627,61.903Z" />
</vector>

View File

@@ -0,0 +1,37 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="81dp"
android:height="81dp"
android:viewportWidth="81"
android:viewportHeight="81">
<path
android:fillColor="@color/il_background"
android:pathData="M14.96,62.003C13.856,62.003 12.96,61.107 12.96,60.003L12.96,30.003C12.96,28.898 13.856,28.003 14.96,28.003L34.96,28.003C36.065,28.003 36.96,28.898 36.96,30.003L36.96,60.003C36.96,61.107 36.065,62.003 34.96,62.003L14.96,62.003Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M34.96,29.503L14.96,29.503C14.684,29.503 14.46,29.727 14.46,30.003L14.46,60.003C14.46,60.279 14.684,60.503 14.96,60.503L34.96,60.503C35.237,60.503 35.46,60.279 35.46,60.003L35.46,30.003C35.46,29.727 35.237,29.503 34.96,29.503ZM12.96,60.003C12.96,61.107 13.856,62.003 14.96,62.003L34.96,62.003C36.065,62.003 36.96,61.107 36.96,60.003L36.96,30.003C36.96,28.898 36.065,28.003 34.96,28.003L14.96,28.003C13.856,28.003 12.96,28.898 12.96,30.003L12.96,60.003Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M45.596,40.67C45.596,40.256 45.931,39.92 46.346,39.92L68.345,39.92C68.76,39.92 69.095,40.256 69.095,40.67C69.095,41.084 68.76,41.42 68.345,41.42L46.346,41.42C45.931,41.42 45.596,41.084 45.596,40.67Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M45.596,32.004C45.596,31.59 45.931,31.254 46.346,31.254L68.345,31.254C68.76,31.254 69.095,31.59 69.095,32.004C69.095,32.418 68.76,32.754 68.345,32.754L46.346,32.754C45.931,32.754 45.596,32.418 45.596,32.004Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M45.596,49.337C45.596,48.923 45.931,48.587 46.346,48.587L68.346,48.587C68.76,48.587 69.096,48.923 69.096,49.337C69.096,49.751 68.76,50.087 68.346,50.087L46.346,50.087C45.931,50.087 45.596,49.751 45.596,49.337Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M45.596,58.003C45.596,57.589 45.931,57.253 46.346,57.253L57.346,57.253C57.76,57.253 58.096,57.589 58.096,58.003C58.096,58.417 57.76,58.753 57.346,58.753L46.346,58.753C45.931,58.753 45.596,58.417 45.596,58.003Z" />
<path
android:fillColor="@color/il_background"
android:fillType="evenOdd"
android:pathData="M79.868,24.902C79.852,20.497 76.277,16.931 71.868,16.931L9.868,16.931C5.45,16.931 1.868,20.513 1.868,24.931L1.868,16.874C1.868,12.456 5.45,8.874 9.868,8.874L71.868,8.874C76.286,8.874 79.868,12.456 79.868,16.874V24.902Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M1.118,16.874C1.118,12.042 5.036,8.124 9.868,8.124L71.868,8.124C76.701,8.124 80.618,12.042 80.618,16.874V64.874C80.618,69.706 76.701,73.624 71.868,73.624L9.868,73.623C5.036,73.623 1.118,69.706 1.118,64.873L1.118,56.849L1.118,56.843L1.118,16.874ZM9.868,9.624L71.868,9.624C75.872,9.624 79.118,12.87 79.118,16.874V19.954C77.545,17.631 74.885,16.105 71.868,16.105L9.868,16.105C6.852,16.105 4.191,17.631 2.618,19.954L2.618,16.874C2.618,12.87 5.864,9.624 9.868,9.624ZM2.618,64.873C2.618,68.878 5.864,72.123 9.868,72.123L71.868,72.124C75.872,72.124 79.118,68.878 79.118,64.874L79.118,24.905L79.118,24.903C79.103,20.912 75.863,17.681 71.868,17.681L9.868,17.681C5.864,17.681 2.618,20.927 2.618,24.931L2.618,64.873Z" />
</vector>

View File

@@ -0,0 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="81dp"
android:height="81dp"
android:viewportWidth="81"
android:viewportHeight="81">
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M54.877,3.199L70.294,5.822C75.408,6.692 78.855,11.5 78.039,16.622L69.73,68.746C68.748,74.906 62.001,78.315 56.476,75.442L57.175,74.112C61.791,76.512 67.427,73.664 68.247,68.518L76.556,16.395C77.244,12.081 74.341,8.032 70.034,7.299L56.398,4.98L57.175,74.112L55.674,74.136L54.877,3.199Z" />
<path
android:fillColor="@color/il_background"
android:fillType="evenOdd"
android:pathData="M9.602,74.999L9.602,4H57.602C62.02,4 65.602,7.582 65.602,12V67C65.602,71.418 62.02,75 57.602,75L9.602,74.999ZM21.89,49.166V53.039C21.89,57.458 25.471,61.039 29.89,61.039H45.847C50.265,61.039 53.847,57.458 53.847,53.039V49.166C53.847,44.747 50.265,41.166 45.847,41.166H29.89C25.471,41.166 21.89,44.747 21.89,49.166ZM37.868,34.853C42.557,34.853 46.357,31.072 46.357,26.407C46.357,21.742 42.557,17.961 37.868,17.961C33.18,17.961 29.38,21.742 29.38,26.407C29.38,31.072 33.18,34.853 37.868,34.853Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M21.89,49.166V53.039C21.89,57.458 25.471,61.039 29.89,61.039H45.847C50.265,61.039 53.847,57.458 53.847,53.039V49.166C53.847,44.747 50.265,41.166 45.847,41.166H29.89C25.471,41.166 21.89,44.747 21.89,49.166ZM23.39,53.039V49.166C23.39,45.576 26.3,42.666 29.89,42.666H45.847C49.437,42.666 52.347,45.576 52.347,49.166V53.039C52.347,56.629 49.437,59.539 45.847,59.539H29.89C26.3,59.539 23.39,56.629 23.39,53.039Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M37.868,34.853C42.557,34.853 46.357,31.072 46.357,26.407C46.357,21.742 42.557,17.961 37.868,17.961C33.18,17.961 29.38,21.742 29.38,26.407C29.38,31.072 33.18,34.853 37.868,34.853ZM44.857,26.407C44.857,30.236 41.735,33.353 37.868,33.353C34.002,33.353 30.88,30.236 30.88,26.407C30.88,22.578 34.002,19.461 37.868,19.461C41.735,19.461 44.857,22.578 44.857,26.407Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M57.602,2.5H8.102L8.102,17.733H2.851C2.436,17.733 2.101,18.069 2.101,18.483C2.101,18.898 2.436,19.233 2.851,19.233H8.102L8.102,38.878H2.851C2.436,38.878 2.101,39.214 2.101,39.628C2.101,40.042 2.436,40.378 2.851,40.378H8.102L8.102,60.752H2.851C2.436,60.752 2.101,61.088 2.101,61.502C2.101,61.916 2.436,62.252 2.851,62.252H8.102L8.102,76.499L57.602,76.5C62.849,76.5 67.102,72.247 67.102,67V12C67.102,6.753 62.849,2.5 57.602,2.5ZM9.602,62.252L9.602,74.999L57.602,75C62.02,75 65.602,71.418 65.602,67V12C65.602,7.582 62.02,4 57.602,4H9.602L9.602,17.733H14.615C15.029,17.733 15.365,18.069 15.365,18.483C15.365,18.898 15.029,19.233 14.615,19.233H9.602L9.602,38.878H14.615C15.029,38.878 15.365,39.214 15.365,39.628C15.365,40.042 15.029,40.378 14.615,40.378H9.602L9.602,60.752H14.615C15.029,60.752 15.365,61.088 15.365,61.502C15.365,61.916 15.029,62.252 14.615,62.252H9.602Z" />
</vector>

View File

@@ -0,0 +1,14 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="81dp"
android:height="81dp"
android:viewportWidth="81"
android:viewportHeight="81">
<path
android:fillColor="@color/il_background"
android:fillType="evenOdd"
android:pathData="M20.394,48.642V58.213C20.394,62.631 23.975,66.213 28.394,66.213H63.081L79.401,75.329V30.909C79.401,26.491 75.82,22.909 71.401,22.909H60.407V40.642C60.407,45.061 56.825,48.642 52.407,48.642H20.394Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M9.401,4.579C4.569,4.579 0.651,8.497 0.651,13.329V59.02L17.915,49.378H19.644V58.213C19.644,63.046 23.561,66.963 28.394,66.963H62.886L80.151,76.606V30.909C80.151,26.077 76.234,22.159 71.401,22.159H61.152V13.329C61.152,8.497 57.235,4.579 52.402,4.579H9.401ZM2.151,13.329C2.151,9.325 5.397,6.079 9.401,6.079H52.402C56.406,6.079 59.652,9.325 59.652,13.329V40.628C59.652,44.632 56.406,47.878 52.402,47.878H17.524L2.151,56.464V13.329ZM61.157,40.642V23.659H71.401C75.406,23.659 78.651,26.905 78.651,30.909V74.051L63.277,65.463H28.394C24.389,65.463 21.144,62.217 21.144,58.213V49.392H52.407C57.239,49.392 61.157,45.475 61.157,40.642Z" />
</vector>

View File

@@ -0,0 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="81dp"
android:height="81dp"
android:viewportWidth="81"
android:viewportHeight="81">
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M49.133,16.654C49.133,21.219 45.433,24.919 40.868,24.919C36.304,24.919 32.603,21.219 32.603,16.654C32.603,12.089 36.304,8.389 40.868,8.389C45.433,8.389 49.133,12.089 49.133,16.654ZM47.633,16.654C47.633,20.39 44.604,23.419 40.868,23.419C37.132,23.419 34.103,20.39 34.103,16.654C34.103,12.917 37.132,9.889 40.868,9.889C44.604,9.889 47.633,12.917 47.633,16.654Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M25.745,25.92C25.745,30.484 22.045,34.185 17.48,34.185C12.915,34.185 9.215,30.484 9.215,25.92C9.215,21.355 12.915,17.654 17.48,17.654C22.045,17.654 25.745,21.355 25.745,25.92ZM24.245,25.92C24.245,29.656 21.216,32.685 17.48,32.685C13.744,32.685 10.715,29.656 10.715,25.92C10.715,22.183 13.744,19.154 17.48,19.154C21.216,19.154 24.245,22.183 24.245,25.92Z" />
<path
android:fillColor="@color/il_border"
android:pathData="M2.618,49.168C2.618,45.164 5.864,41.918 9.868,41.918H24.506V61.165C24.506,61.579 24.842,61.915 25.256,61.915C25.671,61.915 26.006,61.579 26.006,61.165V41.975C29.579,42.424 32.342,45.473 32.342,49.168V72.392C32.342,72.806 32.678,73.142 33.092,73.142C33.506,73.142 33.842,72.806 33.842,72.392V49.168C33.842,44.644 30.409,40.922 26.006,40.465V39.777C26.006,35.773 29.252,32.527 33.256,32.527H48.48C52.485,32.527 55.73,35.773 55.73,39.777V40.465C51.327,40.922 47.894,44.644 47.894,49.168V70.555C47.894,70.969 48.23,71.305 48.644,71.305C49.058,71.305 49.394,70.969 49.394,70.555V49.168C49.394,45.473 52.158,42.424 55.73,41.975V61.165C55.73,61.579 56.066,61.915 56.48,61.915C56.895,61.915 57.23,61.579 57.23,61.165V41.918H71.868C75.872,41.918 79.118,45.164 79.118,49.168V70.555C79.118,70.969 79.454,71.305 79.868,71.305C80.282,71.305 80.618,70.969 80.618,70.555V49.168C80.618,44.335 76.701,40.418 71.868,40.418H57.23V39.777C57.23,34.945 53.313,31.027 48.48,31.027H33.256C28.424,31.027 24.506,34.945 24.506,39.777V40.418H9.868C5.036,40.418 1.118,44.335 1.118,49.168V72.392C1.118,72.806 1.454,73.142 1.868,73.142C2.282,73.142 2.618,72.806 2.618,72.392V49.168Z" />
<path
android:fillColor="@color/il_border"
android:fillType="evenOdd"
android:pathData="M72.522,25.92C72.522,30.484 68.821,34.185 64.256,34.185C59.692,34.185 55.991,30.484 55.991,25.92C55.991,21.355 59.692,17.654 64.256,17.654C68.821,17.654 72.522,21.355 72.522,25.92ZM71.022,25.92C71.022,29.656 67.993,32.685 64.256,32.685C60.52,32.685 57.491,29.656 57.491,25.92C57.491,22.183 60.52,19.154 64.256,19.154C67.993,19.154 71.022,22.183 71.022,25.92Z" />
</vector>

View File

@@ -0,0 +1,124 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="192">
<path
android:fillColor="#DDEDFE"
android:pathData="M112.4,21C112.4,16.58 108.82,13 104.4,13H88.4C83.98,13 80.4,16.58 80.4,21V37C80.4,41.42 83.98,45 88.4,45H104.4C108.82,45 112.4,41.42 112.4,37V21Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M88.4,14.5H104.4C107.99,14.5 110.9,17.41 110.9,21V37C110.9,40.59 107.99,43.5 104.4,43.5H88.4C84.81,43.5 81.9,40.59 81.9,37V21C81.9,17.41 84.81,14.5 88.4,14.5ZM104.4,13C108.82,13 112.4,16.58 112.4,21V37C112.4,41.42 108.82,45 104.4,45H88.4C83.98,45 80.4,41.42 80.4,37V21C80.4,16.58 83.98,13 88.4,13H104.4Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M60.4,127C60.4,122.58 56.82,119 52.4,119H36.4C31.98,119 28.4,122.58 28.4,127V143C28.4,147.42 31.98,151 36.4,151H52.4C56.82,151 60.4,147.42 60.4,143V127Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M36.4,120.5H52.4C55.99,120.5 58.9,123.41 58.9,127V143C58.9,146.59 55.99,149.5 52.4,149.5H36.4C32.81,149.5 29.9,146.59 29.9,143V127C29.9,123.41 32.81,120.5 36.4,120.5ZM52.4,119C56.82,119 60.4,122.58 60.4,127V143C60.4,147.42 56.82,151 52.4,151H36.4C31.98,151 28.4,147.42 28.4,143V127C28.4,122.58 31.98,119 36.4,119H52.4Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M43.65,116L43.65,100L45.15,100L45.15,116L43.65,116Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M95.65,66L95.65,48L97.15,48L97.15,66L95.65,66Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M95.65,155L95.65,126L97.15,126L97.15,155L95.65,155Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M150.15,67V92H148.65V67H150.15Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M149.17,96.45H126.4V94.95H149.17C153.58,94.95 157.15,98.52 157.15,102.93L157.15,121.7L155.65,121.7L155.65,102.93C155.65,99.35 152.75,96.45 149.17,96.45Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M43.63,95.25L66.4,95.25L66.4,96.75L43.63,96.75C39.22,96.75 35.65,93.18 35.65,88.77L35.65,70L37.15,70L37.15,88.77C37.15,92.35 40.05,95.25 43.63,95.25Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M157.4,52C157.4,49.79 155.61,48 153.4,48H145.4C143.19,48 141.4,49.79 141.4,52V60C141.4,62.21 143.19,64 145.4,64H153.4C155.61,64 157.4,62.21 157.4,60V52Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M145.4,49.5H153.4C154.78,49.5 155.9,50.62 155.9,52V60C155.9,61.38 154.78,62.5 153.4,62.5H145.4C144.02,62.5 142.9,61.38 142.9,60V52C142.9,50.62 144.02,49.5 145.4,49.5ZM153.4,48C155.61,48 157.4,49.79 157.4,52V60C157.4,62.21 155.61,64 153.4,64H145.4C143.19,64 141.4,62.21 141.4,60V52C141.4,49.79 143.19,48 145.4,48H153.4Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M104.4,162C104.4,159.79 102.61,158 100.4,158H92.4C90.19,158 88.4,159.79 88.4,162V170C88.4,172.21 90.19,174 92.4,174H100.4C102.61,174 104.4,172.21 104.4,170V162Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M92.4,159.5H100.4C101.78,159.5 102.9,160.62 102.9,162V170C102.9,171.38 101.78,172.5 100.4,172.5H92.4C91.02,172.5 89.9,171.38 89.9,170V162C89.9,160.62 91.02,159.5 92.4,159.5ZM100.4,158C102.61,158 104.4,159.79 104.4,162V170C104.4,172.21 102.61,174 100.4,174H92.4C90.19,174 88.4,172.21 88.4,170V162C88.4,159.79 90.19,158 92.4,158H100.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M123.24,81C123.24,74.37 117.87,69 111.24,69H81.24C74.61,69 69.24,74.37 69.24,81V111C69.24,117.63 74.61,123 81.24,123H111.24C117.87,123 123.24,117.63 123.24,111V81Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M81.24,70.5H111.24C117.04,70.5 121.74,75.2 121.74,81V111C121.74,116.8 117.04,121.5 111.24,121.5H81.24C75.44,121.5 70.74,116.8 70.74,111V81C70.74,75.2 75.44,70.5 81.24,70.5ZM111.24,69C117.87,69 123.24,74.37 123.24,81V111C123.24,117.63 117.87,123 111.24,123H81.24C74.61,123 69.24,117.63 69.24,111V81C69.24,74.37 74.61,69 81.24,69H111.24Z" />
<path
android:fillColor="#82C91E"
android:fillType="evenOdd"
android:pathData="M86.97,83.57H106.41C107.15,83.57 107.85,83.87 108.38,84.39C108.9,84.92 109.19,85.63 109.19,86.37L109.19,110.31C109.19,111.38 107.95,111.96 107.14,111.28L102.1,107.57H86.97C86.23,107.57 85.52,107.28 85,106.75C84.48,106.23 84.19,105.52 84.19,104.78V86.37C84.19,85.63 84.48,84.92 85,84.39C85.52,83.87 86.23,83.57 86.97,83.57ZM94.36,95.95H88.63V88.04H104.74V95.95H99.12V98.69H101.17C101.54,98.69 101.73,99.14 101.47,99.4L97.03,103.87C96.87,104.03 96.6,104.03 96.44,103.87L92,99.4C91.74,99.14 91.93,98.69 92.3,98.69H94.36V95.95Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M172.4,132C172.4,127.58 168.82,124 164.4,124H148.4C143.98,124 140.4,127.58 140.4,132V148C140.4,152.42 143.98,156 148.4,156H164.4C168.82,156 172.4,152.42 172.4,148V132Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M148.4,125.5H164.4C167.99,125.5 170.9,128.41 170.9,132V148C170.9,151.59 167.99,154.5 164.4,154.5H148.4C144.81,154.5 141.9,151.59 141.9,148V132C141.9,128.41 144.81,125.5 148.4,125.5ZM164.4,124C168.82,124 172.4,127.58 172.4,132V148C172.4,152.42 168.82,156 164.4,156H148.4C143.98,156 140.4,152.42 140.4,148V132C140.4,127.58 143.98,124 148.4,124H164.4Z" />
<path
android:fillColor="#82C91E"
android:pathData="M152,138.54V145.66C152,146.24 152.47,146.71 153.05,146.71H153.55C154.13,146.71 154.6,146.24 154.6,145.66V138.54H152Z" />
<path
android:fillColor="#82C91E"
android:pathData="M154.6,135.11V133.77C154.6,133.19 154.13,132.71 153.55,132.71H153.05C152.48,132.71 152,133.19 152,133.77V135.11H154.6Z" />
<path
android:fillColor="#82C91E"
android:pathData="M160.38,140.89V133.77C160.38,133.19 159.91,132.71 159.33,132.71H158.83C158.26,132.71 157.78,133.19 157.78,133.77V140.89H160.38Z" />
<path
android:fillColor="#82C91E"
android:pathData="M157.78,144.32V145.66C157.78,146.24 158.26,146.71 158.83,146.71H159.33C159.91,146.71 160.38,146.24 160.38,145.66V144.32H157.78Z" />
<path
android:fillColor="#A3E635"
android:pathData="M151.58,141.3H150.24C149.66,141.3 149.19,141.77 149.19,142.36V142.85C149.19,143.43 149.66,143.91 150.24,143.91H151.58V141.3Z" />
<path
android:fillColor="#A3E635"
android:pathData="M162.13,141.3H155.01V143.91H162.13C162.71,143.91 163.19,143.43 163.19,142.85V142.36C163.19,141.77 162.71,141.3 162.13,141.3Z" />
<path
android:fillColor="#A3E635"
android:pathData="M157.36,135.53H150.24C149.66,135.53 149.19,136 149.19,136.58V137.07C149.19,137.65 149.66,138.13 150.24,138.13H157.36V135.53Z" />
<path
android:fillColor="#A3E635"
android:pathData="M162.13,135.53H160.79V138.13H162.13C162.71,138.13 163.19,137.66 163.19,137.07V136.58C163.19,136 162.71,135.53 162.13,135.53Z" />
<path
android:fillColor="#82C91E"
android:pathData="M28.03,50.65V64.89C28.03,66.05 28.97,67 30.13,67H31.12C32.28,67 33.23,66.05 33.23,64.89V50.65H28.03Z" />
<path
android:fillColor="#82C91E"
android:pathData="M33.22,43.79V41.11C33.22,39.95 32.28,39 31.12,39H30.13C28.98,39 28.03,39.95 28.03,41.11V43.79H33.22Z" />
<path
android:fillColor="#82C91E"
android:pathData="M44.78,55.35V41.11C44.78,39.95 43.84,39 42.68,39H41.69C40.54,39 39.58,39.95 39.58,41.11V55.35H44.78Z" />
<path
android:fillColor="#82C91E"
android:pathData="M39.58,62.21V64.89C39.58,66.05 40.54,67 41.69,67H42.68C43.84,67 44.79,66.05 44.79,64.89V62.21H39.58Z" />
<path
android:fillColor="#A3E635"
android:pathData="M27.19,56.18H24.51C23.35,56.18 22.4,57.12 22.4,58.29V59.28C22.4,60.43 23.34,61.39 24.51,61.39H27.19V56.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M48.29,56.18H34.05V61.39H48.29C49.45,61.39 50.4,60.43 50.4,59.28V58.29C50.4,57.12 49.45,56.18 48.29,56.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M38.75,44.62H24.51C23.35,44.62 22.4,45.56 22.4,46.73V47.72C22.4,48.88 23.34,49.83 24.51,49.83H38.75V44.62Z" />
<path
android:fillColor="#A3E635"
android:pathData="M48.29,44.62H45.61V49.83H48.29C49.45,49.83 50.4,48.89 50.4,47.72V46.73C50.4,45.56 49.45,44.62 48.29,44.62Z" />
</vector>

View File

@@ -0,0 +1,106 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="192">
<path
android:fillColor="#DDEDFE"
android:pathData="M189.85,29C189.85,22.37 184.48,17 177.85,17H86.85C80.23,17 74.85,22.37 74.85,29V163C74.85,169.63 80.23,175 86.85,175H177.85C184.48,175 189.85,169.63 189.85,163V29Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M86.85,18.5H177.85C183.65,18.5 188.35,23.2 188.35,29V163C188.35,168.8 183.65,173.5 177.85,173.5H86.85C81.05,173.5 76.35,168.8 76.35,163V29C76.35,23.2 81.05,18.5 86.85,18.5ZM177.85,17C184.48,17 189.85,22.37 189.85,29V163C189.85,169.63 184.48,175 177.85,175H86.85C80.23,175 74.85,169.63 74.85,163V29C74.85,22.37 80.23,17 86.85,17H177.85Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M183.85,35C183.85,30.58 180.27,27 175.85,27H88.85C84.44,27 80.85,30.58 80.85,35V157C80.85,161.42 84.44,165 88.85,165H175.85C180.27,165 183.85,161.42 183.85,157V35Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M88.85,28.5H175.85C179.44,28.5 182.35,31.41 182.35,35V157C182.35,160.59 179.44,163.5 175.85,163.5H88.85C85.26,163.5 82.35,160.59 82.35,157V35C82.35,31.41 85.26,28.5 88.85,28.5ZM175.85,27C180.27,27 183.85,30.58 183.85,35V157C183.85,161.42 180.27,165 175.85,165H88.85C84.44,165 80.85,161.42 80.85,157V35C80.85,30.58 84.44,27 88.85,27H175.85Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M132.35,38.26C131.52,38.26 130.85,37.58 130.85,36.76C130.85,35.93 131.52,35.26 132.35,35.26C133.18,35.26 133.85,35.93 133.85,36.76C133.85,37.58 133.18,38.26 132.35,38.26ZM132.35,39.76C130.7,39.76 129.35,38.41 129.35,36.76C129.35,35.1 130.7,33.76 132.35,33.76C134.01,33.76 135.35,35.1 135.35,36.76C135.35,38.41 134.01,39.76 132.35,39.76Z" />
<path
android:fillColor="#82C91E"
android:fillType="evenOdd"
android:pathData="M116.3,74H147.41C148.59,74 149.72,74.47 150.55,75.32C151.38,76.16 151.85,77.3 151.85,78.49L151.85,116.97C151.85,118.69 149.87,119.63 148.57,118.53L140.51,112.57H116.3C115.12,112.57 113.99,112.1 113.15,111.26C112.32,110.41 111.85,109.27 111.85,108.08V78.49C111.85,77.3 112.32,76.16 113.15,75.32C113.99,74.47 115.12,74 116.3,74ZM128.12,93.9H118.96V81.18H144.74V93.9H135.74V98.29H139.03C139.63,98.29 139.92,99.02 139.5,99.44L132.4,106.62C132.14,106.88 131.72,106.88 131.46,106.62L124.36,99.44C123.94,99.02 124.23,98.29 124.83,98.29H128.12V93.9Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M3.85,29.03C3.85,22.4 9.23,17.03 15.85,17.03H55.85C62.48,17.03 67.85,22.4 67.85,29.03V125.03C67.85,131.65 62.48,137.03 55.85,137.03H15.85C9.23,137.03 3.85,131.65 3.85,125.03V29.03Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M55.85,18.53H15.85C10.05,18.53 5.35,23.23 5.35,29.03V125.03C5.35,130.82 10.05,135.53 15.85,135.53H55.85C61.65,135.53 66.35,130.82 66.35,125.03V29.03C66.35,23.23 61.65,18.53 55.85,18.53ZM15.85,17.03C9.23,17.03 3.85,22.4 3.85,29.03V125.03C3.85,131.65 9.23,137.03 15.85,137.03H55.85C62.48,137.03 67.85,131.65 67.85,125.03V29.03C67.85,22.4 62.48,17.03 55.85,17.03H15.85Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M35.85,27.01C35.33,27.01 34.89,26.58 34.89,26.03C34.89,25.47 35.33,25.05 35.85,25.05C36.37,25.05 36.81,25.47 36.81,26.03C36.81,26.58 36.37,27.01 35.85,27.01ZM35.85,28.51C34.49,28.51 33.39,27.4 33.39,26.03C33.39,24.66 34.49,23.55 35.85,23.55C37.21,23.55 38.31,24.66 38.31,26.03C38.31,27.4 37.21,28.51 35.85,28.51Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M20.33,25.77C20.33,25.35 20.67,25.02 21.08,25.02H29.29C29.7,25.02 30.04,25.35 30.04,25.77C30.04,26.18 29.7,26.52 29.29,26.52H21.08C20.67,26.52 20.33,26.18 20.33,25.77Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M41.67,25.77C41.67,25.35 42,25.02 42.42,25.02L50.62,25.02C51.04,25.02 51.37,25.35 51.37,25.77C51.37,26.18 51.04,26.52 50.62,26.52L42.42,26.52C42,26.52 41.67,26.18 41.67,25.77Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M62.11,41.25C62.11,36.83 58.53,33.25 54.11,33.25H17.6C13.18,33.25 9.6,36.83 9.6,41.25V117.94C9.6,122.36 13.18,125.94 17.6,125.94H54.11C58.53,125.94 62.11,122.36 62.11,117.94V41.25Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M17.6,34.75H54.11C57.7,34.75 60.61,37.66 60.61,41.25V117.94C60.61,121.53 57.7,124.44 54.11,124.44H17.6C14.01,124.44 11.1,121.53 11.1,117.94V41.25C11.1,37.66 14.01,34.75 17.6,34.75ZM54.11,33.25C58.53,33.25 62.11,36.83 62.11,41.25V117.94C62.11,122.36 58.53,125.94 54.11,125.94H17.6C13.18,125.94 9.6,122.36 9.6,117.94V41.25C9.6,36.83 13.18,33.25 17.6,33.25H54.11Z" />
<path
android:fillColor="#82C91E"
android:pathData="M28,74.96V88.42C28,89.52 28.88,90.42 29.98,90.42H30.9C31.99,90.42 32.88,89.52 32.88,88.42V74.96H28Z" />
<path
android:fillColor="#82C91E"
android:pathData="M32.87,68.47V65.93C32.87,64.84 31.99,63.94 30.9,63.94H29.98C28.89,63.94 28,64.84 28,65.93V68.47H32.87Z" />
<path
android:fillColor="#82C91E"
android:pathData="M43.71,79.4V65.93C43.71,64.84 42.83,63.94 41.74,63.94H40.81C39.73,63.94 38.84,64.84 38.84,65.93V79.4H43.71Z" />
<path
android:fillColor="#82C91E"
android:pathData="M38.84,85.89V88.42C38.84,89.52 39.73,90.42 40.81,90.42H41.74C42.83,90.42 43.72,89.52 43.72,88.42V85.89H38.84Z" />
<path
android:fillColor="#A3E635"
android:pathData="M27.22,80.19H24.7C23.62,80.19 22.73,81.08 22.73,82.18V83.12C22.73,84.21 23.61,85.11 24.7,85.11H27.22V80.19Z" />
<path
android:fillColor="#A3E635"
android:pathData="M47,80.19H33.65V85.11H47C48.09,85.11 48.98,84.21 48.98,83.12V82.18C48.98,81.08 48.09,80.19 47,80.19Z" />
<path
android:fillColor="#A3E635"
android:pathData="M38.05,69.25H24.7C23.62,69.25 22.73,70.14 22.73,71.25V72.18C22.73,73.28 23.61,74.18 24.7,74.18H38.05V69.25Z" />
<path
android:fillColor="#A3E635"
android:pathData="M47,69.25H44.49V74.18H47C48.09,74.18 48.98,73.29 48.98,72.18V71.25C48.98,70.14 48.09,69.25 47,69.25Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M67.85,155C67.85,150.58 64.27,147 59.85,147H47.85C43.44,147 39.85,150.58 39.85,155V167C39.85,171.42 43.44,175 47.85,175H59.85C64.27,175 67.85,171.42 67.85,167V155Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M47.85,148.5H59.85C63.44,148.5 66.35,151.41 66.35,155V167C66.35,170.59 63.44,173.5 59.85,173.5H47.85C44.26,173.5 41.35,170.59 41.35,167V155C41.35,151.41 44.26,148.5 47.85,148.5ZM59.85,147C64.27,147 67.85,150.58 67.85,155V167C67.85,171.42 64.27,175 59.85,175H47.85C43.44,175 39.85,171.42 39.85,167V155C39.85,150.58 43.44,147 47.85,147H59.85Z" />
<path
android:fillColor="#196FDE"
android:pathData="M56.77,155.31H53.45L49.2,162.62H53.45L52.19,167.73L58.5,159.63H54.33L56.77,155.31Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M31.85,155C31.85,150.58 28.27,147 23.85,147H11.85C7.44,147 3.85,150.58 3.85,155V167C3.85,171.42 7.44,175 11.85,175H23.85C28.27,175 31.85,171.42 31.85,167V155Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M11.85,148.5H23.85C27.44,148.5 30.35,151.41 30.35,155V167C30.35,170.59 27.44,173.5 23.85,173.5H11.85C8.26,173.5 5.35,170.59 5.35,167V155C5.35,151.41 8.26,148.5 11.85,148.5ZM23.85,147C28.27,147 31.85,150.58 31.85,155V167C31.85,171.42 28.27,175 23.85,175H11.85C7.44,175 3.85,171.42 3.85,167V155C3.85,150.58 7.44,147 11.85,147H23.85Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M11.63,158.86C12.45,158.05 13.42,157.4 14.49,156.96C15.55,156.51 16.7,156.29 17.85,156.29C19.01,156.29 20.15,156.51 21.22,156.96C22.29,157.4 23.26,158.05 24.07,158.86L23.01,159.92C22.33,159.25 21.53,158.71 20.64,158.34C19.76,157.98 18.81,157.79 17.85,157.79C16.89,157.79 15.94,157.98 15.06,158.34C14.17,158.71 13.37,159.25 12.69,159.92L11.63,158.86Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M13.96,161.19C14.47,160.68 15.08,160.27 15.75,159.99C16.41,159.72 17.13,159.57 17.85,159.57C18.58,159.57 19.29,159.72 19.96,159.99C20.63,160.27 21.24,160.68 21.75,161.19L20.69,162.25C20.32,161.88 19.87,161.58 19.39,161.38C18.9,161.18 18.38,161.07 17.85,161.07C17.33,161.07 16.81,161.18 16.32,161.38C15.83,161.58 15.39,161.88 15.02,162.25L13.96,161.19Z" />
<path
android:fillColor="#65A30D"
android:pathData="M18.81,164.13C18.81,164.65 18.38,165.08 17.85,165.08C17.32,165.08 16.9,164.65 16.9,164.13C16.9,163.6 17.32,163.17 17.85,163.17C18.38,163.17 18.81,163.6 18.81,164.13Z" />
</vector>

View File

@@ -0,0 +1,70 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#82C91E"
android:pathData="M102.27,89.08L92.96,83.81L92.96,94.34L102.27,89.08Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M93.44,102.92L102.75,108.18L102.75,97.66L93.44,102.92Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M6.85,36.03C6.85,29.4 12.23,24.03 18.85,24.03H72.85C79.48,24.03 84.85,29.4 84.85,36.03V157.03C84.85,163.66 79.48,169.03 72.85,169.03H18.85C12.23,169.03 6.85,163.66 6.85,157.03V36.03Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M72.85,25.53H18.85C13.05,25.53 8.35,30.23 8.35,36.03V157.03C8.35,162.83 13.05,167.53 18.85,167.53H72.85C78.65,167.53 83.35,162.83 83.35,157.03V36.03C83.35,30.23 78.65,25.53 72.85,25.53ZM18.85,24.03C12.23,24.03 6.85,29.4 6.85,36.03V157.03C6.85,163.66 12.23,169.03 18.85,169.03H72.85C79.48,169.03 84.85,163.66 84.85,157.03V36.03C84.85,29.4 79.48,24.03 72.85,24.03H18.85Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M45.85,36.41C45.03,36.41 44.35,35.74 44.35,34.91C44.35,34.08 45.03,33.41 45.85,33.41C46.68,33.41 47.35,34.08 47.35,34.91C47.35,35.74 46.68,36.41 45.85,36.41ZM45.85,37.91C44.2,37.91 42.85,36.57 42.85,34.91C42.85,33.25 44.2,31.91 45.85,31.91C47.51,31.91 48.85,33.25 48.85,34.91C48.85,36.57 47.51,37.91 45.85,37.91Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M27.1,34.59C27.1,34.18 27.44,33.84 27.85,33.84H37.85C38.27,33.84 38.6,34.18 38.6,34.59C38.6,35.01 38.27,35.34 37.85,35.34H27.85C27.44,35.34 27.1,35.01 27.1,34.59Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M53.1,34.59C53.1,34.18 53.44,33.84 53.85,33.84L63.85,33.84C64.27,33.84 64.6,34.18 64.6,34.59C64.6,35.01 64.27,35.34 63.85,35.34L53.85,35.34C53.44,35.34 53.1,35.01 53.1,34.59Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M77.85,51.63C77.85,47.22 74.27,43.63 69.85,43.63H21.85C17.44,43.63 13.85,47.22 13.85,51.63V147.63C13.85,152.05 17.44,155.63 21.85,155.63H69.85C74.27,155.63 77.85,152.05 77.85,147.63V51.63Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M21.85,45.13H69.85C73.44,45.13 76.35,48.04 76.35,51.63V147.63C76.35,151.22 73.44,154.13 69.85,154.13H21.85C18.26,154.13 15.35,151.22 15.35,147.63V51.63C15.35,48.04 18.26,45.13 21.85,45.13ZM69.85,43.63C74.27,43.63 77.85,47.22 77.85,51.63V147.63C77.85,152.05 74.27,155.63 69.85,155.63H21.85C17.44,155.63 13.85,152.05 13.85,147.63V51.63C13.85,47.22 17.44,43.63 21.85,43.63H69.85Z" />
<path
android:fillColor="#82C91E"
android:pathData="M51.52,114H47.74V110.22H51.52V114ZM47.74,100.78H43.96V110.22H47.74V100.78ZM62.85,97H59.08V104.56H62.85V97ZM59.08,93.22H55.3V97H59.08V93.22ZM36.41,97H32.63V100.78H36.41V97ZM32.63,93.22H28.85V97H32.63V93.22ZM45.85,83.78H49.63V80H45.85V83.78ZM31.69,82.83V88.5H37.35V82.83H31.69ZM40.19,91.33H28.85V80H40.19V91.33ZM31.69,105.5V111.17H37.35V105.5H31.69ZM40.19,114H28.85V102.67H40.19V114ZM54.35,82.83V88.5H60.02V82.83H54.35ZM62.85,91.33H51.52V80H57.19H62.85V91.33ZM59.08,110.22V104.56H51.52V108.33H55.3V114H62.85V110.22H59.08ZM55.3,97H47.74V100.78H55.3V97ZM47.74,93.22H36.41V97H40.19V100.78H43.96V97H47.74V93.22ZM49.63,91.33V87.56H45.85V83.78H42.08V91.33H49.63ZM35.94,84.25H33.1V87.08H35.94V84.25ZM35.94,106.92H33.1V109.75H35.94V106.92ZM58.6,84.25H55.77V87.08H58.6V84.25Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M109.85,36.03C109.85,29.4 115.23,24.03 121.85,24.03H175.85C182.48,24.03 187.85,29.4 187.85,36.03V157.03C187.85,163.66 182.48,169.03 175.85,169.03H121.85C115.23,169.03 109.85,163.66 109.85,157.03V36.03Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M175.85,25.53H121.85C116.06,25.53 111.35,30.23 111.35,36.03V157.03C111.35,162.83 116.06,167.53 121.85,167.53H175.85C181.65,167.53 186.35,162.83 186.35,157.03V36.03C186.35,30.23 181.65,25.53 175.85,25.53ZM121.85,24.03C115.23,24.03 109.85,29.4 109.85,36.03V157.03C109.85,163.66 115.23,169.03 121.85,169.03H175.85C182.48,169.03 187.85,163.66 187.85,157.03V36.03C187.85,29.4 182.48,24.03 175.85,24.03H121.85Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M148.85,36.41C148.02,36.41 147.35,35.74 147.35,34.91C147.35,34.08 148.02,33.41 148.85,33.41C149.68,33.41 150.35,34.08 150.35,34.91C150.35,35.74 149.68,36.41 148.85,36.41ZM148.85,37.91C147.2,37.91 145.85,36.57 145.85,34.91C145.85,33.25 147.2,31.91 148.85,31.91C150.51,31.91 151.85,33.25 151.85,34.91C151.85,36.57 150.51,37.91 148.85,37.91Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M130.1,34.59C130.1,34.18 130.44,33.84 130.85,33.84H140.85C141.27,33.84 141.6,34.18 141.6,34.59C141.6,35.01 141.27,35.34 140.85,35.34H130.85C130.44,35.34 130.1,35.01 130.1,34.59Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M156.1,34.59C156.1,34.18 156.44,33.84 156.85,33.84L166.85,33.84C167.27,33.84 167.6,34.18 167.6,34.59C167.6,35.01 167.27,35.34 166.85,35.34L156.85,35.34C156.44,35.34 156.1,35.01 156.1,34.59Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M180.85,51.63C180.85,47.22 177.27,43.63 172.85,43.63H124.85C120.43,43.63 116.85,47.22 116.85,51.63V147.63C116.85,152.05 120.43,155.63 124.85,155.63H172.85C177.27,155.63 180.85,152.05 180.85,147.63V51.63Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M124.85,45.13H172.85C176.44,45.13 179.35,48.04 179.35,51.63V147.63C179.35,151.22 176.44,154.13 172.85,154.13H124.85C121.26,154.13 118.35,151.22 118.35,147.63V51.63C118.35,48.04 121.26,45.13 124.85,45.13ZM172.85,43.63C177.27,43.63 180.85,47.22 180.85,51.63V147.63C180.85,152.05 177.27,155.63 172.85,155.63H124.85C120.43,155.63 116.85,152.05 116.85,147.63V51.63C116.85,47.22 120.43,43.63 124.85,43.63H172.85Z" />
<path
android:fillColor="#2B8EF1"
android:pathData="M154.52,114H150.74V110.22H154.52V114ZM150.74,100.78H146.96V110.22H150.74V100.78ZM165.85,97H162.08V104.56H165.85V97ZM162.08,93.22H158.3V97H162.08V93.22ZM139.41,97H135.63V100.78H139.41V97ZM135.63,93.22H131.85V97H135.63V93.22ZM148.85,83.78H152.63V80H148.85V83.78ZM134.69,82.83V88.5H140.35V82.83H134.69ZM143.19,91.33H131.85V80H143.19V91.33ZM134.69,105.5V111.17H140.35V105.5H134.69ZM143.19,114H131.85V102.67H143.19V114ZM157.35,82.83V88.5H163.02V82.83H157.35ZM165.85,91.33H154.52V80H160.19H165.85V91.33ZM162.08,110.22V104.56H154.52V108.33H158.3V114H165.85V110.22H162.08ZM158.3,97H150.74V100.78H158.3V97ZM150.74,93.22H139.41V97H143.19V100.78H146.96V97H150.74V93.22ZM152.63,91.33V87.56H148.85V83.78H145.08V91.33H152.63ZM138.94,84.25H136.1V87.08H138.94V84.25ZM138.94,106.92H136.1V109.75H138.94V106.92ZM161.6,84.25H158.77V87.08H161.6V84.25Z" />
</vector>

View File

@@ -0,0 +1,72 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="96dp"
android:viewportWidth="192"
android:viewportHeight="96">
<path
android:fillColor="#e5e7eb"
android:pathData="m180.9,17c0,-4.42 -3.58,-8 -8,-8h-26c-4.42,0 -8,3.58 -8,8v62c0,4.42 3.58,8 8,8h26c4.42,0 8,-3.58 8,-8z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m146.9,10.5h26c3.59,0 6.5,2.91 6.5,6.5v62c0,3.59 -2.91,6.5 -6.5,6.5h-26c-3.59,0 -6.5,-2.91 -6.5,-6.5L140.4,17c0,-3.59 2.91,-6.5 6.5,-6.5zM172.9,9c4.42,0 8,3.58 8,8v62c0,4.42 -3.58,8 -8,8h-26c-4.42,0 -8,-3.58 -8,-8L138.9,17c0,-4.42 3.58,-8 8,-8z" />
<path
android:fillColor="#f9fafb"
android:pathData="m180.9,23.25h-42v54h42z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m140.4,24.75h39v51h-39zM180.9,23.25v54h-42v-54z" />
<path
android:fillColor="#9ca3af"
android:pathData="m163.24,60.25h-2.22v-2.22h2.22zM161.01,52.47h-2.22v5.56h2.22zM169.9,50.25h-2.22v4.44h2.22zM167.68,48.03h-2.22v2.22h2.22zM154.35,50.25h-2.22v2.22h2.22zM152.12,48.03h-2.22v2.22h2.22zM159.9,42.47h2.22L162.12,40.25h-2.22zM151.57,41.91v3.33h3.33v-3.33zM156.57,46.91h-6.67L149.9,40.25h6.67zM151.57,55.25v3.33h3.33L154.9,55.25ZM156.57,60.25h-6.67v-6.67h6.67zM164.9,41.91v3.33h3.33v-3.33zM169.9,46.91h-6.67L163.24,40.25h3.33,3.33zM167.68,58.03v-3.33h-4.44v2.22h2.22v3.33h4.44v-2.22zM165.46,50.25h-4.45v2.22h4.45zM161.01,48.03h-6.67v2.22h2.22v2.22h2.22L158.79,50.25h2.22zM162.12,46.91v-2.22h-2.22v-2.22h-2.22v4.44zM154.07,42.75h-1.67v1.67h1.67zM154.07,56.08h-1.67v1.67h1.67zM167.4,42.75h-1.67v1.67h1.67z" />
<path
android:fillColor="#9ca3af"
android:pathData="m158.9,17c0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m151.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m163.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#e5e7eb"
android:pathData="m53.9,17c0,-4.42 -3.58,-8 -8,-8H19.9c-4.42,0 -8,3.58 -8,8v62c0,4.42 3.58,8 8,8H45.9c4.42,0 8,-3.58 8,-8z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="M19.9,10.5H45.9c3.59,0 6.5,2.91 6.5,6.5v62c0,3.59 -2.91,6.5 -6.5,6.5H19.9c-3.59,0 -6.5,-2.91 -6.5,-6.5V17c0,-3.59 2.91,-6.5 6.5,-6.5zM45.9,9c4.42,0 8,3.58 8,8v62c0,4.42 -3.58,8 -8,8H19.9c-4.42,0 -8,-3.58 -8,-8V17c0,-4.42 3.58,-8 8,-8z" />
<path
android:fillColor="#f9fafb"
android:pathData="M53.9,23.25H11.9v54H53.9Z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="M13.4,24.75L52.4,24.75v51L13.4,75.75ZM53.9,23.25v54L11.9,77.25v-54z" />
<path
android:fillColor="#9ca3af"
android:pathData="m36.23,60.25h-2.22v-2.22h2.22zM34.01,52.47h-2.22v5.56h2.22zM42.9,50.25h-2.22v4.44h2.22zM40.68,48.03h-2.22v2.22h2.22zM27.35,50.25h-2.22v2.22h2.22zM25.12,48.03h-2.22v2.22h2.22zM32.9,42.47h2.22L35.12,40.25L32.9,40.25ZM24.57,41.91v3.33h3.33v-3.33zM29.57,46.91L22.9,46.91L22.9,40.25h6.67zM24.57,55.25v3.33h3.33L27.9,55.25ZM29.57,60.25h-6.67v-6.67h6.67zM37.9,41.91v3.33h3.33v-3.33zM42.9,46.91L36.23,46.91L36.23,40.25h3.33,3.33zM40.68,58.03v-3.33h-4.44v2.22h2.22L38.46,60.25L42.9,60.25L42.9,58.03ZM38.46,50.25h-4.44v2.22h4.44zM34.01,48.03h-6.67v2.22h2.22v2.22h2.22L31.79,50.25h2.22zM35.12,46.91v-2.22h-2.22v-2.22h-2.22v4.44zM27.07,42.75h-1.67v1.67h1.67zM27.07,56.08L25.4,56.08L25.4,57.75L27.07,57.75ZM40.4,42.75h-1.67v1.67h1.67z" />
<path
android:fillColor="#9ca3af"
android:pathData="m31.9,17c0,0.55 0.45,1 1,1 0.55,0 1,-0.45 1,-1 0,-0.55 -0.45,-1 -1,-1 -0.55,0 -1,0.45 -1,1z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m24.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#9ca3af"
android:fillType="evenOdd"
android:pathData="m36.15,17.02c0,-0.41 0.34,-0.75 0.75,-0.75h4c0.41,0 0.75,0.34 0.75,0.75 0,0.41 -0.34,0.75 -0.75,0.75h-4c-0.41,0 -0.75,-0.34 -0.75,-0.75z" />
<path
android:fillColor="#f59e0b"
android:fillType="evenOdd"
android:pathData="m96,42.49c-0.58,0 -1.04,0.47 -1.04,1.04v12.59c0,0.58 0.47,1.04 1.04,1.04 0.58,0 1.04,-0.47 1.04,-1.04v-12.59c0,-0.58 -0.47,-1.04 -1.04,-1.04zM96,60.01c-0.58,0 -1.04,0.47 -1.04,1.04v0.12c0,0.58 0.47,1.04 1.04,1.04 0.58,0 1.04,-0.47 1.04,-1.04L97.04,61.06c0,-0.58 -0.47,-1.04 -1.04,-1.04z"
android:strokeWidth="1.39318" />
<path
android:fillColor="#f59e0b"
android:fillType="evenOdd"
android:pathData="M114.71,64.86 L96.69,34.28c-0.3,-0.51 -1.08,-0.51 -1.38,0L77.29,64.86c-0.25,0.42 0.02,1.08 0.69,1.08h36.03c0.67,0 0.94,-0.66 0.69,-1.08zM98.49,33.21c-1.11,-1.88 -3.87,-1.88 -4.98,0L75.49,63.8c-1.11,1.88 0.28,4.23 2.49,4.23h36.03c2.21,0 3.6,-2.35 2.49,-4.23z"
android:strokeWidth="1.39318" />
</vector>

View File

@@ -0,0 +1,176 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#E5E7EB"
android:pathData="M72.4,56C72.4,51.58 68.82,48 64.4,48H38.4C33.98,48 30.4,51.58 30.4,56V118C30.4,122.42 33.98,126 38.4,126H64.4C68.82,126 72.4,122.42 72.4,118V56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M38.4,49.5H64.4C67.99,49.5 70.9,52.41 70.9,56V118C70.9,121.59 67.99,124.5 64.4,124.5H38.4C34.81,124.5 31.9,121.59 31.9,118V56C31.9,52.41 34.81,49.5 38.4,49.5ZM64.4,48C68.82,48 72.4,51.58 72.4,56V118C72.4,122.42 68.82,126 64.4,126H38.4C33.98,126 30.4,122.42 30.4,118V56C30.4,51.58 33.98,48 38.4,48H64.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M72.4,62.25H30.4V116.25H72.4V62.25Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M31.9,63.75H70.9V114.75H31.9V63.75ZM72.4,62.25V116.25H30.4V62.25H72.4Z" />
<path
android:fillColor="#9CA3AF"
android:pathData="M50.4,56C50.4,56.55 50.85,57 51.4,57C51.95,57 52.4,56.55 52.4,56C52.4,55.45 51.95,55 51.4,55C50.85,55 50.4,55.45 50.4,56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M42.65,56.02C42.65,55.61 42.99,55.27 43.4,55.27H47.4C47.82,55.27 48.15,55.61 48.15,56.02C48.15,56.44 47.82,56.77 47.4,56.77H43.4C42.99,56.77 42.65,56.44 42.65,56.02Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M54.65,56.02C54.65,55.61 54.99,55.27 55.4,55.27H59.4C59.82,55.27 60.15,55.61 60.15,56.02C60.15,56.44 59.82,56.77 59.4,56.77H55.4C54.99,56.77 54.65,56.44 54.65,56.02Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M50.4,51C50.4,46.58 46.82,43 42.4,43H16.4C11.98,43 8.4,46.58 8.4,51V113C8.4,117.42 11.98,121 16.4,121H42.4C46.82,121 50.4,117.42 50.4,113V51Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M16.4,44.5H42.4C45.99,44.5 48.9,47.41 48.9,51V113C48.9,116.59 45.99,119.5 42.4,119.5H16.4C12.81,119.5 9.9,116.59 9.9,113V51C9.9,47.41 12.81,44.5 16.4,44.5ZM42.4,43C46.82,43 50.4,46.58 50.4,51V113C50.4,117.42 46.82,121 42.4,121H16.4C11.98,121 8.4,117.42 8.4,113V51C8.4,46.58 11.98,43 16.4,43H42.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M50.4,57.25H8.4V111.25H50.4V57.25Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M9.9,58.75H48.9V109.75H9.9V58.75ZM50.4,57.25V111.25H8.4V57.25H50.4Z" />
<path
android:fillColor="#9CA3AF"
android:pathData="M28.4,51C28.4,51.55 28.85,52 29.4,52C29.95,52 30.4,51.55 30.4,51C30.4,50.45 29.95,50 29.4,50C28.85,50 28.4,50.45 28.4,51Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M20.65,51.02C20.65,50.61 20.99,50.27 21.4,50.27H25.4C25.82,50.27 26.15,50.61 26.15,51.02C26.15,51.44 25.82,51.77 25.4,51.77H21.4C20.99,51.77 20.65,51.44 20.65,51.02Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M32.65,51.02C32.65,50.61 32.99,50.27 33.4,50.27H37.4C37.82,50.27 38.15,50.61 38.15,51.02C38.15,51.44 37.82,51.77 37.4,51.77H33.4C32.99,51.77 32.65,51.44 32.65,51.02Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M61.4,38.5C66.65,38.5 70.9,34.25 70.9,29C70.9,23.75 66.65,19.5 61.4,19.5C56.15,19.5 51.9,23.75 51.9,29C51.9,34.25 56.15,38.5 61.4,38.5ZM61.4,40C67.48,40 72.4,35.08 72.4,29C72.4,22.92 67.48,18 61.4,18C55.33,18 50.4,22.92 50.4,29C50.4,35.08 55.33,40 61.4,40Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M65.95,25.99C66.23,26.3 66.21,26.77 65.91,27.05L59.93,32.52L56.9,29.74C56.59,29.46 56.57,28.99 56.85,28.68C57.13,28.37 57.6,28.35 57.91,28.63L59.93,30.48L64.9,25.95C65.2,25.67 65.68,25.69 65.95,25.99Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M176.4,56C176.4,51.58 172.82,48 168.4,48H142.4C137.98,48 134.4,51.58 134.4,56V118C134.4,122.42 137.98,126 142.4,126H168.4C172.82,126 176.4,122.42 176.4,118V56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M142.4,49.5H168.4C171.99,49.5 174.9,52.41 174.9,56V118C174.9,121.59 171.99,124.5 168.4,124.5H142.4C138.81,124.5 135.9,121.59 135.9,118V56C135.9,52.41 138.81,49.5 142.4,49.5ZM168.4,48C172.82,48 176.4,51.58 176.4,56V118C176.4,122.42 172.82,126 168.4,126H142.4C137.98,126 134.4,122.42 134.4,118V56C134.4,51.58 137.98,48 142.4,48H168.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M176.4,62.25H134.4V116.25H176.4V62.25Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M135.9,63.75H174.9V114.75H135.9V63.75ZM176.4,62.25V116.25H134.4V62.25H176.4Z" />
<path
android:fillColor="#9CA3AF"
android:pathData="M154.4,56C154.4,56.55 154.85,57 155.4,57C155.95,57 156.4,56.55 156.4,56C156.4,55.45 155.95,55 155.4,55C154.85,55 154.4,55.45 154.4,56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M146.65,56.02C146.65,55.61 146.99,55.27 147.4,55.27H151.4C151.82,55.27 152.15,55.61 152.15,56.02C152.15,56.44 151.82,56.77 151.4,56.77H147.4C146.99,56.77 146.65,56.44 146.65,56.02Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M158.65,56.02C158.65,55.61 158.99,55.27 159.4,55.27H163.4C163.82,55.27 164.15,55.61 164.15,56.02C164.15,56.44 163.82,56.77 163.4,56.77H159.4C158.99,56.77 158.65,56.44 158.65,56.02Z" />
<path
android:fillColor="#DC2626"
android:fillType="evenOdd"
android:pathData="M165.4,38.5C170.65,38.5 174.9,34.25 174.9,29C174.9,23.75 170.65,19.5 165.4,19.5C160.15,19.5 155.9,23.75 155.9,29C155.9,34.25 160.15,38.5 165.4,38.5ZM165.4,40C171.48,40 176.4,35.08 176.4,29C176.4,22.92 171.48,18 165.4,18C159.33,18 154.4,22.92 154.4,29C154.4,35.08 159.33,40 165.4,40Z" />
<path
android:fillColor="#DC2626"
android:fillType="evenOdd"
android:pathData="M161.87,25.47C162.16,25.18 162.64,25.18 162.93,25.47L165.4,27.94L167.87,25.47C168.16,25.18 168.64,25.18 168.93,25.47C169.23,25.76 169.23,26.24 168.93,26.53L166.46,29L168.93,31.47C169.23,31.76 169.23,32.24 168.93,32.53C168.64,32.82 168.16,32.82 167.87,32.53L165.4,30.06L162.93,32.53C162.64,32.82 162.16,32.82 161.87,32.53C161.58,32.24 161.58,31.76 161.87,31.47L164.34,29L161.87,26.53C161.58,26.24 161.58,25.76 161.87,25.47Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M125.56,78.48C126.16,76.94 127.64,75.92 129.29,75.92H145.62C147.27,75.92 148.75,76.94 149.35,78.48L151.45,83.92H123.45L125.56,78.48Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M124.86,78.21C125.57,76.38 127.33,75.17 129.29,75.17H145.62C147.58,75.17 149.34,76.38 150.05,78.21L152.55,84.67H122.36L124.86,78.21ZM129.29,76.67C127.95,76.67 126.75,77.5 126.26,78.75L124.55,83.17H150.36L148.65,78.75C148.16,77.5 146.96,76.67 145.62,76.67H129.29Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M113.4,91.92C113.4,87.5 116.98,83.92 121.4,83.92H153.4C157.82,83.92 161.4,87.5 161.4,91.92V111.92C161.4,116.34 157.82,119.92 153.4,119.92H121.4C116.98,119.92 113.4,116.34 113.4,111.92V91.92Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M112.65,91.92C112.65,87.09 116.57,83.17 121.4,83.17H153.4C158.23,83.17 162.15,87.09 162.15,91.92V111.92C162.15,116.75 158.23,120.67 153.4,120.67H121.4C116.57,120.67 112.65,116.75 112.65,111.92V91.92ZM121.4,84.67C117.4,84.67 114.15,87.92 114.15,91.92V111.92C114.15,115.93 117.4,119.17 121.4,119.17H153.4C157.4,119.17 160.65,115.93 160.65,111.92V91.92C160.65,87.92 157.4,84.67 153.4,84.67H121.4Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M150.4,101.92C150.4,109.1 144.58,114.92 137.4,114.92C130.22,114.92 124.4,109.1 124.4,101.92C124.4,94.74 130.22,88.92 137.4,88.92C144.58,88.92 150.4,94.74 150.4,101.92Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M137.4,113.42C143.75,113.42 148.9,108.27 148.9,101.92C148.9,95.57 143.75,90.42 137.4,90.42C131.05,90.42 125.9,95.57 125.9,101.92C125.9,108.27 131.05,113.42 137.4,113.42ZM137.4,114.92C144.58,114.92 150.4,109.1 150.4,101.92C150.4,94.74 144.58,88.92 137.4,88.92C130.22,88.92 124.4,94.74 124.4,101.92C124.4,109.1 130.22,114.92 137.4,114.92Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M144.4,101.92C144.4,105.79 141.27,108.92 137.4,108.92C133.54,108.92 130.4,105.79 130.4,101.92C130.4,98.05 133.54,94.92 137.4,94.92C141.27,94.92 144.4,98.05 144.4,101.92Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M137.4,107.42C140.44,107.42 142.9,104.96 142.9,101.92C142.9,98.88 140.44,96.42 137.4,96.42C134.36,96.42 131.9,98.88 131.9,101.92C131.9,104.96 134.36,107.42 137.4,107.42ZM137.4,108.92C141.27,108.92 144.4,105.79 144.4,101.92C144.4,98.05 141.27,94.92 137.4,94.92C133.54,94.92 130.4,98.05 130.4,101.92C130.4,105.79 133.54,108.92 137.4,108.92Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M280.4,56C280.4,51.58 276.82,48 272.4,48H246.4C241.98,48 238.4,51.58 238.4,56V118C238.4,122.42 241.98,126 246.4,126H272.4C276.82,126 280.4,122.42 280.4,118V56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M246.4,49.5H272.4C275.99,49.5 278.9,52.41 278.9,56V118C278.9,121.59 275.99,124.5 272.4,124.5H246.4C242.81,124.5 239.9,121.59 239.9,118V56C239.9,52.41 242.81,49.5 246.4,49.5ZM272.4,48C276.82,48 280.4,51.58 280.4,56V118C280.4,122.42 276.82,126 272.4,126H246.4C241.98,126 238.4,122.42 238.4,118V56C238.4,51.58 241.98,48 246.4,48H272.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M280.4,62.25H238.4V116.25H280.4V62.25Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M239.9,63.75H278.9V114.75H239.9V63.75ZM280.4,62.25V116.25H238.4V62.25H280.4Z" />
<path
android:fillColor="#9CA3AF"
android:pathData="M258.4,56C258.4,56.55 258.85,57 259.4,57C259.95,57 260.4,56.55 260.4,56C260.4,55.45 259.95,55 259.4,55C258.85,55 258.4,55.45 258.4,56Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M250.65,56.02C250.65,55.61 250.99,55.27 251.4,55.27H255.4C255.82,55.27 256.15,55.61 256.15,56.02C256.15,56.44 255.82,56.77 255.4,56.77H251.4C250.99,56.77 250.65,56.44 250.65,56.02Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M262.65,56.02C262.65,55.61 262.99,55.27 263.4,55.27H267.4C267.82,55.27 268.15,55.61 268.15,56.02C268.15,56.44 267.82,56.77 267.4,56.77H263.4C262.99,56.77 262.65,56.44 262.65,56.02Z" />
<path
android:fillColor="#DC2626"
android:fillType="evenOdd"
android:pathData="M269.4,38.5C274.65,38.5 278.9,34.25 278.9,29C278.9,23.75 274.65,19.5 269.4,19.5C264.15,19.5 259.9,23.75 259.9,29C259.9,34.25 264.15,38.5 269.4,38.5ZM269.4,40C275.48,40 280.4,35.08 280.4,29C280.4,22.92 275.48,18 269.4,18C263.33,18 258.4,22.92 258.4,29C258.4,35.08 263.33,40 269.4,40Z" />
<path
android:fillColor="#DC2626"
android:fillType="evenOdd"
android:pathData="M265.87,25.47C266.16,25.18 266.64,25.18 266.93,25.47L269.4,27.94L271.87,25.47C272.16,25.18 272.64,25.18 272.93,25.47C273.23,25.76 273.23,26.24 272.93,26.53L270.46,29L272.93,31.47C273.23,31.76 273.23,32.24 272.93,32.53C272.64,32.82 272.16,32.82 271.87,32.53L269.4,30.06L266.93,32.53C266.64,32.82 266.16,32.82 265.87,32.53C265.58,32.24 265.58,31.76 265.87,31.47L268.34,29L265.87,26.53C265.58,26.24 265.58,25.76 265.87,25.47Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M259.32,85C263.74,85 267.32,88.58 267.32,93L267.32,113C267.32,117.42 263.74,121 259.32,121L225.32,121C220.9,121 217.32,117.42 217.32,113L217.32,93C217.32,88.58 220.9,85 225.32,85L259.32,85Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M259.32,84.25C264.15,84.25 268.07,88.17 268.07,93L268.07,113C268.07,117.83 264.15,121.75 259.32,121.75L225.32,121.75C220.49,121.75 216.57,117.83 216.57,113L216.57,93C216.57,88.17 220.49,84.25 225.32,84.25L259.32,84.25ZM266.57,93C266.57,89 263.32,85.75 259.32,85.75L225.32,85.75C221.32,85.75 218.07,89 218.07,93L218.07,113C218.07,117 221.32,120.25 225.32,120.25L259.32,120.25C263.32,120.25 266.57,117 266.57,113L266.57,93Z" />
<path
android:fillColor="#E5E7EB"
android:pathData="M264.15,91.29C265.47,90.34 267.32,91.28 267.32,92.91L267.32,113C267.32,117.42 263.74,121 259.32,121L225.32,121C220.9,121 217.32,117.42 217.32,113L217.32,92.91C217.32,91.28 219.17,90.34 220.49,91.29L242.32,107.06L264.15,91.29Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M235.04,102.72L217.88,90.33L218.76,89.11L242.32,106.13L265.88,89.11L266.76,90.33L249.6,102.72L266.76,115.11L265.88,116.33L248.32,103.64L242.32,107.98L236.32,103.64L218.76,116.33L217.88,115.11L235.04,102.72Z" />
<path
android:fillColor="#9CA3AF"
android:fillType="evenOdd"
android:pathData="M259.32,84.25C264.15,84.25 268.07,88.17 268.07,93L268.07,113C268.07,117.83 264.15,121.75 259.32,121.75L225.32,121.75C220.49,121.75 216.57,117.83 216.57,113L216.57,93C216.57,88.17 220.49,84.25 225.32,84.25L259.32,84.25ZM266.57,93C266.57,89 263.32,85.75 259.32,85.75L225.32,85.75C221.32,85.75 218.07,89 218.07,93L218.07,113C218.07,117 221.32,120.25 225.32,120.25L259.32,120.25C263.32,120.25 266.57,117 266.57,113L266.57,93Z" />
</vector>

View File

@@ -0,0 +1,103 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="193"
android:viewportHeight="193">
<path
android:fillColor="#E2E8F0"
android:pathData="M112.4,21.88C112.4,17.46 108.82,13.88 104.4,13.88H88.4C83.98,13.88 80.4,17.46 80.4,21.88V37.88C80.4,42.3 83.98,45.88 88.4,45.88H104.4C108.82,45.88 112.4,42.3 112.4,37.88V21.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M88.4,15.38H104.4C107.99,15.38 110.9,18.29 110.9,21.88V37.88C110.9,41.47 107.99,44.38 104.4,44.38H88.4C84.81,44.38 81.9,41.47 81.9,37.88V21.88C81.9,18.29 84.81,15.38 88.4,15.38ZM104.4,13.88C108.82,13.88 112.4,17.46 112.4,21.88V37.88C112.4,42.3 108.82,45.88 104.4,45.88H88.4C83.98,45.88 80.4,42.3 80.4,37.88V21.88C80.4,17.46 83.98,13.88 88.4,13.88H104.4Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M60.4,127.88C60.4,123.46 56.82,119.88 52.4,119.88H36.4C31.98,119.88 28.4,123.46 28.4,127.88V143.88C28.4,148.3 31.98,151.88 36.4,151.88H52.4C56.82,151.88 60.4,148.3 60.4,143.88V127.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M36.4,121.38H52.4C55.99,121.38 58.9,124.29 58.9,127.88V143.88C58.9,147.47 55.99,150.38 52.4,150.38H36.4C32.81,150.38 29.9,147.47 29.9,143.88V127.88C29.9,124.29 32.81,121.38 36.4,121.38ZM52.4,119.88C56.82,119.88 60.4,123.46 60.4,127.88V143.88C60.4,148.3 56.82,151.88 52.4,151.88H36.4C31.98,151.88 28.4,148.3 28.4,143.88V127.88C28.4,123.46 31.98,119.88 36.4,119.88H52.4Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M43.65,116.88L43.65,100.88L45.15,100.88L45.15,116.88L43.65,116.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M95.65,66.88L95.65,48.88L97.15,48.88L97.15,66.88L95.65,66.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M95.65,155.88L95.65,126.88L97.15,126.88L97.15,155.88L95.65,155.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M150.15,67.88V92.88H148.65V67.88H150.15Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M149.17,97.33H126.4V95.83H149.17C153.58,95.83 157.15,99.41 157.15,103.81L157.15,122.58L155.65,122.58L155.65,103.81C155.65,100.24 152.75,97.33 149.17,97.33Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M43.63,96.13L66.4,96.13L66.4,97.63L43.63,97.63C39.22,97.63 35.65,94.06 35.65,89.65L35.65,70.88L37.15,70.88L37.15,89.65C37.15,93.23 40.05,96.13 43.63,96.13Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M157.4,52.88C157.4,50.67 155.61,48.88 153.4,48.88H145.4C143.19,48.88 141.4,50.67 141.4,52.88V60.88C141.4,63.09 143.19,64.88 145.4,64.88H153.4C155.61,64.88 157.4,63.09 157.4,60.88V52.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M145.4,50.38H153.4C154.78,50.38 155.9,51.5 155.9,52.88V60.88C155.9,62.26 154.78,63.38 153.4,63.38H145.4C144.02,63.38 142.9,62.26 142.9,60.88V52.88C142.9,51.5 144.02,50.38 145.4,50.38ZM153.4,48.88C155.61,48.88 157.4,50.67 157.4,52.88V60.88C157.4,63.09 155.61,64.88 153.4,64.88H145.4C143.19,64.88 141.4,63.09 141.4,60.88V52.88C141.4,50.67 143.19,48.88 145.4,48.88H153.4Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M104.4,162.88C104.4,160.67 102.61,158.88 100.4,158.88H92.4C90.19,158.88 88.4,160.67 88.4,162.88V170.88C88.4,173.09 90.19,174.88 92.4,174.88H100.4C102.61,174.88 104.4,173.09 104.4,170.88V162.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M92.4,160.38H100.4C101.78,160.38 102.9,161.5 102.9,162.88V170.88C102.9,172.26 101.78,173.38 100.4,173.38H92.4C91.02,173.38 89.9,172.26 89.9,170.88V162.88C89.9,161.5 91.02,160.38 92.4,160.38ZM100.4,158.88C102.61,158.88 104.4,160.67 104.4,162.88V170.88C104.4,173.09 102.61,174.88 100.4,174.88H92.4C90.19,174.88 88.4,173.09 88.4,170.88V162.88C88.4,160.67 90.19,158.88 92.4,158.88H100.4Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M123,81.88C123,75.26 117.63,69.88 111,69.88H81C74.37,69.88 69,75.26 69,81.88V111.88C69,118.51 74.37,123.88 81,123.88H111C117.63,123.88 123,118.51 123,111.88V81.88Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M81,71.38H111C116.8,71.38 121.5,76.08 121.5,81.88V111.88C121.5,117.68 116.8,122.38 111,122.38H81C75.2,122.38 70.5,117.68 70.5,111.88V81.88C70.5,76.08 75.2,71.38 81,71.38ZM111,69.88C117.63,69.88 123,75.26 123,81.88V111.88C123,118.51 117.63,123.88 111,123.88H81C74.37,123.88 69,118.51 69,111.88V81.88C69,75.26 74.37,69.88 81,69.88H111Z" />
<path
android:fillColor="#82C91E"
android:pathData="M88.93,94.44V106.65C88.93,107.64 89.73,108.46 90.73,108.46H91.58C92.57,108.46 93.39,107.64 93.39,106.65V94.44H88.93Z" />
<path
android:fillColor="#82C91E"
android:pathData="M93.38,88.56V86.26C93.38,85.27 92.57,84.46 91.58,84.46H90.73C89.74,84.46 88.93,85.27 88.93,86.26V88.56H93.38Z" />
<path
android:fillColor="#82C91E"
android:pathData="M103.29,98.47V86.26C103.29,85.27 102.48,84.46 101.49,84.46H100.64C99.65,84.46 98.83,85.27 98.83,86.26V98.47H103.29Z" />
<path
android:fillColor="#82C91E"
android:pathData="M98.83,104.35V106.65C98.83,107.64 99.65,108.46 100.64,108.46H101.49C102.48,108.46 103.3,107.64 103.3,106.65V104.35H98.83Z" />
<path
android:fillColor="#A3E635"
android:pathData="M88.21,99.18H85.91C84.92,99.18 84.11,99.99 84.11,100.99V101.84C84.11,102.83 84.91,103.64 85.91,103.64H88.21V99.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M106.3,99.18H94.09V103.64H106.3C107.29,103.64 108.11,102.83 108.11,101.84V100.99C108.11,99.99 107.29,99.18 106.3,99.18Z" />
<path
android:fillColor="#A3E635"
android:pathData="M98.12,89.28H85.91C84.92,89.28 84.11,90.08 84.11,91.08V91.93C84.11,92.92 84.91,93.74 85.91,93.74H98.12V89.28Z" />
<path
android:fillColor="#A3E635"
android:pathData="M106.3,89.28H104V93.74H106.3C107.29,93.74 108.11,92.93 108.11,91.93V91.08C108.11,90.08 107.29,89.28 106.3,89.28Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M172.4,132.88C172.4,128.46 168.82,124.88 164.4,124.88H148.4C143.98,124.88 140.4,128.46 140.4,132.88V148.88C140.4,153.3 143.98,156.88 148.4,156.88H164.4C168.82,156.88 172.4,153.3 172.4,148.88V132.88Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M148.4,126.38H164.4C167.99,126.38 170.9,129.29 170.9,132.88V148.88C170.9,152.47 167.99,155.38 164.4,155.38H148.4C144.81,155.38 141.9,152.47 141.9,148.88V132.88C141.9,129.29 144.81,126.38 148.4,126.38ZM164.4,124.88C168.82,124.88 172.4,128.46 172.4,132.88V148.88C172.4,153.3 168.82,156.88 164.4,156.88H148.4C143.98,156.88 140.4,153.3 140.4,148.88V132.88C140.4,128.46 143.98,124.88 148.4,124.88H164.4Z" />
<path
android:fillColor="#E2E8F0"
android:pathData="M52.4,45C52.4,40.58 48.82,37 44.4,37H28.4C23.98,37 20.4,40.58 20.4,45V61C20.4,65.42 23.98,69 28.4,69H44.4C48.82,69 52.4,65.42 52.4,61V45Z" />
<path
android:fillColor="#94A3B8"
android:fillType="evenOdd"
android:pathData="M28.4,38.5H44.4C47.99,38.5 50.9,41.41 50.9,45V61C50.9,64.59 47.99,67.5 44.4,67.5H28.4C24.81,67.5 21.9,64.59 21.9,61V45C21.9,41.41 24.81,38.5 28.4,38.5ZM44.4,37C48.82,37 52.4,40.58 52.4,45V61C52.4,65.42 48.82,69 44.4,69H28.4C23.98,69 20.4,65.42 20.4,61V45C20.4,40.58 23.98,37 28.4,37H44.4Z" />
</vector>

View File

@@ -0,0 +1,105 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="192dp"
android:height="192dp"
android:viewportWidth="192"
android:viewportHeight="192">
<path
android:fillColor="#F9FAFB"
android:pathData="M41.83,84C41.83,85.1 40.93,86 39.83,86L20.97,86C19.87,86 18.97,85.1 18.97,84L18.97,65.61L41.83,65.61L41.83,84Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M42.58,84C42.58,85.52 41.35,86.75 39.83,86.75L20.97,86.75C19.45,86.75 18.22,85.52 18.22,84L18.22,64.86L42.58,64.86L42.58,84ZM39.83,85.25C40.52,85.25 41.08,84.69 41.08,84L41.08,66.36L19.72,66.36L19.72,84C19.72,84.69 20.28,85.25 20.97,85.25L39.83,85.25Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M46.4,61.62C46.4,63.83 44.61,65.62 42.4,65.62L18.4,65.62C16.19,65.62 14.4,63.83 14.4,61.62L14.4,27C14.4,24.79 16.19,23 18.4,23L42.4,23C44.61,23 46.4,24.79 46.4,27L46.4,61.62Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M47.15,61.62C47.15,64.24 45.02,66.37 42.4,66.37L18.4,66.37C15.78,66.37 13.65,64.24 13.65,61.62L13.65,27C13.65,24.38 15.78,22.25 18.4,22.25L42.4,22.25C45.02,22.25 47.15,24.38 47.15,27L47.15,61.62ZM42.4,64.87C44.2,64.87 45.65,63.42 45.65,61.62L45.65,27C45.65,25.21 44.2,23.75 42.4,23.75L18.4,23.75C16.61,23.75 15.15,25.21 15.15,27L15.15,61.62C15.15,63.42 16.61,64.87 18.4,64.87L42.4,64.87Z" />
<path
android:fillColor="#196FDE"
android:pathData="M37.78,77.59L33.22,77.59L33.22,74.46L37.78,74.46L37.78,77.59Z" />
<path
android:fillColor="#196FDE"
android:pathData="M27.58,77.59L23.02,77.59L23.02,74.46L27.58,74.46L27.58,77.59Z" />
<path
android:fillColor="#DDEDFE"
android:fillType="evenOdd"
android:pathData="M152,121C152,118.79 153.79,117 156,117H180.4C182.61,117 184.4,118.79 184.4,121V164C184.4,166.21 182.61,168 180.4,168H152V168H149.4C147.19,168 145.4,166.21 145.4,164V152.68C145.4,152.13 145.63,151.6 146.02,151.23L146.66,150.62C147.06,150.24 147.29,149.71 147.29,149.17V147.09C147.29,146.57 147.08,146.06 146.71,145.69L145.98,144.95C145.61,144.58 145.4,144.07 145.4,143.54V141.44C145.4,140.79 145.72,140.18 146.25,139.8L152,135.73V121ZM156.96,123.66C156.96,122.55 157.86,121.66 158.96,121.66H160.26C161.36,121.66 162.26,122.55 162.26,123.66V132.07C162.26,133.18 161.36,134.07 160.26,134.07H158.96C157.86,134.07 156.96,133.18 156.96,132.07V123.66ZM167.55,121.66C166.45,121.66 165.55,122.55 165.55,123.66V132.07C165.55,133.18 166.45,134.07 167.55,134.07H168.85C169.95,134.07 170.85,133.18 170.85,132.07V123.66C170.85,122.55 169.95,121.66 168.85,121.66H167.55ZM174.15,123.66C174.15,122.55 175.04,121.66 176.15,121.66H177.44C178.54,121.66 179.44,122.55 179.44,123.66V132.07C179.44,133.18 178.54,134.07 177.44,134.07H176.15C175.04,134.07 174.15,133.18 174.15,132.07V123.66Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M151.25,121C151.25,118.38 153.38,116.25 156,116.25H180.4C183.02,116.25 185.15,118.38 185.15,121V164C185.15,166.62 183.02,168.75 180.4,168.75H151.25V168.75H149.4C146.78,168.75 144.65,166.62 144.65,164V152.68C144.65,151.92 144.96,151.2 145.51,150.68L146.15,150.07C146.4,149.84 146.54,149.51 146.54,149.17V147.09C146.54,146.76 146.41,146.45 146.17,146.21L145.45,145.48C144.94,144.96 144.65,144.27 144.65,143.54V141.44C144.65,140.54 145.08,139.71 145.81,139.19L151.25,135.34V121ZM152.75,167.25H180.4C182.2,167.25 183.65,165.79 183.65,164V121C183.65,119.21 182.2,117.75 180.4,117.75H156C154.21,117.75 152.75,119.21 152.75,121V136.12L146.68,140.42C146.35,140.65 146.15,141.03 146.15,141.44V143.54C146.15,143.87 146.28,144.19 146.51,144.42L147.24,145.16C147.75,145.67 148.04,146.37 148.04,147.09V149.17C148.04,149.92 147.73,150.64 147.18,151.16L146.54,151.77C146.29,152.01 146.15,152.33 146.15,152.68V164C146.15,165.79 147.61,167.25 149.4,167.25H152.75V167.25ZM156.21,123.66C156.21,122.14 157.45,120.91 158.96,120.91H160.26C161.78,120.91 163.01,122.14 163.01,123.66V132.07C163.01,133.59 161.78,134.82 160.26,134.82H158.96C157.45,134.82 156.21,133.59 156.21,132.07V123.66ZM158.96,122.41C158.27,122.41 157.71,122.97 157.71,123.66V132.07C157.71,132.76 158.27,133.32 158.96,133.32H160.26C160.95,133.32 161.51,132.76 161.51,132.07V123.66C161.51,122.97 160.95,122.41 160.26,122.41H158.96ZM167.55,122.41C166.86,122.41 166.3,122.97 166.3,123.66V132.07C166.3,132.76 166.86,133.32 167.55,133.32H168.85C169.54,133.32 170.1,132.76 170.1,132.07V123.66C170.1,122.97 169.54,122.41 168.85,122.41H167.55ZM164.8,123.66C164.8,122.14 166.04,120.91 167.55,120.91H168.85C170.37,120.91 171.6,122.14 171.6,123.66V132.07C171.6,133.59 170.37,134.82 168.85,134.82H167.55C166.04,134.82 164.8,133.59 164.8,132.07V123.66ZM173.4,123.66C173.4,122.14 174.63,120.91 176.15,120.91H177.44C178.96,120.91 180.19,122.14 180.19,123.66V132.07C180.19,133.59 178.96,134.82 177.44,134.82H176.15C174.63,134.82 173.4,133.59 173.4,132.07V123.66ZM176.15,122.41C175.46,122.41 174.9,122.97 174.9,123.66V132.07C174.9,132.76 175.46,133.32 176.15,133.32H177.44C178.13,133.32 178.69,132.76 178.69,132.07V123.66C178.69,122.97 178.13,122.41 177.44,122.41H176.15Z" />
<path
android:fillColor="#8BCAFD"
android:pathData="M30.4,111C32.61,111 34.4,112.79 34.4,115C34.4,117.21 32.61,119 30.4,119C28.19,119 26.4,117.21 26.4,115C26.4,112.79 28.19,111 30.4,111Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M30.4,95C32.61,95 34.4,96.79 34.4,99C34.4,101.21 32.61,103 30.4,103C28.19,103 26.4,101.21 26.4,99C26.4,96.79 28.19,95 30.4,95Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M30.4,127C32.61,127 34.4,128.79 34.4,131C34.4,133.21 32.61,135 30.4,135C28.19,135 26.4,133.21 26.4,131C26.4,128.79 28.19,127 30.4,127Z" />
<path
android:fillColor="#8BCAFD"
android:pathData="M168.4,92C166.19,92 164.4,90.21 164.4,88C164.4,85.79 166.19,84 168.4,84C170.61,84 172.4,85.79 172.4,88C172.4,90.21 170.61,92 168.4,92Z" />
<path
android:fillColor="#52ADF9"
android:pathData="M168.4,108C166.19,108 164.4,106.21 164.4,104C164.4,101.79 166.19,100 168.4,100C170.61,100 172.4,101.79 172.4,104C172.4,106.21 170.61,108 168.4,108Z" />
<path
android:fillColor="#BDDFFE"
android:pathData="M168.4,76C166.19,76 164.4,74.21 164.4,72C164.4,69.79 166.19,68 168.4,68C170.61,68 172.4,69.79 172.4,72C172.4,74.21 170.61,76 168.4,76Z" />
<path
android:fillColor="#ECFCCB"
android:pathData="M57.4,35.03C57.4,28.4 62.77,23.03 69.4,23.03H123.4C130.03,23.03 135.4,28.4 135.4,35.03V156.03C135.4,162.66 130.03,168.03 123.4,168.03H69.4C62.77,168.03 57.4,162.66 57.4,156.03V35.03Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M123.4,24.53H69.4C63.6,24.53 58.9,29.23 58.9,35.03V156.03C58.9,161.83 63.6,166.53 69.4,166.53H123.4C129.2,166.53 133.9,161.83 133.9,156.03V35.03C133.9,29.23 129.2,24.53 123.4,24.53ZM69.4,23.03C62.77,23.03 57.4,28.4 57.4,35.03V156.03C57.4,162.66 62.77,168.03 69.4,168.03H123.4C130.03,168.03 135.4,162.66 135.4,156.03V35.03C135.4,28.4 130.03,23.03 123.4,23.03H69.4Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M96.4,35.41C95.57,35.41 94.9,34.74 94.9,33.91C94.9,33.08 95.57,32.41 96.4,32.41C97.23,32.41 97.9,33.08 97.9,33.91C97.9,34.74 97.23,35.41 96.4,35.41ZM96.4,36.91C94.74,36.91 93.4,35.57 93.4,33.91C93.4,32.25 94.74,30.91 96.4,30.91C98.06,30.91 99.4,32.25 99.4,33.91C99.4,35.57 98.06,36.91 96.4,36.91Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M77.65,33.59C77.65,33.18 77.99,32.84 78.4,32.84H88.4C88.82,32.84 89.15,33.18 89.15,33.59C89.15,34.01 88.82,34.34 88.4,34.34H78.4C77.99,34.34 77.65,34.01 77.65,33.59Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M103.65,33.59C103.65,33.18 103.99,32.84 104.4,32.84L114.4,32.84C114.82,32.84 115.15,33.18 115.15,33.59C115.15,34.01 114.82,34.34 114.4,34.34L104.4,34.34C103.99,34.34 103.65,34.01 103.65,33.59Z" />
<path
android:fillColor="#F9FAFB"
android:pathData="M128.4,50.63C128.4,46.22 124.82,42.63 120.4,42.63H72.4C67.98,42.63 64.4,46.22 64.4,50.63V146.63C64.4,151.05 67.98,154.63 72.4,154.63H120.4C124.82,154.63 128.4,151.05 128.4,146.63V50.63Z" />
<path
android:fillColor="#65A30D"
android:fillType="evenOdd"
android:pathData="M72.4,44.13H120.4C123.99,44.13 126.9,47.04 126.9,50.63V146.63C126.9,150.22 123.99,153.13 120.4,153.13H72.4C68.81,153.13 65.9,150.22 65.9,146.63V50.63C65.9,47.04 68.81,44.13 72.4,44.13ZM120.4,42.63C124.82,42.63 128.4,46.22 128.4,50.63V146.63C128.4,151.05 124.82,154.63 120.4,154.63H72.4C67.98,154.63 64.4,151.05 64.4,146.63V50.63C64.4,46.22 67.98,42.63 72.4,42.63H120.4Z" />
<path
android:fillColor="#DDEDFE"
android:pathData="M71.4,104C71.4,95.16 78.56,88 87.4,88H105.4C114.24,88 121.4,95.16 121.4,104V148H87.4C78.56,148 71.4,140.84 71.4,132V104Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M105.4,89.5H87.4C79.39,89.5 72.9,95.99 72.9,104V132C72.9,140.01 79.39,146.5 87.4,146.5H119.9V104C119.9,95.99 113.41,89.5 105.4,89.5ZM87.4,88C78.56,88 71.4,95.16 71.4,104V132C71.4,140.84 78.56,148 87.4,148H121.4V104C121.4,95.16 114.24,88 105.4,88H87.4Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M83.96,109.91C83.96,109.5 84.29,109.16 84.71,109.16H108.03C108.44,109.16 108.78,109.5 108.78,109.91C108.78,110.32 108.44,110.66 108.03,110.66H84.71C84.29,110.66 83.96,110.32 83.96,109.91Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M83.96,118C83.96,117.59 84.29,117.25 84.71,117.25H108.03C108.44,117.25 108.78,117.59 108.78,118C108.78,118.42 108.44,118.75 108.03,118.75H84.71C84.29,118.75 83.96,118.42 83.96,118Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M83.96,134.18C83.96,133.76 84.29,133.43 84.71,133.43H96.37C96.78,133.43 97.12,133.76 97.12,134.18C97.12,134.59 96.78,134.93 96.37,134.93H84.71C84.29,134.93 83.96,134.59 83.96,134.18Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M83.96,101.82C83.96,101.41 84.29,101.07 84.71,101.07H108.03C108.44,101.07 108.78,101.41 108.78,101.82C108.78,102.24 108.44,102.57 108.03,102.57H84.71C84.29,102.57 83.96,102.24 83.96,101.82Z" />
<path
android:fillColor="#196FDE"
android:fillType="evenOdd"
android:pathData="M83.96,126.09C83.96,125.68 84.29,125.34 84.71,125.34H108.1C108.51,125.34 108.85,125.68 108.85,126.09C108.85,126.51 108.51,126.84 108.1,126.84H84.71C84.29,126.84 83.96,126.51 83.96,126.09Z" />
</vector>

View File

@@ -0,0 +1,109 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#DDEDFE"
android:pathData="M265.47,33.75L239.47,33.75A7.25,7.25 0,0 0,232.22 41L232.22,103A7.25,7.25 0,0 0,239.47 110.25L265.47,110.25A7.25,7.25 0,0 0,272.72 103L272.72,41A7.25,7.25 0,0 0,265.47 33.75z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
<path
android:fillColor="#F9FAFB"
android:pathData="M272.72,48H232.22V100.5H272.72V48Z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
<path
android:fillColor="#ECFCCB"
android:pathData="M240.07,65.1L264.86,65.1A4,4 0,0 1,268.86 69.1L268.86,79.39A4,4 0,0 1,264.86 83.39L240.07,83.39A4,4 0,0 1,236.07 79.39L236.07,69.1A4,4 0,0 1,240.07 65.1z" />
<path
android:fillColor="#00000000"
android:pathData="M242.58,71.55H262.46"
android:strokeWidth="1.5"
android:strokeColor="#65A30D"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M242.58,77.65H253.26"
android:strokeWidth="1.5"
android:strokeColor="#65A30D"
android:strokeLineCap="round" />
<path
android:fillColor="#196FDE"
android:pathData="M253.47,41a1,1 90,1 1,-2 0a1,1 90,1 1,2 0z" />
<path
android:fillColor="#196FDE"
android:pathData="M244.47,40.27C244.05,40.27 243.72,40.61 243.72,41.02C243.72,41.44 244.05,41.77 244.47,41.77V40.27ZM248.47,41.77C248.88,41.77 249.22,41.44 249.22,41.02C249.22,40.61 248.88,40.27 248.47,40.27V41.77ZM244.47,41.77H248.47V40.27H244.47V41.77Z" />
<path
android:fillColor="#196FDE"
android:pathData="M256.47,40.27C256.05,40.27 255.72,40.61 255.72,41.02C255.72,41.44 256.05,41.77 256.47,41.77V40.27ZM260.47,41.77C260.88,41.77 261.22,41.44 261.22,41.02C261.22,40.61 260.88,40.27 260.47,40.27V41.77ZM256.47,41.77H260.47V40.27H256.47V41.77Z" />
<path
android:fillColor="#BEF264"
android:pathData="M89.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#A3E635"
android:pathData="M105.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#D9F99D"
android:pathData="M73.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#BEF264"
android:pathData="M198.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#A3E635"
android:pathData="M214.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#D9F99D"
android:pathData="M182.47,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#F9FAFB"
android:pathData="M29.04,43C29.04,41.9 29.93,41 31.04,41H49.9C51,41 51.9,41.9 51.9,43V61.39H29.04L29.04,43Z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
<path
android:fillColor="#DDEDFE"
android:pathData="M24.47,65.38C24.47,63.17 26.26,61.38 28.47,61.38H52.47C54.68,61.38 56.47,63.17 56.47,65.38L56.47,100C56.47,102.21 54.68,104 52.47,104H28.47C26.26,104 24.47,102.21 24.47,100L24.47,65.38Z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
<path
android:fillColor="#196FDE"
android:pathData="M33.09,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#196FDE"
android:pathData="M43.29,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#ECFCCB"
android:fillType="evenOdd"
android:pathData="M151.87,42L143.97,42H126.47C124.26,42 122.47,43.79 122.47,46L122.47,98C122.47,100.21 124.26,102 126.47,102L161.47,102C163.68,102 165.47,100.21 165.47,98L165.47,55.97L151.87,42Z" />
<path
android:fillColor="#65A30D"
android:pathData="M143.97,42L143.97,41.25H143.97V42ZM151.87,42L152.4,41.48L152.18,41.25L151.87,41.25L151.87,42ZM122.47,46H123.22H122.47ZM122.47,98H121.72H122.47ZM126.47,102V101.25V102ZM161.47,102V102.75V102ZM165.47,98H164.72H165.47ZM165.47,55.97H166.22V55.66L166,55.45L165.47,55.97ZM143.97,42.75L151.87,42.75L151.87,41.25L143.97,41.25L143.97,42.75ZM126.47,42.75H143.97V41.25H126.47V42.75ZM123.22,46C123.22,44.21 124.67,42.75 126.47,42.75V41.25C123.84,41.25 121.72,43.38 121.72,46H123.22ZM123.22,98L123.22,46H121.72L121.72,98H123.22ZM126.47,101.25C124.67,101.25 123.22,99.79 123.22,98H121.72C121.72,100.62 123.84,102.75 126.47,102.75V101.25ZM161.47,101.25L126.47,101.25V102.75L161.47,102.75V101.25ZM164.72,98C164.72,99.79 163.26,101.25 161.47,101.25V102.75C164.09,102.75 166.22,100.62 166.22,98H164.72ZM164.72,55.97L164.72,98H166.22L166.22,55.97H164.72ZM166,55.45L152.4,41.48L151.33,42.52L164.93,56.49L166,55.45Z" />
<path
android:fillColor="#F7FEE7"
android:pathData="M165.2,55.68L156.16,55.68C153.95,55.68 152.16,53.89 152.16,51.68L152.16,42.29L165.2,55.68Z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.07,63.49H153.91"
android:strokeWidth="1.5"
android:strokeColor="#65A30D"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.07,69.04H144.73"
android:strokeWidth="1.5"
android:strokeColor="#65A30D"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M143.16,80.73C143.16,78.65 141.48,76.97 139.4,76.97C137.32,76.97 135.64,78.65 135.64,80.73V87.41C135.64,89.49 137.32,91.18 139.4,91.18C141.48,91.18 143.16,89.49 143.16,87.41V80.73Z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
<path
android:fillColor="#A3E635"
android:pathData="M134.32,84.52L144.49,84.52A1.25,1.25 0,0 1,145.74 85.77L145.74,92.72A1.25,1.25 0,0 1,144.49 93.97L134.32,93.97A1.25,1.25 0,0 1,133.07 92.72L133.07,85.77A1.25,1.25 0,0 1,134.32 84.52z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
</vector>

View File

@@ -0,0 +1,109 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="200dp"
android:height="100dp"
android:viewportWidth="289"
android:viewportHeight="144">
<path
android:fillColor="#ECFCCB"
android:pathData="M48.93,33.75L22.93,33.75A7.25,7.25 0,0 0,15.68 41L15.68,103A7.25,7.25 0,0 0,22.93 110.25L48.93,110.25A7.25,7.25 0,0 0,56.18 103L56.18,41A7.25,7.25 0,0 0,48.93 33.75z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
<path
android:fillColor="#F9FAFB"
android:pathData="M56.18,48H15.68V100.5H56.18V48Z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
<path
android:fillColor="#DDEDFE"
android:pathData="M23.54,65.1L48.33,65.1A4,4 0,0 1,52.33 69.1L52.33,79.39A4,4 0,0 1,48.33 83.39L23.54,83.39A4,4 0,0 1,19.54 79.39L19.54,69.1A4,4 0,0 1,23.54 65.1z" />
<path
android:fillColor="#00000000"
android:pathData="M26.05,71.55H45.92"
android:strokeWidth="1.5"
android:strokeColor="#196FDE"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M26.05,77.65H36.73"
android:strokeWidth="1.5"
android:strokeColor="#196FDE"
android:strokeLineCap="round" />
<path
android:fillColor="#65A30D"
android:pathData="M36.93,41a1,1 90,1 1,-2 0a1,1 90,1 1,2 0z" />
<path
android:fillColor="#65A30D"
android:pathData="M27.93,40.27C27.52,40.27 27.18,40.61 27.18,41.02C27.18,41.44 27.52,41.77 27.93,41.77V40.27ZM31.93,41.77C32.35,41.77 32.68,41.44 32.68,41.02C32.68,40.61 32.35,40.27 31.93,40.27V41.77ZM27.93,41.77H31.93V40.27H27.93V41.77Z" />
<path
android:fillColor="#65A30D"
android:pathData="M39.93,40.27C39.52,40.27 39.18,40.61 39.18,41.02C39.18,41.44 39.52,41.77 39.93,41.77V40.27ZM43.93,41.77C44.35,41.77 44.68,41.44 44.68,41.02C44.68,40.61 44.35,40.27 43.93,40.27V41.77ZM39.93,41.77H43.93V40.27H39.93V41.77Z" />
<path
android:fillColor="#8BCAFD"
android:pathData="M89.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#52ADF9"
android:pathData="M105.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#BDDFFE"
android:pathData="M73.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#8BCAFD"
android:pathData="M198.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#52ADF9"
android:pathData="M214.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#BDDFFE"
android:pathData="M182.93,72m-4,0a4,4 0,1 1,8 0a4,4 0,1 1,-8 0" />
<path
android:fillColor="#F9FAFB"
android:pathData="M236.51,43C236.51,41.9 237.4,41 238.51,41H257.36C258.47,41 259.36,41.9 259.36,43V61.39H236.51V43Z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
<path
android:fillColor="#ECFCCB"
android:pathData="M231.93,65.38C231.93,63.17 233.73,61.38 235.93,61.38H259.93C262.14,61.38 263.93,63.17 263.93,65.38V100C263.93,102.21 262.14,104 259.93,104H235.93C233.73,104 231.93,102.21 231.93,100V65.38Z"
android:strokeWidth="1.5"
android:strokeColor="#65A30D" />
<path
android:fillColor="#65A30D"
android:pathData="M240.56,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#65A30D"
android:pathData="M250.76,49.41h4.56v3.13h-4.56z" />
<path
android:fillColor="#DDEDFE"
android:fillType="evenOdd"
android:pathData="M152.33,42L144.43,42H126.93C124.72,42 122.93,43.79 122.93,46L122.93,98C122.93,100.21 124.72,102 126.93,102L161.93,102C164.14,102 165.93,100.21 165.93,98L165.93,55.97L152.33,42Z" />
<path
android:fillColor="#196FDE"
android:pathData="M144.43,42L144.43,41.25H144.43V42ZM152.33,42L152.87,41.48L152.65,41.25L152.33,41.25L152.33,42ZM122.93,46H123.68H122.93ZM122.93,98H122.18H122.93ZM126.93,102V101.25V102ZM161.93,102V102.75V102ZM165.93,98H165.18H165.93ZM165.93,55.97H166.68V55.66L166.47,55.45L165.93,55.97ZM144.43,42.75L152.33,42.75L152.33,41.25L144.43,41.25L144.43,42.75ZM126.93,42.75H144.43V41.25H126.93V42.75ZM123.68,46C123.68,44.21 125.14,42.75 126.93,42.75V41.25C124.31,41.25 122.18,43.38 122.18,46H123.68ZM123.68,98L123.68,46H122.18L122.18,98H123.68ZM126.93,101.25C125.14,101.25 123.68,99.79 123.68,98H122.18C122.18,100.62 124.31,102.75 126.93,102.75V101.25ZM161.93,101.25L126.93,101.25V102.75L161.93,102.75V101.25ZM165.18,98C165.18,99.79 163.73,101.25 161.93,101.25V102.75C164.56,102.75 166.68,100.62 166.68,98H165.18ZM165.18,55.97L165.18,98H166.68L166.68,55.97H165.18ZM166.47,55.45L152.87,41.48L151.79,42.52L165.4,56.49L166.47,55.45Z" />
<path
android:fillColor="#EFF7FF"
android:pathData="M165.66,55.68L156.63,55.68C154.42,55.68 152.63,53.89 152.63,51.68L152.63,42.29L165.66,55.68Z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.54,63.49H154.38"
android:strokeWidth="1.5"
android:strokeColor="#196FDE"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M134.54,69.04H145.2"
android:strokeWidth="1.5"
android:strokeColor="#196FDE"
android:strokeLineCap="round" />
<path
android:fillColor="#00000000"
android:pathData="M143.63,80.73C143.63,78.65 141.95,76.97 139.87,76.97C137.79,76.97 136.1,78.65 136.1,80.73V87.41C136.1,89.49 137.79,91.18 139.87,91.18C141.95,91.18 143.63,89.49 143.63,87.41V80.73Z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
<path
android:fillColor="#52ADF9"
android:pathData="M134.78,84.52L144.95,84.52A1.25,1.25 0,0 1,146.2 85.77L146.2,92.72A1.25,1.25 0,0 1,144.95 93.97L134.78,93.97A1.25,1.25 0,0 1,133.53 92.72L133.53,85.77A1.25,1.25 0,0 1,134.78 84.52z"
android:strokeWidth="1.5"
android:strokeColor="#196FDE" />
</vector>

View File

@@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="409.2dp"
android:height="161.7dp"
android:viewportHeight="161.7"
android:viewportWidth="409.2">
<path
android:fillColor="#FF000000"
android:pathData="M369.8,157.4l-4.3,-4.3l-7.1,-2.4c-3.9,-1.3 -8.7,-3 -10.7,-3.7l-3.7,-1.3l3.5,-0.2c8.2,-0.4 13,-4 14.3,-10.9c0.8,-4.1 1.1,-17.3 0.8,-33c-0.2,-8.1 -0.2,-15.4 0,-16.3c0.1,-0.9 0.5,-2.4 0.9,-3.4c1.2,-3.5 0.3,-11.9 -1.9,-17.6c-0.3,-0.9 -1.9,-4.2 -3.5,-7.4c-4.2,-8.2 -4.5,-8.9 -4.9,-10.5c-0.5,-1.8 -0.2,-5.4 0.5,-6.8c0.7,-1.3 2.2,-2.9 3.2,-3.5c1.3,-0.7 2.6,0.1 4.7,2.9c3.4,4.5 14,19.4 15.7,22.2c3.7,6 6,11.2 8,18.8c0.7,2.5 1.9,7 2.7,10.1c0.8,3.1 2.7,10.2 4.1,15.8l2.6,10.2l4.6,5.2c2.6,2.9 5.8,6.5 7.2,8c1.4,1.6 2.5,3 2.5,3.2c0,0.3 -34.5,29.3 -34.9,29.3C374.2,161.7 372.2,159.7 369.8,157.4zM275.9,141c-1.3,-0.6 -2.2,-1.4 -2.9,-2.3c-2.1,-2.7 -2,2.4 -1.9,-68.5l0.1,-64l0.7,-1.2c1,-1.9 2,-2.9 3.7,-3.9l1.6,-0.9l37.8,-0.1c42.5,-0.1 39.4,-0.2 42.1,2.2c0.9,0.8 1.8,2 2.2,2.9c0.7,1.6 0.7,1.6 0.8,14.2l0.1,12.6l-1.8,-0.1c-1.4,-0.1 -2.1,0 -3.2,0.5c-2,1 -3.9,2.9 -5.1,5.1l-1,2l0,-12.8l0,-12.8h-33.6h-33.6v51.3v51.3h33.6h33.6l0.1,-34.4c0.1,-33 0.1,-34.4 0.6,-32.9c0.3,0.8 1.8,4 3.4,7c5.5,10.6 5.4,9.9 5.4,47.2c0,27.6 -0.1,30 -1.7,33.1c-1.1,2.2 -2.7,3.7 -5.1,4.7l-1.7,0.7L314,141.8l-36.2,0.1L275.9,141L275.9,141zM318.3,135.9c2.9,-1.3 4.5,-3.7 4.4,-6.6c0,-4.1 -3.1,-7.2 -7.1,-7.2c-2.1,0 -3.6,0.6 -5.2,2.2c-2.2,2.2 -2.8,5.4 -1.3,8.3c0.7,1.4 2.5,3 4,3.5C314.6,136.6 317,136.6 318.3,135.9z"/>
<path
android:fillColor="#FF000000"
android:pathData="M39.4,157.4l4.3,-4.3l7.1,-2.4c3.9,-1.3 8.7,-3 10.7,-3.7l3.7,-1.3l-3.5,-0.2c-8.2,-0.4 -13,-4 -14.3,-10.9c-0.8,-4.1 -1.1,-17.3 -0.8,-33c0.2,-8.1 0.2,-15.4 0,-16.3c-0.1,-0.9 -0.5,-2.4 -0.9,-3.4c-1.2,-3.5 -0.3,-11.9 1.9,-17.6c0.3,-0.9 1.9,-4.2 3.5,-7.4c4.2,-8.2 4.5,-8.9 4.9,-10.5c0.5,-1.8 0.2,-5.4 -0.5,-6.8c-0.7,-1.3 -2.2,-2.9 -3.2,-3.5c-1.3,-0.7 -2.6,0.1 -4.7,2.9c-3.4,4.5 -14,19.4 -15.7,22.2c-3.7,6 -6,11.2 -8,18.8c-0.7,2.5 -1.9,7 -2.7,10.1c-0.8,3.1 -2.7,10.2 -4.1,15.8l-2.6,10.2l-4.6,5.2c-2.6,2.9 -5.8,6.5 -7.2,8s-2.5,3 -2.5,3.2c0,0.3 34.5,29.3 34.9,29.3C35,161.7 37.1,159.7 39.4,157.4zM133.3,141c1.3,-0.6 2.2,-1.4 2.9,-2.3c2.1,-2.7 2,2.4 1.9,-68.5l-0.1,-64l-0.7,-1.2c-1,-1.9 -2,-2.9 -3.7,-3.9l-1.6,-0.9l-37.8,-0.1c-42.5,-0.1 -39.4,-0.2 -42.1,2.2c-0.9,0.8 -1.8,2 -2.2,2.9c-0.7,1.6 -0.7,1.6 -0.8,14.2L49,32l1.8,-0.1c1.4,-0.1 2.1,0 3.2,0.5c2,1 3.9,2.9 5.1,5.1l1,2l0,-12.8l0,-12.8h33.6h33.6v51.3v51.3L93.8,116.5L60.2,116.5l-0.1,-34.4c-0.1,-33 -0.1,-34.4 -0.6,-32.9c-0.3,0.8 -1.8,4 -3.4,7c-5.5,10.6 -5.4,9.9 -5.4,47.2c0,27.6 0.1,30 1.7,33.1c1.1,2.2 2.7,3.7 5.1,4.7l1.7,0.7l36.2,0.1l36.2,0.1L133.3,141L133.3,141zM90.9,135.9c-2.9,-1.3 -4.5,-3.7 -4.4,-6.6c0,-4.1 3.1,-7.2 7.1,-7.2c2.1,0 3.6,0.6 5.2,2.2c2.2,2.2 2.8,5.4 1.3,8.3c-0.7,1.4 -2.5,3 -4,3.5C94.6,136.6 92.3,136.6 90.9,135.9z"/>
<path
android:fillColor="#FF000000"
android:pathData="M80.5,63h2.3v2.3h2.3v2.3L73.6,67.6v-2.3h2.3v-4.6h4.6L80.5,63L80.5,63zM110.5,83.8h2.3v-2.3h-2.3L110.5,83.8zM82.8,63h2.3v-2.3h-2.3L82.8,63zM115.1,83.8h2.3v-2.3h-2.3L115.1,83.8zM87.4,86.1L92,86.1L92,83.8h-4.6L87.4,86.1zM108.2,86.1L108.2,83.8h-2.3v2.3L108.2,86.1zM99,86.1h2.3v-4.6L99,81.5L99,86.1zM80.5,56.1v2.3h6.9v-2.3L80.5,56.1zM78.2,58.4v-2.3h-4.6v4.6h2.3v-2.3L78.2,58.4zM85.1,53.8L69,53.8v-16.1h16.1L85.1,53.8zM82.8,40L71.3,40v11.5h11.5L82.8,40zM73.6,81.5h6.9v-6.9h-6.9L73.6,81.5zM96.6,79.1v2.3L99,81.4v-2.3L96.6,79.1zM80.5,42.3h-6.9v6.9h6.9L80.5,42.3zM117.4,37.7L117.4,53.8L101.3,53.8v-16.1L117.4,37.7zM115.1,40L103.6,40v11.5h11.5L115.1,40zM69,69.9h16.1v16.1L69,86L69,69.9zM71.3,83.8h11.5v-11.5L71.3,72.3L71.3,83.8zM71.3,56.1L69,56.1v11.5h2.3L71.3,56.1zM101.3,67.6v2.3h2.3v-2.3L101.3,67.6zM94.3,76.9v-2.3L92,74.6v2.3h-4.6v4.6L92,81.5v2.3h2.3v-4.6h2.3v-2.3L94.3,76.9zM87.4,46.9L92,46.9v-2.3h-4.6L87.4,46.9zM105.9,65.3h4.6v2.3h2.3v-6.9h-2.3v-4.6h-2.3v6.9h-6.9v2.3h2.3v2.3h2.3L105.9,65.3zM108.2,72.2h-2.3v-2.3h-2.3v4.6h-6.9v2.3h4.6v4.6h2.3v2.3h2.3v-4.6h9.2v-2.3h-6.9L108.2,72.2zM108.2,72.2h2.3v-4.6h-2.3L108.2,72.2zM89.7,72.2v-2.3L92,69.9v-2.3h2.3v-2.3h2.3v-4.6h6.9v-4.6h-2.3v2.3L99,58.4v-9.2h-2.3v-4.6L99,44.6v-6.9h-2.3v4.6h-2.3v-4.6h-6.9v4.6h2.3v-2.3L92,40v4.6h2.3v6.9h2.3v2.3h-2.3v4.6L92,58.4L92,53.8h-2.3v-2.3h-2.3v4.6h2.3v2.3h-2.3v6.9h2.3v-4.6L92,60.7v4.6h-2.3v2.3h-2.3v6.9L92,74.5v-2.3L89.7,72.2zM115.1,74.5v-2.3h-4.6v2.3L115.1,74.5zM112.8,42.3h-6.9v6.9h6.9L112.8,42.3zM94.3,72.2L99,72.2v-2.3h-2.3v-2.3h-2.3L94.4,72.2zM99,67.6v-2.3h-2.3v2.3L99,67.6zM112.8,58.4h4.6v-2.3h-4.6L112.8,58.4zM115.1,76.9h2.3v-2.3h-2.3L115.1,76.9zM115.1,63h2.3v-2.3h-2.3L115.1,63zM94.3,51.5L92,51.5v2.3h2.3L94.3,51.5zM94.3,51.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M303.5,63h2.3v2.3h2.3v2.3h-11.5v-2.3h2.3v-4.6h4.6L303.5,63L303.5,63zM333.5,83.8h2.3v-2.3h-2.3L333.5,83.8zM305.8,63h2.3v-2.3h-2.3L305.8,63zM338.1,83.8h2.3v-2.3h-2.3L338.1,83.8zM310.4,86.1h4.6L315,83.8h-4.6L310.4,86.1zM331.2,86.1L331.2,83.8h-2.3v2.3L331.2,86.1zM322,86.1h2.3v-4.6L322,81.5L322,86.1zM303.5,56.1v2.3h6.9v-2.3L303.5,56.1zM301.2,58.4v-2.3h-4.6v4.6h2.3v-2.3L301.2,58.4zM308.1,53.8L292,53.8v-16.1h16.1L308.1,53.8zM305.8,40h-11.5v11.5h11.5L305.8,40zM296.6,81.5h6.9v-6.9h-6.9L296.6,81.5zM319.6,79.1v2.3h2.3v-2.3L319.6,79.1zM303.5,42.3h-6.9v6.9h6.9L303.5,42.3zM340.4,37.7L340.4,53.8h-16.1v-16.1L340.4,37.7zM338.1,40h-11.5v11.5h11.5L338.1,40zM292,69.9h16.1v16.1L292,86L292,69.9zM294.3,83.8h11.5v-11.5h-11.5L294.3,83.8zM294.3,56.1L292,56.1v11.5h2.3L294.3,56.1zM324.3,67.6v2.3h2.3v-2.3L324.3,67.6zM317.3,76.9v-2.3L315,74.6v2.3h-4.6v4.6h4.6v2.3h2.3v-4.6h2.3v-2.3L317.3,76.9zM310.4,46.9h4.6v-2.3h-4.6L310.4,46.9zM328.9,65.3h4.6v2.3h2.3v-6.9h-2.3v-4.6h-2.3v6.9h-6.9v2.3h2.3v2.3h2.3L328.9,65.3zM331.2,72.2h-2.3v-2.3h-2.3v4.6h-6.9v2.3h4.6v4.6h2.3v2.3h2.3v-4.6h9.2v-2.3h-6.9L331.2,72.2zM331.2,72.2h2.3v-4.6h-2.3L331.2,72.2zM312.7,72.2v-2.3h2.3v-2.3h2.3v-2.3h2.3v-4.6h6.9v-4.6h-2.3v2.3L322,58.4v-9.2h-2.3v-4.6h2.3v-6.9h-2.3v4.6h-2.3v-4.6h-6.9v4.6h2.3v-2.3h2.3v4.6h2.3v6.9h2.3v2.3h-2.3v4.6L315,58.4L315,53.8h-2.3v-2.3h-2.3v4.6h2.3v2.3h-2.3v6.9h2.3v-4.6h2.3v4.6h-2.3v2.3h-2.3v6.9h4.6v-2.3L312.7,72.2zM338.1,74.5v-2.3h-4.6v2.3L338.1,74.5zM335.8,42.3h-6.9v6.9h6.9L335.8,42.3zM317.3,72.2h4.6v-2.3h-2.3v-2.3h-2.3L317.3,72.2zM322,67.6v-2.3h-2.3v2.3L322,67.6zM335.8,58.4h4.6v-2.3h-4.6L335.8,58.4zM338.1,76.9h2.3v-2.3h-2.3L338.1,76.9zM338.1,63h2.3v-2.3h-2.3L338.1,63zM317.3,51.5L315,51.5v2.3h2.3L317.3,51.5zM317.3,51.5"/>
<path
android:fillColor="#000000"
android:pathData="M 207.61295,88.782357 h -6.42588 v -12.85177 h 6.42588 m 0,25.703533 h -6.42588 v -6.425883 h 6.42588 m -38.5553,16.064713 h 70.68472 L 204.40001,50.227047 Z"
android:strokeWidth="3.21294165"/>
</vector>

View File

@@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="400dp"
android:height="100dp"
android:autoMirrored="true"
android:viewportHeight="49.5"
android:viewportWidth="194.8">
<path
android:fillColor="#000000"
android:pathData="M30.1 16.5l-9 0 0 -5c0 -2.4 -2 -4.4 -4.4 -4.4L4.4 7.1C2 7.1 0 9.1 0 11.5l0 24.2c0 2.4 2 4.4 4.4 4.4l9 0 0 5c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.2c0.1 -2.4 -1.9 -4.4 -4.3 -4.4zm-27.4 16.1l0 -20.9 15.8 0 0 20.9 -15.8 0zm10.7 4.6l-5.8 0 0 -1.5 5.8 0 0 1.5zm13.5 9.4l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -1.9 0.5 0c2.4 0 4.4 -2 4.4 -4.4l0 -14.6 10.8 0 0 20.9z"/>
<path
android:fillColor="#000000"
android:pathData="M101.2 16.5l-8.3 0 0 -4.4c0 -1.4 -1.2 -2.6 -2.6 -2.6l-3.9 0 -2.1 -2.5 -6.9 0 -2.2 2.5 -3.8 0c-1.4 0 -2.6 1.2 -2.6 2.6l0 13.3c0 1.4 1.2 2.6 2.6 2.6l13.1 0 0 17.2c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.3c0.2 -2.4 -1.8 -4.4 -4.3 -4.4zm-26.4 2.4c0 -3.3 2.7 -6 6 -6 3.3 0 6 2.7 6 6 0 3.3 -2.7 6 -6 6 -3.3 0 -6 -2.7 -6 -6zm23.2 27.7l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -14.1 3.1 0c1.4 0 2.6 -1.2 2.6 -2.6l0 -4.2 10.1 0 0 20.9z"/>
<path
android:fillColor="#000000"
android:pathData="M84.600003 18.9a3.8 3.8 0 0 1 -3.8 3.8 3.8 3.8 0 0 1 -3.8 -3.8 3.8 3.8 0 0 1 3.8 -3.8 3.8 3.8 0 0 1 3.8 3.8z"/>
<path
android:fillColor="#000000"
android:pathData="M175.3 16.5l-9.8 0 0 -5.7c0 -1.4 -1.2 -2.6 -2.6 -2.6l-19.3 0c-1.4 0 -2.6 1.2 -2.6 2.6l0 14.4c0 1.4 1.2 2.6 2.6 2.6l15.1 0 0 17.3c0 2.4 2 4.4 4.4 4.4l12.2 0c2.4 0 4.4 -2 4.4 -4.4l0 -24.2c0.1 -2.4 -1.9 -4.4 -4.4 -4.4zm-12.4 -5.9l-9.6 6 -9.6 -6 19.2 0zm-19.4 14.8l0 -12.3 9.8 6.1 9.8 -6.1 0 12.3 -19.6 0zm28.6 21.2l-5.8 0 0 -1.5 5.8 0 0 1.5zm5 -4.6l-15.8 0 0 -14.2 1.6 0c1.4 0 2.6 -1.2 2.6 -2.6l0 -4.1 11.6 0 0 20.9z"/>
<path
android:fillColor="#db3b21"
android:pathData="M101.4 17.8l2 2 7.4 -7.3 7.3 7.3 2.1 -2 -7.4 -7.4 7.4 -7.3 -2.1 -2.1 -7.3 7.4 -7.4 -7.4 -2 2.1 7.3 7.3z"/>
<path
android:fillColor="#db3b21"
android:pathData="M176 17.8l2.1 2 7.3 -7.3 7.4 7.3 2 -2 -7.3 -7.4 7.3 -7.3 -2 -2.1 -7.4 7.4 -7.3 -7.4 -2.1 2.1 7.3 7.3z"/>
<path
android:fillColor="#67a60f"
android:pathData="M35.8 18.8l0 0L52.5 2.1 50.5 0 35.6 14.8 28.5 7.7l-2.1 2.1 9.2 9.1z"/>
</vector>

View File

@@ -1,24 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="409dp"
android:height="162dp"
android:viewportHeight="161.7"
android:viewportWidth="409.2">
<path
android:fillColor="#FF000000"
android:pathData="M369.8,157.4l-4.3,-4.3l-7.1,-2.4c-3.9,-1.3 -8.7,-3 -10.7,-3.7l-3.7,-1.3l3.5,-0.2c8.2,-0.4 13,-4 14.3,-10.9c0.8,-4.1 1.1,-17.3 0.8,-33c-0.2,-8.1 -0.2,-15.4 0,-16.3c0.1,-0.9 0.5,-2.4 0.9,-3.4c1.2,-3.5 0.3,-11.9 -1.9,-17.6c-0.3,-0.9 -1.9,-4.2 -3.5,-7.4c-4.2,-8.2 -4.5,-8.9 -4.9,-10.5c-0.5,-1.8 -0.2,-5.4 0.5,-6.8c0.7,-1.3 2.2,-2.9 3.2,-3.5c1.3,-0.7 2.6,0.1 4.7,2.9c3.4,4.5 14,19.4 15.7,22.2c3.7,6 6,11.2 8,18.8c0.7,2.5 1.9,7 2.7,10.1c0.8,3.1 2.7,10.2 4.1,15.8l2.6,10.2l4.6,5.2c2.6,2.9 5.8,6.5 7.2,8c1.4,1.6 2.5,3 2.5,3.2c0,0.3 -34.5,29.3 -34.9,29.3C374.2,161.7 372.2,159.7 369.8,157.4zM275.9,141c-1.3,-0.6 -2.2,-1.4 -2.9,-2.3c-2.1,-2.7 -2,2.4 -1.9,-68.5l0.1,-64l0.7,-1.2c1,-1.9 2,-2.9 3.7,-3.9l1.6,-0.9l37.8,-0.1c42.5,-0.1 39.4,-0.2 42.1,2.2c0.9,0.8 1.8,2 2.2,2.9c0.7,1.6 0.7,1.6 0.8,14.2l0.1,12.6l-1.8,-0.1c-1.4,-0.1 -2.1,0 -3.2,0.5c-2,1 -3.9,2.9 -5.1,5.1l-1,2l0,-12.8l0,-12.8h-33.6h-33.6v51.3v51.3h33.6h33.6l0.1,-34.4c0.1,-33 0.1,-34.4 0.6,-32.9c0.3,0.8 1.8,4 3.4,7c5.5,10.6 5.4,9.9 5.4,47.2c0,27.6 -0.1,30 -1.7,33.1c-1.1,2.2 -2.7,3.7 -5.1,4.7l-1.7,0.7L314,141.8l-36.2,0.1L275.9,141L275.9,141zM318.3,135.9c2.9,-1.3 4.5,-3.7 4.4,-6.6c0,-4.1 -3.1,-7.2 -7.1,-7.2c-2.1,0 -3.6,0.6 -5.2,2.2c-2.2,2.2 -2.8,5.4 -1.3,8.3c0.7,1.4 2.5,3 4,3.5C314.6,136.6 317,136.6 318.3,135.9z"/>
<path
android:fillColor="#FF000000"
android:pathData="M39.4,157.4l4.3,-4.3l7.1,-2.4c3.9,-1.3 8.7,-3 10.7,-3.7l3.7,-1.3l-3.5,-0.2c-8.2,-0.4 -13,-4 -14.3,-10.9c-0.8,-4.1 -1.1,-17.3 -0.8,-33c0.2,-8.1 0.2,-15.4 0,-16.3c-0.1,-0.9 -0.5,-2.4 -0.9,-3.4c-1.2,-3.5 -0.3,-11.9 1.9,-17.6c0.3,-0.9 1.9,-4.2 3.5,-7.4c4.2,-8.2 4.5,-8.9 4.9,-10.5c0.5,-1.8 0.2,-5.4 -0.5,-6.8c-0.7,-1.3 -2.2,-2.9 -3.2,-3.5c-1.3,-0.7 -2.6,0.1 -4.7,2.9c-3.4,4.5 -14,19.4 -15.7,22.2c-3.7,6 -6,11.2 -8,18.8c-0.7,2.5 -1.9,7 -2.7,10.1c-0.8,3.1 -2.7,10.2 -4.1,15.8l-2.6,10.2l-4.6,5.2c-2.6,2.9 -5.8,6.5 -7.2,8s-2.5,3 -2.5,3.2c0,0.3 34.5,29.3 34.9,29.3C35,161.7 37.1,159.7 39.4,157.4zM133.3,141c1.3,-0.6 2.2,-1.4 2.9,-2.3c2.1,-2.7 2,2.4 1.9,-68.5l-0.1,-64l-0.7,-1.2c-1,-1.9 -2,-2.9 -3.7,-3.9l-1.6,-0.9l-37.8,-0.1c-42.5,-0.1 -39.4,-0.2 -42.1,2.2c-0.9,0.8 -1.8,2 -2.2,2.9c-0.7,1.6 -0.7,1.6 -0.8,14.2L49,32l1.8,-0.1c1.4,-0.1 2.1,0 3.2,0.5c2,1 3.9,2.9 5.1,5.1l1,2l0,-12.8l0,-12.8h33.6h33.6v51.3v51.3L93.8,116.5L60.2,116.5l-0.1,-34.4c-0.1,-33 -0.1,-34.4 -0.6,-32.9c-0.3,0.8 -1.8,4 -3.4,7c-5.5,10.6 -5.4,9.9 -5.4,47.2c0,27.6 0.1,30 1.7,33.1c1.1,2.2 2.7,3.7 5.1,4.7l1.7,0.7l36.2,0.1l36.2,0.1L133.3,141L133.3,141zM90.9,135.9c-2.9,-1.3 -4.5,-3.7 -4.4,-6.6c0,-4.1 3.1,-7.2 7.1,-7.2c2.1,0 3.6,0.6 5.2,2.2c2.2,2.2 2.8,5.4 1.3,8.3c-0.7,1.4 -2.5,3 -4,3.5C94.6,136.6 92.3,136.6 90.9,135.9z"/>
<path
android:fillColor="#FF000000"
android:pathData="M80.5,63h2.3v2.3h2.3v2.3L73.6,67.6v-2.3h2.3v-4.6h4.6L80.5,63L80.5,63zM110.5,83.8h2.3v-2.3h-2.3L110.5,83.8zM82.8,63h2.3v-2.3h-2.3L82.8,63zM115.1,83.8h2.3v-2.3h-2.3L115.1,83.8zM87.4,86.1L92,86.1L92,83.8h-4.6L87.4,86.1zM108.2,86.1L108.2,83.8h-2.3v2.3L108.2,86.1zM99,86.1h2.3v-4.6L99,81.5L99,86.1zM80.5,56.1v2.3h6.9v-2.3L80.5,56.1zM78.2,58.4v-2.3h-4.6v4.6h2.3v-2.3L78.2,58.4zM85.1,53.8L69,53.8v-16.1h16.1L85.1,53.8zM82.8,40L71.3,40v11.5h11.5L82.8,40zM73.6,81.5h6.9v-6.9h-6.9L73.6,81.5zM96.6,79.1v2.3L99,81.4v-2.3L96.6,79.1zM80.5,42.3h-6.9v6.9h6.9L80.5,42.3zM117.4,37.7L117.4,53.8L101.3,53.8v-16.1L117.4,37.7zM115.1,40L103.6,40v11.5h11.5L115.1,40zM69,69.9h16.1v16.1L69,86L69,69.9zM71.3,83.8h11.5v-11.5L71.3,72.3L71.3,83.8zM71.3,56.1L69,56.1v11.5h2.3L71.3,56.1zM101.3,67.6v2.3h2.3v-2.3L101.3,67.6zM94.3,76.9v-2.3L92,74.6v2.3h-4.6v4.6L92,81.5v2.3h2.3v-4.6h2.3v-2.3L94.3,76.9zM87.4,46.9L92,46.9v-2.3h-4.6L87.4,46.9zM105.9,65.3h4.6v2.3h2.3v-6.9h-2.3v-4.6h-2.3v6.9h-6.9v2.3h2.3v2.3h2.3L105.9,65.3zM108.2,72.2h-2.3v-2.3h-2.3v4.6h-6.9v2.3h4.6v4.6h2.3v2.3h2.3v-4.6h9.2v-2.3h-6.9L108.2,72.2zM108.2,72.2h2.3v-4.6h-2.3L108.2,72.2zM89.7,72.2v-2.3L92,69.9v-2.3h2.3v-2.3h2.3v-4.6h6.9v-4.6h-2.3v2.3L99,58.4v-9.2h-2.3v-4.6L99,44.6v-6.9h-2.3v4.6h-2.3v-4.6h-6.9v4.6h2.3v-2.3L92,40v4.6h2.3v6.9h2.3v2.3h-2.3v4.6L92,58.4L92,53.8h-2.3v-2.3h-2.3v4.6h2.3v2.3h-2.3v6.9h2.3v-4.6L92,60.7v4.6h-2.3v2.3h-2.3v6.9L92,74.5v-2.3L89.7,72.2zM115.1,74.5v-2.3h-4.6v2.3L115.1,74.5zM112.8,42.3h-6.9v6.9h6.9L112.8,42.3zM94.3,72.2L99,72.2v-2.3h-2.3v-2.3h-2.3L94.4,72.2zM99,67.6v-2.3h-2.3v2.3L99,67.6zM112.8,58.4h4.6v-2.3h-4.6L112.8,58.4zM115.1,76.9h2.3v-2.3h-2.3L115.1,76.9zM115.1,63h2.3v-2.3h-2.3L115.1,63zM94.3,51.5L92,51.5v2.3h2.3L94.3,51.5zM94.3,51.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M303.5,63h2.3v2.3h2.3v2.3h-11.5v-2.3h2.3v-4.6h4.6L303.5,63L303.5,63zM333.5,83.8h2.3v-2.3h-2.3L333.5,83.8zM305.8,63h2.3v-2.3h-2.3L305.8,63zM338.1,83.8h2.3v-2.3h-2.3L338.1,83.8zM310.4,86.1h4.6L315,83.8h-4.6L310.4,86.1zM331.2,86.1L331.2,83.8h-2.3v2.3L331.2,86.1zM322,86.1h2.3v-4.6L322,81.5L322,86.1zM303.5,56.1v2.3h6.9v-2.3L303.5,56.1zM301.2,58.4v-2.3h-4.6v4.6h2.3v-2.3L301.2,58.4zM308.1,53.8L292,53.8v-16.1h16.1L308.1,53.8zM305.8,40h-11.5v11.5h11.5L305.8,40zM296.6,81.5h6.9v-6.9h-6.9L296.6,81.5zM319.6,79.1v2.3h2.3v-2.3L319.6,79.1zM303.5,42.3h-6.9v6.9h6.9L303.5,42.3zM340.4,37.7L340.4,53.8h-16.1v-16.1L340.4,37.7zM338.1,40h-11.5v11.5h11.5L338.1,40zM292,69.9h16.1v16.1L292,86L292,69.9zM294.3,83.8h11.5v-11.5h-11.5L294.3,83.8zM294.3,56.1L292,56.1v11.5h2.3L294.3,56.1zM324.3,67.6v2.3h2.3v-2.3L324.3,67.6zM317.3,76.9v-2.3L315,74.6v2.3h-4.6v4.6h4.6v2.3h2.3v-4.6h2.3v-2.3L317.3,76.9zM310.4,46.9h4.6v-2.3h-4.6L310.4,46.9zM328.9,65.3h4.6v2.3h2.3v-6.9h-2.3v-4.6h-2.3v6.9h-6.9v2.3h2.3v2.3h2.3L328.9,65.3zM331.2,72.2h-2.3v-2.3h-2.3v4.6h-6.9v2.3h4.6v4.6h2.3v2.3h2.3v-4.6h9.2v-2.3h-6.9L331.2,72.2zM331.2,72.2h2.3v-4.6h-2.3L331.2,72.2zM312.7,72.2v-2.3h2.3v-2.3h2.3v-2.3h2.3v-4.6h6.9v-4.6h-2.3v2.3L322,58.4v-9.2h-2.3v-4.6h2.3v-6.9h-2.3v4.6h-2.3v-4.6h-6.9v4.6h2.3v-2.3h2.3v4.6h2.3v6.9h2.3v2.3h-2.3v4.6L315,58.4L315,53.8h-2.3v-2.3h-2.3v4.6h2.3v2.3h-2.3v6.9h2.3v-4.6h2.3v4.6h-2.3v2.3h-2.3v6.9h4.6v-2.3L312.7,72.2zM338.1,74.5v-2.3h-4.6v2.3L338.1,74.5zM335.8,42.3h-6.9v6.9h6.9L335.8,42.3zM317.3,72.2h4.6v-2.3h-2.3v-2.3h-2.3L317.3,72.2zM322,67.6v-2.3h-2.3v2.3L322,67.6zM335.8,58.4h4.6v-2.3h-4.6L335.8,58.4zM338.1,76.9h2.3v-2.3h-2.3L338.1,76.9zM338.1,63h2.3v-2.3h-2.3L338.1,63zM317.3,51.5L315,51.5v2.3h2.3L317.3,51.5zM317.3,51.5"/>
<path
android:fillColor="#FF000000"
android:pathData="M179.6,48.9l-20.6,18l20.6,16.7v-5.2L199,78.4v-24.3h-19.3L179.7,48.9z"/>
<path
android:fillColor="#FF000000"
android:pathData="M229.4,83.7l20.6,-18l-20.6,-16.7v5.2L210,54.2v24.3h19.3L229.3,83.7z"/>
</vector>

View File

@@ -1,89 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/diagram"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:layout_margin="16dp"
app:layout_constraintEnd_toStartOf="@id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/il_qr_code"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/introTwoWay"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/add_contact_intro_two_way"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/diagram" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
<ImageView
android:id="@+id/explanationImage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:scaleType="fitCenter"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/il_qr_code_nearby"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/explanationText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/face_to_face"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toBottomOf="@+id/explanationImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large">
android:layout_gravity="center_horizontal"
android:layout_marginHorizontal="16dp"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent" />
<ImageView
android:id="@+id/diagram"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:padding="@dimen/margin_medium"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="@id/explanationText"
app:layout_constraintEnd_toStartOf="@id/explanationText"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/qr_code_intro"
app:tint="@color/color_primary"
tools:ignore="ContentDescription" />
<ImageView
android:id="@+id/explanationImage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:paddingStart="@dimen/margin_large"
android:paddingTop="@dimen/margin_large"
android:paddingEnd="@dimen/margin_large"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@id/explanationText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/diagram"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/qr_code_explanation"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/explanationText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="@dimen/margin_large"
android:text="@string/face_to_face"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/diagram"
app:layout_constraintTop_toBottomOf="@id/explanationImage" />
<View
android:id="@+id/explanationBorder"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/border_explanation"
app:layout_constraintBottom_toBottomOf="@id/explanationText"
app:layout_constraintEnd_toEndOf="@id/explanationImage"
app:layout_constraintStart_toStartOf="@id/explanationImage"
app:layout_constraintTop_toTopOf="@id/explanationImage" />
<androidx.constraintlayout.widget.Barrier
android:id="@+id/barrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="bottom"
app:constraint_referenced_ids="diagram,explanationBorder" />
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/margin_medium"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/barrier" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</LinearLayout>

View File

@@ -41,7 +41,7 @@
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
app:tint="?attr/colorControlNormal"
tools:src="@drawable/ic_empty_state_group_list" />
tools:src="@drawable/il_empty_state_group_list" />
<TextView
android:id="@+id/emptyText"

View File

@@ -1,51 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".android.contact.connect.BluetoothIntroFragment">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/introImageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_margin="16dp"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_percent="0.2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_bluetooth" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/connect_via_bluetooth_intro"
app:layout_constraintBottom_toTopOf="@+id/startButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/introImageView" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/introImageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_margin="16dp"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/il_bluetooth_connect" />
<Button
android:id="@+id/startButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/start"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/connect_via_bluetooth_intro"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/introImageView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/startButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:text="@string/start"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</LinearLayout>

View File

@@ -15,7 +15,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_bluetooth" />
app:srcCompat="@drawable/il_bluetooth_connect" />
<ProgressBar
android:id="@+id/progressBar"

View File

@@ -30,7 +30,7 @@
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_crash"
app:srcCompat="@drawable/il_crash"
app:tint="?attr/colorControlNormal"
tools:ignore="ContentDescription" />

View File

@@ -21,7 +21,7 @@
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/alerts_and_states_error"
app:srcCompat="@drawable/ic_error"
app:tint="@color/briar_red_500"
tools:ignore="ContentDescription" />

View File

@@ -18,7 +18,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_xlarge">
android:layout_margin="@dimen/margin_large">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/errorIcon"
@@ -30,8 +30,7 @@
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/qr_code_error"
app:tint="?attr/colorControlNormal"
app:srcCompat="@drawable/il_qr_code_error"
tools:ignore="ContentDescription" />
<TextView

View File

@@ -1,70 +1,75 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/iconView"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/titleView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
tools:ignore="ContentDescription"
tools:srcCompat="@drawable/alerts_and_states_error"
tools:tint="@color/briar_red_500" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/titleView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:gravity="center"
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/iconView"
tools:text="@string/removable_drive_error_send_title" />
<ImageView
android:id="@+id/iconView"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/titleView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
tools:ignore="ContentDescription"
tools:srcCompat="@drawable/ic_error"
tools:tint="@color/briar_red_500" />
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleView"
tools:text="@string/removable_drive_error_send_text" />
<TextView
android:id="@+id/titleView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:gravity="center"
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/iconView"
tools:text="@string/removable_drive_error_send_title" />
<Button
android:id="@+id/button"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:text="@string/finish"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleView"
tools:text="@string/removable_drive_error_send_text" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
</ScrollView>
<Button
android:id="@+id/button"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:text="@string/finish"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</LinearLayout>

View File

@@ -5,6 +5,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
app:emptyAction="@string/no_forums_action"
app:emptyImage="@drawable/ic_empty_state_forum_list"
app:emptyImage="@drawable/il_empty_state_forum_list"
app:emptyText="@string/no_forums"
app:layout_behavior="org.briarproject.briar.android.view.BriarRecyclerViewBehavior" />

View File

@@ -1,52 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".android.hotspot.HotspotIntroFragment">
android:orientation="vertical">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_width"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_share_app"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/hotspot_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_width"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_share_app"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/hotspot_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/startButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<Button
android:id="@+id/startButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:layout_marginHorizontal="@dimen/margin_large"
android:drawablePadding="8dp"
android:text="@string/hotspot_button_start_sharing"
app:drawableLeftCompat="@drawable/ic_wifi_tethering"
@@ -83,7 +95,6 @@
app:layout_constraintStart_toEndOf="@+id/progressBar"
app:layout_constraintTop_toTopOf="@+id/startButton"
tools:visibility="visible" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</LinearLayout>

View File

@@ -1,80 +1,79 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large">
<ImageView
android:id="@+id/diagram"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:adjustViewBounds="true"
android:importantForAccessibility="no"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@id/introTwoWay"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/il_qr_code" />
<TextView
android:id="@+id/introTwoWay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/add_contact_intro_two_way"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/diagram" />
<ImageView
android:id="@+id/explanationImage"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginTop="16dp"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@id/explanationText"
app:layout_constraintEnd_toEndOf="@id/diagram"
app:layout_constraintStart_toStartOf="@id/diagram"
app:layout_constraintTop_toBottomOf="@id/introTwoWay"
app:srcCompat="@drawable/il_qr_code_nearby"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/explanationText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@string/face_to_face"
app:layout_constrainedWidth="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/explanationImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large">
android:layout_marginHorizontal="16dp"
android:layout_marginTop="@dimen/margin_medium"
android:text="@string/continue_button" />
<ImageView
android:id="@+id/diagram"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:paddingBottom="@dimen/margin_large"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@id/explanationImage"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/qr_code_intro"
app:tint="@color/color_primary" />
<ImageView
android:id="@+id/explanationImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:paddingLeft="@dimen/margin_large"
android:paddingTop="@dimen/margin_large"
android:paddingRight="@dimen/margin_large"
android:scaleType="fitCenter"
app:layout_constraintBottom_toTopOf="@id/explanationText"
app:layout_constraintEnd_toEndOf="@id/diagram"
app:layout_constraintStart_toStartOf="@id/diagram"
app:layout_constraintTop_toBottomOf="@id/diagram"
app:srcCompat="@drawable/qr_code_explanation"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/explanationText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large"
android:text="@string/face_to_face"
app:layout_constrainedWidth="true"
app:layout_constraintEnd_toEndOf="@id/explanationImage"
app:layout_constraintStart_toStartOf="@id/explanationImage"
app:layout_constraintTop_toBottomOf="@id/explanationImage" />
<View
android:id="@+id/explanationBorder"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/border_explanation"
app:layout_constraintBottom_toBottomOf="@id/explanationText"
app:layout_constraintEnd_toEndOf="@id/explanationImage"
app:layout_constraintStart_toStartOf="@id/explanationImage"
app:layout_constraintTop_toTopOf="@id/explanationImage" />
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_medium"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@id/explanationImage"
app:layout_constraintStart_toStartOf="@id/explanationImage"
app:layout_constraintTop_toBottomOf="@id/explanationText" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</LinearLayout>

View File

@@ -1,232 +1,250 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large">
android:layout_height="0dp"
android:layout_weight="1">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
<TextView
android:id="@+id/stepOne"
style="@style/StepBubble"
android:text="@string/step_1"
app:layout_constraintBottom_toTopOf="@+id/stepOneText"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />
<TextView
android:id="@+id/stepOneText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/send_link_title"
app:layout_constraintBottom_toTopOf="@+id/yourLinkIcon"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOne" />
<View
android:id="@+id/stepConnector"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_margin="16dp"
android:alpha="0.5"
android:background="@color/briar_accent"
app:layout_constraintBottom_toBottomOf="@+id/stepOne"
app:layout_constraintEnd_toStartOf="@+id/stepTwo"
app:layout_constraintStart_toEndOf="@+id/stepOne"
app:layout_constraintTop_toTopOf="@+id/stepOne" />
<TextView
android:id="@+id/stepTwo"
style="@style/StepBubble.Upcoming"
android:text="@string/step_2"
app:layout_constraintBottom_toTopOf="@+id/stepTwoText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="@+id/stepOne"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/stepTwoText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:alpha="0.5"
android:text="@string/add_contact_choose_nickname"
app:layout_constraintBottom_toTopOf="@+id/yourLinkIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toBottomOf="@+id/stepTwo" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/yourLinkIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="32dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOneText"
app:srcCompat="@drawable/ic_call_made"
app:tint="@android:color/white" />
<TextView
android:id="@+id/yourLink"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/your_link"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/yourLinkIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/yourLinkIcon"
app:layout_constraintTop_toTopOf="@+id/yourLinkIcon" />
<TextView
android:id="@+id/linkView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@android:color/white"
android:ellipsize="end"
android:padding="8dp"
android:singleLine="true"
android:textColor="@color/briar_primary"
android:textIsSelectable="true"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/yourLinkIcon"
tools:text="briar://scnsdflamslkfjgluoblmksdfbwevlewajfdlkjewwhqliafskfjhskdjhvoieiv" />
<Button
android:id="@+id/copyButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:enabled="false"
android:text="@string/copy_button"
app:drawableLeftCompat="@drawable/ic_content_copy"
app:drawableStartCompat="@drawable/ic_content_copy"
app:layout_constraintEnd_toStartOf="@id/shareButton"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkView" />
<Button
android:id="@+id/shareButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:enabled="false"
android:text="@string/share_button"
app:drawableLeftCompat="@drawable/social_share_blue"
app:drawableStartCompat="@drawable/social_share_blue"
app:layout_constraintBottom_toBottomOf="@id/copyButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toEndOf="@id/copyButton"
app:layout_constraintTop_toTopOf="@id/copyButton" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/linkInputIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="16dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/copyButton"
app:srcCompat="@drawable/ic_call_received"
app:tint="@android:color/white" />
<TextView
android:id="@+id/inputLink"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/contact_link_intro"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/linkInputIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/linkInputIcon"
app:layout_constraintTop_toTopOf="@+id/linkInputIcon" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/linkInputLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:errorEnabled="true"
app:hintEnabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkInputIcon">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/linkInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/contact_link_hint"
android:importantForAutofill="no"
android:inputType="textUri" />
</com.google.android.material.textfield.TextInputLayout>
<Button
android:id="@+id/pasteButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:text="@string/paste_button"
app:drawableLeftCompat="@drawable/ic_content_paste"
app:drawableStartCompat="@drawable/ic_content_paste"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkInputLayout"
app:layout_constraintVertical_bias="0.0" />
<Button
android:id="@+id/addButton"
style="@style/BriarButton"
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:enabled="false"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/pasteButton"
app:layout_constraintVertical_bias="1.0"
tools:enabled="true" />
android:padding="@dimen/margin_large">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<TextView
android:id="@+id/stepOne"
style="@style/StepBubble"
android:text="@string/step_1"
app:layout_constraintBottom_toTopOf="@+id/stepOneText"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />
<TextView
android:id="@+id/stepOneText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/send_link_title"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOne" />
<View
android:id="@+id/stepConnector"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_margin="16dp"
android:alpha="0.5"
android:background="@color/briar_accent"
app:layout_constraintBottom_toBottomOf="@+id/stepOne"
app:layout_constraintEnd_toStartOf="@+id/stepTwo"
app:layout_constraintStart_toEndOf="@+id/stepOne"
app:layout_constraintTop_toTopOf="@+id/stepOne" />
<TextView
android:id="@+id/stepTwo"
style="@style/StepBubble.Upcoming"
android:text="@string/step_2"
app:layout_constraintBottom_toTopOf="@+id/stepTwoText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="@+id/stepOne"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/stepTwoText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:alpha="0.5"
android:text="@string/add_contact_choose_nickname"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toBottomOf="@+id/stepTwo" />
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginHorizontal="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/yourLinkIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOneText"
app:srcCompat="@drawable/il_add_contact_remote"
tools:ignore="ContentDescription" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/yourLinkIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="8dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
app:srcCompat="@drawable/ic_call_made"
app:tint="@android:color/white" />
<TextView
android:id="@+id/yourLink"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/your_link"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/yourLinkIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/yourLinkIcon"
app:layout_constraintTop_toTopOf="@+id/yourLinkIcon" />
<TextView
android:id="@+id/linkView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@android:color/white"
android:ellipsize="end"
android:padding="8dp"
android:singleLine="true"
android:textColor="@color/briar_primary"
android:textIsSelectable="true"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/yourLinkIcon"
tools:text="briar://scnsdflamslkfjgluoblmksdfbwevlewajfdlkjewwhqliafskfjhskdjhvoieiv" />
<Button
android:id="@+id/copyButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:enabled="false"
android:text="@string/copy_button"
app:drawableLeftCompat="@drawable/ic_content_copy"
app:drawableStartCompat="@drawable/ic_content_copy"
app:layout_constraintEnd_toStartOf="@id/shareButton"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkView" />
<Button
android:id="@+id/shareButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:enabled="false"
android:text="@string/share_button"
app:drawableLeftCompat="@drawable/social_share_blue"
app:drawableStartCompat="@drawable/social_share_blue"
app:layout_constraintBottom_toBottomOf="@id/copyButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toEndOf="@id/copyButton"
app:layout_constraintTop_toTopOf="@id/copyButton" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/linkInputIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="16dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/copyButton"
app:srcCompat="@drawable/ic_call_received"
app:tint="@android:color/white" />
<TextView
android:id="@+id/inputLink"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/contact_link_intro"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/linkInputIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/linkInputIcon"
app:layout_constraintTop_toTopOf="@+id/linkInputIcon" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/linkInputLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:errorEnabled="true"
app:hintEnabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkInputIcon">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/linkInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/contact_link_hint"
android:importantForAutofill="no"
android:inputType="textUri" />
</com.google.android.material.textfield.TextInputLayout>
<Button
android:id="@+id/pasteButton"
style="@style/BriarButtonFlat.Positive.Tiny"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:text="@string/paste_button"
app:drawableLeftCompat="@drawable/ic_content_paste"
app:drawableStartCompat="@drawable/ic_content_paste"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linkInputLayout"
app:layout_constraintVertical_bias="0.0" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<Button
android:id="@+id/addButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:enabled="false"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/pasteButton"
app:layout_constraintVertical_bias="1.0"
tools:enabled="true" />
</LinearLayout>

View File

@@ -1,63 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".android.mailbox.MailboxActivity">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_width"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_mailbox"
app:tint="@color/briar_brand_green"
tools:ignore="ContentDescription" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/mailbox_setup_download"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/scanButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_width"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_mailbox_setup"
tools:ignore="ContentDescription" />
<Button
android:id="@+id/scanButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:drawablePadding="8dp"
android:text="@string/mailbox_setup_button_scan"
app:drawableLeftCompat="@drawable/ic_qr_code"
app:drawableStartCompat="@drawable/ic_qr_code"
app:drawableTint="@color/button_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:visibility="visible" />
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:text="@string/mailbox_setup_download"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/scanButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:drawablePadding="8dp"
android:text="@string/mailbox_setup_button_scan"
app:drawableLeftCompat="@drawable/ic_qr_code"
app:drawableStartCompat="@drawable/ic_qr_code"
app:drawableTint="@color/button_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:visibility="visible" />
</LinearLayout>

View File

@@ -1,59 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".android.mailbox.MailboxActivity">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_mailbox_onboarding"
tools:ignore="ContentDescription" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/mailbox_setup_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/continueButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_mailbox"
tools:ignore="ContentDescription" />
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:drawablePadding="8dp"
android:text="@string/continue_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:visibility="visible" />
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:text="@string/mailbox_setup_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/continueButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:text="@string/continue_button"
tools:visibility="visible" />
</LinearLayout>

View File

@@ -1,176 +1,166 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_large">
android:layout_height="0dp"
android:layout_weight="1">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/stepOne"
style="@style/StepBubble.Completed"
app:layout_constraintBottom_toTopOf="@+id/stepOneText"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/stepOneText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/send_link_title"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOne" />
<View
android:id="@+id/stepConnector"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_margin="16dp"
android:background="@color/briar_accent"
app:layout_constraintBottom_toBottomOf="@+id/stepOne"
app:layout_constraintEnd_toStartOf="@+id/stepTwo"
app:layout_constraintStart_toEndOf="@+id/stepOne"
app:layout_constraintTop_toTopOf="@+id/stepOne" />
<TextView
android:id="@+id/stepTwo"
style="@style/StepBubble"
android:text="@string/step_2"
app:layout_constraintBottom_toTopOf="@+id/stepTwoText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="@+id/stepOne"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/stepTwoText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/add_contact_choose_nickname"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toBottomOf="@+id/stepTwo" />
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="32dp"
app:layout_constraintBottom_toTopOf="@+id/nicknameIcon"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_max="256dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOneText"
app:srcCompat="@drawable/ic_nickname"
tools:ignore="ContentDescription" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/nicknameIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="32dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintBottom_toTopOf="@+id/contactNameLayout"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
app:srcCompat="@drawable/ic_person"
app:tint="@android:color/white" />
<TextView
android:id="@+id/nicknameIntro"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/nickname_intro"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/nicknameIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/nicknameIcon"
app:layout_constraintTop_toTopOf="@+id/nicknameIcon" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/contactNameLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:errorEnabled="true"
app:hintEnabled="false"
app:layout_constraintBottom_toTopOf="@+id/space"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/nicknameIcon">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/contactNameInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/add_contact_choose_a_nickname"
android:importantForAutofill="no"
android:inputType="text|textCapWords" />
</com.google.android.material.textfield.TextInputLayout>
<Space
android:id="@+id/space"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toTopOf="@+id/addButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/contactNameLayout" />
<Button
android:id="@+id/addButton"
style="@style/BriarButton"
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/add_contact_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/contactNameLayout"
app:layout_constraintVertical_bias="1.0" />
android:padding="@dimen/margin_large">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/contactNameLayout"
app:layout_constraintVertical_bias="1.0" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/stepOne"
style="@style/StepBubble.Completed"
app:layout_constraintBottom_toTopOf="@+id/stepOneText"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
</ScrollView>
<TextView
android:id="@+id/stepOneText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/send_link_title"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOne" />
<View
android:id="@+id/stepConnector"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_margin="16dp"
android:background="@color/briar_accent"
app:layout_constraintBottom_toBottomOf="@+id/stepOne"
app:layout_constraintEnd_toStartOf="@+id/stepTwo"
app:layout_constraintStart_toEndOf="@+id/stepOne"
app:layout_constraintTop_toTopOf="@+id/stepOne" />
<TextView
android:id="@+id/stepTwo"
style="@style/StepBubble"
android:text="@string/step_2"
app:layout_constraintBottom_toTopOf="@+id/stepTwoText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="@+id/stepOne"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/stepTwoText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="@string/add_contact_choose_nickname"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/guideline"
app:layout_constraintTop_toBottomOf="@+id/stepTwo" />
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="32dp"
app:layout_constraintBottom_toTopOf="@+id/nicknameIcon"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_max="256dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepOneText"
app:srcCompat="@drawable/il_add_contact_remote_nickname"
tools:ignore="ContentDescription" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/nicknameIcon"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginTop="32dp"
android:background="@drawable/bubble_accent"
android:scaleType="center"
app:layout_constraintBottom_toTopOf="@+id/contactNameLayout"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
app:srcCompat="@drawable/ic_person"
app:tint="@android:color/white" />
<TextView
android:id="@+id/nicknameIntro"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:gravity="left|start"
android:text="@string/nickname_intro"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="@+id/nicknameIcon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/nicknameIcon"
app:layout_constraintTop_toTopOf="@+id/nicknameIcon" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/contactNameLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:errorEnabled="true"
app:hintEnabled="false"
app:layout_constraintBottom_toTopOf="@+id/space"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/nicknameIcon">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/contactNameInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/add_contact_choose_a_nickname"
android:importantForAutofill="no"
android:inputType="text|textCapWords" />
</com.google.android.material.textfield.TextInputLayout>
<Space
android:id="@+id/space"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/contactNameLayout" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<org.briarproject.briar.android.view.BriarButton
android:id="@+id/addButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
app:buttonStyle="@style/BriarButton"
app:text="@string/add_contact_button" />
</LinearLayout>

View File

@@ -1,81 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_transfer_data"
tools:ignore="ContentDescription" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:text="@string/removable_drive_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/buttonLearnMore"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_square"
android:layout_height="@dimen/hero_square"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/introView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_transfer_data"
tools:ignore="ContentDescription" />
<Button
android:id="@+id/buttonLearnMore"
style="@style/BriarButtonFlat.Positive"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/margin_large"
android:padding="16dp"
android:text="@string/learn_more"
android:textAllCaps="false"
android:textSize="14sp"
app:layout_constraintBottom_toTopOf="@id/sendButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/introView" />
<TextView
android:id="@+id/introView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:text="@string/removable_drive_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/buttonLearnMore"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<Button
android:id="@+id/sendButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:layout_marginTop="@dimen/margin_large"
android:text="@string/removable_drive_title_send"
app:layout_constraintBottom_toTopOf="@+id/receiveButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:id="@+id/buttonLearnMore"
style="@style/BriarButtonFlat.Positive"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/margin_large"
android:padding="16dp"
android:text="@string/learn_more"
android:textAllCaps="false"
android:textSize="14sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/introView" />
<Button
android:id="@+id/receiveButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:text="@string/removable_drive_title_receive"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/sendButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:layout_marginTop="8dp"
android:text="@string/removable_drive_title_send"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:id="@+id/receiveButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_large"
android:text="@string/removable_drive_title_receive"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</LinearLayout>

View File

@@ -1,71 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/progressBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
app:layout_constraintVertical_bias="0.25"
app:srcCompat="@drawable/ic_transfer_data_receive"
tools:ignore="ContentDescription" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:indeterminate="true"
android:visibility="invisible"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
tools:visibility="visible" />
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/progressBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_transfer_data_receive"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/removable_drive_receive_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/fileButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/progressBar" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:indeterminate="true"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
tools:visibility="visible" />
<Button
android:id="@+id/fileButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:enabled="false"
android:text="@string/removable_drive_receive_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/removable_drive_receive_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/progressBar" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/fileButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:enabled="false"
android:text="@string/removable_drive_receive_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</LinearLayout>

View File

@@ -1,70 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/progressBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/ic_transfer_data_send"
tools:ignore="ContentDescription" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:visibility="invisible"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
tools:visibility="visible" />
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/hero_rect_width"
android:layout_height="@dimen/hero_rect_height"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
app:layout_constraintBottom_toTopOf="@+id/progressBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.25"
app:layout_constraintVertical_chainStyle="packed"
app:srcCompat="@drawable/il_transfer_data_send"
tools:ignore="ContentDescription" />
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/removable_drive_send_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toTopOf="@+id/fileButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/progressBar" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@+id/introTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"
tools:visibility="visible" />
<Button
android:id="@+id/fileButton"
style="@style/BriarButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:enabled="false"
android:text="@string/removable_drive_send_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/introTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_xlarge"
android:layout_marginTop="@dimen/margin_xlarge"
android:layout_marginBottom="@dimen/margin_large"
android:text="@string/removable_drive_send_intro"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/progressBar" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</ScrollView>
<Button
android:id="@+id/fileButton"
style="@style/BriarButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_large"
android:enabled="false"
android:text="@string/removable_drive_send_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</LinearLayout>

View File

@@ -36,8 +36,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:spanCount="2"
tools:ignore="ContentDescription"
tools:src="@drawable/alerts_and_states_error" />
tools:ignore="ContentDescription" />
<com.vanniktech.emoji.EmojiTextView
android:id="@+id/text"

View File

@@ -26,4 +26,10 @@
<color name="thread_item_highlight">@android:color/black</color>
<color name="divider">@android:color/black</color>
</resources>
<color name="il_border">#64748B</color>
<color name="il_background">#334155</color>
<color name="il_lime">@color/briar_lime_400_new</color>
<color name="il_orange">@color/briar_orange_400</color>
<color name="il_red">@color/briar_red_500_new</color>
</resources>

View File

@@ -1,20 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="briar_lime_600">#67a60f</color>
<color name="briar_lime_600_new">#65A30D</color>
<color name="briar_lime_400">#82c91e</color>
<color name="briar_lime_400_new">#A3E635</color>
<color name="briar_blue_800">#134a81</color>
<color name="briar_blue_600">#1b69b6</color>
<color name="briar_blue_400">#418cd8</color>
<color name="briar_orange_200">#fed69f</color>
<color name="briar_orange_400">#FBBF24</color>
<color name="briar_orange_500">#fc9403</color>
<color name="briar_orange_500_new">#F59E0B</color>
<color name="briar_red_500">#db3b21</color>
<color name="briar_red_500_new">#EF4444</color>
<color name="briar_red_600">#DC2626</color>
<color name="briar_night_950">#0e171f</color>
<color name="briar_night_800">#212d3b</color>
<color name="briar_night_700">#2e3d4f</color>
<color name="briar_night_600">#475569</color>
<color name="briar_night_500">#435b77</color>
<color name="briar_night_50">#ebf3fa</color>
@@ -52,6 +59,12 @@
<color name="msg_status_bubble_foreground">@android:color/white</color>
<color name="msg_selected_background">@color/briar_accent</color>
<color name="il_border">#9CA3AF</color>
<color name="il_background">#E5E7EB</color>
<color name="il_lime">@color/briar_lime_600_new</color>
<color name="il_orange">@color/briar_orange_500_new</color>
<color name="il_red">@color/briar_red_600</color>
<!-- text colors -->
<color name="briar_text_link">@color/briar_blue_400</color>
<color name="briar_text_primary">#df000000</color>
@@ -73,4 +86,4 @@
<color name="thread_item_highlight">@android:color/white</color>
<color name="divider">@color/briar_gray_200</color>
</resources>
</resources>

View File

@@ -240,6 +240,8 @@
<!-- Adding Contacts -->
<string name="add_contact_title">Add Contact Nearby</string>
<string name="add_contact_intro_two_way">Both of you need to scan each other\'s QR code.</string>
<string name="add_contact_error_two_way">Did both of you scan each other\'s QR code?</string>
<string name="face_to_face">You must meet up with the person you want to add as a contact.\n\nThis will prevent anyone from impersonating you or reading your messages in future.</string>
<string name="continue_button">Continue</string>
<string name="try_again_button">Try Again</string>