Merge pull request 'Health Trackers Feature (faiz_dev)' (#148) from faiz_dev into main
Reviewed-on: https://34.17.182.140/Haroon6138/HMG_Patient_App_New/pulls/148main
@ -1,6 +1,51 @@
|
|||||||
package com.ejada.hmg
|
package com.ejada.hmg
|
||||||
|
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Build
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.WindowManager
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.RequiresApi
|
||||||
|
import com.ejada.hmg.penguin.PenguinInPlatformBridge
|
||||||
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
|
import io.flutter.plugins.GeneratedPluginRegistrant
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterFragmentActivity
|
import io.flutter.embedding.android.FlutterFragmentActivity
|
||||||
|
|
||||||
|
|
||||||
class MainActivity : FlutterFragmentActivity()
|
class MainActivity: FlutterFragmentActivity() {
|
||||||
|
@RequiresApi(Build.VERSION_CODES.O)
|
||||||
|
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
|
||||||
|
GeneratedPluginRegistrant.registerWith(flutterEngine);
|
||||||
|
// Create Flutter Platform Bridge
|
||||||
|
this.window.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED or WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON or WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD or WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON)
|
||||||
|
|
||||||
|
PenguinInPlatformBridge(flutterEngine, this).create()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onRequestPermissionsResult(
|
||||||
|
requestCode: Int,
|
||||||
|
permissions: Array<out String>,
|
||||||
|
grantResults: IntArray
|
||||||
|
) {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults)
|
||||||
|
|
||||||
|
val granted = grantResults.all { it == PackageManager.PERMISSION_GRANTED }
|
||||||
|
val intent = Intent("PERMISSION_RESULT_ACTION").apply {
|
||||||
|
putExtra("PERMISSION_GRANTED", granted)
|
||||||
|
}
|
||||||
|
sendBroadcast(intent)
|
||||||
|
|
||||||
|
// Log the request code and permission results
|
||||||
|
Log.d("PermissionsResult", "Request Code: $requestCode")
|
||||||
|
Log.d("PermissionsResult", "Permissions: ${permissions.joinToString()}")
|
||||||
|
Log.d("PermissionsResult", "Grant Results: ${grantResults.joinToString()}")
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResume() {
|
||||||
|
super.onResume()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -0,0 +1,61 @@
|
|||||||
|
package com.ejada.hmg.penguin
|
||||||
|
|
||||||
|
import com.ejada.hmg.MainActivity
|
||||||
|
import android.os.Build
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.annotation.RequiresApi
|
||||||
|
import com.ejada.hmg.penguin.PenguinView
|
||||||
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
|
import io.flutter.plugin.common.MethodCall
|
||||||
|
import com.ejada.hmg.PermissionManager.HostNotificationPermissionManager
|
||||||
|
import com.ejada.hmg.PermissionManager.HostBgLocationManager
|
||||||
|
import com.ejada.hmg.PermissionManager.HostGpsStateManager
|
||||||
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
|
||||||
|
class PenguinInPlatformBridge(
|
||||||
|
private var flutterEngine: FlutterEngine,
|
||||||
|
private var mainActivity: MainActivity
|
||||||
|
) {
|
||||||
|
|
||||||
|
private lateinit var channel: MethodChannel
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private const val CHANNEL = "launch_penguin_ui"
|
||||||
|
}
|
||||||
|
|
||||||
|
@RequiresApi(Build.VERSION_CODES.O)
|
||||||
|
fun create() {
|
||||||
|
// openTok = OpenTok(mainActivity, flutterEngine)
|
||||||
|
channel = MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL)
|
||||||
|
channel.setMethodCallHandler { call: MethodCall, result: MethodChannel.Result ->
|
||||||
|
when (call.method) {
|
||||||
|
"launchPenguin" -> {
|
||||||
|
print("the platform channel is being called")
|
||||||
|
|
||||||
|
if (HostNotificationPermissionManager.isNotificationPermissionGranted(mainActivity))
|
||||||
|
else HostNotificationPermissionManager.requestNotificationPermission(mainActivity)
|
||||||
|
HostBgLocationManager.requestLocationBackgroundPermission(mainActivity)
|
||||||
|
HostGpsStateManager.requestLocationPermission(mainActivity)
|
||||||
|
val args = call.arguments as Map<String, Any>?
|
||||||
|
Log.d("TAG", "configureFlutterEngine: $args")
|
||||||
|
println("args")
|
||||||
|
args?.let {
|
||||||
|
PenguinView(
|
||||||
|
mainActivity,
|
||||||
|
100,
|
||||||
|
args,
|
||||||
|
flutterEngine.dartExecutor.binaryMessenger,
|
||||||
|
activity = mainActivity,
|
||||||
|
channel
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> {
|
||||||
|
result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,139 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.HandlerThread;
|
||||||
|
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.FutureTask;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This preferences for app level
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class AppPreferences {
|
||||||
|
|
||||||
|
public static final String PREF_NAME = "PenguinINUI_AppPreferences";
|
||||||
|
public static final int MODE = Context.MODE_PRIVATE;
|
||||||
|
|
||||||
|
public static final String campusIdKey = "campusId";
|
||||||
|
|
||||||
|
public static final String LANG = "Lang";
|
||||||
|
|
||||||
|
public static final String settingINFO = "SETTING-INFO";
|
||||||
|
|
||||||
|
public static final String userName = "userName";
|
||||||
|
public static final String passWord = "passWord";
|
||||||
|
|
||||||
|
private static HandlerThread handlerThread;
|
||||||
|
private static Handler handler;
|
||||||
|
|
||||||
|
static {
|
||||||
|
handlerThread = new HandlerThread("PreferencesHandlerThread");
|
||||||
|
handlerThread.start();
|
||||||
|
handler = new Handler(handlerThread.getLooper());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static SharedPreferences getPreferences(final Context context) {
|
||||||
|
return context.getSharedPreferences(AppPreferences.PREF_NAME, AppPreferences.MODE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SharedPreferences.Editor getEditor(final Context context) {
|
||||||
|
return getPreferences(context).edit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static void writeInt(final Context context, final String key, final int value) {
|
||||||
|
handler.post(() -> {
|
||||||
|
SharedPreferences.Editor editor = getEditor(context);
|
||||||
|
editor.putInt(key, value);
|
||||||
|
editor.apply();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static int readInt(final Context context, final String key, final int defValue) {
|
||||||
|
Callable<Integer> callable = () -> {
|
||||||
|
SharedPreferences preferences = getPreferences(context);
|
||||||
|
return preferences.getInt(key, -1);
|
||||||
|
};
|
||||||
|
|
||||||
|
Future<Integer> future = new FutureTask<>(callable);
|
||||||
|
handler.post((Runnable) future);
|
||||||
|
|
||||||
|
try {
|
||||||
|
return future.get();
|
||||||
|
} catch (InterruptedException | ExecutionException e) {
|
||||||
|
e.printStackTrace(); // Handle the exception appropriately
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1; // Return the default value in case of an error
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getCampusId(final Context context) {
|
||||||
|
return readInt(context,campusIdKey,-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static void writeString(final Context context, final String key, final String value) {
|
||||||
|
handler.post(() -> {
|
||||||
|
SharedPreferences.Editor editor = getEditor(context);
|
||||||
|
editor.putString(key, value);
|
||||||
|
editor.apply();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static String readString(final Context context, final String key, final String defValue) {
|
||||||
|
Callable<String> callable = () -> {
|
||||||
|
SharedPreferences preferences = getPreferences(context);
|
||||||
|
return preferences.getString(key, defValue);
|
||||||
|
};
|
||||||
|
|
||||||
|
Future<String> future = new FutureTask<>(callable);
|
||||||
|
handler.post((Runnable) future);
|
||||||
|
|
||||||
|
try {
|
||||||
|
return future.get();
|
||||||
|
} catch (InterruptedException | ExecutionException e) {
|
||||||
|
e.printStackTrace(); // Handle the exception appropriately
|
||||||
|
}
|
||||||
|
|
||||||
|
return defValue; // Return the default value in case of an error
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static void writeBoolean(final Context context, final String key, final boolean value) {
|
||||||
|
handler.post(() -> {
|
||||||
|
SharedPreferences.Editor editor = getEditor(context);
|
||||||
|
editor.putBoolean(key, value);
|
||||||
|
editor.apply();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean readBoolean(final Context context, final String key, final boolean defValue) {
|
||||||
|
Callable<Boolean> callable = () -> {
|
||||||
|
SharedPreferences preferences = getPreferences(context);
|
||||||
|
return preferences.getBoolean(key, defValue);
|
||||||
|
};
|
||||||
|
|
||||||
|
Future<Boolean> future = new FutureTask<>(callable);
|
||||||
|
handler.post((Runnable) future);
|
||||||
|
|
||||||
|
try {
|
||||||
|
return future.get();
|
||||||
|
} catch (InterruptedException | ExecutionException e) {
|
||||||
|
e.printStackTrace(); // Handle the exception appropriately
|
||||||
|
}
|
||||||
|
|
||||||
|
return defValue; // Return the default value in case of an error
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,136 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.provider.Settings;
|
||||||
|
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
|
|
||||||
|
import com.peng.pennavmap.PlugAndPlaySDK;
|
||||||
|
import com.peng.pennavmap.R;
|
||||||
|
import com.peng.pennavmap.enums.InitializationErrorType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manages background location permission requests and handling for the application.
|
||||||
|
*/
|
||||||
|
public class HostBgLocationManager {
|
||||||
|
/**
|
||||||
|
* Request code for background location permission
|
||||||
|
*/
|
||||||
|
public static final int REQUEST_ACCESS_BACKGROUND_LOCATION_CODE = 301;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request code for navigating to app settings
|
||||||
|
*/
|
||||||
|
private static final int REQUEST_CODE_SETTINGS = 11234;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Alert dialog for denied permissions
|
||||||
|
*/
|
||||||
|
private static AlertDialog deniedAlertDialog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the background location permission has been granted.
|
||||||
|
*
|
||||||
|
* @param context the context of the application or activity
|
||||||
|
* @return true if the permission is granted, false otherwise
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static boolean isLocationBackgroundGranted(Context context) {
|
||||||
|
return ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_BACKGROUND_LOCATION)
|
||||||
|
== PackageManager.PERMISSION_GRANTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Requests the background location permission from the user.
|
||||||
|
*
|
||||||
|
* @param activity the activity from which the request is made
|
||||||
|
*/
|
||||||
|
public static void requestLocationBackgroundPermission(Activity activity) {
|
||||||
|
// Check if the ACCESS_BACKGROUND_LOCATION permission is already granted
|
||||||
|
if (!isLocationBackgroundGranted(activity)) {
|
||||||
|
// Permission is not granted, so request it
|
||||||
|
ActivityCompat.requestPermissions(activity,
|
||||||
|
new String[]{Manifest.permission.ACCESS_BACKGROUND_LOCATION},
|
||||||
|
REQUEST_ACCESS_BACKGROUND_LOCATION_CODE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Displays a dialog prompting the user to grant the background location permission.
|
||||||
|
*
|
||||||
|
* @param activity the activity where the dialog is displayed
|
||||||
|
*/
|
||||||
|
public static void showLocationBackgroundPermission(Activity activity) {
|
||||||
|
AlertDialog alertDialog = new AlertDialog.Builder(activity)
|
||||||
|
.setCancelable(false)
|
||||||
|
.setMessage(activity.getString(R.string.com_penguin_nav_ui_geofence_alert_msg))
|
||||||
|
.setPositiveButton(activity.getString(R.string.com_penguin_nav_ui_go_to_settings), (dialog, which) -> {
|
||||||
|
if (activity.shouldShowRequestPermissionRationale(Manifest.permission.ACCESS_BACKGROUND_LOCATION)) {
|
||||||
|
HostBgLocationManager.requestLocationBackgroundPermission(activity);
|
||||||
|
} else {
|
||||||
|
openAppSettings(activity);
|
||||||
|
}
|
||||||
|
if (dialog != null) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.setNegativeButton(activity.getString(R.string.com_penguin_nav_ui_later), (dialog, which) -> {
|
||||||
|
dialog.cancel();
|
||||||
|
})
|
||||||
|
.create();
|
||||||
|
|
||||||
|
alertDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the scenario where permissions are denied by the user.
|
||||||
|
* Displays a dialog to guide the user to app settings or exit the activity.
|
||||||
|
*
|
||||||
|
* @param activity the activity where the dialog is displayed
|
||||||
|
*/
|
||||||
|
public static synchronized void handlePermissionsDenied(Activity activity) {
|
||||||
|
if (deniedAlertDialog != null && deniedAlertDialog.isShowing()) {
|
||||||
|
deniedAlertDialog.dismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
||||||
|
builder.setCancelable(false)
|
||||||
|
.setMessage(activity.getString(R.string.com_penguin_nav_ui_permission_denied_dialog_msg))
|
||||||
|
.setNegativeButton(activity.getString(R.string.com_penguin_nav_ui_cancel), (dialogInterface, i) -> {
|
||||||
|
if (PlugAndPlaySDK.externalPenNavUIDelegate != null) {
|
||||||
|
PlugAndPlaySDK.externalPenNavUIDelegate.onPenNavInitializationError(
|
||||||
|
InitializationErrorType.permissions.getTypeKey(),
|
||||||
|
InitializationErrorType.permissions);
|
||||||
|
}
|
||||||
|
activity.finish();
|
||||||
|
})
|
||||||
|
.setPositiveButton(activity.getString(R.string.com_penguin_nav_ui_go_settings), (dialogInterface, i) -> {
|
||||||
|
dialogInterface.dismiss();
|
||||||
|
openAppSettings(activity);
|
||||||
|
});
|
||||||
|
deniedAlertDialog = builder.create();
|
||||||
|
deniedAlertDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Opens the application's settings screen to allow the user to modify permissions.
|
||||||
|
*
|
||||||
|
* @param activity the activity from which the settings screen is launched
|
||||||
|
*/
|
||||||
|
private static void openAppSettings(Activity activity) {
|
||||||
|
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
|
||||||
|
Uri uri = Uri.fromParts("package", activity.getPackageName(), null);
|
||||||
|
intent.setData(uri);
|
||||||
|
|
||||||
|
if (intent.resolveActivity(activity.getPackageManager()) != null) {
|
||||||
|
activity.startActivityForResult(intent, REQUEST_CODE_SETTINGS);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,68 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.location.LocationManager;
|
||||||
|
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
|
|
||||||
|
import com.peng.pennavmap.managers.permissions.managers.BgLocationManager;
|
||||||
|
|
||||||
|
public class HostGpsStateManager {
|
||||||
|
private static final int LOCATION_PERMISSION_REQUEST_CODE = 1;
|
||||||
|
|
||||||
|
|
||||||
|
public boolean checkGPSEnabled(Activity activity) {
|
||||||
|
LocationManager gpsStateManager = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE);
|
||||||
|
return gpsStateManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isGpsGranted(Activity activity) {
|
||||||
|
return BgLocationManager.isLocationBackgroundGranted(activity)
|
||||||
|
|| ContextCompat.checkSelfPermission(
|
||||||
|
activity,
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION
|
||||||
|
) == PackageManager.PERMISSION_GRANTED
|
||||||
|
&& ContextCompat.checkSelfPermission(
|
||||||
|
activity,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION
|
||||||
|
) == PackageManager.PERMISSION_GRANTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the location permission is granted.
|
||||||
|
*
|
||||||
|
* @param activity the Activity context
|
||||||
|
* @return true if permission is granted, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean isLocationPermissionGranted(Activity activity) {
|
||||||
|
return ContextCompat.checkSelfPermission(
|
||||||
|
activity,
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION
|
||||||
|
) == PackageManager.PERMISSION_GRANTED &&
|
||||||
|
ContextCompat.checkSelfPermission(
|
||||||
|
activity,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION
|
||||||
|
) == PackageManager.PERMISSION_GRANTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Requests the location permission.
|
||||||
|
*
|
||||||
|
* @param activity the Activity context
|
||||||
|
*/
|
||||||
|
public static void requestLocationPermission(Activity activity) {
|
||||||
|
ActivityCompat.requestPermissions(
|
||||||
|
activity,
|
||||||
|
new String[]{
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION,
|
||||||
|
},
|
||||||
|
LOCATION_PERMISSION_REQUEST_CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,73 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.os.Build;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.core.app.NotificationManagerCompat;
|
||||||
|
|
||||||
|
public class HostNotificationPermissionManager {
|
||||||
|
private static final int REQUEST_NOTIFICATION_PERMISSION = 100;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the notification permission is granted.
|
||||||
|
*
|
||||||
|
* @return true if the notification permission is granted, false otherwise.
|
||||||
|
*/
|
||||||
|
public static boolean isNotificationPermissionGranted(Activity activity) {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
|
try {
|
||||||
|
return ActivityCompat.checkSelfPermission(activity, android.Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
== PackageManager.PERMISSION_GRANTED;
|
||||||
|
} catch (Exception e) {
|
||||||
|
// Handle cases where the API is unavailable
|
||||||
|
e.printStackTrace();
|
||||||
|
return NotificationManagerCompat.from(activity).areNotificationsEnabled();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Permissions were not required below Android 13 for notifications
|
||||||
|
return NotificationManagerCompat.from(activity).areNotificationsEnabled();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Requests the notification permission.
|
||||||
|
*/
|
||||||
|
public static void requestNotificationPermission(Activity activity) {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
|
if (!isNotificationPermissionGranted(activity)) {
|
||||||
|
ActivityCompat.requestPermissions(activity,
|
||||||
|
new String[]{android.Manifest.permission.POST_NOTIFICATIONS},
|
||||||
|
REQUEST_NOTIFICATION_PERMISSION);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the result of the permission request.
|
||||||
|
*
|
||||||
|
* @param requestCode The request code passed in requestPermissions().
|
||||||
|
* @param permissions The requested permissions.
|
||||||
|
* @param grantResults The grant results for the corresponding permissions.
|
||||||
|
*/
|
||||||
|
public static boolean handlePermissionResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
||||||
|
if (permissions.length > 0 &&
|
||||||
|
permissions[0].equals(android.Manifest.permission.POST_NOTIFICATIONS) &&
|
||||||
|
grantResults.length > 0 &&
|
||||||
|
grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
// Permission granted
|
||||||
|
System.out.println("Notification permission granted.");
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
// Permission denied
|
||||||
|
System.out.println("Notification permission denied.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,28 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.os.Build
|
||||||
|
|
||||||
|
object PermissionHelper {
|
||||||
|
|
||||||
|
fun getRequiredPermissions(): Array<String> {
|
||||||
|
val permissions = mutableListOf(
|
||||||
|
Manifest.permission.INTERNET,
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION,
|
||||||
|
Manifest.permission.ACCESS_COARSE_LOCATION,
|
||||||
|
Manifest.permission.ACCESS_NETWORK_STATE,
|
||||||
|
Manifest.permission.BLUETOOTH,
|
||||||
|
Manifest.permission.BLUETOOTH_ADMIN,
|
||||||
|
// Manifest.permission.ACTIVITY_RECOGNITION
|
||||||
|
)
|
||||||
|
|
||||||
|
// For Android 12 (API level 31) and above, add specific permissions
|
||||||
|
// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { // Android 12 (API 31) and above
|
||||||
|
permissions.add(Manifest.permission.BLUETOOTH_SCAN)
|
||||||
|
permissions.add(Manifest.permission.BLUETOOTH_CONNECT)
|
||||||
|
permissions.add(Manifest.permission.HIGH_SAMPLING_RATE_SENSORS)
|
||||||
|
// }
|
||||||
|
|
||||||
|
return permissions.toTypedArray()
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,50 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Build
|
||||||
|
import androidx.core.app.ActivityCompat
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
|
||||||
|
class PermissionManager(
|
||||||
|
private val context: Context,
|
||||||
|
val listener: PermissionListener,
|
||||||
|
private val requestCode: Int,
|
||||||
|
vararg permissions: String
|
||||||
|
) {
|
||||||
|
|
||||||
|
private val permissionsArray = permissions
|
||||||
|
|
||||||
|
interface PermissionListener {
|
||||||
|
fun onPermissionGranted()
|
||||||
|
fun onPermissionDenied()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun arePermissionsGranted(): Boolean {
|
||||||
|
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
|
permissionsArray.all {
|
||||||
|
ContextCompat.checkSelfPermission(context, it) == PackageManager.PERMISSION_GRANTED
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun requestPermissions(activity: Activity) {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
|
ActivityCompat.requestPermissions(activity, permissionsArray, requestCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun handlePermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray) {
|
||||||
|
if (this.requestCode == requestCode) {
|
||||||
|
val allGranted = grantResults.all { it == PackageManager.PERMISSION_GRANTED }
|
||||||
|
if (allGranted) {
|
||||||
|
listener.onPermissionGranted()
|
||||||
|
} else {
|
||||||
|
listener.onPermissionDenied()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
package com.ejada.hmg.PermissionManager
|
||||||
|
|
||||||
|
// PermissionResultReceiver.kt
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
|
||||||
|
class PermissionResultReceiver(
|
||||||
|
private val callback: (Boolean) -> Unit
|
||||||
|
) : BroadcastReceiver() {
|
||||||
|
override fun onReceive(context: Context?, intent: Intent?) {
|
||||||
|
val granted = intent?.getBooleanExtra("PERMISSION_GRANTED", false) ?: false
|
||||||
|
callback(granted)
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
package com.ejada.hmg.penguin
|
||||||
|
|
||||||
|
enum class PenguinMethod {
|
||||||
|
// initializePenguin("initializePenguin"),
|
||||||
|
// configurePenguin("configurePenguin"),
|
||||||
|
// showPenguinUI("showPenguinUI"),
|
||||||
|
// onPenNavUIDismiss("onPenNavUIDismiss"),
|
||||||
|
// onReportIssue("onReportIssue"),
|
||||||
|
// onPenNavSuccess("onPenNavSuccess"),
|
||||||
|
onPenNavInitializationError // onLocationOffCampus("onLocationOffCampus"),
|
||||||
|
// navigateToPOI("navigateToPOI"),
|
||||||
|
// openSharedLocation("openSharedLocation");
|
||||||
|
}
|
||||||
@ -0,0 +1,97 @@
|
|||||||
|
package com.ejada.hmg.penguin
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import com.google.gson.Gson
|
||||||
|
import com.peng.pennavmap.PlugAndPlaySDK
|
||||||
|
import com.peng.pennavmap.connections.ApiController
|
||||||
|
import com.peng.pennavmap.interfaces.RefIdDelegate
|
||||||
|
import com.peng.pennavmap.models.TokenModel
|
||||||
|
import com.peng.pennavmap.models.postmodels.PostToken
|
||||||
|
import com.peng.pennavmap.utils.AppSharedData
|
||||||
|
import okhttp3.ResponseBody
|
||||||
|
import retrofit2.Call
|
||||||
|
import retrofit2.Callback
|
||||||
|
import retrofit2.Response
|
||||||
|
import android.util.Log
|
||||||
|
|
||||||
|
|
||||||
|
class PenguinNavigator() {
|
||||||
|
|
||||||
|
fun navigateTo(mContext: Context, refID: String, delegate: RefIdDelegate,clientID : String,clientKey : String ) {
|
||||||
|
val postToken = PostToken(clientID, clientKey)
|
||||||
|
getToken(mContext, postToken, object : RefIdDelegate {
|
||||||
|
override fun onRefByIDSuccess(PoiId: String?) {
|
||||||
|
Log.e("navigateTo", "PoiId is+++++++ $PoiId")
|
||||||
|
|
||||||
|
PlugAndPlaySDK.navigateTo(mContext, refID, object : RefIdDelegate {
|
||||||
|
override fun onRefByIDSuccess(PoiId: String?) {
|
||||||
|
Log.e("navigateTo", "PoiId 2is+++++++ $PoiId")
|
||||||
|
|
||||||
|
delegate.onRefByIDSuccess(refID)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onGetByRefIDError(error: String?) {
|
||||||
|
delegate.onRefByIDSuccess(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onGetByRefIDError(error: String?) {
|
||||||
|
delegate.onRefByIDSuccess(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getToken(mContext: Context, postToken: PostToken?, apiTokenCallBack: RefIdDelegate) {
|
||||||
|
try {
|
||||||
|
// Create the API call
|
||||||
|
val purposesCall: Call<ResponseBody> = ApiController.getInstance(mContext)
|
||||||
|
.apiMethods
|
||||||
|
.getToken(postToken)
|
||||||
|
|
||||||
|
// Enqueue the call for asynchronous execution
|
||||||
|
purposesCall.enqueue(object : Callback<ResponseBody?> {
|
||||||
|
override fun onResponse(
|
||||||
|
call: Call<ResponseBody?>,
|
||||||
|
response: Response<ResponseBody?>
|
||||||
|
) {
|
||||||
|
if (response.isSuccessful() && response.body() != null) {
|
||||||
|
try {
|
||||||
|
response.body()?.use { responseBody ->
|
||||||
|
val responseBodyString: String = responseBody.string() // Use `string()` to get the actual response content
|
||||||
|
if (responseBodyString.isNotEmpty()) {
|
||||||
|
val tokenModel = Gson().fromJson(responseBodyString, TokenModel::class.java)
|
||||||
|
if (tokenModel != null && tokenModel.token != null) {
|
||||||
|
AppSharedData.apiToken = tokenModel.token
|
||||||
|
apiTokenCallBack.onRefByIDSuccess(tokenModel.token)
|
||||||
|
} else {
|
||||||
|
apiTokenCallBack.onGetByRefIDError("Failed to parse token model")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
apiTokenCallBack.onGetByRefIDError("Response body is empty")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
apiTokenCallBack.onGetByRefIDError("An error occurred: ${e.message}")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
apiTokenCallBack.onGetByRefIDError("Unsuccessful response: " + response.code())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onFailure(call: Call<ResponseBody?>, t: Throwable) {
|
||||||
|
apiTokenCallBack.onGetByRefIDError(t.message)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} catch (error: Exception) {
|
||||||
|
apiTokenCallBack.onGetByRefIDError("Exception during API call: $error")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,376 @@
|
|||||||
|
package com.ejada.hmg.penguin
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Context.RECEIVER_EXPORTED
|
||||||
|
import android.content.IntentFilter
|
||||||
|
import android.graphics.Color
|
||||||
|
import android.os.Build
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.widget.RelativeLayout
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.annotation.RequiresApi
|
||||||
|
import com.ejada.hmg.PermissionManager.PermissionManager
|
||||||
|
import com.ejada.hmg.PermissionManager.PermissionResultReceiver
|
||||||
|
import com.ejada.hmg.MainActivity
|
||||||
|
import com.ejada.hmg.PermissionManager.PermissionHelper
|
||||||
|
import com.peng.pennavmap.PlugAndPlayConfiguration
|
||||||
|
import com.peng.pennavmap.PlugAndPlaySDK
|
||||||
|
import com.peng.pennavmap.enums.InitializationErrorType
|
||||||
|
import com.peng.pennavmap.interfaces.PenNavUIDelegate
|
||||||
|
import com.peng.pennavmap.utils.Languages
|
||||||
|
import io.flutter.plugin.common.BinaryMessenger
|
||||||
|
import io.flutter.plugin.common.MethodCall
|
||||||
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import io.flutter.plugin.platform.PlatformView
|
||||||
|
import com.ejada.hmg.penguin.PenguinNavigator
|
||||||
|
import com.peng.pennavmap.interfaces.PIEventsDelegate
|
||||||
|
import com.peng.pennavmap.interfaces.PILocationDelegate
|
||||||
|
import com.peng.pennavmap.interfaces.RefIdDelegate
|
||||||
|
import com.peng.pennavmap.models.LocationMessage
|
||||||
|
import com.peng.pennavmap.models.PIReportIssue
|
||||||
|
import java.util.ArrayList
|
||||||
|
import penguin.com.pennav.renderer.PIRendererSettings
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom PlatformView for displaying Penguin UI components within a Flutter app.
|
||||||
|
* Implements `PlatformView` for rendering the view, `MethodChannel.MethodCallHandler` for handling method calls,
|
||||||
|
* and `PenNavUIDelegate` for handling SDK events.
|
||||||
|
*/
|
||||||
|
@RequiresApi(Build.VERSION_CODES.O)
|
||||||
|
internal class PenguinView(
|
||||||
|
context: Context,
|
||||||
|
id: Int,
|
||||||
|
val creationParams: Map<String, Any>,
|
||||||
|
messenger: BinaryMessenger,
|
||||||
|
activity: MainActivity,
|
||||||
|
val channel: MethodChannel
|
||||||
|
) : PlatformView, MethodChannel.MethodCallHandler, PenNavUIDelegate, PIEventsDelegate,
|
||||||
|
PILocationDelegate {
|
||||||
|
// The layout for displaying the Penguin UI
|
||||||
|
private val mapLayout: RelativeLayout = RelativeLayout(context)
|
||||||
|
private val _context: Context = context
|
||||||
|
|
||||||
|
private val permissionResultReceiver: PermissionResultReceiver
|
||||||
|
private val permissionIntentFilter = IntentFilter("PERMISSION_RESULT_ACTION")
|
||||||
|
|
||||||
|
private companion object {
|
||||||
|
const val PERMISSIONS_REQUEST_CODE = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
private lateinit var permissionManager: PermissionManager
|
||||||
|
|
||||||
|
// Reference to the main activity
|
||||||
|
private var _activity: Activity = activity
|
||||||
|
|
||||||
|
private lateinit var mContext: Context
|
||||||
|
|
||||||
|
lateinit var navigator: PenguinNavigator
|
||||||
|
|
||||||
|
init {
|
||||||
|
// Set layout parameters for the mapLayout
|
||||||
|
mapLayout.layoutParams = ViewGroup.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT
|
||||||
|
)
|
||||||
|
|
||||||
|
mContext = context
|
||||||
|
|
||||||
|
|
||||||
|
permissionResultReceiver = PermissionResultReceiver { granted ->
|
||||||
|
if (granted) {
|
||||||
|
onPermissionsGranted()
|
||||||
|
} else {
|
||||||
|
onPermissionsDenied()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
|
mContext.registerReceiver(
|
||||||
|
permissionResultReceiver,
|
||||||
|
permissionIntentFilter,
|
||||||
|
RECEIVER_EXPORTED
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
mContext.registerReceiver(
|
||||||
|
permissionResultReceiver,
|
||||||
|
permissionIntentFilter,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the background color of the layout
|
||||||
|
mapLayout.setBackgroundColor(Color.RED)
|
||||||
|
|
||||||
|
permissionManager = PermissionManager(
|
||||||
|
context = mContext,
|
||||||
|
listener = object : PermissionManager.PermissionListener {
|
||||||
|
override fun onPermissionGranted() {
|
||||||
|
// Handle permissions granted
|
||||||
|
onPermissionsGranted()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPermissionDenied() {
|
||||||
|
// Handle permissions denied
|
||||||
|
onPermissionsDenied()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
requestCode = PERMISSIONS_REQUEST_CODE,
|
||||||
|
PermissionHelper.getRequiredPermissions().get(0)
|
||||||
|
)
|
||||||
|
|
||||||
|
if (!permissionManager.arePermissionsGranted()) {
|
||||||
|
permissionManager.requestPermissions(_activity)
|
||||||
|
} else {
|
||||||
|
// Permissions already granted
|
||||||
|
permissionManager.listener.onPermissionGranted()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onPermissionsGranted() {
|
||||||
|
// Handle the actions when permissions are granted
|
||||||
|
Log.d("PermissionsResult", "onPermissionsGranted")
|
||||||
|
// Register the platform view factory for creating custom views
|
||||||
|
|
||||||
|
// Initialize the Penguin SDK
|
||||||
|
initPenguin()
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onPermissionsDenied() {
|
||||||
|
// Handle the actions when permissions are denied
|
||||||
|
Log.d("PermissionsResult", "onPermissionsDenied")
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the view associated with this PlatformView.
|
||||||
|
*
|
||||||
|
* @return The main view for this PlatformView.
|
||||||
|
*/
|
||||||
|
override fun getView(): View {
|
||||||
|
return mapLayout
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cleans up resources associated with this PlatformView.
|
||||||
|
*/
|
||||||
|
override fun dispose() {
|
||||||
|
// Cleanup code if needed
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles method calls from Dart code.
|
||||||
|
*
|
||||||
|
* @param call The method call from Dart.
|
||||||
|
* @param result The result callback to send responses back to Dart.
|
||||||
|
*/
|
||||||
|
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||||
|
// Handle method calls from Dart code here
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the Penguin SDK with custom configuration and delegates.
|
||||||
|
*/
|
||||||
|
private fun initPenguin() {
|
||||||
|
navigator = PenguinNavigator()
|
||||||
|
// Configure the PlugAndPlaySDK
|
||||||
|
val language = when (creationParams["languageCode"] as String) {
|
||||||
|
"ar" -> Languages.ar
|
||||||
|
"en" -> Languages.en
|
||||||
|
else -> {
|
||||||
|
Languages.en
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// PlugAndPlaySDK.configuration = Builder()
|
||||||
|
// .setClientData(MConstantsDemo.CLIENT_ID, MConstantsDemo.CLIENT_KEY)
|
||||||
|
// .setLanguageID(selectedLanguage)
|
||||||
|
// .setBaseUrl(MConstantsDemo.DATA_URL, MConstantsDemo.POSITION_URL)
|
||||||
|
// .setServiceName(MConstantsDemo.DATA_SERVICE_NAME, MConstantsDemo.POSITION_SERVICE_NAME)
|
||||||
|
// .setUserName(name)
|
||||||
|
// .setSimulationModeEnabled(isSimulation)
|
||||||
|
// .setCustomizeColor(if (MConstantsDemo.APP_COLOR != null) MConstantsDemo.APP_COLOR else "#2CA0AF")
|
||||||
|
// .setEnableBackButton(MConstantsDemo.SHOW_BACK_BUTTON)
|
||||||
|
// .setCampusId(MConstantsDemo.selectedCampusId)
|
||||||
|
//
|
||||||
|
// .setShowUILoader(true)
|
||||||
|
// .build()
|
||||||
|
|
||||||
|
PIRendererSettings.styleUri = "mapbox://styles/rwaid/cm3h30b36007v01qz7ik8a0sk"
|
||||||
|
|
||||||
|
PlugAndPlaySDK.configuration = PlugAndPlayConfiguration.Builder()
|
||||||
|
.setBaseUrl(
|
||||||
|
creationParams["dataURL"] as String,
|
||||||
|
creationParams["positionURL"] as String
|
||||||
|
)
|
||||||
|
.setServiceName(
|
||||||
|
creationParams["dataServiceName"] as String,
|
||||||
|
creationParams["positionServiceName"] as String
|
||||||
|
)
|
||||||
|
.setClientData(
|
||||||
|
creationParams["clientID"] as String,
|
||||||
|
creationParams["clientKey"] as String
|
||||||
|
)
|
||||||
|
.setUserName(creationParams["username"] as String)
|
||||||
|
// .setLanguageID(Languages.en)
|
||||||
|
.setLanguageID(language)
|
||||||
|
.setSimulationModeEnabled(creationParams["isSimulationModeEnabled"] as Boolean)
|
||||||
|
.setEnableBackButton(true)
|
||||||
|
// .setDeepLinkData("deeplink")
|
||||||
|
.setCustomizeColor("#2CA0AF")
|
||||||
|
.setDeepLinkSchema("", "")
|
||||||
|
.setIsEnableReportIssue(true)
|
||||||
|
.setDeepLinkData("")
|
||||||
|
.setEnableSharedLocationCallBack(false)
|
||||||
|
.setShowUILoader(true)
|
||||||
|
.setCampusId(creationParams["projectID"] as Int)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
|
||||||
|
Log.d(
|
||||||
|
"TAG",
|
||||||
|
"initPenguin: ${creationParams["projectID"]}"
|
||||||
|
)
|
||||||
|
|
||||||
|
Log.d(
|
||||||
|
"TAG",
|
||||||
|
"initPenguin: creation param are ${creationParams}"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Set location delegate to handle location updates
|
||||||
|
// PlugAndPlaySDK.setPiLocationDelegate {
|
||||||
|
// Example code to handle location updates
|
||||||
|
// Uncomment and modify as needed
|
||||||
|
// if (location.size() > 0)
|
||||||
|
// Toast.makeText(_context, "Location Info Latitude: ${location[0]}, Longitude: ${location[1]}", Toast.LENGTH_SHORT).show()
|
||||||
|
// }
|
||||||
|
|
||||||
|
// Set events delegate for reporting issues
|
||||||
|
// PlugAndPlaySDK.setPiEventsDelegate(new PIEventsDelegate() {
|
||||||
|
// @Override
|
||||||
|
// public void onReportIssue(PIReportIssue issue) {
|
||||||
|
// Log.e("Issue Reported: ", issue.getReportType());
|
||||||
|
// }
|
||||||
|
// // Implement issue reporting logic here }
|
||||||
|
// @Override
|
||||||
|
// public void onSharedLocation(String link) {
|
||||||
|
// // Implement Shared location logic here
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
|
||||||
|
// Start the Penguin SDK
|
||||||
|
PlugAndPlaySDK.setPiEventsDelegate(this)
|
||||||
|
PlugAndPlaySDK.setPiLocationDelegate(this)
|
||||||
|
PlugAndPlaySDK.start(mContext, this)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Navigates to the specified reference ID.
|
||||||
|
*
|
||||||
|
* @param refID The reference ID to navigate to.
|
||||||
|
*/
|
||||||
|
fun navigateTo(refID: String) {
|
||||||
|
try {
|
||||||
|
if (refID.isBlank()) {
|
||||||
|
Log.e("navigateTo", "Invalid refID: The reference ID is blank.")
|
||||||
|
}
|
||||||
|
// referenceId = refID
|
||||||
|
navigator.navigateTo(mContext, refID,object : RefIdDelegate {
|
||||||
|
override fun onRefByIDSuccess(PoiId: String?) {
|
||||||
|
Log.e("navigateTo", "PoiId is penguin view+++++++ $PoiId")
|
||||||
|
|
||||||
|
// channelFlutter.invokeMethod(
|
||||||
|
// PenguinMethod.navigateToPOI.name,
|
||||||
|
// "navigateTo Success"
|
||||||
|
// )
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onGetByRefIDError(error: String?) {
|
||||||
|
Log.e("navigateTo", "error is penguin view+++++++ $error")
|
||||||
|
|
||||||
|
// channelFlutter.invokeMethod(
|
||||||
|
// PenguinMethod.navigateToPOI.name,
|
||||||
|
// "navigateTo Failed: Invalid refID"
|
||||||
|
// )
|
||||||
|
}
|
||||||
|
} , creationParams["clientID"] as String, creationParams["clientKey"] as String )
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e("navigateTo", "Exception occurred during navigation: ${e.message}", e)
|
||||||
|
// channelFlutter.invokeMethod(
|
||||||
|
// PenguinMethod.navigateToPOI.name,
|
||||||
|
// "Failed: Exception - ${e.message}"
|
||||||
|
// )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when Penguin UI setup is successful.
|
||||||
|
*
|
||||||
|
* @param warningCode Optional warning code received from the SDK.
|
||||||
|
*/
|
||||||
|
override fun onPenNavSuccess(warningCode: String?) {
|
||||||
|
val clinicId = creationParams["clinicID"] as String
|
||||||
|
|
||||||
|
if(clinicId.isEmpty()) return
|
||||||
|
|
||||||
|
navigateTo(clinicId)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when there is an initialization error with Penguin UI.
|
||||||
|
*
|
||||||
|
* @param description Description of the error.
|
||||||
|
* @param errorType Type of initialization error.
|
||||||
|
*/
|
||||||
|
override fun onPenNavInitializationError(
|
||||||
|
description: String?,
|
||||||
|
errorType: InitializationErrorType?
|
||||||
|
) {
|
||||||
|
val arguments: Map<String, Any?> = mapOf(
|
||||||
|
"description" to description,
|
||||||
|
"type" to errorType?.name
|
||||||
|
)
|
||||||
|
Log.d(
|
||||||
|
"description",
|
||||||
|
"description : ${description}"
|
||||||
|
)
|
||||||
|
|
||||||
|
channel.invokeMethod(PenguinMethod.onPenNavInitializationError.name, arguments)
|
||||||
|
Toast.makeText(mContext, "Navigation Error: $description", Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when Penguin UI is dismissed.
|
||||||
|
*/
|
||||||
|
override fun onPenNavUIDismiss() {
|
||||||
|
// Handle UI dismissal if needed
|
||||||
|
try {
|
||||||
|
mContext.unregisterReceiver(permissionResultReceiver)
|
||||||
|
dispose();
|
||||||
|
} catch (e: IllegalArgumentException) {
|
||||||
|
Log.e("PenguinView", "Receiver not registered: $e")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onReportIssue(issue: PIReportIssue?) {
|
||||||
|
TODO("Not yet implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onSharedLocation(link: String?) {
|
||||||
|
TODO("Not yet implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onLocationOffCampus(location: ArrayList<Double>?) {
|
||||||
|
TODO("Not yet implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onLocationMessage(locationMessage: LocationMessage?) {
|
||||||
|
TODO("Not yet implemented")
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,3 +1,3 @@
|
|||||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
<string name="mapbox_access_token" translatable="false" tools:ignore="UnusedResources">sk.eyJ1IjoicndhaWQiLCJhIjoiY2x6NWo0bTMzMWZodzJrcGZpemYzc3Z4dSJ9.uSSZuwNSGCcCdPAiORECmg</string>
|
<!-- <string name="mapbox_access_token" translatable="false" tools:ignore="UnusedResources">sk.eyJ1IjoicndhaWQiLCJhIjoiY2x6NWo0bTMzMWZodzJrcGZpemYzc3Z4dSJ9.uSSZuwNSGCcCdPAiORECmg</string>-->
|
||||||
</resources>
|
</resources>
|
||||||
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 353 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 30 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="35" height="36" viewBox="0 0 35 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M24.7655 2.68793e-05C22.4959 -0.000446999 20.3022 0.831603 18.5867 2.3436C16.8712 3.8556 15.7488 5.94619 15.4254 8.23203C15.4016 8.40311 15.4144 8.5774 15.4629 8.74298C15.5115 8.90856 15.5945 9.06152 15.7065 9.19141C15.8185 9.32131 15.9567 9.42506 16.1117 9.49558C16.2667 9.56611 16.4349 9.60173 16.6047 9.60003C16.8891 9.6033 17.1651 9.50187 17.3818 9.31443C17.5985 9.127 17.7414 8.86617 17.784 8.58003C18.0405 6.6832 19.027 4.96773 20.5265 3.81101C22.026 2.65428 23.9156 2.15105 25.7797 2.41203C27.6439 2.673 29.3298 3.6768 30.4665 5.20259C31.6033 6.72839 32.0979 8.6512 31.8414 10.548C31.573 12.3164 30.6823 13.9254 29.3352 15.0755C27.988 16.2256 26.276 16.8385 24.5179 16.8H1.17931C0.866538 16.8 0.566576 16.9265 0.345412 17.1515C0.124248 17.3765 0 17.6818 0 18C0 18.3183 0.124248 18.6235 0.345412 18.8486C0.566576 19.0736 0.866538 19.2 1.17931 19.2H24.4353C26.8716 19.2402 29.2327 18.3408 31.044 16.6824C32.8554 15.024 33.9829 12.7296 34.2 10.26C34.2891 8.94494 34.111 7.62528 33.6769 6.38328C33.2429 5.14127 32.562 4.00355 31.6769 3.04099C30.7918 2.07843 29.7214 1.31167 28.5323 0.788485C27.3432 0.265302 26.061 -0.00309236 24.7655 2.68793e-05Z" fill="#3B355A"/>
|
||||||
|
<path d="M19.8006 21.5996H1.17931C0.866538 21.5996 0.566576 21.726 0.345412 21.9511C0.124248 22.1761 0 22.4814 0 22.7996C0 23.1179 0.124248 23.4231 0.345412 23.6481C0.566576 23.8732 0.866538 23.9996 1.17931 23.9996H19.8006C20.5146 23.9992 21.2194 24.1638 21.8618 24.4809C22.5041 24.7979 23.0674 25.2592 23.5091 25.83C23.9509 26.4008 24.2595 27.0662 24.4117 27.776C24.564 28.4858 24.5559 29.2215 24.3881 29.9276C24.1363 30.985 23.5389 31.924 22.6939 32.5907C21.8488 33.2573 20.8062 33.612 19.7371 33.5967C18.6679 33.5814 17.6356 33.1969 16.8093 32.5062C15.9831 31.8156 15.4119 30.8598 15.1895 29.7956C15.1418 29.5139 14.9968 29.2587 14.7805 29.0761C14.5643 28.8935 14.2912 28.7955 14.0102 28.7996C13.8393 28.7976 13.6699 28.8335 13.514 28.9047C13.358 28.976 13.2191 29.0809 13.1069 29.2121C12.9948 29.3434 12.912 29.4979 12.8643 29.665C12.8166 29.832 12.8052 30.0076 12.8309 30.1796C13.0878 31.5182 13.7131 32.755 14.6339 33.746C15.5547 34.7371 16.7332 35.4416 18.0323 35.7776C19.3313 36.1137 20.6974 36.0673 21.9716 35.644C23.2457 35.2208 24.3756 34.438 25.2295 33.3867C26.0834 32.3355 26.6264 31.0591 26.7951 29.7061C26.9639 28.3531 26.7515 26.9791 26.1827 25.7441C25.6139 24.5092 24.7121 23.464 23.5822 22.7303C22.4524 21.9965 21.141 21.6044 19.8006 21.5996Z" fill="#3B355A"/>
|
||||||
|
<path d="M7.77155 11.8205H1.27355C0.960777 11.8205 0.660814 11.947 0.439651 12.172C0.218487 12.3971 0.0942383 12.7023 0.0942383 13.0205C0.0942383 13.3388 0.218487 13.644 0.439651 13.8691C0.660814 14.0941 0.960777 14.2205 1.27355 14.2205H7.71259C9.06084 14.2431 10.3698 13.7583 11.3884 12.8592C12.407 11.9601 13.0634 10.7099 13.2318 9.34854C13.3614 8.0124 12.9972 6.67504 12.2103 5.59734C11.4233 4.51964 10.27 3.7789 8.97535 3.51963C7.68071 3.26035 6.33757 3.50113 5.20795 4.195C4.07832 4.88887 3.24325 5.98606 2.86562 7.27253C2.81077 7.45608 2.79996 7.65032 2.83411 7.83899C2.86825 8.02765 2.94635 8.20524 3.06186 8.35686C3.17737 8.50848 3.32691 8.62971 3.49796 8.71038C3.66901 8.79106 3.85658 8.82883 4.04493 8.82054C4.31433 8.82852 4.57828 8.74238 4.79286 8.57644C5.00743 8.4105 5.15967 8.17479 5.22424 7.90854C5.44561 7.20326 5.91546 6.60618 6.54341 6.23217C7.17136 5.85817 7.91304 5.73365 8.62578 5.88257C9.33852 6.03149 9.97197 6.44333 10.4043 7.03887C10.8366 7.6344 11.0372 8.37156 10.9675 9.10854C10.865 9.88557 10.4799 10.5952 9.88817 11.0974C9.29645 11.5995 8.54118 11.8575 7.77155 11.8205Z" fill="#3B355A"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="30" height="41" viewBox="0 0 30 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M29.943 24.2303L29.9145 23.8321C29.4563 17.7622 26.6788 13.9572 24.2285 10.601C21.9596 7.49317 20 4.80939 20 0.849479C20 0.531496 19.825 0.24086 19.5475 0.0950652C19.2691 -0.0515247 18.9347 -0.027517 18.6816 0.159695C15.0016 2.83933 11.9312 7.35572 10.8586 11.665C10.114 14.6652 10.0155 18.0379 10.0016 20.2655C6.6032 19.5268 5.83336 14.3538 5.82523 14.2975C5.78695 14.0292 5.62586 13.7957 5.39148 13.6681C5.15469 13.5423 4.87633 13.5332 4.63625 13.6541C4.45805 13.7418 0.262031 15.9114 0.0178903 24.5748C0.000780959 24.863 0 25.1511 0 25.4401C0 33.8559 6.7293 40.7033 15 40.7033C23.2707 40.7033 30 33.8559 30 25.4401C30 25.0178 29.9716 24.6237 29.943 24.2303ZM15 39.0074C12.2428 39.0074 10 36.5762 10 33.5876C10 33.4858 9.99922 33.3831 10.0065 33.2572C10.0398 31.9969 10.2751 31.1365 10.533 30.5643C11.0165 31.621 11.8815 32.5922 13.2845 32.5922C13.7452 32.5922 14.1179 32.213 14.1179 31.7443C14.1179 30.5369 14.1423 29.1441 14.4377 27.887C14.7006 26.7716 15.3288 25.5866 16.1248 24.636C16.4788 25.8698 17.1689 26.8685 17.8427 27.8432C18.8071 29.2377 19.804 30.6793 19.979 33.1379C19.9895 33.2836 20.0002 33.4302 20.0002 33.5875C20 36.5762 17.7572 39.0074 15 39.0074ZM20.2666 37.8994C21.1316 36.6991 21.6667 35.2154 21.6667 33.5876C21.6667 33.3881 21.6545 33.2025 21.6301 32.8556C21.4323 30.0873 20.2498 28.3765 19.2058 26.867C18.3163 25.5818 17.5489 24.4714 17.5489 22.8963C17.5489 22.5742 17.3698 22.2802 17.0866 22.137C16.8051 21.9928 16.4649 22.0252 16.2134 22.2198C14.6152 23.4486 13.2821 25.5172 12.8166 27.4922C12.579 28.505 12.496 29.6005 12.4667 30.5014C11.8889 29.8688 11.7098 28.6962 11.7083 28.6805C11.6709 28.4081 11.5065 28.1704 11.2664 28.0437C11.028 27.9179 10.7423 27.9146 10.5023 28.0404C10.2923 28.1497 8.44742 29.2262 8.34164 33.1861C8.3343 33.3203 8.33352 33.4544 8.33352 33.5877C8.33352 35.2155 8.86867 36.6992 9.73367 37.8995C4.9943 35.8171 1.66687 31.0181 1.66687 25.4403C1.66687 25.186 1.66609 24.9327 1.68312 24.6502C1.82633 19.5674 3.42469 17.0468 4.46797 15.9347C5.19547 18.5846 7.10141 22.0484 10.8335 22.0484C11.2941 22.0484 11.6669 21.6691 11.6669 21.2004C11.6669 18.3626 11.7295 15.0834 12.475 12.0808C13.3213 8.679 15.6398 5.00567 18.4385 2.51897C18.9032 6.15096 20.8473 8.81406 22.8909 11.6121C25.3201 14.9393 27.8315 18.3799 28.2522 23.9513L28.2807 24.357C28.3067 24.7098 28.3336 25.0618 28.3336 25.4402C28.3334 31.0181 25.0059 35.8171 20.2666 37.8994Z" fill="#D59E95"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="27" height="35" viewBox="0 0 27 35" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M17.7188 6.51163C19.575 6.51163 21.0938 5.04651 21.0938 3.25581C21.0938 1.46512 19.575 0 17.7188 0C15.8625 0 14.3438 1.46512 14.3438 3.25581C14.3438 5.04651 15.8625 6.51163 17.7188 6.51163ZM12.3188 26.0465L13.3312 21.9767L16.875 25.2326V33.3721C16.875 34.186 17.55 35 18.5625 35C19.575 35 20.25 34.186 20.25 33.3721V24.2558C20.25 23.2791 19.9125 22.4651 19.2375 21.9767L16.7062 19.6977L17.7188 14.814C19.575 16.7674 22.1062 18.2326 25.1437 18.7209C26.1562 18.8837 27 18.0698 27 17.093C27 16.2791 26.325 15.6279 25.4813 15.4651C22.95 14.9767 20.7563 13.6744 19.7437 11.7209L18.0562 9.11628C17.3813 8.13953 16.3687 7.48837 15.1875 7.48837C14.6812 7.48837 14.3438 7.65116 13.8375 7.65116L7.0875 10.4186C5.7375 10.7442 5.0625 11.8837 5.0625 13.186V17.093C5.0625 18.0698 5.7375 18.7209 6.75 18.7209C7.7625 18.7209 8.4375 18.0698 8.4375 17.093V13.186L11.475 12.0465L8.775 25.2326L2.025 23.9302C1.18125 23.7674 0.16875 24.2558 0 25.2326C0 26.0465 0.50625 26.8605 1.35 27.186L8.4375 28.4884C10.125 28.814 11.9813 27.6744 12.3188 26.0465Z" fill="#6A46F5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 86 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="29" height="25" viewBox="0 0 29 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M14.5 25C14.3533 25 14.2066 24.9622 14.0752 24.8866C13.9325 24.8045 10.5414 22.8419 7.10161 19.8848C5.06289 18.1322 3.4355 16.3939 2.26474 14.7182C0.749726 12.5499 -0.0121446 10.4643 0.000146364 8.51917C0.014533 6.2558 0.827833 4.12725 2.2904 2.52556C3.77767 0.89688 5.76246 0 7.87928 0C10.5922 0 13.0725 1.51475 14.5 3.91429C15.9275 1.5148 18.4079 0 21.1208 0C23.1207 0 25.0287 0.809258 26.4937 2.27873C28.1013 3.89131 29.0148 6.16982 28.9998 8.5299C28.9875 10.4716 28.2113 12.5541 26.693 14.7194C25.5186 16.3942 23.8935 18.1318 21.8627 19.8838C18.4355 22.8407 15.0688 24.8032 14.9271 24.8853C14.7951 24.9617 14.6475 25 14.5 25Z" fill="#6A46F5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 764 B |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="23" height="36" viewBox="0 0 23 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M13.5555 6.567C15.3689 6.567 16.839 5.09693 16.839 3.2835C16.839 1.47007 15.3689 0 13.5555 0C11.742 0 10.272 1.47007 10.272 3.2835C10.272 5.09693 11.742 6.567 13.5555 6.567Z" fill="#3263B8"/>
|
||||||
|
<path d="M21.8875 16.0899L17.66 14.6945C17.66 14.6945 15.3205 9.27668 15.2384 9.11251C14.6638 8.08642 13.5967 7.38867 12.3654 7.38867C11.8728 7.38867 11.3803 7.5118 10.9699 7.71702L5.22376 9.97443C4.81332 10.1386 4.48497 10.467 4.3208 10.8774L2.26861 15.8026C1.94026 16.6235 2.30966 17.6086 3.17157 17.9369C3.37679 18.019 3.58201 18.06 3.78723 18.06C4.44393 18.06 5.05959 17.6907 5.30585 17.034L6.98864 12.7654L8.71248 12.1087L5.88046 25.9404L0.380599 32.6306C-0.194014 33.3283 -0.111926 34.3544 0.585818 34.929C0.873124 35.1753 1.24252 35.2984 1.61191 35.2984C2.10444 35.2984 2.55592 35.0932 2.88427 34.6828L8.63039 27.7053C8.79457 27.5001 8.9177 27.2538 8.95874 27.0076L9.94379 22.2465L14.3765 25.4479V33.6567C14.3765 34.5596 15.1153 35.2984 16.0183 35.2984C16.9212 35.2984 17.66 34.5596 17.66 33.6567V24.627C17.66 24.0935 17.4138 23.601 17.0033 23.3136L13.0221 20.3995L14.1303 14.8586L14.9101 16.6646C15.1153 17.075 15.4437 17.4033 15.8951 17.5675L20.8204 19.2093C20.9846 19.2503 21.1487 19.2914 21.354 19.2914C22.0517 19.2914 22.6674 18.8399 22.9136 18.1832C23.2009 17.3213 22.7494 16.3773 21.8875 16.0899Z" fill="#3263B8"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="32.381" height="37.391" viewBox="0 0 32.381 37.391">
|
||||||
|
<g id="affiliate-marketing_1_" data-name="affiliate-marketing (1)" transform="translate(-34.298 0)">
|
||||||
|
<path id="Path_4982" data-name="Path 4982" d="M63.419,23.145l.415,1.991-2.684-1.55a11.718,11.718,0,0,0,0-9.782l2.684-1.55-.415,1.991,2.145.447,1.115-5.345L61.492,7.641l-.685,2.081,1.932.636-2.687,1.551a11.736,11.736,0,0,0-8.469-4.893v-3.1L53.1,5.272l1.46-1.634L50.489,0,46.417,3.639l1.46,1.634,1.517-1.355v3.1a11.736,11.736,0,0,0-8.469,4.893l-2.687-1.551,1.932-.636-.685-2.081L34.3,9.348l1.115,5.346,2.145-.447-.415-1.991,2.684,1.55a11.718,11.718,0,0,0,0,9.782l-2.684,1.55.415-1.991L35.413,22.7,34.3,28.043l5.187,1.707.685-2.081-1.932-.636,2.687-1.551a11.736,11.736,0,0,0,8.469,4.893v3.1l-1.517-1.355-1.46,1.634,4.072,3.639,4.072-3.639L53.1,32.118l-1.517,1.355v-3.1a11.736,11.736,0,0,0,8.469-4.893l2.687,1.551-1.932.636.685,2.081,5.187-1.707L65.564,22.7Z" fill="#2e303a"/>
|
||||||
|
<g id="user_24_" data-name="user (24)" transform="translate(42.096 9.104)">
|
||||||
|
<path id="Path_4983" data-name="Path 4983" d="M10.267,8.536a3.028,3.028,0,0,0,1.792.581,3.125,3.125,0,0,0,3.059-3.059,3.059,3.059,0,1,0-4.85,2.478Z" transform="translate(-3.378 0)" fill="#fff"/>
|
||||||
|
<path id="Path_4984" data-name="Path 4984" d="M11.372,16.55a3.919,3.919,0,0,1-5.384,0,5.689,5.689,0,0,0-2.989,5,.438.438,0,0,0,.437.437H13.924a.438.438,0,0,0,.437-.437A5.689,5.689,0,0,0,11.372,16.55Z" transform="translate(0 -7.629)" fill="#fff"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,6 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M26.582 9.25C26.1253 9.25 25.7623 9.44409 25.4564 9.6775C25.4426 9.68802 25.4288 9.69876 25.4149 9.70972C25.1988 9.87986 25.0908 9.96493 25.0829 10.0995C25.0749 10.234 25.1799 10.3391 25.39 10.5492L29.4509 14.6101C29.661 14.8202 29.7661 14.9252 29.9006 14.9172C30.0352 14.9093 30.1202 14.8013 30.2904 14.5853C30.3013 14.5713 30.3121 14.5575 30.3226 14.5437C30.556 14.2378 30.7501 13.8748 30.7501 13.4181C30.7501 12.9614 30.556 12.5984 30.3226 12.2925C30.1683 12.0902 29.9664 11.8751 29.7389 11.6439L30.4645 10.9183C30.8461 10.5367 30.8461 9.91789 30.4645 9.53624C30.0828 9.15459 29.4641 9.15459 29.0824 9.53624L28.3568 10.2619C28.1254 10.0341 27.9101 9.83199 27.7076 9.6775C27.4017 9.44409 27.0387 9.25 26.582 9.25Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M23.8025 10.5545C23.4544 10.4103 23.0732 10.3772 22.7099 10.455C22.3791 10.5259 22.1459 10.7182 22.0063 10.8577L20.9207 11.9434C20.7811 12.083 20.5888 12.3162 20.5179 12.647C20.4401 13.0103 20.4732 13.3915 20.6174 13.7396C20.7033 13.9468 20.8276 14.1127 20.9534 14.2569L22.8296 16.1331C22.6603 16.3768 22.4295 16.5648 22.1399 16.6931C19.6325 17.8047 17.8054 19.6318 16.6939 22.1392C16.5656 22.4286 16.3776 22.6594 16.1341 22.8286L14.2565 20.951C14.2565 20.951 13.9464 20.7009 13.7391 20.6151C13.391 20.4709 13.0098 20.4377 12.6465 20.5155C12.3157 20.5864 12.0825 20.7787 11.943 20.9183L10.8573 22.004C10.7178 22.1435 10.5254 22.3767 10.4546 22.7075C10.3767 23.0708 10.4099 23.452 10.5541 23.8001C10.6399 24.0074 10.7642 24.1733 10.89 24.3175L15.6813 29.1088C15.8255 29.2345 15.9914 29.3589 16.1987 29.4447C16.5468 29.5889 16.928 29.6221 17.2913 29.5442C17.6221 29.4734 17.8553 29.281 17.9948 29.1415L19.0805 28.0558C19.22 27.9162 19.4124 27.6831 19.4832 27.3522C19.5611 26.989 19.5279 26.6078 19.3837 26.2597C19.2979 26.0524 19.1736 25.8865 19.0478 25.7423L17.5583 24.2528C17.9649 23.9054 18.2931 23.4666 18.5223 22.9497C19.4326 20.8962 20.8969 19.4319 22.9504 18.5215C23.4675 18.2923 23.9063 17.964 24.2537 17.5573L25.7446 19.0482C25.7446 19.0482 26.0548 19.2983 26.262 19.3842C26.6101 19.5284 26.9913 19.5615 27.3546 19.4837C27.6854 19.4128 27.9186 19.2205 28.0582 19.0809L29.1438 17.9952C29.2834 17.8557 29.4757 17.6225 29.5466 17.2917C29.6244 16.9284 29.5913 16.5472 29.4471 16.1991C29.3612 15.9919 29.2369 15.8259 29.1111 15.6817L24.3199 10.8905C24.1757 10.7647 24.0097 10.6404 23.8025 10.5545Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M13.4191 30.7492C13.8759 30.7492 14.2388 30.5551 14.5447 30.3217C14.5585 30.3112 14.5724 30.3005 14.5863 30.2895C14.8023 30.1194 14.9103 30.0343 14.9183 29.8997C14.9262 29.7652 14.8212 29.6601 14.6111 29.45L10.5502 25.3892C10.3401 25.1791 10.2351 25.074 10.1005 25.082C9.96598 25.0899 9.8809 25.1979 9.71076 25.414C9.69981 25.4279 9.68906 25.4417 9.67854 25.4555C9.44513 25.7614 9.25104 26.1244 9.25104 26.5811C9.25104 27.0378 9.44513 27.4008 9.67854 27.7067C9.83274 27.9088 10.0344 28.1237 10.2616 28.3546L9.53697 29.0793C9.15532 29.4609 9.15532 30.0797 9.53697 30.4613C9.91862 30.843 10.5374 30.843 10.919 30.4613L11.6437 29.7367C11.8753 29.9647 12.0909 30.1671 12.2935 30.3217C12.5995 30.5551 12.9624 30.7492 13.4191 30.7492Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.85417 0C4.41186 0 0 4.41186 0 9.85417C0 15.2965 4.41186 19.7083 9.85417 19.7083C15.2965 19.7083 19.7083 15.2965 19.7083 9.85417C19.7083 4.41186 15.2965 0 9.85417 0ZM10.7708 6.1875C10.7708 5.68124 10.3604 5.27083 9.85417 5.27083C9.34791 5.27083 8.9375 5.68124 8.9375 6.1875V8.9375H6.1875C5.68124 8.9375 5.27083 9.34791 5.27083 9.85417C5.27083 10.3604 5.68124 10.7708 6.1875 10.7708H8.9375V13.5208C8.9375 14.0271 9.34791 14.4375 9.85417 14.4375C10.3604 14.4375 10.7708 14.0271 10.7708 13.5208V10.7708H13.5208C14.0271 10.7708 14.4375 10.3604 14.4375 9.85417C14.4375 9.34791 14.0271 8.9375 13.5208 8.9375H10.7708V6.1875Z" fill="#2B353E"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 790 B |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M16 19.75C15.3096 19.75 14.75 20.3096 14.75 21C14.75 21.6904 15.3096 22.25 16 22.25H16.009C16.6993 22.25 17.259 21.6904 17.259 21C17.259 20.3096 16.6993 19.75 16.009 19.75H16Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M19.9955 19.75C19.3052 19.75 18.7455 20.3096 18.7455 21C18.7455 21.6904 19.3052 22.25 19.9955 22.25H20.0045C20.6948 22.25 21.2545 21.6904 21.2545 21C21.2545 20.3096 20.6948 19.75 20.0045 19.75H19.9955Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M23.991 19.75C23.3007 19.75 22.741 20.3096 22.741 21C22.741 21.6904 23.3007 22.25 23.991 22.25H24C24.6904 22.25 25.25 21.6904 25.25 21C25.25 20.3096 24.6904 19.75 24 19.75H23.991Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M16 23.75C15.3096 23.75 14.75 24.3096 14.75 25C14.75 25.6904 15.3096 26.25 16 26.25H16.009C16.6993 26.25 17.259 25.6904 17.259 25C17.259 24.3096 16.6993 23.75 16.009 23.75H16Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M19.9955 23.75C19.3052 23.75 18.7455 24.3096 18.7455 25C18.7455 25.6904 19.3052 26.25 19.9955 26.25H20.0045C20.6948 26.25 21.2545 25.6904 21.2545 25C21.2545 24.3096 20.6948 23.75 20.0045 23.75H19.9955Z" fill="#8F9AA3"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 10C15 9.44772 14.5523 9 14 9C13.4477 9 13 9.44772 13 10V10.4489C12.2388 10.6903 11.5773 11.0699 11.018 11.6746C10.1895 12.5703 9.83279 13.6927 9.66416 15.0487C9.49997 16.3689 9.49998 18.0541 9.5 20.1739V20.8261C9.49998 22.9459 9.49997 24.6311 9.66416 25.9513C9.83279 27.3073 10.1895 28.4297 11.018 29.3254C11.8568 30.2322 12.9253 30.6329 14.2153 30.8204C15.4514 31.0001 17.0229 31 18.9712 31H21.0288C22.977 31 24.5486 31.0001 25.7847 30.8204C27.0747 30.6329 28.1432 30.2322 28.982 29.3254C29.8105 28.4297 30.1672 27.3073 30.3358 25.9513C30.5 24.6311 30.5 22.9459 30.5 20.8261V20.1739C30.5 18.0541 30.5 16.3689 30.3358 15.0487C30.1672 13.6927 29.8105 12.5703 28.982 11.6746C28.4227 11.0699 27.7612 10.6903 27 10.4489V10C27 9.44772 26.5523 9 26 9C25.4477 9 25 9.44772 25 10V10.0917C23.903 9.99995 22.5863 9.99998 21.0288 10L18.9712 10C17.4138 9.99998 16.097 9.99995 15 10.0917V10ZM12.4978 17C12.0392 17 11.8099 17 11.6639 17.1442C11.5178 17.2883 11.5149 17.5147 11.509 17.9675C11.5003 18.6407 11.5 19.3942 11.5 20.2432V20.7568C11.5 22.9616 11.5018 24.5221 11.6489 25.7045C11.7933 26.8656 12.0626 27.5094 12.4862 27.9673C12.8996 28.4142 13.4647 28.6903 14.503 28.8412C15.5786 28.9975 17.0043 29 19.05 29H20.95C22.9957 29 24.4214 28.9975 25.497 28.8412C26.5353 28.6903 27.1004 28.4142 27.5138 27.9673C27.9374 27.5094 28.2067 26.8656 28.3511 25.7045C28.4982 24.5221 28.5 22.9616 28.5 20.7568V20.2432C28.5 19.3942 28.4997 18.6407 28.491 17.9675C28.4851 17.5147 28.4822 17.2883 28.3362 17.1442C28.1901 17 27.9608 17 27.5022 17L12.4978 17Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M14.0753 9.25021C13.2113 9.25016 12.4632 9.25011 11.8634 9.33132C11.2162 9.41894 10.5997 9.61694 10.1035 10.1166C9.61238 10.6111 9.42254 11.2171 9.33787 11.8513C9.2582 12.448 9.25824 13.1949 9.25828 14.0698L9.25828 14.1308C9.25828 14.3712 9.2561 14.6022 9.25402 14.8221C9.24862 15.3915 9.24394 15.8867 9.27973 16.2795C9.33543 16.8907 9.49919 17.4598 9.99582 17.9599C10.3701 18.3368 10.9888 18.3482 11.3777 17.9854C11.7665 17.6225 11.7783 17.0228 11.4039 16.6458C11.3286 16.5699 11.2602 16.48 11.2267 16.1128C11.1997 15.8167 11.2031 15.4635 11.208 14.9542C11.2103 14.717 11.2128 14.4458 11.2128 14.1308C11.2128 13.1779 11.2148 12.5551 11.2763 12.0945C11.3346 11.6576 11.4308 11.5121 11.5116 11.4306C11.5875 11.3542 11.7172 11.2642 12.1337 11.2078C12.5823 11.1471 13.1922 11.145 14.1415 11.145L25.8593 11.145C26.8086 11.145 27.4185 11.1471 27.867 11.2078C28.2835 11.2642 28.4133 11.3542 28.4891 11.4306C28.57 11.5121 28.6662 11.6576 28.7245 12.0945C28.786 12.5551 28.7879 13.1779 28.7879 14.1308C28.7879 14.444 28.7905 14.7139 28.7927 14.9501C28.7975 15.4613 28.8009 15.8159 28.7737 16.1125C28.7402 16.4796 28.6717 16.5697 28.5961 16.6458C28.2218 17.0228 28.2336 17.6225 28.6224 17.9854C29.0113 18.3482 29.6299 18.3368 30.0043 17.9599C30.5007 17.4599 30.6647 16.8911 30.7207 16.2798C30.7567 15.8861 30.752 15.3898 30.7467 14.8191C30.7446 14.6001 30.7425 14.3702 30.7425 14.1308L30.7425 14.0698C30.7425 13.1949 30.7425 12.448 30.6629 11.8513C30.5782 11.2171 30.3884 10.6111 29.8972 10.1166C29.4011 9.61695 28.7845 9.41894 28.1374 9.33132C27.5376 9.25012 26.7894 9.25016 25.9255 9.25021L14.0753 9.25021Z" fill="#8F9AA3"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9847 29.8165C15.9786 31.0614 17.9981 31.0614 18.9921 29.8165C19.2106 29.5428 19.6488 29.2974 20.0003 29.2974C20.3518 29.2974 20.79 29.5428 21.0086 29.8165C22.0025 31.0614 24.022 31.0614 25.016 29.8165L25.5671 29.1263C25.6367 29.0391 25.7683 28.9739 25.9361 28.9818C26.1042 28.9898 26.2188 29.0662 26.2713 29.1496C26.6934 29.8193 27.4142 30.0602 28.0409 30.0126C28.65 29.9663 29.3162 29.6346 29.6255 28.9757C29.8189 28.6746 29.7452 27.999 29.6842 27.6989L27.7532 18.5617C27.5206 17.4608 27.3318 16.5674 27.0926 15.8695C26.8432 15.1417 26.5131 14.5436 25.9479 14.0868C25.3832 13.6304 24.7289 13.4325 23.9643 13.3395C23.2301 13.2502 22.3142 13.2502 21.1841 13.2502L18.8166 13.2502C17.6864 13.2502 16.7705 13.2502 16.0363 13.3395C15.2717 13.4325 14.6175 13.6304 14.0527 14.0868C13.4875 14.5436 13.1575 15.1417 12.908 15.8695C12.6688 16.5674 12.4801 17.4608 12.2474 18.5617L10.3164 27.6989C10.2554 27.999 10.1818 28.6746 10.3751 28.9757C10.6844 29.6346 11.3506 29.9663 11.9597 30.0126C12.5865 30.0602 13.3072 29.8193 13.7293 29.1496C13.7819 29.0662 13.8965 28.9898 14.0645 28.9818C14.2323 28.9739 14.3639 29.0391 14.4336 29.1263L14.9847 29.8165ZM20.0003 17.2502C20.4145 17.2502 20.7503 17.586 20.7503 18.0002C20.7503 18.4144 20.4145 18.7502 20.0003 18.7502L17.0003 18.7502C16.5861 18.7502 16.2503 18.4144 16.2503 18.0002C16.2503 17.586 16.5861 17.2502 17.0003 17.2502L20.0003 17.2502ZM22.7503 22.0002C22.7503 21.586 22.4145 21.2502 22.0003 21.2502L16.0003 21.2502C15.5861 21.2502 15.2503 21.586 15.2503 22.0002C15.2503 22.4144 15.5861 22.7502 16.0003 22.7502L22.0003 22.7502C22.4145 22.7502 22.7503 22.4144 22.7503 22.0002Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="1" y="1.5" width="45" height="45" rx="22.5" fill="white" stroke="#47DCAF" stroke-width="2"/>
|
||||||
|
<path d="M35.1383 18.2794C38.7844 24.7387 36.9571 35.6511 30.4978 39.2972C24.0384 42.9433 15.3831 39.842 11.737 33.3827C8.0909 26.9233 10.3715 18.7313 16.8308 15.0852C20.1833 13.1928 22.7437 20.4843 26.1545 21.0484C29.3153 21.5711 33.3846 15.1726 35.1383 18.2794Z" fill="#2DBD92"/>
|
||||||
|
<path d="M33.6476 18.8724C36.9812 24.7781 35.3105 34.7551 29.4049 38.0887C23.4992 41.4223 15.5857 38.5868 12.2522 32.6811C8.9186 26.7754 11.0037 19.2855 16.9094 15.952C19.9403 14.2411 20.6874 21.4684 26.5751 21.0479C31.6217 22.3095 32.0249 15.9977 33.6476 18.8724Z" fill="#47DCAF"/>
|
||||||
|
<path d="M30.3567 21.8889C34.4012 26.6684 32.0125 33.516 26.9923 35.3465C22.3619 37.4966 16.9821 35.8469 14.797 31.1412C12.612 26.4354 12.9118 19.1548 20.2645 17.6842C19.8586 16.2651 18.0361 13.7333 19.4232 12.6368C20.9133 11.4588 34.9834 13.0576 34.1417 16.0012C33.2999 18.9447 28.886 20.4178 30.3567 21.8889Z" fill="#DAF8EF"/>
|
||||||
|
<circle cx="26.4683" cy="11.9956" r="5.07768" fill="#D4B135"/>
|
||||||
|
<circle cx="25.9917" cy="11.5777" r="5.07768" fill="#FCD859"/>
|
||||||
|
<circle cx="25.992" cy="11.5779" r="3.03107" fill="#F88484" stroke="#FEF3CD" stroke-width="2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.25 19.5667C9.25 13.8384 14.0952 9.25 20 9.25C25.9048 9.25 30.75 13.8384 30.75 19.5667C30.75 25.295 25.9048 29.8834 20 29.8834C19.3041 29.8843 18.6103 29.8199 17.927 29.6916C17.6898 29.647 17.5391 29.6189 17.427 29.6036C17.3433 29.5907 17.2593 29.6219 17.2277 29.6391C17.1132 29.6935 16.9607 29.7744 16.7271 29.8986C15.2954 30.66 13.625 30.93 12.014 30.6303C11.7538 30.5819 11.5384 30.4 11.4471 30.1517C11.3559 29.9033 11.4022 29.6252 11.5692 29.4199C12.037 28.8445 12.3586 28.1513 12.5009 27.4052C12.5394 27.2 12.4523 26.9213 12.1845 26.6494C10.3697 24.8065 9.25 22.3144 9.25 19.5667ZM19 17.2582C19 16.9566 19.3228 16.5 20 16.5C20.6772 16.5 21 16.9566 21 17.2582C21 17.3803 20.9608 17.5021 20.8762 17.6178C20.7622 17.7734 20.6156 17.9397 20.4303 18.1422L20.3414 18.239C20.1863 18.4076 20.0087 18.6007 19.847 18.796C19.4761 19.2443 19 19.9172 19 20.7747V21.2143C19 21.7666 19.4477 22.2143 20 22.2143C20.5523 22.2143 21 21.7666 21 21.2143V20.7747C21 20.6612 21.0666 20.4593 21.3878 20.0712C21.5131 19.9198 21.6484 19.7726 21.8027 19.6046L21.9056 19.4925C22.092 19.2889 22.3051 19.0517 22.4901 18.799C22.8065 18.3667 23 17.8363 23 17.2582C23 15.6177 21.5319 14.5 20 14.5C18.4681 14.5 17 15.6177 17 17.2582C17 17.8105 17.4477 18.2582 18 18.2582C18.5523 18.2582 19 17.8105 19 17.2582ZM20 23.5C19.4477 23.5 19 23.9477 19 24.5C19 25.0523 19.4477 25.5 20 25.5H20.012C20.5643 25.5 21.012 25.0523 21.012 24.5C21.012 23.9477 20.5643 23.5 20.012 23.5H20Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M4 13C4 8.58172 7.58172 5 12 5C16.4183 5 20 8.58172 20 13C20 13.5523 20.4477 14 21 14C21.5523 14 22 13.5523 22 13C22 7.47715 17.5228 3 12 3C6.47715 3 2 7.47715 2 13C2 13.5523 2.44772 14 3 14C3.55228 14 4 13.5523 4 13Z" fill="#D48D05"/>
|
||||||
|
<path d="M12 9C12.5523 9 13 9.44772 13 10L13 15.1707C14.1652 15.5825 15 16.6938 15 18C15 19.6569 13.6569 21 12 21C10.3431 21 9 19.6569 9 18C9 16.6938 9.83481 15.5825 11 15.1707L11 10C11 9.44772 11.4477 9 12 9Z" fill="#D48D05"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 576 B |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 10.5523 18.4477 11 19 11C19.5523 11 20 10.5523 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 10.5523 0.447715 11 1 11C1.55228 11 2 10.5523 2 10Z" fill="white"/>
|
||||||
|
<path d="M10 6C10.5523 6 11 6.44772 11 7L11 12.1707C12.1652 12.5825 13 13.6938 13 15C13 16.6569 11.6569 18 10 18C8.34315 18 7 16.6569 7 15C7 13.6938 7.83481 12.5825 9 12.1707L9 7C9 6.44772 9.44772 6 10 6Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 568 B |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M13.4058 10.1574C14.5835 8.94752 16.4165 8.94752 17.5942 10.1574C18.054 10.6299 18.5719 11.2016 19.0817 11.8477C19.233 12.0394 19.3087 12.1353 19.3025 12.2484C19.2964 12.3615 19.2078 12.4518 19.0307 12.6323C18.0071 13.675 16.8174 15.04 15.8309 16.6019C14.7234 18.3553 13.75 20.5486 13.75 22.9263C13.75 23.1554 13.7589 23.3852 13.7765 23.6151C13.8106 24.0582 13.8276 24.2797 13.6884 24.378C13.5492 24.4762 13.3692 24.3962 13.0093 24.2361C10.6089 23.1688 9.25 20.608 9.25 18.1746C9.25 16.5195 9.90101 14.9267 10.7194 13.5687C11.5421 12.2036 12.5698 11.0164 13.4058 10.1574Z" fill="#8F9AA3"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.4937 13.2908C21.9094 11.9031 24.0906 11.9031 25.5063 13.2908C26.5644 14.3279 27.8628 15.7593 28.9009 17.403C29.9341 19.0387 30.75 20.9482 30.75 22.9263C30.75 26.7556 27.8319 30.75 23 30.75C18.1681 30.75 15.25 26.7556 15.25 22.9263C15.25 20.9482 16.0659 19.0387 17.0991 17.403C18.1372 15.7593 19.4356 14.3279 20.4937 13.2908ZM26.5 22.5C27.0523 22.5 27.5 22.9477 27.5 23.5C27.5 24.8503 27.0299 25.8998 26.2068 26.5932C25.4132 27.2618 24.4095 27.5 23.5 27.5C22.9477 27.5 22.5 27.0523 22.5 26.5C22.5 25.9477 22.9477 25.5 23.5 25.5C24.0905 25.5 24.5868 25.3428 24.9182 25.0636C25.2201 24.8094 25.5 24.3589 25.5 23.5C25.5 22.9477 25.9477 22.5 26.5 22.5Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6.75C4 3.02208 7.02208 0 10.75 0C14.4779 0 17.5 3.02208 17.5 6.75C17.5 6.81385 17.5 6.84578 17.4946 6.87394C17.4654 7.02516 17.324 7.13066 17.1708 7.11566C17.1422 7.11287 17.1041 7.10157 17.028 7.07899C16.306 6.86492 15.5414 6.75 14.75 6.75C11.4211 6.75 8.56706 8.78325 7.36206 11.6756C7.21403 12.031 7.14001 12.2086 6.99327 12.2449C6.84654 12.2812 6.71484 12.1723 6.45145 11.9546L6.45144 11.9546C4.95411 10.7165 4 8.84466 4 6.75ZM8 14.75C8 11.0221 11.0221 8 14.75 8C18.4779 8 21.5 11.0221 21.5 14.75C21.5 18.4779 18.4779 21.5 14.75 21.5C11.0221 21.5 8 18.4779 8 14.75ZM6.77538 14.11C6.75857 14.3217 6.75 14.5358 6.75 14.7519C6.75 16.87 7.57313 18.7958 8.91695 20.227L8.91696 20.227C9.22203 20.5519 9.37457 20.7143 9.33165 20.8754C9.28873 21.0365 9.09982 21.0941 8.72199 21.2093C8.09819 21.3996 7.43605 21.5019 6.75 21.5019C3.02208 21.5019 0 18.4798 0 14.7519C0 12.6572 0.954182 10.7853 2.45161 9.54723C2.715 9.32946 2.8467 9.22057 2.99343 9.25688C3.14016 9.29319 3.21416 9.4708 3.36215 9.82601C3.9893 11.3312 5.0627 12.6033 6.41512 13.4766L6.4968 13.5294C6.64871 13.6275 6.72467 13.6765 6.76134 13.7507C6.79802 13.8249 6.79047 13.9199 6.77538 14.11Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M11.9998 21.25C11.5858 21.2503 11.2498 21.5859 11.2498 22C11.2498 22.4141 11.5858 22.7497 11.9998 22.75H14.3953C14.577 22.75 14.7553 22.7915 14.9158 22.8691L16.9578 23.8564C17.3233 24.0333 17.7251 24.125 18.1316 24.125H19.1746C19.601 24.1251 19.9516 24.3534 20.1277 24.6719L18.1931 25.207C17.9121 25.2847 17.6116 25.2563 17.3523 25.1309L15.1687 24.0752C14.7959 23.895 14.3471 24.051 14.1667 24.4238C13.9866 24.7966 14.1427 25.2454 14.5154 25.4258L16.699 26.4814C17.2874 26.7661 17.9622 26.8265 18.5925 26.6523L21.1335 25.9502C21.4836 25.8534 21.7498 25.5327 21.7498 25.1416C21.7498 25.1125 21.7468 25.0836 21.7458 25.0547L25.8132 23.8057L25.8162 23.8047C26.3135 23.6499 26.8624 23.8288 27.1892 24.2812C27.3052 24.4419 27.2446 24.6626 27.1033 24.7441L19.5876 29.0811C19.2867 29.2546 18.9351 29.2953 18.6082 29.1982L12.2136 27.3008C11.8165 27.1829 11.3988 27.4095 11.281 27.8066C11.1632 28.2037 11.3898 28.6214 11.7869 28.7393L18.1814 30.6367C18.9059 30.8517 19.6827 30.7578 20.3376 30.3799L27.8533 26.0439C28.7864 25.5055 29.0265 24.2639 28.405 23.4033C27.7121 22.4438 26.5013 22.0206 25.3708 22.3721L25.3699 22.373L21.241 23.6416C20.7675 23.0215 20.0117 22.6251 19.1746 22.625H18.1316C17.95 22.625 17.7716 22.5844 17.6111 22.5068L15.5691 21.5186C15.2035 21.3417 14.8017 21.25 14.3953 21.25H11.9998ZM22.6511 9.91992C21.7188 9.02657 20.2817 9.02657 19.3494 9.91992C18.7347 10.5091 17.9734 11.3294 17.3611 12.2773C16.7542 13.2169 16.2498 14.3489 16.2498 15.5469C16.2498 17.8542 18.0478 20.25 21.0007 20.25C23.9534 20.2497 25.7507 17.854 25.7507 15.5469C25.7507 14.3489 25.2463 13.2169 24.6394 12.2773C24.0271 11.3294 23.2657 10.5091 22.6511 9.91992ZM20.3875 11.0029C20.7396 10.6657 21.2609 10.6657 21.613 11.0029C22.181 11.5474 22.8538 12.2767 23.3796 13.0908C23.9109 13.9134 24.2507 14.7575 24.2507 15.5469C24.2507 17.1367 23.0181 18.7497 21.0007 18.75C18.9831 18.75 17.7498 17.1369 17.7498 15.5469C17.7498 14.7575 18.0895 13.9134 18.6208 13.0908C19.1467 12.2767 19.8195 11.5474 20.3875 11.0029Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,6 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#ED1C2B"/>
|
||||||
|
<path d="M13.4892 10.4509C13.7771 10.183 14.2229 10.183 14.5108 10.4509L14.5122 10.4522L14.5147 10.4545L14.5229 10.4622L14.5516 10.4894C14.5761 10.5128 14.6109 10.5464 14.6546 10.5893C14.7421 10.6753 14.8654 10.7991 15.0126 10.9541C15.3062 11.2633 15.6993 11.7012 16.0942 12.214C16.4875 12.7246 16.8937 13.3239 17.2044 13.956C17.5115 14.5809 17.75 15.2878 17.75 16C17.75 17.2888 17.3037 18.2635 16.5457 18.902C15.8099 19.5219 14.8697 19.75 14 19.75C13.1303 19.75 12.1901 19.5219 11.4543 18.902C10.6963 18.2635 10.25 17.2888 10.25 16C10.25 15.2878 10.4885 14.5809 10.7956 13.956C11.1063 13.3239 11.5125 12.7246 11.9058 12.214C12.3007 11.7012 12.6938 11.2633 12.9874 10.9541C13.1346 10.7991 13.2579 10.6753 13.3454 10.5893C13.3891 10.5464 13.4239 10.5128 13.4484 10.4894L13.4771 10.4622L13.4853 10.4545L13.4878 10.4522L13.4892 10.4509Z" fill="white"/>
|
||||||
|
<path d="M25.4892 10.4509C25.7771 10.183 26.2229 10.183 26.5108 10.4509L26.5147 10.4545L26.5229 10.4622L26.5516 10.4894C26.5761 10.5128 26.6109 10.5464 26.6546 10.5893C26.7421 10.6753 26.8654 10.7991 27.0126 10.9541C27.3062 11.2633 27.6993 11.7012 28.0942 12.214C28.4875 12.7246 28.8937 13.3239 29.2044 13.956C29.5115 14.5809 29.75 15.2878 29.75 16C29.75 17.2888 29.3037 18.2635 28.5457 18.902C27.8099 19.5219 26.8697 19.75 26 19.75C25.1304 19.75 24.1901 19.5219 23.4543 18.902C22.6963 18.2635 22.25 17.2888 22.25 16C22.25 15.2878 22.4885 14.5809 22.7956 13.956C23.1063 13.3239 23.5125 12.7246 23.9058 12.214C24.3007 11.7012 24.6938 11.2633 24.9874 10.9541C25.1346 10.7991 25.2579 10.6753 25.3454 10.5893C25.3891 10.5464 25.4239 10.5128 25.4484 10.4894L25.4771 10.4622L25.4853 10.4545L25.4878 10.4522L25.4892 10.4509Z" fill="white"/>
|
||||||
|
<path d="M19.4892 20.4509C19.7771 20.183 20.2229 20.183 20.5108 20.4509L20.5122 20.4522L20.5147 20.4545L20.5229 20.4622L20.5516 20.4894C20.5761 20.5128 20.6109 20.5464 20.6546 20.5893C20.7421 20.6753 20.8654 20.7991 21.0126 20.9541C21.3062 21.2633 21.6993 21.7012 22.0942 22.214C22.4875 22.7246 22.8937 23.3239 23.2044 23.956C23.5115 24.5809 23.75 25.2878 23.75 26C23.75 27.2888 23.3037 28.2635 22.5457 28.902C21.8099 29.5219 20.8697 29.75 20 29.75C19.1303 29.75 18.1901 29.5219 17.4543 28.902C16.6963 28.2635 16.25 27.2888 16.25 26C16.25 25.2878 16.4885 24.5809 16.7956 23.956C17.1063 23.3239 17.5125 22.7246 17.9058 22.214C18.3007 21.7012 18.6938 21.2633 18.9874 20.9541C19.1346 20.7991 19.2579 20.6753 19.3454 20.5893C19.3891 20.5464 19.4239 20.5128 19.4484 20.4894L19.4771 20.4622L19.4853 20.4545L19.4878 20.4522L19.4892 20.4509Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#ED1C2B"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.25 16C13.25 12.2721 16.2721 9.25 20 9.25C23.7279 9.25 26.75 12.2721 26.75 16C26.75 16.0639 26.75 16.0958 26.7446 16.1239C26.7154 16.2752 26.574 16.3807 26.4208 16.3657C26.3922 16.3629 26.3541 16.3516 26.278 16.329C25.556 16.1149 24.7914 16 24 16C20.6711 16 17.8171 18.0333 16.6121 20.9256C16.464 21.281 16.39 21.4586 16.2433 21.4949C16.0965 21.5312 15.9648 21.4223 15.7014 21.2046L15.7014 21.2046C14.2041 19.9665 13.25 18.0947 13.25 16ZM17.25 24C17.25 20.2721 20.2721 17.25 24 17.25C27.7279 17.25 30.75 20.2721 30.75 24C30.75 27.7279 27.7279 30.75 24 30.75C20.2721 30.75 17.25 27.7279 17.25 24ZM16.0254 23.36C16.0086 23.5717 16 23.7858 16 24.0019C16 26.12 16.8231 28.0458 18.167 29.477L18.167 29.477C18.472 29.8019 18.6246 29.9643 18.5817 30.1254C18.5387 30.2865 18.3498 30.3441 17.972 30.4593C17.3482 30.6496 16.686 30.7519 16 30.7519C12.2721 30.7519 9.25 27.7298 9.25 24.0019C9.25 21.9072 10.2042 20.0353 11.7016 18.7972C11.965 18.5795 12.0967 18.4706 12.2434 18.5069C12.3902 18.5432 12.4642 18.7208 12.6122 19.076C13.2393 20.5812 14.3127 21.8533 15.6651 22.7266L15.7468 22.7794C15.8987 22.8775 15.9747 22.9265 16.0113 23.0007C16.048 23.0749 16.0405 23.1699 16.0254 23.36Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M18.2215 12.1982C18.7926 12.0686 19.3878 12 20.0002 12C24.4185 12 28.0002 15.5817 28.0002 20C28.0002 22.0411 27.2363 23.904 25.9769 25.3181V24C25.9769 23.4477 25.5292 23 24.9769 23C24.4246 23 23.9769 23.4477 23.9769 24V27.5C23.9769 28.0523 24.4246 28.5 24.9769 28.5H28.5002C29.0525 28.5 29.5002 28.0523 29.5002 27.5C29.5002 26.9477 29.0525 26.5 28.5002 26.5H27.5996C29.0955 24.7526 30.0002 22.482 30.0002 20C30.0002 14.4772 25.5231 10 20.0002 10C19.2379 10 18.4943 10.0855 17.7789 10.2478C17.2403 10.37 16.9028 10.9057 17.025 11.4443C17.1472 11.9829 17.6829 12.3204 18.2215 12.1982Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M11.5 11.5156C10.9477 11.5156 10.5 11.9633 10.5 12.5156C10.5 13.0679 10.9477 13.5156 11.5 13.5156H12.3873C10.8993 15.261 10 17.5254 10 20.0001C10 25.5229 14.4772 30.0001 20 30.0001C20.7623 30.0001 21.5059 29.9146 22.2213 29.7523C22.7599 29.6301 23.0974 29.0944 22.9752 28.5558C22.853 28.0172 22.3173 27.6796 21.7787 27.8019C21.2076 27.9314 20.6124 28.0001 20 28.0001C15.5817 28.0001 12 24.4184 12 20.0001C12 17.9716 12.7545 16.1191 14 14.7082L14 16.0001C14 16.5524 14.4477 17.0001 15 17.0001C15.5523 17.0001 16 16.5524 16 16.0001V12.5156C16 11.9633 15.5523 11.5156 15 11.5156L11.5 11.5156Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 30.75C17.7007 30.75 17.4476 30.6611 17.2239 30.5507C17.0235 30.4518 16.8014 30.3117 16.5667 30.1637L14.6291 28.9417C14.3742 28.7809 14.2283 28.6899 14.114 28.6327C14.0083 28.5747 13.9326 28.6033 13.9079 28.6249C13.7948 28.678 13.6438 28.7696 13.371 28.9417L12.8622 29.2911C12.6515 29.4359 12.3974 29.6033 12.1271 29.7447C11.655 29.9917 10.8144 30.3299 10.0558 29.8414C9.54247 29.5107 9.38152 28.9658 9.3149 28.487C9.24992 28.0198 9.24996 27.4095 9.25 26.7008L9.25 15.9998C9.24998 14.6191 9.24997 13.5075 9.36641 12.6336C9.48716 11.7274 9.74526 10.9648 10.346 10.3587C10.9476 9.75161 11.706 9.48992 12.6074 9.36764C13.4748 9.24997 14.5775 9.24998 15.9446 9.25L28.016 9.25C28.4911 9.25 28.8802 9.4793 29.1687 9.7609C29.4541 10.0395 29.6847 10.4083 29.8722 10.8101C30.2537 11.6272 30.5229 12.7386 30.6684 13.9644C30.7158 14.3637 30.7614 14.7478 30.7473 15.0722C30.7309 15.4502 30.6325 15.8306 30.3326 16.1652C30.0239 16.5095 29.6366 16.6432 29.2576 16.6998C28.921 16.7501 28.5084 16.7501 28.0646 16.75L26.75 16.75L26.75 26.7008C26.75 27.4095 26.7501 28.0198 26.6851 28.487C26.6185 28.9658 26.4575 29.5107 25.9441 29.8414C25.1856 30.3299 24.345 29.9917 23.8729 29.7447C23.6025 29.6033 23.3485 29.4359 23.1377 29.2911L22.629 28.9417C22.3562 28.7696 22.2052 28.678 22.0921 28.6249C22.0674 28.6033 21.9917 28.5747 21.8859 28.6327C21.7717 28.6899 21.6258 28.7809 21.3709 28.9417L19.4333 30.1636C19.1987 30.3116 18.9765 30.4518 18.7761 30.5507C18.5524 30.6611 18.2993 30.75 18 30.75ZM28.121 10.8343C28.0611 10.7759 27.9721 10.7748 27.9121 10.8329C27.8853 10.8591 27.854 10.8934 27.8186 10.938C27.652 11.1477 27.469 11.4974 27.3014 11.9962C27.0311 12.8006 26.836 13.8859 26.7724 15.1219C26.7702 15.1644 26.7682 15.2071 26.7663 15.25H28.016C28.5254 15.25 28.8236 15.248 29.0358 15.2163C29.2003 15.1917 29.2417 15.1699 29.2487 15.0072C29.2569 14.8192 29.2283 14.5588 29.173 14.0921C29.0404 12.9728 28.7989 12.0569 28.513 11.4445C28.3694 11.1368 28.2313 10.942 28.121 10.8343ZM18.75 15C18.75 14.5858 18.4142 14.25 18 14.25C17.5858 14.25 17.25 14.5858 17.25 15V15.3336C16.8358 15.4281 16.4543 15.6005 16.1358 15.8393C15.6318 16.2173 15.25 16.7968 15.25 17.5C15.25 18.2032 15.6318 18.7827 16.1358 19.1607C16.6396 19.5385 17.3011 19.75 18 19.75C18.4057 19.75 18.7441 19.8743 18.9642 20.0393C19.1841 20.2042 19.25 20.3748 19.25 20.5C19.25 20.6252 19.1841 20.7958 18.9642 20.9607C18.7441 21.1257 18.4057 21.25 18 21.25C17.3316 21.25 16.9095 20.929 16.7922 20.6803C16.6157 20.3056 16.1688 20.145 15.7941 20.3216C15.4194 20.4981 15.2588 20.945 15.4354 21.3197C15.7653 22.0197 16.4613 22.4848 17.25 22.6655V23C17.25 23.4142 17.5858 23.75 18 23.75C18.4142 23.75 18.75 23.4142 18.75 23V22.6664C19.1642 22.5719 19.5457 22.3995 19.8642 22.1607C20.3682 21.7827 20.75 21.2032 20.75 20.5C20.75 19.7968 20.3682 19.2173 19.8642 18.8393C19.3604 18.4615 18.6989 18.25 18 18.25C17.5943 18.25 17.2559 18.1257 17.0358 17.9607C16.8159 17.7958 16.75 17.6252 16.75 17.5C16.75 17.3748 16.8159 17.2042 17.0358 17.0393C17.2559 16.8743 17.5943 16.75 18 16.75C18.6684 16.75 19.0905 17.071 19.2078 17.3197C19.3843 17.6944 19.8312 17.855 20.2059 17.6784C20.5806 17.5019 20.7412 17.055 20.5646 16.6803C20.2347 15.9803 19.5387 15.5152 18.75 15.3345V15Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M5 10.4189C5 6.60727 8.12437 3.5 12 3.5C15.8756 3.5 19 6.60727 19 10.4189C19 11.7227 18.6361 12.94 18.003 13.98C17.7158 14.4518 17.8654 15.067 18.3372 15.3542C18.8089 15.6414 19.4242 15.4917 19.7113 15.02C20.5292 13.6763 21 12.1008 21 10.4189C21 5.48352 16.9609 1.5 12 1.5C7.03907 1.5 3 5.48352 3 10.4189C3 12.1008 3.47075 13.6763 4.28867 15.02C4.57584 15.4917 5.19107 15.6414 5.66283 15.3542C6.13458 15.067 6.28421 14.4518 5.99704 13.98C5.36394 12.94 5 11.7227 5 10.4189Z" fill="#FFAF15"/>
|
||||||
|
<path d="M16.2105 15.755C16.1022 15.75 15.9736 15.75 15.8432 15.75L13 15.75L13 12.3377C13.6525 12.122 14.2312 11.7074 14.7242 11.1896C15.1051 10.7896 15.0896 10.1567 14.6896 9.77581C14.2896 9.39495 13.6567 9.41044 13.2758 9.81041C12.783 10.3279 12.3512 10.5 12 10.5C11.6488 10.5 11.217 10.3279 10.7242 9.81041C10.3433 9.41045 9.71037 9.39495 9.31041 9.77581C8.91044 10.1567 8.89495 10.7896 9.27581 11.1896C9.76884 11.7074 10.3475 12.122 11 12.3377L11 15.75H8.15684C8.02643 15.75 7.89781 15.75 7.78945 15.755C7.67503 15.7602 7.52127 15.7728 7.3611 15.8212C6.8626 15.9717 6.5267 16.3363 6.50126 16.7498C6.49309 16.8826 6.52614 16.9996 6.55585 17.0857C6.8873 18.7676 7.57151 19.25 8.1569 19.25L15.8431 19.25C16.4285 19.25 17.1127 18.7676 17.4441 17.0857C17.4739 16.9996 17.5069 16.8826 17.4987 16.7498C17.4733 16.3363 17.1374 15.9717 16.6389 15.8212C16.4787 15.7728 16.325 15.7602 16.2105 15.755Z" fill="#FFAF15"/>
|
||||||
|
<path d="M10.3321 22.4013C10.6774 22.5018 11.0856 22.5018 11.9019 22.5018C12.7182 22.5018 13.1264 22.5018 13.4717 22.4013C14.0057 22.2458 14.4551 21.9204 14.7324 21.4884C14.8356 21.3276 14.906 21.1423 14.9776 20.8791C15.0674 20.5491 15.1123 20.3841 15.0223 20.2663C14.9322 20.1484 14.7551 20.1484 14.4009 20.1484L9.40295 20.1484C9.04873 20.1484 8.87162 20.1484 8.78156 20.2663C8.69151 20.3841 8.73641 20.5491 8.82623 20.8791C8.89786 21.1423 8.96819 21.3276 9.07142 21.4884C9.34876 21.9204 9.79812 22.2458 10.3321 22.4013Z" fill="#FFAF15"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.999 9.25C18.3178 9.25 16.9509 9.81794 15.7588 10.4355C15.3986 10.6222 15.0639 10.8068 14.7441 10.9832C13.9617 11.4148 13.2681 11.7974 12.5066 12.0404C12.0593 12.1831 11.6631 12.3095 11.3821 12.4196C11.1177 12.5232 10.8035 12.6652 10.5805 12.913C10.3802 13.1356 10.2773 13.3855 10.2091 13.6245C10.1472 13.8415 10.0943 14.1352 10.0435 14.417C8.80553 21.2827 11.5125 27.787 18.123 30.3179C18.7727 30.5667 19.2513 30.75 20.0023 30.75C20.7534 30.75 21.2319 30.5667 21.8816 30.3179C28.4919 27.7869 31.1962 21.2824 29.9579 14.417C29.9071 14.1352 29.8541 13.8413 29.7922 13.6243C29.7239 13.3853 29.621 13.1354 29.4207 12.9128C29.1977 12.665 28.8835 12.523 28.619 12.4195C28.3381 12.3094 27.9419 12.1831 27.4946 12.0404C26.7327 11.7974 26.0386 11.4148 25.2555 10.9831C24.9356 10.8067 24.6007 10.6221 24.2405 10.4355C23.0477 9.81795 21.6803 9.25 19.999 9.25ZM25.3338 17.9429C25.8544 17.7585 26.127 17.187 25.9426 16.6664C25.7582 16.1458 25.1868 15.8733 24.6662 16.0576C23.788 16.3686 22.9486 16.9618 22.212 17.6078C21.465 18.2629 20.7666 19.0235 20.1733 19.7347C19.734 20.2613 19.3456 20.7689 19.0304 21.1997C18.7416 20.8538 18.454 20.6011 18.1797 20.4182C17.9053 20.2353 17.5523 20.0003 17 20.0003C16.4477 20.0003 16 20.448 16 21.0003C16 21.521 16.398 21.9487 16.9064 21.9959C17.1104 22.0149 17.6649 22.5661 18.1056 23.4475C18.2668 23.7698 18.5889 23.9805 18.9489 23.999C19.3087 24.0174 19.6508 23.8406 19.8441 23.5365C19.8441 23.5365 20.1922 23.0141 20.3574 22.7801C20.6885 22.3111 21.1572 21.6774 21.7091 21.0159C22.2628 20.3521 22.888 19.6751 23.5307 19.1115C24.1837 18.5388 24.8002 18.1319 25.3338 17.9429Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,7 @@
|
|||||||
|
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.462872 10.1666C0.228367 10.108 0.111115 10.0787 0.0468218 9.98619C-0.0174712 9.8937 -0.00458142 9.77798 0.0211982 9.54656C0.619456 4.17595 5.17435 0 10.7046 0C16.2349 0 20.7898 4.176 21.388 9.54665C21.4138 9.77807 21.4267 9.89379 21.3624 9.98628C21.2981 10.0788 21.1808 10.1081 20.9463 10.1667L16.5365 11.2692C16.3156 11.3244 16.2052 11.352 16.1187 11.3202C16.0321 11.2885 15.9488 11.1726 15.7824 10.9408C15.5865 10.6681 15.3355 10.4575 15.0448 10.3067C14.5775 10.0644 14.0546 10.0002 13.5871 10.0002H7.82242C7.35432 10.0002 6.83087 10.0645 6.3633 10.3073C6.07298 10.458 5.82232 10.6685 5.62668 10.9408C5.46023 11.1725 5.37701 11.2884 5.29044 11.3201C5.20386 11.3519 5.09347 11.3243 4.87268 11.2691L0.462872 10.1666ZM5.67426 7.21967C6.13506 6.75887 6.76003 6.5 7.4117 6.5H8.70459C9.1188 6.5 9.45459 6.83579 9.45459 7.25C9.45459 7.66421 9.1188 8 8.70459 8H7.4117C7.15786 8 6.91441 8.10084 6.73492 8.28033C6.44203 8.57322 5.96715 8.57322 5.67426 8.28033C5.38137 7.98744 5.38137 7.51256 5.67426 7.21967ZM11.9546 7.25C11.9546 6.83579 12.2904 6.5 12.7046 6.5H13.9975C14.6491 6.5 15.2741 6.75887 15.7349 7.21967C16.0278 7.51256 16.0278 7.98744 15.7349 8.28033C15.442 8.57322 14.9672 8.57322 14.6743 8.28033C14.4948 8.10084 14.2513 8 13.9975 8H12.7046C12.2904 8 11.9546 7.66421 11.9546 7.25Z" fill="white"/>
|
||||||
|
<path d="M0.0837141 12.4212C0.0267055 12.0559 -0.00179879 11.8733 0.117089 11.7647C0.235976 11.6561 0.422465 11.7027 0.795442 11.7959L4.52364 12.728C4.76706 12.7888 4.88877 12.8193 4.95293 12.9082C5.01708 12.9972 5.00713 13.1275 4.98722 13.3883C4.9545 13.8168 4.94652 14.2577 4.96329 14.6923C4.97667 15.0388 4.98336 15.2121 4.88525 15.3055C4.78714 15.399 4.62125 15.3844 4.28947 15.3554L1.20555 15.0852C1.031 15.0699 0.943724 15.0622 0.875524 15.0115C0.807325 14.9608 0.776105 14.8824 0.713667 14.7256C0.422134 13.9936 0.208718 13.222 0.0837141 12.4212Z" fill="white"/>
|
||||||
|
<path d="M2.94493 16.749C2.40172 16.7002 2.13012 16.6758 2.03715 16.8534C1.94417 17.0309 2.11204 17.232 2.44777 17.6343C4.4197 19.9968 7.3866 21.5 10.7046 21.5C14.0226 21.5 16.9895 19.9968 18.9614 17.6343C19.2971 17.2321 19.465 17.031 19.372 16.8534C19.279 16.6759 19.0074 16.7002 18.4642 16.749L16.4748 16.9275C16.2986 16.9434 16.2105 16.9513 16.1473 16.993C16.0842 17.0348 16.033 17.1302 15.9308 17.3211C15.7212 17.7122 15.4152 18.0015 15.0448 18.1936C14.5775 18.436 14.0546 18.5002 13.5871 18.5002H7.82241C7.35508 18.5002 6.83229 18.436 6.36514 18.1938C5.99468 18.0017 5.68855 17.7124 5.47892 17.3211C5.37667 17.1303 5.32555 17.0349 5.26236 16.9931C5.19916 16.9513 5.11106 16.9434 4.93485 16.9276L2.94493 16.749Z" fill="white"/>
|
||||||
|
<path d="M20.6955 14.7257C20.6331 14.8824 20.6018 14.9608 20.5336 15.0115C20.4654 15.0623 20.3782 15.0699 20.2036 15.0852L17.1201 15.3554C16.7883 15.3844 16.6225 15.399 16.5244 15.3055C16.4263 15.2121 16.4329 15.0388 16.4463 14.6923C16.463 14.2578 16.455 13.8169 16.4222 13.3884C16.4023 13.1276 16.3923 12.9972 16.4564 12.9083C16.5206 12.8193 16.6423 12.7889 16.8858 12.728L20.6137 11.796C20.9867 11.7028 21.1732 11.6562 21.2921 11.7648C21.411 11.8734 21.3825 12.056 21.3255 12.4213C21.2004 13.2221 20.987 13.9937 20.6955 14.7257Z" fill="white"/>
|
||||||
|
<path d="M6.73398 12.051C6.80458 11.8189 6.91733 11.7098 7.05454 11.6385C7.22042 11.5524 7.47075 11.5002 7.82242 11.5002H13.5871C13.9382 11.5002 14.1884 11.5523 14.3542 11.6383C14.4914 11.7095 14.604 11.8184 14.6746 12.0497C15.0482 13.274 15.0482 15.2264 14.6746 16.4506C14.604 16.6819 14.4914 16.7909 14.3542 16.8621C14.1884 16.9481 13.9382 17.0002 13.5871 17.0002H7.82241C7.47147 17.0002 7.22139 16.9481 7.05557 16.8621C6.91833 16.791 6.80577 16.6821 6.73521 16.451C6.36164 15.2274 6.36134 13.2759 6.73398 12.051Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="44" height="32" viewBox="0 0 44 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1 1H31.2656L28.4282 31H7.6206L1 1Z" stroke="#8F9AA3" stroke-width="2" stroke-linejoin="round" stroke-dasharray="4 4"/>
|
||||||
|
<path d="M31.2656 3.14062H36.9404C40.1561 3.14062 42.6152 5.92634 42.6152 9.5692V15.9978C42.6152 19.6406 40.1561 22.4263 36.9404 22.4263H33.1572" stroke="#8F9AA3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="4 4"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9171 10.1057C20.1307 9.99999 19.1234 9.99999 17.8411 10H17.7741C16.4918 9.99999 15.4846 9.99999 14.6982 10.1057C13.8923 10.2141 13.253 10.4406 12.7506 10.943C12.2482 11.4453 12.0217 12.0847 11.9133 12.8906C11.8076 13.6769 11.8076 14.6842 11.8076 15.9665V16.0335C11.8076 17.3158 11.8076 18.3231 11.9133 19.1094C12.0217 19.9153 12.2482 20.5547 12.7506 21.057C13.253 21.5594 13.8923 21.7859 14.6982 21.8943C15.4846 22 16.4918 22 17.7741 22H17.8411C19.1234 22 20.1307 22 20.9171 21.8943C21.7229 21.7859 22.3623 21.5594 22.8646 21.057C23.367 20.5547 23.5936 19.9153 23.7019 19.1094C23.8076 18.3231 23.8076 17.3158 23.8076 16.0335V15.9665C23.8076 14.6842 23.8076 13.6769 23.7019 12.8906C23.5936 12.0847 23.367 11.4453 22.8646 10.943C22.3623 10.4406 21.7229 10.2141 20.9171 10.1057ZM18.393 13.6585C18.393 13.3352 18.1309 13.0732 17.8076 13.0732C17.4843 13.0732 17.2223 13.3352 17.2223 13.6585V15.4146H15.4662C15.1429 15.4146 14.8808 15.6767 14.8808 16C14.8808 16.3233 15.1429 16.5854 15.4662 16.5854H17.2223V18.3415C17.2223 18.6648 17.4843 18.9268 17.8076 18.9268C18.1309 18.9268 18.393 18.6648 18.393 18.3415V16.5854H20.1491C20.4724 16.5854 20.7344 16.3233 20.7344 16C20.7344 15.6767 20.4724 15.4146 20.1491 15.4146H18.393V13.6585Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="44" height="32" viewBox="0 0 44 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1 1H31.2656L28.4282 31H7.6206L1 1Z" stroke="#2E3039" stroke-width="2" stroke-linejoin="round"/>
|
||||||
|
<path d="M31.2656 3.14062H36.9404C40.1561 3.14062 42.6152 5.92634 42.6152 9.5692V15.9978C42.6152 19.6406 40.1561 22.4263 36.9404 22.4263H33.1572" stroke="#2E3039" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 438 B |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="44" height="32" viewBox="0 0 44 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1 1H31.2656L28.4282 31H7.6206L1 1Z" stroke="#2E3039" stroke-width="2" stroke-linejoin="round"/>
|
||||||
|
<path d="M31.2656 3.14062H36.9404C40.1561 3.14062 42.6152 5.92634 42.6152 9.5692V15.9978C42.6152 19.6406 40.1561 22.4263 36.9404 22.4263H33.1572" stroke="#2E3039" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M7.80762 14.561C14.141 11.4732 20.4743 22.2805 26.8076 19.1927V30H9.91873L7.80762 14.561Z" fill="#4EB5FF"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 555 B |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M5.48916 2.45087C5.77706 2.18304 6.22294 2.18304 6.51084 2.45087L6.51224 2.45218L6.51473 2.4545L6.52292 2.46219L6.55163 2.48944C6.57607 2.51278 6.6109 2.54636 6.65464 2.58935C6.74206 2.67527 6.86535 2.79908 7.01259 2.95413C7.30624 3.26334 7.6993 3.70117 8.09421 4.21395C8.48746 4.72459 8.89375 5.32393 9.20436 5.95598C9.51149 6.58095 9.75 7.28776 9.75 8C9.75 9.28885 9.3037 10.2635 8.54571 10.902C7.80987 11.5219 6.86965 11.75 6 11.75C5.13035 11.75 4.19013 11.5219 3.45429 10.902C2.6963 10.2635 2.25 9.28885 2.25 8C2.25 7.28776 2.48851 6.58095 2.79564 5.95598C3.10625 5.32393 3.51254 4.72459 3.90579 4.21395C4.3007 3.70117 4.69376 3.26334 4.98741 2.95413C5.13465 2.79908 5.25794 2.67527 5.34536 2.58935C5.3891 2.54636 5.42393 2.51278 5.44837 2.48944L5.47708 2.46219L5.48527 2.4545L5.48776 2.45218L5.48916 2.45087Z" fill="#0B85F7"/>
|
||||||
|
<path d="M17.4892 2.45087C17.7771 2.18304 18.2229 2.18304 18.5108 2.45087L18.5147 2.4545L18.5229 2.46219L18.5516 2.48944C18.5761 2.51278 18.6109 2.54636 18.6546 2.58935C18.7421 2.67527 18.8654 2.79908 19.0126 2.95413C19.3062 3.26334 19.6993 3.70117 20.0942 4.21395C20.4875 4.72459 20.8937 5.32393 21.2044 5.95598C21.5115 6.58095 21.75 7.28776 21.75 8C21.75 9.28885 21.3037 10.2635 20.5457 10.902C19.8099 11.5219 18.8697 11.75 18 11.75C17.1304 11.75 16.1901 11.5219 15.4543 10.902C14.6963 10.2635 14.25 9.28885 14.25 8C14.25 7.28776 14.4885 6.58095 14.7956 5.95598C15.1063 5.32393 15.5125 4.72459 15.9058 4.21395C16.3007 3.70117 16.6938 3.26334 16.9874 2.95413C17.1346 2.79908 17.2579 2.67527 17.3454 2.58935C17.3891 2.54636 17.4239 2.51278 17.4484 2.48944L17.4771 2.46219L17.4853 2.4545L17.4878 2.45218L17.4892 2.45087Z" fill="#0B85F7"/>
|
||||||
|
<path d="M11.4892 12.4509C11.7771 12.183 12.2229 12.183 12.5108 12.4509L12.5122 12.4522L12.5147 12.4545L12.5229 12.4622L12.5516 12.4894C12.5761 12.5128 12.6109 12.5464 12.6546 12.5893C12.7421 12.6753 12.8654 12.7991 13.0126 12.9541C13.3062 13.2633 13.6993 13.7012 14.0942 14.214C14.4875 14.7246 14.8937 15.3239 15.2044 15.956C15.5115 16.5809 15.75 17.2878 15.75 18C15.75 19.2888 15.3037 20.2635 14.5457 20.902C13.8099 21.5219 12.8697 21.75 12 21.75C11.1303 21.75 10.1901 21.5219 9.45429 20.902C8.6963 20.2635 8.25 19.2888 8.25 18C8.25 17.2878 8.48851 16.5809 8.79564 15.956C9.10625 15.3239 9.51254 14.7246 9.90579 14.214C10.3007 13.7012 10.6938 13.2633 10.9874 12.9541C11.1346 12.7991 11.2579 12.6753 11.3454 12.5893C11.3891 12.5464 11.4239 12.5128 11.4484 12.4894L11.4771 12.4622L11.4853 12.4545L11.4878 12.4522L11.4892 12.4509Z" fill="#0B85F7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="23.5" cy="24" r="22.5" fill="white" stroke="#D284F8" stroke-width="2"/>
|
||||||
|
<path d="M22.9111 37.3C21.1493 37.3 19.4494 37.0022 17.8117 36.4067C16.1739 35.8111 14.685 34.955 13.345 33.8383C13.072 33.615 12.9231 33.3296 12.8983 32.9822C12.8735 32.6348 12.9728 32.3494 13.1961 32.1261C13.4194 31.9028 13.6862 31.7973 13.9964 31.8097C14.3066 31.8221 14.5981 31.9276 14.8711 32.1261C15.2433 32.4239 15.6404 32.7031 16.0622 32.9636C16.4841 33.2242 16.9059 33.4661 17.3278 33.6894V28.3667H13.2333C12.6378 28.3667 12.1167 28.1433 11.67 27.6967C11.2233 27.25 11 26.7289 11 26.1333V16.4556C11 14.8178 11.5831 13.4157 12.7494 12.2494C13.9157 11.0831 15.3178 10.5 16.9556 10.5H21.7944C22.117 10.5 22.3838 10.6055 22.5947 10.8164C22.8056 11.0273 22.9111 11.2941 22.9111 11.6167V15.7111C22.9111 16.9445 23.911 17.9444 25.1444 17.9444H32.5889C33.1844 17.9444 33.7056 18.1678 34.1522 18.6144C34.5989 19.0611 34.8222 19.5822 34.8222 20.1778V26.1333C34.8222 26.7289 34.5989 27.25 34.1522 27.6967C33.7056 28.1433 33.1844 28.3667 32.5889 28.3667H28.4944V33.6894C28.9411 33.4661 29.3754 33.218 29.7972 32.945C30.2191 32.672 30.6161 32.3743 30.9883 32.0517C31.2365 31.8531 31.5156 31.7539 31.8258 31.7539C32.136 31.7539 32.4028 31.8656 32.6261 32.0889C32.8494 32.3122 32.9549 32.5852 32.9425 32.9078C32.9301 33.2304 32.7998 33.4909 32.5517 33.6894C31.2117 34.8309 29.7166 35.7181 28.0664 36.3508C26.4162 36.9836 24.6978 37.3 22.9111 37.3ZM22.9111 35.0667C23.4819 35.0667 24.0464 35.0294 24.6047 34.955C25.1631 34.8806 25.7152 34.7565 26.2611 34.5828V28.3667H19.5611V34.5828C20.107 34.7565 20.6592 34.8806 21.2175 34.955C21.7758 35.0294 22.3404 35.0667 22.9111 35.0667Z" fill="#EAC4FD"/>
|
||||||
|
<path d="M32.5889 28.3667C33.1844 28.3667 33.7056 28.1433 34.1522 27.6967C34.5989 27.25 34.8222 26.7289 34.8222 26.1333V20.1778C34.8222 19.5822 34.5989 19.0611 34.1522 18.6145C33.7056 18.1678 33.1844 17.9445 32.5889 17.9445C32.5889 17.9445 33.7056 23.9 32.5889 26.1333C31.4721 28.3667 19.1616 27.0328 13.2333 28.3667H32.5889Z" fill="#D18DF3"/>
|
||||||
|
<path d="M18.0722 28.3667V33.6894C17.6504 33.4661 17.2285 33.2242 16.8067 32.9636C16.3848 32.7031 15.9878 32.4239 15.6156 32.1261C15.3426 31.9276 15.051 31.8221 14.7408 31.8097C14.4307 31.7973 13.6055 31.7167 13.2333 32.0889C13.01 32.3122 13.618 32.6348 13.6428 32.9822C13.6676 33.3296 13.8165 33.615 14.0895 33.8383C15.4295 34.955 16.9183 35.8111 18.5561 36.4067C20.1939 37.0022 21.8937 37.3 23.6556 37.3C25.4422 37.3 27.1607 36.9836 28.8108 36.3508C30.461 35.7181 31.9561 34.8309 33.2961 33.6894C33.5443 33.4909 33.6746 33.2304 33.687 32.9078C33.6994 32.5852 33.5939 32.3122 33.3706 32.0889C33.1472 31.8656 32.5889 31.7167 31.8444 31.7167C31.5342 31.7167 31.2551 31.8159 31.0069 32.0144C30.6347 32.337 30.9635 32.672 30.5417 32.945C30.1198 33.218 29.6856 33.4661 29.2389 33.6894V28.3667H27.0056V34.5828C26.4596 34.7565 25.9075 34.8806 25.3492 34.955C24.7908 35.0295 24.2263 35.0667 23.6556 35.0667C23.0848 35.0667 22.5203 35.0295 21.962 34.955C21.4036 34.8806 20.8515 34.7565 20.3056 34.5828V28.3667H18.0722Z" fill="#DFB112"/>
|
||||||
|
<path d="M17.3278 28.3667V33.6894C16.906 33.4661 16.4841 33.2242 16.0623 32.9636C15.6404 32.7031 15.2434 32.4239 14.8712 32.1261C14.5982 31.9276 14.3066 31.8221 13.9964 31.8097C13.6862 31.7973 13.4195 31.9028 13.1962 32.1261C12.9728 32.3494 12.8736 32.6348 12.8984 32.9822C12.9232 33.3296 13.0721 33.615 13.345 33.8383C14.685 34.955 16.1739 35.8111 17.8117 36.4067C19.4495 37.0022 21.1493 37.3 22.9112 37.3C24.6978 37.3 26.4162 36.9836 28.0664 36.3508C29.7166 35.7181 31.2117 34.8309 32.5517 33.6894C32.7999 33.4909 32.9301 33.2304 32.9425 32.9078C32.955 32.5852 32.8495 32.3122 32.6262 32.0889C32.4028 31.8656 32.1361 31.7539 31.8259 31.7539C31.5157 31.7539 31.2365 31.8532 30.9884 32.0517C30.6162 32.3743 30.2191 32.672 29.7973 32.945C29.3754 33.218 28.9412 33.4661 28.4945 33.6894V28.3667H26.2612V34.5828C25.7152 34.7565 25.1631 34.8806 24.6048 34.955C24.0464 35.0295 23.4819 35.0667 22.9112 35.0667C22.3404 35.0667 21.7759 35.0295 21.2175 34.955C20.6592 34.8806 20.1071 34.7565 19.5612 34.5828V28.3667H17.3278Z" fill="#FCD859"/>
|
||||||
|
<path d="M34.8223 20.1778C34.8223 19.5822 34.599 19.0611 34.1523 18.6144C33.7057 18.1678 33.1846 17.9444 32.589 17.9444H25.1446C23.9111 17.9444 22.9112 16.9446 22.9112 15.7111V11.6167C22.9112 11.2941 22.8058 11.0273 22.5948 10.8164C22.3839 10.6055 22.1172 10.5 21.7946 10.5C14.0762 10.5 17.7 20.1778 17.7 20.1778C23.6556 20.1778 28.1222 20.1778 34.8223 20.1778Z" fill="#96D9FF"/>
|
||||||
|
<path d="M23.6556 17.3757C23.1987 16.9667 22.9112 16.3725 22.9112 15.7111V11.6167C22.9112 11.2941 22.8058 11.0273 22.5948 10.8164C22.3839 10.6055 22.1172 10.5 21.7946 10.5C14.0762 10.5 17.7 20.1778 17.7 20.1778C20.4356 19.0054 22.1667 20.1778 23.6556 17.3757Z" fill="#5EC5FF"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.7 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18.582 1.25C18.1253 1.25 17.7623 1.44409 17.4564 1.6775C17.4426 1.68802 17.4288 1.69876 17.4149 1.70972C17.1988 1.87986 17.0908 1.96493 17.0829 2.09948C17.0749 2.23403 17.1799 2.33908 17.39 2.54917L21.4509 6.61006C21.661 6.82016 21.7661 6.92521 21.9006 6.91724C22.0352 6.90928 22.1202 6.80127 22.2904 6.58526C22.3013 6.57135 22.3121 6.5575 22.3226 6.54371C22.556 6.23778 22.7501 5.87482 22.7501 5.41811C22.7501 4.96139 22.556 4.59843 22.3226 4.2925C22.1683 4.0902 21.9664 3.87507 21.7389 3.64395L22.4645 2.91831C22.8461 2.53666 22.8461 1.91789 22.4645 1.53624C22.0828 1.15459 21.4641 1.15459 21.0824 1.53624L20.3568 2.26187C20.1254 2.03412 19.9101 1.83199 19.7076 1.6775C19.4017 1.44409 19.0387 1.25 18.582 1.25Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M15.8025 2.55451C15.4544 2.41032 15.0732 2.37717 14.7099 2.45499C14.3791 2.52586 14.1459 2.7182 14.0063 2.85774L12.9207 3.94343C12.7811 4.08298 12.5888 4.31616 12.5179 4.64697C12.4401 5.01026 12.4732 5.39146 12.6174 5.73957C12.7033 5.94681 12.8276 6.11274 12.9534 6.25694L14.8296 8.13314C14.6603 8.37678 14.4295 8.56478 14.1399 8.69315C11.6325 9.80468 9.80541 11.6318 8.69388 14.1392C8.56556 14.4286 8.37765 14.6594 8.13414 14.8286L6.2565 12.951C6.2565 12.951 5.94637 12.7009 5.73913 12.6151C5.39102 12.4709 5.00982 12.4377 4.64653 12.5155C4.31572 12.5864 4.08254 12.7787 3.94299 12.9183L2.8573 14.004C2.71776 14.1435 2.52542 14.3767 2.45455 14.7075C2.37673 15.0708 2.40988 15.452 2.55407 15.8001C2.63991 16.0074 2.76424 16.1733 2.89002 16.3175L7.68129 21.1088C7.82549 21.2345 7.99142 21.3589 8.19866 21.4447C8.54677 21.5889 8.92797 21.6221 9.29126 21.5442C9.62207 21.4734 9.85525 21.281 9.9948 21.1415L11.0805 20.0558C11.22 19.9162 11.4124 19.6831 11.4832 19.3522C11.5611 18.989 11.5279 18.6078 11.3837 18.2597C11.2979 18.0524 11.1736 17.8865 11.0478 17.7423L9.55828 16.2528C9.96485 15.9054 10.2931 15.4666 10.5223 14.9497C11.4326 12.8962 12.8969 11.4319 14.9504 10.5215C15.4675 10.2923 15.9063 9.96398 16.2537 9.5573L17.7446 11.0482C17.7446 11.0482 18.0548 11.2983 18.262 11.3842C18.6101 11.5284 18.9913 11.5615 19.3546 11.4837C19.6854 11.4128 19.9186 11.2205 20.0582 11.0809L21.1438 9.99524C21.2834 9.85569 21.4757 9.62251 21.5466 9.2917C21.6244 8.92841 21.5913 8.54721 21.4471 8.1991C21.3612 7.99186 21.2369 7.82593 21.1111 7.68173L16.3199 2.89046C16.1757 2.76468 16.0097 2.64035 15.8025 2.55451Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M5.41914 22.7492C5.87586 22.7492 6.23882 22.5551 6.54475 22.3217C6.55854 22.3112 6.57238 22.3005 6.58629 22.2895C6.80231 22.1194 6.91032 22.0343 6.91828 21.8997C6.92624 21.7652 6.8212 21.6601 6.6111 21.45L2.55022 17.3892C2.34012 17.1791 2.23508 17.074 2.10053 17.082C1.96598 17.0899 1.8809 17.1979 1.71076 17.414C1.69981 17.4279 1.68906 17.4417 1.67854 17.4555C1.44513 17.7614 1.25104 18.1244 1.25104 18.5811C1.25104 19.0378 1.44513 19.4008 1.67854 19.7067C1.83274 19.9088 2.03441 20.1237 2.26163 20.3546L1.53697 21.0793C1.15532 21.4609 1.15532 22.0797 1.53697 22.4613C1.91862 22.843 2.53739 22.843 2.91904 22.4613L3.64369 21.7367C3.8753 21.9647 4.09087 22.1671 4.29354 22.3217C4.59947 22.5551 4.96243 22.7492 5.41914 22.7492Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="1" y="1.5" width="45" height="45" rx="22.5" fill="white" stroke="#82D2FF" stroke-width="2"/>
|
||||||
|
<path d="M31.4113 21.0252C31.4113 23.7037 30.147 26.652 28.1676 28.9376C26.1857 31.2259 23.5735 32.7541 20.9537 32.7541C15.6322 32.7541 11.2226 27.7262 11.2226 22.2965C11.2226 16.9221 15.5793 12.5653 20.9537 12.5653C23.6984 12.5653 26.331 13.374 28.2622 14.8359C30.181 16.2884 31.4113 18.3836 31.4113 21.0252Z" fill="#E6F6FF" stroke="#38ACEE" stroke-width="1.24201"/>
|
||||||
|
<path d="M39.0486 21.5713C39.0486 29.8712 31.2656 39.4998 22.9657 39.4998C14.6659 39.4998 7.9375 31.7168 7.9375 23.4169C7.9375 15.117 14.6659 8.38867 22.9657 8.38867C31.2656 8.38867 39.0486 13.2715 39.0486 21.5713Z" fill="#1E8AC7"/>
|
||||||
|
<path d="M38.158 20.6827C38.158 28.9825 30.375 38.6111 22.0751 38.6111C13.7753 38.6111 7.04688 30.8281 7.04688 22.5282C7.04688 14.2284 13.7753 7.5 22.0751 7.5C30.375 7.5 38.158 12.3828 38.158 20.6827Z" fill="#4DBFFF"/>
|
||||||
|
<path d="M36.3819 20.4414C36.3819 28.0299 29.2661 36.8331 21.6776 36.8331C14.0892 36.8331 7.9375 29.7172 7.9375 22.1288C7.9375 14.5403 14.0892 8.38867 21.6776 8.38867C29.2661 8.38867 36.3819 12.8529 36.3819 20.4414Z" fill="#82D2FF"/>
|
||||||
|
<path d="M32.9301 17.8529C37.4558 23.2011 31.5184 31.9706 25.9009 34.0189C20.7195 36.4248 14.2263 33.4375 11.7813 28.1719C9.33622 22.9062 10.5432 14.4223 18.7706 12.7767C21.2392 12.7767 17.7851 20.0293 23.7781 21.7649C29.7711 23.5005 31.2844 16.2068 32.9301 17.8529Z" fill="#E6F6FF"/>
|
||||||
|
<circle cx="26.0304" cy="15.6046" r="4.44444" fill="#D4B135"/>
|
||||||
|
<circle cx="25.6085" cy="15.2384" r="4.44444" fill="#FCD859"/>
|
||||||
|
<circle cx="25.6059" cy="15.2377" r="2.77778" fill="#F88484" stroke="#FEF3CD" stroke-width="2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
||||||
|
After Width: | Height: | Size: 391 B |
@ -0,0 +1,14 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="30.776" height="24.337" viewBox="0 0 30.776 24.337">
|
||||||
|
<g id="folder" transform="translate(0 -42.679)">
|
||||||
|
<g id="Group_8637" data-name="Group 8637" transform="translate(0 45.895)">
|
||||||
|
<g id="Group_8636" data-name="Group 8636" transform="translate(0 0)">
|
||||||
|
<path id="Path_5021" data-name="Path 5021" d="M25.043,88.08H13.94l-2.209-2.625a.377.377,0,0,0-.3-.136H2.471A2.489,2.489,0,0,0,0,87.808v16.145a2.489,2.489,0,0,0,2.486,2.486H25.043a2.489,2.489,0,0,0,2.486-2.486V90.566A2.489,2.489,0,0,0,25.043,88.08Z" transform="translate(0 -85.319)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Group_8639" data-name="Group 8639" transform="translate(3.274 42.679)">
|
||||||
|
<g id="Group_8638" data-name="Group 8638" transform="translate(0 0)">
|
||||||
|
<path id="Path_5022" data-name="Path 5022" d="M68.431,45.44H57.324l-2.209-2.625a.377.377,0,0,0-.3-.136H45.859A2.486,2.486,0,0,0,43.4,44.827h8.168a1.445,1.445,0,0,1,1.11.516l1.886,2.242H65.169a3.56,3.56,0,0,1,3.554,3.554V63.775A2.486,2.486,0,0,0,70.9,61.31V47.923A2.489,2.489,0,0,0,68.431,45.44Z" transform="translate(-43.4 -42.679)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,11 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="30.996" height="28.414" viewBox="0 0 30.996 28.414">
|
||||||
|
<g id="image-gallery" transform="translate(-0.001 -2)">
|
||||||
|
<g id="Group_8635" data-name="Group 8635" transform="translate(0.001 5.875)">
|
||||||
|
<g id="Group_8634" data-name="Group 8634" transform="translate(0 5.078)">
|
||||||
|
<path id="Path_5018" data-name="Path 5018" d="M8.072,22.581A4.836,4.836,0,0,1,3.5,19.286l-.045-.149a4.711,4.711,0,0,1-.223-1.4V8.932L.1,19.391a2.933,2.933,0,0,0,2.056,3.558L22.123,28.3a2.962,2.962,0,0,0,.744.1,2.88,2.88,0,0,0,2.791-2.112l1.164-3.7Z" transform="translate(-0.001 -8.932)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
<path id="Path_5019" data-name="Path 5019" d="M9.583,10.166A2.583,2.583,0,1,0,7,7.583,2.586,2.586,0,0,0,9.583,10.166Z" transform="translate(2.04 -5)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
<path id="Path_5020" data-name="Path 5020" d="M26.6,2H7.229A3.233,3.233,0,0,0,4,5.229V19.436a3.233,3.233,0,0,0,3.229,3.229H26.6a3.233,3.233,0,0,0,3.229-3.229V5.229A3.233,3.233,0,0,0,26.6,2ZM7.229,4.583H26.6a.646.646,0,0,1,.646.646V14.4l-4.08-4.761a2.313,2.313,0,0,0-1.732-.794,2.258,2.258,0,0,0-1.726.815l-4.8,5.758-1.563-1.559a2.267,2.267,0,0,0-3.2,0L6.583,17.42V5.229a.646.646,0,0,1,.646-.646Z" transform="translate(1.166)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.9999 9.25C17.9288 9.25 16.2499 10.9289 16.2499 13C16.2499 14.0736 16.805 15.1188 17.4741 15.8701C17.8161 16.2541 18.2118 16.5896 18.6284 16.8334C19.038 17.0732 19.5126 17.25 19.9999 17.25C20.4872 17.25 20.9617 17.0732 21.3714 16.8334C21.7879 16.5896 22.1837 16.2541 22.5257 15.8701C23.1947 15.1188 23.7499 14.0736 23.7499 13C23.7499 10.9289 22.0709 9.25 19.9999 9.25ZM17.7499 13C17.7499 11.7574 18.7572 10.75 19.9999 10.75C21.2425 10.75 22.2499 11.7574 22.2499 13C22.2499 13.5832 21.9259 14.2881 21.4054 14.8725C21.1526 15.1564 20.876 15.3853 20.6137 15.5388C20.3444 15.6964 20.1334 15.75 19.9999 15.75C19.8663 15.75 19.6554 15.6964 19.3861 15.5388C19.1238 15.3853 18.8471 15.1564 18.5943 14.8725C18.0738 14.2881 17.7499 13.5832 17.7499 13Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M24.536 16.4361C24.2245 16.163 23.7507 16.1941 23.4776 16.5056C23.2045 16.817 23.2356 17.2909 23.5471 17.5639C24.916 18.7642 25.6946 20.6997 24.9738 22.4145C24.8973 22.5965 24.7277 22.7039 24.5514 22.7039C24.4876 22.7039 24.4316 22.7013 24.3593 22.6978C24.3058 22.6953 24.2432 22.6923 24.1618 22.6897C24.0028 22.6845 23.7976 22.6828 23.5892 22.7127C23.3824 22.7424 23.1208 22.8099 22.8813 22.9807C22.6237 23.1644 22.4437 23.4309 22.3633 23.7588L21.266 28.2337C21.1173 28.8402 20.5889 29.25 20.0001 29.25C19.4112 29.25 18.8828 28.8402 18.7341 28.2337L17.6368 23.7588C17.5564 23.4309 17.3764 23.1644 17.1188 22.9807C16.8793 22.8099 16.6177 22.7424 16.4109 22.7127C16.2025 22.6828 15.9973 22.6845 15.8383 22.6897C15.7569 22.6923 15.6944 22.6953 15.6408 22.6978C15.5685 22.7013 15.5125 22.7039 15.4487 22.7039C15.2724 22.7039 15.1028 22.5965 15.0263 22.4145C14.3055 20.6997 15.0841 18.7642 16.4531 17.5639C16.7645 17.2909 16.7956 16.817 16.5226 16.5056C16.2495 16.1941 15.7756 16.163 15.4642 16.4361C13.7871 17.9065 12.5919 20.4941 13.6435 22.9958C13.9489 23.7223 14.6555 24.2039 15.4487 24.2039C15.5413 24.2039 15.6638 24.1985 15.7652 24.1939C15.8118 24.1918 15.8541 24.1899 15.8869 24.1889C16.0232 24.1845 16.1226 24.1867 16.1979 24.1975L16.2 24.1978L17.2772 28.591C17.5861 29.8506 18.7022 30.75 20.0001 30.75C21.2979 30.75 22.414 29.8506 22.7229 28.591L23.8001 24.1978L23.8022 24.1975C23.8775 24.1867 23.9769 24.1845 24.1132 24.1889C24.146 24.1899 24.1881 24.1918 24.2346 24.1939C24.336 24.1984 24.4588 24.2039 24.5514 24.2039C25.3446 24.2039 26.0512 23.7223 26.3566 22.9958C27.4082 20.4941 26.213 17.9065 24.536 16.4361Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 9.25C14.0629 9.25 9.25 14.0629 9.25 20C9.25 25.9371 14.0629 30.75 20 30.75C25.9371 30.75 30.75 25.9371 30.75 20C30.75 14.0629 25.9371 9.25 20 9.25ZM19.9916 14.25C18.1958 14.25 16.7381 15.7041 16.7381 17.5C16.7381 19.2959 18.1958 20.75 19.9916 20.75C21.7875 20.75 23.2452 19.2959 23.2452 17.5C23.2452 15.7041 21.7875 14.25 19.9916 14.25ZM25.0409 24.4802C22.3735 21.6002 17.5747 21.7487 14.9638 24.4756L14.7763 24.6631C14.631 24.8084 14.5517 25.0069 14.5569 25.2123C14.562 25.4177 14.6512 25.612 14.8036 25.7498C16.1777 26.9923 18.0013 27.75 20.0001 27.75C21.9989 27.75 23.8225 26.9923 25.1966 25.7498C25.349 25.612 25.4382 25.4177 25.4433 25.2123C25.4485 25.0069 25.3692 24.8084 25.2239 24.6631L25.0409 24.4802Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 939 B |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#18C273"/>
|
||||||
|
<path d="M20.6464 12.8584C20.9445 12.4867 21.1271 12.0198 21.1271 11.5C21.1271 10.2029 20.0081 9.25 18.7543 9.25H13.2452C11.9914 9.25 10.8724 10.2029 10.8724 11.5C10.8724 12.0198 11.055 12.4867 11.3532 12.8584C11.5208 13.0674 11.6046 13.1719 11.6136 13.2601C11.6225 13.3484 11.5724 13.4461 11.4721 13.6417C10.1525 16.2149 9.24963 18.6245 9.24963 21.7771V26C9.24963 27.6296 9.41033 28.9586 10.3117 29.7918C10.764 30.2098 11.3378 30.4427 11.9913 30.5754C12.6394 30.707 13.4172 30.75 14.3271 30.75H17.6724C18.0971 30.75 18.536 30.7311 18.9492 30.6976C19.458 30.6563 19.7124 30.6356 19.7825 30.466C19.8525 30.2965 19.6681 30.0801 19.2993 29.6473C18.355 28.5392 17.7496 27.1021 17.7496 25.3845C17.7496 23.5039 18.3683 21.8652 19.2997 20.6615C19.9146 19.867 20.7887 19.1221 21.8271 18.7559C22.1207 18.6524 22.2674 18.6007 22.3223 18.4975C22.3772 18.3943 22.343 18.2627 22.2747 17.9996C21.8827 16.4907 21.2713 15.0921 20.5274 13.6416C20.4271 13.4461 20.377 13.3484 20.386 13.2601C20.3949 13.1719 20.4787 13.0674 20.6464 12.8584Z" fill="white"/>
|
||||||
|
<path d="M28.7264 18C28.7264 17.4477 28.2787 17 27.7264 17C26.4312 17 25.4699 17.6734 24.8679 18.5139C24.515 19.0066 24.2718 19.5713 24.1343 20.1362C23.845 20.0691 23.5182 20.0195 23.1816 20.0195C22.1838 20.0195 21.1925 20.667 20.4862 21.5798C19.7591 22.5195 19.2498 23.8349 19.2498 25.3848C19.2498 28.6682 22.1829 30.7503 24.9998 30.7503C27.8167 30.7503 30.7498 28.6682 30.7498 25.3848C30.7498 23.8349 30.2406 22.5195 29.5134 21.5798C28.8071 20.667 27.8158 20.0195 26.818 20.0196C26.6312 20.0195 26.4473 20.0348 26.2712 20.0599C26.3347 19.9256 26.409 19.7969 26.4939 19.6785C26.801 19.2497 27.2033 19 27.7264 19C28.2787 19 28.7264 18.5523 28.7264 18Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="18" height="24" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M9.00124 0C11.3713 0 13.5174 0.164601 15.0979 0.443605C15.8881 0.58307 16.5336 0.748865 17.0233 0.953187C17.2682 1.05523 17.4752 1.16174 17.6522 1.31444C17.795 1.43765 17.9265 1.61567 17.9745 1.83394C17.997 1.90181 18.0048 1.9739 17.9972 2.04501L17.0012 11.996L15.9975 22.043C15.9672 22.5395 15.5942 22.827 15.1929 23.0391C14.7917 23.2511 14.276 23.417 13.658 23.5565C12.4221 23.8362 10.7723 24.0027 8.95569 23.9999C7.13906 23.9971 5.49826 23.8251 4.27681 23.5411C3.6661 23.3993 3.16459 23.2334 2.77121 23.0177C2.57471 22.9099 2.40312 22.7875 2.26148 22.6271C2.11978 22.4665 2.00417 22.247 2.0038 21.998V22.0511L0.00409739 2.04501C-0.00616554 1.96529 0.00292169 1.88427 0.030564 1.80879C0.0830907 1.60168 0.215339 1.43369 0.352891 1.3149C0.529744 1.16221 0.734914 1.05546 0.979786 0.953417C1.46953 0.748945 2.11501 0.58315 2.90522 0.443836C4.48567 0.164907 6.63123 0 9.00124 0ZM9.00124 0.99817C6.67896 0.99817 4.57689 1.17015 3.08229 1.4337C2.33498 1.56561 1.73987 1.72046 1.36969 1.875C1.25708 1.92187 1.21402 1.95496 1.14902 1.99426C1.21402 2.03395 1.25557 2.07167 1.36969 2.11929C1.73965 2.27312 2.33498 2.4308 3.08229 2.56267C4.57689 2.82648 6.67896 2.9982 9.00124 2.9982C11.3236 2.9982 13.4256 2.82629 14.9202 2.56267C15.6675 2.43076 16.2705 2.27346 16.6406 2.11929C16.7547 2.07167 16.7959 2.03395 16.8613 1.99426C16.7963 1.95458 16.7532 1.92187 16.6406 1.875C16.2706 1.72042 15.6675 1.56557 14.9202 1.4337C13.4256 1.16989 11.3236 0.99817 9.00124 0.99817ZM16.8886 3.08794C16.4149 3.27049 15.8253 3.42253 15.0979 3.55092C13.5174 3.82985 11.3713 3.99429 9.00124 3.99429C6.63123 3.99429 4.48503 3.82992 2.90458 3.55092C2.17718 3.42242 1.58755 3.27037 1.11391 3.08794L1.90087 10.9552C2.34156 10.75 2.91315 10.5837 3.60563 10.4454C5.01028 10.1646 6.90406 9.99623 9.00124 9.99623C11.0985 9.99623 13 10.1644 14.4046 10.4454C15.0971 10.5841 15.6612 10.75 16.1017 10.9552L16.8886 3.08794ZM9.00124 11.0002C6.95818 11.0002 5.10756 11.1661 3.79897 11.4279C3.14469 11.5586 2.62265 11.7139 2.30704 11.8634C2.19594 11.9159 2.14793 11.9563 2.09427 11.996C2.14793 12.0357 2.19518 12.0754 2.30704 12.1287C2.62258 12.278 3.14469 12.4332 3.79897 12.5642C5.10756 12.8258 6.95818 12.994 9.00124 12.994C11.0443 12.994 12.8969 12.8261 14.2055 12.5642C14.8597 12.4334 15.3798 12.2778 15.6954 12.1287C15.8077 12.0758 15.8565 12.0361 15.9101 11.996C15.8561 11.9563 15.8062 11.9155 15.6954 11.8634C15.3799 11.7141 14.8597 11.5588 14.2055 11.4279C12.8969 11.1663 11.0443 11.0002 9.00124 11.0002ZM13.9145 18.4944C13.7965 18.493 13.6817 18.5333 13.5906 18.6084C13.4994 18.6834 13.4378 18.7882 13.4165 18.9043L12.9811 21.0901L11.2997 21.5099C11.2352 21.525 11.1744 21.5526 11.1206 21.5913C11.0669 21.63 11.0214 21.6789 10.9867 21.7353C10.952 21.7917 10.9288 21.8544 10.9184 21.9198C10.9081 21.9852 10.9108 22.052 10.9264 22.1164C10.942 22.1807 10.9702 22.2413 11.0093 22.2947C11.0484 22.3481 11.0978 22.3931 11.1544 22.4273C11.2111 22.4616 11.2739 22.4842 11.3394 22.494C11.4049 22.5038 11.4717 22.5007 11.5359 22.4845L13.5277 21.9826C13.6193 21.9598 13.7025 21.9116 13.7679 21.8435C13.8332 21.7754 13.8779 21.6902 13.8969 21.5978L14.3988 19.1036C14.414 19.0349 14.4145 18.9636 14.4004 18.8946C14.3862 18.8257 14.3576 18.7606 14.3165 18.7034C14.2754 18.6463 14.2227 18.5985 14.1618 18.5631C14.101 18.5278 14.0333 18.5055 13.9633 18.4981C13.9471 18.496 13.9308 18.4949 13.9145 18.4944Z" fill="#4EB5FF"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 2C3.55229 2 4 2.44772 4 3L4 14C4 15.6782 4.00213 16.8362 4.11923 17.7072C4.17092 18.0917 4.23383 18.5232 4.45131 18.8563C4.60954 18.5142 4.76255 18.1696 4.91553 17.8252C5.29664 16.967 5.67762 16.1092 6.13888 15.2891C6.58328 14.499 7.11953 13.7058 7.77477 13.1011C8.43871 12.4882 9.28219 12.0189 10.3058 12.0189C11.6975 12.0189 12.5705 12.9129 13.1308 13.4867L13.1883 13.5455C13.8415 14.2124 14.1538 14.4717 14.6132 14.4717C15.0859 14.4717 15.4115 14.2943 15.733 13.9424C16.1205 13.5181 16.396 12.9986 16.6658 12.49C16.7134 12.4003 16.7608 12.3109 16.8086 12.2224C17.5056 10.9328 18.5501 9 20.9995 9C21.5518 9 21.9995 9.44772 21.9995 10C21.9995 10.5523 21.5518 11 20.9995 11C19.8601 11 19.3296 11.7648 18.5475 13.2114L18.4738 13.348C18.1403 13.9674 17.7401 14.7105 17.2097 15.2911C16.5941 15.9651 15.7622 16.4717 14.6132 16.4717C13.2476 16.4717 12.3831 15.5847 11.8309 15.0182C11.7865 14.9725 11.7412 14.925 11.6952 14.8766C11.3159 14.4783 10.8784 14.0189 10.3058 14.0189C9.93769 14.0189 9.55589 14.1788 9.13128 14.5707C8.69797 14.9707 8.28242 15.5577 7.88206 16.2696C7.45308 17.0322 7.09983 17.8308 6.7465 18.6295C6.56362 19.043 6.38072 19.4565 6.18729 19.865C6.22215 19.8708 6.25731 19.876 6.2928 19.8808C7.16378 19.9979 8.32182 20 10 20H21C21.5523 20 22 20.4477 22 21C22 21.5523 21.5523 22 21 22H9.928C8.33933 22 7.04616 22.0001 6.0263 21.8629C4.96232 21.7199 4.04736 21.4113 3.31802 20.682C2.58869 19.9526 2.28011 19.0377 2.13706 17.9737C1.99995 16.9539 1.99997 15.6607 2 14.0721L2 3C2 2.44772 2.44772 2 3 2Z" fill="#2E3039"/>
|
||||||
|
<path d="M8 4C8.55229 4 9 3.55228 9 3C9 2.44772 8.55229 2 8 2L7 2C6.44772 2 6 2.44772 6 3C6 3.55228 6.44772 4 7 4L8 4Z" fill="#2E3039"/>
|
||||||
|
<path d="M11 8C11.5523 8 12 7.55228 12 7C12 6.44772 11.5523 6 11 6H7C6.44772 6 6 6.44772 6 7C6 7.55228 6.44772 8 7 8L11 8Z" fill="#2E3039"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 8.0625C0 12.5153 3.60975 16.125 8.0625 16.125C12.5153 16.125 16.125 12.5153 16.125 8.0625C16.125 3.60975 12.5153 0 8.0625 0C3.60975 0 0 3.60975 0 8.0625ZM11.5695 5.25974C11.8748 5.53949 11.895 6.01423 11.6153 6.31948L7.49026 10.8195C7.35226 10.9702 7.158 11.058 6.954 11.0625C6.74925 11.067 6.552 10.9875 6.40725 10.8428L4.53225 8.96777C4.239 8.67527 4.239 8.19973 4.53225 7.90723C4.82475 7.61398 5.30026 7.61398 5.59276 7.90723L6.91425 9.228L10.5097 5.30552C10.7895 5.00027 11.2643 4.97999 11.5695 5.25974Z" fill="#18C273"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 681 B |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.052 1.75H11.948C9.75288 1.74999 8.03639 1.74998 6.69787 1.91195C5.33462 2.0769 4.24953 2.42064 3.38952 3.19465C2.5182 3.97883 2.12077 4.98563 1.93214 6.24835C1.74997 7.46783 1.74998 9.02533 1.75 10.9878L1.75 13.0122C1.74998 14.9746 1.74997 16.5322 1.93214 17.7516C2.12077 19.0144 2.5182 20.0212 3.38952 20.8054C4.24953 21.5794 5.33462 21.9231 6.69787 22.0881C8.03639 22.25 9.75287 22.25 11.948 22.25H12.052C14.2471 22.25 15.9636 22.25 17.3021 22.0881C18.6654 21.9231 19.7505 21.5794 20.6105 20.8054C21.4818 20.0212 21.8792 19.0144 22.0679 17.7516C22.25 16.5322 22.25 14.9747 22.25 13.0123V10.9877C22.25 9.02532 22.25 7.46783 22.0679 6.24835C21.8792 4.98563 21.4818 3.97883 20.6105 3.19465C19.7505 2.42064 18.6654 2.0769 17.3021 1.91195C15.9636 1.74998 14.2471 1.74999 12.052 1.75ZM16.75 6C16.75 5.58579 16.4142 5.25 16 5.25C15.5858 5.25 15.25 5.58579 15.25 6V7.25L14 7.25C13.5858 7.25 13.25 7.58579 13.25 8C13.25 8.41421 13.5858 8.75 14 8.75H15.25V10C15.25 10.4142 15.5858 10.75 16 10.75C16.4142 10.75 16.75 10.4142 16.75 10V8.75H18C18.4142 8.75 18.75 8.41421 18.75 8C18.75 7.58579 18.4142 7.25 18 7.25H16.75V6ZM13.25 17.5C13.25 17.0858 13.5858 16.75 14 16.75H18C18.4142 16.75 18.75 17.0858 18.75 17.5C18.75 17.9142 18.4142 18.25 18 18.25H14C13.5858 18.25 13.25 17.9142 13.25 17.5ZM14 13.75C13.5858 13.75 13.25 14.0858 13.25 14.5C13.25 14.9142 13.5858 15.25 14 15.25H18C18.4142 15.25 18.75 14.9142 18.75 14.5C18.75 14.0858 18.4142 13.75 18 13.75H14ZM10.5303 13.4697C10.8232 13.7626 10.8232 14.2374 10.5303 14.5303L9.31066 15.75L10.5303 16.9697C10.8232 17.2626 10.8232 17.7374 10.5303 18.0303C10.2374 18.3232 9.76256 18.3232 9.46967 18.0303L8.25 16.8107L7.03033 18.0303C6.73744 18.3232 6.26256 18.3232 5.96967 18.0303C5.67678 17.7374 5.67678 17.2626 5.96967 16.9697L7.18934 15.75L5.96967 14.5303C5.67678 14.2374 5.67678 13.7626 5.96967 13.4697C6.26256 13.1768 6.73744 13.1768 7.03033 13.4697L8.25 14.6893L9.46967 13.4697C9.76256 13.1768 10.2374 13.1768 10.5303 13.4697ZM6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75L10 8.75C10.4142 8.75 10.75 8.41421 10.75 8C10.75 7.58579 10.4142 7.25 10 7.25L6 7.25Z" fill="#18C273"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M10.2215 4.19823C10.7926 4.06863 11.3878 4 12.0002 4C16.4185 4 20.0002 7.58172 20.0002 12C20.0002 14.0411 19.2363 15.904 17.9769 17.3181V16C17.9769 15.4477 17.5292 15 16.9769 15C16.4246 15 15.9769 15.4477 15.9769 16V19.5C15.9769 20.0523 16.4246 20.5 16.9769 20.5H20.5002C21.0525 20.5 21.5002 20.0523 21.5002 19.5C21.5002 18.9477 21.0525 18.5 20.5002 18.5H19.5996C21.0955 16.7526 22.0002 14.482 22.0002 12C22.0002 6.47715 17.5231 2 12.0002 2C11.2379 2 10.4943 2.08549 9.77893 2.24781C9.24034 2.37002 8.9028 2.90571 9.02501 3.4443C9.14722 3.9829 9.68291 4.32044 10.2215 4.19823Z" fill="#ED1C2B"/>
|
||||||
|
<path d="M3.5 3.51562C2.94772 3.51562 2.5 3.96334 2.5 4.51562C2.5 5.06791 2.94772 5.51562 3.5 5.51562H4.3873C2.89933 7.26098 2 9.5254 2 12.0001C2 17.5229 6.47715 22.0001 12 22.0001C12.7623 22.0001 13.5059 21.9146 14.2213 21.7523C14.7599 21.6301 15.0974 21.0944 14.9752 20.5558C14.853 20.0172 14.3173 19.6796 13.7787 19.8019C13.2076 19.9314 12.6124 20.0001 12 20.0001C7.58172 20.0001 4 16.4184 4 12.0001C4 9.97161 4.75451 8.11915 6 6.70824L6 8.00008C6 8.55236 6.44772 9.00008 7 9.00008C7.55228 9.00008 8 8.55236 8 8.00008L8 4.51562C8 3.96334 7.55228 3.51562 7 3.51562L3.5 3.51562Z" fill="#ED1C2B"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M19.8271 3.35515C16.8461 1.52662 14.1719 2.25537 12.5563 3.46861C12.4618 3.5396 12.3778 3.60261 12.3027 3.6585C12.1487 3.77312 12.0717 3.83043 11.9724 3.83043C11.873 3.83043 11.796 3.77312 11.642 3.6585C11.5669 3.60262 11.4829 3.5396 11.3884 3.46861C9.77284 2.25537 7.09861 1.52662 4.11763 3.35515C2.63347 4.26554 1.61665 5.88968 1.31555 7.86051C1.27161 8.14807 1.24965 8.29185 1.33944 8.39639C1.42923 8.50094 1.58234 8.50092 1.88856 8.50089L5.14448 8.50059C5.55656 8.49886 6.25061 8.49594 6.92509 8.74131C7.18957 8.83753 7.42861 8.9636 7.64109 9.10184C7.94838 9.30175 8.10203 9.40171 8.22623 9.37305C8.35044 9.34439 8.43459 9.20413 8.60289 8.92363L9.32823 7.71474C9.78963 6.94573 10.6276 6.48278 11.5242 6.50152C12.4208 6.52027 13.2387 7.01784 13.6676 7.80546L14.9648 10.1879C15.0479 10.3405 15.0895 10.4168 15.1603 10.4589C15.2311 10.501 15.318 10.501 15.4918 10.501H15.972C17.3527 10.501 18.472 11.6203 18.472 13.001C18.472 14.3817 17.3527 15.501 15.972 15.501L14.8556 15.5031C14.4407 15.5127 13.1951 15.5415 12.106 14.705C12.0741 14.6805 12.0429 14.6555 12.0124 14.6302C11.6751 14.3499 11.5064 14.2097 11.3704 14.2328C11.2345 14.2559 11.1366 14.419 10.9409 14.7453L10.6157 15.2872C10.1827 16.0089 9.41568 16.4642 8.5748 16.4989C7.73393 16.5335 6.93207 16.1427 6.44122 15.4591L5.21484 13.7511C5.12681 13.6285 5.0828 13.5672 5.01833 13.5341C4.95385 13.501 4.87839 13.501 4.72747 13.501L3.23319 13.501C2.80205 13.501 2.58648 13.501 2.49975 13.6503C2.41302 13.7997 2.51637 13.9808 2.72307 14.3432C3.7896 16.2127 5.46319 18.1083 7.86568 19.8865C9.31705 20.9614 10.3823 21.7503 11.9723 21.7503C13.5624 21.7503 14.6276 20.9614 16.079 19.8865C20.2586 16.7929 22.2322 13.3443 22.6412 10.2951C23.0481 7.2606 21.8883 4.61952 19.8271 3.35515Z" fill="#18C273"/>
|
||||||
|
<path d="M12.3509 8.5218C12.1794 8.20675 11.8522 8.00772 11.4936 8.00022C11.1349 7.99272 10.7997 8.1779 10.6152 8.48551L8.39777 12.1812L7.72833 11.2488C7.71432 11.2293 7.69962 11.2103 7.68425 11.1919C7.66865 11.1731 7.65154 11.1522 7.63294 11.1295C7.4192 10.8684 7.00838 10.3666 6.41298 10.15C5.9948 9.99782 5.53719 9.99883 5.08287 9.99984L4.97266 10L2.97266 10C2.42037 10 1.97266 10.4477 1.97266 11C1.97266 11.5523 2.42037 12 2.97266 12H4.97266C5.60991 12 5.68621 12.0141 5.72762 12.0289C5.73136 12.0307 5.76392 12.0476 5.83105 12.1122C5.91437 12.1924 5.9964 12.2905 6.12473 12.4445L7.66036 14.5832C7.8567 14.8567 8.17744 15.013 8.51379 14.9992C8.85014 14.9853 9.15695 14.8032 9.33015 14.5145L11.4306 11.0138L12.2854 12.5838C12.295 12.6013 12.305 12.6186 12.3156 12.6356L12.3573 12.7026C12.5191 12.9635 12.7156 13.2804 13.0204 13.5144C13.6863 14.0259 14.4768 14.0096 14.863 14.0016C14.9044 14.0008 14.9412 14 14.9727 14H15.9727C16.5249 14 16.9727 13.5523 16.9727 13C16.9727 12.4477 16.5249 12 15.9727 12H14.9727C14.9119 12 14.8581 12.0003 14.8096 12.0005C14.6334 12.0015 14.5272 12.002 14.416 11.9872C14.3192 11.9743 14.276 11.9545 14.248 11.9352C14.2434 11.9296 14.2355 11.9197 14.2239 11.9037C14.1807 11.8444 14.1277 11.7611 14.0275 11.601L12.3509 8.5218Z" fill="#18C273"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M23.5378 27.5227C23.7479 27.3066 23.8082 26.9857 23.6909 26.7081C23.5736 26.4304 23.3014 26.25 23 26.25H21L21 13.75L23 13.75C23.3014 13.75 23.5736 13.5696 23.6909 13.2919C23.8082 13.0143 23.7479 12.6934 23.5378 12.4773C23.4246 12.3607 23.2441 12.135 22.9904 11.812C22.7621 11.5211 22.4399 11.1107 22.1661 10.7876C21.8723 10.4408 21.5478 10.086 21.2266 9.81244C21.0657 9.67538 20.888 9.54343 20.6999 9.44275C20.5177 9.34525 20.2758 9.25 20 9.25C19.7242 9.25 19.4824 9.34525 19.3002 9.44275C19.112 9.54343 18.9344 9.67538 18.7734 9.81244C18.4522 10.086 18.1277 10.4408 17.8339 10.7876C17.5601 11.1107 17.238 11.5211 17.0096 11.812C16.7559 12.135 16.5755 12.3607 16.4622 12.4773C16.2521 12.6934 16.1918 13.0143 16.3092 13.2919C16.4265 13.5696 16.6986 13.75 17 13.75H19L19 26.25H17C16.6986 26.25 16.4265 26.4304 16.3092 26.7081C16.1918 26.9857 16.2521 27.3066 16.4622 27.5227C16.5755 27.6393 16.7559 27.865 17.0096 28.188C17.238 28.4789 17.5601 28.8893 17.8339 29.2124C18.1277 29.5592 18.4522 29.914 18.7734 30.1876C18.9344 30.3246 19.112 30.4566 19.3002 30.5573C19.4824 30.6547 19.7242 30.75 20 30.75C20.2758 30.75 20.5177 30.6547 20.6999 30.5572C20.888 30.4566 21.0657 30.3246 21.2266 30.1876C21.5478 29.914 21.8723 29.5592 22.1661 29.2124C22.4399 28.8893 22.7621 28.4789 22.9904 28.188C23.2441 27.865 23.4246 27.6393 23.5378 27.5227Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.083 8.3418C16.1804 8.26933 16.3034 8.26171 16.4092 8.32129C16.4449 8.34147 16.4818 8.37722 16.5537 8.44922C18.2206 9.92249 19.4021 12.5001 18.3545 14.9922C18.0491 15.7186 17.3429 16.2001 16.5498 16.2002L16.2725 16.1982C16.045 16.1964 15.9309 16.1958 15.8486 16.2598C15.7666 16.3238 15.7397 16.4344 15.6855 16.6553L14.7207 20.5879C14.4117 21.8473 13.2957 22.7461 11.998 22.7461C10.7005 22.746 9.5844 21.8473 9.27539 20.5879L8.31152 16.6553C8.25731 16.4342 8.2297 16.3238 8.14746 16.2598C8.06513 16.1957 7.95135 16.1964 7.72363 16.1982L7.44727 16.2002C6.6541 16.2002 5.94699 15.7187 5.6416 14.9922C4.59407 12.5 5.77638 9.92243 7.44336 8.44922C7.51481 8.37768 7.55044 8.34145 7.58594 8.32129C7.69173 8.26141 7.81555 8.26931 7.91309 8.3418C7.94584 8.36621 7.98081 8.41097 8.0498 8.5C8.14907 8.62808 8.25089 8.75011 8.35254 8.86426C8.78359 9.34823 9.29846 9.79001 9.86914 10.124C10.4188 10.4457 11.1568 10.7461 11.998 10.7461C12.8393 10.7461 13.5773 10.4457 14.127 10.124C14.6976 9.79001 15.2125 9.34823 15.6436 8.86426C15.7452 8.75013 15.847 8.62806 15.9463 8.5C16.0154 8.41081 16.0502 8.36627 16.083 8.3418ZM12 1.25C14.0711 1.25 15.75 2.92893 15.75 5C15.75 6.07361 15.1945 7.1188 14.5254 7.87012C14.1835 8.25405 13.7876 8.58923 13.3711 8.83301C12.9615 9.07273 12.4873 9.25 12 9.25C11.5127 9.25 11.0385 9.07273 10.6289 8.83301C10.2124 8.58923 9.81654 8.25405 9.47461 7.87012C8.80554 7.1188 8.25 6.07361 8.25 5C8.25 2.92893 9.92893 1.25 12 1.25Z" fill="#0B85F7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M15.5378 19.5227C15.7479 19.3066 15.8082 18.9857 15.6909 18.7081C15.5736 18.4304 15.3014 18.25 15 18.25H13L13 5.75L15 5.75C15.3014 5.75 15.5736 5.56957 15.6909 5.29193C15.8082 5.01429 15.7479 4.69339 15.5378 4.47726C15.4246 4.36071 15.2441 4.13501 14.9904 3.81197C14.7621 3.52108 14.4399 3.11067 14.1661 2.78758C13.8723 2.44084 13.5478 2.08603 13.2266 1.81244C13.0657 1.67538 12.888 1.54343 12.6999 1.44275C12.5177 1.34525 12.2758 1.25 12 1.25C11.7242 1.25 11.4824 1.34525 11.3002 1.44275C11.112 1.54343 10.9344 1.67538 10.7734 1.81244C10.4522 2.08603 10.1277 2.44084 9.8339 2.78758C9.56013 3.11067 9.23797 3.52107 9.00963 3.81197C8.7559 4.13501 8.57549 4.36071 8.46221 4.47726C8.25213 4.69339 8.19185 5.01429 8.30917 5.29193C8.42649 5.56957 8.69861 5.75 9.00002 5.75L11 5.75L11 18.25H9.00002C8.69861 18.25 8.42649 18.4304 8.30917 18.7081C8.19185 18.9857 8.25213 19.3066 8.46221 19.5227C8.57549 19.6393 8.7559 19.865 9.00963 20.188C9.23797 20.4789 9.56014 20.8893 9.8339 21.2124C10.1277 21.5592 10.4522 21.914 10.7734 22.1876C10.9344 22.3246 11.112 22.4566 11.3002 22.5573C11.4824 22.6547 11.7242 22.75 12 22.75C12.2758 22.75 12.5177 22.6547 12.6999 22.5572C12.888 22.4566 13.0657 22.3246 13.2266 22.1876C13.5478 21.914 13.8723 21.5592 14.1661 21.2124C14.4399 20.8893 14.7621 20.4789 14.9904 20.188C15.2441 19.865 15.4246 19.6393 15.5378 19.5227Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M14.0748 9.25021C13.2108 9.25016 12.4627 9.25011 11.8629 9.33132C11.2158 9.41894 10.5992 9.61694 10.103 10.1166C9.61189 10.6111 9.42205 11.2171 9.33738 11.8513C9.25772 12.448 9.25775 13.1949 9.25779 14.0698L9.25779 14.1308C9.2578 14.3712 9.25561 14.6022 9.25353 14.8221C9.24814 15.3915 9.24345 15.8867 9.27924 16.2795C9.33494 16.8907 9.4987 17.4598 9.99534 17.9599C10.3697 18.3368 10.9883 18.3482 11.3772 17.9854C11.766 17.6225 11.7778 17.0228 11.4035 16.6458C11.3281 16.5699 11.2597 16.48 11.2262 16.1128C11.1992 15.8167 11.2026 15.4635 11.2075 14.9542C11.2098 14.717 11.2124 14.4458 11.2124 14.1308C11.2124 13.1779 11.2143 12.5551 11.2758 12.0945C11.3341 11.6576 11.4303 11.5121 11.5111 11.4306C11.587 11.3542 11.7168 11.2642 12.1332 11.2078C12.5818 11.1471 13.1917 11.145 14.141 11.145L25.8588 11.145C26.8081 11.145 27.418 11.1471 27.8665 11.2078C28.283 11.2642 28.4128 11.3542 28.4886 11.4306C28.5695 11.5121 28.6657 11.6576 28.724 12.0945C28.7855 12.5551 28.7874 13.1779 28.7874 14.1308C28.7874 14.444 28.79 14.7139 28.7922 14.9501C28.797 15.4613 28.8004 15.8159 28.7732 16.1125C28.7397 16.4796 28.6712 16.5697 28.5957 16.6458C28.2213 17.0228 28.2331 17.6225 28.6219 17.9854C29.0108 18.3482 29.6295 18.3368 30.0038 17.9599C30.5002 17.4599 30.6643 16.8911 30.7202 16.2798C30.7562 15.8861 30.7515 15.3898 30.7462 14.8191C30.7441 14.6001 30.742 14.3702 30.742 14.1308L30.742 14.0698C30.742 13.1949 30.7421 12.448 30.6624 11.8513C30.5777 11.2171 30.3879 10.6111 29.8968 10.1166C29.4006 9.61695 28.784 9.41894 28.1369 9.33132C27.5371 9.25012 26.7889 9.25016 25.925 9.25021L14.0748 9.25021Z" fill="#8F9AA3"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9842 29.8165C15.9781 31.0614 17.9976 31.0614 18.9916 29.8165C19.2101 29.5428 19.6483 29.2974 19.9998 29.2974C20.3513 29.2974 20.7895 29.5428 21.0081 29.8165C22.002 31.0614 24.0216 31.0614 25.0155 29.8165L25.5666 29.1263C25.6362 29.0391 25.7678 28.9739 25.9356 28.9818C26.1037 28.9898 26.2183 29.0662 26.2708 29.1496C26.6929 29.8193 27.4137 30.0602 28.0404 30.0126C28.6496 29.9663 29.3157 29.6346 29.625 28.9757C29.8184 28.6746 29.7447 27.999 29.6837 27.6989L27.7527 18.5617C27.5201 17.4608 27.3313 16.5674 27.0921 15.8695C26.8427 15.1417 26.5126 14.5436 25.9474 14.0868C25.3827 13.6304 24.7284 13.4325 23.9638 13.3395C23.2296 13.2502 22.3137 13.2502 21.1836 13.2502L18.8161 13.2502C17.6859 13.2502 16.7701 13.2502 16.0358 13.3395C15.2712 13.4325 14.617 13.6304 14.0523 14.0868C13.4871 14.5436 13.157 15.1417 12.9076 15.8695C12.6683 16.5674 12.4796 17.4608 12.2469 18.5617L10.3159 27.6989C10.2549 27.999 10.1813 28.6746 10.3746 28.9757C10.6839 29.6346 11.3501 29.9663 11.9592 30.0126C12.586 30.0602 13.3067 29.8193 13.7289 29.1496C13.7814 29.0662 13.896 28.9898 14.064 28.9818C14.2318 28.9739 14.3634 29.0391 14.4331 29.1263L14.9842 29.8165ZM19.9998 17.2502C20.414 17.2502 20.7498 17.586 20.7498 18.0002C20.7498 18.4144 20.414 18.7502 19.9998 18.7502L16.9998 18.7502C16.5856 18.7502 16.2498 18.4144 16.2498 18.0002C16.2498 17.586 16.5856 17.2502 16.9998 17.2502L19.9998 17.2502ZM22.7498 22.0002C22.7498 21.586 22.414 21.2502 21.9998 21.2502L15.9998 21.2502C15.5856 21.2502 15.2498 21.586 15.2498 22.0002C15.2498 22.4144 15.5856 22.7502 15.9998 22.7502L21.9998 22.7502C22.414 22.7502 22.7498 22.4144 22.7498 22.0002Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.999 9.25C18.3178 9.25 16.9509 9.81794 15.7588 10.4355C15.3986 10.6222 15.0639 10.8068 14.7441 10.9832C13.9617 11.4148 13.2681 11.7974 12.5066 12.0404C12.0593 12.1831 11.6631 12.3095 11.3821 12.4196C11.1177 12.5232 10.8035 12.6652 10.5805 12.913C10.3802 13.1356 10.2773 13.3855 10.2091 13.6245C10.1472 13.8415 10.0943 14.1352 10.0435 14.417C8.80553 21.2827 11.5125 27.787 18.123 30.3179C18.7727 30.5667 19.2513 30.75 20.0023 30.75C20.7534 30.75 21.2319 30.5667 21.8816 30.3179C28.4919 27.7869 31.1962 21.2824 29.9579 14.417C29.9071 14.1352 29.8541 13.8413 29.7922 13.6243C29.7239 13.3853 29.621 13.1354 29.4207 12.9128C29.1977 12.665 28.8835 12.523 28.619 12.4195C28.3381 12.3094 27.9419 12.1831 27.4946 12.0404C26.7327 11.7974 26.0386 11.4148 25.2555 10.9831C24.9356 10.8067 24.6007 10.6221 24.2405 10.4355C23.0477 9.81795 21.6803 9.25 19.999 9.25ZM25.3338 17.9429C25.8544 17.7585 26.127 17.187 25.9426 16.6664C25.7582 16.1458 25.1868 15.8733 24.6662 16.0576C23.788 16.3686 22.9486 16.9618 22.212 17.6078C21.465 18.2629 20.7666 19.0235 20.1733 19.7347C19.734 20.2613 19.3456 20.7689 19.0304 21.1997C18.7416 20.8538 18.454 20.6011 18.1797 20.4182C17.9053 20.2353 17.5523 20.0003 17 20.0003C16.4477 20.0003 16 20.448 16 21.0003C16 21.521 16.398 21.9487 16.9064 21.9959C17.1104 22.0149 17.6649 22.5661 18.1056 23.4475C18.2668 23.7698 18.5889 23.9805 18.9489 23.999C19.3087 24.0174 19.6508 23.8406 19.8441 23.5365C19.8441 23.5365 20.1922 23.0141 20.3574 22.7801C20.6885 22.3111 21.1572 21.6774 21.7091 21.0159C22.2628 20.3521 22.888 19.6751 23.5307 19.1115C24.1837 18.5388 24.8002 18.1319 25.3338 17.9429Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,7 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M30.6452 16.7358C27.3379 13.9431 23.695 12.5 20 12.5C16.3051 12.5 12.6621 13.9432 9.35484 16.736C8.93288 17.0923 8.87967 17.7232 9.23599 18.1452C9.59231 18.5671 10.2232 18.6204 10.6452 18.264C13.6537 15.7235 16.8529 14.5 20 14.5C23.1472 14.5 26.3463 15.7234 29.3548 18.2639C29.7768 18.6202 30.4077 18.567 30.7641 18.1451C31.1204 17.7231 31.0672 17.0922 30.6452 16.7358Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M12.8598 19.7318C17.2191 16.099 23.0058 16.0734 27.1626 19.751C27.5763 20.117 27.6149 20.749 27.249 21.1626C26.883 21.5763 26.251 21.6149 25.8374 21.249C22.459 18.26 17.7809 18.2343 14.1402 21.2682C13.7159 21.6218 13.0854 21.5645 12.7318 21.1402C12.3782 20.7159 12.4356 20.0853 12.8598 19.7318Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M24.4571 22.7929C22.0666 20.4024 17.9334 20.4024 15.5429 22.7929C15.1524 23.1834 15.1524 23.8166 15.5429 24.2071C15.9334 24.5976 16.5666 24.5976 16.9571 24.2071C18.5666 22.5976 21.4334 22.5976 23.0429 24.2071C23.4334 24.5976 24.0666 24.5976 24.4571 24.2071C24.8476 23.8166 24.8476 23.1834 24.4571 22.7929Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M20 25C19.1716 25 18.5 25.6716 18.5 26.5C18.5 27.3284 19.1716 28 20 28H20.0118C20.8402 28 21.5118 27.3284 21.5118 26.5C21.5118 25.6716 20.8402 25 20.0118 25H20Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 30.75C17.7007 30.75 17.4476 30.6611 17.2239 30.5507C17.0235 30.4518 16.8014 30.3117 16.5667 30.1637L14.6291 28.9417C14.3742 28.7809 14.2283 28.6899 14.114 28.6327C14.0083 28.5747 13.9326 28.6033 13.9079 28.6249C13.7948 28.678 13.6438 28.7696 13.371 28.9417L12.8622 29.2911C12.6515 29.4359 12.3974 29.6033 12.1271 29.7447C11.655 29.9917 10.8144 30.3299 10.0558 29.8414C9.54247 29.5107 9.38152 28.9658 9.3149 28.487C9.24992 28.0198 9.24996 27.4095 9.25 26.7008L9.25 15.9998C9.24998 14.6191 9.24997 13.5075 9.36641 12.6336C9.48716 11.7274 9.74526 10.9648 10.346 10.3587C10.9476 9.75161 11.706 9.48992 12.6074 9.36764C13.4748 9.24997 14.5775 9.24998 15.9446 9.25L28.016 9.25C28.4911 9.25 28.8802 9.4793 29.1687 9.7609C29.4541 10.0395 29.6847 10.4083 29.8722 10.8101C30.2537 11.6272 30.5229 12.7386 30.6684 13.9644C30.7158 14.3637 30.7614 14.7478 30.7473 15.0722C30.7309 15.4502 30.6325 15.8306 30.3326 16.1652C30.0239 16.5095 29.6366 16.6432 29.2576 16.6998C28.921 16.7501 28.5084 16.7501 28.0646 16.75L26.75 16.75L26.75 26.7008C26.75 27.4095 26.7501 28.0198 26.6851 28.487C26.6185 28.9658 26.4575 29.5107 25.9441 29.8414C25.1856 30.3299 24.345 29.9917 23.8729 29.7447C23.6025 29.6033 23.3485 29.4359 23.1377 29.2911L22.629 28.9417C22.3562 28.7696 22.2052 28.678 22.0921 28.6249C22.0674 28.6033 21.9917 28.5747 21.8859 28.6327C21.7717 28.6899 21.6258 28.7809 21.3709 28.9417L19.4333 30.1636C19.1987 30.3116 18.9765 30.4518 18.7761 30.5507C18.5524 30.6611 18.2993 30.75 18 30.75ZM28.121 10.8343C28.0611 10.7759 27.9721 10.7748 27.9121 10.8329C27.8853 10.8591 27.854 10.8934 27.8186 10.938C27.652 11.1477 27.469 11.4974 27.3014 11.9962C27.0311 12.8006 26.836 13.8859 26.7724 15.1219C26.7702 15.1644 26.7682 15.2071 26.7663 15.25H28.016C28.5254 15.25 28.8236 15.248 29.0358 15.2163C29.2003 15.1917 29.2417 15.1699 29.2487 15.0072C29.2569 14.8192 29.2283 14.5588 29.173 14.0921C29.0404 12.9728 28.7989 12.0569 28.513 11.4445C28.3694 11.1368 28.2313 10.942 28.121 10.8343ZM18.75 15C18.75 14.5858 18.4142 14.25 18 14.25C17.5858 14.25 17.25 14.5858 17.25 15V15.3336C16.8358 15.4281 16.4543 15.6005 16.1358 15.8393C15.6318 16.2173 15.25 16.7968 15.25 17.5C15.25 18.2032 15.6318 18.7827 16.1358 19.1607C16.6396 19.5385 17.3011 19.75 18 19.75C18.4057 19.75 18.7441 19.8743 18.9642 20.0393C19.1841 20.2042 19.25 20.3748 19.25 20.5C19.25 20.6252 19.1841 20.7958 18.9642 20.9607C18.7441 21.1257 18.4057 21.25 18 21.25C17.3316 21.25 16.9095 20.929 16.7922 20.6803C16.6157 20.3056 16.1688 20.145 15.7941 20.3216C15.4194 20.4981 15.2588 20.945 15.4354 21.3197C15.7653 22.0197 16.4613 22.4848 17.25 22.6655V23C17.25 23.4142 17.5858 23.75 18 23.75C18.4142 23.75 18.75 23.4142 18.75 23V22.6664C19.1642 22.5719 19.5457 22.3995 19.8642 22.1607C20.3682 21.7827 20.75 21.2032 20.75 20.5C20.75 19.7968 20.3682 19.2173 19.8642 18.8393C19.3604 18.4615 18.6989 18.25 18 18.25C17.5943 18.25 17.2559 18.1257 17.0358 17.9607C16.8159 17.7958 16.75 17.6252 16.75 17.5C16.75 17.3748 16.8159 17.2042 17.0358 17.0393C17.2559 16.8743 17.5943 16.75 18 16.75C18.6684 16.75 19.0905 17.071 19.2078 17.3197C19.3843 17.6944 19.8312 17.855 20.2059 17.6784C20.5806 17.5019 20.7412 17.055 20.5646 16.6803C20.2347 15.9803 19.5387 15.5152 18.75 15.3345V15Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,8 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 4C2.44772 4 2 4.44772 2 5C2 5.55228 2.44772 6 3 6L5 6C5.55228 6 6 5.55229 6 5C6 4.44772 5.55228 4 5 4L3 4Z" fill="#2E3039"/>
|
||||||
|
<path d="M9 4C8.44772 4 8 4.44772 8 5C8 5.55228 8.44772 6 9 6L21 6C21.5523 6 22 5.55229 22 5C22 4.44772 21.5523 4 21 4L9 4Z" fill="#2E3039"/>
|
||||||
|
<path d="M8 12C8 11.4477 8.44772 11 9 11L21 11C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13L9 13C8.44772 13 8 12.5523 8 12Z" fill="#2E3039"/>
|
||||||
|
<path d="M3 11C2.44772 11 2 11.4477 2 12C2 12.5523 2.44772 13 3 13H5C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11L3 11Z" fill="#2E3039"/>
|
||||||
|
<path d="M8 19C8 18.4477 8.44772 18 9 18L21 18C21.5523 18 22 18.4477 22 19C22 19.5523 21.5523 20 21 20L9 20C8.44772 20 8 19.5523 8 19Z" fill="#2E3039"/>
|
||||||
|
<path d="M3 18C2.44772 18 2 18.4477 2 19C2 19.5523 2.44772 20 3 20H5C5.55228 20 6 19.5523 6 19C6 18.4477 5.55228 18 5 18H3Z" fill="#2E3039"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 975 B |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.0625 16.125C3.6097 16.125 0 12.5153 0 8.0625C0 3.6097 3.6097 0 8.0625 0C12.5153 0 16.125 3.6097 16.125 8.0625C16.125 12.5153 12.5153 16.125 8.0625 16.125ZM8.0625 4.3125C8.47671 4.3125 8.8125 4.64829 8.8125 5.0625V8.43749H8.93401C9.15181 8.43742 9.38226 8.43734 9.56413 8.45912C9.69673 8.47499 10.1846 8.53481 10.4097 8.99153C10.635 9.4486 10.3763 9.85561 10.3061 9.96553C10.2094 10.1169 10.0646 10.2914 9.92764 10.4564L9.90413 10.4848C9.68853 10.7449 9.43178 11.0409 9.1743 11.2764C9.04572 11.394 8.89699 11.5151 8.73553 11.6109C8.58584 11.6996 8.34945 11.8125 8.0625 11.8125C7.77556 11.8125 7.53916 11.6996 7.38947 11.6109C7.22801 11.5151 7.07929 11.394 6.95071 11.2764C6.69322 11.0409 6.43647 10.7449 6.22087 10.4848L6.19736 10.4564C6.06041 10.2914 5.91565 10.1169 5.81894 9.96552C5.74871 9.85561 5.49001 9.4486 5.71529 8.99153C5.94038 8.53481 6.42827 8.47499 6.56087 8.45912C6.74274 8.43734 6.9732 8.43742 7.191 8.43749H7.3125L7.3125 5.0625C7.3125 4.64829 7.64829 4.3125 8.0625 4.3125Z" fill="#FF9E15"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path d="M19.3977 30.75C17.8566 30.7501 15.2938 30.75 14.3115 30.6472C13.3021 30.5416 12.4409 30.3186 11.6961 29.7919C11.3058 29.5159 10.9572 29.1871 10.662 28.8146C10.0922 28.0955 9.84896 27.2576 9.73485 26.2842C9.62496 25.3469 9.62498 24.1743 9.625 22.7262V20.1427C9.625 18.7244 9.625 17.6117 9.68419 16.711C9.74444 15.7942 9.86898 15.0295 10.1501 14.3175C10.9935 12.1815 12.7672 10.5187 14.9872 9.73655C16.3696 9.24947 18.0563 9.24968 20.8959 9.25005C22.4509 9.2495 23.923 9.24911 24.7818 9.5517C26.1584 10.0367 27.2668 11.071 27.7956 12.4103C27.9789 12.8744 28.0545 13.3601 28.0903 13.9047C28.125 14.4333 28.125 15.0809 28.125 15.88V17.0263C28.125 17.5641 27.6891 18 27.1513 18C26.6136 18 26.1776 17.5641 26.1776 17.0263V15.9132C26.1776 15.073 26.1771 14.49 26.1471 14.0333C26.1177 13.5854 26.0628 13.327 25.9852 13.1303C25.6751 12.345 25.0094 11.7033 24.1368 11.3959C23.6334 11.2185 22.9663 11.2046 21.1322 11.2046C20.8341 11.2046 20.4773 11.2057 20.1392 11.2073C19.801 11.2088 19.2476 11.2113 18.7855 11.4802C18.4807 11.6575 18.26 11.8594 18.1333 12.08C17.9159 12.4584 17.7915 12.8655 17.7915 13.3332L17.828 14.3736C17.8359 14.7537 17.8239 15.1972 17.7092 15.6254C17.4857 16.4593 16.8343 17.1107 16.0004 17.3342C15.5722 17.4489 15.1287 17.4609 14.7486 17.453L13.7082 17.4165C13.2615 17.4165 12.8414 17.5299 12.4748 17.7294C12.2474 17.8532 12.026 18.0963 11.853 18.3873C11.5724 18.8595 11.5723 19.4981 11.5723 19.7651L11.5724 22.6653C11.5724 24.1887 11.5739 25.246 11.6689 26.0558C11.7611 26.8426 11.9305 27.2754 12.1861 27.5979C12.3639 27.8222 12.5763 28.0233 12.8177 28.1941C13.1756 28.4471 13.6595 28.6139 14.5134 28.7032C15.3828 28.7942 17.7891 28.7954 19.3977 28.7954C19.9375 28.7954 20.375 29.233 20.375 29.7727C20.375 30.3125 19.9375 30.75 19.3977 30.75Z" fill="#8F9AA3"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.8795 19.5736C25.7039 19.2011 25.3179 18.9743 24.907 19.0023C24.4962 19.0303 24.1445 19.3073 24.021 19.7002L22.5883 24.2588L22.071 23.1615C21.9375 22.8782 21.8079 22.6032 21.6745 22.3809C21.5251 22.1319 21.3276 21.8718 21.0217 21.6712C20.712 21.4682 20.3934 21.393 20.1018 21.3611C19.8477 21.3332 19.5513 21.3333 19.2556 21.3333L18.375 21.3333C17.8227 21.3333 17.375 21.781 17.375 22.3333C17.375 22.8856 17.8227 23.3333 18.375 23.3333H19.2153C19.5679 23.3333 19.7521 23.3347 19.8838 23.3491C19.9001 23.3509 19.9134 23.3527 19.9241 23.3544C19.9331 23.3674 19.9449 23.3855 19.9595 23.4098C20.035 23.5356 20.1221 23.7177 20.2785 24.0496L21.8705 27.4264C22.0461 27.7989 22.4321 28.0257 22.843 27.9977C23.2538 27.9697 23.6055 27.6927 23.729 27.2998L25.1617 22.7412L25.679 23.8385C25.8125 24.1218 25.9421 24.3968 26.0755 24.6191C26.2249 24.8681 26.4224 25.1282 26.7283 25.3288C27.038 25.5318 27.3566 25.6069 27.6482 25.6389C27.9023 25.6668 28.1987 25.6667 28.4944 25.6667L29.375 25.6667C29.9273 25.6667 30.375 25.2189 30.375 24.6667C30.375 24.1144 29.9273 23.6667 29.375 23.6667H28.5347C28.1822 23.6667 27.9979 23.6653 27.8662 23.6508C27.8499 23.6491 27.8366 23.6473 27.8259 23.6456C27.8169 23.6325 27.8051 23.6145 27.7905 23.5902C27.715 23.4643 27.6279 23.2823 27.4715 22.9504L25.8795 19.5736ZM19.9028 23.3262L19.9013 23.3246C19.9012 23.3245 19.9018 23.325 19.9028 23.3262ZM27.8472 23.6738L27.8487 23.6754C27.8488 23.6755 27.8483 23.675 27.8472 23.6738Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.125 0C4.53312 0 0 4.53312 0 10.125C0 15.7169 4.53312 20.25 10.125 20.25C15.7169 20.25 20.25 15.7169 20.25 10.125C20.25 4.53312 15.7169 0 10.125 0ZM6.35756 9.18314C5.83738 9.18314 5.4157 9.60482 5.4157 10.125C5.4157 10.6452 5.83738 11.0669 6.35756 11.0669H13.8924C14.4126 11.0669 14.8343 10.6452 14.8343 10.125C14.8343 9.60482 14.4126 9.18314 13.8924 9.18314H6.35756Z" fill="#ED1C2B"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 541 B |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="40" height="40" rx="10" fill="#EFEFF0"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.312 9.93059C23.9686 9.74998 22.2479 9.74999 20.0572 9.75H19.9428C17.7521 9.74999 16.0314 9.74998 14.688 9.93059C13.3114 10.1157 12.2191 10.5027 11.3609 11.3609C10.5027 12.2191 10.1157 13.3114 9.93059 14.688C9.74998 16.0314 9.74999 17.7521 9.75 19.9428V20.0572C9.74999 22.2479 9.74998 23.9686 9.93059 25.312C10.1157 26.6886 10.5027 27.7809 11.3609 28.6391C12.2191 29.4973 13.3114 29.8843 14.688 30.0694C16.0314 30.25 17.7521 30.25 19.9428 30.25H20.0572C22.2479 30.25 23.9686 30.25 25.312 30.0694C26.6886 29.8843 27.7809 29.4973 28.6391 28.6391C29.4973 27.7809 29.8843 26.6886 30.0694 25.312C30.25 23.9686 30.25 22.2479 30.25 20.0572V19.9428C30.25 17.7521 30.25 16.0314 30.0694 14.688C29.8843 13.3114 29.4973 12.2191 28.6391 11.3609C27.7809 10.5027 26.6886 10.1157 25.312 9.93059ZM15.75 21C15.75 20.5858 15.4142 20.25 15 20.25C14.5858 20.25 14.25 20.5858 14.25 21V25C14.25 25.4142 14.5858 25.75 15 25.75C15.4142 25.75 15.75 25.4142 15.75 25V21ZM20 14.25C20.4142 14.25 20.75 14.5858 20.75 15L20.75 25C20.75 25.4142 20.4142 25.75 20 25.75C19.5858 25.75 19.25 25.4142 19.25 25L19.25 15C19.25 14.5858 19.5858 14.25 20 14.25ZM25.75 19C25.75 18.5858 25.4142 18.25 25 18.25C24.5858 18.25 24.25 18.5858 24.25 19L24.25 25C24.25 25.4142 24.5858 25.75 25 25.75C25.4142 25.75 25.75 25.4142 25.75 25V19Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M14.0404 16.6255C13.8528 16.438 13.5985 16.3326 13.3333 16.3326C12.9899 16.3326 12.656 16.3326 12.3333 16.3337V21.804C13.8723 22.2393 14.9999 23.6543 14.9999 25.3326V26.666C14.9999 27.2183 14.5522 27.666 13.9999 27.666C13.4476 27.666 12.9999 27.2183 12.9999 26.666V25.3326C12.9999 24.4122 12.2537 23.666 11.3333 23.666C10.4128 23.666 9.66659 24.4122 9.66659 25.3326V26.666C9.66659 27.2183 9.21887 27.666 8.66659 27.666C8.1143 27.666 7.66659 27.2183 7.66659 26.666V25.3326C7.66659 23.6543 8.79425 22.2393 10.3333 21.804V16.3679C9.77118 16.3904 9.26164 16.4274 8.81092 16.488C7.61078 16.6494 6.60028 16.9946 5.79772 17.7971C4.99517 18.5997 4.64997 19.6102 4.48862 20.8103C4.33321 21.9663 4.33323 23.436 4.33325 25.2594V29.3326C4.33325 29.8849 4.78097 30.3326 5.33325 30.3326H26.6666C27.2189 30.3326 27.6666 29.8849 27.6666 29.3326V25.2595C27.6666 23.436 27.6666 21.9663 27.5112 20.8103C27.3499 19.6102 27.0047 18.5997 26.2021 17.7971C25.3996 16.9946 24.3891 16.6494 23.1889 16.488C22.9237 16.4523 22.638 16.4249 22.3333 16.4037V23.9335C22.9311 24.2793 23.3333 24.9257 23.3333 25.666C23.3333 26.7705 22.4378 27.666 21.3333 27.666C20.2287 27.666 19.3333 26.7705 19.3333 25.666C19.3333 24.9257 19.7355 24.2793 20.3333 23.9335V16.3378C19.8092 16.3326 19.2527 16.3326 18.6672 16.3326C18.402 16.3326 18.147 16.438 17.9595 16.6255L15.9999 18.5851L14.0404 16.6255Z" fill="#2E3039"/>
|
||||||
|
<path d="M15.9999 1.66602C12.8703 1.66602 10.3333 4.20307 10.3333 7.33268V8.66602C10.3333 11.7956 12.8703 14.3327 15.9999 14.3327C19.1295 14.3327 21.6666 11.7956 21.6666 8.66602V7.33268C21.6666 4.20307 19.1295 1.66602 15.9999 1.66602Z" fill="#2E3039"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.835 8.71465C29 10.2375 29 12.157 29 14.6057L29 17.393V17.3931C29 19.8418 29 21.7612 28.835 23.284C28.6667 24.8381 28.3169 26.0973 27.5358 27.1724C27.0629 27.8232 26.4905 28.3956 25.8397 28.8685C24.7646 29.6496 23.5054 29.9993 21.9514 30.1677C20.4285 30.3327 18.5091 30.3327 16.0604 30.3327H16.0603H15.9397C13.491 30.3327 11.5715 30.3327 10.0486 30.1677C8.49458 29.9993 7.23541 29.6496 6.16031 28.8685C5.50945 28.3956 4.93708 27.8232 4.4642 27.1724C3.6831 26.0973 3.33334 24.8381 3.16497 23.284C2.99998 21.7612 2.99999 19.8418 3 17.3931V17.393L3 14.6056V14.6056C2.99999 12.1569 2.99998 10.2375 3.16497 8.71465C3.33334 7.1606 3.6831 5.90143 4.4642 4.82633C4.93708 4.17547 5.50945 3.6031 6.16032 3.13022C7.23541 2.34911 8.49459 1.99936 10.0486 1.83099C11.5715 1.666 13.4909 1.666 15.9395 1.66602H15.9396H16.0604H16.0605C18.5091 1.66601 20.4285 1.666 21.9514 1.83099C23.5054 1.99936 24.7646 2.34911 25.8397 3.13022C26.4905 3.6031 27.0629 4.17547 27.5358 4.82633C28.3169 5.90143 28.6667 7.1606 28.835 8.71465ZM16 5.66602C16.7364 5.66602 17.3333 6.26297 17.3333 6.99935V9.24299C17.6276 9.59842 17.8786 9.66602 18 9.66602C18.1485 9.66602 18.4909 9.56487 18.8693 8.95942C19.2595 8.33494 20.0821 8.14507 20.7066 8.53531C21.3311 8.92555 21.521 9.74814 21.1307 10.3726C20.4782 11.4167 19.4088 12.3327 18 12.3327C17.7685 12.3327 17.5462 12.3079 17.3333 12.262L17.3333 13.0409C17.8948 13.4337 18.584 13.666 19.3333 13.666C20.2769 13.666 21.1252 13.2976 21.7432 12.7042C22.2744 12.1942 23.1185 12.2114 23.6285 12.7426C24.1385 13.2738 24.1213 14.1178 23.5901 14.6278C22.49 15.6841 20.9852 16.3327 19.3333 16.3327C18.6338 16.3327 17.9606 16.2163 17.3333 16.002V18.0531C18.0392 17.9934 18.7108 17.8873 19.335 17.7423C21.0296 17.3485 23 18.5587 23 20.5393C23 21.5265 22.4537 22.5524 21.4063 22.9419C20.935 23.1172 20.4345 23.269 19.911 23.3954C19.3839 23.5228 18.9627 23.8554 18.7618 24.3012L18.6199 24.6159C18.1546 25.6483 17.1409 26.3327 16 26.3327C14.8591 26.3327 13.8454 25.6483 13.3801 24.6159L13.2382 24.3012C13.0373 23.8554 12.6161 23.5228 12.089 23.3954C11.5655 23.269 11.065 23.1172 10.5937 22.9419C9.54632 22.5524 9 21.5265 9 20.5393C9 18.5587 10.9704 17.3485 12.665 17.7423C13.2892 17.8873 13.9608 17.9934 14.6667 18.0531V16.002C14.0394 16.2164 13.3662 16.3327 12.6667 16.3327C11.0148 16.3327 9.51001 15.6841 8.4099 14.6278C7.87872 14.1178 7.86154 13.2738 8.37154 12.7426C8.88155 12.2114 9.72559 12.1942 10.2568 12.7042C10.8748 13.2976 11.7231 13.666 12.6667 13.666C13.416 13.666 14.1052 13.4337 14.6667 13.0409V12.262C14.4538 12.3079 14.2315 12.3327 14 12.3327C12.5912 12.3327 11.5218 11.4167 10.8693 10.3726C10.4791 9.74814 10.6689 8.92555 11.2934 8.53531C11.9179 8.14507 12.7405 8.33494 13.1307 8.95942C13.5091 9.56487 13.8515 9.66602 14 9.66602C14.1214 9.66602 14.3724 9.59842 14.6667 9.24299L14.6667 6.99935C14.6667 6.26297 15.2636 5.66602 16 5.66602Z" fill="#2E3039"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M22.6653 22.6661C22.6653 23.4025 22.0683 23.9994 21.332 23.9994H11.9986C11.2622 23.9994 10.6653 23.4025 10.6653 22.6661C10.6653 21.9297 11.2622 21.3328 11.9986 21.3328L21.332 21.3328C22.0683 21.3328 22.6653 21.9297 22.6653 22.6661Z" fill="#2E3039"/>
|
||||||
|
<path d="M21.332 18.6661C22.0683 18.6661 22.6653 18.0691 22.6653 17.3328C22.6653 16.5964 22.0683 15.9994 21.332 15.9994H17.332C16.5956 15.9994 15.9986 16.5964 15.9986 17.3328C15.9986 18.0691 16.5956 18.6661 17.332 18.6661H21.332Z" fill="#2E3039"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.914 30.1957C11.2237 30.3327 12.8674 30.3327 14.9222 30.3326H16.0893C18.6133 30.3327 20.6318 30.3327 22.2158 30.1315C23.8485 29.9242 25.2156 29.4832 26.3074 28.4519C27.4103 27.41 27.8922 26.0876 28.1169 24.5088C28.332 22.9972 28.332 21.0775 28.3319 18.7058V10.5061C28.332 9.44052 28.332 8.57711 28.2856 7.87234C28.2379 7.14617 28.1371 6.4986 27.8927 5.87972C27.1877 4.09398 25.7098 2.71495 23.8744 2.06828C22.7293 1.66483 20.7665 1.66535 18.6932 1.66608C14.907 1.6656 12.6581 1.66531 10.8149 2.31475C7.8549 3.35765 5.48993 5.57464 4.3654 8.42272C3.99058 9.372 3.82454 10.3916 3.7442 11.6141C3.66528 12.815 3.66528 14.2985 3.66528 16.1895L3.66528 19.6342C3.66526 21.565 3.66523 23.1286 3.81175 24.3783C3.9639 25.6762 4.28823 26.7934 5.04801 27.7521C5.44158 28.2488 5.90631 28.6871 6.4268 29.0552C7.41982 29.7574 8.56811 30.0549 9.914 30.1957ZM24.5279 26.5541C24.0036 27.0494 23.2622 27.3717 21.8899 27.546C20.4879 27.7241 18.6342 27.7265 15.9986 27.7265H14.9954C12.8506 27.7265 11.3424 27.7249 10.1831 27.6036C9.04458 27.4845 8.39935 27.2622 7.92225 26.9248C7.6003 26.6971 7.31714 26.429 7.08008 26.1298C6.73933 25.6999 6.51341 25.1228 6.39043 24.0737C6.26385 22.9941 6.26175 21.5843 6.26175 19.553L6.26164 15.6861C6.26162 15.3301 6.26185 14.4787 6.63601 13.8491C6.86658 13.4611 7.1618 13.137 7.46507 12.9719C7.95375 12.7059 8.51401 12.5547 9.10957 12.5547L10.4967 12.6034C11.0035 12.6139 11.5949 12.5979 12.1658 12.4449C13.2777 12.147 14.1463 11.2784 14.4442 10.1665C14.5972 9.59562 14.6132 9.00423 14.6027 8.49744L14.554 7.11029C14.554 6.4867 14.7199 5.94386 15.0097 5.43931C15.1786 5.14519 15.4729 4.87601 15.8792 4.63959C16.4954 4.28105 17.2333 4.27772 17.6842 4.27569C18.1351 4.27366 18.6108 4.2721 19.0082 4.2721C21.4537 4.2721 22.3432 4.2907 23.0143 4.52717C24.1778 4.93711 25.0654 5.79264 25.4789 6.83979C25.5824 7.10198 25.6555 7.44654 25.6948 8.0438C25.7348 8.6527 25.7354 9.42996 25.7354 10.5503V18.6054C25.7354 21.1014 25.7323 22.8344 25.5465 24.1402C25.3672 25.4 25.041 26.0694 24.5279 26.5541Z" fill="#2E3039"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1,8 @@
|
|||||||
|
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="23.5" cy="24" r="22.5" fill="white" stroke="#F88484" stroke-width="2"/>
|
||||||
|
<path d="M38.7191 26.4595C38.7191 30.8206 34.882 34.356 30.1486 34.356C25.4153 34.356 21.5781 30.8206 21.5781 26.4595C21.5781 22.0984 28.0039 11 28.0039 11C28.0039 11 38.7191 22.0984 38.7191 26.4595Z" fill="#B42C2C"/>
|
||||||
|
<path d="M36.7191 25.4595C36.7191 29.8206 32.882 33.356 28.1486 33.356C23.4153 33.356 19.5781 29.8206 19.5781 25.4595C19.5781 21.0984 28.1486 11.0703 28.1486 11.0703C28.1486 11.0703 36.7191 21.0984 36.7191 25.4595Z" fill="#CE3F3F"/>
|
||||||
|
<path d="M35 29C35 34.8707 28.6534 39.5 22.5 39.5C16.3466 39.5 11 34.3707 11 28.5C11 22.6293 22 8.5 22 8.5C22 8.5 35 22 35 29Z" fill="#E96666"/>
|
||||||
|
<path d="M33.2833 27.8701C33.2833 33.7408 28.295 38.5 22.1416 38.5C15.9883 38.5 11 33.7408 11 27.8701C11 21.9993 22.1416 8.5 22.1416 8.5C22.1416 8.5 33.2833 21.9993 33.2833 27.8701Z" fill="#F88484"/>
|
||||||
|
<path d="M22.5 34.5C25 34.5 28.9525 32.0341 27.2916 33.5C25.8814 34.7447 24.0289 35.5 22 35.5C17.5817 35.5 14 31.9183 14 27.5C14 23.0817 14 28.5003 16 31.0001C18 33.5 20 34.5 22.5 34.5Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,7 @@
|
|||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="20" height="3" rx="1.5" fill="#18C273"/>
|
||||||
|
<rect y="4" width="20" height="3" rx="1.5" fill="#18C273" fill-opacity="0.7"/>
|
||||||
|
<rect y="8" width="20" height="3" rx="1.5" fill="#18C273" fill-opacity="0.5"/>
|
||||||
|
<rect y="12" width="20" height="3" rx="1.5" fill="#18C273" fill-opacity="0.35"/>
|
||||||
|
<rect y="16" width="20" height="3" rx="1.5" fill="#18C273" fill-opacity="0.2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 476 B |
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M11.9998 1.25C7.54394 1.25 3.92765 4.84151 3.92761 9.27697C3.92752 10.3087 3.85814 11.0873 3.38247 11.7872C3.31632 11.8831 3.22855 12.0032 3.13265 12.1345C2.9661 12.3625 2.77503 12.624 2.63009 12.8505C2.37428 13.2503 2.12435 13.7324 2.03843 14.2942C1.75812 16.127 3.05031 17.3136 4.33721 17.8454C8.86992 19.7182 15.1296 19.7182 19.6623 17.8454C20.9492 17.3136 22.2414 16.127 21.9611 14.2942C21.8752 13.7324 21.6252 13.2503 21.3694 12.8505C21.2245 12.624 21.0334 12.3625 20.8669 12.1345C20.771 12.0033 20.6832 11.8832 20.6171 11.7873C20.1414 11.0874 20.072 10.3088 20.0719 9.27703C20.0719 4.84155 16.4556 1.25 11.9998 1.25Z" fill="#8F9AA3"/>
|
||||||
|
<path d="M11.9982 22.7477C13.0185 22.7477 13.974 22.4563 14.7773 21.9511C15.4904 21.5027 15.8469 21.2785 15.7222 20.9057C15.5974 20.533 15.1054 20.5747 14.1215 20.6582C12.7143 20.7776 11.2821 20.7776 9.87493 20.6582C8.89101 20.5747 8.39905 20.533 8.27429 20.9057C8.14953 21.2784 8.50605 21.5027 9.2191 21.9511C10.0225 22.4563 10.978 22.7477 11.9982 22.7477Z" fill="#8F9AA3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,7 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="31.908" height="29.134" viewBox="0 0 31.908 29.134">
|
||||||
|
<g id="Group_8579" data-name="Group 8579" transform="translate(0 -100)">
|
||||||
|
<path id="Path_4556" data-name="Path 4556" d="M88.972,88.108h-4.4l-2.539-2.775H72.324v4.162H68.162v4.162H64V107.53a2.783,2.783,0,0,0,2.775,2.775h22.2a2.783,2.783,0,0,0,2.775-2.775V90.882A2.783,2.783,0,0,0,88.972,88.108Zm-11.1,18.035a6.937,6.937,0,1,1,6.937-6.937A6.939,6.939,0,0,1,77.873,106.143Z" transform="translate(-59.838 18.829)" fill="#2bb8a6"/>
|
||||||
|
<path id="Path_4557" data-name="Path 4557" d="M4.162,32.432H6.937V28.27H11.1V25.495H6.937V21.333H4.162v4.162H0V28.27H4.162Z" transform="translate(0 78.667)" fill="#2bb8a6"/>
|
||||||
|
<path id="Path_4558" data-name="Path 4558" d="M213.505,230.4a4.435,4.435,0,0,0-4.439,4.439h0a4.439,4.439,0,1,0,4.439-4.439Z" transform="translate(-195.47 -116.804)" fill="#2bb8a6"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 910 B |
@ -0,0 +1,9 @@
|
|||||||
|
<svg width="102" height="85" viewBox="0 0 102 85" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M35.6143 34.2284C37.6104 34.2284 39.2286 32.696 39.2286 30.8056C39.2286 28.9153 37.6104 27.3828 35.6143 27.3828C33.6182 27.3828 32 28.9153 32 30.8056C32 32.696 33.6182 34.2284 35.6143 34.2284Z" fill="#CBE7FF" fill-opacity="0.7"/>
|
||||||
|
<path d="M2.40952 61.6106C3.74026 61.6106 4.81904 60.589 4.81904 59.3287C4.81904 58.0685 3.74026 57.0469 2.40952 57.0469C1.07878 57.0469 0 58.0685 0 59.3287C0 60.589 1.07878 61.6106 2.40952 61.6106Z" fill="#CBE7FF" fill-opacity="0.6"/>
|
||||||
|
<path d="M11.4452 85.0015C13.1087 85.0015 14.4571 83.7245 14.4571 82.1492C14.4571 80.5739 13.1087 79.2969 11.4452 79.2969C9.78182 79.2969 8.43335 80.5739 8.43335 82.1492C8.43335 83.7245 9.78182 85.0015 11.4452 85.0015Z" fill="#CBE7FF" fill-opacity="0.5"/>
|
||||||
|
<path d="M72.6927 32.3844C74.3561 32.3844 75.7046 31.1073 75.7046 29.532C75.7046 27.9567 74.3561 26.6797 72.6927 26.6797C71.0293 26.6797 69.6808 27.9567 69.6808 29.532C69.6808 31.1073 71.0293 32.3844 72.6927 32.3844Z" fill="#CBE7FF" fill-opacity="0.7"/>
|
||||||
|
<path d="M99.4095 53.0559C100.74 53.0559 101.819 52.0343 101.819 50.7741C101.819 49.5138 100.74 48.4922 99.4095 48.4922C98.0788 48.4922 97 49.5138 97 50.7741C97 52.0343 98.0788 53.0559 99.4095 53.0559Z" fill="#CBE7FF" fill-opacity="0.6"/>
|
||||||
|
<path d="M88.8681 77.0097C90.8642 77.0097 92.4824 75.4772 92.4824 73.5869C92.4824 71.6965 90.8642 70.1641 88.8681 70.1641C86.872 70.1641 85.2538 71.6965 85.2538 73.5869C85.2538 75.4772 86.872 77.0097 88.8681 77.0097Z" fill="#CBE7FF" fill-opacity="0.5"/>
|
||||||
|
<path d="M13.4095 4.56373C14.7403 4.56373 15.819 3.54211 15.819 2.28187C15.819 1.02163 14.7403 0 13.4095 0C12.0788 0 11 1.02163 11 2.28187C11 3.54211 12.0788 4.56373 13.4095 4.56373Z" fill="#D7EEFF" fill-opacity="0.8"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |