Commit cc59ee8b by siigure Committed by GitHub

Fix/http nodes (#7111)

* feat: add httpFullError output handling and localization support

* refactor: remove ensureHttp468Outputs, rely on template output merge

* perf: http code

* doc

* fix: test

---------

Co-authored-by: archer <545436317@qq.com>
parent 9ceb202a
...@@ -20,6 +20,7 @@ curl --location --request POST 'https://{{host}}/api/admin/initSandboxArchive' \ ...@@ -20,6 +20,7 @@ curl --location --request POST 'https://{{host}}/api/admin/initSandboxArchive' \
4. 参考 Lobe UI 优化流输出动效。 4. 参考 Lobe UI 优化流输出动效。
5. 支持通过模型生成对话标题,需配置 `CHAT_TITLE_MODEL` 变量。 5. 支持通过模型生成对话标题,需配置 `CHAT_TITLE_MODEL` 变量。
6. 调整 Skill Edit 编辑交互。 6. 调整 Skill Edit 编辑交互。
7. HTTP 节点支持返回完整错误对象。
## ⚙️ 优化 ## ⚙️ 优化
......
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
"content/self-host/upgrading/4-15/41504.en.mdx": "2026-06-10T19:02:59+08:00", "content/self-host/upgrading/4-15/41504.en.mdx": "2026-06-10T19:02:59+08:00",
"content/self-host/upgrading/4-15/41504.mdx": "2026-06-15T23:34:43+08:00", "content/self-host/upgrading/4-15/41504.mdx": "2026-06-15T23:34:43+08:00",
"content/self-host/upgrading/4-15/41505.en.mdx": "2026-06-12T20:47:04+08:00", "content/self-host/upgrading/4-15/41505.en.mdx": "2026-06-12T20:47:04+08:00",
"content/self-host/upgrading/4-15/41505.mdx": "2026-06-16T14:05:38+08:00", "content/self-host/upgrading/4-15/41505.mdx": "2026-06-16T17:39:42+08:00",
"content/self-host/upgrading/outdated/40.en.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/upgrading/outdated/40.en.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/upgrading/outdated/40.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/upgrading/outdated/40.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/upgrading/outdated/41.en.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/upgrading/outdated/41.en.mdx": "2026-04-26T21:08:47+08:00",
......
{ {
"guide": "Guide", "guide": "Guide",
"pluginSystem": "Plugin System", "pluginSystem": "Plugin System",
"version": "Editions",
"api_reference": "API Reference", "api_reference": "API Reference",
"selfHost": "Self-Host", "selfHost": "Self-Host",
"businessConsultation": "Business Inquiry" "businessConsultation": "Business Inquiry"
......
{ {
"guide": "使用指南", "guide": "使用指南",
"pluginSystem": "插件系统", "pluginSystem": "插件系统",
"version": "版本介绍",
"api_reference": "API 文档", "api_reference": "API 文档",
"selfHost": "自部署", "selfHost": "自部署",
"businessConsultation": "商业咨询" "businessConsultation": "商业咨询"
......
...@@ -286,8 +286,10 @@ export enum NodeOutputKeyEnum { ...@@ -286,8 +286,10 @@ export enum NodeOutputKeyEnum {
text = 'system_text', text = 'system_text',
addOutputParam = 'system_addOutputParam', addOutputParam = 'system_addOutputParam',
rawResponse = 'system_rawResponse', rawResponse = 'system_rawResponse',
systemError = 'system_error', systemError = 'system_error',
errorText = 'system_error_text', errorText = 'system_error_text',
error = 'error',
// start // start
userFiles = 'userFiles', userFiles = 'userFiles',
...@@ -309,6 +311,7 @@ export enum NodeOutputKeyEnum { ...@@ -309,6 +311,7 @@ export enum NodeOutputKeyEnum {
// http // http
httpRawResponse = 'httpRawResponse', httpRawResponse = 'httpRawResponse',
httpRawError = 'system_httpRawError',
// plugin // plugin
pluginStart = 'pluginStart', pluginStart = 'pluginStart',
...@@ -339,10 +342,7 @@ export enum NodeOutputKeyEnum { ...@@ -339,10 +342,7 @@ export enum NodeOutputKeyEnum {
formInputResult = 'formInputResult', formInputResult = 'formInputResult',
// File // File
fileTitle = 'fileTitle', fileTitle = 'fileTitle'
/** @deprecated */
error = 'error'
} }
export enum ParallelRunStatusEnum { export enum ParallelRunStatusEnum {
......
...@@ -182,6 +182,7 @@ export const DispatchNodeResponseSchema = z ...@@ -182,6 +182,7 @@ export const DispatchNodeResponseSchema = z
.optional() .optional()
.meta({ description: '错误信息' }), .meta({ description: '错误信息' }),
errorText: z.string().optional().meta({ description: '错误文本' }), // Just show errorText: z.string().optional().meta({ description: '错误文本' }), // Just show
errorCaptured: z.boolean().optional().meta({ description: '错误已被 catch 分支捕获' }),
customInputs: z.record(z.string(), z.any()).optional().meta({ description: '自定义输入' }), customInputs: z.record(z.string(), z.any()).optional().meta({ description: '自定义输入' }),
customOutputs: z.record(z.string(), z.any()).optional().meta({ description: '自定义输出' }), customOutputs: z.record(z.string(), z.any()).optional().meta({ description: '自定义输出' }),
...@@ -262,6 +263,7 @@ export const DispatchNodeResponseSchema = z ...@@ -262,6 +263,7 @@ export const DispatchNodeResponseSchema = z
.meta({ description: '请求体' }), .meta({ description: '请求体' }),
headers: z.record(z.string(), z.any()).optional().meta({ description: '请求头' }), headers: z.record(z.string(), z.any()).optional().meta({ description: '请求头' }),
httpResult: z.record(z.string(), z.any()).optional().meta({ description: '请求结果' }), httpResult: z.record(z.string(), z.any()).optional().meta({ description: '请求结果' }),
httpErrorResult: z.record(z.string(), z.any()).optional().meta({ description: '请求失败结果' }),
// Tool // Tool
toolInput: z.record(z.string(), z.any()).optional().meta({ description: '工具输入' }), toolInput: z.record(z.string(), z.any()).optional().meta({ description: '工具输入' }),
...@@ -371,7 +373,9 @@ export type DispatchNodeResponseType = Omit< ...@@ -371,7 +373,9 @@ export type DispatchNodeResponseType = Omit<
export type DispatchNodeResultType< export type DispatchNodeResultType<
T = Record<string, never>, T = Record<string, never>,
ERR = { [NodeOutputKeyEnum.errorText]?: string } ERR = {
[NodeOutputKeyEnum.errorText]?: string;
}
> = { > = {
[DispatchNodeResponseKeyEnum.answerText]?: string; [DispatchNodeResponseKeyEnum.answerText]?: string;
[DispatchNodeResponseKeyEnum.reasoningText]?: string; [DispatchNodeResponseKeyEnum.reasoningText]?: string;
...@@ -388,7 +392,7 @@ export type DispatchNodeResultType< ...@@ -388,7 +392,7 @@ export type DispatchNodeResultType<
[DispatchNodeResponseKeyEnum.customFeedbacks]?: string[]; [DispatchNodeResponseKeyEnum.customFeedbacks]?: string[];
data?: T; data?: T;
error?: ERR; error?: ERR & { [NodeOutputKeyEnum.errorText]?: string };
/** @deprecated */ /** @deprecated */
[DispatchNodeResponseKeyEnum.nodeDispatchUsages]?: ChatNodeUsageType[]; // Node total usage [DispatchNodeResponseKeyEnum.nodeDispatchUsages]?: ChatNodeUsageType[]; // Node total usage
......
...@@ -108,7 +108,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum) ...@@ -108,7 +108,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
const trimmedValue = value.trim(); const trimmedValue = value.trim();
try { try {
return json5.parse(trimmedValue); return json5.parse(trimmedValue);
} catch (error) {} } catch {}
} }
return {}; return {};
} }
...@@ -118,7 +118,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum) ...@@ -118,7 +118,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) { if (isObjectString(value)) {
try { try {
return json5.parse(value); return json5.parse(value);
} catch (error) {} } catch {}
} }
return [value]; return [value];
} }
...@@ -134,7 +134,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum) ...@@ -134,7 +134,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) { if (isObjectString(value)) {
try { try {
return json5.parse(value); return json5.parse(value);
} catch (error) {} } catch {}
} }
return []; return [];
} }
...@@ -144,7 +144,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum) ...@@ -144,7 +144,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) { if (isObjectString(value)) {
try { try {
return json5.parse(value); return json5.parse(value);
} catch (error) {} } catch {}
} }
return []; return [];
} }
......
...@@ -136,6 +136,15 @@ export const HttpNode468: FlowNodeTemplateType = { ...@@ -136,6 +136,15 @@ export const HttpNode468: FlowNodeTemplateType = {
valueType: WorkflowIOValueTypeEnum.any, valueType: WorkflowIOValueTypeEnum.any,
type: FlowNodeOutputTypeEnum.static type: FlowNodeOutputTypeEnum.static
}, },
{
id: NodeOutputKeyEnum.httpRawError,
key: NodeOutputKeyEnum.httpRawError,
label: i18nT('workflow:http_full_error'),
description: i18nT('workflow:http_full_error_description'),
valueType: WorkflowIOValueTypeEnum.object,
type: FlowNodeOutputTypeEnum.error
},
{ {
id: NodeOutputKeyEnum.error, id: NodeOutputKeyEnum.error,
key: NodeOutputKeyEnum.error, key: NodeOutputKeyEnum.error,
......
...@@ -29,7 +29,8 @@ const defaultNodeResponsePreviewProjection = { ...@@ -29,7 +29,8 @@ const defaultNodeResponsePreviewProjection = {
'data.quoteList.score': 1, 'data.quoteList.score': 1,
'data.toolId': 1, 'data.toolId': 1,
'data.toolRes.citeLinks': 1, 'data.toolRes.citeLinks': 1,
'data.errorText': 1 'data.errorText': 1,
'data.errorCaptured': 1
} as const; } as const;
export async function getChatItems({ export async function getChatItems({
......
...@@ -10,7 +10,7 @@ import type { ...@@ -10,7 +10,7 @@ import type {
NodeEdgeGroupsMap, NodeEdgeGroupsMap,
NodeOutputItemType NodeOutputItemType
} from '@fastgpt/global/core/workflow/runtime/type'; } from '@fastgpt/global/core/workflow/runtime/type';
import type { NodeOutputKeyEnum } from '@fastgpt/global/core/workflow/constants'; import { NodeOutputKeyEnum } from '@fastgpt/global/core/workflow/constants';
import { FlowNodeTypeEnum } from '@fastgpt/global/core/workflow/node/constant'; import { FlowNodeTypeEnum } from '@fastgpt/global/core/workflow/node/constant';
import { import {
DispatchNodeResponseKeyEnum, DispatchNodeResponseKeyEnum,
...@@ -889,6 +889,14 @@ export class WorkflowQueue { ...@@ -889,6 +889,14 @@ export class WorkflowQueue {
return { return {
...result, ...result,
...(result[DispatchNodeResponseKeyEnum.nodeResponse]
? {
[DispatchNodeResponseKeyEnum.nodeResponse]: {
...result[DispatchNodeResponseKeyEnum.nodeResponse],
errorCaptured: true
}
}
: {}),
[DispatchNodeResponseKeyEnum.skipHandleId]: result[ [DispatchNodeResponseKeyEnum.skipHandleId]: result[
DispatchNodeResponseKeyEnum.skipHandleId DispatchNodeResponseKeyEnum.skipHandleId
] ]
...@@ -913,6 +921,7 @@ export class WorkflowQueue { ...@@ -913,6 +921,7 @@ export class WorkflowQueue {
).filter(Boolean) ).filter(Boolean)
}; };
} catch (error) { } catch (error) {
const errorText = getErrText(error);
// Skip all edges and return error // Skip all edges and return error
let skipHandleId = targetEdges.map((item) => item.sourceHandle); let skipHandleId = targetEdges.map((item) => item.sourceHandle);
if (node.catchError) { if (node.catchError) {
...@@ -920,8 +929,16 @@ export class WorkflowQueue { ...@@ -920,8 +929,16 @@ export class WorkflowQueue {
} }
return { return {
...(node.catchError
? {
error: {
[NodeOutputKeyEnum.errorText]: errorText
}
}
: {}),
[DispatchNodeResponseKeyEnum.nodeResponse]: { [DispatchNodeResponseKeyEnum.nodeResponse]: {
error: getErrText(error) error: errorText,
...(node.catchError ? { errorCaptured: true } : {})
}, },
[DispatchNodeResponseKeyEnum.skipHandleId]: skipHandleId [DispatchNodeResponseKeyEnum.skipHandleId]: skipHandleId
}; };
......
...@@ -5,6 +5,7 @@ import { DispatchNodeResponseKeyEnum } from '@fastgpt/global/core/workflow/runti ...@@ -5,6 +5,7 @@ import { DispatchNodeResponseKeyEnum } from '@fastgpt/global/core/workflow/runti
import { getErrText } from '@fastgpt/global/common/error/utils'; import { getErrText } from '@fastgpt/global/common/error/utils';
import { codeSandbox } from '../../../../thirdProvider/codeSandbox'; import { codeSandbox } from '../../../../thirdProvider/codeSandbox';
import { serviceEnv } from '../../../../env'; import { serviceEnv } from '../../../../env';
import { getNodeErrResponse } from '../utils';
type RunCodeType = ModuleDispatchProps<{ type RunCodeType = ModuleDispatchProps<{
[NodeInputKeyEnum.codeType]: string; [NodeInputKeyEnum.codeType]: string;
...@@ -31,15 +32,16 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe ...@@ -31,15 +32,16 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
} = props; } = props;
if (!serviceEnv.CODE_SANDBOX_URL) { if (!serviceEnv.CODE_SANDBOX_URL) {
return { return getNodeErrResponse({
error: { error: 'Can not find CODE_SANDBOX_URL in env',
[NodeOutputKeyEnum.error]: 'Can not find CODE_SANDBOX_URL in env' customErr: {
error: 'Can not find CODE_SANDBOX_URL in env'
}, },
[DispatchNodeResponseKeyEnum.nodeResponse]: { [DispatchNodeResponseKeyEnum.nodeResponse]: {
errorText: 'Can not find CODE_SANDBOX_URL in env', errorText: 'Can not find CODE_SANDBOX_URL in env',
customInputs: customVariables customInputs: customVariables
} }
}; });
} }
try { try {
...@@ -61,7 +63,7 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe ...@@ -61,7 +63,7 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
}, },
[DispatchNodeResponseKeyEnum.toolResponse]: codeReturn [DispatchNodeResponseKeyEnum.toolResponse]: codeReturn
}; };
} catch (error) { } catch (error: any) {
const text = getErrText(error, 'Request code sandbox failed'); const text = getErrText(error, 'Request code sandbox failed');
// @adapt // @adapt
...@@ -77,14 +79,15 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe ...@@ -77,14 +79,15 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
}; };
} }
return { return getNodeErrResponse({
error: { error: text,
customErr: {
[NodeOutputKeyEnum.error]: text [NodeOutputKeyEnum.error]: text
}, },
[DispatchNodeResponseKeyEnum.nodeResponse]: { [DispatchNodeResponseKeyEnum.nodeResponse]: {
customInputs: customVariables, customInputs: customVariables,
errorText: text errorText: text
} }
}; });
} }
}; };
...@@ -24,7 +24,7 @@ import { JSONPath } from 'jsonpath-plus'; ...@@ -24,7 +24,7 @@ import { JSONPath } from 'jsonpath-plus';
import { getSecretValue } from '../../../../common/secret/utils'; import { getSecretValue } from '../../../../common/secret/utils';
import type { StoreSecretValueType } from '@fastgpt/global/common/secret/type'; import type { StoreSecretValueType } from '@fastgpt/global/common/secret/type';
import { getLogger, LogCategories } from '../../../../common/logger'; import { getLogger, LogCategories } from '../../../../common/logger';
import { formatHttpError } from '../utils'; import { formatHttpError, getNodeErrResponse } from '../utils';
import { isInternalAddress, PRIVATE_URL_TEXT } from '../../../../common/system/utils'; import { isInternalAddress, PRIVATE_URL_TEXT } from '../../../../common/system/utils';
import { serviceRequestMaxContentLength } from '../../../../common/system/constants'; import { serviceRequestMaxContentLength } from '../../../../common/system/constants';
import { axios, httpsCertificateIgnoreAgent } from '../../../../common/api/axios'; import { axios, httpsCertificateIgnoreAgent } from '../../../../common/api/axios';
...@@ -83,7 +83,9 @@ type HttpResponse = DispatchNodeResultType< ...@@ -83,7 +83,9 @@ type HttpResponse = DispatchNodeResultType<
[key: string]: any; [key: string]: any;
}, },
{ {
[NodeOutputKeyEnum.error]?: string; [NodeOutputKeyEnum.errorText]: string; //未使用,仅作类型。
[NodeOutputKeyEnum.error]: string; // 适配字段
[NodeOutputKeyEnum.httpRawError]?: ReturnType<typeof formatHttpError>;
} }
>; >;
...@@ -255,6 +257,7 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H ...@@ -255,6 +257,7 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H
.filter( .filter(
(item) => (item) =>
item.id !== NodeOutputKeyEnum.error && item.id !== NodeOutputKeyEnum.error &&
item.id !== NodeOutputKeyEnum.httpRawError &&
item.id !== NodeOutputKeyEnum.httpRawResponse && item.id !== NodeOutputKeyEnum.httpRawResponse &&
item.id !== NodeOutputKeyEnum.addOutputParam item.id !== NodeOutputKeyEnum.addOutputParam
) )
...@@ -317,17 +320,21 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H ...@@ -317,17 +320,21 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H
}; };
} }
return { const errText = getErrText(error);
error: { const errObj = formatHttpError(error);
[NodeOutputKeyEnum.error]: getErrText(error) return getNodeErrResponse({
error: errText,
customErr: {
[NodeOutputKeyEnum.error]: errText,
[NodeOutputKeyEnum.httpRawError]: errObj
}, },
[DispatchNodeResponseKeyEnum.nodeResponse]: { responseData: {
params: Object.keys(params).length > 0 ? params : undefined, params: Object.keys(params).length > 0 ? params : undefined,
body: Object.keys(formattedRequestBody).length > 0 ? formattedRequestBody : undefined, body: Object.keys(formattedRequestBody).length > 0 ? formattedRequestBody : undefined,
headers: Object.keys(publicHeaders).length > 0 ? publicHeaders : undefined, headers: Object.keys(publicHeaders).length > 0 ? publicHeaders : undefined,
httpResult: { error: formatHttpError(error) } httpErrorResult: errObj
} }
}; });
} }
}; };
......
...@@ -661,7 +661,7 @@ export const rewriteRuntimeWorkFlow = async ({ ...@@ -661,7 +661,7 @@ export const rewriteRuntimeWorkFlow = async ({
* 同一份错误会被写入节点输出、nodeResponse 和 toolResponse,兼容普通节点执行、 * 同一份错误会被写入节点输出、nodeResponse 和 toolResponse,兼容普通节点执行、
* 前端节点详情展示以及 tool call 调用方读取错误的不同路径。 * 前端节点详情展示以及 tool call 调用方读取错误的不同路径。
*/ */
export const getNodeErrResponse = ({ export const getNodeErrResponse = <TError extends Record<string, any> = Record<string, never>>({
error, error,
customErr, customErr,
responseData, responseData,
...@@ -669,7 +669,7 @@ export const getNodeErrResponse = ({ ...@@ -669,7 +669,7 @@ export const getNodeErrResponse = ({
system_memories system_memories
}: { }: {
error: any; error: any;
customErr?: Record<string, any>; customErr?: TError;
[DispatchNodeResponseKeyEnum.nodeResponse]?: Record<string, any>; [DispatchNodeResponseKeyEnum.nodeResponse]?: Record<string, any>;
[DispatchNodeResponseKeyEnum.runTimes]?: number; [DispatchNodeResponseKeyEnum.runTimes]?: number;
[DispatchNodeResponseKeyEnum.memories]?: Record<string, any>; [DispatchNodeResponseKeyEnum.memories]?: Record<string, any>;
...@@ -682,7 +682,9 @@ export const getNodeErrResponse = ({ ...@@ -682,7 +682,9 @@ export const getNodeErrResponse = ({
error: { error: {
[NodeOutputKeyEnum.errorText]: errorText, [NodeOutputKeyEnum.errorText]: errorText,
...(typeof customErr === 'object' ? customErr : {}) ...(typeof customErr === 'object' ? customErr : {})
}, } as {
[NodeOutputKeyEnum.errorText]: string;
} & TError,
[DispatchNodeResponseKeyEnum.nodeResponse]: { [DispatchNodeResponseKeyEnum.nodeResponse]: {
errorText, errorText,
...(typeof responseData === 'object' ? responseData : {}) ...(typeof responseData === 'object' ? responseData : {})
......
...@@ -22,6 +22,7 @@ import { ...@@ -22,6 +22,7 @@ import {
getChatItemResponseData getChatItemResponseData
} from '@fastgpt/service/core/chat/nodeResponseStorage'; } from '@fastgpt/service/core/chat/nodeResponseStorage';
import { MongoChatItemResponse } from '@fastgpt/service/core/chat/chatItemResponseSchema'; import { MongoChatItemResponse } from '@fastgpt/service/core/chat/chatItemResponseSchema';
import { getHandleId } from '@fastgpt/global/core/workflow/utils';
const makeInput = ({ const makeInput = ({
key, key,
...@@ -503,6 +504,128 @@ describe('runWorkflow node response persistence', () => { ...@@ -503,6 +504,128 @@ describe('runWorkflow node response persistence', () => {
} }
}); });
it('marks caught node errors so chat bubbles can ignore recovered failures', async () => {
const originalTextEditorDispatch = callbackMap[FlowNodeTypeEnum.textEditor];
callbackMap[FlowNodeTypeEnum.textEditor] = vi
.fn()
.mockResolvedValueOnce({
error: {
[NodeOutputKeyEnum.errorText]: 'upstream timeout'
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
errorText: 'upstream timeout'
}
})
.mockResolvedValueOnce({
data: {
[NodeOutputKeyEnum.text]: 'fallback answer'
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
textOutput: 'fallback answer'
}
});
try {
const appId = '67e0d5535c02d1d5cdede725';
const chatId = 'workflow-caught-error-chat';
const responseChatItemId = 'workflow-caught-error-ai-item';
const runningAppInfo = {
id: appId,
name: 'Workflow Caught Error App',
teamId: '654a4107c32f3bf5f998452f',
tmbId: '65ab7007462ada7dbb899948'
};
const runtimeNodes: RuntimeNodeItemType[] = [
makeNode('error_node', FlowNodeTypeEnum.textEditor, {
isEntry: true,
catchError: true,
outputs: [makeOutput({ key: NodeOutputKeyEnum.text })]
}),
makeNode('fallback_node', FlowNodeTypeEnum.textEditor, {
outputs: [makeOutput({ key: NodeOutputKeyEnum.text })]
})
];
const runtimeEdges: RuntimeEdgeItemType[] = [
{
...makeEdge('error_node', 'fallback_node'),
sourceHandle: getHandleId('error_node', 'source_catch', 'right')
}
];
const nodeResponseWriter = await createWorkflowNodeResponseWriter({
teamId: runningAppInfo.teamId,
appId,
chatId,
chatItemDataId: responseChatItemId
});
await runWorkflow({
apiVersion: 'v2',
mode: 'chat',
chatId,
responseChatItemId,
runningAppInfo,
runningUserInfo: {
teamId: runningAppInfo.teamId,
tmbId: runningAppInfo.tmbId,
teamName: 'team',
memberName: 'member',
contact: '',
username: 'user'
},
uid: 'test-user',
lang: 'zh-CN',
histories: [],
query: [{ type: 'text', text: { content: 'recover' } }],
variables: {},
chatConfig: {},
runtimeNodes,
runtimeEdges,
variableState: await WorkflowVariableState.create({
timezone: 'Asia/Shanghai',
runningAppInfo,
uid: 'test-user',
chatId,
responseChatItemId,
histories: [],
variablesConfig: [],
inputVariables: {},
externalVariables: {}
}),
externalProvider: {},
workflowDispatchDeep: 0,
maxRunTimes: 20,
stream: false,
responseAllData: true,
responseDetail: true,
nodeResponseWriter,
checkIsStopping: () => false
} as any);
await nodeResponseWriter.close();
const detail = await getChatItemResponseData({
appId,
chatId,
chatItemDataId: responseChatItemId
});
expect(detail).toEqual(
expect.arrayContaining([
expect.objectContaining({
nodeId: 'error_node',
errorText: 'upstream timeout',
errorCaptured: true
}),
expect.objectContaining({
nodeId: 'fallback_node',
textOutput: 'fallback answer'
})
])
);
} finally {
callbackMap[FlowNodeTypeEnum.textEditor] = originalTextEditorDispatch;
}
});
it('returns the runtime node response id when workflow pauses on an interactive node', async () => { it('returns the runtime node response id when workflow pauses on an interactive node', async () => {
const appId = '67e0d5535c02d1d5cdede723'; const appId = '67e0d5535c02d1d5cdede723';
const chatId = 'workflow-interactive-node-response-chat'; const chatId = 'workflow-interactive-node-response-chat';
......
import { describe, expect, it } from 'vitest'; import { describe, expect, it, vi } from 'vitest';
import { EventEmitter } from 'node:events'; import { EventEmitter } from 'node:events';
import { createServer } from 'node:http'; import { createServer } from 'node:http';
import type { AddressInfo } from 'node:net'; import type { AddressInfo } from 'node:net';
import { FlowNodeTypeEnum } from '@fastgpt/global/core/workflow/node/constant'; import { FlowNodeTypeEnum } from '@fastgpt/global/core/workflow/node/constant';
import { WorkflowQueue } from '@fastgpt/service/core/workflow/dispatch/index'; import { runWorkflow, WorkflowQueue } from '@fastgpt/service/core/workflow/dispatch/index';
import { getWorkflowNodeRunParams } from '@fastgpt/service/core/workflow/dispatch/utils/runtime'; import { getWorkflowNodeRunParams } from '@fastgpt/service/core/workflow/dispatch/utils/runtime';
import { createClientAbortTracker } from '@fastgpt/service/core/workflow/dispatch/utils/clientAbort'; import { createClientAbortTracker } from '@fastgpt/service/core/workflow/dispatch/utils/clientAbort';
import { createNode, createEdge } from '../utils'; import { createNode, createEdge } from '../utils';
import { import {
NodeInputKeyEnum, NodeInputKeyEnum,
NodeOutputKeyEnum,
VARIABLE_NODE_ID, VARIABLE_NODE_ID,
WorkflowIOValueTypeEnum WorkflowIOValueTypeEnum
} from '@fastgpt/global/core/workflow/constants'; } from '@fastgpt/global/core/workflow/constants';
...@@ -17,6 +18,8 @@ import { ...@@ -17,6 +18,8 @@ import {
FlowNodeOutputTypeEnum FlowNodeOutputTypeEnum
} from '@fastgpt/global/core/workflow/node/constant'; } from '@fastgpt/global/core/workflow/node/constant';
import type { WorkflowVariableStateLike } from '@fastgpt/global/core/workflow/runtime/type'; import type { WorkflowVariableStateLike } from '@fastgpt/global/core/workflow/runtime/type';
import { DispatchNodeResponseKeyEnum } from '@fastgpt/global/core/workflow/runtime/constants';
import { callbackMap } from '@fastgpt/service/core/workflow/dispatch/constants';
const waitWithTimeout = async <T>(promise: Promise<T>, timeoutMs: number, label: string) => { const waitWithTimeout = async <T>(promise: Promise<T>, timeoutMs: number, label: string) => {
let timer: ReturnType<typeof setTimeout> | undefined; let timer: ReturnType<typeof setTimeout> | undefined;
...@@ -37,6 +40,21 @@ const waitWithTimeout = async <T>(promise: Promise<T>, timeoutMs: number, label: ...@@ -37,6 +40,21 @@ const waitWithTimeout = async <T>(promise: Promise<T>, timeoutMs: number, label:
} }
}; };
const createWorkflowVariableState = (
variables: Record<string, unknown> = {}
): WorkflowVariableStateLike => ({
get: (key) => variables[key],
set: async (key, value) => {
variables[key] = value;
return value;
},
getStoreValue: (key) => variables[key],
getFileStoreValueByRuntimeUrl: () => undefined,
toRuntimeRecord: () => ({ ...variables }),
toStoreRecord: () => ({ ...variables }),
clone: () => createWorkflowVariableState({ ...variables })
});
describe('createClientAbortTracker', () => { describe('createClientAbortTracker', () => {
const mockRes = (overrides: Record<string, any> = {}) => { const mockRes = (overrides: Record<string, any> = {}) => {
const res = new EventEmitter() as any; const res = new EventEmitter() as any;
...@@ -550,6 +568,127 @@ describe('getWorkflowNodeRunParams', () => { ...@@ -550,6 +568,127 @@ describe('getWorkflowNodeRunParams', () => {
}); });
}); });
describe('runWorkflow catchError', () => {
it('捕获 throw 异常后,下游节点应能引用错误输出', async () => {
const originalTextEditorDispatch = callbackMap[FlowNodeTypeEnum.textEditor];
const errorText = 'upstream failed';
const appId = '67e0d5535c02d1d5cdede721';
const teamId = '654a4107c32f3bf5f998452f';
const tmbId = '65ab7007462ada7dbb899948';
callbackMap[FlowNodeTypeEnum.textEditor] = vi
.fn()
.mockRejectedValueOnce(new Error(errorText))
.mockImplementationOnce(async ({ params }) => {
return {
data: {
[NodeOutputKeyEnum.text]: params[NodeInputKeyEnum.textareaInput]
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
textOutput: params[NodeInputKeyEnum.textareaInput]
}
};
});
const sourceNode = createNode('source', FlowNodeTypeEnum.textEditor);
sourceNode.isEntry = true;
sourceNode.catchError = true;
sourceNode.outputs = [
{
id: NodeOutputKeyEnum.errorText,
key: NodeOutputKeyEnum.errorText,
type: FlowNodeOutputTypeEnum.error,
label: '',
valueType: WorkflowIOValueTypeEnum.string
}
];
const targetNode = createNode('target', FlowNodeTypeEnum.textEditor);
targetNode.inputs = [
{
key: NodeInputKeyEnum.textareaInput,
label: '',
renderTypeList: [FlowNodeInputTypeEnum.textarea],
value: `caught: {{$source.${NodeOutputKeyEnum.errorText}$}}`,
valueType: WorkflowIOValueTypeEnum.string
}
];
targetNode.outputs = [
{
id: NodeOutputKeyEnum.text,
key: NodeOutputKeyEnum.text,
type: FlowNodeOutputTypeEnum.static,
label: '',
valueType: WorkflowIOValueTypeEnum.string
}
];
try {
const result = await runWorkflow({
apiVersion: 'v2',
mode: 'chat',
runningAppInfo: {
id: appId,
name: 'catch error test',
teamId,
tmbId
},
runningUserInfo: {
teamId,
tmbId,
teamName: 'team',
memberName: 'member',
contact: '',
username: 'user'
},
uid: 'user-catch-error-test',
lang: 'zh-CN',
histories: [],
query: [],
variables: {},
chatConfig: {},
runtimeNodes: [sourceNode, targetNode],
runtimeEdges: [
{
source: 'source',
target: 'target',
sourceHandle: 'source-source_catch-right',
targetHandle: 'target-target-left',
status: 'waiting'
}
],
variableState: createWorkflowVariableState(),
externalProvider: {},
workflowDispatchDeep: 0,
maxRunTimes: 10,
stream: false,
responseDetail: true,
responseAllData: true,
checkIsStopping: () => false
} as any);
expect(callbackMap[FlowNodeTypeEnum.textEditor]).toHaveBeenCalledTimes(2);
expect(vi.mocked(callbackMap[FlowNodeTypeEnum.textEditor]).mock.calls[1][0].params).toEqual(
expect.objectContaining({
[NodeInputKeyEnum.textareaInput]: `caught: ${errorText}`
})
);
expect(
result.debugResponse.memoryNodes
.find((node) => node.nodeId === 'source')
?.outputs.find((output) => output.key === NodeOutputKeyEnum.errorText)?.value
).toBe(errorText);
expect(
result.debugResponse.memoryNodes
.find((node) => node.nodeId === 'target')
?.outputs.find((output) => output.key === NodeOutputKeyEnum.text)?.value
).toBe(`caught: ${errorText}`);
} finally {
callbackMap[FlowNodeTypeEnum.textEditor] = originalTextEditorDispatch;
}
});
});
describe('WorkflowQueue', () => { describe('WorkflowQueue', () => {
describe('WorkflowQueue utils', () => { describe('WorkflowQueue utils', () => {
// buildNodeEdgeGroupsMap 已经单独写了 // buildNodeEdgeGroupsMap 已经单独写了
......
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1682602070818" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2479" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M509.606998 143.114488c9.082866 0 17.327644 4.840238 20.996197 12.331863l97.262184 197.441814c5.613858 11.403724 16.663518 19.358907 29.438473 21.216207l223.738737 32.552393c8.420787 1.215688 15.604396 6.851035 18.23327 14.254655 2.520403 7.18361 0.595564 15.062044-5.084808 20.586874L730.253304 601.611947c-8.949836 8.751315-12.994965 21.171182-10.916631 33.370015l38.011732 222.060515c1.325182 7.737218-2.165316 15.426341-8.905834 19.978007-4.088108 2.741437-8.861832 4.155646-13.812587 4.155646-4.022617 0-7.999185-0.972141-11.425214-2.740414L528.149307 775.671215c-5.768377-3.006474-12.155854-4.552689-18.542308-4.552689-6.364965 0-12.727882 1.547239-18.518772 4.552689L296.254819 878.348736c-3.559059 1.855254-7.602142 2.828418-11.668761 2.828418-4.861728 0-9.723455-1.459235-13.546527-4.022617-6.961552-4.684696-10.475586-12.419867-9.127891-20.155039l38.011732-222.016513c2.078335-12.198833-1.988284-24.619724-10.939143-33.370015L125.02397 441.443038c-5.635347-5.492084-7.55814-13.348006-5.061272-20.453844 2.63092-7.481392 9.812483-13.116739 18.298761-14.332427l223.674269-32.552393c12.839423-1.857301 23.867594-9.813506 29.481452-21.216207l97.194646-197.396789C492.325403 147.965983 500.590648 143.114488 509.606998 143.114488M509.606998 104.904235c-24.043602 0-45.922912 13.226233-56.177464 33.95637L356.189863 336.302419l-223.674269 32.54216c-22.983457 3.304256-42.100864 18.718317-49.481971 39.659255-7.381108 21.048385-1.812275 44.23241 14.431687 60.033281l163.916257 160.125931-38.011732 222.016513c-3.868097 22.408359 6.03239 44.819788 25.458835 57.94676 10.69662 7.116071 23.204491 10.784624 35.757388 10.784624 10.298554 0 20.663622-2.475378 30.055526-7.337105l194.987926-102.7205L704.662463 912.072815c9.369392 4.861728 19.712971 7.337105 29.990035 7.337105 12.57541 0 25.082258-3.668553 35.778878-10.784624 19.426445-13.126972 29.305443-35.538401 25.460882-57.94676l-38.012755-222.016513 163.937746-160.125931c16.22145-15.812127 21.810748-38.984896 14.408151-60.033281-7.402597-20.940938-26.51898-36.353976-49.503461-39.659255L663.04767 336.302419l-97.240695-197.441814C555.619962 118.131491 533.695626 104.904235 509.606998 104.904235L509.606998 104.904235z" p-id="2480"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1682602068431" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2339" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M335.008 916.629333c-35.914667 22.314667-82.88 10.773333-104.693333-25.557333a77.333333 77.333333 0 0 1-8.96-57.429333l46.485333-198.24a13.141333 13.141333 0 0 0-4.021333-12.864l-152.16-132.586667c-31.605333-27.52-35.253333-75.648-8.234667-107.733333a75.68 75.68 0 0 1 51.733333-26.752L354.848 339.2c4.352-0.362667 8.245333-3.232 10.026667-7.594667l76.938666-188.170666c16.032-39.2 60.618667-57.92 99.52-41.461334a76.309333 76.309333 0 0 1 40.832 41.461334l76.938667 188.16c1.781333 4.373333 5.674667 7.253333 10.026667 7.605333l199.712 16.277333c41.877333 3.413333 72.885333 40.458667 69.568 82.517334a76.938667 76.938667 0 0 1-26.08 51.978666l-152.16 132.586667c-3.541333 3.082667-5.141333 8.074667-4.021334 12.853333l46.485334 198.24c9.621333 41.013333-15.36 82.336-56.138667 92.224a75.285333 75.285333 0 0 1-57.525333-9.237333l-170.976-106.24a11.296 11.296 0 0 0-12.010667 0l-170.986667 106.24z" p-id="2340"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1690977807626" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9878" xmlns:xlink="http://www.w3.org/1999/xlink" ><path d="M512 1024a512 512 0 1 1 512-512 512 512 0 0 1-512 512zM512 73.142857a438.857143 438.857143 0 1 0 438.857143 438.857143 438.857143 438.857143 0 0 0-438.857143-438.857143z" p-id="9879"></path><path d="M256 475.428571h512a36.571429 36.571429 0 0 1 36.571429 36.571429 36.571429 36.571429 0 0 1-36.571429 36.571429h-512A36.571429 36.571429 0 0 1 219.428571 512a36.571429 36.571429 0 0 1 36.571429-36.571429z" p-id="9880"></path><path d="M548.571429 256v512a36.571429 36.571429 0 0 1-73.142858 0v-512a36.571429 36.571429 0 0 1 73.142858 0z" p-id="9881"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" >
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2293 4.81275C11.2293 6.59622 9.78352 8.04201 8.00005 8.04201C6.21658 8.04201 4.77079 6.59622 4.77079 4.81275C4.77079 3.02928 6.21658 1.5835 8.00005 1.5835C9.78352 1.5835 11.2293 3.02928 11.2293 4.81275ZM9.89598 4.81275C9.89598 5.85984 9.04714 6.70868 8.00005 6.70868C6.95296 6.70868 6.10413 5.85984 6.10413 4.81275C6.10413 3.76566 6.95296 2.91683 8.00005 2.91683C9.04714 2.91683 9.89598 3.76566 9.89598 4.81275Z" />
<path d="M2.40479 13.2218C2.40479 11.0126 4.19565 9.22177 6.40478 9.22177H8.84078C9.20897 9.22177 9.50745 9.52025 9.50745 9.88844C9.50745 10.2566 9.20897 10.5551 8.84078 10.5551H6.40478C5.01243 10.5551 3.8693 11.6222 3.74864 12.9832H8.84078C9.20897 12.9832 9.50745 13.2817 9.50745 13.6499C9.50745 14.0181 9.20897 14.3165 8.84078 14.3165H3.13812C2.73312 14.3165 2.40479 13.9882 2.40479 13.5832V13.2218Z" />
<path d="M13.1385 9.91359C13.1385 9.5454 12.8401 9.24693 12.4719 9.24693C12.1037 9.24693 11.8052 9.54541 11.8052 9.91359V11.165H10.5538C10.1856 11.165 9.88708 11.4635 9.88708 11.8317C9.88708 12.1999 10.1856 12.4984 10.5538 12.4984H11.8052V13.7498C11.8052 14.118 12.1037 14.4165 12.4719 14.4165C12.8401 14.4165 13.1385 14.118 13.1385 13.7498V12.4984H14.39C14.7582 12.4984 15.0567 12.1999 15.0567 11.8317C15.0567 11.4635 14.7582 11.165 14.39 11.165H13.1385V9.91359Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M15.277 4.64527C13.6911 3.93863 11.9193 3.76357 10.2257 4.1462C8.5322 4.52883 7.00773 5.44865 5.87967 6.76847C4.75162 8.08829 4.08042 9.73741 3.96618 11.4699C3.85195 13.2023 4.30079 14.9253 5.24577 16.3818C6.19076 17.8383 7.58125 18.9503 9.20987 19.552C10.8385 20.1537 12.618 20.2128 14.2829 19.7206C15.9479 19.2283 17.4091 18.211 18.4487 16.8204C19.4883 15.4298 20.0505 13.7404 20.0515 12.0042V11.1721C20.0515 10.6198 20.4992 10.1721 21.0515 10.1721C21.6037 10.1721 22.0515 10.6198 22.0515 11.1721V12.0048C22.0502 14.1723 21.3484 16.2819 20.0506 18.0179C18.7528 19.7539 16.9286 21.0239 14.85 21.6385C12.7715 22.253 10.5499 22.1792 8.51676 21.4281C6.48359 20.6769 4.74769 19.2887 3.56797 17.4704C2.38824 15.652 1.8279 13.5011 1.97052 11.3383C2.11313 9.17546 2.95106 7.1167 4.35933 5.46903C5.7676 3.82136 7.67076 2.67305 9.78496 2.19537C11.8992 1.7177 14.1111 1.93624 16.091 2.81841C16.5955 3.04319 16.8222 3.63437 16.5974 4.13884C16.3727 4.64331 15.7815 4.87005 15.277 4.64527ZM21.7582 4.05106C22.1489 4.44138 22.1492 5.07455 21.7589 5.46527L12.7076 14.5257C12.5201 14.7134 12.2656 14.8189 12.0003 14.8189C11.735 14.819 11.4806 14.7136 11.293 14.526L8.57758 11.8106C8.18705 11.4201 8.18705 10.7869 8.57758 10.3964C8.9681 10.0059 9.60127 10.0059 9.99179 10.3964L11.9997 12.4044L20.344 4.05176C20.7343 3.66104 21.3675 3.66073 21.7582 4.05106Z"
fill="#3370FF" />
</svg>
\ No newline at end of file
<svg t="1711347951866" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6234"
width="128" height="128">
<path
d="M979.2 158.848a32 32 0 0 0-38.4-23.936l-166.848 38.656a32 32 0 0 0-15.808 53.408L794.56 264.64l-194.56 173.568-101.024-95.68a32 32 0 0 0-45.152 1.152l-216.736 227.264A64 64 0 1 0 288 633.6c0-6.944-1.376-13.472-3.424-19.712l193.536-202.944 99.232 93.952a32 32 0 0 0 43.296 0.64L839.04 310.72l41.504 42.976a32 32 0 0 0 53.92-13.92l44.448-165.408a31.84 31.84 0 0 0 0.288-15.52z"
p-id="6235"></path>
<path
d="M928 450.464a32 32 0 0 0-32 32V736a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h530.656a32 32 0 0 0 0-64H160a96 96 0 0 0-96 96v576a96 96 0 0 0 96 96h704a96 96 0 0 0 96-96v-253.536a32 32 0 0 0-32-32zM912 896h-800a32 32 0 0 0 0 64h800a32 32 0 0 0 0-64z"
p-id="6236"></path>
</svg>
\ No newline at end of file
<svg t="1704882994349" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5048"
width="128" height="128">
<path
d="M1024 496C1012.8 232 798.4 17.6 534.4 8 393.6 1.6 259.2 52.8 156.8 150.4 56 248 0 379.2 0 520c0 230.4 155.2 433.6 376 492.8 6.4 1.6 12.8 3.2 19.2 3.2 16 0 32-4.8 44.8-16 17.6-14.4 28.8-35.2 28.8-57.6v-52.8c0-14.4 1.6-78.4 1.6-91.2 1.6-8 3.2-14.4 8-19.2 11.2-14.4 12.8-33.6 4.8-49.6-8-14.4-20.8-24-36.8-25.6-11.2-1.6-22.4-3.2-30.4-6.4-12.8-3.2-25.6-9.6-38.4-16-9.6-4.8-19.2-12.8-27.2-22.4-6.4-8-12.8-20.8-17.6-36.8-6.4-19.2-9.6-40-9.6-62.4 0-28.8 9.6-52.8 27.2-72l17.6-19.2-9.6-24c-3.2-8-6.4-19.2-4.8-38.4 22.4 8 28.8 12.8 28.8 12.8l1.6 1.6c6.4 3.2 11.2 8 16 9.6l19.2 11.2 16-4.8c27.2-8 54.4-11.2 83.2-11.2 28.8 0 56 3.2 83.2 11.2l16 4.8 33.6-20.8c11.2-6.4 22.4-12.8 35.2-17.6 1.6 14.4 0 27.2-4.8 40l-9.6 24 17.6 19.2c17.6 19.2 27.2 43.2 27.2 72 0 24-3.2 43.2-8 60.8-6.4 19.2-12.8 30.4-19.2 38.4-6.4 8-16 16-28.8 24-14.4 8-25.6 11.2-38.4 16-8 3.2-20.8 4.8-32 6.4h-1.6c-16 3.2-28.8 14.4-35.2 28.8-6.4 14.4-4.8 30.4 4.8 44.8 6.4 8 9.6 20.8 9.6 36.8v126.4c0 22.4 11.2 44.8 28.8 57.6 17.6 12.8 41.6 17.6 64 11.2C888 942.4 1035.2 729.6 1024 496zM651.2 931.2V816c0-14.4-1.6-27.2-4.8-38.4 17.6-4.8 35.2-11.2 54.4-22.4l1.6-1.6c20.8-12.8 36.8-25.6 49.6-41.6 16-19.2 25.6-41.6 33.6-64 8-25.6 12.8-52.8 12.8-86.4 0-41.6-11.2-76.8-33.6-108.8 6.4-33.6 3.2-67.2-11.2-104l-6.4-17.6-17.6-6.4c-17.6-6.4-40-4.8-67.2 6.4-17.6 6.4-33.6 14.4-51.2 24l-3.2 3.2c-56-12.8-116.8-12.8-174.4 0-1.6-1.6-3.2-1.6-4.8-3.2-9.6-6.4-24-14.4-46.4-22.4-27.2-12.8-51.2-14.4-70.4-8l-17.6 6.4-6.4 17.6c-14.4 38.4-17.6 72-9.6 104-22.4 30.4-33.6 67.2-33.6 108.8 0 30.4 3.2 57.6 12.8 84.8 8 27.2 19.2 49.6 32 65.6 16 17.6 32 32 51.2 41.6 17.6 9.6 35.2 17.6 54.4 22.4-1.6 4.8-1.6 9.6-3.2 16V843.2c-38.4-12.8-70.4-28.8-96-56-17.6-19.2-36.8-38.4-46.4-44.8-20.8-9.6-33.6 11.2-28.8 20.8 4.8 14.4 25.6 22.4 36.8 33.6 12.8 12.8 14.4 30.4 25.6 44.8 16 22.4 72 49.6 110.4 41.6v51.2C206.4 881.6 80 712 80 520c0-118.4 46.4-228.8 132.8-312C294.4 129.6 400 88 513.6 88h17.6C753.6 96 934.4 276.8 944 499.2c9.6 193.6-110.4 369.6-292.8 432z"
p-id="5049"></path>
</svg>
\ No newline at end of file
<svg t="1721963050324" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4271" width="200" height="200"><path d="M269.844659 81.4308h44.821057v166.626082h-44.821057zM677.140966 491.719232c52.335426 0 102.092273 19.937769 140.105639 56.13883 38.126482 36.31053 60.461599 85.284073 62.891788 137.900467 2.5056 54.276658-16.27424 106.280032-52.881549 146.431672-36.60731 40.15164-86.65972 63.643469-140.936379 66.150285-3.180653 0.147174-6.401444 0.221369-9.576016 0.221369-52.341508 0-102.102004-19.936552-140.114153-56.136398-38.126482-36.309314-60.461599-85.284073-62.891789-137.902899-2.5056-54.276658 16.27424-106.280032 52.88155-146.431672 36.60731-40.15164 86.65972-63.643469 140.936379-66.149069a208.122961 208.122961 0 0 1 9.576016-0.221369h0.008514m-0.00973-44.822274c-3.859355 0-7.746684 0.088791-11.642528 0.268805-136.951744 6.3236-242.847422 122.470346-236.525038 259.422091 6.143586 133.0559 115.942406 236.793842 247.779562 236.793842 3.859355 0 7.747901-0.088791 11.642529-0.268804 136.951744-6.322384 242.847422-122.470346 236.525037-259.422091-6.143586-133.057117-115.942406-236.798708-247.779562-236.793843z" fill="#4E4D4D" p-id="4272"></path><path d="M490.264524 891.110734a272.361206 272.361206 0 0 1-32.682275-37.369937H180.453104c-20.912034 0-37.927007-17.013757-37.927007-37.92579v-590.263526c0-20.912034 17.013757-37.927007 37.927007-37.927007H732.799354c20.912034 0 37.925791 17.013757 37.925791 37.927007V441.15597a268.605238 268.605238 0 0 1 44.821057 21.463023V225.551481c0-45.70045-37.047614-82.746848-82.746848-82.746849H180.453104c-45.70045 0-82.746848 37.047614-82.746848 82.746849v590.263526c0 45.70045 37.047614 82.746848 82.746848 82.746848h317.980164a273.587248 273.587248 0 0 1-8.168744-7.451121z" fill="#4E4D4D" p-id="4273"></path><path d="M770.725145 489.61623a225.243754 225.243754 0 0 1 44.821057 27.231985v-0.21407a225.182938 225.182938 0 0 0-44.821057-27.114003v0.096088zM812.590566 778.530212H646.820768V576.105667h44.821057v157.604704h120.948741zM209.55091 380.121489h498.255687v44.821057H209.55091zM600.682445 81.4308h44.821058v166.626082h-44.821058zM406.842623 712.17437H209.55091v44.821057h203.864657a272.351476 272.351476 0 0 1-6.572944-44.821057zM450.941192 546.147929H209.55091v44.821057h217.435038a268.707408 268.707408 0 0 1 23.955244-44.821057z" p-id="4274"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" >
<path d="M2.3252 6.75C2.1127 6.75 1.93445 6.678 1.79045 6.534C1.64645 6.39 1.5747 6.212 1.5752 6V4.5C1.5752 4.0875 1.7222 3.73425 2.0162 3.44025C2.3102 3.14625 2.6632 2.9995 3.0752 3H15.0752C15.4877 3 15.8409 3.147 16.1349 3.441C16.4289 3.735 16.5757 4.088 16.5752 4.5V6C16.5752 6.2125 16.5032 6.39075 16.3592 6.53475C16.2152 6.67875 16.0372 6.7505 15.8252 6.75C15.6127 6.75 15.4344 6.678 15.2904 6.534C15.1464 6.39 15.0747 6.212 15.0752 6V4.5H3.0752V6C3.0752 6.2125 3.0032 6.39075 2.8592 6.53475C2.7152 6.67875 2.5372 6.7505 2.3252 6.75ZM3.0752 15C2.6627 15 2.30945 14.853 2.01545 14.559C1.72145 14.265 1.5747 13.912 1.5752 13.5V12C1.5752 11.7875 1.6472 11.6093 1.7912 11.4653C1.9352 11.3213 2.1132 11.2495 2.3252 11.25C2.5377 11.25 2.71595 11.322 2.85995 11.466C3.00395 11.61 3.0757 11.788 3.0752 12V13.5H15.0752V12C15.0752 11.7875 15.1472 11.6093 15.2912 11.4653C15.4352 11.3213 15.6132 11.2495 15.8252 11.25C16.0377 11.25 16.2159 11.322 16.3599 11.466C16.5039 11.61 16.5757 11.788 16.5752 12V13.5C16.5752 13.9125 16.4282 14.2658 16.1342 14.5598C15.8402 14.8538 15.4872 15.0005 15.0752 15H3.0752ZM7.5752 12.75C7.7127 12.75 7.84395 12.7155 7.96895 12.6465C8.09395 12.5775 8.1877 12.4745 8.2502 12.3375L10.5752 7.6875L11.4002 9.3375C11.4627 9.475 11.5564 9.57825 11.6814 9.64725C11.8064 9.71625 11.9377 9.7505 12.0752 9.75H15.8252C16.0377 9.75 16.2159 9.678 16.3599 9.534C16.5039 9.39 16.5757 9.212 16.5752 9C16.5752 8.7875 16.5032 8.60925 16.3592 8.46525C16.2152 8.32125 16.0372 8.2495 15.8252 8.25H12.5439L11.2502 5.6625C11.1127 5.4125 10.8877 5.2875 10.5752 5.2875C10.2627 5.2875 10.0377 5.4125 9.9002 5.6625L7.5752 10.3125L6.7502 8.6625C6.6877 8.525 6.59395 8.42175 6.46895 8.35275C6.34395 8.28375 6.2127 8.2495 6.0752 8.25H2.3252C2.1127 8.25 1.93445 8.322 1.79045 8.466C1.64645 8.61 1.5747 8.788 1.5752 9C1.5752 9.2125 1.6472 9.39075 1.7912 9.53475C1.9352 9.67875 2.1132 9.7505 2.3252 9.75H5.60645L6.9002 12.3375C6.9627 12.475 7.05645 12.5783 7.18145 12.6473C7.30645 12.7163 7.4377 12.7505 7.5752 12.75Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18" >
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.100128 1.2C0.100128 0.537258 0.637387 0 1.30013 0H6.90013C7.56287 0 8.10013 0.537258 8.10013 1.2V6.8C8.10013 7.46274 7.56287 8 6.90013 8H1.30013C0.637386 8 0.100128 7.46274 0.100128 6.8V1.2ZM2.10013 6V2H6.10013V6H2.10013Z" fill="#8A95A7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1001 1.2C10.1001 0.537258 10.6374 0 11.3001 0H16.9001C17.5629 0 18.1001 0.537258 18.1001 1.2V6.8C18.1001 7.46274 17.5629 8 16.9001 8H11.3001C10.6374 8 10.1001 7.46274 10.1001 6.8V1.2ZM12.1001 6V2H16.1001V6H12.1001Z" fill="#8A95A7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3001 10C10.6374 10 10.1001 10.5373 10.1001 11.2V16.8C10.1001 17.4627 10.6374 18 11.3001 18H16.9001C17.5629 18 18.1001 17.4627 18.1001 16.8V11.2C18.1001 10.5373 17.5629 10 16.9001 10H11.3001ZM12.1001 12V16H16.1001V12H12.1001Z" fill="#8A95A7"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.100128 11.2C0.100128 10.5373 0.637387 10 1.30013 10H6.90013C7.56287 10 8.10013 10.5373 8.10013 11.2V16.8C8.10013 17.4627 7.56287 18 6.90013 18H1.30013C0.637386 18 0.100128 17.4627 0.100128 16.8V11.2ZM2.10013 16V12H6.10013V16H2.10013Z" fill="#8A95A7"/>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" >
<path d="M4.30013 3C3.63739 3 3.10013 3.53726 3.10013 4.2V9.8C3.10013 10.4627 3.63739 11 4.30013 11H9.90013C10.5629 11 11.1001 10.4627 11.1001 9.8V4.2C11.1001 3.53726 10.5629 3 9.90013 3H4.30013Z" />
<path d="M14.3001 3C13.6374 3 13.1001 3.53726 13.1001 4.2V9.8C13.1001 10.4627 13.6374 11 14.3001 11H19.9001C20.5629 11 21.1001 10.4627 21.1001 9.8V4.2C21.1001 3.53726 20.5629 3 19.9001 3H14.3001Z" />
<path d="M13.1001 14.2C13.1001 13.5373 13.6374 13 14.3001 13H19.9001C20.5629 13 21.1001 13.5373 21.1001 14.2V19.8C21.1001 20.4627 20.5629 21 19.9001 21H14.3001C13.6374 21 13.1001 20.4627 13.1001 19.8V14.2Z" />
<path d="M4.30013 13C3.63739 13 3.10013 13.5373 3.10013 14.2V19.8C3.10013 20.4627 3.63739 21 4.30013 21H9.90013C10.5629 21 11.1001 20.4627 11.1001 19.8V14.2C11.1001 13.5373 10.5629 13 9.90013 13H4.30013Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4.16663 1.66663C4.62686 1.66663 4.99996 2.03972 4.99996 2.49996V5.83329C4.99996 6.29353 4.62686 6.66663 4.16663 6.66663C3.70639 6.66663 3.33329 6.29353 3.33329 5.83329V2.49996C3.33329 2.03972 3.70639 1.66663 4.16663 1.66663ZM9.99996 1.66663C10.4602 1.66663 10.8333 2.03972 10.8333 2.49996V5.14221C11.8043 5.48541 12.5 6.41144 12.5 7.49996C12.5 8.88067 11.3807 9.99996 9.99996 9.99996C8.61925 9.99996 7.49996 8.88067 7.49996 7.49996C7.49996 6.41144 8.19563 5.48541 9.16663 5.14221V2.49996C9.16663 2.03972 9.53972 1.66663 9.99996 1.66663ZM15.8333 1.66663C16.2935 1.66663 16.6666 2.03972 16.6666 2.49996V7.49996C16.6666 7.9602 16.2935 8.33329 15.8333 8.33329C15.3731 8.33329 15 7.9602 15 7.49996V2.49996C15 2.03972 15.3731 1.66663 15.8333 1.66663ZM9.99996 6.66663C9.53972 6.66663 9.16663 7.03972 9.16663 7.49996C9.16663 7.9602 9.53972 8.33329 9.99996 8.33329C10.4602 8.33329 10.8333 7.9602 10.8333 7.49996C10.8333 7.03972 10.4602 6.66663 9.99996 6.66663ZM4.16663 9.99996C3.70639 9.99996 3.33329 10.3731 3.33329 10.8333C3.33329 11.2935 3.70639 11.6666 4.16663 11.6666C4.62686 11.6666 4.99996 11.2935 4.99996 10.8333C4.99996 10.3731 4.62686 9.99996 4.16663 9.99996ZM1.66663 10.8333C1.66663 9.45258 2.78591 8.33329 4.16663 8.33329C5.54734 8.33329 6.66663 9.45258 6.66663 10.8333C6.66663 11.9218 5.97095 12.8478 4.99996 13.191V17.5C4.99996 17.9602 4.62686 18.3333 4.16663 18.3333C3.70639 18.3333 3.33329 17.9602 3.33329 17.5L3.33329 13.191C2.3623 12.8478 1.66663 11.9218 1.66663 10.8333ZM15.8333 11.6666C15.3731 11.6666 15 12.0397 15 12.5C15 12.9602 15.3731 13.3333 15.8333 13.3333C16.2935 13.3333 16.6666 12.9602 16.6666 12.5C16.6666 12.0397 16.2935 11.6666 15.8333 11.6666ZM13.3333 12.5C13.3333 11.1192 14.4526 9.99996 15.8333 9.99996C17.214 9.99996 18.3333 11.1192 18.3333 12.5C18.3333 13.5885 17.6376 14.5145 16.6666 14.8577V17.5C16.6666 17.9602 16.2935 18.3333 15.8333 18.3333C15.3731 18.3333 15 17.9602 15 17.5V14.8577C14.029 14.5145 13.3333 13.5885 13.3333 12.5ZM9.99996 11.6666C10.4602 11.6666 10.8333 12.0397 10.8333 12.5V17.5C10.8333 17.9602 10.4602 18.3333 9.99996 18.3333C9.53972 18.3333 9.16663 17.9602 9.16663 17.5V12.5C9.16663 12.0397 9.53972 11.6666 9.99996 11.6666Z" />
</svg>
\ No newline at end of file
<svg viewBox="0 0 14 16" xmlns="http://www.w3.org/2000/svg">
<path id="Polygon 8 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M4.24277 12.4952L10.0403 9.23726C10.9183 8.74387 11.4621 8.43615 11.8323 8.18154C11.9539 8.09794 12.0294 8.03772 12.0732 7.99999C12.0294 7.96226 11.9539 7.90203 11.8323 7.81844C11.4621 7.56383 10.9183 7.25611 10.0403 6.76272L4.24277 3.50479C3.36511 3.01159 2.81898 2.70681 2.40643 2.52163C2.23511 2.44473 2.1322 2.41044 2.08127 2.3957C2.05236 2.40455 2.02714 2.41733 2.00603 2.43216C1.9951 2.48511 1.98005 2.5748 1.96697 2.71367C1.92612 3.14704 1.9241 3.7532 1.9241 4.74206L1.9241 11.2579C1.9241 12.2468 1.92612 12.8529 1.96697 13.2863C1.98006 13.4252 1.99511 13.5149 2.00603 13.5678C2.02714 13.5826 2.05235 13.5954 2.08127 13.6043C2.1322 13.5895 2.23511 13.5553 2.40643 13.4784C2.81898 13.2932 3.36511 12.9884 4.24277 12.4952ZM13.7929 7.14993C13.5091 6.52957 12.6635 6.05439 10.9724 5.10405L5.17486 1.84612C3.48371 0.895784 2.63813 0.420614 1.94427 0.491596C1.33906 0.55351 0.789265 0.862468 0.431571 1.34166C0.0214848 1.89104 0.0214847 2.84138 0.0214847 4.74206L0.0214844 11.2579C0.0214843 13.1586 0.0214843 14.1089 0.43157 14.6583C0.789264 15.1375 1.33906 15.4465 1.94427 15.5084C2.63813 15.5794 3.48371 15.1042 5.17486 14.1539L10.9724 10.8959C12.6635 9.94558 13.5091 9.47042 13.7929 8.85005C14.0404 8.30895 14.0404 7.69103 13.7929 7.14993Z" fill="#3370FF"/>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1691412437336"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2312"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M512 14.8973037a497.1026963 497.1026963 0 1 0 497.1026963 497.1026963A497.1026963 497.1026963 0 0 0 512 14.8973037z m165.70089876 581.8863224l-207.12612345 124.27567408L346.29910124 796.45320912V255.16360691l125.38034629 75.39390894 207.12612347 124.27567407 118.47614261 70.97521873z"
p-id="2313"></path>
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1699444463613" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2759" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M512 58.02666667c250.31111111 0 453.97333333 203.66222222 453.97333333 453.97333333S762.31111111 965.97333333 512 965.97333333 58.02666667 762.31111111 58.02666667 512s203.66222222-453.97333333 453.97333333-453.97333333m0-47.78666667C234.83733333 10.24 10.24 234.83733333 10.24 512s224.59733333 501.76 501.76 501.76 501.76-224.59733333 501.76-501.76S789.16266667 10.24 512 10.24z" p-id="2760"></path><path d="M430.42133333 723.17155555c-34.01955555 0-61.78133333-27.648-61.78133333-61.78133333V362.496c0-34.01955555 27.76177778-61.78133333 61.78133333-61.78133333 10.69511111 0 21.27644445 2.84444445 30.72 8.30577778L720.09955555 458.52444445c19.34222222 11.15022222 30.83377778 31.17511111 30.83377778 53.47555555s-11.49155555 42.32533333-30.83377778 53.47555555L461.25511111 714.86577778c-9.55733333 5.46133333-20.13866667 8.30577778-30.83377778 8.30577777z m0-374.55644444c-6.71288889 0-13.99466667 5.34755555-13.99466666 13.99466667v298.89422222c0 11.71911111 12.40177778 16.95288889 20.93511111 12.06044445l258.84444444-149.504c6.25777778-3.64088889 6.94044445-9.55733333 6.94044445-12.06044445s-0.68266667-8.41955555-6.94044445-12.06044445L437.36177778 350.43555555c-2.27555555-1.25155555-4.55111111-1.82044445-6.94044445-1.82044444z" p-id="2761"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 19" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M13.8412 2.25558L14.04 2.28053C14.5655 2.35304 15.261 2.4505 15.6547 2.84502C15.9775 3.16702 16.1015 3.69097 16.1756 4.15878L16.2192 4.45974C16.3175 5.16925 16.3432 6.09863 16.1756 7.13093C15.845 9.16824 14.7604 11.5993 12.037 13.4814C12.0222 13.628 12.0214 13.7762 12.0245 13.9243L12.0323 14.1457C12.0448 14.4864 12.0573 14.8264 11.9622 15.1578C11.814 15.6723 11.2862 16.0115 10.7926 16.2548L10.5509 16.3694L10.2391 16.5066C9.65587 16.7545 8.86839 17.0087 8.37485 16.5144C8.07857 16.2189 7.95694 15.7854 7.85792 15.3542L7.82128 15.1928C7.77999 14.9891 7.72794 14.7876 7.66534 14.5894C7.62636 14.4755 7.58426 14.3594 7.53903 14.2424C7.48926 14.3035 7.43643 14.3621 7.38076 14.4178C7.11177 14.6868 6.71023 14.8747 6.37965 15.0065C6.01865 15.1492 5.6101 15.2739 5.23196 15.3768L5.03781 15.4283L4.66591 15.5211L4.32908 15.5991L3.92599 15.6848L3.67415 15.7339C3.54855 15.7572 3.41918 15.7495 3.29719 15.7117C3.17521 15.6738 3.06427 15.6068 2.97395 15.5165C2.88363 15.4261 2.81664 15.3152 2.77875 15.1932C2.74086 15.0712 2.73321 14.9419 2.75646 14.8163L2.82352 14.4802L2.94359 13.936L3.04027 13.5384L3.11356 13.2577C3.21648 12.8803 3.34123 12.4718 3.48469 12.1115C3.61567 11.7802 3.80358 11.3786 4.07257 11.1096L4.13494 11.0496L4.08504 11.0293C3.95179 10.9787 3.81683 10.9326 3.68039 10.8913L3.46442 10.8251C2.92332 10.6613 2.34479 10.4851 1.98536 10.1249C1.54874 9.68906 1.6961 9.02556 1.90661 8.47354L1.99238 8.25991L2.13038 7.94803L2.24499 7.70633C2.48825 7.21357 2.82742 6.68573 3.34201 6.53759C3.61489 6.45962 3.8987 6.45494 4.18406 6.46274L4.35559 6.4682C4.57858 6.47599 4.80079 6.48457 5.01832 6.46352C6.90047 3.73931 9.33152 2.65477 11.3688 2.32419C12.1861 2.19014 13.0177 2.16706 13.8412 2.25558ZM6.19096 12.138C6.06825 12.0472 5.9216 11.9944 5.76915 11.9861C5.61671 11.9777 5.46518 12.0143 5.33331 12.0913L5.24755 12.149L5.17504 12.2137L5.07758 12.3369C4.87486 12.63 4.75947 13.0355 4.6698 13.4144L4.5856 13.7793L4.54583 13.9453L4.69475 13.9095L5.02066 13.8346C5.47132 13.7294 5.97109 13.5929 6.27829 13.3161C6.41186 13.1826 6.49243 13.0052 6.50505 12.8168C6.51767 12.6284 6.46147 12.4418 6.3469 12.2916L6.28297 12.2184L6.26425 12.2004L6.19096 12.138ZM11.7914 6.70054C11.6466 6.55571 11.4748 6.44082 11.2856 6.36242C11.0964 6.28402 10.8936 6.24365 10.6888 6.24361C10.4841 6.24357 10.2813 6.28387 10.0921 6.36221C9.90285 6.44054 9.73092 6.55537 9.58609 6.70015C9.44126 6.84493 9.32636 7.01682 9.24796 7.206C9.16956 7.39518 9.12919 7.59795 9.12915 7.80274C9.12912 8.00752 9.16942 8.21031 9.24775 8.39952C9.32609 8.58873 9.44092 8.76065 9.5857 8.90548C9.87809 9.19798 10.2747 9.36235 10.6883 9.36242C11.1019 9.36249 11.4985 9.19827 11.791 8.90587C12.0835 8.61348 12.2479 8.21687 12.248 7.80329C12.248 7.38971 12.0838 6.99304 11.7914 6.70054Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.4508 3.34193C15.5145 3.34207 16.0569 3.34752 16.4738 3.55992C16.8501 3.75166 17.1561 4.05762 17.3478 4.43395C17.5658 4.86177 17.5658 5.42182 17.5658 6.54193V15.1447C17.5658 16.2648 17.5658 16.8249 17.3478 17.2527C17.1561 17.629 16.8501 17.935 16.4738 18.1268C16.046 18.3447 15.4859 18.3447 14.3658 18.3447H5.7658C4.64569 18.3447 4.08564 18.3447 3.65781 18.1268C3.28149 17.935 2.97553 17.629 2.78378 17.2527C2.5658 16.8249 2.5658 16.2648 2.5658 15.1447V6.54193C2.5658 5.42182 2.5658 4.86177 2.78378 4.43395C2.97553 4.05762 3.28149 3.75166 3.65781 3.55992C4.07464 3.34753 4.61699 3.34207 5.68053 3.34193C5.70859 3.34193 5.73701 3.34193 5.7658 3.34193H7.35174C7.39932 2.69822 7.67081 2.1168 8.08862 1.67526C8.19058 1.56751 8.30125 1.46809 8.4195 1.37813C8.8766 1.0304 9.44704 0.823975 10.0657 0.823975C10.6843 0.823975 11.2548 1.0304 11.7119 1.37813C11.8301 1.46809 11.9408 1.56751 12.0428 1.67526C12.4606 2.1168 12.7321 2.69822 12.7796 3.34193H14.3658C14.3945 3.34193 14.4229 3.34193 14.4508 3.34193ZM14.3658 5.0086H5.7658C5.17824 5.0086 4.83781 5.00989 4.58792 5.03031C4.47782 5.0393 4.41959 5.05004 4.39536 5.05546C4.34762 5.08386 4.30773 5.12376 4.27933 5.1715C4.27391 5.19572 4.26317 5.25395 4.25418 5.36405C4.23376 5.61395 4.23246 5.95438 4.23246 6.54193V15.1447C4.23246 15.7323 4.23376 16.0727 4.25418 16.3226C4.26317 16.4327 4.27391 16.4909 4.27933 16.5152C4.30773 16.5629 4.34762 16.6028 4.39536 16.6312C4.41959 16.6366 4.47782 16.6474 4.58792 16.6564C4.83781 16.6768 5.17824 16.6781 5.7658 16.6781H14.3658C14.9533 16.6781 15.2938 16.6768 15.5437 16.6564C15.6538 16.6474 15.712 16.6366 15.7362 16.6312C15.784 16.6028 15.8239 16.5629 15.8523 16.5152C15.8577 16.491 15.8684 16.4327 15.8774 16.3226C15.8978 16.0727 15.8991 15.7323 15.8991 15.1447V6.54193C15.8991 5.95438 15.8978 5.61395 15.8774 5.36405C15.8684 5.25395 15.8577 5.19572 15.8523 5.1715C15.8239 5.12376 15.784 5.08386 15.7362 5.05546C15.712 5.05004 15.6538 5.0393 15.5437 5.03031C15.2938 5.00989 14.9533 5.0086 14.3658 5.0086ZM15.7501 5.05895L15.7489 5.05857L15.7501 5.05895ZM15.8488 16.5291L15.8492 16.5278L15.8488 16.5291ZM4.38147 16.6277L4.38274 16.6281L4.38147 16.6277ZM9.35453 2.76643C9.19102 2.91579 9.07469 3.11595 9.03053 3.34193H11.1008C11.0567 3.11595 10.9404 2.91579 10.7768 2.76643C10.5893 2.59513 10.3397 2.49064 10.0657 2.49064C9.79167 2.49064 9.54207 2.59513 9.35453 2.76643Z" />
<path
d="M6.0281 7.50999C6.0281 7.04976 6.4012 6.67666 6.86144 6.67666H13.4319C13.8921 6.67666 14.2652 7.04976 14.2652 7.50999C14.2652 7.97023 13.8921 8.34333 13.4319 8.34333H6.86144C6.4012 8.34333 6.0281 7.97023 6.0281 7.50999Z" />
<path
d="M6.0281 10.8433C6.0281 10.3831 6.4012 10.01 6.86144 10.01H13.4319C13.8921 10.01 14.2652 10.3831 14.2652 10.8433C14.2652 11.3036 13.8921 11.6767 13.4319 11.6767H6.86144C6.4012 11.6767 6.0281 11.3036 6.0281 10.8433Z" />
<path
d="M6.0281 14.1767C6.0281 13.7164 6.4012 13.3433 6.86144 13.3433H10.0657C10.5259 13.3433 10.899 13.7164 10.899 14.1767C10.899 14.6369 10.5259 15.01 10.0657 15.01H6.86144C6.4012 15.01 6.0281 14.6369 6.0281 14.1767Z" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1701418384907"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11367"
xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128">
<path
d="M892 928.1H134c-19.9 0-36-16.1-36-36v-758c0-19.9 16.1-36 36-36h314.1c19.9 0 36 16.1 36 36s-16.1 36-36 36H170v686h686V579.6c0-19.9 16.1-36 36-36s36 16.1 36 36v312.5c0 19.9-16.1 36-36 36z"
p-id="11368"></path>
<path
d="M927.9 131.6v-0.5c-0.1-1.7-0.4-3.3-0.7-4.9 0-0.1 0-0.2-0.1-0.3-0.4-1.7-0.9-3.3-1.5-4.9v-0.1c-0.6-1.6-1.4-3.1-2.2-4.6 0-0.1-0.1-0.1-0.1-0.2-0.8-1.4-1.7-2.8-2.7-4.1-0.1-0.1-0.2-0.3-0.3-0.4-0.5-0.6-0.9-1.1-1.4-1.7 0-0.1-0.1-0.1-0.1-0.2-0.5-0.6-1-1.1-1.6-1.6l-0.4-0.4c-0.5-0.5-1.1-1-1.6-1.5l-0.1-0.1c-0.6-0.5-1.2-1-1.9-1.4-0.1-0.1-0.3-0.2-0.4-0.3-1.4-1-2.8-1.8-4.3-2.6l-0.1-0.1c-1.6-0.8-3.2-1.5-4.9-2-1.6-0.5-3.3-1-5-1.2-0.1 0-0.2 0-0.3-0.1l-2.4-0.3h-0.3c-0.7-0.1-1.3-0.1-2-0.1H640.1c-19.9 0-36 16.1-36 36s16.1 36 36 36h165L487.6 487.6c-14.1 14.1-14.1 36.9 0 50.9 7 7 16.2 10.5 25.5 10.5 9.2 0 18.4-3.5 25.5-10.5L856 221v162.8c0 19.9 16.1 36 36 36s36-16.1 36-36V134.1c0-0.8 0-1.7-0.1-2.5z"
p-id="11369"></path>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M2.46341 3.92013C2.1001 4.63317 2.1001 5.56659 2.1001 7.43343V16.7668C2.1001 18.6336 2.1001 19.567 2.46341 20.2801C2.78299 20.9073 3.29292 21.4172 3.92013 21.7368C4.63317 22.1001 5.56659 22.1001 7.43343 22.1001H16.7668C18.6336 22.1001 19.567 22.1001 20.2801 21.7368C20.9073 21.4172 21.4172 20.9073 21.7368 20.2801C22.1001 19.567 22.1001 18.6336 22.1001 16.7668V9.12841C22.1001 8.58488 22.1001 8.31311 22.0387 8.05736C21.9843 7.83061 21.8945 7.61385 21.7726 7.41502C21.6352 7.19076 21.443 6.99859 21.0587 6.61426L17.5859 3.1415C17.2016 2.75716 17.0094 2.56499 16.7852 2.42756C16.5863 2.30572 16.3696 2.21594 16.1428 2.1615C15.8871 2.1001 15.6153 2.1001 15.0718 2.1001H7.43343C5.56659 2.1001 4.63317 2.1001 3.92013 2.46341C3.29292 2.78299 2.78299 3.29292 2.46341 3.92013ZM15.7762 4.34475C15.6378 4.20639 15.5687 4.13721 15.4879 4.08774C15.4163 4.04387 15.3383 4.01155 15.2567 3.99195C15.1646 3.96985 15.0668 3.96985 14.8711 3.96985H8.34351C7.89546 3.96985 7.67144 3.96985 7.50031 4.05704C7.34978 4.13374 7.2274 4.25613 7.1507 4.40666C7.06351 4.57779 7.06351 4.80181 7.06351 5.24985V6.76131C7.06351 7.20935 7.06351 7.43337 7.1507 7.6045C7.2274 7.75503 7.34978 7.87741 7.50031 7.95411C7.67144 8.04131 7.89546 8.04131 8.34351 8.04131H15.8474C16.2954 8.04131 16.5194 8.04131 16.6906 7.95411C16.8411 7.87741 16.9635 7.75503 17.0402 7.6045C17.1274 7.43337 17.1274 7.20935 17.1274 6.76131V6.22613C17.1274 6.03046 17.1274 5.93262 17.1053 5.84055C17.0857 5.75892 17.0534 5.68089 17.0095 5.60931C16.96 5.52859 16.8908 5.45941 16.7525 5.32107L15.7762 4.34475ZM7.06351 14.171C7.06351 13.7229 7.06351 13.4989 7.15071 13.3278C7.22741 13.1773 7.34979 13.0549 7.50032 12.9782C7.67145 12.891 7.89547 12.891 8.34351 12.891H15.8474C16.2954 12.891 16.5195 12.891 16.6906 12.9782C16.8411 13.0549 16.9635 13.1773 17.0402 13.3278C17.1274 13.4989 17.1274 13.7229 17.1274 14.171V18.5985C17.1274 19.0465 17.1274 19.2706 17.0402 19.4417C16.9635 19.5922 16.8411 19.7146 16.6906 19.7913C16.5195 19.8785 16.2954 19.8785 15.8474 19.8785H8.34351C7.89547 19.8785 7.67145 19.8785 7.50032 19.7913C7.34979 19.7146 7.22741 19.5922 7.15071 19.4417C7.06351 19.2706 7.06351 19.0465 7.06351 18.5985V14.171Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18" >
<path d="M13.4032 6C14.7396 6 15.4088 7.61571 14.4639 8.56066L10.6388 12.3858C10.053 12.9715 9.10324 12.9715 8.51745 12.3858L4.69235 8.56066C3.7474 7.61571 4.41665 6 5.75301 6H13.4032Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16" >
<path d="M6.06201 4.59968C6.06201 3.41181 7.4982 2.81692 8.33815 3.65687L11.7382 7.05696C12.2589 7.57766 12.2589 8.42188 11.7382 8.94258L8.33815 12.3427C7.4982 13.1826 6.06201 12.5877 6.06201 11.3999V4.59968Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18" >
<path d="M13.4032 12.0751C14.7396 12.0751 15.4088 10.4594 14.4639 9.51441L10.6388 5.68931C10.053 5.10352 9.10324 5.10352 8.51745 5.68931L4.69235 9.51441C3.7474 10.4594 4.41665 12.0751 5.75301 12.0751H13.4032Z" />
</svg>
\ No newline at end of file
<svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.14996 9C3.14996 8.58579 3.48575 8.25 3.89996 8.25H14.1C14.5142 8.25 14.85 8.58579 14.85 9C14.85 9.41421 14.5142 9.75 14.1 9.75H3.89996C3.48575 9.75 3.14996 9.41421 3.14996 9Z" fill="#485264"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698673301556" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4065" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M843.693959 293.609061 425.255869 712.056362 186.145026 472.947566 66.579883 592.504522 425.255869 951.165158 963.260126 413.174204Z" p-id="4066"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 24" >
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.07144 6.34314C9.07144 6.89543 9.51916 7.34315 10.0714 7.34314H16.1425L6.53591 16.9497C6.14539 17.3403 6.14539 17.9734 6.53591 18.364C6.92643 18.7545 7.5596 18.7545 7.95012 18.364L17.5567 8.75736L17.5567 14.8284C17.5567 15.3807 18.0044 15.8284 18.5567 15.8284C19.109 15.8284 19.5567 15.3807 19.5567 14.8284L19.5567 6.34314C19.5567 5.79086 19.109 5.34314 18.5567 5.34315H10.0714C9.51916 5.34314 9.07144 5.79086 9.07144 6.34314Z" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1689059818626" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2851" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M370.675057 293.943709c-20.172608-25.93621-17.290806-66.281425 8.645403-86.454032 25.93621-23.054409 66.281425-17.290806 86.454032 8.645403 69.163226 83.572231 103.744839 190.198871 103.744839 299.707312 0 106.62664-34.581613 213.253279-103.744839 296.82551-20.172608 25.93621-60.517823 31.699812-86.454032 8.645403-25.93621-20.172608-28.818011-60.517823-8.645403-86.454032 48.990618-60.517823 74.926828-138.326451 74.926827-219.016881s-25.93621-161.38086-74.926827-221.898683z m288.180107-184.435268c-23.054409-25.93621-20.172608-66.281425 8.645403-89.335833s69.163226-20.172608 92.217634 8.645403c109.508441 135.44465 164.262661 311.234516 164.262661 487.024381 0 172.908064-54.75422 348.69793-164.262661 484.14258-23.054409 28.818011-63.399624 31.699812-92.217634 8.645403-28.818011-20.172608-31.699812-63.399624-8.645403-89.335833 89.335833-112.390242 135.44465-259.362096 135.44465-403.45215 0-146.971855-46.108817-293.943709-135.44465-406.333951zM108.431159 449.560967c-17.290806-25.93621-14.409005-60.517823 8.645403-80.69043 23.054409-17.290806 60.517823-14.409005 77.808629 8.645403 31.699812 37.463414 48.990618 89.335833 48.990618 138.326452s-17.290806 97.981236-48.990618 135.44465c-17.290806 23.054409-54.75422 28.818011-77.808629 8.645403s-25.93621-54.75422-8.645403-77.808629c14.409005-20.172608 23.054409-43.227016 23.054409-66.281424 0-25.93621-8.645403-48.990618-23.054409-66.281425z" p-id="2852"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9ZM8.25 11.25V12.75H9.75V11.25H8.25ZM9.75 10.5L9.75 5.25H8.25L8.25 10.5H9.75Z" fill="#FF7D00"/>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 22" >
<path d="M18.5 21C18.5 21.5523 18.0523 22 17.5 22C16.9477 22 16.5 21.5523 16.5 21C16.5 20.4477 16.9477 20 17.5 20C18.0523 20 18.5 20.4477 18.5 21Z" fill="url(#paint0_linear_26760_132520)"/>
<path d="M22.5 17C22.5 17.5523 22.0523 18 21.5 18C20.9477 18 20.5 17.5523 20.5 17C20.5 16.4477 20.9477 16 21.5 16C22.0523 16 22.5 16.4477 22.5 17Z" fill="url(#paint1_linear_26760_132520)"/>
<path d="M2.5 5C2.5 5.55228 2.05228 6 1.5 6C0.947715 6 0.5 5.55228 0.5 5C0.5 4.44772 0.947715 4 1.5 4C2.05228 4 2.5 4.44772 2.5 5Z" fill="url(#paint2_linear_26760_132520)"/>
<path d="M6.5 1C6.5 1.55228 6.05228 2 5.5 2C4.94772 2 4.5 1.55228 4.5 1C4.5 0.447715 4.94772 0 5.5 0C6.05228 0 6.5 0.447715 6.5 1Z" fill="url(#paint3_linear_26760_132520)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 5.48292L10.8478 8.17257C10.5871 9.24768 9.74768 10.0871 8.67257 10.3478L5.98292 11L8.67257 11.6522C9.74768 11.9129 10.5871 12.7523 10.8478 13.8274L11.5 16.5171L12.1522 13.8274C12.4129 12.7523 13.2523 11.9129 14.3274 11.6522L17.0171 11L14.3274 10.3478C13.2523 10.0871 12.4129 9.24768 12.1522 8.17257L11.5 5.48292ZM12.8052 4.02656C12.4733 2.65781 10.5267 2.65781 10.1948 4.02656L9.28151 7.79277C9.16301 8.28146 8.78146 8.66301 8.29277 8.78151L4.52656 9.69476C3.15781 10.0267 3.15781 11.9733 4.52656 12.3052L8.29277 13.2185C8.78146 13.337 9.16301 13.7185 9.28151 14.2072L10.1948 17.9734C10.5267 19.3422 12.4733 19.3422 12.8052 17.9734L13.7185 14.2072C13.837 13.7185 14.2185 13.337 14.7072 13.2185L18.4734 12.3052C19.8422 11.9733 19.8422 10.0267 18.4734 9.69476L14.7072 8.78151C14.2185 8.66301 13.837 8.28146 13.7185 7.79277L12.8052 4.02656Z" fill="url(#paint4_linear_26760_132520)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.50462 21.3147C8.33081 21.7804 7.81241 22.017 7.34673 21.8432C4.3303 20.7173 1.90732 18.3801 0.669734 15.4228C0.477847 14.9643 0.694 14.4371 1.15252 14.2452C1.61105 14.0533 2.13831 14.2694 2.3302 14.728C3.3762 17.2274 5.42654 19.2052 7.97615 20.1568C8.44183 20.3306 8.67843 20.849 8.50462 21.3147Z" fill="url(#paint5_linear_26760_132520)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.8153 8.02077C21.3498 8.19493 20.8312 7.95873 20.657 7.49319C19.6979 4.92954 17.6971 2.87072 15.1693 1.83251C14.7095 1.64366 14.4899 1.11784 14.6787 0.658056C14.8676 0.198271 15.3934 -0.0213681 15.8532 0.167478C18.8427 1.39533 21.2076 3.82798 22.3429 6.86246C22.5171 7.32801 22.2809 7.8466 21.8153 8.02077Z" fill="url(#paint6_linear_26760_132520)"/>
<defs>
<linearGradient id="paint0_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint1_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint2_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint3_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint4_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint5_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
<linearGradient id="paint6_linear_26760_132520" x1="4.21974e-07" y1="-2.5" x2="22" y2="24.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#659BFF"/>
<stop offset="1" stop-color="#5E3EFF"/>
</linearGradient>
</defs>
</svg>
\ No newline at end of file
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="24" height="24" rx="4" fill="url(#paint0_linear_31554_13583)"/>
<mask id="mask0_31554_13583" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="4" width="16" height="16">
<rect x="4" y="4" width="16" height="16" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_31554_13583)">
<path d="M14.6667 12.6667C14.8556 12.6667 15.0139 12.6028 15.1417 12.475C15.2694 12.3472 15.3333 12.1889 15.3333 12C15.3333 11.8111 15.2694 11.6528 15.1417 11.525C15.0139 11.3972 14.8556 11.3333 14.6667 11.3333H12C11.8111 11.3333 11.6528 11.3972 11.525 11.525C11.3972 11.6528 11.3333 11.8111 11.3333 12C11.3333 12.1889 11.3972 12.3472 11.525 12.475C11.6528 12.6028 11.8111 12.6667 12 12.6667H14.6667ZM14.6667 10C14.8556 10 15.0139 9.93611 15.1417 9.80833C15.2694 9.68056 15.3333 9.52222 15.3333 9.33333C15.3333 9.14444 15.2694 8.98611 15.1417 8.85833C15.0139 8.73056 14.8556 8.66667 14.6667 8.66667H12C11.8111 8.66667 11.6528 8.73056 11.525 8.85833C11.3972 8.98611 11.3333 9.14444 11.3333 9.33333C11.3333 9.52222 11.3972 9.68056 11.525 9.80833C11.6528 9.93611 11.8111 10 12 10H14.6667ZM15.3333 17.3333H14C13.8111 17.3333 13.6528 17.2694 13.525 17.1417C13.3972 17.0139 13.3333 16.8556 13.3333 16.6667C13.3333 16.4778 13.3972 16.3194 13.525 16.1917C13.6528 16.0639 13.8111 16 14 16H15.3333V14.6667C15.3333 14.4778 15.3972 14.3194 15.525 14.1917C15.6528 14.0639 15.8111 14 16 14C16.1889 14 16.3472 14.0639 16.475 14.1917C16.6028 14.3194 16.6667 14.4778 16.6667 14.6667V16H18C18.1889 16 18.3472 16.0639 18.475 16.1917C18.6028 16.3194 18.6667 16.4778 18.6667 16.6667C18.6667 16.8556 18.6028 17.0139 18.475 17.1417C18.3472 17.2694 18.1889 17.3333 18 17.3333H16.6667V18.6667C16.6667 18.8556 16.6028 19.0139 16.475 19.1417C16.3472 19.2694 16.1889 19.3333 16 19.3333C15.8111 19.3333 15.6528 19.2694 15.525 19.1417C15.3972 19.0139 15.3333 18.8556 15.3333 18.6667V17.3333ZM9.33333 15.3333C9.52222 15.3333 9.68056 15.2694 9.80833 15.1417C9.93611 15.0139 10 14.8556 10 14.6667C10 14.4778 9.93611 14.3194 9.80833 14.1917C9.68056 14.0639 9.52222 14 9.33333 14C9.14444 14 8.98611 14.0639 8.85833 14.1917C8.73056 14.3194 8.66667 14.4778 8.66667 14.6667C8.66667 14.8556 8.73056 15.0139 8.85833 15.1417C8.98611 15.2694 9.14444 15.3333 9.33333 15.3333ZM9.33333 12.6667C9.52222 12.6667 9.68056 12.6028 9.80833 12.475C9.93611 12.3472 10 12.1889 10 12C10 11.8111 9.93611 11.6528 9.80833 11.525C9.68056 11.3972 9.52222 11.3333 9.33333 11.3333C9.14444 11.3333 8.98611 11.3972 8.85833 11.525C8.73056 11.6528 8.66667 11.8111 8.66667 12C8.66667 12.1889 8.73056 12.3472 8.85833 12.475C8.98611 12.6028 9.14444 12.6667 9.33333 12.6667ZM9.33333 10C9.52222 10 9.68056 9.93611 9.80833 9.80833C9.93611 9.68056 10 9.52222 10 9.33333C10 9.14444 9.93611 8.98611 9.80833 8.85833C9.68056 8.73056 9.52222 8.66667 9.33333 8.66667C9.14444 8.66667 8.98611 8.73056 8.85833 8.85833C8.73056 8.98611 8.66667 9.14444 8.66667 9.33333C8.66667 9.52222 8.73056 9.68056 8.85833 9.80833C8.98611 9.93611 9.14444 10 9.33333 10ZM7.33333 18C6.96667 18 6.65278 17.8694 6.39167 17.6083C6.13056 17.3472 6 17.0333 6 16.6667V7.33333C6 6.96667 6.13056 6.65278 6.39167 6.39167C6.65278 6.13056 6.96667 6 7.33333 6H16.6667C17.0333 6 17.3472 6.13056 17.6083 6.39167C17.8694 6.65278 18 6.96667 18 7.33333V12.35C18 12.55 17.9139 12.7056 17.7417 12.8167C17.5694 12.9278 17.3889 12.9444 17.2 12.8667C17.0111 12.8111 16.8139 12.7667 16.6083 12.7333C16.4028 12.7 16.2 12.6833 16 12.6833C15.4111 12.6833 14.8611 12.8 14.35 13.0333C13.8389 13.2667 13.4 13.5889 13.0333 14H12C11.8111 14 11.6528 14.0639 11.525 14.1917C11.3972 14.3194 11.3333 14.4778 11.3333 14.6667C11.3333 14.8556 11.3972 15.0139 11.525 15.1417C11.6528 15.2694 11.8111 15.3333 12 15.3333H12.2333C12.1556 15.5444 12.0972 15.7611 12.0583 15.9833C12.0194 16.2056 12 16.4333 12 16.6667C12 16.7556 12.0028 16.85 12.0083 16.95C12.0139 17.05 12.0222 17.1444 12.0333 17.2333C12.0556 17.4333 12.0083 17.6111 11.8917 17.7667C11.775 17.9222 11.6222 18 11.4333 18H7.33333Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_31554_13583" x1="0" y1="0" x2="24" y2="24" gradientUnits="userSpaceOnUse">
<stop stop-color="#00FFC4"/>
<stop offset="1" stop-color="#00C2FF"/>
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_26760_132256)">
<g filter="url(#filter0_if_26760_132256)">
<circle cx="12.5" cy="12.5" r="16.5" fill="url(#paint0_radial_26760_132256)"/>
</g>
<g filter="url(#filter1_d_26760_132256)">
<path d="M10.2593 6.586C10.7078 5.2735 12.5213 5.23375 13.053 6.46675L13.098 6.58675L13.7033 8.35675C13.842 8.76267 14.0661 9.13413 14.3606 9.44607C14.6551 9.758 15.013 10.0032 15.4103 10.165L15.573 10.2257L17.343 10.8303C18.6555 11.2788 18.6953 13.0922 17.463 13.624L17.343 13.669L15.573 14.2743C15.167 14.4129 14.7954 14.637 14.4833 14.9314C14.1712 15.2259 13.926 15.5839 13.764 15.9813L13.7033 16.1432L13.0988 17.914C12.6503 19.2265 10.8368 19.2662 10.3058 18.034L10.2593 17.914L9.65478 16.144C9.51617 15.7379 9.29206 15.3663 8.99759 15.0543C8.70312 14.7422 8.34513 14.4969 7.94778 14.335L7.78578 14.2743L6.01578 13.6698C4.70253 13.2212 4.66278 11.4077 5.89578 10.8767L6.01578 10.8303L7.78578 10.2257C8.19171 10.087 8.56317 9.8629 8.8751 9.56843C9.18704 9.27396 9.43219 8.91602 9.59403 8.51875L9.65478 8.35675L10.2593 6.586ZM17.679 4C17.8193 4 17.9568 4.03936 18.0759 4.1136C18.195 4.18785 18.2908 4.294 18.3525 4.42L18.3885 4.50775L18.651 5.27725L19.4213 5.53975C19.5619 5.58752 19.6852 5.67596 19.7755 5.79386C19.8658 5.91176 19.919 6.05381 19.9285 6.20202C19.938 6.35022 19.9032 6.4979 19.8287 6.62634C19.7542 6.75478 19.6432 6.8582 19.5098 6.9235L19.4213 6.9595L18.6518 7.222L18.3893 7.99225C18.3414 8.13282 18.2529 8.25602 18.135 8.34624C18.017 8.43647 17.875 8.48964 17.7268 8.49904C17.5786 8.50844 17.4309 8.47363 17.3025 8.39903C17.1741 8.32443 17.0708 8.2134 17.0055 8.08L16.9695 7.99225L16.707 7.22275L15.9368 6.96025C15.7962 6.91248 15.6729 6.82404 15.5826 6.70614C15.4923 6.58824 15.4391 6.44619 15.4296 6.29798C15.4201 6.14978 15.4548 6.0021 15.5294 5.87366C15.6039 5.74522 15.7149 5.6418 15.8483 5.5765L15.9368 5.5405L16.7063 5.278L16.9688 4.50775C17.0194 4.35957 17.115 4.23093 17.2424 4.13987C17.3698 4.04882 17.5225 3.99991 17.679 4Z" fill="white"/>
</g>
</g>
<defs>
<filter id="filter0_if_26760_132256" x="-7" y="-7" width="39" height="39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dx="1" dy="1"/>
<feGaussianBlur stdDeviation="0.4"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_26760_132256"/>
<feGaussianBlur stdDeviation="1.5" result="effect2_foregroundBlur_26760_132256"/>
</filter>
<filter id="filter1_d_26760_132256" x="-6" y="-7" width="36.9301" height="36.9292" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="5.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_26760_132256"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_26760_132256" result="shape"/>
</filter>
<radialGradient id="paint0_radial_26760_132256" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(23 0.499999) rotate(133.069) scale(31.4841)">
<stop stop-color="#FF00F0"/>
<stop offset="0.372517" stop-color="#DF8856"/>
<stop offset="0.453773" stop-color="#FACB66"/>
<stop offset="0.507813" stop-color="white"/>
<stop offset="0.61055" stop-color="#6CCF94"/>
<stop offset="0.678775" stop-color="#2397E5"/>
<stop offset="0.893417" stop-color="#2C009C"/>
</radialGradient>
<clipPath id="clip0_26760_132256">
<rect width="24" height="24" rx="4" fill="white"/>
</clipPath>
</defs>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1688883703351" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1412" xmlns:xlink="http://www.w3.org/1999/xlink" ><path d="M238.93333333 512l87.04 116.05333333a34.13333333 34.13333333 0 0 1-54.61333333 40.96l-102.4-136.53333333a34.0992 34.0992 0 0 1 0-40.96l102.4-136.53333333a34.13333333 34.13333333 0 0 1 54.61333333 40.96L238.93333333 512zM680.96 628.05333333a34.13333333 34.13333333 0 0 0 54.61333333 40.96l102.4-136.53333333a34.0992 34.0992 0 0 0 0-40.96l-102.4-136.53333333a34.13333333 34.13333333 0 0 0-54.61333333 40.96L768 512l-87.04 116.05333333zM502.64746667 655.94026667a34.13333333 34.13333333 0 1 1-66.62826667-14.81386667l68.26666667-307.2a34.13333333 34.13333333 0 1 1 66.62826666 14.81386667l-68.26666666 307.2z" p-id="1413"></path><path d="M136.53333333 119.46666667a34.13333333 34.13333333 0 0 0-34.13333333 34.13333333V887.46666667a34.13333333 34.13333333 0 0 0 34.13333333 34.13333333h733.86666667a34.13333333 34.13333333 0 0 0 34.13333333-34.13333333V153.6a34.13333333 34.13333333 0 0 0-34.13333333-34.13333333H136.53333333z m0-68.26666667h733.86666667a102.4 102.4 0 0 1 102.4 102.4V887.46666667a102.4 102.4 0 0 1-102.4 102.4H136.53333333a102.4 102.4 0 0 1-102.4-102.4V153.6a102.4 102.4 0 0 1 102.4-102.4z" p-id="1414"></path></svg>
\ No newline at end of file
<svg viewBox="0 0 24 24">
<path d="M15.9762 22H11.9974V19.9556C11.9974 19.8624 11.9889 19.7693 11.972 19.6762C11.9551 19.5831 11.9254 19.4942 11.8873 19.4053C11.8492 19.3164 11.8069 19.236 11.7519 19.1598C11.6969 19.0836 11.6376 19.0116 11.5699 18.9439C11.227 18.6053 10.7276 18.4148 10.2069 18.4233C10.0926 18.4233 9.97835 18.436 9.86406 18.4571C9.74978 18.4783 9.63972 18.5079 9.52967 18.5503C9.41962 18.5926 9.31803 18.6392 9.21644 18.6984C9.11486 18.7577 9.02173 18.8254 8.93708 18.9016C8.70427 19.109 8.42914 19.4603 8.42914 19.9937V22H4.47993C4.39951 22 4.31909 21.9958 4.23867 21.9873C4.15824 21.9788 4.07782 21.9661 3.9974 21.9534C3.91697 21.9365 3.84078 21.9196 3.76036 21.8942C3.68417 21.8688 3.60798 21.8434 3.53179 21.8138C3.4556 21.7841 3.38364 21.746 3.31168 21.7079C3.23972 21.6698 3.172 21.6275 3.10427 21.581C3.03655 21.5344 2.97306 21.4878 2.90956 21.437C2.84607 21.3862 2.78681 21.3312 2.72755 21.272C2.66829 21.2127 2.6175 21.1534 2.56247 21.0899C2.51168 21.0265 2.46089 20.963 2.41856 20.8952C2.372 20.8275 2.32967 20.7598 2.29158 20.6878C2.25348 20.6159 2.21962 20.5439 2.18576 20.4677C2.15613 20.3915 2.1265 20.3153 2.10533 20.2392C2.07993 20.163 2.063 20.0825 2.04607 20.0021C2.02914 19.9217 2.01644 19.8413 2.01221 19.7608C2.00374 19.6804 1.99951 19.6 1.99951 19.5196V15.5746H4.03972C4.45031 15.5746 4.84819 15.4011 5.16142 15.0836C5.25031 14.9947 5.3265 14.9016 5.39422 14.7958C5.46195 14.6942 5.5212 14.5841 5.56777 14.4698C5.61433 14.3556 5.64819 14.237 5.67359 14.1143C5.69898 13.9915 5.70745 13.8688 5.70745 13.746C5.69052 12.7979 4.91168 11.9979 4.00163 11.9979H1.99951V8.01058C1.99951 7.84974 2.01644 7.68889 2.04607 7.52804C2.07994 7.3672 2.1265 7.21481 2.18999 7.06667C2.25348 6.91852 2.32967 6.7746 2.42279 6.64339C2.51591 6.50794 2.62173 6.38519 2.73602 6.27513C2.85031 6.16508 2.97729 6.06349 3.11274 5.9746C3.24819 5.88571 3.3921 5.81376 3.54025 5.7545C3.6884 5.69524 3.84501 5.64868 4.00163 5.61905C4.15824 5.58942 4.31909 5.57249 4.47993 5.57672H7.30322V4.92487C7.30322 4.87831 7.30322 4.82751 7.30745 4.78095C7.31168 4.73439 7.31168 4.6836 7.32015 4.63704C7.32438 4.59048 7.33284 4.53968 7.33708 4.49312C7.34554 4.44656 7.35401 4.39577 7.36247 4.34921C7.37094 4.30265 7.38364 4.25608 7.39634 4.20952L7.43443 4.06984C7.44713 4.02328 7.46406 3.97672 7.48099 3.93016C7.49792 3.8836 7.51486 3.84127 7.53179 3.79471C7.54872 3.74815 7.56988 3.70582 7.59105 3.66349C7.61221 3.62116 7.63337 3.5746 7.65877 3.53228C7.67993 3.48995 7.70533 3.44762 7.73073 3.40529C7.75612 3.36296 7.78152 3.32487 7.81115 3.28254C7.83655 3.24444 7.86618 3.20212 7.89581 3.16402L7.9847 3.04974C8.01433 3.01164 8.04819 2.97778 8.08205 2.93968C8.11591 2.90582 8.14978 2.86772 8.18364 2.83386C8.2175 2.8 8.2556 2.76614 8.28946 2.73651C8.32755 2.70265 8.36142 2.67302 8.39951 2.64339L8.5138 2.5545C8.55189 2.52487 8.59422 2.49947 8.63232 2.47407C8.67041 2.44868 8.71274 2.42328 8.75507 2.39788C8.79739 2.37249 8.83972 2.35132 8.88205 2.32593C8.92438 2.30476 8.96671 2.2836 9.01327 2.26243C9.0556 2.24127 9.10216 2.22434 9.14872 2.20741C9.19528 2.19048 9.23761 2.17355 9.28417 2.15661C9.33073 2.13968 9.37729 2.12698 9.42385 2.11429L9.56353 2.07619C9.61009 2.06349 9.65665 2.05503 9.70745 2.04656C9.75824 2.0381 9.8048 2.02963 9.85136 2.0254C9.89792 2.02116 9.94872 2.0127 9.99528 2.00847C10.0418 2.00423 10.0926 2 10.1392 2H10.2831C11.8662 2.02963 13.1572 3.3545 13.1572 4.96296V5.57249H15.9762C16.0567 5.57249 16.1371 5.57672 16.2175 5.58095C16.2979 5.58942 16.3783 5.59788 16.4545 5.61481C16.535 5.63175 16.6112 5.64868 16.6873 5.66984C16.7635 5.691 16.8397 5.72064 16.9159 5.75026C16.9921 5.77989 17.0641 5.81376 17.136 5.85185C17.208 5.88995 17.2757 5.93227 17.3434 5.9746C17.4112 6.01693 17.4746 6.06772 17.5381 6.11852C17.6016 6.16931 17.6609 6.22434 17.7159 6.27937C17.7709 6.33439 17.826 6.39788 17.8768 6.45714C17.9276 6.52064 17.9741 6.58413 18.0207 6.65185C18.0672 6.71958 18.1053 6.7873 18.1434 6.85926C18.1815 6.93122 18.2154 7.00317 18.245 7.07936C18.2746 7.15556 18.3 7.23175 18.3254 7.30794C18.3466 7.38413 18.3678 7.46455 18.3805 7.54074C18.3974 7.62116 18.4059 7.69735 18.4143 7.77778C18.4228 7.8582 18.4228 7.93862 18.4228 8.01905V10.8423H19.0323C20.6662 10.8423 21.9953 12.1376 21.9953 13.7291C21.9953 15.363 20.6831 16.6921 19.0704 16.6921H18.4228V19.5153C18.427 20.8825 17.3265 22 15.9762 22Z"/>
</svg>
\ No newline at end of file
<svg viewBox="0 0 24 24">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9614 7.583L11.9095 5.63624C11.8856 4.7371 11.148 4.01468 10.2423 4.01468C9.33664 4.01468 8.59906 4.7371 8.57511 5.63624L8.52327 7.583H4.5C4.22386 7.583 4 7.80685 4 8.083V10.3728C5.86427 10.4434 7.35394 11.977 7.35394 13.8586C7.35394 15.7401 5.86427 17.2737 4 17.3444V19.51C4 19.7861 4.22386 20.01 4.5 20.01H6.85111C6.97393 18.2442 8.44528 16.8499 10.2423 16.8499C12.0393 16.8499 13.5106 18.2442 13.6335 20.01H15.9269C16.2031 20.01 16.4269 19.7861 16.4269 19.51V15.6073L18.3634 15.5457C19.2691 15.5169 19.9954 14.7723 19.9954 13.8587C19.9954 12.9452 19.2691 12.2006 18.3634 12.1718L16.4269 12.1102V8.083C16.4269 7.80686 16.2031 7.583 15.9269 7.583H11.9614ZM11.6418 22.01V20.2494C11.6418 19.4764 11.0152 18.8499 10.2423 18.8499C9.46938 18.8499 8.84281 19.4764 8.84281 20.2494V22.01H4.5C3.11929 22.01 2 20.8907 2 19.51V15.3469H3.8656C4.68759 15.3469 5.35394 14.6805 5.35394 13.8586C5.35394 13.0366 4.68759 12.3702 3.8656 12.3702L2 12.3702V8.083C2 6.70229 3.11929 5.583 4.5 5.583H6.57582C6.62855 3.60332 8.24991 2.01468 10.2423 2.01468C12.2347 2.01468 13.8561 3.60332 13.9088 5.583H15.9269C17.3077 5.583 18.4269 6.70229 18.4269 8.083V10.1728C20.4084 10.2358 21.9954 11.8619 21.9954 13.8587C21.9954 15.8555 20.4084 17.4817 18.4269 17.5447V19.51C18.4269 20.8907 17.3077 22.01 15.9269 22.01H11.6418Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M1.66675 7.97028C1.66675 6.0661 1.66675 5.11401 2.03733 4.38671C2.3633 3.74695 2.88343 3.22682 3.52318 2.90085C4.25048 2.53027 5.20257 2.53027 7.10675 2.53027H12.8934C14.7976 2.53027 15.7497 2.53027 16.477 2.90085C17.1167 3.22682 17.6369 3.74695 17.9628 4.38671C18.3334 5.11401 18.3334 6.06609 18.3334 7.97027V10.9413C18.3334 12.8455 18.3334 13.7976 17.9628 14.5249C17.6369 15.1647 17.1167 15.6848 16.477 16.0108C15.7497 16.3814 14.7976 16.3814 12.8934 16.3814H10.0744L7.42003 18.5835C6.99384 18.937 6.34598 18.7611 6.15717 18.2405L5.4777 16.3672C4.58619 16.3392 4.0053 16.2564 3.52318 16.0108C2.88343 15.6848 2.3633 15.1647 2.03733 14.5249C1.66675 13.7976 1.66675 12.8455 1.66675 10.9414V7.97028ZM6.38847 9.48176C6.98678 9.48176 7.4718 8.99673 7.4718 8.39843C7.4718 7.80012 6.98678 7.31509 6.38847 7.31509C5.79016 7.31509 5.30514 7.80012 5.30514 8.39843C5.30514 8.99673 5.79016 9.48176 6.38847 9.48176ZM14.695 8.39843C14.695 8.99673 14.21 9.48176 13.6117 9.48176C13.0134 9.48176 12.5284 8.99673 12.5284 8.39843C12.5284 7.80012 13.0134 7.31509 13.6117 7.31509C14.21 7.31509 14.695 7.80012 14.695 8.39843ZM12.7802 11.6057C13.0281 11.3091 12.9887 10.8677 12.692 10.6197C12.3954 10.3718 11.954 10.4112 11.706 10.7078C11.3434 11.1416 10.7759 11.4343 10.0383 11.4343C9.29561 11.4343 8.59499 11.0648 8.29232 10.7057C8.04317 10.4101 7.60156 10.3724 7.30595 10.6216C7.01034 10.8707 6.97268 11.3123 7.22183 11.6079C7.80834 12.3038 8.91134 12.8343 10.0383 12.8343C11.1704 12.8343 12.1389 12.3729 12.7802 11.6057Z"
fill="#00A9A6" />
</svg>
\ No newline at end of file
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.6665 12.6061V3.39393C2.6665 2.93583 2.85394 2.49662 3.18734 2.17269C3.52074 1.84877 3.97279 1.66666 4.44428 1.66666H9.77762C9.93478 1.66666 10.0855 1.72736 10.1966 1.83534L13.1596 4.71412C13.2707 4.8221 13.3332 4.9685 13.3332 5.1212V12.6061C13.3332 13.0642 13.1457 13.5034 12.8123 13.8273C12.4789 14.1512 12.0269 14.3333 11.5554 14.3333H4.44428C3.97279 14.3333 3.52074 14.1512 3.18734 13.8273C2.85394 13.5034 2.6665 13.0642 2.6665 12.6061ZM9.77762 4.54544C9.77762 4.69814 9.84009 4.84455 9.95123 4.95252C10.0624 5.0605 10.213 5.1212 10.3702 5.1212H11.9026L9.77762 3.05657V4.54544ZM3.85169 12.6061C3.85169 12.7588 3.91417 12.9052 4.0253 13.0131C4.13643 13.1211 4.28712 13.1818 4.44428 13.1818H11.5554C11.7126 13.1818 11.8632 13.1211 11.9744 13.0131C12.0855 12.9052 12.148 12.7587 12.148 12.6061V6.27272H10.3702C9.89871 6.27272 9.44666 6.09061 9.11326 5.76668C8.77987 5.44275 8.59243 5.00355 8.59243 4.54544V2.81817H4.44428C4.28712 2.81817 4.13643 2.87888 4.0253 2.98685C3.91417 3.09483 3.85169 3.24123 3.85169 3.39393V12.6061Z" fill="#667085"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none">
<path d="M2.06714 13.3333V2.66634C2.06722 2.15371 2.27007 1.66165 2.63257 1.29915C2.99506 0.93666 3.48712 0.73381 3.99976 0.733724H9.99976C10.1589 0.733724 10.312 0.796983 10.4246 0.909505L13.7576 4.24251C13.87 4.35496 13.9333 4.50733 13.9333 4.66634V13.3333C13.9333 13.8461 13.7295 14.338 13.3669 14.7005C13.0044 15.063 12.5124 15.2669 11.9998 15.2669H3.99976C3.48712 15.2668 2.99506 15.063 2.63257 14.7005C2.2701 14.338 2.06714 13.846 2.06714 13.3333ZM10.6667 10.7337C10.9981 10.7337 11.2664 11.002 11.2664 11.3333C11.2664 11.6647 10.9981 11.9329 10.6667 11.9329H5.33374C5.00237 11.9329 4.73315 11.6647 4.73315 11.3333C4.73315 11.002 5.00237 10.7337 5.33374 10.7337H10.6667ZM10.6667 8.06673C10.998 8.06673 11.2662 8.33512 11.2664 8.66634C11.2664 8.99771 10.9981 9.26693 10.6667 9.26693H5.33374C5.00237 9.26693 4.73315 8.99771 4.73315 8.66634C4.73333 8.33512 5.00248 8.06673 5.33374 8.06673H10.6667ZM6.66675 5.39974C6.99812 5.39974 7.26636 5.66895 7.26636 6.00033C7.26618 6.33155 6.99801 6.59993 6.66675 6.59993H5.33374C5.00248 6.59993 4.73333 6.33155 4.73315 6.00033C4.73315 5.66895 5.00237 5.39974 5.33374 5.39974H6.66675ZM9.93335 4.00033C9.93344 4.1947 10.0107 4.38143 10.1482 4.51888C10.2857 4.6563 10.4723 4.73372 10.6667 4.73372H12.5515L9.93335 2.11458V4.00033ZM3.26636 13.3333C3.26636 13.5277 3.34378 13.7144 3.4812 13.8519C3.61865 13.9893 3.80538 14.0666 3.99976 14.0667H11.9998C12.1942 14.0667 12.3808 13.9893 12.5183 13.8519C12.6558 13.7144 12.7332 13.5278 12.7332 13.3333V5.93294H10.6667C10.1541 5.93294 9.66212 5.72998 9.29956 5.36751C8.93707 5.00502 8.73324 4.51296 8.73315 4.00033V1.93294H3.99976C3.80538 1.93303 3.61865 2.01034 3.4812 2.14779C3.34375 2.28524 3.26644 2.47197 3.26636 2.66634V13.3333Z" />
</svg>
\ No newline at end of file
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.3332 4.69949V11.3662H2.6665V4.69949H13.3332ZM3.04746 10.9761H12.9522V5.08956H3.04746V10.9761Z" fill="#755838"/>
<path d="M4 9.69948V6.36615H5.07518L6.15075 7.5917L7.22593 6.36615H8.30111V9.69948H7.22593V7.78763L6.15075 9.01319L5.07518 7.78763V9.69948H4ZM10.7208 9.69948L9.10779 8.08171H10.183V6.36615H11.2582V8.08171H12.3333L10.7208 9.69948Z" fill="#755838"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" >
<path
d="M2.02994 3.4867C1.68907 4.1557 1.66801 5.01869 1.66671 6.6646H18.3332C18.3319 5.01869 18.3109 4.1557 17.97 3.4867C17.6504 2.85949 17.1405 2.34956 16.5133 2.02998C15.8002 1.66667 14.8668 1.66667 13 1.66667H6.99996C5.13312 1.66667 4.1997 1.66667 3.48666 2.02998C2.85945 2.34956 2.34952 2.85949 2.02994 3.4867Z"
fill="#8774EE" />
<path
d="M18.3333 8.33126H8.32478L8.32478 18.3333H13C14.8668 18.3333 15.8002 18.3333 16.5133 17.97C17.1405 17.6504 17.6504 17.1405 17.97 16.5133C18.3333 15.8003 18.3333 14.8668 18.3333 13V8.33126Z"
fill="#8774EE" />
<path
d="M6.65812 18.3332L6.65812 8.33126H1.66663V13C1.66663 14.8668 1.66663 15.8003 2.02994 16.5133C2.34952 17.1405 2.85945 17.6504 3.48666 17.97C4.15478 18.3104 5.0164 18.3319 6.65812 18.3332Z"
fill="#8774EE" />
</svg>
\ No newline at end of file
<svg t="1719284028629" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4376" width="256" height="256"><path d="M381.5 483.7c0-53.1 43.2-96.3 96.3-96.3h85v-187c0-9.4-7.6-17-17-17H137.9c-9.4 0-17 7.6-17 17v283.3c0 9.4 7.6 17 17 17h73.6v32.1l64.3-32.1h105.7v-17z" fill="#9ADCCF" p-id="4377"></path><path d="M747.7 784h-270c-9.4 0-17-7.6-17-17V483.7c0-9.4 7.6-17 17-17h407.9c9.4 0 17 7.6 17 17V767c0 9.4-7.6 17-17 17H812v32.1L747.7 784z" fill="#FFF370" p-id="4378"></path><path d="M341.8 523.4h-56.7c-2.6 0-5.2 0.6-7.6 1.8l-88.7 44.4v-29.2c0-9.4-7.6-17-17-17h-34c-21.9 0-39.7-17.8-39.7-39.7V200.5c0-21.9 17.8-39.7 39.7-39.7h407.9c21.9 0 39.7 17.8 39.7 39.7v147.3c0 9.4 7.6 17 17 17s17-7.6 17-17V200.5c0-40.6-33-73.6-73.6-73.6H137.9c-40.6 0-73.6 33-73.6 73.6v283.3c0 40.6 33 73.6 73.6 73.6h17V597c0 5.9 3 11.4 8.1 14.5 2.7 1.7 5.8 2.5 8.9 2.5 2.6 0 5.2-0.6 7.6-1.8l109.7-54.9h52.6c9.4 0 17-7.6 17-17 0-9.3-7.6-16.9-17-16.9z" fill="#4F3D3B" p-id="4379"></path><path d="M885.7 410.1h-65.8c-9.4 0-17 7.6-17 17s7.6 17 17 17h65.8c21.9 0 39.7 17.8 39.7 39.7V767c0 21.9-17.8 39.7-39.7 39.7h-34c-9.4 0-17 7.6-17 17v29.2L746 808.4c-2.4-1.2-5-1.8-7.6-1.8H477.8c-21.9 0-39.7-17.8-39.7-39.7V483.7c0-21.9 17.8-39.7 39.7-39.7h249.3c9.4 0 17-7.6 17-17s-7.6-17-17-17H477.8c-12.9 0-25 3.3-35.5 9.2l-85-180.7c-2.8-6-8.8-9.8-15.4-9.8s-12.6 3.8-15.4 9.8l-90.6 192.6c-4 8.5-0.3 18.6 8.1 22.6 8.5 4 18.6 0.3 22.6-8.1l19.4-41.2h111.7l18.4 39.1c-7.6 11.6-12 25.4-12 40.2V767c0 40.6 33 73.6 73.6 73.6h256.6L844 895.5c2.4 1.2 5 1.8 7.6 1.8 3.1 0 6.2-0.9 8.9-2.5 5-3.1 8.1-8.6 8.1-14.5v-39.7h17c40.6 0 73.6-33 73.6-73.6V483.7c0.1-40.6-32.9-73.6-73.5-73.6z m-583.8-39.7l39.9-84.7 39.9 84.7h-79.8zM358 733.9c-0.2-0.6-0.3-1.1-0.5-1.7-0.2-0.6-0.6-1.1-0.9-1.7-0.2-0.4-0.4-0.8-0.7-1.2-1.2-1.9-2.9-3.5-4.7-4.7-0.4-0.3-0.8-0.4-1.2-0.6-0.6-0.3-1.1-0.7-1.7-0.9-0.5-0.2-1.1-0.3-1.7-0.5-0.5-0.2-1-0.3-1.5-0.4-1.1-0.2-2.2-0.3-3.3-0.3H241c-21.9 0-39.7-17.8-39.7-39.7v-17.1c0-9.4-7.6-17-17-17s-17 7.6-17 17V682c0 40.6 33 73.6 73.6 73.6h59.8L284.5 772c-6.6 6.6-6.6 17.4 0 24 3.3 3.3 7.7 5 12 5s8.7-1.7 12-5l45.3-45.3c0.8-0.8 1.5-1.7 2.1-2.6 0.3-0.4 0.4-0.8 0.7-1.2 0.3-0.6 0.6-1.1 0.9-1.7 0.2-0.5 0.4-1.1 0.5-1.7 0.1-0.5 0.3-1 0.4-1.5 0.4-2.2 0.4-4.5 0-6.7 0-0.5-0.2-1-0.4-1.4zM665.5 222.3c0.2 0.6 0.3 1.1 0.5 1.7 0.2 0.6 0.6 1.1 0.9 1.7 0.2 0.4 0.4 0.8 0.7 1.2 1.2 1.9 2.9 3.5 4.7 4.7 0.4 0.3 0.8 0.4 1.2 0.6 0.6 0.3 1.1 0.7 1.7 0.9 0.5 0.2 1.1 0.3 1.7 0.5 0.5 0.2 1 0.3 1.5 0.4 1.1 0.2 2.2 0.3 3.3 0.3h100.8c21.9 0 39.7 17.8 39.7 39.7v73.6c0 9.4 7.6 17 17 17s17-7.6 17-17V274c0-40.6-33-73.6-73.6-73.6h-59.8l16.3-16.3c6.6-6.6 6.6-17.4 0-24-6.6-6.6-17.4-6.6-24 0l-45.3 45.3c-0.8 0.8-1.5 1.7-2.1 2.6-0.3 0.4-0.4 0.8-0.7 1.2-0.3 0.6-0.6 1.1-0.9 1.7-0.2 0.5-0.4 1.1-0.5 1.7-0.1 0.5-0.3 1-0.4 1.5-0.4 2.2-0.4 4.5 0 6.7 0 0.5 0.2 1 0.3 1.5z" fill="#4F3D3B" p-id="4380"></path><path d="M681.7 750c9.4 0 17-7.6 17-17v-45.3H778c9.4 0 17-7.6 17-17V580c0-9.4-7.6-17-17-17h-79.3v-45.3c0-9.4-7.6-17-17-17s-17 7.6-17 17V563h-79.3c-9.4 0-17 7.6-17 17v90.6c0 9.4 7.6 17 17 17h79.3V733c0 9.4 7.6 17 17 17z m17-153H761v56.7h-62.3V597z m-96.3 56.7V597h62.3v56.7h-62.3z" fill="#4F3D3B" p-id="4381"></path></svg>
\ No newline at end of file
<svg t="1730274418124" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11324" width="200" height="200"><path d="M247.898336 292.06743c-49.519903 16.505968-87.715829-27.923945-116.599772-27.661946-28.883944 0.259999-131.633743 46.589909-131.297744 83.727836 0.333999 36.465929 165.363677 142.011723 280.909451 26.465948l-33.011935-82.531838zM776.103304 292.06743c49.519903 16.505968 87.715829-27.923945 116.599772-27.661946 28.883944 0.261999 131.631743 46.591909 131.295744 83.729836-0.331999 36.465929-165.363677 142.011723-280.909451 26.465948l33.013935-82.533838z" fill="#464655" p-id="11325"></path><path d="M684.877482 770.428495c38.135926-165.673676 107.73379-474.585073 107.73379-522.530979 0-49.519903 0-66.025871-33.011936-99.037807-10.519979-10.519979-31.255939-20.937959-56.439889-30.64794-122.67576-47.297908-259.635493-47.297908-382.311254 0-25.183951 9.709981-45.91791 20.127961-56.439889 30.64794-33.011936 33.011936-33.011936 49.519903-33.011936 99.037807 0 47.945906 69.597864 356.857303 107.73379 522.530979l-28.155945 98.547808c-15.063971 52.721897 24.523952 105.205795 79.355845 105.205794h243.347524c54.831893 0 94.421816-52.481897 79.355845-105.205794l-28.155945-98.547808z" fill="#ffffff" p-id="11326"></path><path d="M597.995652 813.026412h-171.989664c-25.43595 0-46.05791 20.61996-46.05791 46.05791a117.56577 117.56577 0 0 0 16.753967 60.485882l18.339964 30.56794a49.515903 49.515903 0 0 0 42.461917 24.041953h108.987788a49.513903 49.513903 0 0 0 42.461917-24.041953l18.339964-30.56794a117.56577 117.56577 0 0 0 16.753967-60.485882c0.004-25.43795-20.61596-46.05791-46.05191-46.05791z" fill="#EBB4A0" p-id="11327"></path><path d="M445.973949 908.154226a16.447968 16.447968 0 0 1-11.669977-4.83599l-33.011936-33.011936a16.499968 16.499968 0 0 1 0-23.341954 16.499968 16.499968 0 0 1 23.341955 0l33.011935 33.011935a16.499968 16.499968 0 0 1 0 23.339955 16.447968 16.447968 0 0 1-11.671977 4.83799zM578.025691 908.154226a16.447968 16.447968 0 0 1-11.669977-4.83599 16.499968 16.499968 0 0 1 0-23.339955l33.013935-33.011935a16.499968 16.499968 0 0 1 23.341955 0 16.499968 16.499968 0 0 1 0 23.341954l-33.011936 33.011936a16.469968 16.469968 0 0 1-11.673977 4.83399z" fill="#D7A091" p-id="11328"></path><path d="M759.597336 148.857709c-10.37398-10.37398-30.68994-20.64796-55.401891-30.241941-15.26197-18.447964-36.863928-40.649921-60.143883-52.289898C611.039627 49.817903 511.99982 49.817903 511.99982 49.817903s-99.037807 0-132.051742 16.505967c-23.281955 11.641977-44.881912 33.841934-60.143883 52.289898-24.709952 9.593981-45.025912 19.867961-55.401891 30.241941-29.425943 29.425943-32.607936 45.89391-32.957936 84.159836 22.629956 1.051998 50.861901 2.223996 64.307874 2.223996 100.699803 0 185.275638-47.077908 213.973582-67.973868l-15.903968 66.171871c52.267898-0.473999 145.389716-46.715909 164.457678-67.523868l17.105967 65.873871c51.1959-33.415935 51.1959-49.921902 51.1959-49.921902s33.365935 0.04 63.583876 18.303964c-3.291994-18.069965-11.147978-31.891938-30.567941-51.3119z" fill="#FFDEB7" p-id="11329"></path><path d="M232.016367 215.05158c-0.587999 9.309982-0.625999 19.917961-0.625999 32.843936 0 47.945906 69.597864 356.857303 107.73379 522.530979 0 0 90.343824-175.895656 90.343823-208.907592 0-32.979936 16.455968-296.567421-197.451614-346.467323z" fill="#6B676E" p-id="11330"></path><path d="M297.426239 404.71721a41.265919 24.759952 90 1 0 49.519903 0 41.265919 24.759952 90 1 0-49.519903 0Z" fill="#464655" p-id="11331"></path><path d="M791.985273 215.05158c0.587999 9.309982 0.625999 19.917961 0.625999 32.843936 0 47.945906-69.597864 356.857303-107.73379 522.530979 0 0-90.343824-175.895656-90.343823-208.907592 0-32.979936-16.453968-296.567421 197.451614-346.467323z" fill="#6B676E" p-id="11332"></path><path d="M677.055498 404.71721a41.265919 24.759952 90 1 0 49.519903 0 41.265919 24.759952 90 1 0-49.519903 0Z" fill="#464655" p-id="11333"></path></svg>
\ No newline at end of file
<svg t="1730275413281" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16472" width="200" height="200"><path d="M919 233.6s-46.2-41.4-93.4-63.2c-51.4-26.6-124-25.4-124-25.4s-51.2-4.1-103.6 22.6c-52.4 26.7-91.1 62.9-91.1 62.9s-53.5-44.1-100.8-67.2S290.7 145 290.7 145s-64.9 3.6-106.7 23.8c-41.8 20.3-80.1 68.4-80.1 68.4v621.4s59-55.1 94.2-70.6c35.2-15.5 90.3-15 90.3-15s66 8.5 105.3 25.7c39.3 17.1 113.2 80.7 113.2 80.7s47.1-54.2 84.9-74.5c64.1-35.7 127.7-30.6 127.7-30.6s39.1 1.8 93.4 23.8c49.4 20 107.1 61.7 107.1 61.7l-1-626.2zM486.9 811s-101.1-86.3-198.4-84.3c-91.7 1.8-126.8 26.9-150.6 52.5 0.9-30.2-0.4-519.3-0.4-519.3s35.2-68.4 154.1-73.9c101-9.2 188.2 67.8 193.6 82.5 2.5 19.2 1.7 542.5 1.7 542.5z m394.8-20.2c-23.8-25.7-87.5-64.2-179.1-66-97.3-1.9-173.9 87.1-173.9 87.1s-0.8-523.3 1.7-542.5c8.5-14.7 74.7-88 193.6-82.5 103 4.8 159.1 72.2 159.1 72.2s-1.3 501.7-1.4 531.7z" fill="#000000" p-id="16473"></path><path d="M544.6 609.5h-65.1c-6.6 0-12-5.4-12-12v-171c0-6.6 5.4-12 12-12h65.1c6.6 0 12 5.4 12 12v171c0 6.6-5.4 12-12 12z" fill="#000000" p-id="16474"></path><path d="M544.6 609.5h-65.1c-6.6 0-12-5.4-12-12v-171c0-6.6 5.4-12 12-12h65.1c6.6 0 12 5.4 12 12v171c0 6.6-5.4 12-12 12z" fill="#000000" p-id="16475"></path></svg>
\ No newline at end of file
<svg t="1730274794897" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12770" width="200" height="200"><path d="M841.5 378.7c-7.7-15-11.6-31.4-21-45.5-18-34.4-43-66.1-72.2-93.2-15.5-9.9-28.4-22.3-43.8-32.2-13.7-9-28.8-16.3-43-24.1-21.9-8.6-43-17.6-65.7-23.2-9-0.9-16.8-5.2-25.8-5.2l-37.4-4.3c-19.3-2.1-39.5-0.4-59.3 0.9-44.2 3.4-83.3 18-122.4 35.2-67.4 33.5-128 91.5-161.1 160.2-24.9 52-38.7 111.2-36.9 167.9 0 7.3 2.1 18 1.3 24.9 3.4 13.3 3 25.8 6.4 38.2 20.6 95.8 82 185.1 172.2 235.4 16.3 12 35.2 17.2 53.3 24.5 63.6 24.1 143.9 28.3 210.9 10.3 95.8-21.9 184.3-91.1 228.5-181.7 0.9-0.9 2.1-0.9 1.3-2.6 43-86.6 50.3-192.3 14.7-285.5z m-409.8-69.1c11.2-9.5 24.9-17.2 41.7-13.3 12 3 22.3 11.6 28.8 22.8 6 11.2 8.2 29.6 0 40.8-7.3 12.5-21.5 22.8-36.1 23.2-16.8-0.9-34.8-8.2-41.2-25.3-9.1-16-3.9-34.5 6.8-48.2z m386.1 335.9c-28.4 65.7-87.2 128.9-152.1 159.8-20.2 10.7-40.8 20.6-63.1 24.1-9.9 0-18.5 2.6-28.4 2.6l-25.8-2.6c-5.6-1.3-10.7-5.2-16.8-3.9-29.2-4.7-56.3-20.6-78.6-41.7-40.8-42.1-57.1-104.4-40.8-158.9 8.2-27.1 24.5-52.8 46-72.2 26.2-18.5 52.8-35.7 78.2-56.7 30.5-21.9 64.4-45.5 79-80.8 12-17.6 14.2-39.1 18-60.1 6.4-62.7-24.5-127.6-81.2-160.2-11.2-7.7-24.5-11.2-36.1-17.6-13.3-2.1-24.9-7.7-37.8-7.7-1.3-0.9 0.4-0.9-0.4-1.3 30.9-5.2 70.9-1.7 103.5 5.2C669 192 752.3 250.4 798.7 328.6l13.3 23.6c46.2 86.7 48.4 206.1 5.8 293.3z m-213.9 14.1c5.6 16.8 1.7 36.5-11.6 49-12.5 9-28.4 16.8-44.2 11.2-12-4.3-24.5-13.3-30.5-24.5-5.6-12-3.9-27.5 1.7-39.1 8.2-15.9 25.8-21.9 40.8-27.5 19.4-0.4 36.5 13.8 43.8 30.9z m44.2 246.2l-0.4 0.4-1.3-1.7c0.4 0.4 0.8 0.8 1.7 1.3z m-51.6 8.5h0.4-0.4z m-4.7 0.5c0 0.4-0.4 0.4-1.3 0.4 0.5-0.9 0.9-0.4 1.3-0.4z m0 0" fill="#000000" p-id="12771"></path></svg>
\ No newline at end of file
<svg width="100%" height="100%" viewBox="0 0 89 32" xmlns="http://www.w3.org/2000/svg"><path d="M52.308 3.07812H57.8465V4.92428H56.0003V6.77043H54.1541V10.4627H57.8465V12.3089H54.1541V25.232H52.308V27.0781H46.7695V25.232H48.6157V12.3089H46.7695V10.4627H48.6157V6.77043H50.4618V4.92428H52.308V3.07812Z" fill="currentColor"></path><path d="M79.3849 23.3858H81.2311V25.232H83.0772V27.0781H88.6157V25.232H86.7695V23.3858H84.9234V4.92428H79.3849V23.3858Z" fill="currentColor"></path><path d="M57.8465 14.155H59.6926V12.3089H61.5388V10.4627H70.7695V12.3089H74.4618V23.3858H76.308V25.232H78.1541V27.0781H72.6157V25.232H70.7695V23.3858H68.9234V14.155H67.0772V12.3089H65.2311V14.155H63.3849V23.3858H65.2311V25.232H67.0772V27.0781H61.5388V25.232H59.6926V23.3858H57.8465V14.155Z" fill="currentColor"></path><path d="M67.0772 25.232V23.3858H68.9234V25.232H67.0772Z" fill="currentColor"></path><rect opacity="0.22" x="7.38477" y="29.5391" width="2.46154" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.85" x="2.46094" y="19.6914" width="12.3077" height="2.46154" fill="#5F4CD9"></rect><rect x="4.92383" y="17.2305" width="9.84615" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.4" x="7.38477" y="27.0781" width="4.92308" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.7" y="22.1562" width="14.7692" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.5" x="7.38477" y="24.6133" width="7.38462" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.22" x="7.38477" y="12.3086" width="2.46154" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.85" x="2.46094" y="2.46094" width="12.3077" height="2.46154" fill="#5F4CD9"></rect><rect x="4.92383" width="9.84615" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.4" x="7.38477" y="9.84375" width="4.92308" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.7" y="4.92188" width="14.7692" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.5" x="7.38477" y="7.38281" width="7.38462" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.22" x="24.6152" y="29.5391" width="2.46154" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.85" x="19.6914" y="19.6914" width="12.3077" height="2.46154" fill="#5F4CD9"></rect><rect x="22.1543" y="17.2305" width="9.84615" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.4" x="24.6152" y="27.0781" width="4.92308" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.7" x="17.2305" y="22.1562" width="14.7692" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.5" x="24.6152" y="24.6133" width="7.38462" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.22" x="24.6152" y="12.3086" width="2.46154" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.85" x="19.6914" y="2.46094" width="12.3077" height="2.46154" fill="#5F4CD9"></rect><rect x="22.1543" width="9.84615" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.4" x="24.6152" y="9.84375" width="4.92308" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.7" x="17.2305" y="4.92188" width="14.7692" height="2.46154" fill="#5F4CD9"></rect><rect opacity="0.5" x="24.6152" y="7.38281" width="7.38462" height="2.46154" fill="#5F4CD9"></rect></svg>
\ No newline at end of file
<svg t="1730273562336" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4241" width="200" height="200"><path d="M960 512c0 97.76-28.704 185.216-85.664 263.264-56.96 78.016-130.496 131.84-220.64 161.856-10.304 1.824-18.368 0.448-22.848-4.032a22.4 22.4 0 0 1-7.2-17.504v-122.88c0-37.632-10.304-65.44-30.464-82.912a409.856 409.856 0 0 0 59.616-10.368 222.752 222.752 0 0 0 54.72-22.816c18.848-10.784 34.528-23.36 47.104-38.592 12.544-15.232 22.848-35.904 30.912-61.44 8.096-25.568 12.128-54.688 12.128-87.904 0-47.072-15.232-86.976-46.208-120.16 14.368-35.456 13.024-74.912-4.48-118.848-10.752-3.616-26.432-1.344-47.072 6.272s-38.56 16.16-53.824 25.568l-21.984 13.888c-36.32-10.304-73.536-15.232-112.096-15.232s-75.776 4.928-112.096 15.232a444.48 444.48 0 0 0-24.672-15.68c-10.336-6.272-26.464-13.888-48.896-22.432-21.952-8.96-39.008-11.232-50.24-8.064-17.024 43.936-18.368 83.424-4.032 118.848-30.496 33.632-46.176 73.536-46.176 120.608 0 33.216 4.032 62.336 12.128 87.456 8.032 25.12 18.368 45.76 30.496 61.44 12.544 15.68 28.224 28.704 47.072 39.04 18.848 10.304 37.216 17.92 54.72 22.816a409.6 409.6 0 0 0 59.648 10.368c-15.712 13.856-25.12 34.048-28.704 60.064a99.744 99.744 0 0 1-26.464 8.512 178.208 178.208 0 0 1-33.184 2.688c-13.024 0-25.568-4.032-38.144-12.544-12.544-8.512-23.296-20.64-32.256-36.32a97.472 97.472 0 0 0-28.256-30.496c-11.232-8.064-21.088-12.576-28.704-13.92l-11.648-1.792c-8.096 0-13.92 0.928-17.056 2.688-3.136 1.792-4.032 4.032-2.688 6.72s3.136 5.408 5.376 8.096 4.928 4.928 7.616 7.168l4.032 2.688c8.544 4.032 17.056 11.232 25.568 21.984 8.544 10.752 14.368 20.64 18.4 29.6l5.824 13.44c4.928 14.816 13.44 26.912 25.568 35.872 12.096 8.992 25.088 14.816 39.008 17.504 13.888 2.688 27.36 4.032 40.352 4.032s23.776-0.448 32.288-2.24l13.472-2.24c0 14.784 0 32.288 0.416 52.032 0 19.744 0.48 30.496 0.48 31.392a22.624 22.624 0 0 1-7.648 17.472c-4.928 4.48-12.992 5.824-23.296 4.032-90.144-30.048-163.68-83.84-220.64-161.888C92.256 697.216 64 609.312 64 512c0-81.152 20.192-156.064 60.096-224.672s94.176-122.88 163.232-163.232C355.936 84.192 430.816 64 512 64s156.064 20.192 224.672 60.096 122.88 94.176 163.232 163.232C939.808 355.488 960 430.848 960 512" fill="#000000" p-id="4242"></path></svg>
\ No newline at end of file
<svg t="1719285050683" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6411" width="256" height="256"><path d="M214.101333 512c0-32.512 5.546667-63.701333 15.36-92.928L57.173333 290.218667A491.861333 491.861333 0 0 0 4.693333 512c0 79.701333 18.858667 154.88 52.394667 221.610667l172.202667-129.066667A290.56 290.56 0 0 1 214.101333 512" fill="#FBBC05" p-id="6412"></path><path d="M516.693333 216.192c72.106667 0 137.258667 25.002667 188.458667 65.962667L854.101333 136.533333C763.349333 59.178667 646.997333 11.392 516.693333 11.392c-202.325333 0-376.234667 113.28-459.52 278.826667l172.373334 128.853333c39.68-118.016 152.832-202.88 287.146666-202.88" fill="#EA4335" p-id="6413"></path><path d="M516.693333 807.808c-134.357333 0-247.509333-84.864-287.232-202.88l-172.288 128.853333c83.242667 165.546667 257.152 278.826667 459.52 278.826667 124.842667 0 244.053333-43.392 333.568-124.757333l-163.584-123.818667c-46.122667 28.458667-104.234667 43.776-170.026666 43.776" fill="#34A853" p-id="6414"></path><path d="M1005.397333 512c0-29.568-4.693333-61.44-11.648-91.008H516.650667V614.4h274.602666c-13.696 65.962667-51.072 116.650667-104.533333 149.632l163.541333 123.818667c93.994667-85.418667 155.136-212.650667 155.136-375.850667" fill="#4285F4" p-id="6415"></path></svg>
\ No newline at end of file
<svg t="1710840512338" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1309"
width="128" height="128">
<path
d="M572.587621 1023.98262201c-76.09788199-0.13902299-134.661449-22.851956-183.31960699-69.40738501-11.06973101-10.583149-21.20105399-14.128243-36.92806501-12.11240599-165.85480399 21.20105399-308.527471-118.60425799-288.160557-284.78924103 4.48350196-36.65001902-0.76462799-64.10712201-20.227891-96.22150598-85.899025-141.73426003-14.07610999-325.92276201 143.78485399-376.092797 15.13616201-4.81368201 25.52815401-11.20875401 32.618343-27.38759095 35.051251-79.92102299 94.640115-133.37548398 180.76505301-151.23997907 88.245043-18.298943 168.687403-0.03475599 235.470724 63.93334302 9.957544 9.54047401 19.60228598 13.93708601 33.869553 11.83435901 128.63131399-18.92454698 251.96236398 64.87174999 284.23314799 190.20125999 11.347777 44.035632 12.61636501 87.202368-0.10426699 130.64715099-3.527716 12.025516 0.38231401 20.384292 7.61152602 29.73360902 98.637035 127.466993 58.928504 312.80243802-82.89264602 388.79605299-15.066651 8.08073001-31.08908702 13.72855101-47.285302 18.66387799-13.832819 4.22283301-22.45226401 12.12978301-28.11746399 25.632422-27.59612601 65.75802401-74.86405001 111.91376103-140.60469501 139.64891102-31.940604 13.485261-65.34095397 17.412669-90.69532902 18.177297z m251.56267101-383.86072502c0 35.78112295-0.191157 71.562247 0.06951199 107.32599201 0.156401 21.30532201 4.865816 23.82511902 23.738229 13.641662 129.048383-69.650676 135.96479301-253.422108 11.39991099-330.56266501-65.410465-40.50791598-132.95841401-77.557627-199.37679803-116.44939598-9.62736401-5.630444-17.916629-5.03959501-27.12692196 0.59084899-16.02243601 9.783765-32.444564 18.94192498-48.67553503 28.39551001-21.18367598 12.33831801-21.16629801 14.82336002-0.06951195 28.030574 1.54663401 0.973163 3.07589101 1.94632602 4.65728096 2.84997799 70.36317099 40.52529401 140.60469601 81.206988 211.14164502 121.41947901 17.08248901 9.731631 24.954683 22.990979 24.450724 42.88868997-0.85151799 33.939064-0.225913 67.912885-0.20853499 101.86932701zM400.772193 340.96112199c0 9.696876-0.08689001 19.393751 0.017378 29.09062601 0.260669 21.40958901 1.59876799 22.48701999 19.619664 12.12978398 72.987235-41.915527 146.11349399-83.587763 218.492502-126.54596398 19.584908-11.62582399 35.50307702-12.164539 55.29652-0.243291 58.09436397 35.016495 117.24878 68.277821 176.00350501 102.199508 20.245269 11.69533599 24.60712501 9.106027 25.70193398-14.61482499 1.16431999-25.31962003-4.76154804-49.31851799-13.10294699-72.882968-37.049711-104.59766-169.43465398-154.958852-266.107985-100.67025201-58.59832304 32.89638999-115.63263398 68.677513-175.134609 99.83611201-31.14122 16.31785999-51.021553 34.147599-40.785962 71.70126998z m356.421 318.78043901h-0.05213402c0-39.39572897-0.225913-78.77408101 0.15640102-118.169809 0.10426699-10.91332901-3.475583-18.00351801-13.415749-23.26902601-18.194675-9.60998599-35.78112295-20.36691401-53.59348399-30.70677299-18.629123-10.80906201-20.923007-9.557852-20.94038602 12.25142898-0.05213401 84.83897201-0.45182601 169.677945 0.22591303 254.51691701 0.17377898 20.81874003-8.02859599 33.487239-25.91046803 43.54905001-60.16233599 33.817419-119.716444 68.747025-179.426954 103.36382802-16.144081 9.349317-17.01297699 15.396831-2.48504201 24.45072398 58.19863099 36.25032699 119.99449102 42.315219 182.12053102 13.76330701 75.69818998-34.80796 111.61833598-97.229424 113.21710399-179.75713402 0.64298303-33.31345999 0.10426699-66.66167502 0.10426801-99.99251299zM199.20577799 382.546468h-0.10426797c0-34.564669 0.13902299-69.129339-0.05213401-103.69400799-0.13902299-23.842497-3.892653-25.87571299-24.97206101-14.30202299-128.388023 70.57170599-131.238001 255.35105701-4.466124 332.05716598 63.75956401 38.57896701 128.805093 75.020451 193.294529 112.38296401 7.50725899 4.36185599 15.32731899 7.85481701 23.96414202 2.86735599 20.99251901-12.11240602 42.01979402-24.137921 62.83853399-36.510996 8.61944501-5.126484 8.723712-11.00021895-0.05213302-16.47426101-3.597228-2.24175098-7.10756598-4.657281-10.77430699-6.77738599-71.33633399-41.237788-142.55102201-82.701489-214.14802401-123.487452-17.030355-9.696876-25.85833501-22.60866499-25.64979999-42.36735199 0.38231401-34.564669 0.10426699-69.129339 0.10426802-103.69400801z m154.52440402 12.129783h0.22591299c0-38.78750201 1.077431-77.60975998-0.36493699-116.34512899-0.990541-26.36229401 9.262428-42.52375399 32.30554099-55.24438599 59.362951-32.77474401 117.66584999-67.478437 176.29892902-101.55652402 14.684337-8.53255498 14.945005-13.502639 0.78200696-23.043113-13.589528-9.15816-28.186975-16.891332-43.89660897-21.51385699-129.708744-38.231409-250.137683 50.10052399-252.01449701 185.422334-1.00791899 72.10096198 0.069512 144.23668-0.31280297 216.33764099-0.069512 13.902331 5.421909 22.678177 17.41266897 29.03849305 16.56115101 8.81060201 32.77474401 18.316321 48.918826 27.87417295 16.82181998 9.97492199 20.43642597 8.271887 20.57544901-11.90387 0.27804699-43.027713 0.08689001-86.05542599 0.08688998-129.08314001z m269.34027598 288.751406c0-9.696876 0.156401-19.393751-0.03475499-29.09062701-0.38231401-18.82028-3.56247201-20.95776302-19.723932-11.71271299-74.1168 42.38472996-148.16408797 84.89110601-222.02021901 127.72766201-14.19775494 8.23713099-27.943684 11.24350999-42.80179999 2.69357599-18.889792-10.861196-37.796961-21.70501401-56.66937499-32.63572102-44.000876-25.493399-87.84535099-51.31697802-132.05476307-76.44544-15.518476-8.81060201-19.13308199-6.55147299-19.74130895 10.79168404-0.81676199 23.043113 0.43444801 45.70391197 7.82006098 68.12141996 37.98811801 115.52836699 167.22765903 168.079176 273.91066802 109.67201002 58.40716599-31.97536002 114.39880302-68.48635603 173.57059702-98.897704 31.506157-16.196215 45.130441-36.05917001 37.74482698-70.25890301z m-222.28088699-172.56267798c0 16.33523802 0.36493602 32.705233-0.139024 49.02309297-0.31280201 10.235591 3.388693 16.960843 12.39045199 22.06995 27.370213 15.501099 54.636159 31.19335401 81.485035 47.56334802 12.234051 7.47250301 22.97360103 7.83743901 35.32929801 0.27804699 26.310161-16.091948 53.037391-31.488779 79.85151099-46.694453 9.59260801-5.439287 13.45050499-12.94654501 13.363615-23.686096-0.260669-32.079628-0.260669-64.15925599-0.08688899-96.238883 0.05213401-9.27980601-2.81522199-16.230971-11.24350999-21.02727501-28.37813202-16.161459-56.704131-32.39243001-84.786838-49.07522699-9.957544-5.925868-18.92454698-6.13440301-28.88209202-0.22591302-20.80136202 12.355696-41.116143 25.92784599-63.06444697 35.85063502-26.36229401 11.903871-40.00395598 28.725691-34.47778003 58.598324 1.407611 7.61152599 0.208535 15.69225597 0.22591301 23.56444999z"
fill="#2c2c2c" p-id="1310"></path>
</svg>
\ No newline at end of file
<svg t="1719284536895" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5409" width="256" height="256"><path d="M891.318857 340.845714c4.900571 0 9.728 0.292571 14.628572 0.804572a409.965714 409.965714 0 0 1 108.836571 30.061714c10.093714 4.534857 12.580571 8.192 3.949714 17.334857-24.868571 26.624-45.494857 57.051429-61.001143 89.965714-16.822857 35.328-35.108571 69.851429-52.297142 105.033143a225.28 225.28 0 0 1-52.150858 69.412572c-53.613714 48.493714-116.150857 68.973714-187.538285 59.099428-81.92-11.337143-159.451429-38.985143-232.740572-75.483428a143.506286 143.506286 0 0 1-10.459428-5.485715 5.339429 5.339429 0 0 1 0.292571-9.216l5.12-2.706285c59.245714-31.670857 108.836571-75.849143 156.525714-122.294857 20.187429-19.529143 39.497143-40.009143 59.904-59.318858A345.014857 345.014857 0 0 1 804.571429 352.256c13.165714-3.218286 26.550857-5.778286 39.789714-8.630857h0.585143l28.233143-2.56" fill="#133C9A" p-id="5410"></path><path d="M317.659429 913.846857c-8.996571-0.512-31.158857-3.584-33.865143-3.949714a536.429714 536.429714 0 0 1-165.083429-48.274286c-30.208-14.116571-59.245714-30.72-88.356571-46.957714-19.163429-10.678857-27.794286-27.282286-27.648-49.883429 0.585143-83.382857 0.585143-166.765714 0-250.148571C2.413714 461.019429 0.731429 407.405714 0 353.718857c0-4.754286 0.731429-9.508571 2.194286-13.897143 3.291429-9.728 9.947429-10.24 16.530285-3.949714 7.606857 7.314286 13.677714 16.237714 21.211429 23.405714 67.291429 66.413714 138.752 127.195429 218.770286 177.225143 45.056 28.891429 91.940571 54.710857 140.434285 77.385143 77.750857 35.328 157.549714 66.486857 241.078858 86.235429 73.874286 17.481143 145.627429 6.436571 205.458285-40.374858 18.285714-15.652571 27.282286-27.062857 48.932572-55.881142a359.862857 359.862857 0 0 1-37.376 72.850285c-13.897143 21.942857-45.348571 51.2-69.193143 74.093715-36.278857 35.108571-83.748571 63.561143-128.292572 87.552-48.566857 26.185143-99.035429 47.104-152.941714 58.514285-27.648 6.948571-67.584 14.848-81.334857 15.579429-2.413714-0.146286-10.678857 1.682286-14.848 1.389714-35.547429 2.633143-57.490286 3.657143-92.891429 0z" fill="#3370FF" p-id="5411"></path><path d="M165.083429 110.518857a52.443429 52.443429 0 0 1 7.460571 0c152.649143 0 304.128 2.486857 456.630857 2.486857 0.292571 0 0.585143 0 0.731429 0.219429 14.189714 12.361143 27.282286 25.746286 39.277714 40.155428 34.450286 34.230857 60.123429 93.622857 77.677714 129.755429 8.777143 25.014857 21.942857 48.859429 28.16 76.8v0.438857c-15.579429 5.046857-30.72 11.190857-45.348571 18.505143-44.178286 22.381714-64.219429 38.765714-100.790857 74.752-19.968 19.529143-37.010286 37.083429-63.488 62.098286a563.346286 563.346286 0 0 1-29.769143 26.916571c-7.021714-12.434286-125.732571-244.589714-364.251429-427.300571" fill="#00D6B9" p-id="5412"></path></svg>
\ No newline at end of file
<svg t="1730279749380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="23191" width="200" height="200"><path d="M192.682417 617.135502c10.498098 8.652054 23.62507 13.31833 37.040614 13.31833 2.300392 0 4.601808-0.1361 6.901177-0.407276 15.794731-1.89721 30.119995-10.181897 39.748283-22.918989L396.811538 447.300442l119.918183 101.526301c12.158924 10.277064 27.935236 15.387455 43.767829 13.491269 15.813151-1.664919 30.273491-9.69685 40.055275-22.317285l275.42491-354.942965c2.010797-2.593058 3.596921-5.380544 5.124717-8.16803l48.350195-57.257052c25.903973-30.679743 14.769378-50.598398-24.746614-44.248783l-227.867778 36.583197c-39.534412 6.349615-47.749514 33.8172-18.268062 61.070914l45.565778 42.100864L545.629935 419.407162l-120.55468-102.08605c-12.275581-10.336416-28.14706-15.21554-44.192501-13.452383-15.930831 1.780553-30.448476 10.083659-40.134069 22.955828l-120.960932 160.526043-58.093093-47.792493c-25.01472-20.595061-61.901839-16.917298-82.35466 8.284687-20.452821 25.163099-16.780175 62.250786 8.255011 82.807984L192.682417 617.135502z" fill="#F45944" p-id="23192"></path><path d="M878.626052 349.259522 610.025571 676.327626c-12.063757 15.291265-42.744523-6.658653-57.551764-19.240203l-107.951641-94.964862c-14.808264-12.580526-37.000706 8.710382-49.315172 23.809265l-125.447107 153.884786c-12.294001 15.098883-34.411741-2.206248-49.103348-14.924921l-109.457948-87.046518c-19.641339-18.891256-38.375006 0.813528-38.375006 38.48143l0.676405 233.131665c0.037862 19.550265 15.928784 35.538401 35.280528 35.557844l810.558793 0.639566c19.371186 0.01842 35.20378-15.969717 35.20378-35.519981 0 0 0.811482-503.446183 0.811482-541.656437C955.37504 317.243341 914.912489 307.410392 878.626052 349.259522z" fill="#F45944" p-id="23193"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1699434372634" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4041" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M189.184 349.952c14.336 0 27.904 5.632 38.144 15.872 9.984 9.984 15.872 23.808 15.872 38.144v215.04c0 19.2-10.24 36.864-26.88 46.592-16.64 9.728-37.12 9.728-53.76 0S135.68 638.208 135.68 619.008v-215.04c0-14.336 5.632-27.904 15.872-38.144 9.728-10.24 23.552-15.872 37.632-15.872zM404.48 134.656c29.696 0 53.76 24.064 53.76 53.76v645.376c0 19.2-10.24 36.864-26.88 46.592-16.64 9.728-37.12 9.728-53.76 0S350.72 852.992 350.72 833.792V188.416c0-14.336 5.632-27.904 15.872-38.144 9.984-9.984 23.552-15.616 37.888-15.616z m215.04 134.4c29.696 0 53.76 24.064 53.76 53.76v376.576c0 19.2-10.24 36.864-26.88 46.592-16.64 9.728-37.12 9.728-53.76 0S565.76 718.592 565.76 699.392v-376.32c0-29.696 24.064-54.016 53.76-54.016z m215.296 80.896c29.696 0 53.76 24.064 53.76 53.76v242.176c0 29.696-24.064 53.76-53.76 53.76s-53.76-24.064-53.76-53.76v-242.176c0-29.696 24.064-53.76 53.76-53.76z m0 0" fill="#E67E22" p-id="4042"></path></svg>
\ No newline at end of file
<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.14715 1.271C4.45101 0.381776 5.67966 0.354845 6.03992 1.1902L6.07041 1.2715L6.48046 2.47068C6.57444 2.74569 6.7263 2.99736 6.9258 3.20869C7.1253 3.42003 7.36781 3.58612 7.63696 3.69577L7.74722 3.73693L8.9464 4.14648C9.83561 4.45034 9.86254 5.67898 9.0277 6.03924L8.9464 6.06973L7.74722 6.47979C7.47211 6.5737 7.22035 6.72553 7.00892 6.92504C6.7975 7.12454 6.63132 7.36708 6.52162 7.63628L6.48046 7.74604L6.07091 8.94572C5.76705 9.83494 4.53841 9.86187 4.17865 9.02702L4.14715 8.94572L3.7376 7.74654C3.64369 7.47144 3.49186 7.21967 3.29235 7.00825C3.09285 6.79682 2.85031 6.63065 2.58111 6.52095L2.47135 6.47979L1.27218 6.07024C0.382451 5.76638 0.35552 4.53773 1.19088 4.17798L1.27218 4.14648L2.47135 3.73693C2.74637 3.64295 2.99803 3.49109 3.20937 3.29159C3.4207 3.09209 3.5868 2.84958 3.69644 2.58043L3.7376 2.47068L4.14715 1.271Z" stroke-width="1.16667"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" >
<g clip-path="url(#clip0_16784_2993)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.5271 4.37083L25.4043 8.01175C26.3626 8.91164 26.8417 9.36158 27.1828 9.89648C27.4727 10.3511 27.6882 10.849 27.8211 11.3715C27.9775 11.9863 27.9775 12.6436 27.9775 13.9582V19.4935C27.0071 19.026 25.919 18.764 24.7697 18.764C20.6828 18.764 17.3698 22.077 17.3698 26.1639C17.3698 27.502 17.7249 28.7571 18.3461 29.8401H12.1799C9.29446 29.8401 7.85176 29.8401 6.75362 29.2697C5.82822 28.789 5.07369 28.0344 4.59299 27.1091C4.02255 26.0109 4.02255 24.5682 4.02255 21.6828V10.3173C4.02255 7.43186 4.02255 5.98915 4.59299 4.89101C5.07369 3.96561 5.82822 3.21108 6.75362 2.73038C7.85176 2.15994 9.29447 2.15994 12.1799 2.15994H15.943C17.1489 2.15994 17.7519 2.15994 18.3216 2.29333C18.806 2.40673 19.2711 2.59087 19.7019 2.83981C20.2085 3.1326 20.6481 3.54535 21.5271 4.37083ZM19.1105 6.20351C18.3195 5.4451 17.924 5.0659 17.5846 5.05216C17.315 5.04124 17.0548 5.15224 16.8761 5.3544C16.6511 5.60893 16.6511 6.15685 16.6511 7.25268V8.50383C16.6511 10.1068 16.6511 10.9083 16.963 11.5205C17.2374 12.0591 17.6753 12.4969 18.2138 12.7713C18.8261 13.0833 19.6276 13.0833 21.2305 13.0833H22.6697C23.8233 13.0833 24.4001 13.0833 24.6566 12.8505C24.8602 12.6658 24.9678 12.3979 24.9487 12.1238C24.9247 11.7782 24.5084 11.379 23.6757 10.5806L19.1105 6.20351Z" fill="url(#paint0_linear_16784_2993)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5057 21.6108C23.8901 20.1169 26.0117 20.1169 26.3961 21.6108C26.6044 22.4202 27.4368 22.9007 28.2419 22.6764C29.7278 22.2624 30.7886 24.0997 29.6871 25.1796C29.0903 25.7646 29.0903 26.7258 29.6871 27.3108C30.7886 28.3907 29.7278 30.228 28.2419 29.814C27.4368 29.5897 26.6044 30.0703 26.3961 30.8796C26.0117 32.3735 23.8901 32.3735 23.5057 30.8796C23.2974 30.0703 22.4651 29.5897 21.66 29.814C20.174 30.228 19.1133 28.3907 20.2148 27.3108C20.8116 26.7258 20.8116 25.7646 20.2148 25.1796C19.1133 24.0997 20.174 22.2624 21.66 22.6764C22.4651 22.9007 23.2974 22.4202 23.5057 21.6108ZM26.8127 26.2452C26.8127 27.2734 25.9791 28.107 24.9509 28.107C23.9227 28.107 23.0891 27.2734 23.0891 26.2452C23.0891 25.217 23.9227 24.3834 24.9509 24.3834C25.9791 24.3834 26.8127 25.217 26.8127 26.2452Z" fill="url(#paint1_linear_16784_2993)"/>
</g>
<defs>
<linearGradient id="paint0_linear_16784_2993" x1="17.0824" y1="2.15994" x2="17.0824" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#BAC6D8"/>
<stop offset="1" stop-color="#9FA9C2"/>
</linearGradient>
<linearGradient id="paint1_linear_16784_2993" x1="17.0824" y1="2.15994" x2="17.0824" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#BAC6D8"/>
<stop offset="1" stop-color="#9FA9C2"/>
</linearGradient>
<clipPath id="clip0_16784_2993">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>
\ No newline at end of file
<svg t="1709524607561" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5121"
width="128" height="128">
<path
d="M310.4 454.4v-118.4h435.2c44.8 0 86.4 25.6 105.6 64 16-22.4 22.4-48 22.4-73.6 0-73.6-57.6-131.2-131.2-131.2H310.4V76.8c0-16-19.2-28.8-35.2-19.2L9.6 246.4c-12.8 9.6-12.8 25.6 0 35.2l268.8 188.8c12.8 12.8 32 3.2 32-16zM1014.4 742.4l-268.8-188.8c-12.8-9.6-35.2 0-35.2 19.2v118.4H278.4c-44.8 0-86.4-25.6-105.6-64-16 22.4-22.4 48-22.4 73.6 0 73.6 57.6 131.2 131.2 131.2h432v118.4c0 16 19.2 28.8 35.2 19.2l268.8-188.8c9.6-12.8 9.6-32-3.2-38.4z"
p-id="5122"></path>
</svg>
\ No newline at end of file
<svg viewBox="0 0 17 16" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.89233 4.66667H3.77428C3.42285 4.66666 3.11966 4.66665 2.86995 4.68705C2.60639 4.70859 2.34424 4.75613 2.09199 4.88466C1.71567 5.07641 1.4097 5.38237 1.21796 5.75869C1.08943 6.01095 1.04188 6.27309 1.02035 6.53665C0.999949 6.78636 0.999959 7.08953 0.99997 7.44095V12.559C0.999959 12.9105 0.999949 13.2137 1.02035 13.4634C1.04188 13.7269 1.08943 13.9891 1.21796 14.2413C1.4097 14.6176 1.71567 14.9236 2.09199 15.1154C2.34424 15.2439 2.60639 15.2914 2.86995 15.313C3.11965 15.3334 3.4228 15.3334 3.77421 15.3333H8.89232C9.24372 15.3334 9.54696 15.3334 9.79666 15.313C10.0602 15.2914 10.3224 15.2439 10.5746 15.1154C10.9509 14.9236 11.2569 14.6176 11.4487 14.2413C11.5772 13.9891 11.6247 13.7269 11.6463 13.4634C11.6667 13.2136 11.6667 12.9105 11.6666 12.559V7.44099C11.6667 7.08955 11.6667 6.78637 11.6463 6.53665C11.6247 6.27309 11.5772 6.01095 11.4487 5.75869C11.2569 5.38237 10.9509 5.07641 10.5746 4.88466C10.3224 4.75613 10.0602 4.70859 9.79666 4.68705C9.54695 4.66665 9.24376 4.66666 8.89233 4.66667ZM9.13804 8.80474C9.39839 8.54439 9.39839 8.12228 9.13804 7.86193C8.87769 7.60159 8.45558 7.60159 8.19523 7.86193L5.66664 10.3905L4.80471 9.5286C4.54436 9.26825 4.12225 9.26825 3.8619 9.5286C3.60155 9.78895 3.60155 10.2111 3.8619 10.4714L5.19523 11.8047C5.45558 12.0651 5.87769 12.0651 6.13804 11.8047L9.13804 8.80474Z">
</path>
<path
d="M12.8923 0.666672H7.77427C7.42285 0.666661 7.11966 0.666651 6.86995 0.687053C6.60639 0.708587 6.34424 0.756131 6.09199 0.884661C5.71567 1.07641 5.40971 1.38237 5.21796 1.75869C5.08943 2.01095 5.04188 2.27309 5.02035 2.53665C5.00206 2.76051 5.00018 3.02733 4.99999 3.33336L8.92055 3.33335C9.2463 3.33327 9.59951 3.33319 9.90523 3.35816C10.2512 3.38644 10.7084 3.4564 11.1799 3.69667C11.8071 4.01625 12.3171 4.52618 12.6367 5.15339C12.8769 5.62493 12.9469 6.08208 12.9752 6.42809C13.0001 6.73382 13.0001 7.08702 13 7.41279L13 11.3333C13.306 11.3331 13.5728 11.3313 13.7967 11.313C14.0602 11.2914 14.3224 11.2439 14.5746 11.1154C14.9509 10.9236 15.2569 10.6176 15.4487 10.2413C15.5772 9.98907 15.6247 9.72692 15.6463 9.46336C15.6667 9.21366 15.6666 8.91051 15.6666 8.5591V3.44099C15.6666 3.08959 15.6667 2.78635 15.6463 2.53665C15.6247 2.27309 15.5772 2.01095 15.4487 1.75869C15.2569 1.38237 14.9509 1.07641 14.5746 0.884661C14.3224 0.756131 14.0602 0.708587 13.7967 0.687053C13.5469 0.666651 13.2438 0.666661 12.8923 0.666672Z">
</path>
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1701144482765"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16956"
xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128">
<path
d="M870.4 709.7856c28.2624 0 51.2 24.4736 51.2 54.7328 0 28.0064-19.7632 51.2-45.2096 54.272L870.4 819.2H153.6c-28.2624 0-51.2-24.4736-51.2-54.6816 0-28.0576 19.7632-51.2 45.2096-54.3744L153.6 709.7856h716.8z m-159.2832-252.4672c28.2624 0 51.2 24.4736 51.2 54.6816 0 28.0576-19.7632 51.2-45.2096 54.3232l-5.9904 0.3584H153.6c-28.2624 0-51.2-24.4736-51.2-54.6816 0-28.0576 19.7632-51.2 45.2096-54.3232L153.6 457.3184h557.5168zM870.4 204.8c28.2624 0 51.2 24.4736 51.2 54.6816 0 28.0576-19.7632 51.2-45.2096 54.3744L870.4 314.2144H153.6c-28.2624 0-51.2-24.4736-51.2-54.7328 0-28.0064 19.7632-51.2 45.2096-54.272L153.6 204.8h716.8z"
p-id="16957"></path>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" >
<g clip-path="url(#clip0_74_2)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M10 2.49999C5.85791 2.49999 2.50004 5.85786 2.50004 10C2.50004 14.1421 5.85791 17.5 10 17.5C14.1422 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1422 2.49999 10 2.49999ZM0.833374 10C0.833374 4.93739 4.93743 0.833328 10 0.833328C15.0627 0.833328 19.1667 4.93739 19.1667 10C19.1667 15.0626 15.0627 19.1667 10 19.1667C4.93743 19.1667 0.833374 15.0626 0.833374 10ZM6.66671 7.5C6.66671 7.03976 7.0398 6.66666 7.50004 6.66666H12.5C12.9603 6.66666 13.3334 7.03976 13.3334 7.5V12.5C13.3334 12.9602 12.9603 13.3333 12.5 13.3333H7.50004C7.0398 13.3333 6.66671 12.9602 6.66671 12.5V7.5ZM8.33337 8.33333V11.6667H11.6667V8.33333H8.33337Z"
fill="#fd853a" />
</g>
<defs>
<clipPath id="clip0_74_2">
<rect width="20" height="20" fill="white" />
</clipPath>
</defs>
</svg>
\ No newline at end of file
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4714 3.52864C10.7317 3.78899 10.7317 4.2111 10.4714 4.47145L6.94277 8.00004L10.4714 11.5286C10.7317 11.789 10.7317 12.2111 10.4714 12.4714C10.211 12.7318 9.7889 12.7318 9.52855 12.4714L5.52855 8.47144C5.26821 8.21109 5.26821 7.78898 5.52855 7.52864L9.52855 3.52864C9.7889 3.26829 10.211 3.26829 10.4714 3.52864Z" fill="#92A5C9"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 17">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.66667 2.48353C8.53982 2.47295 8.3545 2.47125 8.00785 2.47125H5.86667C5.29628 2.47125 4.90614 2.47171 4.60405 2.49488C4.30859 2.51754 4.15443 2.55893 4.04634 2.61063C3.7917 2.73242 3.59259 2.92289 3.47057 3.14769C3.42305 3.23524 3.38143 3.3648 3.35807 3.63314C3.33392 3.91059 3.33333 4.27096 3.33333 4.80839V11.3166C3.33333 11.854 3.33392 12.2144 3.35807 12.4919C3.38143 12.7602 3.42305 12.8898 3.47057 12.9773C3.59259 13.2021 3.79169 13.3926 4.04634 13.5144C4.15443 13.5661 4.30859 13.6075 4.60405 13.6301C4.90614 13.6533 5.29628 13.6538 5.86667 13.6538H10.1333C10.7037 13.6538 11.0939 13.6533 11.396 13.6301C11.6914 13.6075 11.8456 13.5661 11.9537 13.5144C12.2083 13.3926 12.4074 13.2021 12.5294 12.9773C12.577 12.8898 12.6186 12.7602 12.6419 12.4919C12.6661 12.2144 12.6667 11.854 12.6667 11.3166V6.80355C12.6667 6.50209 12.6649 6.33604 12.6567 6.226L10.3796 6.226C10.2106 6.22602 10.0482 6.22604 9.91116 6.21553C9.76194 6.20408 9.58682 6.17726 9.40969 6.09255C9.16257 5.97435 8.95372 5.78188 8.82008 5.53569C8.72228 5.3555 8.69124 5.17597 8.67826 5.0269C8.66662 4.8931 8.66664 4.7361 8.66667 4.57967C8.66667 4.57247 8.66667 4.56527 8.66667 4.55807V2.48353ZM9.5789 1.35323C9.43034 1.29091 9.27618 1.24167 9.11836 1.2061C8.8144 1.1376 8.49918 1.13773 8.07363 1.1379C8.05199 1.13791 8.03007 1.13792 8.00785 1.13792L5.84058 1.13792C5.30269 1.13791 4.86122 1.13791 4.50209 1.16545C4.13054 1.19395 3.79077 1.25487 3.47104 1.40779C2.97303 1.64598 2.56021 2.02992 2.29874 2.51161C2.12827 2.82566 2.0609 3.15974 2.02976 3.51752C1.99998 3.85966 1.99999 4.27839 2 4.77963V11.3454C1.99999 11.8466 1.99998 12.2653 2.02976 12.6075C2.0609 12.9653 2.12827 13.2993 2.29874 13.6134C2.56021 14.0951 2.97303 14.479 3.47104 14.7172C3.79077 14.8701 4.13054 14.9311 4.50209 14.9596C4.86121 14.9871 5.30268 14.9871 5.84055 14.9871H10.1595C10.6973 14.9871 11.1388 14.9871 11.4979 14.9596C11.8695 14.9311 12.2092 14.8701 12.529 14.7172C13.027 14.479 13.4398 14.0951 13.7013 13.6134C13.8717 13.2993 13.9391 12.9653 13.9702 12.6075C14 12.2653 14 11.8466 14 11.3454V6.80355C14 6.7806 14 6.75793 14 6.73553C14.0003 6.3426 14.0005 6.03268 13.924 5.73352C13.8843 5.57857 13.8297 5.42814 13.7611 5.28406C13.7565 5.27396 13.7516 5.264 13.7466 5.25417C13.7021 5.16392 13.6521 5.07625 13.5969 4.99161C13.4285 4.73377 13.1997 4.51924 12.9024 4.24039C12.8859 4.22496 12.8692 4.20932 12.8523 4.19347L10.7269 2.19831C10.7108 2.18321 10.6949 2.1683 10.6792 2.15357C10.3796 1.87201 10.1528 1.65893 9.88232 1.50336C9.7944 1.45278 9.70372 1.40723 9.61076 1.36684C9.60029 1.36204 9.58966 1.3575 9.5789 1.35323ZM10 3.34474V4.55807C10 4.72277 10.0005 4.81805 10.0047 4.88541C10.0073 4.88564 10.0102 4.88587 10.0131 4.8861C10.0929 4.89221 10.203 4.89267 10.4 4.89267H11.649L10 3.34474Z" />
<path d="M4.36217 12.3512C4.24484 12.3512 4.15417 12.3192 4.09017 12.2552C4.02617 12.1885 3.99417 12.0965 3.99417 11.9792V9.86719C3.99417 9.74719 4.02617 9.65519 4.09017 9.59119C4.15684 9.52719 4.24884 9.49519 4.36617 9.49519H5.35017C5.67017 9.49519 5.91684 9.57785 6.09017 9.74319C6.26617 9.90585 6.35417 10.1312 6.35417 10.4192C6.35417 10.7072 6.26617 10.9339 6.09017 11.0992C5.91684 11.2619 5.67017 11.3432 5.35017 11.3432H4.73017V11.9792C4.73017 12.0965 4.6995 12.1885 4.63817 12.2552C4.57684 12.3192 4.48484 12.3512 4.36217 12.3512ZM4.73017 10.7792H5.22217C5.36084 10.7792 5.4675 10.7499 5.54217 10.6912C5.61684 10.6299 5.65417 10.5392 5.65417 10.4192C5.65417 10.2965 5.61684 10.2059 5.54217 10.1472C5.4675 10.0885 5.36084 10.0592 5.22217 10.0592H4.73017V10.7792Z" />
<path d="M7.16129 12.3152C7.03596 12.3152 6.93996 12.2832 6.87329 12.2192C6.80929 12.1525 6.77729 12.0579 6.77729 11.9352V9.87519C6.77729 9.75252 6.80929 9.65919 6.87329 9.59519C6.93996 9.52852 7.03596 9.49519 7.16129 9.49519H7.94529C8.43596 9.49519 8.81463 9.61785 9.08129 9.86319C9.35063 10.1085 9.48529 10.4552 9.48529 10.9032C9.48529 11.1272 9.45063 11.3272 9.38129 11.5032C9.31196 11.6765 9.21196 11.8245 9.08129 11.9472C8.95063 12.0672 8.78929 12.1592 8.59729 12.2232C8.40796 12.2845 8.19063 12.3152 7.94529 12.3152H7.16129ZM7.51329 11.7192H7.89729C8.03863 11.7192 8.15996 11.7019 8.26129 11.6672C8.36529 11.6325 8.45063 11.5819 8.51729 11.5152C8.58663 11.4485 8.63729 11.3645 8.66929 11.2632C8.70396 11.1619 8.72129 11.0419 8.72129 10.9032C8.72129 10.6259 8.65329 10.4219 8.51729 10.2912C8.38129 10.1579 8.17463 10.0912 7.89729 10.0912H7.51329V11.7192Z" />
<path d="M10.3738 12.3512C10.2565 12.3512 10.1645 12.3192 10.0978 12.2552C10.0338 12.1885 10.0018 12.0939 10.0018 11.9712V9.87519C10.0018 9.75252 10.0338 9.65919 10.0978 9.59519C10.1645 9.52852 10.2605 9.49519 10.3858 9.49519H11.7178C11.8138 9.49519 11.8858 9.51919 11.9338 9.56719C11.9818 9.61519 12.0058 9.68452 12.0058 9.77519C12.0058 9.86852 11.9818 9.94052 11.9338 9.99119C11.8858 10.0392 11.8138 10.0632 11.7178 10.0632H10.7378V10.6312H11.6298C11.7232 10.6312 11.7938 10.6552 11.8418 10.7032C11.8925 10.7512 11.9178 10.8205 11.9178 10.9112C11.9178 11.0045 11.8925 11.0752 11.8418 11.1232C11.7938 11.1712 11.7232 11.1952 11.6298 11.1952H10.7378V11.9712C10.7378 12.2245 10.6165 12.3512 10.3738 12.3512Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.73017 10.0592V10.7792H5.22217C5.36084 10.7792 5.4675 10.7499 5.54217 10.6912C5.61684 10.6299 5.65417 10.5392 5.65417 10.4192C5.65417 10.2965 5.61684 10.2059 5.54217 10.1472C5.4675 10.0885 5.36084 10.0592 5.22217 10.0592H4.73017ZM5.22217 10.7125H4.79683V10.1259H5.22217C5.35254 10.1259 5.44239 10.1536 5.50098 10.1996C5.55507 10.2421 5.5875 10.3105 5.5875 10.4192C5.5875 10.5242 5.55566 10.5935 5.50041 10.6392C5.4418 10.685 5.35212 10.7125 5.22217 10.7125Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.9275 11.9792C3.9275 12.1089 3.96318 12.2192 4.04208 12.3014L4.04303 12.3023C4.12293 12.3822 4.23262 12.4179 4.36217 12.4179C4.49585 12.4179 4.60819 12.3828 4.68631 12.3013L4.68723 12.3003C4.76291 12.2181 4.79683 12.1082 4.79683 11.9792V11.4099H5.35017C5.68113 11.4099 5.94636 11.3256 6.13581 11.1478C6.32779 10.9674 6.42083 10.7218 6.42083 10.4192C6.42083 10.1169 6.32792 9.87236 6.1358 9.69458C5.9464 9.51414 5.68118 9.42852 5.35017 9.42852H4.36617C4.23647 9.42852 4.12618 9.46419 4.04399 9.54308L4.04303 9.54405C3.96286 9.62421 3.9275 9.73547 3.9275 9.86719V11.9792ZM5.35017 11.3432H4.73017V11.9792C4.73017 12.0965 4.6995 12.1885 4.63817 12.2552C4.57684 12.3192 4.48484 12.3512 4.36217 12.3512C4.24484 12.3512 4.15417 12.3192 4.09017 12.2552C4.02617 12.1885 3.99417 12.0965 3.99417 11.9792V9.86719C3.99417 9.74719 4.02617 9.65519 4.09017 9.59119C4.15684 9.52719 4.24884 9.49519 4.36617 9.49519H5.35017C5.67017 9.49519 5.91684 9.57785 6.09017 9.74319C6.26617 9.90585 6.35417 10.1312 6.35417 10.4192C6.35417 10.7072 6.26617 10.9339 6.09017 11.0992C5.91684 11.2619 5.67017 11.3432 5.35017 11.3432Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.51329 10.0912V11.7192H7.89729C8.03863 11.7192 8.15996 11.7019 8.26129 11.6672C8.36529 11.6325 8.45063 11.5819 8.51729 11.5152C8.58663 11.4485 8.63729 11.3645 8.66929 11.2632C8.70396 11.1619 8.72129 11.0419 8.72129 10.9032C8.72129 10.6259 8.65329 10.4219 8.51729 10.2912C8.38129 10.1579 8.17463 10.0912 7.89729 10.0912H7.51329ZM8.47015 11.468C8.41191 11.5263 8.33599 11.572 8.24021 11.6039C8.14764 11.6356 8.03349 11.6525 7.89729 11.6525H7.57996V10.1579H7.89729C8.16511 10.1579 8.35179 10.2223 8.47062 10.3388L8.47111 10.3393C8.58892 10.4525 8.65463 10.6354 8.65463 10.9032C8.65463 11.0366 8.63791 11.1489 8.6062 11.2416L8.60572 11.2431C8.57672 11.335 8.53156 11.409 8.47108 11.4671L8.47015 11.468Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.71063 11.9352C6.71063 12.0693 6.7458 12.1826 6.8252 12.2654L6.82712 12.2673C6.91008 12.3469 7.02501 12.3819 7.16129 12.3819H7.94529C8.19604 12.3819 8.42107 12.3503 8.61838 12.2864C8.81803 12.2199 8.9879 12.1235 9.12639 11.9963L9.12692 11.9958C9.26499 11.8662 9.37052 11.7096 9.44332 11.5276C9.51623 11.3425 9.55196 11.134 9.55196 10.9032C9.55196 10.4411 9.41253 10.0748 9.12631 9.81401C8.84354 9.55394 8.4466 9.42852 7.94529 9.42852H7.16129C7.0243 9.42852 6.90902 9.46518 6.82615 9.54805C6.74573 9.62847 6.71063 9.74129 6.71063 9.87519V11.9352ZM6.87329 12.2192C6.93996 12.2832 7.03596 12.3152 7.16129 12.3152H7.94529C8.19063 12.3152 8.40796 12.2845 8.59729 12.2232C8.78929 12.1592 8.95063 12.0672 9.08129 11.9472C9.21196 11.8245 9.31196 11.6765 9.38129 11.5032C9.45063 11.3272 9.48529 11.1272 9.48529 10.9032C9.48529 10.4552 9.35063 10.1085 9.08129 9.86319C8.81463 9.61785 8.43596 9.49519 7.94529 9.49519H7.16129C7.03596 9.49519 6.93996 9.52852 6.87329 9.59519C6.80929 9.65919 6.77729 9.75252 6.77729 9.87519V11.9352C6.77729 12.0579 6.80929 12.1525 6.87329 12.2192Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.93516 11.9712C9.93516 12.1053 9.97033 12.2186 10.0497 12.3014L10.0517 12.3033C10.1338 12.3822 10.2441 12.4179 10.3738 12.4179C10.5062 12.4179 10.6175 12.3832 10.695 12.3023C10.7719 12.222 10.8045 12.1074 10.8045 11.9712V11.2619H11.6298C11.7337 11.2619 11.8238 11.2351 11.8883 11.171C11.9559 11.1066 11.9845 11.0161 11.9845 10.9112C11.9845 10.8083 11.9555 10.7194 11.8883 10.6554C11.8238 10.5913 11.7337 10.5645 11.6298 10.5645H10.8045V10.1299H11.7178C11.8241 10.1299 11.9161 10.1033 11.981 10.0383L11.9822 10.037C12.0455 9.97029 12.0725 9.87969 12.0725 9.77519C12.0725 9.67297 12.0452 9.5843 11.981 9.52005C11.9161 9.45513 11.8241 9.42852 11.7178 9.42852H10.3858C10.2488 9.42852 10.1336 9.46518 10.0507 9.54805C9.97026 9.62847 9.93516 9.74129 9.93516 9.87519V11.9712ZM11.8883 10.6554L11.8877 10.6548L11.8418 10.7032L11.889 10.656L11.8883 10.6554ZM11.8883 11.171L11.8877 11.1716L11.8418 11.1232L11.889 11.1703L11.8883 11.171Z" />
</svg>
\ No newline at end of file
<svg t="1712578349044" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1183"
width="128" height="128">
<path
d="M512 105.472c225.28 0 407.04 181.76 407.04 407.04s-181.76 407.04-407.04 407.04-407.04-181.76-407.04-407.04 181.76-407.04 407.04-407.04z m0-74.24c-265.216 0-480.768 215.552-480.768 480.768s215.552 480.768 480.768 480.768 480.768-215.552 480.768-480.768-215.552-480.768-480.768-480.768z m254.976 296.96l-331.776 331.776-129.024-129.024-53.248 53.248 155.648 155.648 26.624 25.6 26.624-25.6 358.4-358.4-53.248-53.248z"
p-id="1184" fill="#039855"></path>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path d="M5.95235 7.67193C6.57367 7.67193 7.07735 7.16825 7.07735 6.54693C7.07735 5.92561 6.57367 5.42193 5.95235 5.42193C5.33103 5.42193 4.82735 5.92561 4.82735 6.54693C4.82735 7.16825 5.33103 7.67193 5.95235 7.67193Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 6.58335C1.5 5.07121 1.5 4.31514 1.79428 3.73758C2.05314 3.22954 2.46619 2.81649 2.97423 2.55763C3.55179 2.26335 4.30786 2.26335 5.82 2.26335H12.18C13.6921 2.26335 14.4482 2.26335 15.0258 2.55763C15.5338 2.81649 15.9469 3.22954 16.2057 3.73758C16.5 4.31514 16.5 5.07121 16.5 6.58335V11.4166C16.5 12.9288 16.5 13.6848 16.2057 14.2624C15.9469 14.7704 15.5338 15.1835 15.0258 15.4424C14.4482 15.7366 13.6921 15.7366 12.18 15.7366H5.82C4.30786 15.7366 3.55179 15.7366 2.97423 15.4424C2.46619 15.1835 2.05314 14.7704 1.79428 14.2624C1.5 13.6848 1.5 12.9288 1.5 11.4166V6.58335ZM5.82 3.76335H12.18C12.9608 3.76335 13.4562 3.76452 13.8312 3.79516C14.1887 3.82436 14.3027 3.8727 14.3448 3.89414C14.5706 4.00919 14.7542 4.19277 14.8692 4.41856C14.8906 4.46064 14.939 4.57468 14.9682 4.93214C14.9988 5.30712 15 5.80253 15 6.58335V11.4166C15 11.4257 15 11.4347 15 11.4436L11.3619 7.80557C11.069 7.51268 10.5942 7.51268 10.3013 7.80557L3.92897 14.1779C3.75496 14.1515 3.68592 14.1215 3.65521 14.1058C3.42942 13.9908 3.24584 13.8072 3.13079 13.5814C3.10935 13.5393 3.06101 13.4253 3.0318 13.0678C3.00117 12.6929 3 12.1975 3 11.4166V6.58335C3 5.80253 3.00117 5.30713 3.0318 4.93214C3.06101 4.57468 3.10935 4.46064 3.13079 4.41856C3.24584 4.19277 3.42942 4.00919 3.65521 3.89414C3.69729 3.8727 3.81132 3.82436 4.16879 3.79516C4.54377 3.76452 5.03918 3.76335 5.82 3.76335ZM10.8316 9.39656L5.99153 14.2366H12.18C12.9608 14.2366 13.4562 14.2355 13.8312 14.2048C14.1887 14.1756 14.3027 14.1273 14.3448 14.1058C14.5706 13.9908 14.7542 13.8072 14.8692 13.5814C14.8784 13.5633 14.8927 13.5318 14.9082 13.4732L10.8316 9.39656Z"/>
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1701930523211"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9398"
xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128">
<path
d="M742.4 179.2H281.6a128 128 0 0 0-128 128v596.7104L298.496 768H742.4a128 128 0 0 0 128-128V307.2a128 128 0 0 0-128-128zM281.6 230.4h460.8a76.8 76.8 0 0 1 76.8 76.8v332.8a76.8 76.8 0 0 1-76.8 76.8H278.272L204.8 785.664V307.2a76.8 76.8 0 0 1 76.8-76.8z"
p-id="9399"></path>
<path
d="M534.016 525.2608v-0.1792c0-66.9952 36.3008-129.1008 95.6416-163.6352a22.3744 22.3744 0 0 1 30.1312 7.2192 20.8384 20.8384 0 0 1-7.424 29.1584 150.7584 150.7584 0 0 0-59.8528 64.0768c27.0848-2.9184 53.248 10.624 65.7664 34.048a62.0288 62.0288 0 0 1-9.3952 71.6032 67.328 67.328 0 0 1-72.4992 17.0752c-25.472-9.3696-42.3424-32.9984-42.368-59.392z m-175.616 0v-0.1792c0-66.9952 36.3008-129.1008 95.6416-163.6352a22.3744 22.3744 0 0 1 30.1568 7.2192 20.8384 20.8384 0 0 1-7.4496 29.1584 150.7584 150.7584 0 0 0-59.8528 64.0768c27.1104-2.9184 53.248 10.624 65.792 34.048a62.0288 62.0288 0 0 1-9.4208 71.6032 67.328 67.328 0 0 1-72.4736 17.0752c-25.4976-9.3696-42.3424-32.9984-42.3936-59.392z"
p-id="9400"></path>
</svg>
\ No newline at end of file
<svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.72906 1.85097L6.69706 1.85085C5.98971 1.84827 5.41291 1.84617 4.94529 1.88309C4.46218 1.92122 4.0274 2.00464 3.62397 2.21292C3.01771 2.52591 2.5262 3.01564 2.21101 3.62075C2.00144 4.02311 1.91634 4.45656 1.8764 4.93842C1.83778 5.40451 1.83778 5.97916 1.83779 6.68347V11.3274C1.83778 12.0263 1.83778 12.5969 1.87625 13.0602C1.91606 13.5396 2.0009 13.9708 2.20933 14.3721C2.52242 14.9748 3.01385 15.4662 3.61658 15.7793C4.01781 15.9877 4.44906 16.0726 4.92841 16.1124C5.39173 16.1509 5.96238 16.1508 6.66127 16.1508H11.3383C12.0372 16.1508 12.6078 16.1509 13.0711 16.1124C13.5505 16.0726 13.9817 15.9877 14.383 15.7793C14.9857 15.4662 15.4771 14.9748 15.7902 14.3721C15.9986 13.9708 16.0835 13.5396 16.1233 13.0602C16.1618 12.5969 16.1618 12.0263 16.1618 11.3274V9.50554C16.1618 9.09133 15.826 8.75554 15.4118 8.75554C14.9975 8.75554 14.6618 9.09133 14.6618 9.50554V11.2954C14.6618 12.0341 14.6612 12.5422 14.6284 12.9361C14.5965 13.321 14.5378 13.5291 14.4591 13.6806C14.2883 14.0094 14.0203 14.2774 13.6915 14.4482C13.5401 14.5269 13.3319 14.5856 12.947 14.6175C12.5531 14.6502 12.0449 14.6508 11.3063 14.6508H6.69329C5.9546 14.6508 5.44645 14.6502 5.05255 14.6175C4.66763 14.5856 4.45948 14.5269 4.30804 14.4482C3.97928 14.2774 3.71122 14.0094 3.54045 13.6806C3.46178 13.5291 3.40307 13.321 3.37111 12.9361C3.33839 12.5422 3.33779 12.034 3.33779 11.2953V6.71554C3.33779 5.97142 3.33839 5.45912 3.37128 5.06231C3.40345 4.67419 3.46254 4.46502 3.54137 4.31369C3.7136 3.98302 3.98078 3.71681 4.31207 3.54578C4.46337 3.46767 4.67323 3.40923 5.06333 3.37843C5.46189 3.34697 5.97654 3.34825 6.72362 3.35096C7.34582 3.35322 7.97156 3.35468 8.54741 3.35468C8.96163 3.35468 9.29741 3.0189 9.29741 2.60468C9.29741 2.19047 8.96163 1.85468 8.54741 1.85468C7.97394 1.85468 7.35012 1.85322 6.72906 1.85097ZM8.26244 8.66554C7.96954 8.95843 7.96954 9.4333 8.26244 9.7262C8.55533 10.0191 9.0302 10.0191 9.3231 9.72619L14.6618 4.38754V6.5054C14.6618 6.91962 14.9975 7.2554 15.4118 7.2554C15.826 7.2554 16.1618 6.91962 16.1618 6.5054V2.6698C16.1621 2.66102 16.1622 2.6522 16.1622 2.64334C16.1622 2.22913 15.8264 1.89334 15.4122 1.89334C15.4121 1.89334 15.4123 1.89334 15.4122 1.89334H11.5502C11.1359 1.89334 10.8002 2.22913 10.8002 2.64334C10.8002 3.05756 11.1359 3.39334 11.5502 3.39334H13.5346L8.26244 8.66554Z" />
</svg>
<svg width="4" height="14" viewBox="0 0 4 14" xmlns="http://www.w3.org/2000/svg">
<line x1="2" y1="2" x2="2" y2="12" stroke="#3370FF" stroke-width="4" stroke-linecap="round"/>
</svg>
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="32" height="32" fill="url(#pattern0)" />
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_18_1411" transform="scale(0.00666667)" />
</pattern>
<image id="image0_18_1411" width="150" height="150"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAYAAAA8AXHiAAAAAXNSR0IArs4c6QAABV1JREFUeF7tnEFy3DYQRTV738Y5gG/kHMW5UQ6Q3Mb7caFSqEAsggQo/j+Q/9NOLqob/fpNgyAlP974goCAwEMQk5AQeEMsJJAQQCwJVoIiFg5ICCCWBCtBEQsHJAQQS4KVoIiFAxICiCXBSlDEwgEJAcSSYCUoYuGAhABiSbASFLFwQEIAsSRYCYpYOCAhgFgSrARFLByQEEAsCVaCIhYOSAgglgQrQRELByQEEEuClaCIhQMSAoglwUpQxMIBCQHEkmAlKGLhgIQAYkmwEhSxcEBCALEkWAmKWDggIYBYEqwERSwckBBALAlWgiIWDkgIIJYEK0ERCwckBBBLgpWgiIUDEgKIJcFKUMTCAQkBxJJgJShi4YCEAGJJsBIUsXBAQgCxJFgJilg4ICGAWBKsBEUsHJAQQCwJVoIiFg5ICCCWBCtBEQsHJAQQS4KVoIiFAxICiCXBSlDEwgEJAcSSYCUoYuGAhMBSYn378/n8+fy/zn/+eiy1PkkHLgRtOa3KaJnGFViFcSvWl8fb298/kKu698f357Mw2TIq368m2BJi7UlVYBaI5Qu5/uOwnehVuBU5vVysnlTtDrHap/HC7vXhH+lJtSqnJcRqR/u2Ayt+Gj9syYUAZRtsf6x80zZvtduGl4u1BVbgbaGVf0ufWpXTO7sauRBr82ltxepBmxWrbq/tYeCqmNtYr4rzdTOxWoxlOiDWjlhbobbQZsTqnS5nDwH1BNbKeXVb3q6pxplZE2JN3j+UBt4l1tFBYFaKu05gZ4eT0QmIWDeLVcKVUT/SgLOT0+h2cRZndoKeHU5GHqcg1ovFareuvYPAiKC9A0WVfFTQ+uzpjjUh1oJiVSFGJ83e0b6WVW+UR+6P9rbBuu23x/ER2RFrUbFmttTe0b4VdETS7ZbaO/Ui1qQ0I5ef3bzPCHE0Iepa/h14sX20pplJc/QopZ2AiDViyuQ1CrHae5rtlPioWDPb6tHku0usKvrMfd9kiy5dvsST96PHDatNLMQa8+y3FEs9sUZlv3Ma927emVgd0e+E33sY2U7EO7ZCxDqfWkysHUZ3yX5XnLJEJta5zO+uuBP+3stnxc07E+u8yb/1xNo7FNy1FY7EKfjbZ1l76xl9XcXEOpfZNrFUYo3KsBWrFt6uazQWYi0gVvvS90oTjybN7O8+nT19H518iPVCsaoQvccNo00sP997Xzg6YVoMPblmYiHWi8XqyTUjVS1hT4grcXpb4sirnLoWxFpArMklfIrLEWuyTXc+bphM/akuR6zJdh39nlENdXX7mVzK0pf3PoC80jlo29HJaeYGd2kzbljc3jMxxDoBuycXUr2HdvRHqzMHgRscPw3x8ifvR8fy1WCd0jRd8Bn+V56lxDL1hTQGAohlgJyYArESu26oGbEMkBNTIFZi1w01I5YBcmIKxErsuqFmxDJATkyBWIldN9SMWAbIiSkQK7HrhpoRywA5MQViJXbdUDNiGSAnpkCsxK4bakYsA+TEFIiV2HVDzYhlgJyYArESu26oGbEMkBNTIFZi1w01I5YBcmIKxErsuqFmxDJATkyBWIldN9SMWAbIiSkQK7HrhpoRywA5MQViJXbdUDNiGSAnpkCsxK4bakYsA+TEFIiV2HVDzYhlgJyYArESu26oGbEMkBNTIFZi1w01I5YBcmIKxErsuqFmxDJATkyBWIldN9SMWAbIiSkQK7HrhpoRywA5MQViJXbdUDNiGSAnpkCsxK4bakYsA+TEFIiV2HVDzYhlgJyYArESu26oGbEMkBNTIFZi1w01I5YBcmIKxErsuqFmxDJATkyBWIldN9SMWAbIiSl+AcEzjbVWPFoJAAAAAElFTkSuQmCC" />
</defs>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M1.28019 2.36532C1.17847 2.56497 1.17847 2.82633 1.17847 3.34905V5.02905C1.17847 5.55176 1.17847 5.81312 1.28019 6.01277C1.36968 6.18839 1.51246 6.33117 1.68808 6.42065C1.88773 6.52238 2.14908 6.52238 2.6718 6.52238H11.3984C11.9211 6.52238 12.1825 6.52238 12.3821 6.42065C12.5578 6.33117 12.7005 6.18839 12.79 6.01277C12.8918 5.81312 12.8918 5.55176 12.8918 5.02905V3.34905C12.8918 2.82633 12.8918 2.56497 12.79 2.36532C12.7005 2.1897 12.5578 2.04692 12.3821 1.95744C12.1825 1.85571 11.9211 1.85571 11.3984 1.85571H2.6718C2.14908 1.85571 1.88773 1.85571 1.68808 1.95744C1.51246 2.04692 1.36968 2.1897 1.28019 2.36532ZM3.6542 5.06405C4.13745 5.06405 4.5292 4.6723 4.5292 4.18905C4.5292 3.7058 4.13745 3.31405 3.6542 3.31405C3.17095 3.31405 2.7792 3.7058 2.7792 4.18905C2.7792 4.6723 3.17095 5.06405 3.6542 5.06405Z"
fill="#8A95A7" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M1.28019 7.98726C1.17847 8.18691 1.17847 8.44827 1.17847 8.97099V10.651C1.17847 11.1737 1.17847 11.4351 1.28019 11.6347C1.36968 11.8103 1.51246 11.9531 1.68808 12.0426C1.88773 12.1443 2.14908 12.1443 2.6718 12.1443H11.3984C11.9211 12.1443 12.1825 12.1443 12.3821 12.0426C12.5578 11.9531 12.7005 11.8103 12.79 11.6347C12.8918 11.4351 12.8918 11.1737 12.8918 10.651V8.97099C12.8918 8.44827 12.8918 8.18691 12.79 7.98726C12.7005 7.81164 12.5578 7.66886 12.3821 7.57938C12.1825 7.47765 11.9211 7.47765 11.3984 7.47765H2.6718C2.14908 7.47765 1.88773 7.47765 1.68808 7.57938C1.51246 7.66886 1.36968 7.81164 1.28019 7.98726ZM3.6542 10.686C4.13745 10.686 4.5292 10.2942 4.5292 9.81099C4.5292 9.32774 4.13745 8.93599 3.6542 8.93599C3.17095 8.93599 2.7792 9.32774 2.7792 9.81099C2.7792 10.2942 3.17095 10.686 3.6542 10.686Z"
fill="#8A95A7" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 20">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M15.7233 1.21707C14.9554 1.3079 14.4221 2.00197 14.532 2.76731L16.6975 17.8447C16.8074 18.6101 17.519 19.1569 18.2868 19.066L21.5433 18.6808C22.3111 18.59 22.8445 17.8959 22.7345 17.1306L20.5691 2.05317C20.4592 1.28782 19.7476 0.741021 18.9797 0.831852L15.7233 1.21707ZM0.830017 2.32412C0.830017 1.55092 1.45682 0.924121 2.23002 0.924121H5.51815C6.29135 0.924121 6.91815 1.55092 6.91815 2.32412V17.675C6.91815 18.4482 6.29135 19.075 5.51815 19.075H2.23002C1.45682 19.075 0.830017 18.4482 0.830017 17.675V2.32412ZM7.9198 2.32412C7.9198 1.55092 8.5466 0.924121 9.3198 0.924121H12.6079C13.3811 0.924121 14.0079 1.55092 14.0079 2.32412V17.675C14.0079 18.4482 13.3811 19.075 12.6079 19.075H9.3198C8.5466 19.075 7.9198 18.4482 7.9198 17.675V2.32412Z"
fill="#8A95A7" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1703840539554" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7163" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M224.63064 14.207408h566.760385a4.266489 4.266489 0 0 1 4.735803 4.735803v227.915837a4.266489 4.266489 0 0 1-4.735803 4.735802H224.63064a4.266489 4.266489 0 0 1-4.735802-4.735802V18.943211a4.266489 4.266489 0 0 1 4.735802-4.735803z" fill="#4A8BFD" p-id="7164"></path><path d="M781.876755 28.414816v209.057956H234.059581v-209.057956h547.817174M791.34836 0H224.417316a18.943211 18.943211 0 0 0-18.943211 18.943211v227.915837a18.943211 18.943211 0 0 0 18.943211 18.94321h566.760385a18.943211 18.943211 0 0 0 18.943211-18.94321V18.943211a18.943211 18.943211 0 0 0-18.772552-18.943211z" fill="#333333" p-id="7165"></path><path d="M224.63064 393.028957h566.760385a4.266489 4.266489 0 0 1 4.735803 4.735803v227.915837a4.266489 4.266489 0 0 1-4.735803 4.735802H224.63064a4.266489 4.266489 0 0 1-4.735802-4.735802V397.76476a4.266489 4.266489 0 0 1 4.735802-4.735803z" fill="#EDEDED" p-id="7166"></path><path d="M781.876755 407.535019v208.503313H234.059581V407.535019h547.817174m9.471605-28.414816H224.417316a18.943211 18.943211 0 0 0-18.943211 18.943211v227.446523a18.943211 18.943211 0 0 0 18.943211 18.943211h566.760385a18.943211 18.943211 0 0 0 18.943211-18.943211V398.063414a18.943211 18.943211 0 0 0-18.772552-18.943211z" fill="#333333" p-id="7167"></path><path d="M224.63064 771.935836h566.760385a4.266489 4.266489 0 0 1 4.735803 4.735803v227.958501a4.266489 4.266489 0 0 1-4.735803 4.735803H224.63064a4.266489 4.266489 0 0 1-4.735802-4.735803v-227.958501a4.266489 4.266489 0 0 1 4.735802-4.735803z" fill="#4A8BFD" p-id="7168"></path><path d="M781.876755 786.185909v209.057956H234.059581v-209.057956h547.817174m9.471605-28.414816H224.417316a18.943211 18.943211 0 0 0-18.943211 18.943211v227.915836a18.943211 18.943211 0 0 0 18.943211 18.943211h566.760385a18.943211 18.943211 0 0 0 18.943211-18.943211v-227.915836a18.943211 18.943211 0 0 0-18.772552-18.943211z m56.573643-251.722845a14.207408 14.207408 0 1 1 0-28.414816 147.577851 147.577851 0 0 0 0-295.113037 14.207408 14.207408 0 1 1 0-28.414816 175.992667 175.992667 0 0 1 0 351.985334z" fill="#333333" p-id="7169"></path><path d="M884.443148 530.751219a14.122078 14.122078 0 0 1-7.295696-2.00525l-41.512937-24.916295a14.207408 14.207408 0 0 1-1.791925-23.2097l41.512937-33.150619a14.207408 14.207408 0 0 1 17.705929 22.185743l-25.598934 20.393817 23.977668 14.420732a14.207408 14.207408 0 0 1-7.295696 26.452231z m-708.237157 326.215741a175.992667 175.992667 0 0 1 0-351.985334 14.207408 14.207408 0 0 1 0 28.414816 147.577851 147.577851 0 1 0 0 295.113037 14.207408 14.207408 0 0 1 0 28.414816z" fill="#333333" p-id="7170"></path><path d="M139.428857 881.413941a14.207408 14.207408 0 0 1-7.295696-26.452231l23.977668-14.420733-25.598934-20.393816a14.207408 14.207408 0 0 1 17.705929-22.185743l41.043623 33.662598a14.207408 14.207408 0 0 1-1.621265 23.295029l-41.512937 24.916295a14.079413 14.079413 0 0 1-6.698388 1.578601z" fill="#333333" p-id="7171"></path></svg>
\ No newline at end of file
<svg t="1711938287623" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
p-id="5143">
<path
d="M153.6 153.6h716.8a51.2 51.2 0 0 1 0 102.4H153.6a51.2 51.2 0 1 1 0-102.4z m0 614.4h716.8a51.2 51.2 0 0 1 0 102.4H153.6a51.2 51.2 0 0 1 0-102.4z m0-307.2h131.6352a51.2 51.2 0 1 1 0 102.4H153.6a51.2 51.2 0 0 1 0-102.4z m292.5568 0h131.6864a51.2 51.2 0 0 1 0 102.4H446.1568a51.2 51.2 0 0 1 0-102.4z m292.608 0H870.4a51.2 51.2 0 0 1 0 102.4h-131.6352a51.2 51.2 0 0 1 0-102.4z"
p-id="5144"></path>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.66667 2.42109C8.53982 2.4105 8.3545 2.40881 8.00785 2.40881H5.86667C5.29628 2.40881 4.90614 2.40926 4.60405 2.43243C4.30859 2.45509 4.15443 2.49648 4.04634 2.54818C3.7917 2.66997 3.59259 2.86044 3.47057 3.08524C3.42305 3.17279 3.38143 3.30236 3.35807 3.57069C3.33392 3.84815 3.33333 4.20851 3.33333 4.74594V11.2542C3.33333 11.7916 3.33392 12.152 3.35807 12.4294C3.38143 12.6978 3.42305 12.8273 3.47057 12.9149C3.59259 13.1397 3.79169 13.3301 4.04634 13.4519C4.15443 13.5036 4.30859 13.545 4.60405 13.5677C4.90614 13.5908 5.29628 13.5913 5.86667 13.5913H10.1333C10.7037 13.5913 11.0939 13.5908 11.396 13.5677C11.6914 13.545 11.8456 13.5036 11.9537 13.4519C12.2083 13.3301 12.4074 13.1397 12.5294 12.9149C12.577 12.8273 12.6186 12.6978 12.6419 12.4294C12.6661 12.152 12.6667 11.7916 12.6667 11.2542V6.7411C12.6667 6.43964 12.6649 6.27359 12.6567 6.16356L10.3796 6.16356C10.2106 6.16357 10.0482 6.16359 9.91116 6.15308C9.76194 6.14163 9.58682 6.11482 9.40969 6.0301C9.16257 5.9119 8.95372 5.71944 8.82008 5.47324C8.72228 5.29306 8.69124 5.11352 8.67826 4.96445C8.66662 4.83066 8.66664 4.67366 8.66667 4.51723C8.66667 4.51002 8.66667 4.50282 8.66667 4.49562V2.42109ZM9.5789 1.29078C9.43034 1.22846 9.27618 1.17922 9.11836 1.14366C8.8144 1.07516 8.49918 1.07528 8.07363 1.07546C8.05199 1.07547 8.03007 1.07547 8.00785 1.07547L5.84058 1.07547C5.30269 1.07547 4.86122 1.07546 4.50209 1.103C4.13054 1.1315 3.79077 1.19242 3.47104 1.34535C2.97303 1.58354 2.56021 1.96747 2.29874 2.44917C2.12827 2.76321 2.0609 3.0973 2.02976 3.45508C1.99998 3.79721 1.99999 4.21594 2 4.71718V11.2829C1.99999 11.7842 1.99998 12.2029 2.02976 12.545C2.0609 12.9028 2.12827 13.2369 2.29874 13.5509C2.56021 14.0326 2.97303 14.4166 3.47104 14.6548C3.79077 14.8077 4.13054 14.8686 4.50209 14.8971C4.86121 14.9246 5.30268 14.9246 5.84055 14.9246H10.1595C10.6973 14.9246 11.1388 14.9246 11.4979 14.8971C11.8695 14.8686 12.2092 14.8077 12.529 14.6548C13.027 14.4166 13.4398 14.0326 13.7013 13.5509C13.8717 13.2369 13.9391 12.9028 13.9702 12.545C14 12.2029 14 11.7842 14 11.2829V6.7411C14 6.71815 14 6.69549 14 6.67309C14.0003 6.28015 14.0005 5.97023 13.924 5.67107C13.8843 5.51612 13.8297 5.36569 13.7611 5.22161C13.7565 5.21151 13.7516 5.20155 13.7466 5.19173C13.7021 5.10148 13.6521 5.0138 13.5969 4.92916C13.4285 4.67132 13.1997 4.4568 12.9024 4.17794C12.8859 4.16251 12.8692 4.14688 12.8523 4.13103L10.7269 2.13586C10.7108 2.12076 10.6949 2.10585 10.6792 2.09112C10.3796 1.80956 10.1528 1.59648 9.88232 1.44091C9.7944 1.39034 9.70372 1.34478 9.61076 1.30439C9.60029 1.29959 9.58966 1.29505 9.5789 1.29078ZM10 3.28229V4.49562C10 4.66032 10.0005 4.75561 10.0047 4.82296C10.0073 4.82319 10.0102 4.82342 10.0131 4.82365C10.0929 4.82977 10.203 4.83022 10.4 4.83022H11.649L10 3.28229Z" />
<path
d="M5.48877 12.2967C5.17677 12.2967 4.90877 12.2367 4.68477 12.1167C4.46077 11.9967 4.28877 11.8274 4.16877 11.6087C4.05143 11.3901 3.99277 11.1341 3.99277 10.8407C3.99277 10.6221 4.0261 10.4234 4.09277 10.2447C4.1621 10.0661 4.26077 9.91274 4.38877 9.78474C4.51943 9.65674 4.67677 9.55941 4.86077 9.49274C5.04743 9.42341 5.25677 9.38874 5.48877 9.38874C5.61143 9.38874 5.7381 9.40341 5.86877 9.43274C6.0021 9.45941 6.11943 9.50074 6.22077 9.55674C6.29543 9.59674 6.34743 9.64741 6.37677 9.70874C6.4061 9.77007 6.41543 9.83274 6.40477 9.89674C6.39677 9.96074 6.3741 10.0181 6.33677 10.0687C6.29943 10.1194 6.25143 10.1541 6.19277 10.1727C6.1341 10.1887 6.0701 10.1794 6.00077 10.1447C5.92077 10.1074 5.84077 10.0794 5.76077 10.0607C5.68343 10.0394 5.6021 10.0287 5.51677 10.0287C5.35143 10.0287 5.21277 10.0607 5.10077 10.1247C4.99143 10.1861 4.90877 10.2767 4.85277 10.3967C4.79677 10.5167 4.76877 10.6647 4.76877 10.8407C4.76877 11.0167 4.79677 11.1661 4.85277 11.2887C4.90877 11.4087 4.99143 11.5007 5.10077 11.5647C5.21277 11.6261 5.35143 11.6567 5.51677 11.6567C5.5861 11.6567 5.66077 11.6487 5.74077 11.6327C5.82077 11.6141 5.89943 11.5861 5.97677 11.5487C6.05677 11.5141 6.12743 11.5047 6.18877 11.5207C6.25277 11.5367 6.30343 11.5687 6.34077 11.6167C6.38077 11.6647 6.4061 11.7207 6.41677 11.7847C6.42743 11.8461 6.4181 11.9074 6.38877 11.9687C6.3621 12.0301 6.3141 12.0794 6.24477 12.1167C6.15143 12.1727 6.03543 12.2167 5.89677 12.2487C5.76077 12.2807 5.62477 12.2967 5.48877 12.2967Z" />
<path
d="M7.87636 12.2967C7.76969 12.2967 7.65769 12.2887 7.54036 12.2727C7.42569 12.2594 7.31636 12.2381 7.21236 12.2087C7.10836 12.1794 7.01503 12.1447 6.93236 12.1047C6.86036 12.0701 6.80969 12.0247 6.78036 11.9687C6.75103 11.9101 6.74036 11.8487 6.74836 11.7847C6.75636 11.7207 6.77903 11.6647 6.81636 11.6167C6.85369 11.5661 6.90303 11.5327 6.96436 11.5167C7.02569 11.4981 7.09503 11.5061 7.17236 11.5407C7.27369 11.5887 7.38836 11.6261 7.51636 11.6527C7.64436 11.6794 7.76436 11.6927 7.87636 11.6927C8.05236 11.6927 8.17503 11.6701 8.24436 11.6247C8.31636 11.5767 8.35236 11.5181 8.35236 11.4487C8.35236 11.3874 8.32703 11.3381 8.27636 11.3007C8.22836 11.2634 8.1417 11.2314 8.01636 11.2047L7.54836 11.1047C7.29236 11.0514 7.10169 10.9581 6.97636 10.8247C6.85103 10.6914 6.78836 10.5194 6.78836 10.3087C6.78836 10.1701 6.81636 10.0447 6.87236 9.93274C6.93103 9.81807 7.01236 9.72074 7.11636 9.64074C7.22303 9.56074 7.34836 9.49941 7.49236 9.45674C7.63903 9.41141 7.80169 9.38874 7.98036 9.38874C8.11903 9.38874 8.25903 9.40474 8.40036 9.43674C8.54436 9.46607 8.66836 9.51141 8.77236 9.57274C8.8337 9.60474 8.8777 9.64874 8.90436 9.70474C8.93103 9.76074 8.94169 9.81941 8.93636 9.88074C8.93103 9.93941 8.9097 9.99141 8.87236 10.0367C8.8377 10.0821 8.7897 10.1127 8.72836 10.1287C8.6697 10.1421 8.59903 10.1314 8.51636 10.0967C8.43903 10.0621 8.35103 10.0367 8.25236 10.0207C8.15636 10.0021 8.06303 9.99274 7.97236 9.99274C7.8737 9.99274 7.7897 10.0047 7.72036 10.0287C7.65103 10.0501 7.59769 10.0821 7.56036 10.1247C7.52569 10.1674 7.50836 10.2167 7.50836 10.2727C7.50836 10.3287 7.53103 10.3767 7.57636 10.4167C7.62436 10.4541 7.71103 10.4861 7.83636 10.5127L8.30036 10.6127C8.55903 10.6687 8.75236 10.7607 8.88036 10.8887C9.00836 11.0167 9.07236 11.1834 9.07236 11.3887C9.07236 11.5274 9.04436 11.6527 8.98836 11.7647C8.93236 11.8767 8.85236 11.9727 8.74836 12.0527C8.64436 12.1301 8.51903 12.1901 8.37236 12.2327C8.2257 12.2754 8.06036 12.2967 7.87636 12.2967Z" />
<path
d="M10.6911 12.2887C10.5898 12.2887 10.5071 12.2674 10.4431 12.2247C10.3818 12.1821 10.3298 12.1141 10.2871 12.0207L9.31914 9.88474C9.27648 9.79141 9.26314 9.70741 9.27914 9.63274C9.29514 9.55807 9.33248 9.50074 9.39114 9.46074C9.44981 9.41807 9.52314 9.39674 9.61114 9.39674C9.72048 9.39674 9.80181 9.42074 9.85514 9.46874C9.91114 9.51674 9.95914 9.58741 9.99914 9.68074L10.8151 11.5687H10.5911L11.4071 9.67674C11.4471 9.58341 11.4951 9.51407 11.5511 9.46874C11.6071 9.42074 11.6858 9.39674 11.7871 9.39674C11.8698 9.39674 11.9391 9.41807 11.9951 9.46074C12.0511 9.50074 12.0858 9.55807 12.0991 9.63274C12.1151 9.70741 12.1018 9.79141 12.0591 9.88474L11.0871 12.0207C11.0471 12.1141 10.9965 12.1821 10.9351 12.2247C10.8738 12.2674 10.7925 12.2887 10.6911 12.2887Z" />
<path d="M10.525 11.3238H10.8701V11.5687H10.525V11.3238Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.77547 0.543771C8.92388 0.515927 9.07618 0.515927 9.22459 0.543771C9.40102 0.576873 9.55814 0.657236 9.62886 0.693405C9.63611 0.697112 9.64244 0.700354 9.6478 0.703034L17.0619 4.41007C17.3442 4.55123 17.5225 4.83978 17.5225 5.15542C17.5225 5.47107 17.3442 5.75962 17.0619 5.90078L9.6478 9.60781C9.64244 9.61049 9.63611 9.61373 9.62886 9.61744C9.55814 9.65361 9.40102 9.73397 9.22459 9.76707C9.07618 9.79492 8.92388 9.79492 8.77547 9.76707C8.59904 9.73397 8.44192 9.65361 8.3712 9.61744C8.36396 9.61373 8.35762 9.61049 8.35226 9.60781L0.938194 5.90078C0.655874 5.75962 0.477539 5.47107 0.477539 5.15542C0.477539 4.83978 0.655874 4.55123 0.938194 4.41007L8.35226 0.703034C8.35762 0.700354 8.36396 0.697112 8.3712 0.693406C8.44192 0.657236 8.59904 0.576873 8.77547 0.543771ZM9.00003 2.24254L3.17426 5.15542L9.00003 8.06831L14.8258 5.15542L9.00003 2.24254ZM0.565516 8.62732C0.77134 8.21567 1.2719 8.04882 1.68355 8.25464L9.00003 11.9129L16.3165 8.25464C16.7282 8.04882 17.2287 8.21567 17.4345 8.62732C17.6404 9.03897 17.4735 9.53953 17.0619 9.74536L9.6478 13.4524C9.64244 13.4551 9.63611 13.4583 9.62886 13.462C9.55814 13.4982 9.40102 13.5786 9.22459 13.6117C9.07618 13.6395 8.92388 13.6395 8.77547 13.6117C8.59904 13.5786 8.44192 13.4982 8.3712 13.462C8.36396 13.4583 8.35762 13.4551 8.35226 13.4524L0.938194 9.74536C0.526545 9.53953 0.359691 9.03897 0.565516 8.62732ZM0.565516 12.4719C0.77134 12.0603 1.2719 11.8934 1.68355 12.0992L9.00003 15.7575L16.3165 12.0992C16.7282 11.8934 17.2287 12.0603 17.4345 12.4719C17.6404 12.8836 17.4735 13.3841 17.0619 13.5899L9.64781 17.297C9.64245 17.2996 9.63611 17.3029 9.62886 17.3066C9.55814 17.3428 9.40103 17.4231 9.22459 17.4562C9.07618 17.4841 8.92388 17.4841 8.77547 17.4562C8.59903 17.4231 8.44192 17.3428 8.3712 17.3066C8.36395 17.3029 8.35762 17.2996 8.35226 17.297L0.938194 13.5899C0.526545 13.3841 0.359691 12.8836 0.565516 12.4719Z" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698491522536" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4046" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M512 642.9c81.6 0 157.6-42.3 229.5-130.9-72-88.6-147.9-130.9-229.5-130.9S354.4 423.4 282.5 512c71.9 88.6 147.9 130.9 229.5 130.9z m0 62.3c-105.3 0-201.4-53.6-288.5-160.7-15.4-18.9-15.4-46 0-64.9C310.6 372.4 406.7 318.8 512 318.8s201.4 53.6 288.5 160.7c15.4 18.9 15.4 46 0 64.9C713.4 651.6 617.3 705.2 512 705.2z m0 0" fill="#333333" p-id="4047"></path><path d="M512 540c15.5 0 28-12.5 28-28 0-15.4-12.5-28-28-28s-28 12.5-28 28c0 15.4 12.5 28 28 28z m0 71.9c-35.7 0-68.7-19-86.6-49.9-17.9-30.9-17.9-69 0-99.9 17.9-30.9 50.9-49.9 86.6-49.9 55.2 0 100 44.7 100 99.9 0 55.1-44.8 99.8-100 99.8z m0 0" fill="#333333" p-id="4048"></path><path d="M136 888V745c0-19.9-16.1-36-36-36s-36 16.1-36 36v155c0 33.1 26.9 60 60 60h155c19.9 0 36-16.1 36-36s-16.1-36-36-36H136zM136 136h143c19.9 0 36-16.1 36-36s-16.1-36-36-36H124c-33.1 0-60 26.9-60 60v155c0 19.9 16.1 36 36 36s36-16.1 36-36V136zM888 136v143c0 19.9 16.1 36 36 36s36-16.1 36-36V124c0-33.1-26.9-60-60-60H745c-19.9 0-36 16.1-36 36s16.1 36 36 36h143zM888 888H745c-19.9 0-36 16.1-36 36s16.1 36 36 36h155c33.1 0 60-26.9 60-60V745c0-19.9-16.1-36-36-36s-36 16.1-36 36v143z" fill="#333333" p-id="4049"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8.97102 5.68723L8.93214 4.22716C8.91418 3.5528 8.36099 3.01099 7.68174 3.01099C7.00248 3.01099 6.4493 3.5528 6.43134 4.22716L6.39245 5.68723H3.375C3.16789 5.68723 3 5.85512 3 6.06223V7.77955C4.3982 7.83251 5.51546 8.98273 5.51546 10.3939C5.51546 11.8051 4.3982 12.9553 3 13.0082V14.6325C3 14.8396 3.16789 15.0075 3.375 15.0075H5.13833C5.23045 13.6831 6.33396 12.6374 7.68172 12.6374C9.02947 12.6374 10.133 13.6831 10.2251 15.0075H11.9452C12.1523 15.0075 12.3202 14.8396 12.3202 14.6325V11.7055L13.7725 11.6593C14.4518 11.6377 14.9966 11.0792 14.9966 10.394C14.9966 9.70889 14.4518 9.1504 13.7725 9.12879L12.3202 9.08261V6.06222C12.3202 5.85512 12.1523 5.68723 11.9452 5.68723H8.97102ZM8.73132 16.5075V15.187C8.73132 14.6073 8.2614 14.1374 7.68172 14.1374C7.10203 14.1374 6.63211 14.6073 6.63211 15.187V16.5075H3.375C2.33947 16.5075 1.5 15.668 1.5 14.6325V11.5101H2.8992C3.51569 11.5101 4.01546 11.0104 4.01546 10.3939C4.01546 9.7774 3.51569 9.27764 2.8992 9.27764L1.5 9.27764V6.06223C1.5 5.02669 2.33947 4.18722 3.375 4.18722H4.93187C4.97141 2.70246 6.18743 1.51099 7.68174 1.51099C9.17604 1.51099 10.3921 2.70246 10.4316 4.18722H11.9452C12.9807 4.18722 13.8202 5.02669 13.8202 6.06222V7.62955C15.3063 7.67682 16.4966 8.89643 16.4966 10.394C16.4966 11.8916 15.3063 13.1112 13.8202 13.1585V14.6325C13.8202 15.668 12.9807 16.5075 11.9452 16.5075H8.73132Z" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.49989 3C8.05014 3 6.87489 4.17525 6.87489 5.625C6.87489 7.07475 8.05014 8.25 9.49989 8.25C10.9496 8.25 12.1249 7.07475 12.1249 5.625C12.1249 4.17525 10.9496 3 9.49989 3ZM5.37489 5.625C5.37489 3.34683 7.22171 1.5 9.49989 1.5C11.7781 1.5 13.6249 3.34683 13.6249 5.625C13.6249 7.90317 11.7781 9.75 9.49989 9.75C7.22171 9.75 5.37489 7.90317 5.37489 5.625ZM9.49989 12C7.37062 12 5.47275 13.027 4.26027 14.6316C4.1861 14.7298 4.12933 14.805 4.08211 14.8711C4.04626 14.9213 4.0218 14.9581 4.00477 14.9861C4.11624 14.9988 4.27506 15 4.57031 15H14.4295C14.7247 15 14.8835 14.9988 14.995 14.9861C14.978 14.9581 14.9535 14.9213 14.9177 14.8711C14.8704 14.805 14.8137 14.7298 14.7395 14.6316C13.527 13.027 11.6292 12 9.49989 12ZM3.0635 13.7273C4.54322 11.769 6.87405 10.5 9.49989 10.5C12.1257 10.5 14.4566 11.769 15.9363 13.7273C15.943 13.7362 15.9497 13.7451 15.9564 13.754C16.0837 13.9222 16.2201 14.1026 16.3176 14.2767C16.4356 14.4873 16.523 14.731 16.5176 15.0274C16.5133 15.2657 16.4411 15.4887 16.3534 15.6648C16.2658 15.8409 16.1313 16.0329 15.9439 16.18C15.6939 16.3762 15.4217 16.4457 15.1799 16.4747C14.9678 16.5001 14.7164 16.5001 14.4636 16.5C14.4523 16.5 14.4409 16.5 14.4295 16.5H4.57031C4.55892 16.5 4.54753 16.5 4.53613 16.5C4.28339 16.5001 4.032 16.5001 3.81987 16.4747C3.57808 16.4457 3.3059 16.3762 3.05591 16.18C2.86845 16.0329 2.73403 15.8409 2.64637 15.6648C2.55871 15.4887 2.48653 15.2657 2.48217 15.0274C2.47675 14.731 2.56421 14.4873 2.68221 14.2767C2.7797 14.1026 2.91611 13.9222 3.04334 13.754C3.05009 13.7451 3.05681 13.7362 3.0635 13.7273Z" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1688977803658" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8763" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M512.000557 0c282.779765 0 511.999889 229.220124 511.999888 511.999889 0 271.404463-211.166563 493.478849-478.163374 510.886845l1.068521 1.113043H60.03822a13.356519 13.356519 0 0 1-10.885563-21.12556c37.509557-52.491119 62.241378-105.004499 74.239984-157.517879A509.951889 509.951889 0 0 1 0.000668 511.999889C0.000668 229.220124 229.220792 0 512.000557 0z m0 80.139113C273.497652 80.139113 80.139781 273.496984 80.139781 511.999889c0 101.286935 34.905036 197.008653 97.680674 273.563766l6.366608 7.568694 26.312342 30.675472-8.971129 39.40173a458.2399 458.2399 0 0 1-25.377386 77.623636l-1.335651 3.027477h351.476793l14.335997-0.934956c223.610386-14.580866 399.248609-198.856305 403.166521-423.268082L943.861332 511.999889c0-238.502905-193.357871-431.860776-431.860775-431.860776z m109.078237 205.601347c90.735285 0 163.72866 75.553375 163.72866 168.069528 0 59.102596-30.007646 113.085193-78.358244 143.449013l4.140521-2.715826-122.323452 124.727625a106.896672 106.896672 0 0 1-143.40449 8.281042l-4.051478-3.428173-3.917912-3.673043-123.725886-126.063277-5.943651-4.185043c-40.626078-30.052167-66.003464-77.779461-67.895638-130.070232l-0.133565-6.322086c0-92.516154 72.993375-168.069529 163.7064-168.069528 40.959991 0 79.137374 15.560344 108.365889 42.073034l0.734609 0.667826 5.721042-5.008695a160.834748 160.834748 0 0 1 97.257718-37.620861z m0 80.139113c-30.853559 0-58.879987 17.786431-73.438593 46.035468-14.914779 28.939124-56.275466 28.983646-71.234767 0.044522l-2.270608-4.162782c-15.137388-25.867125-41.917208-41.917208-71.234767-41.917208-45.83512 0-83.567286 39.067818-83.567287 87.930415 0 31.454602 15.760692 59.814944 40.804165 75.553375l2.582261 1.780869a40.069557 40.069557 0 0 1 4.674781 4.095999l125.88519 128.267103a26.713038 26.713038 0 0 0 37.776688-0.356174l125.462233-127.888668a40.069557 40.069557 0 0 1 7.301564-5.854607l4.095999-2.738086c22.66156-16.183649 36.730427-43.141556 36.730427-72.859811 0-48.862598-37.709905-87.930416-83.545025-87.930415z" p-id="8764"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><defs><clipPath id="master_svg0_1729_30188"><rect x="0" y="0" width="20" height="20" rx="0"/></clipPath></defs><g clip-path="url(#master_svg0_1729_30188)"><g><path d="M9.999966875,3.196211015625C6.242216875,3.196211015625,3.195966875,6.242461015625,3.195966875,10.000211015625C3.195966875,13.757941015625,6.242216875,16.804241015625,9.999966875,16.804241015625C13.757696875,16.804241015625,16.803996875,13.757941015625,16.803996875,10.000211015625C16.803996875,6.242461015625,13.757696875,3.196211015625,9.999966875,3.196211015625ZM1.529296875,10.000211015625C1.529296875,5.3219910156250005,5.3217468750000005,1.529541015625,9.999966875,1.529541015625C14.678196875,1.529541015625,18.470596875,5.3219910156250005,18.470596875,10.000211015625C18.470596875,14.678441015625,14.678196875,18.470841015625,9.999966875,18.470841015625C5.3217468750000005,18.470841015625,1.529296875,14.678441015625,1.529296875,10.000211015625Z" fill-rule="evenodd"/></g><g><path d="M7.916015625,10Q7.916015625,10.06141,7.9099956250000005,10.12252Q7.903975625,10.18363,7.891995625,10.24386Q7.880015625,10.30409,7.862195625,10.36286Q7.844365625,10.42162,7.820865625,10.47835Q7.797365624999999,10.53509,7.768415624999999,10.58925Q7.739465624999999,10.6434,7.705355625,10.69446Q7.671235625,10.745519999999999,7.632275625,10.79299Q7.593325625,10.84046,7.5498956249999996,10.88388Q7.506475625,10.92731,7.459005625,10.96626Q7.411535625,11.00522,7.360475625,11.03934Q7.309415625,11.07345,7.255265625,11.1024Q7.201105625,11.13135,7.144365625,11.15485Q7.087635625,11.17835,7.0288756249999995,11.19618Q6.970105625,11.214,6.909875625,11.22598Q6.849645625,11.237960000000001,6.788535625,11.24398Q6.727425625,11.25,6.666015625,11.25Q6.604605625,11.25,6.543495625,11.24398Q6.482385625,11.237960000000001,6.422155625,11.22598Q6.361923625,11.214,6.303159625,11.19618Q6.244395625,11.17835,6.1876616250000005,11.15485Q6.130927625,11.13135,6.076769625,11.1024Q6.022612625,11.07345,5.971552625,11.03934Q5.920493625,11.00522,5.873023625,10.96626Q5.825554625,10.92731,5.782131625,10.88388Q5.738709625,10.84046,5.699752625,10.79299Q5.660795625,10.745519999999999,5.626678625,10.69446Q5.592561625,10.6434,5.563613625,10.58925Q5.534666625,10.53509,5.511166225,10.47835Q5.487666125,10.42162,5.4698402250000004,10.36286Q5.452014225,10.30409,5.440034025,10.24386Q5.428053825,10.18363,5.422034715,10.12252Q5.416015625,10.06141,5.416015625,10Q5.416015625,9.93859,5.422034715,9.87748Q5.428053825,9.81637,5.440034025,9.75614Q5.452014225,9.695908,5.4698402250000004,9.637144Q5.487666125,9.57838,5.511166225,9.521646Q5.534666625,9.464912,5.563613625,9.410754Q5.592561625,9.356597,5.626678625,9.305537Q5.660795625,9.254478,5.699752625,9.207008Q5.738709625,9.159539,5.782131625,9.116116Q5.825554625,9.072694,5.873023625,9.033737Q5.920493625,8.99478,5.971552625,8.960663Q6.022612625,8.926546,6.076769625,8.897598Q6.130927625,8.868651,6.1876616250000005,8.8451506Q6.244395625,8.8216505,6.303159625,8.8038246Q6.361923625,8.7859986,6.422155625,8.7740184Q6.482385625,8.7620382,6.543495625,8.75601909Q6.604605625,8.75,6.666015625,8.75Q6.727425625,8.75,6.788535625,8.75601909Q6.849645625,8.7620382,6.909875625,8.7740184Q6.970105625,8.7859986,7.0288756249999995,8.8038246Q7.087635625,8.8216505,7.144365625,8.8451506Q7.201105625,8.868651,7.255265625,8.897598Q7.309415625,8.926546,7.360475625,8.960663Q7.411535625,8.99478,7.459005625,9.033737Q7.506475625,9.072694,7.5498956249999996,9.116116Q7.593325625,9.159539,7.632275625,9.207008Q7.671235625,9.254478,7.705355625,9.305537Q7.739465624999999,9.356597,7.768415624999999,9.410754Q7.797365624999999,9.464912,7.820865625,9.521646Q7.844365625,9.57838,7.862195625,9.637144Q7.880015625,9.695908,7.891995625,9.75614Q7.903975625,9.81637,7.9099956250000005,9.87748Q7.916015625,9.93859,7.916015625,10Z"/></g><g><path d="M11.25,10Q11.25,10.06141,11.24398,10.12252Q11.237960000000001,10.18363,11.22598,10.24386Q11.214,10.30409,11.19618,10.36286Q11.17835,10.42162,11.15485,10.47835Q11.13135,10.53509,11.1024,10.58925Q11.07345,10.6434,11.03934,10.69446Q11.00522,10.745519999999999,10.96626,10.79299Q10.92731,10.84046,10.88388,10.88388Q10.84046,10.92731,10.79299,10.96626Q10.745519999999999,11.00522,10.69446,11.03934Q10.6434,11.07345,10.58925,11.1024Q10.53509,11.13135,10.47835,11.15485Q10.42162,11.17835,10.36286,11.19618Q10.30409,11.214,10.24386,11.22598Q10.18363,11.237960000000001,10.12252,11.24398Q10.06141,11.25,10,11.25Q9.93859,11.25,9.87748,11.24398Q9.81637,11.237960000000001,9.75614,11.22598Q9.695908,11.214,9.637144,11.19618Q9.57838,11.17835,9.521646,11.15485Q9.464912,11.13135,9.410754,11.1024Q9.356597,11.07345,9.305537,11.03934Q9.254478,11.00522,9.207008,10.96626Q9.159539,10.92731,9.116116,10.88388Q9.072694,10.84046,9.033737,10.79299Q8.99478,10.745519999999999,8.960663,10.69446Q8.926546,10.6434,8.897598,10.58925Q8.868651,10.53509,8.8451506,10.47835Q8.8216505,10.42162,8.8038246,10.36286Q8.7859986,10.30409,8.7740184,10.24386Q8.7620382,10.18363,8.75601909,10.12252Q8.75,10.06141,8.75,10Q8.75,9.93859,8.75601909,9.87748Q8.7620382,9.81637,8.7740184,9.75614Q8.7859986,9.695908,8.8038246,9.637144Q8.8216505,9.57838,8.8451506,9.521646Q8.868651,9.464912,8.897598,9.410754Q8.926546,9.356597,8.960663,9.305537Q8.99478,9.254478,9.033737,9.207008Q9.072694,9.159539,9.116116,9.116116Q9.159539,9.072694,9.207008,9.033737Q9.254478,8.99478,9.305537,8.960663Q9.356597,8.926546,9.410754,8.897598Q9.464912,8.868651,9.521646,8.8451506Q9.57838,8.8216505,9.637144,8.8038246Q9.695908,8.7859986,9.75614,8.7740184Q9.81637,8.7620382,9.87748,8.75601909Q9.93859,8.75,10,8.75Q10.06141,8.75,10.12252,8.75601909Q10.18363,8.7620382,10.24386,8.7740184Q10.30409,8.7859986,10.36286,8.8038246Q10.42162,8.8216505,10.47835,8.8451506Q10.53509,8.868651,10.58925,8.897598Q10.6434,8.926546,10.69446,8.960663Q10.745519999999999,8.99478,10.79299,9.033737Q10.84046,9.072694,10.88388,9.116116Q10.92731,9.159539,10.96626,9.207008Q11.00522,9.254478,11.03934,9.305537Q11.07345,9.356597,11.1024,9.410754Q11.13135,9.464912,11.15485,9.521646Q11.17835,9.57838,11.19618,9.637144Q11.214,9.695908,11.22598,9.75614Q11.237960000000001,9.81637,11.24398,9.87748Q11.25,9.93859,11.25,10Z"/></g><g><path d="M14.583984375,10Q14.583984375,10.06141,14.577964375,10.12252Q14.571944375000001,10.18363,14.559964375,10.24386Q14.547984375,10.30409,14.530164375,10.36286Q14.512334375,10.42162,14.488834375,10.47835Q14.465334375,10.53509,14.436384375,10.58925Q14.407434375,10.6434,14.373324375,10.69446Q14.339204375,10.745519999999999,14.300244375,10.79299Q14.261294375,10.84046,14.217864375,10.88388Q14.174444375,10.92731,14.126974375,10.96626Q14.079504374999999,11.00522,14.028444375,11.03934Q13.977384375,11.07345,13.923234375,11.1024Q13.869074375,11.13135,13.812334375,11.15485Q13.755604375,11.17835,13.696844375,11.19618Q13.638074375,11.214,13.577844375,11.22598Q13.517614375,11.237960000000001,13.456504375,11.24398Q13.395394375,11.25,13.333984375,11.25Q13.272574375,11.25,13.211464375,11.24398Q13.150354375,11.237960000000001,13.090124375,11.22598Q13.029892375,11.214,12.971128375,11.19618Q12.912364375,11.17835,12.855630375,11.15485Q12.798896375,11.13135,12.744738375,11.1024Q12.690581375,11.07345,12.639521375,11.03934Q12.588462375,11.00522,12.540992375,10.96626Q12.493523375,10.92731,12.450100375,10.88388Q12.406678375,10.84046,12.367721375,10.79299Q12.328764375,10.745519999999999,12.294647375,10.69446Q12.260530375,10.6434,12.231582375,10.58925Q12.202635375,10.53509,12.179134975,10.47835Q12.155634875,10.42162,12.137808975,10.36286Q12.119982975,10.30409,12.108002775,10.24386Q12.096022575,10.18363,12.090003465,10.12252Q12.083984375,10.06141,12.083984375,10Q12.083984375,9.93859,12.090003465,9.87748Q12.096022575,9.81637,12.108002775,9.75614Q12.119982975,9.695908,12.137808975,9.637144Q12.155634875,9.57838,12.179134975,9.521646Q12.202635375,9.464912,12.231582375,9.410754Q12.260530375,9.356597,12.294647375,9.305537Q12.328764375,9.254478,12.367721375,9.207008Q12.406678375,9.159539,12.450100375,9.116116Q12.493523375,9.072694,12.540992375,9.033737Q12.588462375,8.99478,12.639521375,8.960663Q12.690581375,8.926546,12.744738375,8.897598Q12.798896375,8.868651,12.855630375,8.8451506Q12.912364375,8.8216505,12.971128375,8.8038246Q13.029892375,8.7859986,13.090124375,8.7740184Q13.150354375,8.7620382,13.211464375,8.75601909Q13.272574375,8.75,13.333984375,8.75Q13.395394375,8.75,13.456504375,8.75601909Q13.517614375,8.7620382,13.577844375,8.7740184Q13.638074375,8.7859986,13.696844375,8.8038246Q13.755604375,8.8216505,13.812334375,8.8451506Q13.869074375,8.868651,13.923234375,8.897598Q13.977384375,8.926546,14.028444375,8.960663Q14.079504374999999,8.99478,14.126974375,9.033737Q14.174444375,9.072694,14.217864375,9.116116Q14.261294375,9.159539,14.300244375,9.207008Q14.339204375,9.254478,14.373324375,9.305537Q14.407434375,9.356597,14.436384375,9.410754Q14.465334375,9.464912,14.488834375,9.521646Q14.512334375,9.57838,14.530164375,9.637144Q14.547984375,9.695908,14.559964375,9.75614Q14.571944375000001,9.81637,14.577964375,9.87748Q14.583984375,9.93859,14.583984375,10Z"/></g></g></svg>
\ No newline at end of file
<svg width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg">
<g id="icon/solid/grout" clip-path="url(#clip0_3137_13246)">
<path id="Union" d="M11.7395 4.43591C12.0728 4.62836 12.0728 5.10949 11.7395 5.30194L9.86448 6.38447C9.53115 6.57692 9.11448 6.33635 9.11448 5.95145V5.51758H8.0701C7.95276 5.51758 7.84323 5.57638 7.77839 5.67418L6.95769 6.91203L6.19482 8.07485C5.88983 8.53973 5.37122 8.81976 4.81522 8.81976H3.38384C3.15419 9.23702 2.71028 9.51976 2.20034 9.51976C1.45476 9.51976 0.850342 8.91534 0.850342 8.16976C0.850342 7.42417 1.45476 6.81976 2.20034 6.81976C2.71028 6.81976 3.15419 7.10249 3.38384 7.51976H4.81522C4.93316 7.51976 5.04317 7.46036 5.10786 7.36175L5.26798 7.11769C5.28018 7.09292 5.29409 7.06865 5.30976 7.04502L5.87247 6.19628L6.06872 5.89715C6.07815 5.88277 6.08805 5.86889 6.0984 5.85552L6.69489 4.95582C7.00056 4.49477 7.51693 4.21758 8.0701 4.21758H9.11448V3.78639C9.11448 3.40149 9.53115 3.16093 9.86448 3.35338L11.7395 4.43591Z"/>
</g>
<defs>
<clipPath id="clip0_3137_13246">
<rect width="12" height="12" fill="white" transform="translate(0.419922 0.40271)"/>
</clipPath>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" >
<path d="M17.596 5.17271V4.75465L17.5955 4.71549C17.5505 2.77985 14.1671 1.66669 10.0001 1.66669C5.83276 1.66669 2.44882 2.76409 2.40417 4.71549V5.17271H2.40791C2.40542 5.20487 2.40417 5.23731 2.40417 5.27002C2.40417 6.73999 5.10674 7.93164 10.0001 7.93164C14.8934 7.93164 17.596 6.73999 17.596 5.27002C17.596 5.23732 17.5947 5.20488 17.5922 5.17271H17.596Z"/>
<path d="M2.40417 7.46899V10.4345C2.404 10.4415 2.40405 10.4485 2.40411 10.4554L2.40417 10.466C2.40417 11.9342 5.10674 13.1244 10.0001 13.1244C14.8934 13.1244 17.596 11.9342 17.596 10.466C17.596 10.4555 17.5958 10.445 17.5956 10.4345L17.596 7.46899H17.5437C17.1466 8.80744 14.4994 9.84077 10.0001 9.84077C5.50068 9.84077 2.85352 8.80744 2.45645 7.46899H2.40417Z"/>
<path d="M2.40417 12.3715V15.3524H2.40774C2.51867 17.0083 5.20952 18.3334 10.0001 18.3334C14.7906 18.3334 17.4815 17.0083 17.5924 15.3524H17.596V12.3715C17.596 13.9683 14.8934 15.2627 10.0001 15.2627C5.10674 15.2627 2.40417 13.9683 2.40417 12.3715Z"/>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 13" >
<path
d="M1.51294 2.76195C1.36936 3.14633 1.55491 3.72208 1.92601 4.87358L2.8406 7.7115C3.27992 9.07469 3.49958 9.75629 3.87662 9.98445C4.1897 10.1739 4.57295 10.2074 4.91414 10.0751C5.32324 9.9165 5.65667 9.28816 6.31995 8.03285L9.22811 10.941C9.56717 11.2801 10.1169 11.2801 10.4559 10.941C10.795 10.602 10.795 10.0522 10.4559 9.71318L7.56982 6.82706C8.76293 6.19637 9.36397 5.86948 9.5186 5.47066C9.65088 5.12947 9.61739 4.74622 9.42793 4.43314C9.19977 4.0561 8.51817 3.83644 7.15498 3.39712L4.31706 2.48253C3.16556 2.11143 2.58981 1.92588 2.20543 2.06946C1.88519 2.18909 1.63257 2.44171 1.51294 2.76195Z"
fill="#3370FF" />
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" >
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4.31146 8.0038C4.78201 5.34167 7.10812 3.31934 9.90528 3.31934C13.0427 3.31934 15.586 5.8627 15.586 9.0001C15.586 12.1375 13.0427 14.6809 9.90528 14.6809C8.99212 14.6809 8.01118 14.3988 7.15115 13.9231C6.28734 13.4453 5.60309 12.8045 5.234 12.1428C5.0322 11.7811 4.57537 11.6514 4.21364 11.8532C3.8519 12.055 3.72225 12.5119 3.92404 12.8736C4.46219 13.8383 5.38209 14.6588 6.42511 15.2357C7.47191 15.8147 8.70047 16.1809 9.90528 16.1809C13.8711 16.1809 17.086 12.9659 17.086 9.0001C17.086 5.03428 13.8711 1.81934 9.90528 1.81934C6.43524 1.81934 3.54116 4.28003 2.87078 7.55181L2.46483 6.84336C2.2589 6.48396 1.80061 6.35956 1.44122 6.56549C1.08182 6.77142 0.957418 7.22971 1.16335 7.58911L2.4808 9.88833C2.62411 10.1384 2.8896 10.2747 3.15895 10.2651C3.29431 10.27 3.43265 10.2383 3.55876 10.1658L5.88309 8.83098C6.24228 8.6247 6.36624 8.16629 6.15996 7.80709C5.95367 7.4479 5.49526 7.32394 5.13607 7.53023L4.31146 8.0038ZM8.96233 9.52028C8.96177 9.55065 8.96306 9.58096 8.96616 9.61102C8.97694 9.71784 9.01015 9.81804 9.06098 9.90684C9.11368 9.99929 9.18665 10.0815 9.27792 10.1462C9.30081 10.1625 9.32465 10.1775 9.34934 10.1912L11.4739 11.4178C11.8326 11.6249 12.2913 11.502 12.4984 11.1433C12.7055 10.7846 12.5826 10.3259 12.2239 10.1188L10.4623 9.10176V6.92775C10.4623 6.51353 10.1265 6.17775 9.71233 6.17775C9.29811 6.17775 8.96233 6.51353 8.96233 6.92775V9.52028Z" />
</svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1727082813249" class="icon" viewBox="0 0 1102 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8007" xmlns:xlink="http://www.w3.org/1999/xlink" width="215.234375" height="200"><path d="M78.613268 173.292308v598.96123a98.461538 98.461538 0 0 0 97.831384 98.461539h749.883077a97.831385 97.831385 0 0 0 97.831385-98.461539V173.371077A98.461538 98.461538 0 0 0 926.327729 74.830769H176.444652A97.831385 97.831385 0 0 0 78.613268 173.292308zM0.001575 158.562462A157.853538 157.853538 0 0 1 157.855114 0h787.062154A158.562462 158.562462 0 0 1 1102.770806 158.483692v628.578462a157.853538 157.853538 0 0 1-157.853538 158.562461H157.855114A158.562462 158.562462 0 0 1 0.001575 787.062154v-628.578462z" fill="#13227a" fill-opacity=".651" p-id="8008"></path><path d="M596.127114 425.038769H419.447729a14.966154 14.966154 0 0 1-11.815384-14.178461V234.338462a14.966154 14.966154 0 0 1 14.966153-14.966154 182.902154 182.902154 0 0 1 188.416 190.857846 14.966154 14.966154 0 0 1-14.966153 14.966154zM363.915422 682.614154a215.118769 215.118769 0 0 1-208.029539-211.889231 198.656 198.656 0 0 1 193.929846-204.169846 15.753846 15.753846 0 0 1 15.753846 16.541538v171.08677c0 15.753846 17.250462 16.541538 17.250462 16.541538h173.449846a15.753846 15.753846 0 0 1 16.541539 15.753846 204.878769 204.878769 0 0 1-208.896 196.135385z m303.970461-185.895385v149.897846c0 20.48 12.603077 36.076308 27.490462 36.076308h29.065846c14.887385 0 27.411692-16.462769 27.411692-36.076308V496.64c0-20.401231-12.524308-36.076308-27.411692-36.076308h-29.932308c-14.887385 0-27.411692 16.462769-27.411692 36.076308h0.787692z m182.980923 145.959385c0 20.401231 11.815385 36.076308 26.702769 36.076308h29.065847c14.887385 0 27.490462-16.541538 27.490461-36.076308V283.096615c0-20.48-11.815385-36.155077-27.569231-36.155077h-28.987077c-14.966154 0-26.702769 16.541538-26.702769 36.155077v362.653539-3.150769z" fill="#13227a" fill-opacity=".651" p-id="8009"></path></svg>
\ No newline at end of file
<svg viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg">
<rect width="36" height="36" fill="url(#paint0_linear_7245_16485)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.7763 8.12977C21.1563 8.34937 21.486 8.65892 22.1453 9.27804L25.0531 12.0087C25.7718 12.6836 26.1312 13.0211 26.387 13.4223C26.6045 13.7632 26.7661 14.1367 26.8658 14.5285C26.9831 14.9897 26.9831 15.4826 26.9831 16.4686V22.262C26.9831 24.4261 26.9831 25.5081 26.5553 26.3317C26.1947 27.0258 25.6288 27.5916 24.9348 27.9522C24.1112 28.38 23.0292 28.38 20.8651 28.38H15.1348C12.9708 28.38 11.8887 28.38 11.0651 27.9522C10.3711 27.5916 9.8052 27.0258 9.44467 26.3317C9.01685 25.5081 9.01685 24.4261 9.01685 22.262V13.7379C9.01685 11.5738 9.01685 10.4918 9.44467 9.66817C9.8052 8.97413 10.3711 8.40823 11.0651 8.0477C11.8887 7.61987 12.9708 7.61987 15.1348 7.61987H17.9572C18.8616 7.61987 19.3138 7.61987 19.7411 7.71991C20.1045 7.80496 20.4533 7.94307 20.7763 8.12977ZM20.3328 10.6525C19.7396 10.0837 19.443 9.79934 19.1884 9.78903C18.9862 9.78085 18.791 9.8641 18.657 10.0157C18.4882 10.2066 18.4882 10.6176 18.4882 11.4394V12.3778C18.4882 13.58 18.4882 14.1811 18.7222 14.6403C18.928 15.0442 19.2564 15.3726 19.6603 15.5784C20.1195 15.8124 20.7206 15.8124 21.9228 15.8124H23.0022C23.8674 15.8124 24.3 15.8124 24.4924 15.6378C24.6451 15.4992 24.7258 15.2984 24.7115 15.0927C24.6935 14.8335 24.3812 14.5342 23.7567 13.9354L20.3328 10.6525ZM13.0047 19.6762C13.0047 19.1239 13.4524 18.6762 14.0047 18.6762H21.9996C22.5519 18.6762 22.9996 19.1239 22.9996 19.6762C22.9996 20.2284 22.5519 20.6762 21.9996 20.6762H14.0047C13.4524 20.6762 13.0047 20.2284 13.0047 19.6762ZM12.993 23.4244C12.993 22.8721 13.4407 22.4244 13.993 22.4244H19.9946C20.5469 22.4244 20.9946 22.8721 20.9946 23.4244C20.9946 23.9767 20.5469 24.4244 19.9946 24.4244H13.993C13.4407 24.4244 12.993 23.9767 12.993 23.4244Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_7245_16485" x1="18" y1="0" x2="5.5" y2="33" gradientUnits="userSpaceOnUse">
<stop stop-color="#7B98FF"/>
<stop offset="1" stop-color="#7479FF"/>
</linearGradient>
</defs>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1727254154161" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4326" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M732.928 241.1008c0 8.5504 9.8816 15.4624 22.1696 15.4624 12.2368 0 22.1696-6.912 22.1696-15.4624V162.5088c0-8.5504-9.9328-15.4624-22.1696-15.4624H642.56c-12.288 0-22.1696 6.912-22.1696 15.4624 0 8.6016 9.9328 15.4624 22.1696 15.4624h60.8768l-194.0992 135.68-60.0576-41.984a27.904 27.904 0 0 0-15.6672-4.4544h-0.0512a27.4432 27.4432 0 0 0-15.616 4.5568L211.968 416.256c-8.6528 6.0416-8.6528 15.872 0.1024 21.8624a27.8016 27.8016 0 0 0 15.616 4.5056 27.648 27.648 0 0 0 15.7184-4.5568L433.664 304.5888l60.0064 41.8816c8.2944 5.8368 23.04 5.8368 31.3344 0l207.9232-145.2032v39.8336z m-47.5648 69.9392H778.24v297.728h-92.8768V311.04zM530.0736 372.224h92.928v236.544H530.0736V372.224zM374.7328 431.9744h92.9792v176.7936H374.7328V431.9744zM219.4432 497.4592h92.928v111.3088H219.4432V497.4592z" fill="#1296db" p-id="4327"></path><path d="M926.9248 1024H89.9584A64.4096 64.4096 0 0 1 25.6 959.6416V64.3584C25.6 28.8256 54.4256 0 89.9584 0h836.9152c35.4816 0 64.3072 28.8256 64.3584 64.3584v895.232c0 35.584-28.8256 64.4096-64.3072 64.4096z m0-956.0064H89.9584v892.0576h836.9152V67.9936z" fill="#1296db" p-id="4328"></path><path d="M629.1456 768h-394.24v-64h394.24V768z m168.96 128.0512h-563.2v-64h563.2v64z" fill="#1296db" p-id="4329"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="100" height="100" viewBox="0 0 48 48">
<linearGradient id="ZkmZ8eVihrQTUnr9TZpNla_pOADWgX6vV63_gr1" x1="11.905" x2="17.941" y1="1.952" y2="40.401" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3dbffc"></stop><stop offset="1" stop-color="#183efb"></stop></linearGradient><path fill="url(#ZkmZ8eVihrQTUnr9TZpNla_pOADWgX6vV63_gr1)" d="M17.572,37.076L20,35.619V10.603c0-1.632-0.796-3.161-2.133-4.096L12.36,2.652 C11.366,1.956,10,2.667,10,3.881V32.5c0,0.22,0.02,0.555,0.033,0.772C10.369,36.867,14.382,38.99,17.572,37.076z"></path><linearGradient id="ZkmZ8eVihrQTUnr9TZpNlb_pOADWgX6vV63_gr2" x1="14.342" x2="34.121" y1="41.478" y2="25.575" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#33bef0"></stop><stop offset=".159" stop-color="#32b9f0"></stop><stop offset=".341" stop-color="#2facf2"></stop><stop offset=".533" stop-color="#2a95f4"></stop><stop offset=".733" stop-color="#2475f6"></stop><stop offset=".936" stop-color="#1b4cfa"></stop><stop offset="1" stop-color="#183efb"></stop></linearGradient><path fill="url(#ZkmZ8eVihrQTUnr9TZpNlb_pOADWgX6vV63_gr2)" d="M32.682,27.904L20,35.5v0l-2.428,1.457c-3.191,1.915-7.203-0.209-7.54-3.804 C10.372,38.922,15.145,43.5,21,43.5c1.963,0,3.888-0.536,5.568-1.551l6.834-4.126c0.817-0.493,1.522-1.075,2.15-1.707 C37.906,33.415,36.739,28.669,32.682,27.904z"></path><linearGradient id="ZkmZ8eVihrQTUnr9TZpNlc_pOADWgX6vV63_gr3" x1="24.223" x2="45.699" y1="17.113" y2="38.588" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3dbffd"></stop><stop offset="1" stop-color="#1de9b6"></stop></linearGradient><path fill="url(#ZkmZ8eVihrQTUnr9TZpNlc_pOADWgX6vV63_gr3)" d="M33.636,19.568l-7.607-3.803c-1.234-0.617-2.576,0.618-2.064,1.899l1.755,5.886 c0.499,1.248,1.479,2.242,2.719,2.758L32.5,28c4.057,0.766,5.352,5.251,3.052,8.117C40.399,31.24,40.088,22.794,33.636,19.568z"></path>
</svg>
\ No newline at end of file
<svg viewBox="0 0 113 97" xmlns="http://www.w3.org/2000/svg">
<path d="M0 31.7259C1.80046 29.9255 3.82784 28.3872 5.96621 27.1988C8.10469 26.0103 10.3126 25.1947 12.4634 24.7992C14.6143 24.4037 16.6664 24.4361 18.5022 24.8938C20.2678 25.334 21.7994 26.1604 23.0183 27.3272L23.021 27.3245L47.189 51.4924L33.4778 65.2037L0 31.7259Z" fill="#C4DEFE"/>
<path d="M9.15662 11.5625C11.3617 10.2893 13.7181 9.32825 16.0912 8.73374C18.4645 8.13923 20.8082 7.92284 22.9882 8.09751C25.1681 8.27217 27.1419 8.83457 28.7966 9.75182C30.3881 10.6341 31.6537 11.8287 32.529 13.2712L32.5316 13.2697L32.6082 13.4025C32.6162 13.4162 32.6251 13.4297 32.633 13.4435L49.886 43.3286L33.0941 53.0234L9.15662 11.5625Z" fill="#A6CBFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.1377 0C33.6839 4.40811e-05 36.2052 0.345872 38.5576 1.01758C40.9099 1.68929 43.0472 2.67394 44.8477 3.91504C46.6482 5.15627 48.0773 6.63021 49.0518 8.25195C49.9888 9.81168 50.4867 11.4792 50.5234 13.166H50.5273V21.4072C56.6623 17.6586 63.874 15.498 71.5898 15.498C93.9304 15.4984 112.042 33.6087 112.042 55.9492C112.042 78.29 93.9305 96.401 71.5898 96.4014C49.3907 96.4014 31.3704 78.5193 31.1426 56.374H31.1377V0ZM71.9473 35.0439C60.1187 35.0441 50.5295 44.6334 50.5293 56.4619C50.5293 63.5338 53.9569 69.8057 59.2412 73.7061C66.4989 79.0625 76.5515 75.3841 85.3955 77.1592C92.613 78.608 97.2369 82.6827 98.3652 83.7686C97.3562 82.731 93.791 78.7138 92.2715 72.3291C89.8011 61.9479 94.8744 49.6043 87.5771 41.8184C83.6695 37.6493 78.1122 35.0441 71.9473 35.0439Z" fill="#006EFF"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1729242018825" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4362" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M514.174587 1024a457.891171 192.489282 0 1 0 0-384.978564 457.891171 192.489282 0 1 0 0 384.978564Z" fill="#2F82F5" p-id="4363"></path><path d="M56.385749 623.773747H126.381852v212.086144H56.385749zM902.171988 624.234248H972.168091v212.341977h-69.996103z" fill="#2F82F5" p-id="4364"></path><path d="M514.225753 860.419927a457.891171 192.489282 0 1 0 0-384.978564 457.891171 192.489282 0 1 0 0 384.978564Z" fill="#92BDFA" p-id="4365"></path><path d="M377.150052 920.387348s63.395593 11.563684 142.90871 10.642682a862.875931 862.875931 0 0 0 172.073752-18.420027c61.24659-12.894019 116.660171-36.891221 116.660171-36.89122v23.997202s-43.747564 24.764703-116.660171 37.454054c-72.912607 12.689352-122.493179 19.443362-172.073752 18.420027-62.474592-1.279169-142.908709-9.772848-142.90871-9.772847v-25.429871z" fill="#FFFFFF" p-id="4366"></path><path d="M161.328736 891.222306a30.751212 29.165043 90 1 0 58.330086 0 30.751212 29.165043 90 1 0-58.330086 0Z" fill="#FFFFFF" p-id="4367"></path><path d="M514.225753 817.542198a457.891171 193.666117 0 1 0 0-387.332234 457.891171 193.666117 0 1 0 0 387.332234Z" fill="#0166F3" p-id="4368"></path><path d="M56.385749 406.468595H126.381852v214.337481H56.385749zM902.171988 402.375256H972.168091v225.952331h-69.996103z" fill="#0166F3" p-id="4369"></path><path d="M514.225753 646.696447a457.891171 193.666117 0 1 0 0-387.332234 457.891171 193.666117 0 1 0 0 387.332234Z" fill="#92BDFA" p-id="4370"></path><path d="M377.150052 711.473542s63.395593 11.61485 142.90871 10.642682a862.927097 862.927097 0 0 0 172.073752-18.420027c61.24659-12.894019 116.660171-36.840054 116.660171-36.840053v23.946035s-43.747564 24.764703-116.660171 37.505221c-72.912607 12.689352-122.493179 19.443362-172.073752 18.420027-62.474592-1.330335-142.908709-9.824014-142.90871-9.824014v-25.429871z" fill="#FFFFFF" p-id="4371"></path><path d="M161.328736 676.066157a30.751212 29.165043 90 1 0 58.330086 0 30.751212 29.165043 90 1 0-58.330086 0Z" fill="#FFFFFF" p-id="4372"></path><path d="M514.225753 603.460551a457.891171 201.136461 0 1 0 0-402.272923 457.891171 201.136461 0 1 0 0 402.272923Z" fill="#939FAE" p-id="4373"></path><path d="M56.385749 209.067306H126.381852v193.256783H56.385749zM902.223155 215.207315h69.996102v172.073752h-69.996102z" fill="#939FAE" p-id="4374"></path><path d="M514.27692 402.272923a457.891171 201.136461 0 1 0 0-402.272923 457.891171 201.136461 0 1 0 0 402.272923Z" fill="#D5DBE4" p-id="4375"></path><path d="M377.252386 486.135212s63.395593 11.563684 142.908709 10.642682a862.927097 862.927097 0 0 0 172.073752-18.420027c61.24659-12.945186 116.660171-36.891221 116.660171-36.89122v23.946035s-43.747564 24.81587-116.660171 37.505221c-72.912607 12.689352-122.493179 19.443362-172.073752 18.420027-62.474592-1.330335-142.908709-9.824014-142.908709-9.824014V486.186379z" fill="#FFFFFF" p-id="4376"></path><path d="M161.328736 461.012342a30.751212 29.165043 90 1 0 58.330086 0 30.751212 29.165043 90 1 0-58.330086 0Z" fill="#FFFFFF" p-id="4377"></path><path d="M514.225753 603.460551a457.891171 201.136461 0 1 0 0-402.272923 457.891171 201.136461 0 1 0 0 402.272923Z" fill="#2F82F5" p-id="4378"></path><path d="M56.385749 209.067306H126.381852v193.256783H56.385749zM902.223155 215.207315h69.996102v172.073752h-69.996102z" fill="#2F82F5" p-id="4379"></path><path d="M514.27692 402.272923a457.891171 201.136461 0 1 0 0-402.272923 457.891171 201.136461 0 1 0 0 402.272923Z" fill="#92BDFA" p-id="4380"></path><path d="M514.328087 299.632439a224.161495 98.444811 0 1 0 0-196.889622 224.161495 98.444811 0 1 0 0 196.889622Z" fill="#FFFFFF" p-id="4381"></path><path d="M377.252386 486.135212s63.395593 11.563684 142.908709 10.642682a862.927097 862.927097 0 0 0 172.073752-18.420027c61.24659-12.945186 116.660171-36.891221 116.660171-36.89122v23.946035s-43.747564 24.81587-116.660171 37.505221c-72.912607 12.689352-122.493179 19.443362-172.073752 18.420027-62.474592-1.330335-142.908709-9.824014-142.908709-9.824014V486.186379z" fill="#FFFFFF" p-id="4382"></path><path d="M161.328736 461.012342a30.751212 29.165043 90 1 0 58.330086 0 30.751212 29.165043 90 1 0-58.330086 0Z" fill="#FFFFFF" p-id="4383"></path></svg>
\ No newline at end of file
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment