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' \
4. 参考 Lobe UI 优化流输出动效。
5. 支持通过模型生成对话标题,需配置 `CHAT_TITLE_MODEL` 变量。
6. 调整 Skill Edit 编辑交互。
7. HTTP 节点支持返回完整错误对象。
## ⚙️ 优化
......
......@@ -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.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.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.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",
"pluginSystem": "Plugin System",
"version": "Editions",
"api_reference": "API Reference",
"selfHost": "Self-Host",
"businessConsultation": "Business Inquiry"
......
{
"guide": "使用指南",
"pluginSystem": "插件系统",
"version": "版本介绍",
"api_reference": "API 文档",
"selfHost": "自部署",
"businessConsultation": "商业咨询"
......
......@@ -286,8 +286,10 @@ export enum NodeOutputKeyEnum {
text = 'system_text',
addOutputParam = 'system_addOutputParam',
rawResponse = 'system_rawResponse',
systemError = 'system_error',
errorText = 'system_error_text',
error = 'error',
// start
userFiles = 'userFiles',
......@@ -309,6 +311,7 @@ export enum NodeOutputKeyEnum {
// http
httpRawResponse = 'httpRawResponse',
httpRawError = 'system_httpRawError',
// plugin
pluginStart = 'pluginStart',
......@@ -339,10 +342,7 @@ export enum NodeOutputKeyEnum {
formInputResult = 'formInputResult',
// File
fileTitle = 'fileTitle',
/** @deprecated */
error = 'error'
fileTitle = 'fileTitle'
}
export enum ParallelRunStatusEnum {
......
......@@ -182,6 +182,7 @@ export const DispatchNodeResponseSchema = z
.optional()
.meta({ description: '错误信息' }),
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: '自定义输入' }),
customOutputs: z.record(z.string(), z.any()).optional().meta({ description: '自定义输出' }),
......@@ -262,6 +263,7 @@ export const DispatchNodeResponseSchema = z
.meta({ description: '请求体' }),
headers: 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
toolInput: z.record(z.string(), z.any()).optional().meta({ description: '工具输入' }),
......@@ -371,7 +373,9 @@ export type DispatchNodeResponseType = Omit<
export type DispatchNodeResultType<
T = Record<string, never>,
ERR = { [NodeOutputKeyEnum.errorText]?: string }
ERR = {
[NodeOutputKeyEnum.errorText]?: string;
}
> = {
[DispatchNodeResponseKeyEnum.answerText]?: string;
[DispatchNodeResponseKeyEnum.reasoningText]?: string;
......@@ -388,7 +392,7 @@ export type DispatchNodeResultType<
[DispatchNodeResponseKeyEnum.customFeedbacks]?: string[];
data?: T;
error?: ERR;
error?: ERR & { [NodeOutputKeyEnum.errorText]?: string };
/** @deprecated */
[DispatchNodeResponseKeyEnum.nodeDispatchUsages]?: ChatNodeUsageType[]; // Node total usage
......
......@@ -108,7 +108,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
const trimmedValue = value.trim();
try {
return json5.parse(trimmedValue);
} catch (error) {}
} catch {}
}
return {};
}
......@@ -118,7 +118,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) {
try {
return json5.parse(value);
} catch (error) {}
} catch {}
}
return [value];
}
......@@ -134,7 +134,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) {
try {
return json5.parse(value);
} catch (error) {}
} catch {}
}
return [];
}
......@@ -144,7 +144,7 @@ export const valueTypeFormat = (value: any, valueType?: WorkflowIOValueTypeEnum)
if (isObjectString(value)) {
try {
return json5.parse(value);
} catch (error) {}
} catch {}
}
return [];
}
......
......@@ -136,6 +136,15 @@ export const HttpNode468: FlowNodeTemplateType = {
valueType: WorkflowIOValueTypeEnum.any,
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,
key: NodeOutputKeyEnum.error,
......
......@@ -29,7 +29,8 @@ const defaultNodeResponsePreviewProjection = {
'data.quoteList.score': 1,
'data.toolId': 1,
'data.toolRes.citeLinks': 1,
'data.errorText': 1
'data.errorText': 1,
'data.errorCaptured': 1
} as const;
export async function getChatItems({
......
......@@ -10,7 +10,7 @@ import type {
NodeEdgeGroupsMap,
NodeOutputItemType
} 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 {
DispatchNodeResponseKeyEnum,
......@@ -889,6 +889,14 @@ export class WorkflowQueue {
return {
...result,
...(result[DispatchNodeResponseKeyEnum.nodeResponse]
? {
[DispatchNodeResponseKeyEnum.nodeResponse]: {
...result[DispatchNodeResponseKeyEnum.nodeResponse],
errorCaptured: true
}
}
: {}),
[DispatchNodeResponseKeyEnum.skipHandleId]: result[
DispatchNodeResponseKeyEnum.skipHandleId
]
......@@ -913,6 +921,7 @@ export class WorkflowQueue {
).filter(Boolean)
};
} catch (error) {
const errorText = getErrText(error);
// Skip all edges and return error
let skipHandleId = targetEdges.map((item) => item.sourceHandle);
if (node.catchError) {
......@@ -920,8 +929,16 @@ export class WorkflowQueue {
}
return {
...(node.catchError
? {
error: {
[NodeOutputKeyEnum.errorText]: errorText
}
}
: {}),
[DispatchNodeResponseKeyEnum.nodeResponse]: {
error: getErrText(error)
error: errorText,
...(node.catchError ? { errorCaptured: true } : {})
},
[DispatchNodeResponseKeyEnum.skipHandleId]: skipHandleId
};
......
......@@ -5,6 +5,7 @@ import { DispatchNodeResponseKeyEnum } from '@fastgpt/global/core/workflow/runti
import { getErrText } from '@fastgpt/global/common/error/utils';
import { codeSandbox } from '../../../../thirdProvider/codeSandbox';
import { serviceEnv } from '../../../../env';
import { getNodeErrResponse } from '../utils';
type RunCodeType = ModuleDispatchProps<{
[NodeInputKeyEnum.codeType]: string;
......@@ -31,15 +32,16 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
} = props;
if (!serviceEnv.CODE_SANDBOX_URL) {
return {
error: {
[NodeOutputKeyEnum.error]: 'Can not find CODE_SANDBOX_URL in env'
return getNodeErrResponse({
error: 'Can not find CODE_SANDBOX_URL in env',
customErr: {
error: 'Can not find CODE_SANDBOX_URL in env'
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
errorText: 'Can not find CODE_SANDBOX_URL in env',
customInputs: customVariables
}
};
});
}
try {
......@@ -61,7 +63,7 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
},
[DispatchNodeResponseKeyEnum.toolResponse]: codeReturn
};
} catch (error) {
} catch (error: any) {
const text = getErrText(error, 'Request code sandbox failed');
// @adapt
......@@ -77,14 +79,15 @@ export const dispatchCodeSandbox = async (props: RunCodeType): Promise<RunCodeRe
};
}
return {
error: {
return getNodeErrResponse({
error: text,
customErr: {
[NodeOutputKeyEnum.error]: text
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
customInputs: customVariables,
errorText: text
}
};
});
}
};
......@@ -24,7 +24,7 @@ import { JSONPath } from 'jsonpath-plus';
import { getSecretValue } from '../../../../common/secret/utils';
import type { StoreSecretValueType } from '@fastgpt/global/common/secret/type';
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 { serviceRequestMaxContentLength } from '../../../../common/system/constants';
import { axios, httpsCertificateIgnoreAgent } from '../../../../common/api/axios';
......@@ -83,7 +83,9 @@ type HttpResponse = DispatchNodeResultType<
[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
.filter(
(item) =>
item.id !== NodeOutputKeyEnum.error &&
item.id !== NodeOutputKeyEnum.httpRawError &&
item.id !== NodeOutputKeyEnum.httpRawResponse &&
item.id !== NodeOutputKeyEnum.addOutputParam
)
......@@ -317,17 +320,21 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H
};
}
return {
error: {
[NodeOutputKeyEnum.error]: getErrText(error)
const errText = getErrText(error);
const errObj = formatHttpError(error);
return getNodeErrResponse({
error: errText,
customErr: {
[NodeOutputKeyEnum.error]: errText,
[NodeOutputKeyEnum.httpRawError]: errObj
},
[DispatchNodeResponseKeyEnum.nodeResponse]: {
responseData: {
params: Object.keys(params).length > 0 ? params : undefined,
body: Object.keys(formattedRequestBody).length > 0 ? formattedRequestBody : undefined,
headers: Object.keys(publicHeaders).length > 0 ? publicHeaders : undefined,
httpResult: { error: formatHttpError(error) }
httpErrorResult: errObj
}
};
});
}
};
......
......@@ -661,7 +661,7 @@ export const rewriteRuntimeWorkFlow = async ({
* 同一份错误会被写入节点输出、nodeResponse 和 toolResponse,兼容普通节点执行、
* 前端节点详情展示以及 tool call 调用方读取错误的不同路径。
*/
export const getNodeErrResponse = ({
export const getNodeErrResponse = <TError extends Record<string, any> = Record<string, never>>({
error,
customErr,
responseData,
......@@ -669,7 +669,7 @@ export const getNodeErrResponse = ({
system_memories
}: {
error: any;
customErr?: Record<string, any>;
customErr?: TError;
[DispatchNodeResponseKeyEnum.nodeResponse]?: Record<string, any>;
[DispatchNodeResponseKeyEnum.runTimes]?: number;
[DispatchNodeResponseKeyEnum.memories]?: Record<string, any>;
......@@ -682,7 +682,9 @@ export const getNodeErrResponse = ({
error: {
[NodeOutputKeyEnum.errorText]: errorText,
...(typeof customErr === 'object' ? customErr : {})
},
} as {
[NodeOutputKeyEnum.errorText]: string;
} & TError,
[DispatchNodeResponseKeyEnum.nodeResponse]: {
errorText,
...(typeof responseData === 'object' ? responseData : {})
......
......@@ -22,6 +22,7 @@ import {
getChatItemResponseData
} from '@fastgpt/service/core/chat/nodeResponseStorage';
import { MongoChatItemResponse } from '@fastgpt/service/core/chat/chatItemResponseSchema';
import { getHandleId } from '@fastgpt/global/core/workflow/utils';
const makeInput = ({
key,
......@@ -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 () => {
const appId = '67e0d5535c02d1d5cdede723';
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 { createServer } from 'node:http';
import type { AddressInfo } from 'node:net';
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 { createClientAbortTracker } from '@fastgpt/service/core/workflow/dispatch/utils/clientAbort';
import { createNode, createEdge } from '../utils';
import {
NodeInputKeyEnum,
NodeOutputKeyEnum,
VARIABLE_NODE_ID,
WorkflowIOValueTypeEnum
} from '@fastgpt/global/core/workflow/constants';
......@@ -17,6 +18,8 @@ import {
FlowNodeOutputTypeEnum
} from '@fastgpt/global/core/workflow/node/constant';
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) => {
let timer: ReturnType<typeof setTimeout> | undefined;
......@@ -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', () => {
const mockRes = (overrides: Record<string, any> = {}) => {
const res = new EventEmitter() as any;
......@@ -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 utils', () => {
// buildNodeEdgeGroupsMap 已经单独写了
......
......@@ -12,13 +12,9 @@ export const iconPaths = {
closeSolid: () => import('./icons/closeSolid.svg'),
code: () => import('./icons/code.svg'),
codeCopilot: () => import('./icons/codeCopilot.svg'),
collectionLight: () => import('./icons/collectionLight.svg'),
collectionSolid: () => import('./icons/collectionSolid.svg'),
comment: () => import('./icons/comment.svg'),
'common/add2': () => import('./icons/common/add2.svg'),
'common/addCircleLight': () => import('./icons/common/addCircleLight.svg'),
'common/addLight': () => import('./icons/common/addLight.svg'),
'common/addUser': () => import('./icons/common/addUser.svg'),
'common/administrator': () => import('./icons/common/administrator.svg'),
'common/alipay': () => import('./icons/common/alipay.svg'),
'common/app': () => import('./icons/common/app.svg'),
......@@ -35,10 +31,8 @@ export const iconPaths = {
'common/confirm/deleteTip': () => import('./icons/common/confirm/deleteTip.svg'),
'common/confirm/infoTipClean': () => import('./icons/common/confirm/infoTipClean.svg'),
'common/confirm/restoreTip': () => import('./icons/common/confirm/restoreTip.svg'),
'common/confirm/rightTip': () => import('./icons/common/confirm/rightTip.svg'),
'common/courseLight': () => import('./icons/common/courseLight.svg'),
'common/customTitleLight': () => import('./icons/common/customTitleLight.svg'),
'common/data': () => import('./icons/common/data.svg'),
'common/detail': () => import('./icons/common/detail.svg'),
'common/dingtalkFill': () => import('./icons/common/dingtalkFill.svg'),
'common/disable': () => import('./icons/common/disable.svg'),
......@@ -60,7 +54,6 @@ export const iconPaths = {
'common/fullScreenLight': () => import('./icons/common/fullScreenLight.svg'),
'common/gitFill': () => import('./icons/common/gitFill.svg'),
'common/gitInlight': () => import('./icons/common/gitInlight.svg'),
'common/gitLight': () => import('./icons/common/gitLight.svg'),
'common/globalLine': () => import('./icons/common/globalLine.svg'),
'common/googleFill': () => import('./icons/common/googleFill.svg'),
'common/help': () => import('./icons/common/help.svg'),
......@@ -84,58 +77,38 @@ export const iconPaths = {
'common/linkBlue': () => import('./icons/common/linkBlue.svg'),
'common/list': () => import('./icons/common/list.svg'),
'common/loading': () => import('./icons/common/loading.svg'),
'common/logLight': () => import('./icons/common/logLight.svg'),
'common/maximize': () => import('./icons/common/maximize.svg'),
'common/microsoft': () => import('./icons/common/microsoft.svg'),
'common/model': () => import('./icons/common/model.svg'),
'common/monitor': () => import('./icons/common/monitor.svg'),
'common/more': () => import('./icons/common/more.svg'),
'common/moreFill': () => import('./icons/common/moreFill.svg'),
'common/openai': () => import('./icons/common/openai.svg'),
'common/overviewLight': () => import('./icons/common/overviewLight.svg'),
'common/paramsLight': () => import('./icons/common/paramsLight.svg'),
'common/paused': () => import('./icons/common/paused.svg'),
'common/playFill': () => import('./icons/common/playFill.svg'),
'common/playLight': () => import('./icons/common/playLight.svg'),
'common/publishFill': () => import('./icons/common/publishFill.svg'),
'common/refresh': () => import('./icons/common/refresh.svg'),
'common/refreshLight': () => import('./icons/common/refreshLight.svg'),
'common/resultLight': () => import('./icons/common/resultLight.svg'),
'common/retryLight': () => import('./icons/common/retryLight.svg'),
'common/rightArrow': () => import('./icons/common/rightArrow.svg'),
'common/rightArrowFill': () => import('./icons/common/rightArrowFill.svg'),
'common/rightArrowLight': () => import('./icons/common/rightArrowLight.svg'),
'common/rocket': () => import('./icons/common/rocket.svg'),
'common/rollback': () => import('./icons/common/rollback.svg'),
'common/routePushLight': () => import('./icons/common/routePushLight.svg'),
'common/running': () => import('./icons/common/running.svg'),
'common/saveFill': () => import('./icons/common/saveFill.svg'),
'common/searchLight': () => import('./icons/common/searchLight.svg'),
'common/select': () => import('./icons/common/select.svg'),
'common/selectLight': () => import('./icons/common/selectLight.svg'),
'common/setting': () => import('./icons/common/setting.svg'),
'common/settingLight': () => import('./icons/common/settingLight.svg'),
'common/skill': () => import('./icons/common/skill.svg'),
'common/solidChevronDown': () => import('./icons/common/solidChevronDown.svg'),
'common/solidChevronRight': () => import('./icons/common/solidChevronRight.svg'),
'common/solidChevronUp': () => import('./icons/common/solidChevronUp.svg'),
'common/subtract': () => import('./icons/common/subtract.svg'),
'common/templateMarket': () => import('./icons/common/templateMarket.svg'),
'common/text/t': () => import('./icons/common/text/t.svg'),
'common/thirdParty': () => import('./icons/common/thirdParty.svg'),
'common/tickFill': () => import('./icons/common/tickFill.svg'),
'common/toolkit': () => import('./icons/common/toolkit.svg'),
'common/trash': () => import('./icons/common/trash.svg'),
'common/upRightArrowLight': () => import('./icons/common/upRightArrowLight.svg'),
'common/uploadFileFill': () => import('./icons/common/uploadFileFill.svg'),
'common/upperRight': () => import('./icons/common/upperRight.svg'),
'common/userInfo': () => import('./icons/common/userInfo.svg'),
'common/variable': () => import('./icons/common/variable.svg'),
'common/viewLight': () => import('./icons/common/viewLight.svg'),
'common/voiceLight': () => import('./icons/common/voiceLight.svg'),
'common/wallet': () => import('./icons/common/wallet.svg'),
'common/warn': () => import('./icons/common/warn.svg'),
'common/warningFill': () => import('./icons/common/warningFill.svg'),
'common/wechat': () => import('./icons/common/wechat.svg'),
'common/wechatFill': () => import('./icons/common/wechatFill.svg'),
'common/wecom': () => import('./icons/common/wecom.svg'),
......@@ -143,32 +116,23 @@ export const iconPaths = {
copy: () => import('./icons/copy.svg'),
'core/app/agent/child/contextCompress': () =>
import('./icons/core/app/agent/child/contextCompress.svg'),
'core/app/agent/child/contextPick': () => import('./icons/core/app/agent/child/contextPick.svg'),
'core/app/agent/child/plan': () => import('./icons/core/app/agent/child/plan.svg'),
'core/app/agent': () => import('./icons/core/app/agent.svg'),
'core/app/aiAgent': () => import('./icons/core/app/aiAgent.svg'),
'core/app/aiFill': () => import('./icons/core/app/aiFill.svg'),
'core/app/aiLight': () => import('./icons/core/app/aiLight.svg'),
'core/app/aiLightSmall': () => import('./icons/core/app/aiLightSmall.svg'),
'core/app/appApiLight': () => import('./icons/core/app/appApiLight.svg'),
'core/app/create': () => import('./icons/core/app/create.svg'),
'core/app/customFeedback': () => import('./icons/core/app/customFeedback.svg'),
'core/app/headphones': () => import('./icons/core/app/headphones.svg'),
'core/app/inputGuides': () => import('./icons/core/app/inputGuides.svg'),
'core/app/logsLight': () => import('./icons/core/app/logsLight.svg'),
'core/app/markLight': () => import('./icons/core/app/markLight.svg'),
'core/app/pluginFill': () => import('./icons/core/app/pluginFill.svg'),
'core/app/pluginLight': () => import('./icons/core/app/pluginLight.svg'),
'core/app/publish/lark': () => import('./icons/core/app/publish/lark.svg'),
'core/app/publish/offiaccount': () => import('./icons/core/app/publish/offiaccount.svg'),
'core/app/publish/wechat': () => import('./icons/core/app/publish/wechat.svg'),
'core/app/publish/wecom': () => import('./icons/core/app/publish/wecom.svg'),
'core/app/questionGuide': () => import('./icons/core/app/questionGuide.svg'),
'core/app/sandbox/collapseAll': () => import('./icons/core/app/sandbox/collapseAll.svg'),
'core/app/sandbox/css': () => import('./icons/core/app/sandbox/css.svg'),
'core/app/sandbox/default': () => import('./icons/core/app/sandbox/default.svg'),
'core/app/sandbox/docx': () => import('./icons/core/app/sandbox/docx.svg'),
'core/app/sandbox/file': () => import('./icons/core/app/sandbox/file.svg'),
'core/app/sandbox/fileGenericLine': () => import('./icons/core/app/sandbox/fileGenericLine.svg'),
'core/app/sandbox/folderLine': () => import('./icons/core/app/sandbox/folderLine.svg'),
'core/app/sandbox/go': () => import('./icons/core/app/sandbox/go.svg'),
......@@ -177,7 +141,6 @@ export const iconPaths = {
'core/app/sandbox/java': () => import('./icons/core/app/sandbox/java.svg'),
'core/app/sandbox/js': () => import('./icons/core/app/sandbox/js.svg'),
'core/app/sandbox/markdownLine': () => import('./icons/core/app/sandbox/markdownLine.svg'),
'core/app/sandbox/md': () => import('./icons/core/app/sandbox/md.svg'),
'core/app/sandbox/newFile': () => import('./icons/core/app/sandbox/newFile.svg'),
'core/app/sandbox/newFolder': () => import('./icons/core/app/sandbox/newFolder.svg'),
'core/app/sandbox/pdf': () => import('./icons/core/app/sandbox/pdf.svg'),
......@@ -199,28 +162,13 @@ export const iconPaths = {
'core/app/simpleMode/chat': () => import('./icons/core/app/simpleMode/chat.svg'),
'core/app/simpleMode/dataset': () => import('./icons/core/app/simpleMode/dataset.svg'),
'core/app/simpleMode/file': () => import('./icons/core/app/simpleMode/file.svg'),
'core/app/simpleMode/template': () => import('./icons/core/app/simpleMode/template.svg'),
'core/app/simpleMode/tts': () => import('./icons/core/app/simpleMode/tts.svg'),
'core/app/simpleMode/variable': () => import('./icons/core/app/simpleMode/variable.svg'),
'core/app/simpleMode/whisper': () => import('./icons/core/app/simpleMode/whisper.svg'),
'core/app/templates/TranslateRobot': () =>
import('./icons/core/app/templates/TranslateRobot.svg'),
'core/app/templates/animalLife': () => import('./icons/core/app/templates/animalLife.svg'),
'core/app/templates/chinese': () => import('./icons/core/app/templates/chinese.svg'),
'core/app/templates/divination': () => import('./icons/core/app/templates/divination.svg'),
'core/app/templates/flux': () => import('./icons/core/app/templates/flux.svg'),
'core/app/templates/githubIssue': () => import('./icons/core/app/templates/githubIssue.svg'),
'core/app/templates/google': () => import('./icons/core/app/templates/google.svg'),
'core/app/templates/plugin-dalle': () => import('./icons/core/app/templates/plugin-dalle.svg'),
'core/app/templates/plugin-feishu': () => import('./icons/core/app/templates/plugin-feishu.svg'),
'core/app/templates/stock': () => import('./icons/core/app/templates/stock.svg'),
'core/app/toolCall': () => import('./icons/core/app/toolCall.svg'),
'core/app/ttsFill': () => import('./icons/core/app/ttsFill.svg'),
'core/app/type/agent': () => import('./icons/core/app/type/agent.svg'),
'core/app/type/agentFill': () => import('./icons/core/app/type/agentFill.svg'),
'core/app/type/httpPlugin': () => import('./icons/core/app/type/httpPlugin.svg'),
'core/app/type/httpPluginFill': () => import('./icons/core/app/type/httpPluginFill.svg'),
'core/app/type/jsonImport': () => import('./icons/core/app/type/jsonImport.svg'),
'core/app/type/mcpTools': () => import('./icons/core/app/type/mcpTools.svg'),
'core/app/type/mcpToolsFill': () => import('./icons/core/app/type/mcpToolsFill.svg'),
'core/app/type/plugin': () => import('./icons/core/app/type/plugin.svg'),
......@@ -229,40 +177,29 @@ export const iconPaths = {
'core/app/type/simpleFill': () => import('./icons/core/app/type/simpleFill.svg'),
'core/app/type/workflow': () => import('./icons/core/app/type/workflow.svg'),
'core/app/type/workflowFill': () => import('./icons/core/app/type/workflowFill.svg'),
'core/app/variable/external': () => import('./icons/core/app/variable/external.svg'),
'core/app/variable/input': () => import('./icons/core/app/variable/input.svg'),
'core/app/variable/select': () => import('./icons/core/app/variable/select.svg'),
'core/app/variable/textarea': () => import('./icons/core/app/variable/textarea.svg'),
'core/chat/QGFill': () => import('./icons/core/chat/QGFill.svg'),
'core/chat/backText': () => import('./icons/core/chat/backText.svg'),
'core/chat/cancelSpeak': () => import('./icons/core/chat/cancelSpeak.svg'),
'core/chat/chatFill': () => import('./icons/core/chat/chatFill.svg'),
'core/chat/chatLight': () => import('./icons/core/chat/chatLight.svg'),
'core/chat/chatModelTag': () => import('./icons/core/chat/chatModelTag.svg'),
'core/chat/chevronDown': () => import('./icons/core/chat/chevronDown.svg'),
'core/chat/chevronLeft': () => import('./icons/core/chat/chevronLeft.svg'),
'core/chat/chevronRight': () => import('./icons/core/chat/chevronRight.svg'),
'core/chat/chevronSelector': () => import('./icons/core/chat/chevronSelector.svg'),
'core/chat/chevronUp': () => import('./icons/core/chat/chevronUp.svg'),
'core/chat/export/pdf': () => import('./icons/core/chat/export/pdf.svg'),
'core/chat/feedback/badLight': () => import('./icons/core/chat/feedback/badLight.svg'),
'core/chat/feedback/goodLight': () => import('./icons/core/chat/feedback/goodLight.svg'),
'core/chat/deepThinking': () => import('./icons/core/chat/deepThinking.svg'),
'core/chat/dotsHorizontal': () => import('./icons/core/chat/dotsHorizontal.svg'),
'core/chat/fileDownload': () => import('./icons/core/chat/fileDownload.svg'),
'core/chat/fileSelect': () => import('./icons/core/chat/fileSelect.svg'),
'core/chat/finishSpeak': () => import('./icons/core/chat/finishSpeak.svg'),
'core/chat/imgSelect': () => import('./icons/core/chat/imgSelect.svg'),
'core/chat/monitor': () => import('./icons/core/chat/monitor.svg'),
'core/chat/markdown': () => import('./icons/core/chat/markdown.svg'),
'core/chat/quoteFill': () => import('./icons/core/chat/quoteFill.svg'),
'core/chat/quoteSign': () => import('./icons/core/chat/quoteSign.svg'),
'core/chat/recordFill': () => import('./icons/core/chat/recordFill.svg'),
'core/chat/sendFill': () => import('./icons/core/chat/sendFill.svg'),
'core/chat/sendLight': () => import('./icons/core/chat/sendLight.svg'),
'core/chat/setTopLight': () => import('./icons/core/chat/setTopLight.svg'),
'core/chat/setting/share': () => import('./icons/core/chat/setting/share.svg'),
'core/chat/sideLine': () => import('./icons/core/chat/sideLine.svg'),
'core/chat/sidebar/expand': () => import('./icons/core/chat/sidebar/expand.svg'),
'core/chat/sidebar/fold': () => import('./icons/core/chat/sidebar/fold.svg'),
'core/chat/sidebar/home': () => import('./icons/core/chat/sidebar/home.svg'),
......@@ -270,12 +207,10 @@ export const iconPaths = {
'core/chat/sidebar/menu': () => import('./icons/core/chat/sidebar/menu.svg'),
'core/chat/sidebar/star': () => import('./icons/core/chat/sidebar/star.svg'),
'core/chat/soundWave': () => import('./icons/core/chat/soundWave.svg'),
'core/chat/speaking': () => import('./icons/core/chat/speaking.svg'),
'core/chat/stopSpeech': () => import('./icons/core/chat/stopSpeech.svg'),
'core/chat/terminal': () => import('./icons/core/chat/terminal.svg'),
'core/chat/think': () => import('./icons/core/chat/think.svg'),
'core/chat/var': () => import('./icons/core/chat/var.svg'),
'core/dataset/commonDataset': () => import('./icons/core/dataset/commonDataset.svg'),
'core/dataset/commonDatasetColor': () => import('./icons/core/dataset/commonDatasetColor.svg'),
'core/dataset/commonDatasetOutline': () =>
import('./icons/core/dataset/commonDatasetOutline.svg'),
......@@ -286,7 +221,6 @@ export const iconPaths = {
import('./icons/core/dataset/dingtalkDatasetColor.svg'),
'core/dataset/dingtalkDatasetOutline': () =>
import('./icons/core/dataset/dingtalkDatasetOutline.svg'),
'core/dataset/externalDataset': () => import('./icons/core/dataset/externalDataset.svg'),
'core/dataset/externalDatasetColor': () =>
import('./icons/core/dataset/externalDatasetColor.svg'),
'core/dataset/externalDatasetOutline': () =>
......@@ -302,10 +236,7 @@ export const iconPaths = {
'core/dataset/modeEmbedding': () => import('./icons/core/dataset/modeEmbedding.svg'),
'core/dataset/otherDataset': () => import('./icons/core/dataset/otherDataset.svg'),
'core/dataset/questionExtension': () => import('./icons/core/dataset/questionExtension.svg'),
'core/dataset/rerank': () => import('./icons/core/dataset/rerank.svg'),
'core/dataset/searchfilter': () => import('./icons/core/dataset/searchfilter.svg'),
'core/dataset/splitLight': () => import('./icons/core/dataset/splitLight.svg'),
'core/dataset/tableCollection': () => import('./icons/core/dataset/tableCollection.svg'),
'core/dataset/tag': () => import('./icons/core/dataset/tag.svg'),
'core/dataset/websiteDataset': () => import('./icons/core/dataset/websiteDataset.svg'),
'core/dataset/websiteDatasetColor': () => import('./icons/core/dataset/websiteDatasetColor.svg'),
......@@ -315,14 +246,8 @@ export const iconPaths = {
'core/dataset/yuqueDatasetOutline': () => import('./icons/core/dataset/yuqueDatasetOutline.svg'),
'core/modules/basicNode': () => import('./icons/core/modules/basicNode.svg'),
'core/modules/fitView': () => import('./icons/core/modules/fitView.svg'),
'core/modules/flowLight': () => import('./icons/core/modules/flowLight.svg'),
'core/modules/previewLight': () => import('./icons/core/modules/previewLight.svg'),
'core/modules/systemPlugin': () => import('./icons/core/modules/systemPlugin.svg'),
'core/modules/teamPlugin': () => import('./icons/core/modules/teamPlugin.svg'),
'core/modules/variable': () => import('./icons/core/modules/variable.svg'),
'core/modules/welcomeText': () => import('./icons/core/modules/welcomeText.svg'),
'core/skill/default': () => import('./icons/core/skill/default.svg'),
'core/skill/help': () => import('./icons/core/skill/help.svg'),
'core/workflow/closeEdge': () => import('./icons/core/workflow/closeEdge.svg'),
'core/workflow/debug': () => import('./icons/core/workflow/debug.svg'),
'core/workflow/debugBlue': () => import('./icons/core/workflow/debugBlue.svg'),
......@@ -330,13 +255,11 @@ export const iconPaths = {
'core/workflow/debugResult': () => import('./icons/core/workflow/debugResult.svg'),
'core/workflow/edgeArrow': () => import('./icons/core/workflow/edgeArrow.svg'),
'core/workflow/edgeArrowBold': () => import('./icons/core/workflow/edgeArrowBold.svg'),
'core/workflow/grout': () => import('./icons/core/workflow/grout.svg'),
'core/workflow/inputType/array': () => import('./icons/core/workflow/inputType/array.svg'),
'core/workflow/inputType/conditional': () =>
import('./icons/core/workflow/inputType/conditional.svg'),
'core/workflow/inputType/customVariable': () =>
import('./icons/core/workflow/inputType/customVariable.svg'),
'core/workflow/inputType/dataset': () => import('./icons/core/workflow/inputType/dataset.svg'),
'core/workflow/inputType/dynamic': () => import('./icons/core/workflow/inputType/dynamic.svg'),
'core/workflow/inputType/external': () => import('./icons/core/workflow/inputType/external.svg'),
'core/workflow/inputType/file': () => import('./icons/core/workflow/inputType/file.svg'),
......@@ -353,7 +276,6 @@ export const iconPaths = {
'core/workflow/inputType/password': () => import('./icons/core/workflow/inputType/password.svg'),
'core/workflow/inputType/reference': () =>
import('./icons/core/workflow/inputType/reference.svg'),
'core/workflow/inputType/select': () => import('./icons/core/workflow/inputType/select.svg'),
'core/workflow/inputType/selectApp': () =>
import('./icons/core/workflow/inputType/selectApp.svg'),
'core/workflow/inputType/selectDataset': () =>
......@@ -370,21 +292,15 @@ export const iconPaths = {
'core/workflow/present': () => import('./icons/core/workflow/present.svg'),
'core/workflow/publish': () => import('./icons/core/workflow/publish.svg'),
'core/workflow/redo': () => import('./icons/core/workflow/redo.svg'),
'core/workflow/revertVersion': () => import('./icons/core/workflow/revertVersion.svg'),
'core/workflow/runError': () => import('./icons/core/workflow/runError.svg'),
'core/workflow/runSkip': () => import('./icons/core/workflow/runSkip.svg'),
'core/workflow/runSuccess': () => import('./icons/core/workflow/runSuccess.svg'),
'core/workflow/running': () => import('./icons/core/workflow/running.svg'),
'core/workflow/template/BI': () => import('./icons/core/workflow/template/BI.svg'),
'core/workflow/template/FileRead': () => import('./icons/core/workflow/template/FileRead.svg'),
'core/workflow/template/agent': () => import('./icons/core/workflow/template/agent.svg'),
'core/workflow/template/agentLinear': () => import('./icons/core/workflow/template/agentLinear'),
'core/workflow/template/aiChat': () => import('./icons/core/workflow/template/aiChat.svg'),
'core/workflow/template/aiChatLinear': () =>
import('./icons/core/workflow/template/aiChatLinear'),
'core/workflow/template/baseChart': () => import('./icons/core/workflow/template/baseChart.svg'),
'core/workflow/template/bing': () => import('./icons/core/workflow/template/bing.svg'),
'core/workflow/template/bocha': () => import('./icons/core/workflow/template/bocha.svg'),
'core/workflow/template/codeRun': () => import('./icons/core/workflow/template/codeRun.svg'),
'core/workflow/template/codeRunLinear': () =>
import('./icons/core/workflow/template/codeRunLinear'),
......@@ -400,20 +316,13 @@ export const iconPaths = {
import('./icons/core/workflow/template/datasetSearch.svg'),
'core/workflow/template/datasetSearchLinear': () =>
import('./icons/core/workflow/template/datasetSearchLinear'),
'core/workflow/template/datasource': () =>
import('./icons/core/workflow/template/datasource.svg'),
'core/workflow/template/duckduckgo': () =>
import('./icons/core/workflow/template/duckduckgo.svg'),
'core/workflow/template/extractJson': () =>
import('./icons/core/workflow/template/extractJson.svg'),
'core/workflow/template/extractJsonLinear': () =>
import('./icons/core/workflow/template/extractJsonLinear'),
'core/workflow/template/fetchUrl': () => import('./icons/core/workflow/template/fetchUrl.svg'),
'core/workflow/template/formInput': () => import('./icons/core/workflow/template/formInput.svg'),
'core/workflow/template/formInputLinear': () =>
import('./icons/core/workflow/template/formInputLinear'),
'core/workflow/template/getTime': () => import('./icons/core/workflow/template/getTime.svg'),
'core/workflow/template/google': () => import('./icons/core/workflow/template/google.svg'),
'core/workflow/template/httpRequest': () =>
import('./icons/core/workflow/template/httpRequest.svg'),
'core/workflow/template/httpRequestLinear': () =>
......@@ -442,7 +351,6 @@ export const iconPaths = {
'core/workflow/template/loopStart': () => import('./icons/core/workflow/template/loopStart.svg'),
'core/workflow/template/loopStartLinear': () =>
import('./icons/core/workflow/template/loopStartLinear'),
'core/workflow/template/mathCall': () => import('./icons/core/workflow/template/mathCall.svg'),
'core/workflow/template/parallelRun': () =>
import('./icons/core/workflow/template/parallelRun.svg'),
'core/workflow/template/parallelRunLinear': () =>
......@@ -465,8 +373,6 @@ export const iconPaths = {
'core/workflow/template/reply': () => import('./icons/core/workflow/template/reply.svg'),
'core/workflow/template/replyLinear': () => import('./icons/core/workflow/template/replyLinear'),
'core/workflow/template/runApp': () => import('./icons/core/workflow/template/runApp.svg'),
'core/workflow/template/searxng': () => import('./icons/core/workflow/template/searxng.svg'),
'core/workflow/template/sleep': () => import('./icons/core/workflow/template/sleep.svg'),
'core/workflow/template/stopTool': () => import('./icons/core/workflow/template/stopTool.svg'),
'core/workflow/template/stopToolLinear': () =>
import('./icons/core/workflow/template/stopToolLinear'),
......@@ -498,7 +404,6 @@ export const iconPaths = {
import('./icons/core/workflow/template/variableUpdate.svg'),
'core/workflow/template/variableUpdateLinear': () =>
import('./icons/core/workflow/template/variableUpdateLinear'),
'core/workflow/template/wiki': () => import('./icons/core/workflow/template/wiki.svg'),
'core/workflow/template/workflowStart': () =>
import('./icons/core/workflow/template/workflowStart.svg'),
'core/workflow/template/workflowStartLinear': () =>
......@@ -506,7 +411,6 @@ export const iconPaths = {
'core/workflow/touchTable': () => import('./icons/core/workflow/touchTable.svg'),
'core/workflow/undo': () => import('./icons/core/workflow/undo.svg'),
'core/workflow/upload': () => import('./icons/core/workflow/upload.svg'),
'core/workflow/versionHistories': () => import('./icons/core/workflow/versionHistories.svg'),
date: () => import('./icons/date.svg'),
delete: () => import('./icons/delete.svg'),
drag: () => import('./icons/drag.svg'),
......@@ -515,7 +419,6 @@ export const iconPaths = {
empty: () => import('./icons/empty.svg'),
export: () => import('./icons/export.svg'),
feedback: () => import('./icons/feedback.svg'),
'file/csv': () => import('./icons/file/csv.svg'),
'file/fill/audio': () => import('./icons/file/fill/audio.svg'),
'file/fill/csv': () => import('./icons/file/fill/csv.svg'),
'file/fill/doc': () => import('./icons/file/fill/doc.svg'),
......@@ -529,12 +432,6 @@ export const iconPaths = {
'file/fill/txt': () => import('./icons/file/fill/txt.svg'),
'file/fill/video': () => import('./icons/file/fill/video.svg'),
'file/fill/xlsx': () => import('./icons/file/fill/xlsx.svg'),
'file/html': () => import('./icons/file/html.svg'),
'file/indexImport': () => import('./icons/file/indexImport.svg'),
'file/manualImport': () => import('./icons/file/manualImport.svg'),
'file/markdown': () => import('./icons/file/markdown.svg'),
'file/pdf': () => import('./icons/file/pdf.svg'),
'file/qaImport': () => import('./icons/file/qaImport.svg'),
'file/uploadFile': () => import('./icons/file/uploadFile.svg'),
fullScreen: () => import('./icons/fullScreen.svg'),
help: () => import('./icons/help.svg'),
......@@ -557,20 +454,13 @@ export const iconPaths = {
'modal/AddClb': () => import('./icons/modal/AddClb.svg'),
'modal/changePer': () => import('./icons/modal/changePer.svg'),
'modal/concat': () => import('./icons/modal/concat.svg'),
'modal/confirmPay': () => import('./icons/modal/confirmPay.svg'),
'modal/edit': () => import('./icons/modal/edit.svg'),
'modal/manualDataset': () => import('./icons/modal/manualDataset.svg'),
'modal/selectSource': () => import('./icons/modal/selectSource.svg'),
'modal/setting': () => import('./icons/modal/setting.svg'),
'modal/teamPlans': () => import('./icons/modal/teamPlans.svg'),
'model/aws': () => import('./icons/model/aws.svg'),
'model/azure': () => import('./icons/model/azure.svg'),
'model/cloudflare': () => import('./icons/model/cloudflare.svg'),
'model/cohere': () => import('./icons/model/cohere.svg'),
'model/coze': () => import('./icons/model/coze.svg'),
'model/huggingface': () => import('./icons/model/huggingface.svg'),
more: () => import('./icons/more.svg'),
moreLine: () => import('./icons/moreLine.svg'),
'navbar/chatFill': () => import('./icons/navbar/chatFill.svg'),
'navbar/chatLight': () => import('./icons/navbar/chatLight.svg'),
'navbar/dashboardFill': () => import('./icons/navbar/dashboardFill.svg'),
......@@ -582,17 +472,9 @@ export const iconPaths = {
optimizer: () => import('./icons/optimizer.svg'),
out: () => import('./icons/out.svg'),
paragraph: () => import('./icons/paragraph.svg'),
'phoneTabbar/me': () => import('./icons/phoneTabbar/me.svg'),
'phoneTabbar/tool': () => import('./icons/phoneTabbar/tool.svg'),
'phoneTabbar/toolFill': () => import('./icons/phoneTabbar/toolFill.svg'),
'plugins/dingding': () => import('./icons/plugins/dingding.svg'),
'plugins/doc2x': () => import('./icons/plugins/doc2x.svg'),
'plugins/email': () => import('./icons/plugins/email.svg'),
'plugins/qiwei': () => import('./icons/plugins/qiwei.svg'),
'plugins/textEditor': () => import('./icons/plugins/textEditor.svg'),
point: () => import('./icons/point.svg'),
preview: () => import('./icons/preview.svg'),
'price/bg': () => import('./icons/price/bg.svg'),
'price/pricearrow': () => import('./icons/price/pricearrow.svg'),
'price/right': () => import('./icons/price/right.svg'),
save: () => import('./icons/save.svg'),
......@@ -611,7 +493,6 @@ export const iconPaths = {
'support/account/plans': () => import('./icons/support/account/plans.svg'),
'support/account/promotionLight': () => import('./icons/support/account/promotionLight.svg'),
'support/bill/extraDatasetsize': () => import('./icons/support/bill/extraDatasetsize.svg'),
'support/bill/extraPoints': () => import('./icons/support/bill/extraPoints.svg'),
'support/bill/payRecordLight': () => import('./icons/support/bill/payRecordLight.svg'),
'support/bill/priceLight': () => import('./icons/support/bill/priceLight.svg'),
'support/bill/shoppingCart': () => import('./icons/support/bill/shoppingCart.svg'),
......@@ -619,20 +500,15 @@ export const iconPaths = {
'support/config/configFill': () => import('./icons/support/config/configFill.svg'),
'support/config/configLight': () => import('./icons/support/config/configLight.svg'),
'support/outlink/apikeyFill': () => import('./icons/support/outlink/apikeyFill.svg'),
'support/outlink/iframeLight': () => import('./icons/support/outlink/iframeLight.svg'),
'support/outlink/share': () => import('./icons/support/outlink/share.svg'),
'support/outlink/shareLight': () => import('./icons/support/outlink/shareLight.svg'),
'support/permission/collaborator': () => import('./icons/support/permission/collaborator.svg'),
'support/permission/privateLight': () => import('./icons/support/permission/privateLight.svg'),
'support/permission/publicLight': () => import('./icons/support/permission/publicLight.svg'),
'support/team/group': () => import('./icons/support/team/group.svg'),
'support/team/memberLight': () => import('./icons/support/team/memberLight.svg'),
'support/usage/usageRecordLight': () => import('./icons/support/usage/usageRecordLight.svg'),
'support/user/informLight': () => import('./icons/support/user/informLight.svg'),
'support/user/userFill': () => import('./icons/support/user/userFill.svg'),
'support/user/userLight': () => import('./icons/support/user/userLight.svg'),
'support/user/userLightSmall': () => import('./icons/support/user/userLightSmall.svg'),
'support/user/usersFill': () => import('./icons/support/user/usersFill.svg'),
'support/user/usersLight': () => import('./icons/support/user/usersLight.svg'),
text: () => import('./icons/text.svg'),
union: () => import('./icons/union.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="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
<svg t="1721273358953" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4468" width="200" height="200"><path d="M514.56 509.44m-486.4 0a486.4 486.4 0 1 0 972.8 0 486.4 486.4 0 1 0-972.8 0Z" fill="#CC6633" p-id="4469"></path><path d="M512 512m-448 0a448 448 0 1 0 896 0 448 448 0 1 0-896 0Z" fill="#FFFFFF" p-id="4470"></path><path d="M934.912 516.096c0 199.68-138.24 367.616-324.096 412.672-11.264-21.504-22.016-42.496-31.232-59.904 31.744 28.16 70.144 38.912 91.648 25.6 27.648-16.896 37.376-78.848-5.632-135.168-13.312 0.512-30.72 2.56-50.176 8.192-27.648 8.192-48.128 20.992-61.44 30.72-11.776-17.92-28.16-48.64-36.352-89.6-6.656-33.28-5.12-61.952-2.56-81.408 14.848 10.24 113.664 43.52 162.816 42.496 49.152-1.024 129.536-30.72 120.832-54.784s-88.576 20.992-172.544 13.312c-61.952-5.632-72.704-33.28-58.88-53.76 17.408-25.6 48.64 4.608 100.352-10.752s124.416-43.008 151.04-58.368c61.952-34.816-26.112-49.152-46.592-39.424-19.968 9.216-88.064 26.624-120.32 34.304 17.92-62.976-25.088-172.544-73.216-220.672-15.872-15.872-39.424-25.6-66.56-30.72-10.24-14.336-27.136-28.16-51.2-40.448-46.08-24.064-98.304-32.768-149.504-24.064h-2.56c-6.144 1.024-9.728 3.584-14.848 4.096 6.144 0.512 29.184 11.264 44.032 17.408-7.168 3.072-16.896 4.608-24.576 7.68-3.072 0.512-5.632 1.024-8.704 2.56-7.168 3.072-12.8 15.36-12.288 21.504 34.816-3.584 86.528-1.024 124.416 10.24-26.624 3.584-51.2 10.752-69.12 19.968-0.512 0.512-1.024 0.512-2.048 1.024-2.048 1.024-4.608 1.536-6.144 2.56-56.832 29.696-81.92 99.84-67.072 183.808 13.312 75.776 69.12 336.384 95.232 460.288-164.352-56.32-282.624-214.016-282.624-399.36 0-235.008 190.464-424.96 424.96-424.96s424.96 190.464 424.96 424.96z" fill="#DE5833" p-id="4471"></path><path d="M389.12 446.976m-31.744 0a31.744 31.744 0 1 0 63.488 0 31.744 31.744 0 1 0-63.488 0Z" fill="#336699" p-id="4472"></path><path d="M599.552 401.408c-14.848-0.512-27.648 11.264-28.16 26.112s11.264 27.648 26.112 28.16h2.048c14.848 0 27.136-12.288 27.136-27.136s-12.288-27.136-27.136-27.136zM397.824 355.84s-23.552-10.752-46.592 3.584c-23.04 14.848-22.016 29.696-22.016 29.696s-12.288-27.136 20.48-40.448c32.256-13.824 48.64 7.168 48.128 7.168zM615.936 353.792s-16.896-9.728-30.208-9.728c-27.136 0.512-34.816 12.288-34.816 12.288s4.608-28.672 39.424-23.04c11.264 2.56 20.992 9.728 25.6 20.48z" fill="#336699" p-id="4473"></path><path d="M549.376 522.24c24.576-9.728 35.328-9.728 74.24-17.408 24.576-5.12 56.832-11.776 94.72-23.552 30.208-9.216 36.864-13.824 56.32-15.36 26.112-2.048 62.464 1.024 66.56 15.36 2.048 6.656-4.608 13.824-10.24 20.48-14.336 16.384-32.256 22.016-61.44 30.72-36.352 11.264-38.912 11.264-51.2 15.36-58.368 18.432-55.296 23.552-76.8 25.6-38.912 3.584-60.928-12.8-71.68 0-6.656 8.192-4.608 22.016 0 30.72 6.656 11.776 19.968 15.36 40.96 20.48 25.6 6.144 46.08 5.632 51.2 5.12 18.432-1.024 31.744-4.608 51.2-10.24 40.96-11.776 52.736-21.504 71.68-15.36 3.584 1.024 19.456 6.144 20.48 15.36 2.048 18.432-53.76 43.52-102.4 51.2-47.104 7.168-86.528-2.56-97.28-5.12-7.168-2.048-19.968-6.144-46.08-15.36-29.696-10.24-37.376-13.824-46.08-20.48-9.216-7.168-23.04-17.92-25.6-35.84-2.56-18.432 9.216-33.28 15.36-40.96 9.216-11.264 21.504-20.992 46.08-30.72z" fill="#FDD20A" p-id="4474"></path><path d="M523.776 798.72c4.096-3.584 9.216-7.168 15.36-10.24 11.776-6.144 22.528-9.216 30.72-10.24-1.536 3.584-3.584 6.656-5.12 10.24 14.336-7.168 29.696-13.824 46.08-20.48 25.088-10.24 49.152-18.432 71.68-25.6 7.68 12.288 22.016 36.864 25.6 71.68 3.584 35.328-5.12 63.488-10.24 76.8-6.144 3.584-32.768 17.408-66.56 10.24s-51.712-30.208-56.32-35.84c-1.536 5.12-3.584 10.24-5.12 15.36-5.632 1.024-14.848 2.048-25.6 0-11.776-2.048-20.48-7.168-25.6-10.24-24.064 11.776-47.616 24.064-71.68 35.84-3.584 4.608-9.728 6.656-15.36 5.12-7.68-2.048-10.24-9.728-10.24-10.24-5.632-16.896-11.264-37.888-15.36-61.44-4.096-25.088-5.12-47.616-5.12-66.56-2.048-6.144 0.512-12.8 5.12-15.36s9.728-0.512 10.24 0c18.944 2.56 44.544 7.68 71.68 20.48 13.824 6.656 26.112 13.824 35.84 20.48z" fill="#66CC33" p-id="4475"></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_7275_6584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.3961 16.1278C9.26542 16.7311 9.1966 17.3575 9.1966 18C9.1966 18.6425 9.26542 19.2688 9.3961 19.8722H13.0856C13.0027 19.2617 12.9542 18.6443 12.9412 18.0229C12.9409 18.0076 12.9409 17.9924 12.9412 17.9771C12.9542 17.3557 13.0027 16.7383 13.0856 16.1278H9.3961ZM10.1913 13.9312H13.5404C13.9734 12.3864 14.6335 10.9116 15.5009 9.55638C13.1957 10.2376 11.2847 11.8371 10.1913 13.9312ZM18 9.81135C17.0506 11.06 16.3212 12.4534 15.8358 13.9312H20.1641C19.6788 12.4534 18.9493 11.06 18 9.81135ZM20.6943 16.1278H15.3056C15.2085 16.7444 15.152 17.3697 15.1379 18C15.152 18.6302 15.2085 19.2556 15.3056 19.8722H20.6943C20.7915 19.2556 20.8479 18.6302 20.8621 18C20.8479 17.3697 20.7915 16.7444 20.6943 16.1278ZM22.9143 19.8722C22.9973 19.2617 23.0458 18.6443 23.0587 18.0229C23.059 18.0076 23.059 17.9924 23.0587 17.9771C23.0458 17.3557 22.9973 16.7383 22.9143 16.1278H26.6039C26.7345 16.7311 26.8034 17.3575 26.8034 18C26.8034 18.6425 26.7345 19.2688 26.6039 19.8722H22.9143ZM20.1641 22.0688H15.8358C16.3212 23.5465 17.0506 24.94 18 26.1886C18.9493 24.94 19.6788 23.5465 20.1641 22.0688ZM15.5009 26.4436C14.6335 25.0884 13.9734 23.6136 13.5404 22.0688H10.1913C11.2847 24.1629 13.1957 25.7624 15.5009 26.4436ZM20.4991 26.4436C21.3665 25.0884 22.0266 23.6136 22.4596 22.0688H25.8087C24.7153 24.1629 22.8042 25.7624 20.4991 26.4436ZM25.8087 13.9312H22.4596C22.0266 12.3864 21.3665 10.9116 20.4991 9.55638C22.8042 10.2376 24.7153 11.8371 25.8087 13.9312ZM7 18C7 11.9249 11.9249 7 18 7C24.0751 7 29 11.9249 29 18C29 24.0751 24.0751 29 18 29C11.9249 29 7 24.0751 7 18Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_7275_6584" x1="18" y1="0" x2="5.5" y2="33" gradientUnits="userSpaceOnUse">
<stop stop-color="#68C0FF"/>
<stop offset="1" stop-color="#52A2FF"/>
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg">
<rect width="36" height="36" rx="4" fill="url(#paint0_linear_7275_6485)"/>
<path d="M12.048 7.94883C12.4706 8.37148 12.4706 9.05673 12.048 9.47939L9.84755 11.6798C9.4249 12.1025 8.73964 12.1025 8.31699 11.6798C7.89434 11.2572 7.89434 10.5719 8.31699 10.1493L10.5174 7.94883C10.9401 7.52617 11.6253 7.52617 12.048 7.94883Z" fill="white"/>
<path d="M23.952 7.94884C24.3747 7.52618 25.0599 7.52618 25.4826 7.94884L27.683 10.1493C28.1056 10.5719 28.1056 11.2572 27.683 11.6798C27.2603 12.1025 26.5751 12.1025 26.1524 11.6798L23.952 9.4794C23.5294 9.05675 23.5294 8.37149 23.952 7.94884Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 27.2284C19.7368 27.2284 21.359 26.7375 22.7354 25.8868C22.746 25.8984 22.7568 25.9097 22.768 25.9209L24.9684 28.1213C25.3911 28.544 26.0764 28.544 26.499 28.1213C26.9217 27.6987 26.9217 27.0134 26.499 26.5907L24.4361 24.5279C26.0342 22.9004 27.0198 20.6696 27.0198 18.2086C27.0198 13.227 22.9815 9.18873 18 9.18873C13.0185 9.18873 8.98017 13.227 8.98017 18.2086C8.98017 20.6696 9.96581 22.9005 11.5639 24.5279L9.50099 26.5908C9.07834 27.0134 9.07834 27.6987 9.50099 28.1213C9.92365 28.544 10.6089 28.544 11.0316 28.1213L13.232 25.9209C13.2432 25.9097 13.254 25.8984 13.2646 25.8868C14.641 26.7375 16.2631 27.2284 18 27.2284ZM18 13.2945C18.5765 13.2945 19.0438 13.7618 19.0438 14.3383V17.5759L21.378 18.9235C21.8773 19.2118 22.0483 19.8502 21.7601 20.3494C21.4719 20.8486 20.8335 21.0197 20.3342 20.7315L17.5377 19.1169C17.5261 19.1102 17.5146 19.1033 17.5034 19.0962C17.1775 18.9196 16.9562 18.5746 16.9562 18.1779V14.3383C16.9562 13.7618 17.4235 13.2945 18 13.2945Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_7275_6485" x1="18" y1="0" x2="5.5" y2="33" gradientUnits="userSpaceOnUse">
<stop stop-color="#FCA18D"/>
<stop offset="1" stop-color="#E97359"/>
</linearGradient>
</defs>
</svg>
<svg t="1729136070356" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4261" width="200" height="200"><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="4262"></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="4263"></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="4264"></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="4265"></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_7275_6588)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.303 9.4C15.303 8.6268 15.9298 8 16.703 8H19.297C20.0702 8 20.697 8.6268 20.697 9.4V11.578C20.697 12.3512 20.0702 12.978 19.297 12.978H16.703C15.9298 12.978 15.303 12.3512 15.303 11.578V9.4ZM15.303 24.422C15.303 23.6488 15.9298 23.022 16.703 23.022H19.297C20.0702 23.022 20.697 23.6488 20.697 24.422V26.6C20.697 27.3732 20.0702 28 19.297 28H16.703C15.9298 28 15.303 27.3732 15.303 26.6V24.422ZM9.7902 15.84C9.017 15.84 8.3902 16.4668 8.3902 17.24V18.76C8.3902 19.5332 9.017 20.16 9.7902 20.16H26.2098C26.983 20.16 27.6098 19.5332 27.6098 18.76V17.24C27.6098 16.4668 26.983 15.84 26.2098 15.84H9.7902Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_7275_6588" x1="18" y1="0" x2="5.5" y2="33" gradientUnits="userSpaceOnUse">
<stop stop-color="#91A9FE"/>
<stop offset="1" stop-color="#797EFF"/>
</linearGradient>
</defs>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="searxng.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 225.86871 38.709602"
height="38.709602mm"
width="225.86871mm">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="2149"
inkscape:window-x="-7"
inkscape:window-height="1346"
inkscape:window-width="2560"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="235.27775"
inkscape:cx="1236.8338"
inkscape:zoom="0.7"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-4.020089,-7.482607)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
transform="translate(-25.702381,-86.178571)"
style="font-style:normal;font-weight:normal;font-size:50.8px;line-height:1.25;font-family:sans-serif;fill:#487cff;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="text884"
aria-label="SearXNG">
<path
id="path886"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 56.494069,102.70358 q -1.1684,-1.2192 -3.047999,-2.032 -1.8796,-0.812802 -4.4196,-0.812802 -3.1496,0 -5.08,1.320802 -1.9304,1.27 -1.9304,3.4544 0,2.3368 3.7084,3.6068 l 7.6708,2.6416 q 3.962399,1.3208 5.841999,3.4036 1.8796,2.0828 1.8796,5.1308 0,4.064 -2.1844,7.0104 -2.1844,2.8956 -5.943599,4.4196 -3.7592,1.524 -8.4836,1.524 -5.334,0 -9.0424,-1.778 -3.7084,-1.8288 -5.5372,-5.1308 -0.2032,-0.3556 -0.2032,-0.7112 0,-0.3556 0.4064,-0.6096 l 4.0132,-2.4384 q 0.3556,-0.254 0.762,-0.254 0.6096,0 1.1176,0.6604 1.3208,1.6256 2.3876,2.54 1.1176,0.8636 2.6924,1.3208 1.6256,0.4572 4.1656,0.4572 3.2004,0 5.1816,-1.1684 1.9812,-1.2192 1.9812,-3.7592 0,-1.27 -0.9144,-2.0828 -0.9144,-0.8636 -2.9464,-1.5748 l -7.4168,-2.4892 q -3.6576,-1.2192 -5.588,-3.556 -1.8796,-2.3876 -1.8796,-5.4356 0,-3.7592 2.1336,-6.654802 2.1336,-2.8956 5.6896,-4.4704 3.6068,-1.5748 7.874,-1.5748 4.3688,0 7.670799,1.5748 3.3528,1.524 5.1816,3.9624 0.4064,0.508 0.4064,0.762 0,0.254002 -0.3556,0.457202 l -4.5212,2.9972 q -0.0508,0.0508 -0.2032,0.0508 -0.3048,0 -1.0668,-0.762 z" />
<path
id="path888"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 77.003775,132.37078 q -3.6068,0 -6.4008,-1.4732 -2.794,-1.4732 -4.318,-4.1148 -1.524,-2.6924 -1.524,-6.1976 0,-4.1656 1.9812,-7.874 2.032,-3.7592 5.5372,-5.9944 3.556,-2.286 7.9248,-2.286 5.334,0 8.4836,3.1496 3.1496,3.1496 3.1496,8.6868 0,1.4732 -0.2032,2.8448 -0.1016,0.4064 -0.3556,0.6096 -0.2032,0.1524 -0.8128,0.1524 h -17.1196 q -0.8128,0 -0.8128,2.1844 0,2.3876 1.524,3.7084 1.5748,1.27 4.064,1.27 1.9304,0 3.6068,-0.8128 1.6764,-0.8128 3.302,-2.54 0.254,-0.254 0.508,-0.254 0.1524,0 0.6604,0.2032 l 3.3528,1.5748 q 0.6096,0.2032 0.6096,0.6604 0,0.254 -0.254,0.6604 -2.9464,3.302 -5.8928,4.572 -2.8956,1.27 -7.0104,1.27 z m 6.4516,-16.5608 q 1.2192,0 1.2192,-1.9812 0,-1.9304 -1.1684,-3.2512 -1.1684,-1.3716 -3.2512,-1.3716 -2.54,0 -4.5212,1.9304 -1.9304,1.8796 -2.2352,4.6736 z" />
<path
id="path890"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 109.411,129.37358 q -3.048,2.9972 -8.3312,2.9972 -3.555996,0 -5.587996,-1.8288 -2.032,-1.8288 -2.032,-4.7752 0,-3.6068 2.3876,-5.8928 2.3876,-2.3368 5.994396,-3.3528 3.6576,-1.0668 7.5692,-1.1684 l 1.8288,-0.1524 q 0.9652,0 1.1176,-0.9652 l 0.1524,-1.0668 q 0.0508,-0.254 0.0508,-0.8128 0,-3.048 -3.5052,-3.048 -4.0132,0 -5.9436,3.1496 -0.254,0.3556 -0.6604,0.3556 -0.3048,0 -0.4572,-0.0508 l -4.927596,-1.1684 q -0.508,-0.1016 -0.508,-0.6604 0,-0.508 0.254,-1.016 3.352796,-5.4864 12.649196,-5.4864 5.4864,0 8.0264,1.9304 2.5908,1.9304 2.5908,5.334 0,0.4572 -0.1016,1.4732 l -2.54,17.78 q -0.0508,0.6604 -0.2032,0.8128 -0.1524,0.1016 -0.7112,0.1016 h -5.2324 q -0.508,0 -0.6604,-0.3048 -0.1524,-0.3048 -0.2032,-1.016 l 0.0508,-1.3208 q 0,-0.4064 -0.254,-0.4064 -0.254,0 -0.8128,0.5588 z m 2.1844,-9.7536 v -0.3048 q 0,-0.2032 -0.1016,-0.254 -0.1016,-0.1016 -0.4064,-0.0508 l -1.8288,0.1524 q -2.9464,0.2032 -5.4864,1.4732 -2.54,1.27 -2.54,3.9116 0,1.2192 0.8636,1.9812 0.9144,0.7112 2.4384,0.7112 1.3208,0 2.4892,-0.3556 1.1684,-0.4064 2.032,-1.0668 1.8796,-1.4224 2.0828,-2.8956 z" />
<path
id="path892"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 123.8636,131.86278 q -0.6096,0 -0.9144,-0.3556 -0.254,-0.3556 -0.1524,-0.9144 l 3.5052,-24.9428 q 0.0508,-0.4572 0.1524,-0.5588 0.1524,-0.1524 0.5588,-0.1524 h 6.0452 q 0.9144,0 0.7112,1.0668 l -0.3556,2.286 v 0.2032 q 0,0.3556 0.2032,0.3556 0.1524,0 0.4572,-0.3048 1.778,-1.8796 3.9624,-2.9972 2.1844,-1.1176 3.9624,-1.1176 1.0668,0 1.5748,0.1524 0.508,0.1524 0.4572,0.6096 l -0.8128,5.6896 q -0.0508,0.5588 -0.2032,0.7112 -0.1016,0.1524 -0.4064,0.1016 -1.7272,-0.254 -3.4544,-0.254 -1.3208,0 -2.794,0.7112 -1.4732,0.6604 -2.54,1.778 -1.016,1.0668 -1.1684,2.1336 l -2.0828,14.8336 q -0.1016,0.6604 -0.3556,0.8128 -0.2032,0.1524 -0.9652,0.1524 z" />
<path
id="path894"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 176.48129,130.08478 q 0.4572,0.8128 0.4572,1.2192 0,0.3048 -0.254,0.4572 -0.254,0.1016 -0.762,0.1016 h -7.0612 q -0.6096,0 -0.9652,-0.1524 -0.3048,-0.1524 -0.508,-0.6096 l -5.6388,-11.7348 q -0.254,-0.508 -0.508,-0.508 -0.1524,0 -0.5588,0.5588 l -9.0424,11.8364 q -0.254,0.4064 -0.6096,0.508 -0.3048,0.1016 -1.0668,0.1016 h -5.9436 q -1.016,0 -1.016,-0.6604 0,-0.4572 0.762,-1.524 l 13.0048,-16.3068 q 0.5588,-0.6096 0.5588,-1.0668 0,-0.3556 -0.1016,-0.5588 l -8.4836,-16.560802 q -0.1524,-0.254 -0.1524,-0.508 0,-0.508 0.762,-0.508 h 7.4168 q 0.6604,0 0.9144,0.1524 0.254,0.1524 0.508,0.6604 l 4.9276,10.363202 q 0.1524,0.4064 0.3556,0.4064 0.2032,0 0.508,-0.4064 l 8.0264,-10.566402 q 0.3048,-0.4064 0.5588,-0.508 0.3048,-0.1016 0.9652,-0.1016 h 6.5532 q 0.6096,0 0.6096,0.5588 0,0.4064 -0.3048,0.9144 l -12.5984,15.646402 q -0.508,0.6604 -0.508,0.9144 0,0.2032 0.1524,0.508 z" />
<path
id="path896"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 218.11268,94.169178 q 0.3556,0 0.4572,0.2032 0.1016,0.1524 0.0508,0.5588 l -5.1308,36.372802 q -0.0508,0.3556 -0.254,0.4572 -0.1524,0.1016 -0.5588,0.1016 h -5.1816 q -0.6604,0 -1.1684,-0.8128 l -13.1064,-22.7076 q -0.1524,-0.254 -0.3048,-0.254 -0.3048,0 -0.3556,0.5588 l -3.1496,22.4028 q -0.1016,0.508 -0.3048,0.6604 -0.1524,0.1524 -0.7112,0.1524 h -5.588 q -0.8128,0 -0.7112,-1.1176 l 5.08,-35.814002 q 0.1016,-0.508 0.2032,-0.6096 0.1524,-0.1524 0.6604,-0.1524 h 6.1468 q 0.508,0 0.762,0.254 0.3048,0.2032 0.5588,0.7112 l 11.9888,21.183602 q 0.254,0.4064 0.508,0.4064 0.4064,0 0.4572,-0.6096 l 2.9464,-21.285202 q 0.0508,-0.4064 0.2032,-0.508 0.2032,-0.1524 0.6604,-0.1524 z" />
<path
id="path898"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.8px;font-family:'Libre Franklin';-inkscape-font-specification:'Libre Franklin';fill:#487cff;fill-opacity:1;stroke-width:0.264583"
d="m 236.43958,132.37078 q -4.572,0 -7.9248,-1.9304 -3.3528,-1.9304 -5.1308,-5.4356 -1.7272,-3.556 -1.7272,-8.3312 0,-6.2992 2.4892,-11.5316 2.4892,-5.283202 7.0612,-8.382002 4.572,-3.0988 10.5156,-3.0988 4.064,0 7.1628,1.5748 3.1496,1.5748 4.8768,4.1656 1.7272,2.540002 1.8288,5.435602 0,0.508 -0.1016,0.762 -0.0508,0.2032 -0.254,0.254 l -6.9596,1.016 h -0.0508 q -0.2032,0 -0.3556,-0.254 -0.1016,-0.254 -0.254,-1.016 -0.3556,-2.54 -1.9304,-4.1148 -1.524,-1.574802 -4.318,-1.574802 -3.6068,0 -5.9944,2.641602 -2.3368,2.6416 -3.4544,6.8072 -1.1176,4.1148 -1.1176,8.5852 0,4.3688 1.6256,6.2992 1.6764,1.8796 4.8768,1.8796 3.0988,0 5.2324,-1.7272 2.1336,-1.7272 3.1496,-4.2164 l 0.3048,-1.4224 q 0.1524,-0.254 0.1524,-0.3556 0,-0.3048 -0.6096,-0.3048 h -6.2484 q -0.3048,0 -0.4064,-0.1016 -0.1016,-0.1524 -0.0508,-0.5588 l 0.4572,-4.1656 q 0.0508,-0.5588 0.508,-0.5588 l 14.5288,0.0508 q 0.6096,0 0.762,0.2032 0.2032,0.1524 0.1016,0.6604 l -2.4892,17.5768 q -0.0508,0.6604 -0.8128,0.6604 h -1.524 q -0.4572,0 -0.7112,-0.1524 -0.2032,-0.1524 -0.3556,-0.6096 l -0.8636,-3.7084 q -0.0508,-0.254 -0.3556,-0.254 -0.3048,0 -0.6604,0.4064 -1.6764,2.0828 -4.3688,3.4544 -2.6924,1.3716 -6.604,1.3716 z" />
</g>
</g>
</svg>
<svg class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
width="200" height="200">
<path d="M-70.54222222-70.54222222m582.54222222 0l0 0q582.54222222 0 582.54222222 582.54222222l0 0q0 582.54222222-582.54222222 582.54222222l0 0q-582.54222222 0-582.54222222-582.54222222l0 0q0-582.54222222 582.54222222-582.54222222Z"
fill="#1296db"/>
<path d="M422.64477924 243.86730561H243.86730561v536.26538878h178.77747363V243.86730561zM780.13269439 243.86730561h-178.77747363v536.26538878H780.13269439V243.86730561z"
fill="#ffffff"/>
</svg>
\ No newline at end of file
<svg t="1728613783770" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4250" width="200" height="200"><path d="M530.077727 610.234325c-49.762357 97.384981-104.639199 199.047382-151.85864 295.595298-0.433882 0.433882-22.974247 0-22.974247-0.433882-71.867818-168.012551-147.146315-334.722434-219.044832-503.168868C118.774127 361.393887 60.486606 295.04476 20.521383 295.478641c0-4.681626-0.433882-15.315824-0.433882-21.703301l247.972675 0 0 21.269419c-29.360701 1.704828-80.827887 20.400632-66.349127 52.30425 33.608445 76.146261 158.6493 367.927697 192.257745 441.935248 22.974247-45.514613 88.455611-167.143765 115.27442-218.61095-21.269419-43.405579-89.757257-205.031677-111.460558-244.995877-14.881942-27.221991-55.281047-29.795607-85.478813-30.197766 0-6.821359 0-12.340049 0-21.269419l218.177068 0.403183 0 19.99745c-29.763884 0.867764-58.256822 11.905144-45.079708 39.995923 28.92682 61.23362 46.785559 104.205317 73.604368 160.354128 8.495488-16.587793 53.141314-106.34505 73.573669-154.401556 13.610996-31.469736-5.952572-43.808762-59.125609-45.080731 0.433882-5.54939 0-15.749706 0.433882-20.866237 68.053955-0.403183 170.120562-0.403183 188.413184-0.837064l0 20.834514c-34.44551 1.270946-70.162989 19.563568-88.889493 48.490388l-90.594321 188.010001c9.766434 24.679076 96.981798 218.61095 105.910145 239.880369l187.576119-432.571996c-13.177114-35.282574-55.714929-42.940998-72.301699-43.37488 0-5.51869 0-14.044878 0-21.269419l195.636702 1.704828 0.433882 0.837064-0.433882 18.726503c-42.940998 1.270946-68.892043 24.245194-85.478813 61.667501-38.290071 88.48631-158.246117 367.493815-237.772358 549.117362l-20.834514 0L530.077727 610.234325z" fill="#3E3A39" p-id="4251"></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.99992 2.08659C5.18166 2.08659 2.08634 5.1819 2.08634 9.00017C2.08634 12.8184 5.18166 15.9137 8.99992 15.9137C12.8182 15.9137 15.9135 12.8184 15.9135 9.00017C15.9135 5.1819 12.8182 2.08659 8.99992 2.08659ZM0.419678 9.00017C0.419678 4.26143 4.26118 0.419922 8.99992 0.419922C13.7387 0.419922 17.5802 4.26143 17.5802 9.00017C17.5802 13.7389 13.7387 17.5804 8.99992 17.5804C4.26118 17.5804 0.419678 13.7389 0.419678 9.00017ZM8.99992 3.51869C9.46016 3.51869 9.83326 3.89178 9.83326 4.35202V8.48514L12.4714 9.80419C12.883 10.01 13.0499 10.5106 12.844 10.9222C12.6382 11.3339 12.1377 11.5007 11.726 11.2949L8.62725 9.74552C8.34493 9.60436 8.16659 9.31581 8.16659 9.00017V4.35202C8.16659 3.89178 8.53969 3.51869 8.99992 3.51869Z"
fill="#3370FF" />
</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="1689489239258" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="23019" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M145.6 0C100.8 0 64 36.8 64 81.6v860.8C64 987.2 100.8 1024 145.6 1024h732.8c44.8 0 81.6-36.8 81.6-81.6V324.8L656 0H145.6z" fill="#45B058" p-id="23020"></path><path d="M388.8 691.2c1.6 1.6 3.2 4.8 3.2 8 0 6.4-4.8 11.2-11.2 11.2-3.2 0-6.4 0-8-3.2-11.2-12.8-30.4-22.4-48-22.4-41.6 0-73.6 32-73.6 78.4 0 44.8 32 78.4 73.6 78.4 17.6 0 35.2-8 48-22.4 1.6-1.6 4.8-3.2 8-3.2 6.4 0 11.2 4.8 11.2 11.2 0 3.2-1.6 6.4-3.2 8-14.4 16-35.2 27.2-64 27.2-56 0-99.2-40-99.2-99.2s43.2-99.2 99.2-99.2c28.8 0 49.6 11.2 64 27.2z m108.8 171.2c-28.8 0-51.2-9.6-67.2-24-3.2-1.6-3.2-4.8-3.2-8 0-6.4 3.2-12.8 11.2-12.8 1.6 0 4.8 1.6 6.4 3.2 12.8 11.2 32 20.8 54.4 20.8 33.6 0 44.8-19.2 44.8-33.6 0-49.6-113.6-22.4-113.6-91.2 0-30.4 27.2-52.8 65.6-52.8 24 0 46.4 8 62.4 20.8 1.6 1.6 3.2 4.8 3.2 8 0 6.4-4.8 11.2-11.2 11.2-1.6 0-4.8 0-6.4-1.6-14.4-11.2-32-17.6-49.6-17.6-24 0-40 12.8-40 30.4 0 43.2 113.6 19.2 113.6 91.2 0 27.2-19.2 56-70.4 56z m272-179.2L702.4 848c-3.2 8-9.6 12.8-17.6 12.8h-1.6c-8 0-16-4.8-19.2-12.8l-65.6-164.8c-1.6-1.6-1.6-3.2-1.6-4.8 0-6.4 4.8-12.8 12.8-12.8 4.8 0 9.6 3.2 11.2 8l62.4 160 62.4-160c1.6-4.8 6.4-8 11.2-8 8 0 14.4 6.4 14.4 12.8 0 1.6-1.6 3.2-1.6 4.8z" fill="#FFFFFF" p-id="23021"></path><path d="M960 326.4v16H755.2s-100.8-20.8-97.6-108.8c0 0 3.2 92.8 96 92.8H960z" fill="#349C42" p-id="23022"></path><path d="M657.6 0v233.6c0 25.6 17.6 92.8 97.6 92.8H960L657.6 0z" fill="#FFFFFF" p-id="23023"></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="1689324646567" class="icon" viewBox="0 0 1110 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3584" data-spm-anchor-id="a313x.7781069.0.i4" xmlns:xlink="http://www.w3.org/1999/xlink" width="69.375" height="64"><path d="M919.75593219 424.16813563a21.72203344 21.72203344 0 0 0 21.65694937-21.78711844V140.93559313c0-60.04067812-48.545085-108.93559312-108.26847469-108.93559313H140.26033906C80.545085 32 32 80.894915 32 140.93559313v740.77017c0 60.04067812 48.545085 108.93559312 108.26033906 108.93559312h692.88406781c59.71525406 0 108.26033906-48.894915 108.26033907-108.93559312V750.98305063a21.72203344 21.72203344 0 0 0-21.64881375-21.78711844 21.72203344 21.72203344 0 0 0-21.65694938 21.78711843v130.72271251c0 36.04067812-29.14169531 65.36135625-64.95457594 65.36135531H140.26033906c-35.81288156 0-64.95457594-29.32881375-64.95457593-65.36135531V249.87118625h822.80135531v152.50983094a21.72203344 21.72203344 0 0 0 21.64881375 21.78711843zM75.30576312 206.29694937V140.93559313c0-36.04067812 29.14169531-65.36135625 64.95457594-65.36135625h692.88406781c35.81288156 0 64.96271156 29.32881375 64.96271157 65.36135625v65.36135625H75.30576312z m64.95457594-43.57423781a21.72203344 21.72203344 0 0 0 21.65694938-21.78711843 21.72203344 21.72203344 0 0 0-21.65694938-21.78711844 21.72203344 21.72203344 0 0 0-21.64881375 21.78711844 21.72203344 21.72203344 0 0 0 21.64881375 21.78711843z m86.61152531 0a21.72203344 21.72203344 0 0 0 21.65694938-21.78711843 21.72203344 21.72203344 0 0 0-21.65694938-21.78711844 21.72203344 21.72203344 0 0 0-21.64881375 21.78711844 21.72203344 21.72203344 0 0 0 21.64881375 21.78711843z m86.61152532 0a21.72203344 21.72203344 0 0 0 21.65694937-21.78711843 21.72203344 21.72203344 0 0 0-21.65694937-21.78711844 21.72203344 21.72203344 0 0 0-21.64881375 21.78711844 21.72203344 21.72203344 0 0 0 21.64881375 21.78711843zM486.70644031 467.7423725a21.72203344 21.72203344 0 0 1 21.64881375 21.795255v174.29694844a21.72203344 21.72203344 0 0 1-21.64881375 21.78711937 21.72203344 21.72203344 0 0 1-21.65694844-21.78711937v-65.36135531H378.43796656v65.36135531a21.72203344 21.72203344 0 0 1-21.64881375 21.78711937 21.72203344 21.72203344 0 0 1-21.65694937-21.78711937V489.5376275a21.72203344 21.72203344 0 0 1 21.65694937-21.795255 21.72203344 21.72203344 0 0 1 21.64881375 21.795255v65.36135531H465.0576275v-65.36135531a21.72203344 21.72203344 0 0 1 21.65694844-21.795255z m173.21491594 0c11.95932188 0 21.665085 9.76271156 21.66508406 21.78711937a21.72203344 21.72203344 0 0 1-21.65694844 21.78711844h-21.65694937v152.51796563a21.72203344 21.72203344 0 0 1-21.64881375 21.78711937 21.72203344 21.72203344 0 0 1-21.65694938-21.78711937V511.31661031h-21.64881281a21.72203344 21.72203344 0 0 1-21.65694937-21.77898281 21.72203344 21.72203344 0 0 1 21.65694937-21.795255h86.60338969z m224.80271156 1.70847469a21.79525406 21.79525406 0 0 1 13.38305063 20.1274575v174.29694937a21.72203344 21.72203344 0 0 1-21.64881375 21.74644125 21.72203344 21.72203344 0 0 1-21.65694844-21.78711937v-121.70847469l-27.97830562 28.14915281a21.57559313 21.57559313 0 0 1-30.61423688 0l-28.01898281-28.14915281v121.70847469a21.72203344 21.72203344 0 0 1-21.65694938 21.78711937 21.72203344 21.72203344 0 0 1-21.64881375-21.78711937V489.5376275c0-8.80271156 5.28813563-16.77559313 13.38305063-20.13559406a21.68135625 21.68135625 0 0 1 23.59322062 4.71050906l49.62711844 49.97694937 49.62711844-49.93627125a21.38847469 21.38847469 0 0 1 23.60949187-4.71050906z m164.94915281 172.58847468a21.72203344 21.72203344 0 0 1 21.65694844 21.78711844 21.72203344 21.72203344 0 0 1-21.65694843 21.78711938h-86.61152532a21.72203344 21.72203344 0 0 1-21.64881375-21.78711938V489.52949188a21.72203344 21.72203344 0 0 1 21.64881375-21.78711938 21.72203344 21.72203344 0 0 1 21.65694844 21.78711938v152.50982999h64.95457688z" p-id="3585"></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="1689488775813" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6900" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M448 768h448V256H448v512z" fill="#7839ee" opacity=".1" p-id="6901"></path><path d="M960 928H384v-64h576v64z m0-768H384v-64h576v64zM128 736H64v-64h64v64z m0-128H64v-64h64v64z m0-128H64v-64h64v64z m0-128H64v-64h64v64z m0-128H64v-64h64v64zM320 800H256v-64h64v64z m0-128H256v-64h64v64z m0-128H256v-64h64v64z m0-128H256v-64h64v64z m0-128H256v-64h64v64zM640 256h64v512h-64z" fill="#7839ee" p-id="6902"></path><path d="M672 160l96 128H576l96-128zM672 864l96-128H576l96 128z" fill="#7839ee" p-id="6903"></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="1689489413405" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2128" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M753 521.1c-23.2-60.8-116.5-56.6-143.1-4.8-15.9-52.8-121.7-70.4-146.8-6.4 0-51.1-0.8-271.7-0.8-271.7-0.1-32.3-26.3-58.3-58.5-58.3s-58.4 26-58.5 58.3l-1.9 433.7s-23.1-53.6-81.8-83.9c-94.5-48.6-137.3 17.9-92.8 62.6C266.4 748.7 322.2 830.3 356 922c28.6 77.5 87.4 94.2 87.4 94.2h366c48.2-31 62.3-134.1 62.3-134.1V582.2c-0.3-111.6-120.1-93.8-118.7-61.1z" p-id="2129" fill="#4e83fd"></path><path d="M286.3 442.9v-72.4c-36.3-32.1-59.6-78.5-59.6-130.8 0-96.7 78.5-175.2 175.2-175.2 96.7 0 175.2 78.5 175.2 175.2 0 51.2-22.4 96.9-57.4 128.9v74.1c69.9-40.6 117.6-115.4 117.6-202.1 0-129.4-105-234.4-234.4-234.4s-234.4 105-234.4 234.4c-0.1 86.9 47.7 161.8 117.8 202.3z" p-id="2130" fill="#4e83fd"></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="1689324655973"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3734"
xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64">
<path
d="M512 601.09184948l-213.36752354-331.89890023A41.3976083 41.3976083 0 0 0 222.02342717 291.06546788v428.06065559H208.2150185a41.42522469 41.42522469 0 0 0 0 82.85044936h110.46726671a41.42522469 41.42522469 0 0 0 0-82.85044936h-13.80840868V432.10455041l172.27370066 267.99358607a41.42522469 41.42522469 0 0 0 69.70484562 0l172.27370066-267.99358607V719.12612347H705.31771479a41.42522469 41.42522469 0 0 0 0 82.85044936h110.46726671a41.42522469 41.42522469 0 0 0 0-82.85044936h-13.80840867V291.06546788a41.42522469 41.42522469 0 0 0-76.69189974-21.76205051L512 601.09184948z"
p-id="3735"></path>
<path
d="M14.8973037 180.59820247a165.70089876 165.70089876 0 0 1 165.70089877-165.70089877h662.80359506a165.70089876 165.70089876 0 0 1 165.70089877 165.70089877v662.80359506a165.70089876 165.70089876 0 0 1-165.70089877 165.70089877H180.59820247a165.70089876 165.70089876 0 0 1-165.70089877-165.70089877V180.59820247z m165.70089877-82.85044938a82.85044939 82.85044939 0 0 0-82.85044938 82.85044938v662.80359506a82.85044939 82.85044939 0 0 0 82.85044938 82.85044938h662.80359506a82.85044939 82.85044939 0 0 0 82.85044938-82.85044938V180.59820247a82.85044939 82.85044939 0 0 0-82.85044938-82.85044938H180.59820247z"
p-id="3736"></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="1689494925506"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1120"
xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64">
<path
d="M149.76 0C104.96 0 66.56 35.2 66.56 80V940.8c0 48 38.4 83.2 83.2 83.2h732.8c44.8 0 80-35.2 80-80V323.2L658.56 0H149.76z"
fill="#DD5154" p-id="1121"></path>
<path d="M962.56 326.4v16h-204.8s-99.2-19.2-96-105.6c0 0 3.2 89.6 96 89.6h204.8z" fill="#6B0D12" p-id="1122"></path>
<path
d="M329.91232 652.3904l2.31424 0.02048c21.02272 0.33792 36.81792 5.3504 47.29856 15.15008 10.9056 10.19904 16.29184 26.112 16.29184 47.60064 0 41.71776-21.63712 63.2832-64.01536 63.90272l-1.90976 0.01536h-36.43904v63.45216l-0.03072 1.2544c-0.19968 3.59424-1.23392 6.5536-3.15904 8.8064-2.2784 2.65216-5.85216 3.90144-10.5472 3.90144-4.92544 0-8.63232-1.37728-10.9056-4.28032-1.85344-2.37056-2.87744-5.2224-3.08736-8.4992l-0.03584-1.24928v-173.78816l0.02048-1.28512c0.15872-5.4784 1.34656-9.3696 3.83488-11.61728 2.44736-2.21696 6.91712-3.24608 13.58336-3.36896l1.46432-0.01536h45.32224z m407.21408 0l1.0752 0.02048c8.66304 0.33792 13.47584 4.8384 13.47584 12.86144 0 4.57216-1.30048 7.98208-4.08064 9.96864-2.26304 1.61792-5.40672 2.45248-9.43616 2.60096l-1.37216 0.0256H659.3536v59.38688l69.74464 0.00512 1.17248 0.0256c6.43072 0.26112 10.69056 2.75456 12.00128 7.20896 1.28 2.80576 1.152 5.9392-0.128 8.82688-1.37216 5.7088-5.60128 8.8064-12.0576 9.10336l-1.03936 0.0256H659.3536v81.23904l-0.03584 1.13664c-0.2048 3.31776-1.28 6.0672-3.24608 8.1408-2.29376 2.42688-6.00064 3.52768-11.0336 3.52768-4.88448 0-8.448-1.1264-10.55744-3.6352-1.7408-2.06336-2.67776-4.75136-2.8672-8.00256l-0.03072-1.24416v-176.37888l0.02048-1.20832c0.16896-4.77184 1.3312-8.2688 3.69664-10.3936 2.28864-2.06848 5.88288-3.07712 10.78272-3.2256l1.24928-0.01536h89.79456z m-233.00096 0l2.65728 0.03072c13.3888 0.3072 25.0624 2.90816 35.00544 7.8336 10.57792 5.23776 19.34336 12.42112 26.27584 21.5296 6.89664 9.0624 12.0064 19.73248 15.33952 31.98976 3.31264 12.17024 4.9664 25.15456 4.9664 38.94784 0 13.98272-1.65376 27.06432-4.9664 39.23456-3.328 12.24704-8.38656 22.95296-15.17568 32.1024a72.28416 72.28416 0 0 1-25.85088 21.69344c-9.79968 4.95104-21.26336 7.55712-34.37056 7.84896l-2.47808 0.0256H451.59936l-1.14176-0.01024c-5.84704-0.11776-9.53856-1.09056-11.24352-3.51232-1.38752-1.96096-2.06336-4.92544-2.176-8.97536l-0.01536-1.24416v-173.78816l0.02048-1.25952c0.11264-4.01408 0.78336-6.9632 2.17088-8.92416 1.6896-2.39616 5.32992-3.38944 11.136-3.5072l1.27488-0.01536h52.50048z m-5.76512 24.33024h-33.85856v152.576h41.02656c17.3568 0 30.73536-6.5024 40.3712-19.59936 9.76896-13.27104 14.69952-32.53248 14.69952-57.83552 0-24.51456-5.06368-43.18208-15.08864-56.05888-9.56928-12.288-24.51968-18.6624-45.07648-19.06176l-2.0736-0.02048z m-168.46848 0.86016h-36.43904v76.88192h36.43904c14.08 0 23.92576-3.13344 29.67552-9.23136 5.79584-6.144 8.76544-16.04096 8.76544-29.78304 0-13.6704-3.29728-23.296-9.7536-29.056-6.22592-5.5552-15.13472-8.50944-26.81856-8.79104l-1.8688-0.02048zM658.56 0L962.56 326.4h-208c-80 0-96-64-96-92.8V0z"
fill="#FFFFFF" p-id="1123"></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="1689489324421" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28738" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M166.32 808.98l-99.28 99.28c-15.31 15.32-39.71 15.32-55.03 0-15.32-15.31-15.32-39.71 0-55.03l98.71-99.28c15.32-15.31 39.71-15.31 55.03 0 15.32 15.32 15.32 39.72 0.57 55.03z m48.22 48.79l-99.28 99.27c-15.31 15.32-15.31 39.71 0 55.03 15.32 15.32 39.71 15.32 55.03 0l99.28-99.28c15.32-15.32 15.32-39.71 0-55.03-15.32-15.31-39.72-15.31-55.03 0.01z m625.14-545.16c0 71.47-57.86 129.34-129.34 129.34S581 384.08 581 312.61c0-71.48 57.86-129.34 129.34-129.34 72.05 0 129.91 57.86 129.34 129.34z m-77.71 0.57c0-28.36-23.26-51.63-51.62-51.63-28.36 0-51.62 23.26-51.62 51.63 0 28.36 23.26 51.62 51.62 51.62 28.93 0 52.19-23.26 51.62-51.62z m236.56 68.07c-27.8 104.39-83.39 203.65-164.51 285.35h-3.97l-5.11 5.67c10.21 38.57 11.35 78.28 2.84 116.86-9.07 46.52-32.33 90.2-66.94 124.8l-2.27 2.27c-38.57 36.87-85.09 59.57-134.45 67.51-51.62 7.94-105.51 0-152.6-23.26-17.58-10.21-25.53-32.9-16.45-51.63 1.7-2.84 3.41-5.67 5.67-8.5 14.18-15.32 24.96-32.9 32.9-51.63l3.4-7.94c-10.21 1.7-20.42 4.53-30.63 5.1-29.5 4.54-60.14 6.24-90.2 5.67-10.21 0-19.86-3.97-26.1-11.35L181.63 671.14c-8.51-7.95-11.35-18.72-10.78-29.5 0-28.37 2.27-58.43 5.67-86.79 1.7-10.78 2.84-20.99 5.1-31.2l-8.51 3.4c-17.58 7.95-35.17 18.72-51.06 33.47-14.75 14.18-39.14 12.48-53.32-2.27-2.27-2.84-3.97-7.37-6.24-10.21-23.26-47.09-30.63-99.28-22.69-150.9 8.22-51.8 32.65-99.66 69.78-136.71 34.61-34.61 78.85-57.86 123.67-66.94 39.14-8.51 79.42-7.94 116.86 2.27l7.95-7.95C439.75 106.69 538.45 51.66 642.83 23.3c108.35-28.36 222.38-28.36 329.59 0 13.62 4.54 23.82 15.32 27.23 27.23l0.57 0.57v0.56c28.37 107.78 28.37 221.81-1.69 329.59zM936.12 92.51c-89.06-19.86-182.67-18.16-270.03 5.1-91.34 24.96-178.7 73.18-250.74 145.22l-10.78 10.78-10.21 11.35c-10.21 11.35-26.66 16.45-42.55 10.78-31.2-12.48-65.81-14.75-98.71-7.38-31.2 6.81-61.27 22.13-86.23 46.52-26.66 27.8-43.12 60.7-48.79 95.3-3.4 20.99-3.4 42.55 0.57 62.97 9.64-5.67 18.72-10.78 28.93-14.18 26.66-11.34 55.6-18.15 84.53-18.72 3.97-0.57 7.94 0 11.91 0.56 19.86 5.67 31.77 26.66 26.1 46.52-7.95 26.1-13.05 52.2-16.45 78.29-1.7 22.12-3.4 43.12-3.97 64.67l146.36 146.93c22.12-1.14 43.11-2.27 64.67-5.11 27.23-3.97 52.76-8.51 78.29-15.89 3.97-0.56 7.94-1.13 11.91-1.13 20.42 0.57 36.31 18.72 36.31 39.14-1.7 29.5-7.38 58.43-19.29 85.66-3.97 9.08-9.07 19.29-14.18 28.36 20.42 3.97 41.98 3.97 62.4 1.13 33.47-5.1 66.94-20.99 93.03-47.09l1.13-1.13c24.39-24.96 39.71-55.6 47.09-86.79 6.81-32.34 3.97-66.94-7.94-99.28-4.54-14.18-1.7-30.64 10.21-41.41l11.91-11.35 8.51-8.51 2.27-1.13c72.04-72.61 119.7-159.41 145.79-250.17 23.27-89.05 25.54-180.95 7.95-270.01z" p-id="28739" fill="#FB7C3C"></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="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="1741332650600" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6423" width="64" height="64"><path d="M288.695 427.886c0 12.653 1.316 22.893 3.73 30.427 2.706 7.534 6.144 15.726 10.972 24.576a14.848 14.848 0 0 1 2.34 7.9c0 3.364-2.048 6.802-6.51 10.24l-21.43 14.336a16.31 16.31 0 0 1-8.85 3.072c-3.438 0-6.803-1.683-10.24-4.755a105.618 105.618 0 0 1-12.289-16.091 263.607 263.607 0 0 1-10.532-20.114c-26.551 31.451-59.977 47.104-100.206 47.104-28.526 0-51.42-8.192-68.023-24.576-16.75-16.384-25.307-38.254-25.307-65.61 0-29.11 10.24-52.662 31.012-70.436s48.42-26.697 83.456-26.697c11.63 0 23.552 1.024 36.133 2.78 12.58 1.681 25.6 4.388 39.204 7.533V322.56c0-26.039-5.485-44.105-16.091-54.71-10.825-10.607-29.257-15.727-55.442-15.727-11.923 0-24.21 1.39-36.791 4.389a269.897 269.897 0 0 0-36.791 11.703 97.573 97.573 0 0 1-11.922 4.388 20.7 20.7 0 0 1-5.486 1.024c-4.754 0-7.168-3.364-7.168-10.605v-16.53c0-5.486 0.731-9.582 2.414-11.996a25.454 25.454 0 0 1 9.508-7.168c11.923-6.144 26.259-11.337 42.935-15.36 16.677-4.462 34.377-6.583 53.175-6.583 40.521 0 70.217 9.29 89.234 27.794 18.725 18.36 28.307 46.446 28.307 84.042v110.665h0.658z m-138.313 51.931c11.264 0 22.82-2.048 35.108-6.144 12.215-4.096 23.113-11.63 32.33-21.87a54.272 54.272 0 0 0 11.63-21.942 122.88 122.88 0 0 0 3.364-29.696v-14.336a255.927 255.927 0 0 0-63.342-7.9c-22.82 0-39.497 4.462-50.761 13.751-11.264 9.216-16.677 22.162-16.677 39.278 0 16.091 4.023 28.013 12.58 36.205 8.193 8.558 20.115 12.654 35.768 12.654z m273.554 36.937c-6.144 0-10.24-1.024-12.946-3.437-2.707-2.048-5.12-6.803-7.168-13.312l-80.019-264.192a59.83 59.83 0 0 1-3.072-13.678c0-5.486 2.707-8.558 8.12-8.558h33.426c6.436 0 10.898 1.024 13.312 3.438 2.706 2.048 4.754 6.802 6.802 13.312l57.198 226.23 53.174-226.23c1.683-6.876 3.73-11.264 6.437-13.312a23.406 23.406 0 0 1 13.605-3.438h27.282c6.51 0 10.971 1.024 13.604 3.438 2.78 2.048 5.12 6.802 6.51 13.312l53.833 228.937 58.953-228.937a29.403 29.403 0 0 1 6.803-13.312 22.235 22.235 0 0 1 13.239-3.438h31.744c5.412 0 8.484 2.706 8.484 8.558 0 1.682-0.366 3.364-0.731 5.412a50.103 50.103 0 0 1-2.34 8.558L648.118 500.37c-2.048 6.803-4.389 11.264-7.168 13.312a21.723 21.723 0 0 1-12.946 3.438h-29.258c-6.582 0-10.971-1.024-13.677-3.438-2.707-2.413-5.12-6.875-6.437-13.677l-52.809-220.453-52.517 220.16c-1.682 6.802-3.73 11.19-6.436 13.605s-7.534 3.437-13.605 3.437h-29.33z m437.76 9.216c-17.7 0-35.401-2.048-52.443-6.144a155.063 155.063 0 0 1-39.205-13.677c-5.413-3.072-9.216-6.51-10.533-9.509a24.137 24.137 0 0 1-2.048-9.655v-17.408c0-7.168 2.707-10.606 7.827-10.606 2.048 0 4.096 0.366 6.144 1.024 2.048 0.732 5.12 2.048 8.484 3.438a188.428 188.428 0 0 0 37.45 11.996c13.677 2.706 26.99 4.096 40.594 4.096 21.43 0 38.107-3.804 49.737-11.264a36.937 36.937 0 0 0 17.7-32.549 33.353 33.353 0 0 0-9.216-23.918c-6.144-6.51-17.7-12.288-34.377-17.773l-49.444-15.36c-24.869-7.9-43.228-19.456-54.492-34.89a81.554 81.554 0 0 1-7.826-87.478 87.771 87.771 0 0 1 24.503-28.014c10.24-7.9 21.87-13.678 35.474-17.774 13.605-4.096 27.94-5.851 42.935-5.851 7.46 0 15.36 0.365 22.82 1.39 7.827 1.023 14.995 2.413 22.09 3.73 6.875 1.755 13.312 3.437 19.456 5.485 6.144 2.048 10.898 4.096 14.336 6.144a29.477 29.477 0 0 1 10.24 8.558 18.432 18.432 0 0 1 2.999 11.264v16.092c0 7.168-2.707 10.971-7.827 10.971a35.109 35.109 0 0 1-12.946-4.17 155.502 155.502 0 0 0-65.39-13.311c-19.456 0-34.743 3.072-45.348 9.582-10.533 6.51-16.019 16.384-16.019 30.427 0 9.509 3.438 17.774 10.24 24.283 6.803 6.51 19.456 12.947 37.523 18.798l48.347 15.36c24.503 7.9 42.204 18.798 52.81 32.841 10.532 13.97 15.652 30.062 15.652 47.836 0 14.701-3.072 28.013-8.777 39.643-6.071 11.703-14.629 21.943-24.942 30.062a109.714 109.714 0 0 1-37.815 19.163c-15.36 4.755-31.305 7.168-48.713 7.168z" fill="#252F3E" p-id="6424"></path><path d="M926.062 692.15C814.08 775.169 651.118 819.2 511.122 819.2c-196.242 0-373.028-72.777-506.587-193.829-10.533-9.508-1.024-22.528 11.63-14.994C160.549 694.491 338.725 745.4 523.045 745.4c124.342 0 260.973-26.039 386.706-79.36 18.724-8.485 34.743 12.361 16.31 26.039z" fill="#FF9900" p-id="6425"></path><path d="M972.8 638.757c-14.336-18.432-94.793-8.85-131.218-4.389-10.972 1.317-12.58-8.265-2.707-15.36 64-45.202 169.326-32.183 181.541-17.115 12.288 15.36-3.365 120.978-63.342 171.593-9.216 7.826-18.066 3.73-13.97-6.583 13.605-33.792 43.886-110.007 29.623-128.146z" fill="#FF9900" p-id="6426"></path></svg>
\ No newline at end of file
<svg t="1741332590124" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2637" width="64" height="64"><path d="M384.032 128h227.264l-235.904 741.792a36.48 36.48 0 0 1-34.336 26.208H164.16A37.312 37.312 0 0 1 128 857.632a41.6 41.6 0 0 1 1.92-12.32l219.84-691.168A36.48 36.48 0 0 1 384.032 128" fill="#01579B" p-id="2638"></path><path d="M714.24 640H353.92a17.184 17.184 0 0 0-16.704 17.6 18.24 18.24 0 0 0 5.312 13.056l231.552 214.912a35.2 35.2 0 0 0 24.8 10.4h204.032z" fill="#1976D2" p-id="2639"></path><path d="M674.272 154.112A36.48 36.48 0 0 0 640.032 128h-253.28a36.48 36.48 0 0 1 34.304 26.08l219.776 691.168a39.04 39.04 0 0 1-22.72 48.64 35.2 35.2 0 0 1-11.584 2.048h253.28A37.312 37.312 0 0 0 896 857.6a41.6 41.6 0 0 0-1.92-12.32L674.304 154.144z" fill="#29B6F6" p-id="2640"></path></svg>
\ No newline at end of file
<svg t="1741333125459" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11365" width="64" height="64"><path d="M704.38432 718.72c6.304-21.632 3.872-41.408-6.624-56.128-9.568-13.504-25.792-21.28-45.28-22.208l-369.472-4.8h-0.096a6.688 6.688 0 0 1-5.568-3.008l-0.032-0.032a8.192 8.192 0 0 1-0.896-6.624 10.24 10.24 0 0 1 8.672-6.656l372.736-4.8c44.16-2.08 92.16-37.824 108.96-81.632l21.28-55.52a11.584 11.584 0 0 0 0.64-7.168 242.4 242.4 0 0 0-236.8-189.664 242.656 242.656 0 0 0-229.856 164.768 110.176 110.176 0 0 0-76.544-21.28 109.28 109.28 0 0 0-94.816 135.648 155.04 155.04 0 0 0-150.656 155.168c0 7.456 0.608 15.008 1.504 22.496a7.456 7.456 0 0 0 7.2 6.304h681.888a9.312 9.312 0 0 0 8.672-6.624l5.12-18.208z m117.6-237.376c-3.296 0-6.88 0-10.176 0.48-2.4 0-4.512 1.76-5.408 4.16l-14.4 50.112c-6.304 21.632-3.904 41.408 6.592 56.16 9.632 13.504 25.824 21.248 45.344 22.176l78.656 4.832c2.368 0 4.512 1.12 5.664 3.008a8.64 8.64 0 0 1 0.928 6.656 10.24 10.24 0 0 1-8.704 6.624l-81.952 4.8c-44.416 2.08-92.096 37.824-108.928 81.664l-5.984 15.296c-1.216 3.04 0.928 6.048 4.192 6.048h281.504a7.36 7.36 0 0 0 7.2-5.376c4.8-17.408 7.488-35.712 7.488-54.624 0-111.04-90.656-201.696-202.016-201.696z" fill="#F38020" p-id="11366"></path></svg>
\ No newline at end of file
<svg t="1741332939210" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7576" width="64" height="64"><path d="M331.712601 609.625898c27.560944 0 82.426848-1.535904 158.112785-32.723288 88.31448-36.349728 264.004833-102.3936 390.716913-170.144032 88.655792-47.35704 127.480032-110.158448 127.480033-194.547841A212.168073 212.168073 0 0 0 795.811595 0H304.791617A304.791617 304.791617 0 0 0 0 304.791617c0 168.309481 127.736016 304.834281 331.712601 304.834281z" fill="#39594D" p-id="7577"></path><path d="M414.736746 819.490115a204.147241 204.147241 0 0 1 125.8588-188.574881l154.699665-64.166656c156.406225-64.84928 328.598129 50.044872 328.598129 219.420953a237.510489 237.510489 0 0 1-237.638481 237.510489h-167.413537a204.147241 204.147241 0 0 1-204.104576-204.189905z" fill="#D18EE2" p-id="7578"></path><path d="M175.690353 649.772723A175.690353 175.690353 0 0 0 0 825.548403v22.739912a175.690353 175.690353 0 0 0 351.423369 0v-22.739912a175.690353 175.690353 0 0 0-175.733016-175.690352z" fill="#FF7759" p-id="7579"></path></svg>
\ No newline at end of file
<svg fill="currentColor" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Coze</title><path clip-rule="evenodd" d="M3.908 9.096A8.092 8.092 0 0111.998 1h.006c4.468 0 8.09 3.628 8.09 8.096v3.392h1.942c2.23 0 2.732 3.126.615 3.828l-2.556.85v1.466a1.947 1.947 0 01-2.818 1.742l-1.42-.707c-.067-.03-.149 0-.17.071-1.147 3.587-6.225 3.587-7.373 0a.123.123 0 00-.169-.07l-1.42.706c-1.29.65-2.817-.292-2.817-1.742v-1.466l-2.557-.85c-2.122-.697-1.614-3.828.615-3.828h1.942V9.096zm4.571 2.613a.784.784 0 00-.784.784v1.568a.784.784 0 101.568 0v-1.568a.784.784 0 00-.784-.784zm7.045.779a.784.784 0 100 1.568.784.784 0 000-1.568zm-6.186 3.415a.78.78 0 00.17.254 3.517 3.517 0 004.98 0 .782.782 0 10-1.106-1.107 1.958 1.958 0 01-2.767 0 .78.78 0 00-1.277.254.78.78 0 000 .6z"></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="M6.66666 3.33333C6.66666 2.59695 7.26361 2 7.99999 2C8.73637 2 9.33332 2.59695 9.33332 3.33333C9.33332 4.06971 8.73637 4.66667 7.99999 4.66667C7.26361 4.66667 6.66666 4.06971 6.66666 3.33333ZM6.66666 8C6.66666 7.26362 7.26361 6.66667 7.99999 6.66667C8.73637 6.66667 9.33332 7.26362 9.33332 8C9.33332 8.73638 8.73637 9.33333 7.99999 9.33333C7.26361 9.33333 6.66666 8.73638 6.66666 8ZM6.66666 12.6667C6.66666 11.9303 7.26361 11.3333 7.99999 11.3333C8.73637 11.3333 9.33332 11.9303 9.33332 12.6667C9.33332 13.403 8.73637 14 7.99999 14C7.26361 14 6.66666 13.403 6.66666 12.6667Z" />
</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="1683450445756" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1866" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M671.3984 266.93973333c0 87.97866667-71.31306667 159.2896-159.2896 159.2896v73.5168c128.55893333 0 232.8064-104.24746667 232.8064-232.8064h-73.5168z m-159.2896 159.2896c-87.97653333 0-159.28746667-71.31306667-159.28746667-159.2896h-73.51893333c0 128.55893333 104.2496 232.8064 232.8064 232.8064v-73.5168z m-159.28746667-159.2896c0-87.97653333 71.31093333-159.28746667 159.28746667-159.28746666V34.13333333c-128.5568 0-232.8064 104.24746667-232.8064 232.8064h73.51893333z m159.28746667-159.28746666c87.97866667 0 159.2896 71.31093333 159.2896 159.28746666h73.5168C744.91733333 138.3808 640.66773333 34.13333333 512.1088 34.13333333v73.51893334z m306.32533333 673.9136c0 25.9264-22.00533333 59.3536-80.18346666 88.41813333-55.97226667 27.98506667-135.86133333 46.36373333-226.14186667 46.36373333V989.86666667c99.2 0 190.85226667-20.04693333 259.02933333-54.10986667 66.01813333-33.03253333 120.81493333-85.37813333 120.81493334-154.19093333H818.432z m-306.32533333 134.784c-90.2784 0-170.1696-18.3808-226.13973333-46.36586667-58.17813333-29.06453333-80.18346667-62.49173333-80.18346667-88.41813333H132.26666667c0 68.8128 54.79466667 121.1584 120.81493333 154.19093333C321.25653333 969.81973333 412.91093333 989.86666667 512.11093333 989.86666667v-73.51893334z m-306.32533333-134.784c0-25.9264 22.00746667-59.3536 80.1856-88.41813334 55.97013333-27.98506667 135.86133333-46.36586667 226.13973333-46.36586666v-73.5168c-99.2 0-190.85226667 20.0448-259.02933333 54.10986666C187.06346667 660.40746667 132.26666667 712.75306667 132.26666667 781.56586667h73.51893333z m306.32533333-134.784c90.28266667 0 170.1696 18.3808 226.14186667 46.36586666 58.176 29.06453333 80.18346667 62.49173333 80.18346666 88.41813334h73.51893334c0-68.8128-54.7968-121.1584-120.81493334-154.19093334-68.17706667-34.06506667-159.82933333-54.10986667-259.02933333-54.10986666v73.5168z" p-id="1867"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" >
<path
d="M10.7545 3.99988H13.4802C14.3638 3.99988 15.0802 4.71622 15.0802 5.59988V5.93835H16.9999C17.0268 5.93835 17.0536 5.93835 17.0802 5.93836V5.59988C17.0802 3.61165 15.4684 1.99988 13.4802 1.99988H10.7545C8.76627 1.99988 7.15449 3.61165 7.15449 5.59988V5.93835H9.15449V5.59988C9.15449 4.71622 9.87084 3.99988 10.7545 3.99988Z"
fill="#3370FF" />
<path
d="M22.436 10.2577H1.56394C1.5778 9.06834 1.64113 8.36297 1.93064 7.79479C2.25661 7.15504 2.77674 6.6349 3.41649 6.30893C4.14379 5.93835 5.09588 5.93835 7.00006 5.93835H16.9999C18.904 5.93835 19.8561 5.93835 20.5834 6.30893C21.2232 6.6349 21.7433 7.15504 22.0693 7.79479C22.3588 8.36297 22.4221 9.06834 22.436 10.2577Z"
fill="#3370FF" />
<path
d="M14.6355 12.0377H22.4399V16.56C22.4399 18.4641 22.4399 19.4162 22.0693 20.1435C21.7433 20.7833 21.2232 21.3034 20.5834 21.6294C19.8561 22 18.904 22 16.9999 22H7.00005C5.09588 22 4.14379 22 3.41649 21.6294C2.77674 21.3034 2.25661 20.7833 1.93064 20.1435C1.56006 19.4162 1.56006 18.4641 1.56006 16.56V12.0377H9.36436V15.3226C9.36436 15.654 9.63299 15.9226 9.96437 15.9226H14.0355C14.3669 15.9226 14.6355 15.654 14.6355 15.3226V12.0377Z"
fill="#3370FF" />
<path d="M10.9644 12.0377H13.0355V14.3226H10.9644V12.0377Z" fill="#3370FF" />
</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="1734061835557" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4251" xmlns:xlink="http://www.w3.org/1999/xlink" ><path d="M512.003 79C272.855 79 79 272.855 79 512.003 79 751.145 272.855 945 512.003 945 751.145 945 945 751.145 945 512.003 945 272.855 751.145 79 512.003 79z m200.075 375.014c-0.867 3.764-3.117 9.347-6.234 16.012h0.087l-0.347 0.648c-18.183 38.86-65.631 115.108-65.631 115.108l-0.215-0.52-13.856 24.147h66.8L565.063 779l29.002-115.368h-52.598l18.27-76.29c-14.76 3.55-32.253 8.436-52.945 15.1 0 0-27.967 16.36-80.607-31.5 0 0-35.501-31.29-14.891-39.078 8.744-3.33 42.466-7.573 69.004-11.122 35.93-4.845 57.965-7.441 57.965-7.441s-110.607 1.643-136.841-2.468c-26.237-4.11-59.525-47.905-66.626-86.377 0 0-10.953-21.117 23.595-11.122 34.547 10 177.535 38.95 177.535 38.95s-185.933-56.992-198.36-70.929c-12.381-13.846-36.406-75.902-33.289-113.981 0 0 1.343-9.521 11.127-6.926 0 0 137.49 62.75 231.475 97.152 94.028 34.403 175.76 51.885 165.2 96.414z" fill="#3AA2EB" p-id="4252"></path></svg>
\ No newline at end of file
<svg viewBox="0 0 42 42" xmlns="http://www.w3.org/2000/svg">
<rect x="28.6606" y="8.44495" width="6.92163" height="12.0376" rx="3.46082" transform="rotate(45 28.6606 8.44495)" fill="#7748F9"/>
<rect x="16.957" y="20.1488" width="6.92163" height="12.0376" rx="3.46082" transform="rotate(45 16.957 20.1488)" fill="#7748F9"/>
<rect x="20.1489" y="25.0432" width="6.92163" height="12.0376" rx="3.46082" transform="rotate(-45 20.1489 25.0432)" fill="#BFABFB"/>
<rect x="8.44482" y="13.3394" width="6.92163" height="12.0376" rx="3.46082" transform="rotate(-45 8.44482 13.3394)" fill="#BFABFB"/>
</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="1739434077659" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="1659"
xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
<path d="M102.4 409.6h819.2v409.6a102.4 102.4 0 0 1-102.4 102.4H204.8a102.4 102.4 0 0 1-102.4-102.4V409.6zM102.4 409.6h819.2L579.4816 110.1824a102.4 102.4 0 0 0-134.9632 0z" fill="#36C196" p-id="1660"></path>
<path d="M204.8 204.8h614.4a51.2 51.2 0 0 1 51.2 51.2v563.2H153.6V256a51.2 51.2 0 0 1 51.2-51.2z" fill="#FFBA40" p-id="1661"></path>
<path d="M316.5184 307.2m0 25.6l0 153.6q0 25.6-25.6 25.6l0 0q-25.6 0-25.6-25.6l0-153.6q0-25.6 25.6-25.6l0 0q25.6 0 25.6 25.6Z" fill="#FFFFFF" p-id="1662"></path>
<path d="M460.288 307.2m25.6 0l256 0q25.6 0 25.6 25.6l0 0q0 25.6-25.6 25.6l-256 0q-25.6 0-25.6-25.6l0 0q0-25.6 25.6-25.6Z" fill="#FFFFFF" p-id="1663"></path>
<path d="M613.888 409.6m25.6 0l102.4 0q25.6 0 25.6 25.6l0 0q0 25.6-25.6 25.6l-102.4 0q-25.6 0-25.6-25.6l0 0q0-25.6 25.6-25.6Z" fill="#FFFFFF" p-id="1664"></path>
<path d="M102.4 409.6v409.6a102.4 102.4 0 0 0 102.4 102.4h563.2z" fill="#2A44A1" p-id="1665"></path>
<path d="M921.6 409.6v409.6a102.4 102.4 0 0 1-102.4 102.4H256z" fill="#3D60F6" p-id="1666"></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="1734061855126" class="icon" viewBox="0 0 1219 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5425" xmlns:xlink="http://www.w3.org/1999/xlink" width="238.0859375" height="200"><path d="M966.168 275.578a429.202 429.202 0 0 0-77.41-110.397c-80.822-83.944-193.95-138.02-318.61-152.26a583.655 583.655 0 0 0-65.926-3.827c-20.284 0-41.545 1.195-63.097 3.584C316.05 26.258 202.265 80.19 120.856 164.06a429.641 429.641 0 0 0-77.824 110.227A385.829 385.829 0 0 0 3.048 445.074c0 76.313 23.113 151.382 66.803 217.356 22.138 33.427 58.344 75.484 91.673 105.204l-15.068 118.833c-0.585 1.585-1.194 3.17-1.584 4.9-0.415 1.61-0.488 3.195-0.634 4.804-0.098 1.194-0.415 2.389-0.415 3.584 0 1.316 0.317 2.608 0.415 3.9a38.522 38.522 0 0 0 38.205 34.865c6.973 0 13.41-2.023 19.017-5.217l0.585-0.39c0.78-0.39 1.658-0.878 2.438-1.39l35.962-18.14 107.081-54.052a550.687 550.687 0 0 0 93.574 18.09 576.123 576.123 0 0 0 128.975-0.39 559.47 559.47 0 0 0 126.343-29.622 69.973 69.973 0 0 1-47.446-73.192 468.114 468.114 0 0 1-89.575 19.261 482.987 482.987 0 0 1-108.106 0.317c-3.584-0.39-7.265-0.975-10.922-1.463a475.404 475.404 0 0 1-70.851-14.994 48.299 48.299 0 0 0-14.726-2.268c-7.973 0-15.604 2.073-23.406 6.096-1.048 0.61-2 1.048-3.048 1.609l-87.942 52.053-3.852 2.292c-1.877 1.195-2.999 1.585-3.998 1.585a5.973 5.973 0 0 1-5.803-6.071l3.389-13.775 3.803-14.97 6.461-24.527 7.07-27.405c4.877-15.189-0.487-31.792-13.287-41.252a394.679 394.679 0 0 1-36.742-31.037 362.57 362.57 0 0 1-52.15-61.928c-34.622-52.224-52.859-111.494-52.859-171.447 0-46.494 10.582-91.745 31.452-134.436a344.795 344.795 0 0 1 62.488-88.26c66.877-69.022 160.987-113.322 264.948-124.635 18.042-1.999 35.84-2.974 52.858-2.974 17.92 0 36.474 1.073 55.247 3.17 103.521 11.824 197.071 56.32 263.436 125.342a344.21 344.21 0 0 1 62.098 88.478c20.359 41.448 30.964 87.04 31.037 133.267 0 4.803-0.317 9.606-0.536 14.384a69.34 69.34 0 0 1 85.577 9.997c1.22 1.194 2.121 2.51 3.17 3.754a360.28 360.28 0 0 0 1.219-29.574 385.829 385.829 0 0 0-39.254-169.326" fill="#0082F0" p-id="5426"></path><path d="M961.39 884.59a67.462 67.462 0 0 0-8.339-1.39 213.87 213.87 0 0 1-119.32-66.706 16.579 16.579 0 0 0-28.062 9.533 16.725 16.725 0 0 0 6.826 16.042l4.755 4.779a215.503 215.503 0 0 1 58.806 110.25 69.778 69.778 0 0 0 51.737 63.318 69.51 69.51 0 0 0 67.096-18.164 70.217 70.217 0 0 0 17.725-68.778 69.925 69.925 0 0 0-51.322-48.957" fill="#FB6500" p-id="5427"></path><path d="M1192.058 705.853a69.486 69.486 0 0 0-72.607-16.506 69.851 69.851 0 0 0-46.03 58.685 215.381 215.381 0 0 1-66.366 119.71 16.823 16.823 0 0 0 9.265 28.892 16.701 16.701 0 0 0 16.213-7.558l4.706-4.803a213.821 213.821 0 0 1 109.787-59.1 69.949 69.949 0 0 0 63.098-52.004 70.217 70.217 0 0 0-18.066-67.414" fill="#0082F0" p-id="5428"></path><path d="M896.902 507.928a70.217 70.217 0 0 0-16.36 72.802 69.876 69.876 0 0 0 58.32 46.3 213.821 213.821 0 0 1 119.271 66.681 16.677 16.677 0 0 0 28.477-9.484 16.798 16.798 0 0 0-7.216-16.189 215.479 215.479 0 0 1-63.684-115.03 69.778 69.778 0 0 0-51.638-63.317 69.51 69.51 0 0 0-67.17 18.14" fill="#2DBC00" p-id="5429"></path><path d="M817.81 766.464l0.585-4.242a215.576 215.576 0 0 1 66.414-119.833 16.823 16.823 0 0 0-9.24-28.891 16.701 16.701 0 0 0-16.238 7.558 213.797 213.797 0 0 1-114.493 63.927 69.949 69.949 0 0 0-63.098 52.004 70.217 70.217 0 0 0 18.066 67.414 69.486 69.486 0 0 0 70.486 17.066 69.827 69.827 0 0 0 47.445-55.003" fill="#FFCC00" p-id="5430"></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="1702446643259" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4270" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M247.0912 996.1472 100.5568 996.1472c-39.936 0-72.4992-32.5632-72.4992-72.4992L28.0576 81.92c0-39.936 32.5632-72.4992 72.4992-72.4992l766.0544 0c39.936 0 72.4992 32.5632 72.4992 72.4992l0 210.5344c0 12.3904-10.0352 22.528-22.528 22.528s-22.528-10.0352-22.528-22.528L894.0544 81.92c0-15.1552-12.288-27.5456-27.5456-27.5456L100.5568 54.3744c-15.1552 0-27.5456 12.288-27.5456 27.5456L73.0112 923.648c0 15.1552 12.288 27.5456 27.5456 27.5456l146.5344 0c12.3904 0 22.528 10.0352 22.528 22.528S259.4816 996.1472 247.0912 996.1472z" fill="#FF9000" p-id="4271"></path><path d="M745.2672 192.1024 174.6944 192.1024c-12.3904 0-22.528-10.0352-22.528-22.528s10.0352-22.528 22.528-22.528l570.5728 0c12.3904 0 22.528 10.0352 22.528 22.528S757.6576 192.1024 745.2672 192.1024z" fill="#FF9000" p-id="4272"></path><path d="M437.6576 429.6704 174.6944 429.6704c-12.3904 0-22.528-10.0352-22.528-22.528s10.0352-22.528 22.528-22.528l262.9632 0c12.3904 0 22.528 10.0352 22.528 22.528S450.1504 429.6704 437.6576 429.6704z" fill="#FF9000" p-id="4273"></path><path d="M620.6464 310.8864 174.6944 310.8864c-12.3904 0-22.528-10.0352-22.528-22.528s10.0352-22.528 22.528-22.528l445.952 0c12.3904 0 22.528 10.0352 22.528 22.528S633.1392 310.8864 620.6464 310.8864z" fill="#FF9000" p-id="4274"></path><path d="M399.6672 1009.8688c-6.2464 0-12.288-2.56-16.5888-7.2704-5.2224-5.7344-7.168-13.7216-5.12-21.2992l40.8576-146.6368c1.024-3.6864 3.072-7.168 5.7344-9.8304l408.9856-408.9856c14.1312-14.0288 36.9664-14.0288 51.0976 0l97.792 97.792c6.8608 6.8608 10.5472 15.872 10.5472 25.4976s-3.7888 18.7392-10.5472 25.4976L928.8704 618.496c-4.1984 4.1984-9.9328 6.5536-15.872 6.5536s-11.6736-2.3552-15.872-6.5536l-66.048-66.048c-8.8064-8.8064-8.8064-23.04 0-31.8464s23.04-8.8064 31.8464 0l50.176 50.176 31.4368-31.4368L859.136 454.0416 460.6976 852.48 431.104 958.6688 546.7136 936.96l231.7312-231.7312c5.0176-5.4272 50.7904-52.6336 107.2128-56.7296 12.3904-0.9216 23.1424 8.3968 24.064 20.7872 0.9216 12.3904-8.3968 23.1424-20.7872 24.064-40.3456 2.9696-77.4144 42.2912-77.824 42.7008-0.2048 0.2048-0.4096 0.512-0.7168 0.7168L573.5424 973.7216c-3.1744 3.1744-7.2704 5.3248-11.776 6.2464l-158.0032 29.5936C402.432 1009.7664 401.1008 1009.8688 399.6672 1009.8688z" fill="#FF9000" p-id="4275"></path></svg>
\ No newline at end of file
<svg viewBox="0 0 1440 3888" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1529_3242)">
<rect x="986.26" y="510.279" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 986.26 510.279)"
stroke="url(#paint0_linear_1529_3242)" stroke-width="0.717048" />
<rect x="923.499" y="886.439" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 923.499 886.439)"
stroke="url(#paint1_linear_1529_3242)" stroke-width="0.717048" />
<rect x="1088.08" y="130.271" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 1088.08 130.271)"
stroke="url(#paint2_linear_1529_3242)" stroke-width="0.717048" />
<rect x="416.019" y="653.422" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 416.019 653.422)"
stroke="url(#paint3_linear_1529_3242)" stroke-width="0.717048" />
<rect x="349.499" y="978.437" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 349.499 978.437)"
stroke="url(#paint4_linear_1529_3242)" stroke-width="0.717048" />
<rect x="517.841" y="273.416" width="483.77" height="363.42" rx="13.9824" transform="rotate(15 517.841 273.416)"
stroke="url(#paint5_linear_1529_3242)" stroke-width="0.717048" />
<rect x="619.664" y="-106.592" width="483.77" height="341.137" rx="13.9824"
transform="rotate(15 619.664 -106.592)" stroke="url(#paint6_linear_1529_3242)" stroke-width="0.717048" />
<rect x="-125.501" y="689.381" width="483.77" height="363.42" rx="13.9824"
transform="rotate(15 -125.501 689.381)" stroke="url(#paint7_linear_1529_3242)" stroke-width="0.717048" />
<rect x="-23.6781" y="309.373" width="483.77" height="363.42" rx="13.9824"
transform="rotate(15 -23.6781 309.373)" stroke="url(#paint8_linear_1529_3242)" stroke-width="0.717048" />
<rect x="78.1443" y="-70.6332" width="483.77" height="363.42" rx="13.9824"
transform="rotate(15 78.1443 -70.6332)" stroke="url(#paint9_linear_1529_3242)" stroke-width="0.717048" />
<g filter="url(#filter0_f_1529_3242)">
<path
d="M1299.4 236.263C1273.92 -58.7703 1292.79 -316.494 1659.87 -519.399L2251.84 551.545L1045.21 1218.52C1022.06 1228.14 991.901 1180.45 1030.53 1003.12C1078.82 781.445 1324.88 531.296 1299.4 236.263Z"
fill="url(#paint10_linear_1529_3242)" fill-opacity="0.35" />
</g>
<g filter="url(#filter1_f_1529_3242)">
<path
d="M1114.05 72.4481C1088.57 -222.585 1393.67 -224.671 1760.75 -427.575L1615.29 697.061C1615.29 697.061 1499.66 1026.83 992.597 1317.14C943.478 1345.26 752.396 1398.55 495.322 1448.95C461.43 1481.9 423.174 1517.54 379.994 1556.11C276.748 1648.32 23.0323 1890.35 0.935006 2092.17C-36.7924 2436.75 -452.753 1780.5 -340.95 2006.57C-170.001 2352.24 -248.22 2754.86 -923.871 1975.75C-1249 1600.83 -1648.1 1384.37 -1817.79 1305.74C-1938.02 1260.94 -1917.51 1259.55 -1817.79 1305.74C-1717.43 1343.14 -1519 1410.79 -1186.7 1506.26C-745.377 1633.05 -1.69338 1546.39 495.322 1448.95C694.196 1255.58 742.848 1154.8 754.831 1099.79C803.117 878.115 1139.53 367.481 1114.05 72.4481Z"
fill="url(#paint11_linear_1529_3242)" fill-opacity="0.4" />
</g>
</g>
<defs>
<filter id="filter0_f_1529_3242" x="829.097" y="-702.298" width="1605.64" height="2104.89"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="91.45" result="effect1_foregroundBlur_1529_3242" />
</filter>
<filter id="filter1_f_1529_3242" x="-2083.35" y="-610.476" width="4026.99" height="3217.24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="91.45" result="effect1_foregroundBlur_1529_3242" />
</filter>
<linearGradient id="paint0_linear_1529_3242" x1="1228.25" y1="509.84" x2="1228.25" y2="873.977"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_1529_3242" x1="1165.49" y1="886" x2="1165.49" y2="1250.14"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint2_linear_1529_3242" x1="1330.07" y1="129.832" x2="1330.07" y2="493.969"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint3_linear_1529_3242" x1="658.009" y1="652.982" x2="658.009" y2="1017.12"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.1" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint4_linear_1529_3242" x1="591.489" y1="977.998" x2="641.285" y2="1265.2"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint5_linear_1529_3242" x1="759.831" y1="272.977" x2="759.831" y2="637.113"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.1" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint6_linear_1529_3242" x1="861.654" y1="-107.031" x2="861.654" y2="234.823"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint7_linear_1529_3242" x1="116.489" y1="688.941" x2="162.837" y2="1231.8"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint8_linear_1529_3242" x1="218.312" y1="308.934" x2="218.312" y2="673.07"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.15" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint9_linear_1529_3242" x1="253.832" y1="-102.612" x2="344.766" y2="364.261"
gradientUnits="userSpaceOnUse">
<stop stop-color="#336FFF" stop-opacity="0.2" />
<stop offset="1" stop-color="#336FFF" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint10_linear_1529_3242" x1="1156.96" y1="-159.622" x2="1812.4" y2="131.08"
gradientUnits="userSpaceOnUse">
<stop offset="0.153575" stop-color="#CAECFF" stop-opacity="0.9" />
<stop offset="0.4375" stop-color="#ACBEFF" />
<stop offset="0.703125" stop-color="#618DFF" />
<stop offset="0.833333" stop-color="#628EFF" />
<stop offset="1" stop-color="#0058FF" />
</linearGradient>
<linearGradient id="paint11_linear_1529_3242" x1="1257.84" y1="-67.7694" x2="1913.28" y2="222.933"
gradientUnits="userSpaceOnUse">
<stop offset="0.153575" stop-color="#CAD9FF" stop-opacity="0.9" />
<stop offset="0.4375" stop-color="#ACC8FF" />
<stop offset="0.703125" stop-color="#61A0FF" />
<stop offset="0.833333" stop-color="#3B7DFF" />
<stop offset="1" stop-color="#0058FF" />
</linearGradient>
<clipPath id="clip0_1529_3242">
<rect width="1440" height="3888" fill="white" />
</clipPath>
</defs>
</svg>
\ No newline at end of file
<svg width="152" height="152" viewBox="0 0 152 152" xmlns="http://www.w3.org/2000/svg">
<circle cx="76" cy="76.0002" r="46.9163" stroke="url(#paint0_linear_1705_318)" stroke-opacity="0.1"/>
<circle cx="76" cy="75.9996" r="62.7749" stroke="url(#paint1_linear_1705_318)" stroke-opacity="0.05" stroke-width="0.955398"/>
<circle cx="76" cy="75.9996" r="74.9694" stroke="url(#paint2_linear_1705_318)" stroke-opacity="0.05"/>
<g filter="url(#filter0_d_1705_318)">
<rect x="48" y="48" width="56" height="56" rx="28" fill="#F0F4FF"/>
<rect x="48.75" y="48.75" width="54.5" height="54.5" rx="27.25" stroke="#3370FF" stroke-width="1.5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.0222 79.9443V82.8729H71.8734L72.3079 83.0995C73.4103 83.6742 74.6641 84 75.9999 84C80.4182 84 83.9999 80.4183 83.9999 76C83.9999 71.5817 80.4182 68 75.9999 68C71.5816 68 67.9999 71.5817 67.9999 76C67.9999 77.2698 68.2943 78.4652 68.8167 79.5267L69.0222 79.9443ZM85.9999 76C85.9999 81.5228 81.5227 86 75.9999 86C74.3346 86 72.7644 85.5929 71.3833 84.8729H68.2222C67.5595 84.8729 67.0222 84.3356 67.0222 83.6729V80.4098C66.3676 79.0796 65.9999 77.5827 65.9999 76C65.9999 70.4772 70.477 66 75.9999 66C81.5227 66 85.9999 70.4772 85.9999 76Z" fill="#3370FF"/>
<path d="M72.5961 76C72.5961 76.7028 72.0264 77.2726 71.3236 77.2726C70.6208 77.2726 70.051 76.7028 70.051 76C70.051 75.2972 70.6208 74.7275 71.3236 74.7275C72.0264 74.7275 72.5961 75.2972 72.5961 76Z" fill="#3370FF"/>
<path d="M77.1723 76C77.1723 76.7028 76.6026 77.2726 75.8997 77.2726C75.1969 77.2726 74.6272 76.7028 74.6272 76C74.6272 75.2972 75.1969 74.7275 75.8997 74.7275C76.6026 74.7275 77.1723 75.2972 77.1723 76Z" fill="#3370FF"/>
<path d="M80.4759 77.2726C81.1787 77.2726 81.7484 76.7028 81.7484 76C81.7484 75.2972 81.1787 74.7275 80.4759 74.7275C79.773 74.7275 79.2033 75.2972 79.2033 76C79.2033 76.7028 79.773 77.2726 80.4759 77.2726Z" fill="#3370FF"/>
</g>
<defs>
<filter id="filter0_d_1705_318" x="44.75" y="44.75" width="62.5" height="62.5" 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"/>
<feMorphology radius="3.25" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_1705_318"/>
<feOffset/>
<feColorMatrix type="matrix" values="0 0 0 0 0.2 0 0 0 0 0.439216 0 0 0 0 1 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1705_318"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1705_318" result="shape"/>
</filter>
<linearGradient id="paint0_linear_1705_318" x1="28.5837" y1="76.0002" x2="123.416" y2="76.0002" gradientUnits="userSpaceOnUse">
<stop stop-color="#3370FF"/>
<stop offset="1" stop-color="#3370FF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_1705_318" x1="131.526" y1="59.1487" x2="27.8803" y2="115.987" gradientUnits="userSpaceOnUse">
<stop stop-color="#3370FF"/>
<stop offset="1" stop-color="#3370FF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_1705_318" x1="40.4844" y1="145.317" x2="134.681" y2="27.5716" gradientUnits="userSpaceOnUse">
<stop stop-color="#3370FF"/>
<stop offset="1" stop-color="#3370FF" stop-opacity="0"/>
</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="1690507072538" class="icon" viewBox="0 0 1194 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2735" xmlns:xlink="http://www.w3.org/1999/xlink" width="74.625" height="64"><path d="M1095.111111 47.388444A66.389333 66.389333 0 0 1 1161.443556 113.777778v796.444444a66.389333 66.389333 0 0 1-66.332445 66.389334H99.555556A66.389333 66.389333 0 0 1 33.166222 910.222222V113.777778A66.389333 66.389333 0 0 1 99.555556 47.388444h995.555555z m-33.223111 199.111112H132.721778a33.166222 33.166222 0 0 0-33.166222 33.223111v597.333333a33.166222 33.166222 0 0 0 33.166222 33.166222h929.166222a33.166222 33.166222 0 0 0 33.223111-33.166222v-597.333333a33.223111 33.223111 0 0 0-33.223111-33.223111zM165.888 113.777778a33.166222 33.166222 0 1 0 0 66.389333 33.166222 33.166222 0 0 0 0-66.389333z m99.555556 0a33.166222 33.166222 0 1 0 0 66.389333 33.166222 33.166222 0 0 0 0-66.389333z m99.555555 0a33.166222 33.166222 0 1 0 0 66.389333 33.166222 33.166222 0 0 0 0-66.389333z" fill="#21D4ED" p-id="2736"></path><path d="M530.944 445.610667H995.555556c22.129778 0 33.166222 11.093333 33.166222 33.223111v331.832889c0 22.129778-11.036444 33.166222-33.166222 33.166222H530.944c-22.129778 0-33.166222-11.036444-33.166222-33.166222V478.833778c0-22.186667 11.036444-33.223111 33.166222-33.223111z" fill="#21D4ED" p-id="2737"></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="1688886474530" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2328" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><path d="M786.03921707 717.99566506c-38.03315307 0-72.4544448 15.70379307-97.23973974 40.86784747L358.93031147 575.64967893c9.66437653-18.7469696 15.67104747-39.6748096 15.67104746-62.1777216 0-13.4214112-2.52579307-26.12241493-6.14202026-38.34533012l325.01296426-201.82545388c24.2122432 21.7835968 55.8981696 35.40693973 90.93180694 35.40693973 75.3197024 0 136.57290133-61.25319893 136.57290133-136.57945066 0-75.3207936-61.25319893-136.57508373-136.57290133-136.57508373-75.32625173 0-136.58054187 61.25429013-136.58054187 136.57508373 0 15.53569813 3.17852587 30.2538432 7.9561376 44.18608853l-322.04401173 199.94802773c-24.691424-24.31375573-58.45779947-39.40301867-95.7465312-39.40301866-75.3197024 0-136.57399253 61.25429013-136.57399254 136.57399253 0 75.32188587 61.25319893 136.58163307 136.57399254 136.58163307 27.38531093 0 52.82552213-8.26285653 74.23363306-22.19510187l342.73935574 190.35241707c-3.24729173 11.67605973-5.53294827 23.69595093-5.53294827 36.36530026 0 75.32188587 61.25210773 136.57508373 136.5783584 136.57508374 75.32188587 0 136.57508373-61.25319893 136.57508373-136.57508374C922.5826464 779.21284266 861.39712213 717.99566506 786.03921707 717.99566506L786.03921707 717.99566506zM784.43467307 103.8427584c37.6642176 0 68.28917973 30.629328 68.28917973 68.28699627 0 37.66312533-30.62496213 68.29136213-68.28917973 68.29136213-37.65766827 0-68.28699627-30.629328-68.28699627-68.29136213C716.1476768 134.4709952 746.7770048 103.8427584 784.43467307 103.8427584L784.43467307 103.8427584zM169.77093227 513.47195733c0-37.6642176 30.63042027-68.28808747 68.2924544-68.28808746 37.65766827 0 68.28699627 30.62387093 68.28699626 68.28808746 0 37.65875947-30.629328 68.28808747-68.28699626 68.28808747C200.40135253 581.7600448 169.77093227 551.1307168 169.77093227 513.47195733L169.77093227 513.47195733zM786.03921707 922.85774506c-37.65766827 0-68.28699627-30.62496213-68.28699627-68.28699626 0-37.65766827 30.629328-68.28699627 68.28699627-68.28699627 37.6642176 0 68.28699627 30.629328 68.28699626 68.28699627C854.32621333 892.23278294 823.70343467 922.85774506 786.03921707 922.85774506L786.03921707 922.85774506zM786.03921707 922.85774506" p-id="2329"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.6522 3.07963C13.8278 3.07963 13.1595 3.74797 13.1595 4.57241C13.1595 4.83082 13.2251 5.0739 13.3407 5.28587C13.3486 5.29804 13.3564 5.31048 13.3638 5.32319C13.3711 5.33582 13.3781 5.34856 13.3848 5.3614C13.6484 5.78399 14.1175 6.06518 14.6522 6.06518C15.4767 6.06518 16.145 5.39685 16.145 4.57241C16.145 3.74797 15.4767 3.07963 14.6522 3.07963ZM12.4394 6.82749C13.0094 7.38687 13.7905 7.73185 14.6522 7.73185C16.3972 7.73185 17.8117 6.31732 17.8117 4.57241C17.8117 2.82749 16.3972 1.41296 14.6522 1.41296C12.9073 1.41296 11.4928 2.82749 11.4928 4.57241C11.4928 4.85448 11.5298 5.12792 11.5991 5.38815L7.56064 7.74491C6.99065 7.18553 6.20951 6.84055 5.3478 6.84055C3.60289 6.84055 2.18835 8.25509 2.18835 10C2.18835 11.7449 3.60289 13.1594 5.3478 13.1594C6.20968 13.1594 6.99096 12.8143 7.56098 12.2547L11.6 14.6084C11.5301 14.8697 11.4928 15.1443 11.4928 15.4276C11.4928 17.1725 12.9073 18.587 14.6522 18.587C16.3972 18.587 17.8117 17.1725 17.8117 15.4276C17.8117 13.6827 16.3972 12.2681 14.6522 12.2681C13.7918 12.2681 13.0117 12.6121 12.4419 13.17L8.40105 10.8153C8.47032 10.5552 8.50724 10.2819 8.50724 10C8.50724 9.71792 8.47028 9.44448 8.40093 9.18425L12.4394 6.82749ZM6.61528 9.21103C6.62191 9.22387 6.6289 9.23659 6.63627 9.24921C6.64368 9.26192 6.65139 9.27436 6.65936 9.28653C6.77491 9.4985 6.84058 9.74158 6.84058 10C6.84058 10.2584 6.77491 10.5015 6.65936 10.7135C6.65129 10.7258 6.6435 10.7384 6.636 10.7512C6.62873 10.7637 6.62182 10.7763 6.61527 10.789C6.35166 11.2116 5.88257 11.4928 5.3478 11.4928C4.52336 11.4928 3.85502 10.8244 3.85502 10C3.85502 9.17556 4.52336 8.50722 5.3478 8.50722C5.88257 8.50722 6.35167 8.78843 6.61528 9.21103ZM13.3178 14.7577C13.3371 14.732 13.3552 14.7048 13.3718 14.6763C13.3877 14.6491 13.4018 14.6213 13.4143 14.5931C13.6826 14.1959 14.1369 13.9348 14.6522 13.9348C15.4767 13.9348 16.145 14.6032 16.145 15.4276C16.145 16.252 15.4767 16.9204 14.6522 16.9204C13.8278 16.9204 13.1595 16.252 13.1595 15.4276C13.1595 15.1867 13.2165 14.9592 13.3178 14.7577Z" />
</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="1698724877512" class="icon" viewBox="0 0 1252 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4699" xmlns:xlink="http://www.w3.org/1999/xlink" width="156.5" height="128"><path d="M1164.136052 546.068492h-143.393656a199.609195 199.609195 0 0 1-70.816241-4.544965 36.927843 36.927843 0 0 1-16.305063-19.884224l-1.619144-8.52181a35.166669 35.166669 0 0 1 29.400245-37.495963c16.049409 0 32.070411 0 48.11982-0.284061h159.698719c41.955711 0 74.395401-5.681207 80.729946 31.246637a31.587509 31.587509 0 0 1-4.033657 20.168283c-13.095181 25.56543-44.767908 19.316103-81.780969 19.316103z m60.135572-199.126293a125.838727 125.838727 0 0 1-29.655899 1.136242H878.71223a100.670982 100.670982 0 0 1-33.405495-2.840604 36.586971 36.586971 0 0 1-18.463921-19.600163c-0.710151-2.556543-1.420302-5.397146-2.130453-8.237749a34.996233 34.996233 0 0 1 28.406033-39.200326 131.179061 131.179061 0 0 1 28.065161-0.568121h337.293238a35.393917 35.393917 0 0 1 5.823237 69.310721z m-618.228906 233.213533A437.736971 437.736971 0 0 1 874.905822 982.669222a41.330778 41.330778 0 0 1-82.633151 0 354.223234 354.223234 0 0 0-344.621994-353.371053h-20.395532A354.223234 354.223234 0 0 0 82.633151 982.669222a41.330778 41.330778 0 0 1-82.633151 0 437.736971 437.736971 0 0 1 267.755269-402.51349 314.710442 314.710442 0 1 1 338.287449 0zM434.015781 83.902332a231.622795 231.622795 0 0 0-6.760636 463.018341h20.395532a231.622795 231.622795 0 0 0-13.634896-463.018341zM1040.797056 682.985572a162.596134 162.596134 0 0 1 66.81099-4.829026h66.697365c40.535409 0 69.594781-3.976845 75.645267 31.246637a32.922592 32.922592 0 0 1-4.033657 20.452343c-12.157782 23.292947-37.80843 19.032042-72.435385 19.032043h-79.224426a158.647695 158.647695 0 0 1-50.534333-3.124664 35.59276 35.59276 0 0 1-18.151455-19.316103l-2.158859-8.521809A35.905226 35.905226 0 0 1 1040.797056 682.985572z" p-id="4700"></path></svg>
<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="M8.0149 3.68687C6.72097 3.68687 5.67204 4.7358 5.67204 6.02973C5.67204 7.32366 6.72097 8.37259 8.0149 8.37259C9.30883 8.37259 10.3578 7.32366 10.3578 6.02973C10.3578 4.7358 9.30883 3.68687 8.0149 3.68687ZM4.00537 6.02973C4.00537 3.81533 5.8005 2.0202 8.0149 2.0202C10.2293 2.0202 12.0244 3.81533 12.0244 6.02973C12.0244 8.24413 10.2293 10.0393 8.0149 10.0393C5.8005 10.0393 4.00537 8.24413 4.00537 6.02973ZM12.0067 2.77173C12.1794 2.34512 12.6653 2.13928 13.0919 2.31196C14.5597 2.90614 15.5976 4.34573 15.5976 6.02973C15.5976 7.71373 14.5597 9.15332 13.0919 9.7475C12.6653 9.92019 12.1794 9.71434 12.0067 9.28773C11.8341 8.86112 12.0399 8.37529 12.4665 8.2026C13.3267 7.85443 13.931 7.01165 13.931 6.02973C13.931 5.04781 13.3267 4.20504 12.4665 3.85686C12.0399 3.68417 11.8341 3.19834 12.0067 2.77173ZM6.79443 11.5488H9.23537C9.95037 11.5488 10.5291 11.5488 11.0006 11.5809C11.4859 11.6141 11.9181 11.684 12.3284 11.854C13.3109 12.2609 14.0914 13.0415 14.4984 14.0239C14.6683 14.4343 14.7383 14.8664 14.7714 15.3518C14.8036 15.8232 14.8036 16.402 14.8036 17.117V17.1464C14.8036 17.6067 14.4305 17.9798 13.9703 17.9798C13.51 17.9798 13.1369 17.6067 13.1369 17.1464C13.1369 16.3951 13.1365 15.8733 13.1086 15.4653C13.0813 15.0648 13.0304 14.8351 12.9586 14.6617C12.7208 14.0877 12.2647 13.6316 11.6906 13.3938C11.5173 13.322 11.2876 13.2711 10.8871 13.2437C10.4791 13.2159 9.95733 13.2155 9.20597 13.2155H6.82382C6.07246 13.2155 5.55067 13.2159 5.14268 13.2437C4.74216 13.2711 4.51253 13.322 4.33915 13.3938C3.76508 13.6316 3.30899 14.0877 3.0712 14.6617C2.99939 14.8351 2.94848 15.0648 2.92115 15.4653C2.89331 15.8733 2.89286 16.3951 2.89286 17.1464C2.89286 17.6067 2.51977 17.9798 2.05953 17.9798C1.59929 17.9798 1.2262 17.6067 1.2262 17.1464L1.2262 17.117C1.22619 16.402 1.22619 15.8233 1.25835 15.3518C1.29147 14.8664 1.36145 14.4343 1.5314 14.0239C1.93835 13.0415 2.7189 12.2609 3.70135 11.854C4.11166 11.684 4.54385 11.6141 5.02922 11.5809C5.50067 11.5488 6.07942 11.5488 6.79443 11.5488ZM14.7513 12.2745C14.8661 11.8288 15.3204 11.5604 15.7661 11.6752C17.4952 12.1202 18.7738 13.6889 18.7738 15.5583V17.1464C18.7738 17.6067 18.4007 17.9798 17.9405 17.9798C17.4803 17.9798 17.1072 17.6067 17.1072 17.1464V15.5583C17.1072 14.4678 16.3613 13.5493 15.3506 13.2892C14.9049 13.1745 14.6366 12.7202 14.7513 12.2745Z" fill="#3370FF"/>
</svg>
\ No newline at end of file
......@@ -79,7 +79,6 @@
"timespan_label": "Time Granularity",
"timespan_minute": "Minute",
"total_call_volume": "Request amount",
"use_in_eval": "Use in eval",
"view_chart": "Chart",
"view_table": "Table",
"vlm_model": "Vlm",
......@@ -103,7 +102,6 @@
"model.censor_tip": "If sensitive verification is required, turn on this switch",
"model.charsPointsPrice": "Chars Price",
"model.charsPointsPrice_tip": "Combine the model input and output for Token billing. If the language model is configured with input and output billing separately, the input and output will be calculated separately.",
"model.dataset_process": "Dataset file parse",
"model.defaultConfig": "Additional Body parameters",
"model.defaultConfig_tip": "Each request will carry this additional Body parameter.",
"model.default_config": "Body extra fields",
......@@ -117,9 +115,6 @@
"model.delete_model_confirm": "Confirm to delete this model?",
"model.edit_model": "Model parameter editing",
"model.feature_config_section": "Feature config",
"model.function_call": "Function Call",
"model.function_call_tip": "If the model supports function calling, turn on this switch. \nTool calls have higher priority.",
"model.input_price_tip": "Language model input price. If this item is configured, the model comprehensive price will be invalid.",
"model.json_config": "File config",
"model.json_config_confirm": "Confirm to use this configuration for override?",
"model.json_config_tip": "Configure the model through the configuration file. After clicking Confirm, the entered configuration will be used for full coverage. Please ensure that the configuration file is entered correctly. \nIt is recommended to copy the current configuration file for backup before operation.",
......@@ -129,18 +124,11 @@
"model.model_id_tip": "The unique identifier of the model, that is, the value of the actual request to the service provider model, needs to correspond to the model in the OneAPI channel.",
"model.normalization": "Normalization processing",
"model.normalization_tip": "If the Embedding API does not normalize vector values, the switch can be enabled and the system will normalize.\n\nUnnormalized APIs, which are represented by the vector search score greater than 1.",
"model.output_price_tip": "The language model output price. If this item is configured, the model comprehensive price will be invalid.",
"model.param_name": "Parameter name",
"model.params_config_section": "Parameter config",
"model.price_config_section": "Price config",
"model.price_tier": "Tier",
"model.price_tier_max_required": "All tiers except the last one need an upper bound",
"model.price_tier_open_ended": "Default is positive infinity",
"model.price_tier_prev_range_required": "Complete the previous tier upper bound first",
"model.price_tier_price_required": "Each price tier needs at least an input or output price",
"model.price_tier_range_invalid": "Invalid price tier range. Please make sure upper bounds keep increasing",
"model.price_tiers": "Price tiers",
"model.price_tiers_tip": "Match a tier by input token range, then bill input and output tokens with that tier's prices. Each next range starts after the previous upper bound. Leave the last upper bound empty to mean and above.",
"model.reasoning": "Model supports thinking",
"model.reasoning_tip": "For example, Deepseek-reasoner can output the thinking process.",
"model.reasoning_effort": "Support thinking config",
......@@ -149,20 +137,14 @@
"model.request_url": "Custom url",
"model.request_url_tip": "If this value is filled in, a request will be made directly to this address without going through the configuration of the model channel.\n\nThe interface needs to follow OpenAI’s API format and fill in the complete request address, for example:\n\nLLM: {{host}}/v1/chat/completions\nEmbedding: {{host}}/v1/embeddings\nSTT: {{host}}/v1/audio/transcriptions\nTTS: {{host}}/v1/audio/speech\nRerank: {{host}}/v1/rerank",
"model.response_format": "Response format",
"model.response_format_placeholder": "Custom parameters",
"model.show_stop_sign": "Display stop sequence parameters",
"model.show_top_p": "Show Top-p parameters",
"model.test_mode": "Mark as test model",
"model.test_mode_tip": "When enabled, the model will have a Beta logo added when selected.",
"model.test_model": "Model testing",
"model.tool_choice": "Tool choice",
"model.tool_choice_tag": "ToolCall",
"model.tool_choice_tip": "If the model supports tool calling, turn on this switch",
"model.used_in_classify": "Used for problem classification",
"model.used_in_extract_fields": "for text extraction",
"model.used_in_tool_call": "Used for tool call nodes",
"model.vision": "Vision model",
"model.vision_tag": "Vision",
"model.vision_tip": "If the model supports image recognition, turn on this switch.",
"model.embedding_vision_tip": "Enable this when the embedding model can accept image input for image vector indexing and image search.",
"model.voices": "voice role",
......
......@@ -65,7 +65,7 @@
"dataset.folder_dataset": "Folder",
"dataset.website_dataset": "Website Sync",
"dataset.yuque_dataset": "Yuque Knowledge Base",
"skill.folder": "Skill Folder",
"skill.folder": "Folder",
"skill.skill": "Skill",
"delete": "delete",
"delete_api_key": "Delete the API key",
......@@ -239,8 +239,6 @@
"search_test": "Search Test",
"set_invoice_header": "Set up invoice header",
"set_name_avatar": "Team avatar",
"skill.folder": "Folder",
"skill.skill": "Skill",
"sync_immediately": "Synchronize now",
"sync_member_failed": "Synchronization of members failed",
"sync_member_success": "Synchronize members successfully",
......@@ -276,7 +274,6 @@
"user_team_invite_member": "Invite members",
"user_team_leave_team": "Leave the team",
"user_team_leave_team_failed": "Failure to leave the team",
"waiting": "To be accepted",
"copy_skill": "Copy skill",
"create_skill": "Create skill",
"create_skill_folder": "Create skill folder",
......
......@@ -10,7 +10,6 @@
"llm_compress_text": "File content compression",
"tool_response_compress": "Tool response compression",
"compress_llm_messages": "AI history compression",
"context_pick": "Context pick",
"count": "Number of runs",
"dashboard": "Dashboard",
"dataset_chunk_selection": "Knowledge base block cutting",
......@@ -20,8 +19,6 @@
"duration_seconds": "Duration (seconds)",
"embedding_index": "Embedding",
"evaluation": "Application Review",
"every_day": "Day",
"every_month": "Moon",
"export_confirm_tip": "There are currently {{total}} usage records in total. Are you sure to export?",
"export_title": "Time,Members,Type,Project name,AI points",
"feishu": "Feishu",
......
......@@ -115,14 +115,12 @@
"custom_plugin_config_success": "Configuration successful",
"custom_plugin_config_title": "{{name}} Configuration",
"custom_plugin_create": "Create Plugin",
"custom_plugin_default_installed_label": "Default Installed",
"custom_plugin_delete_success": "Delete successful",
"custom_plugin_has_token_fee_label": "Charge Token Fee",
"custom_plugin_intro_label": "Introduction",
"custom_plugin_intro_placeholder": "Add an introduction for this application",
"custom_plugin_name_label": "Name",
"custom_plugin_name_required": "Application name cannot be empty",
"custom_plugin_parse_error": "Plugin parsing failed",
"custom_plugin_parsing": "Parsing...",
"custom_plugin_plugin_status_label": "Plugin Status",
"custom_plugin_tags_label": "Tags",
......@@ -139,13 +137,10 @@
"dataset_create_failed": "Knowledge base creation failed",
"dataset_create_success": "The knowledge base was created successfully and files are being indexed in the background.",
"dataset_empty_tips": "You don’t have a knowledge base yet, create one first.",
"dataset_search_tool_description": "Call the \"Semantic Search\" and \"Full-text Search\" capabilities to find reference content that may be related to the problem from the \"Knowledge Base\". \nPrioritize calling this tool to assist in answering user questions.",
"dataset_select": "Optional knowledge base",
"delete_all_input_guide_confirm": "Are you sure you want to clear the input guide lexicon?",
"deleted": "App deleted",
"document_quote": "Document Reference",
"document_quote_tip": "Usually used to accept user-uploaded document content (requires document parsing), and can also be used to reference other string data.",
"edit_app": "Application details",
"edit_info": "Edit",
"edit_param": "Edit parameter",
"empty_folder": "(empty folder)",
......@@ -197,10 +192,7 @@
"llm_multimodal_select_placeholder": "Select multimodal capabilities",
"llm_multimodal_video": "Video",
"llm_not_support_multimodal": "This model does not support multimodal recognition",
"llm_not_support_vision": "This model does not support image recognition",
"llm_use_audio": "Audio recognition",
"llm_use_multimodal": "Multimodal recognition",
"llm_use_video": "Video recognition",
"llm_use_vision": "Image recognition",
"local_upload": "Local upload",
"log_detail": "Log details",
......@@ -285,7 +277,6 @@
"max_histories_number": "Max histories",
"max_histories_number_tip": "The maximum number of rounds of dialogue that the model can carry into memory. If the memory exceeds the model context, the system will force truncation. \nTherefore, even if 30 rounds of dialogue are configured, the actual number may not reach 30 rounds during operation.",
"max_tokens": "Max tokens",
"module.Custom Title Tip": "This title will be displayed during the conversation.",
"module.No Modules": "No Plugins Found",
"modules.Title is required": "Module name cannot be empty",
"month.unit": "Day",
......@@ -294,7 +285,6 @@
"my_agents": "my agents",
"new_input_guide_lexicon": "New Lexicon",
"no_mcp_tools_list": "No data yet, the MCP address needs to be parsed first",
"node_not_intro": "This node is not introduced",
"not_json_file": "Please select a JSON file",
"not_the_newest": "Not the latest",
"open_auto_execute": "Enable automatic execution",
......@@ -315,6 +305,8 @@
"plugin_offline_url": "URL",
"publish.chat_desc": "After logging into the portal, users can talk directly to the application",
"publish.playground_link": "Redirect Link",
"publish.show_whole_response": "Show Full Response",
"publish.show_whole_response_tip": "When enabled, the chat page can show the detailed response flow for each module.",
"publish_channel": "Publish",
"publish_channel.wecom.empty": "Publish to WeCom bot. Please <a>bind a custom domain</a> and complete domain verification first.",
"publish_success": "Publish Successful",
......@@ -348,8 +340,6 @@
"space_to_expand_folder": "Press \"Space\" to expand the folder",
"stop_sign": "Stop",
"stop_sign_placeholder": "Multiple serial numbers are separated by |, for example: aaa|stop",
"stream_response": "Stream",
"stream_response_tip": "Turning this switch off forces the model to use non-streaming mode and will not output content directly. \nIn the output of the AI ​​reply, the content output by this model can be obtained for secondary processing.",
"sync_log_keys_popover_text": "The current field configuration is only valid for individuals. Do you need to save it to the team configuration?",
"sync_team_app_log_keys": "Restore to team configuration",
"system_secret": "System secret",
......@@ -410,7 +400,6 @@
"toolkit_call_points_label": "Call Points",
"toolkit_config_system_key": "Configure System Key",
"toolkit_contribute_resource": "Contribute Resource",
"toolkit_default_install": "Default Install",
"toolkit_hide_tags": "Hide Tags",
"toolkit_hide_tags_tip": "Users with the following tags will not see this tool at all",
"toolkit_id": "ID",
......@@ -426,7 +415,6 @@
"toolkit_no_call_points": "This tool does not require call points",
"toolkit_no_plugins": "No plugins",
"toolkit_no_runtime_config": "No runtime configuration",
"toolkit_official": "Official",
"toolkit_open_marketplace": "Open Marketplace",
"toolkit_outputs": "Output Parameters",
"toolkit_params_description": "Parameters",
......@@ -439,26 +427,10 @@
"toolkit_promote_tags_tip": "Users with the following tags will see the \"Promoted\" badge",
"toolkit_reset_runtime_config_confirm": "Confirm reset runtime configuration to defaults?",
"toolkit_runtime_config": "Runtime Configuration",
"toolkit_runtime_config_idle_timeout": "Node idle timeout (ms)",
"toolkit_runtime_config_idle_timeout_tip": "Worker nodes can be recycled after being idle for this duration",
"toolkit_runtime_config_invalid_integer": "{{label}} must be an integer",
"toolkit_runtime_config_invalid_number": "{{label}} must be a valid number",
"toolkit_runtime_config_max_concurrent_requests_per_pod": "Max concurrent requests per node",
"toolkit_runtime_config_max_concurrent_requests_per_pod_tip": "Maximum number of requests a single worker node can process at the same time",
"toolkit_runtime_config_max_pods": "Max worker nodes",
"toolkit_runtime_config_max_pods_tip": "Maximum number of worker nodes allowed for the plugin runtime",
"toolkit_runtime_config_max_queue_size": "Max queue size",
"toolkit_runtime_config_max_queue_size_tip": "Maximum number of requests waiting for an available worker node",
"toolkit_runtime_config_max_requests_per_pod": "Max requests per node",
"toolkit_runtime_config_max_requests_per_pod_tip": "A worker node will be replaced after processing this many requests",
"toolkit_runtime_config_min_pods": "Min worker nodes",
"toolkit_runtime_config_min_pods_over_max_pods": "Min worker nodes cannot exceed max worker nodes",
"toolkit_runtime_config_min_pods_tip": "Minimum number of worker nodes retained by the plugin runtime",
"toolkit_runtime_config_min_value": "{{label}} cannot be less than {{min}}",
"toolkit_runtime_config_pod_timeout": "Node timeout (ms)",
"toolkit_runtime_config_pod_timeout_tip": "Maximum wait time for a single node call",
"toolkit_runtime_config_queue_timeout": "Queue timeout",
"toolkit_runtime_config_queue_timeout_tip": "Maximum time a request can wait in the queue",
"toolkit_search_placeholder": "Search tool names",
"toolkit_select_app": "Select an existing app",
"toolkit_select_user_tags": "Select user tags",
......@@ -480,7 +452,6 @@
"toolkit_tags_manage_title": "Plugin Tag Management",
"toolkit_tags_name": "Tag name",
"toolkit_tags_total": "Total {{count}} tags",
"toolkit_token_fee": "Token Points",
"toolkit_token_fee_tip": "After enabling this switch, users need to pay the Token points in the plugin when using it, and call points will also be charged at the same time",
"toolkit_tool_config": "{{name}} Configuration",
"toolkit_tool_list": "Tool List",
......@@ -490,9 +461,7 @@
"toolkit_uninstalled": "Uninstalled",
"toolkit_updatable": "Updates Available",
"toolkit_updatable_plugins": "Updatable Plugins",
"toolkit_update_failed": "Update failed",
"toolkit_user_guide": "User Guide",
"toolkit_version_description": "Version Description",
"toolkit_version_info": "Version Information",
"tools": "tool",
"tools_no_description": "This tool has not been introduced ~",
......@@ -519,7 +488,6 @@
"type.hidden": "Hide app",
"type_http_tool_set_intro": "Batch import API tool",
"type_mcp_intro": "Connect to MCP service",
"type_not_recognized": "Wrong template application type",
"type_plugin_description": "Output the specified results with one click.",
"type_plugin_intro": "Commonly used to encapsulate workflow",
"type_simple_description": "The most basic conversation application, no complicated configuration is required, and it can be created and used quickly.",
......@@ -529,12 +497,8 @@
"unnamed_app": "Unnamed",
"upgrade": "Upgrade",
"upload_file_exists_filtered": "Duplicate files have been automatically filtered.",
"upload_file_extension_type_canSelectAudio": "Audio",
"upload_file_extension_type_canSelectCustomFileExtension": "Custom file extension type",
"upload_file_extension_type_canSelectCustomFileExtension_placeholder": "file extension name",
"upload_file_extension_type_canSelectFile": "Document",
"upload_file_extension_type_canSelectImg": "Image",
"upload_file_extension_type_canSelectVideo": "Video",
"upload_file_extension_types": "Supported file types",
"upload_file_max_amount": "Maximum File Quantity",
"upload_file_max_amount_tip": "Maximum number of files uploaded in a single round of conversation",
......
{
"AI_input_is_empty": "The content passed to the AI ​​node is empty",
"Delete_all": "Clear All Lexicon",
"LLM_model_response_empty": "The model response is empty, please check the model details request",
"no_output_content": "The app returned no output",
"Next": "Next",
......@@ -18,12 +17,10 @@
"chat.quote.deleted": "This data has been deleted ~",
"chat.waiting_for_response": "Thinking hard",
"chat_history": "Chat history",
"chat_input_guide_lexicon_is_empty": "Lexicon not configured yet",
"chat_test_app": "Debug-{{name}}",
"citation_card_prefix": "",
"citation_card_suffix": " References",
"citation_card_title": "{{num}} References",
"citations": "{{num}} References",
"clear_input_value": "Clear input",
"click_to_add_url": "Enter file link",
"completion_finish_abnormal_close": "Abnormal disconnection",
......@@ -33,40 +30,23 @@
"completion_finish_function_call": "Function Calls",
"completion_finish_length": "Reply limit exceeded",
"completion_finish_null": "unknown",
"completion_finish_reason": "Reason for completion",
"completion_finish_stop": "Completed normally",
"completion_finish_tool_calls": "Tool calls",
"feedback_helpful": "Helpful",
"feedback_unhelpful": "Not helpful",
"compress_llm_messages": "Context compression",
"compress_llm_usage": "Text compression input and output tokens",
"compress_llm_usage_point": "Text compression points consumption",
"config_input_guide": "Set Up Input Guide",
"config_input_guide_lexicon": "Set Up Lexicon",
"config_input_guide_lexicon_title": "Set Up Lexicon",
"confirm_clear_input_value": "Are you sure to clear the form content? \nDefault values ​​will be restored!",
"mobile_clear_history_confirm_title": "Clear history?",
"mobile_clear_history_confirm_tip": "This action cannot be undone",
"confirm_plan": "Confirm plan",
"confirm_to_clear_share_chat_history": "Are you sure you want to clear all chat history?",
"content_empty": "No Content",
"context_pick": "Context pick",
"continue_run": "continue running",
"csv_input_lexicon_tip": "Only CSV batch import is supported, click to download the template",
"custom_input_guide_url": "Custom Lexicon URL",
"data_source": "Source Dataset: {{name}}",
"dataset_quote_type error": "Knowledge base reference type is wrong, correct type: { datasetId: string }[]",
"dataset_search": "Dataset Search",
"delete_all_input_guide_confirm": "Are you sure you want to clear the input guide lexicon?",
"download_all_files": "Download all",
"download_chunks": "Download data",
"empty_directory": "This directory is empty~",
"edit_message": "Edit message",
"error_message": "error message",
"file_amount_over": "Exceeded maximum file quantity {{max}}",
"file_compress_text": "File content compression",
"file_input": "File input",
"file_input_tip": "You can obtain the link to the corresponding file through the \"File Link\" of the [Plug-in Start] node",
"history_generating": "Thinking",
"go_to_dataset": "Go to knowledge base",
"history_slider.home.title": "chat",
......@@ -75,68 +55,109 @@
"home.tools": "Tool: {{num}}",
"in_progress": "In Progress",
"input_guide": "Input Guide",
"input_guide_lexicon": "Lexicon",
"input_guide_tip": "You can set up some preset questions. When the user inputs a question, related questions from these presets will be suggested.",
"input_placeholder_phone": "Please enter your question",
"insert_input_guide,_some_data_already_exists": "Duplicate data detected, automatically filtered, {{len}} items inserted",
"internal_variables_tip": "Internal variables are visible only when debugging",
"invalid_share_url": "Invalid sharing link",
"is_chatting": "Chatting in progress... please wait until it finishes",
"llm_request_detail": "LLM Request Detail",
"llm_request_ids": "LLM request details",
"llm_tokens": "LLM tokens",
"log.error.collapse": "Collapse",
"log.error.error_prefix": "Error",
"log.error.expand": "Expand",
"log.feedback.hide_feedback": "hide feedback",
"log.feedback.mark_as_read": "Mark as Read",
"log.feedback.read": "Read",
"log.feedback.show_feedback": "Show Feedback",
"master_agent_call": "Master agent",
"module_runtime_and": "Total Module Runtime",
"new_input_guide_lexicon": "New Lexicon",
"no_workflow_response": "No workflow data",
"plan_agent": "Plan agent",
"plan_check_tip": "Plan generated. Continue the chat to refine the plan",
"plugins_output": "Plugin Output",
"press_to_speak": "Hold down to speak",
"processed": "Processed",
"processing": "Processing",
"query_extension_IO_tokens": "Problem Optimization Input/Output Tokens",
"query_extension_result": "Problem optimization results",
"question_tip": "From top to bottom, the response order of each module",
"quote_result_notice": "Results only reflect this search. Please note that information may become outdated.",
"quote_source_title": "Citation sources",
"read_file": "File parsing",
"read_raw_source": "Open the original text",
"reasoning_content": "Thinking process",
"reflection_agent": "Reflection Agent",
"release_cancel": "Release Cancel",
"release_send": "Release send, slide up to cancel",
"request_body": "Request Body",
"response.child total points": "Children usage",
"response.body": "Request Body",
"response.child_total_points": "Children Usage",
"response.click_to_expand": "Click to Expand",
"response.code_log": "Code Log",
"response.complete_response": "Complete Response",
"response.completion_finish_reason": "Finish Reason",
"response.compress_llm_usage": "Question Optimization Input/Output Tokens",
"response.compress_llm_usage_point": "Question Optimization Usage",
"response.context_total_length": "Total Context Length",
"response.cq": "Question Classification List",
"response.cq_result": "Classification Result",
"response.custom_inputs": "Custom Inputs",
"response.custom_outputs": "Custom Outputs",
"response.dataset_concat_length": "Combined total",
"response.embedding_model": "Vector Model",
"response.embedding_model_tokens": "Vector Model Tokens",
"response.error": "Error",
"response.extension_model": "Question Optimization Model",
"response.extract_description": "Extract Background Description",
"response.extract_result": "Extraction Result",
"response.form_input_result": "Form Input Result",
"response.headers": "Headers",
"response.history_preview": "History Preview (Only Partial Content Displayed)",
"response.http_error_result": "Error Response Body",
"response.http_result": "Response Body",
"response.hybrid_weight": "Embedding : Full Text = {{emb}} : {{text}}",
"response.if_else_result": "Condition Result",
"response.limit": "Single Search Limit",
"response.llm_request_ids": "LLM Request IDs",
"response.llm_tokens": "LLM Tokens",
"response.loop_input": "Loop Input Array",
"response.loop_input_element": "Loop Input Element",
"response.loop_output": "Loop Output Array",
"response.loop_output_element": "Loop Output Element",
"response.loop_run_history": "Loop History",
"response.loop_run_input": "Loop Input",
"response.loop_run_iterations": "Iterations",
"response.max_tokens": "Max Response Tokens",
"response.model": "Model",
"response.no_workflow_response": "No workflow response",
"response.node_inputs": "Node Inputs",
"response.node_name": "Name",
"response.parallel_input": "Parallel Input Array",
"response.parallel_output": "Parallel Success Results",
"response.parallel_run_detail": "Parallel Run Details",
"response.params": "Params",
"response.query": "Question/Search Term",
"response.query_extension_result": "Question Optimization Result",
"response.question_tip": "From top to bottom, the response order of each module",
"response.read_complete_response": "View Details",
"response.read_complete_response_tips": "Click to View Detailed Process",
"response.read_file_result": "Read File Result",
"response.read_files": "Read Files",
"response.reasoning_content": "Thinking Process",
"response.rerank_tokens": "Re-rank Model Tokens",
"response.search_mode": "Search Mode",
"response.search_results": "Search Results({{len}})",
"response.search_using_rerank": "Result Re-rank",
"response.similarity": "Similarity",
"response.status": "Status",
"response.step_query": "Step Query",
"response.temperature": "Temperature",
"response.text_output": "Text Output",
"response.tool_call_tokens": "Tool Call Tokens Consumption",
"response.tool_input": "Tool Input",
"response.tool_output": "Tool Output",
"response.tool_params_result": "Tool Params Result",
"response.tool_result": "Tool Result",
"response.total_points": "Total Points",
"response.update_var_result": "Variable Update Result (Displays Multiple Variable Update Results in Order)",
"response.user_select_result": "User Selection Result",
"response_content": "Response Content",
"response_embedding_model": "Vector model",
"response_embedding_model_tokens": "Vector Model Tokens",
"response_hybrid_weight": "Embedding : Full text = {{emb}} : {{text}}",
"response_rerank_tokens": "Rearrange Model Tokens",
"response_search_results": "Search results({{len}})",
"resume_placeholder_generating": "Generating",
"resume_unavailable": "The current streaming response cannot be restored right now. Please check back later for the final answer.",
"resume_unavailable_memory_pressure": "The service is currently under resource pressure, so stream resume is temporarily unavailable. Please check back later for the final answer.",
"sandbox_audio_not_supported": "Your browser does not support audio playback.",
"sandbox_binary_file_no_preview": "The file cannot be previewed, please download and view it directly",
"sandbox_collapse_all": "Collapse all",
"sandbox_confirm_delete_action": "Delete",
"sandbox_confirm_delete_content": "Delete <name>{{name}}</name>? This action cannot be undone and will permanently delete all included files.",
"sandbox_confirm_delete_title": "Confirm delete",
"sandbox_connect_failed_max_attempts": "Too many failed attempts to connect to the sandbox. Connection stopped.",
"sandbox_refresh_page_to_retry": "Please refresh the page to try again.",
"sandbox_copy": "Copy",
"sandbox_copy_failed": "Copy failed",
"sandbox_create_failed": "Create failed",
"sandbox_delete": "Delete",
"sandbox_delete_failed": "Delete failed",
......@@ -148,7 +169,6 @@
"sandbox_html_preview": "Preview",
"sandbox_html_preview_failed": "Failed to generate preview link",
"sandbox_load_failed": "Failed to load directory",
"sandbox_loading_files": "Loading files...",
"sandbox_starting": "Starting sandbox (1/2)",
"sandbox_file_loading": "Loading files (2/2)",
"sandbox_move_failed": "Move failed",
......@@ -159,30 +179,14 @@
"sandbox_new_folder": "New folder",
"sandbox_new_folder_placeholder": "New folder...",
"sandbox_no_file": "There are no files in the sandbox yet",
"sandbox_open_terminal": "Open terminal",
"sandbox_preview": "Preview",
"sandbox_rename": "Rename",
"sandbox_rename_failed": "Rename failed",
"sandbox_root_directory": "Root directory",
"sandbox_search_files": "Search files",
"sandbox_search_workspace_files": "Type to search workspace files...",
"sandbox_select_file_edit": "Select a file to edit",
"sandbox_source": "Source",
"sandbox_save_failed": "Save failed",
"sandbox_status_checkExisting": "Checking sandbox...",
"sandbox_status_connecting": "Connecting to existing sandbox...",
"sandbox_status_creatingContainer": "Starting sandbox (up to 60s)...",
"sandbox_status_deployingSkills": "Deploying skill {{skillName}}...",
"sandbox_status_downloadingPackage": "Downloading {{skillName}} package...",
"sandbox_status_extractingPackage": "Extracting {{skillName}} package...",
"sandbox_status_failed": "Sandbox failed to start",
"sandbox_status_fetchSkills": "Loading skill metadata...",
"sandbox_status_lazyInit": "Initializing sandbox...",
"sandbox_status_ready_cold": "Sandbox ready",
"sandbox_status_ready_warm": "Sandbox connected",
"sandbox_status_uploadingPackage": "Uploading {{skillName}} package...",
"sandbox_terminal": "Terminal",
"sandbox_toggle_terminal": "Toggle terminal panel",
"sandbox_upload_failed": "Upload failed",
"sandbox_upload_file": "Upload file",
"sandbox_upload_too_large": "File too large",
......@@ -248,19 +252,13 @@
"sidebar.favourite_apps": "Favourite Apps",
"sidebar.home": "Home",
"sidebar.team_apps": "Team Apps",
"skill_calling": "Calling skill: {{name}}",
"source_cronJob": "Scheduled execution",
"start_chat": "Start",
"step_query": "Task title",
"stream_output": "Stream Output",
"task_has_continued": "Task has continued running",
"tool_input": "tool input",
"tool_output": "Tool output",
"tool_response_compress": "Tool response compression",
"unsupported_file_type": "Unsupported file types",
"variable_invisable_in_share": "External variables are not visible in login-free links",
"view_all_citations": "View all",
"view_citations": "View References",
"run_detail": "Run Details",
"web_site_sync": "Web Site Sync"
"run_detail": "Run Details"
}
......@@ -102,7 +102,6 @@
"add_new_param": "Add new param",
"add_success": "Added Successfully",
"aipoint_desc": "Each time the AI model is called, a certain amount of AI points (similar to tokens) will be consumed. Click to view detailed calculation rules.",
"all_quotes": "All quotes",
"all_result": "Full Results",
"app_evaluation": "App Evaluation(Beta)",
"app_icon_and_name": "icon",
......@@ -127,7 +126,6 @@
"chose_condition": "Choose Condition",
"chosen": "Chosen",
"classification": "Classification",
"click_drag_tip": "Click to Drag",
"click_select_avatar": "Click to Select Avatar",
"click_to_copy": "Click to copy",
"click_to_resume": "Click to Resume",
......@@ -180,7 +178,6 @@
"code_error.skill_error.invalid_skill_id": "Invalid skill ID",
"code_error.skill_error.missing_image_repository": "image.repository is required when image is provided",
"code_error.skill_error.missing_model": "Model is required when requirements is provided",
"code_error.skill_error.name_exists": "Skill name already exists in this directory",
"code_error.skill_error.no_fields_to_update": "No fields to update",
"code_error.skill_error.no_storage": "Skill has no storage, cannot copy",
"code_error.skill_error.not_exist": "Skill Does Not Exist",
......@@ -299,7 +296,6 @@
"core.app.edit.Query extension background prompt": "Conversation Background Description",
"core.app.edit.Query extension background tip": "Describe the scope of the current conversation to help the AI complete and extend the current question. The content you fill in is usually for this assistant.",
"core.app.edit_content": "Edit App Information",
"core.app.error.App name can not be empty": "App Name Cannot Be Empty",
"core.app.error.Get app failed": "Failed to Retrieve App",
"core.app.feedback.Custom feedback": "Custom Feedback",
"core.app.feedback.close custom feedback": "Close Feedback",
......@@ -374,7 +370,6 @@
"core.chat.Pin": "Pin",
"core.chat.Question Guide": "Guess What You Want to Ask",
"core.chat.Quote": "Quote",
"core.chat.Quote Amount": "Dataset Quotes ({{amount}} Records)",
"core.chat.Recent use": "Recently Used",
"core.chat.Record": "Voice Input",
"core.chat.Restart": "Restart",
......@@ -406,45 +401,11 @@
"core.chat.markdown.Edit Question": "Edit Question",
"core.chat.markdown.Quick Question": "Click to Ask Immediately",
"core.chat.markdown.Send Question": "Send Question",
"core.chat.quote.Quote Tip": "Only the actual quoted content is displayed here. If the data is updated, it will not be updated in real-time here.",
"core.chat.quote.Read Quote": "View Quote",
"core.chat.response.Complete Response": "Complete Response",
"core.chat.response.Extension model": "Question Optimization Model",
"core.chat.response.Read complete response": "View Details",
"core.chat.response.Read complete response tips": "Click to View Detailed Process",
"core.chat.response.Tool call tokens": "Tool Call Tokens Consumption",
"core.chat.response.context total length": "Total Context Length",
"core.chat.response.loop_input": "Loop Input Array",
"core.chat.response.loop_input_element": "Loop Input Element",
"core.chat.response.loop_output": "Loop Output Array",
"core.chat.response.loop_output_element": "Loop Output Element",
"core.chat.response.loop_run_history": "Loop History",
"core.chat.response.loop_run_input": "Loop Input",
"core.chat.response.loop_run_iterations": "Iterations",
"core.chat.response.module cq": "Question Classification List",
"core.chat.response.module cq result": "Classification Result",
"core.chat.response.module extract description": "Extract Background Description",
"core.chat.response.module extract result": "Extraction Result",
"core.chat.response.module historyPreview": "History Preview (Only Partial Content Displayed)",
"core.chat.response.module http result": "Response Body",
"core.chat.response.module if else Result": "Condition Result",
"core.chat.response.module limit": "Single Search Limit",
"core.chat.response.module maxToken": "Max Response Tokens",
"core.chat.response.module model": "Model",
"core.chat.response.module query": "Question/Search Term",
"core.chat.response.module similarity": "Similarity",
"core.chat.response.module temperature": "Temperature",
"core.chat.response.parallel_input": "Parallel Input Array",
"core.chat.response.parallel_output": "Parallel Success Results",
"core.chat.response.parallel_run_detail": "Parallel Run Details",
"core.chat.response.search using reRank": "Result Re-Rank",
"core.chat.response.text output": "Text Output",
"core.chat.response.update_var_result": "Variable Update Result (Displays Multiple Variable Update Results in Order)",
"core.chat.response.user_select_result": "User Selection Result",
"core.chat.retry": "Regenerate",
"core.chat.tts.Stop Speech": "Stop",
"core.dataset.Collection": "Dataset",
"core.dataset.Create dataset": "Create a {{name}}",
"core.dataset.Dataset": "Dataset",
"core.dataset.Dataset ID": "Dataset ID",
"core.dataset.Delete Confirm": "Confirm to Delete This Dataset? Data Cannot Be Recovered After Deletion, Please Confirm!",
......@@ -473,8 +434,6 @@
"core.dataset.collection.metadata.read source": "View Original Content",
"core.dataset.collection.metadata.source": "Data Source",
"core.dataset.collection.metadata.source size": "Source Size",
"core.dataset.collection.status.active": "Ready",
"core.dataset.collection.status.error": "Error",
"core.dataset.collection.sync.result.sameRaw": "Content Unchanged, No Update Needed",
"core.dataset.collection.sync.result.success": "Sync Started",
"core.dataset.data.Edit": "Edit Data",
......@@ -550,12 +509,9 @@
"core.dataset.status.active": "Ready",
"core.dataset.status.syncing": "Syncing",
"core.dataset.status.waiting": "Waiting",
"core.dataset.test.Batch test": "Batch Test",
"core.dataset.test.Batch test Placeholder": "Select a CSV File",
"core.dataset.test.Search Test": "Search Test",
"core.dataset.test.Test": "Test",
"core.dataset.test.Test Result": "Test Result",
"core.dataset.test.Test Text": "Single Text Test",
"core.dataset.test.Test Text Placeholder": "Enter the text to be tested",
"core.dataset.test.Test params": "Test Parameters",
"core.dataset.test.delete test history": "Delete This Test Result",
......@@ -592,7 +548,6 @@
"core.module.Default value": "Default Value",
"core.module.Default value placeholder": "Leave blank to return an empty string by default",
"core.module.Diagram": "Diagram",
"core.module.Edit intro": "Edit Description",
"core.module.Field Description": "Field Description",
"core.module.Field Name": "Field Name",
"core.module.Http request props": "Request Parameters",
......@@ -626,7 +581,6 @@
"core.module.http.Current time": "Current Time",
"core.module.http.Histories": "History Records",
"core.module.http.Key already exists": "Key Already Exists",
"core.module.http.Key cannot be empty": "Parameter Name Cannot Be Empty",
"core.module.http.Props name": "Parameter Name",
"core.module.http.Props tip": "You can set related parameters for the HTTP request\nYou can call global variables or external parameter inputs through {{key}}, currently available variables:\n{{variable}}",
"core.module.http.Props value": "Parameter Value",
......@@ -760,15 +714,12 @@
"dataset.Insert Data": "Insert",
"dataset.Manual collection Tip": "Manual datasets allow you to create an empty container to hold data",
"dataset.Training Name": "Data Training",
"dataset.collections.Collection Embedding": "{{total}} Indexes",
"dataset.collections.Confirm to delete the folder": "Confirm to Delete This Folder and All Its Contents?",
"dataset.collections.Create And Import": "Create/Import",
"dataset.collections.Select Collection": "Select File",
"dataset.collections.Select One Collection To Store": "Select a File to Store",
"dataset.data.Can not edit": "No Edit Permission",
"dataset.data.Index Placeholder": "Enter Index Text Content",
"dataset.data.Input Success Tip": "Data Imported Successfully",
"dataset.data.Update Index Timeout Tip": "Updating indexes timed out. Please refresh the data later to check the result.",
"dataset.data.Update Success Tip": "Data Updated Successfully",
"dataset.data.edit.Index": "Data Index ({{amount}})",
"dataset.dataset_name": "Dataset Name",
......@@ -804,12 +755,7 @@
"error.invalid_params": "Invalid parameter",
"error.llm_track_expired": "Request details expired",
"error.missingParams": "Insufficient parameters",
"error.s3_upload_auth_failed": "No permission to upload file",
"error.s3_upload_bucket_not_found": "bucket not found",
"error.s3_upload_file_too_large": "File must be smaller than {{max}}",
"error.s3_upload_invalid_file_type": "Unsupported file content or file extension does not match",
"error.s3_upload_network_error": "Network abnormality",
"error.s3_upload_timeout": "Upload timed out",
"error.send_auth_code_too_frequently": "Please do not obtain verification code frequently",
"error.too_many_request": "Too many request",
"error.tool_not_exist": "Tool deleted",
......@@ -834,7 +780,6 @@
"filter_sensitive_info": "Filter sensitive information",
"filter_sensitive_info_tip": "Sensitive information includes temporary keys used by system tools (leaks may cause unexpected charges, so export carefully) and dataset information configured in dataset search nodes.",
"folder.empty": "No More Items in This Directory",
"folder.open_dataset": "Open Dataset",
"folder_description": "Folder Description",
"free": "Free",
"get_QR_failed": "Failed to Get QR Code",
......@@ -846,10 +791,7 @@
"hour_unit": "h",
"import_failed": "Import Failed",
"import_success": "Imported Successfully",
"info.csv_download": "Click to Download Batch Test Template",
"info.csv_message": "Read the first column of the CSV file for batch testing, supporting up to 100 groups of data at a time.",
"info.felid_message": "Field key must be pure English letters or numbers and cannot start with a number.",
"info.node_info": "Adjusting this module will affect the timing of tool calls.\nYou can guide the model to call tools by accurately describing the function of this module.",
"info.old_version_attention": "Detected that your advanced orchestration is an old version. The system will automatically format it into the new workflow version.\n\nDue to significant version differences, some workflows may not be arranged correctly. Please manually reconnect the workflow. If it is still abnormal, try deleting the corresponding node and re-adding it.\n\nYou can directly click debug to test the workflow. After debugging, click publish. The new workflow will only be saved and take effect after you click publish.\n\nBefore you publish the new workflow, auto-save will not take effect.",
"input.Repeat Value": "Duplicate Value",
"input_name": "Enter a Name",
......@@ -1083,9 +1025,6 @@
"support.user.login.wx_qr_login": "WeChat QR Code Login",
"support.user.team.Dataset usage": "Dataset Capacity",
"support.user.team.Team Tags Async Success": "Sync Completed",
"support.wallet.Ai point every thousand tokens": "{{points}} Points/1K Tokens",
"support.wallet.Ai point every thousand tokens_input": "Input:{{points}} points/1K tokens",
"support.wallet.Ai point every thousand tokens_output": "Output:{{points}} points/1K tokens",
"support.wallet.App_amount_not_sufficient": "The number of your applications has reached the limit. Please upgrade your plan to continue using.",
"support.wallet.Buy": "Buy",
"support.wallet.Dataset_amount_not_sufficient": "The number of your datasets has reached the limit. Please upgrade your plan to continue using.",
......@@ -1156,12 +1095,6 @@
"support.wallet.usage.Audio Speech": "Voice Playback",
"support.wallet.usage.Code Copilot": "Code Copilot",
"support.wallet.usage.Optimize Prompt": "Prompt word optimization",
"support.wallet.usage.Source": "Source",
"support.wallet.usage.Text Length": "Text Length",
"support.wallet.usage.Time": "Generation Time",
"support.wallet.usage.Token Length": "Token Length",
"support.wallet.usage.Total": "Total Amount",
"support.wallet.usage.Total points": "Total credit",
"support.wallet.usage.Whisper": "Voice Input",
"sync_link": "Sync Link",
"sync_success": "Synced Successfully",
......@@ -1199,7 +1132,6 @@
"upload_file_error": "File Upload Failed",
"usage_records": "Usage records",
"user.Account": "Account",
"user.Application Name": "Project Name",
"user.Laf Account Setting": "Laf Account Configuration",
"user.No_right_to_reset_password": "You do not have the right to reset the password",
"user.Old password is error": "Old Password is Incorrect",
......
......@@ -29,7 +29,6 @@
"collection_data_count": "Data amount",
"collection_metadata_custom_pdf_parse": "PDF enhancement analysis",
"collection_name": "Collection name",
"collection_not_support_sync": "This collection does not support synchronization",
"collection_sync": "Sync data",
"collection_sync_confirm_tip": "Confirm to start synchronizing data? \nThe system will pull the latest data for comparison. If the contents are different, a new collection will be created and the old collection will be deleted. Please confirm!",
"collection_tags": "Collection Tags",
......@@ -48,7 +47,6 @@
"custom_split_char": "Char",
"custom_split_sign_tip": "Allows you to chunk according to custom delimiters. \nUsually used for processed data, using specific separators for precise chunking. \nYou can use the | symbol to represent multiple splitters, such as: \".|.\" to represent a period in Chinese and English.\n\nTry to avoid using special symbols related to regular, such as: * () [] {}, etc.",
"data_amount": "{{dataAmount}} chunks, {{indexAmount}} indexes",
"data_error_amount": "{{errorAmount}} Group training exception",
"data_index_image": "Image index",
"data_index_image_embedding": "Multimodal image index",
"image_embedding_index_default_desc": "An image vector has been generated by the multimodal model and can be used for image search",
......@@ -91,7 +89,6 @@
"filename": "Filename",
"folder_dataset": "Folder",
"image_auto_parse": "Automatic image indexing",
"image_auto_parse_tips": "Call VLM to automatically label the pictures in the document and generate additional search indexes",
"image_auto_parse_tip_commercial": "Upgrade to the commercial edition to use this feature",
"image_auto_parse_tip_multimodal_with_vlm": "Generate image vector indexes and text description indexes for document images to support image search",
"image_auto_parse_tip_multimodal_without_vlm": "Use a multimodal model to generate image vector indexes and support image search",
......@@ -152,9 +149,7 @@
"retain_collection": "Adjust Training Parameters",
"retrain_task_submitted": "The retraining task has been submitted",
"retry_all": "Retry all",
"retry_failed": "Retry Failed",
"rootdirectory": "/rootdirectory",
"same_api_collection": "The same API set exists",
"selectDirectory": "Choose",
"selectRootFolder": "Select Root Folder",
"split_chunk_char": "Block by specified splitter",
......@@ -202,7 +197,6 @@
"yuque_dataset": "Yuque Knowledge Base",
"yuque_dataset_config": "Configure Yuque Knowledge Base",
"yuque_dataset_desc": "Build knowledge base using Yuque documents by configuring document permissions, documents will not be stored twice",
"training.stage_error": "{{stage}} error",
"training.status_error": "Training error",
"training_error_list": "Error list",
"training_error_empty": "No training errors"
......
{
"Image_Preview": "Picture preview",
"Image_dataset_requires_VLM_model_to_be_configured": "Image datasets require an image understanding model or a multimodal index model. Please configure a matching model first.",
"click_to_view_raw_source": "Click to View Original Source",
"file_name": "Filename",
"file_size": "Filesize",
"image": "picture",
......
......@@ -17,7 +17,6 @@
"feishu_api": "Feishu API",
"feishu_bot": "Feishu Bot",
"feishu_bot_desc": "Connect to Feishu Bot directly via API",
"ip_whitelist": "IP Whitelist",
"key_alias": "Key alias, for display only",
"link_name": "Share Link Name",
"new_feishu_bot": "add_new Feishu Bot",
......
......@@ -4,32 +4,22 @@
"create_your_first_skill": "Create your first Skill",
"no_skills": "No skills yet",
"copy_skill": "Create a copy",
"related_apps_count": "{{count}} linked apps",
"confirm_delete_title": "Delete this skill?",
"confirm_delete_with_refs": "This skill is currently used by <bold>{{count}} app(s)</bold>. After deletion, those apps <bold>will no longer be able to call it</bold>. Consider unlinking or backing up the configuration first.",
"confirm_delete_action": "Delete anyway",
"confirm_delete_cancel": "Keep it",
"custom_skill": "Custom Skill",
"custom_skill_desc": "Intelligently generate skill outlines and frameworks by describing skill requirements",
"import_skill_zip": "Import zip",
"related_count": "Related Apps",
"related_apps_hidden": "{{count}} more app(s) hidden due to permissions",
"creator_tooltip": "Creator: {{creator}}",
"update_time_tooltip": "Updated: {{updateTime}}",
"permission_settings": "Permission Settings",
"export_config": "Export Config",
"create_folder": "New Folder",
"unnamed_skill": "Unnamed",
"skill_name_placeholder": "Enter skill name",
"skill_avatar_and_name": "Avatar & Name",
"skill_intro_label": "App Introduction",
"skill_intro_placeholder": "Describe use cases and access paths",
"skill_requirement_label": "Skill Requirements (used to auto-generate SKILL.md)",
"skill_requirement_tooltip": "TODO",
"skill_requirement_tooltip_title": "Example:",
"skill_requirement_tooltip_example": "## Goal\nAutomatically generate meeting minutes from meeting notes.\n\n## Process\n1. Identify the meeting topic and participants\n2. Extract key discussion points\n3. Organize clear conclusions and decisions\n4. Extract follow-up action items and note the responsible person (if any)\n\n## Requirements\n1. Output in structured format\n2. Include: meeting topic, participants, discussion points, decisions, action items\n3. Content should be concise and clear, avoiding redundancy",
"skill_requirement_default": "## Goal\n\n## Process\n\n## Requirements",
"ai_optimize": "AI Optimize",
"import_skill": "Import Skill",
"import_skill_select_file": "Select a Skill archive",
"import_skill_file_type_tip": "Supports {{ext}} formats",
......@@ -44,17 +34,13 @@
"copy_failed": "Copy failed",
"edit_success": "Updated successfully",
"edit_failed": "Update failed",
"move_success": "Moved successfully",
"move_failed": "Move failed",
"export_success": "Exported successfully",
"export_failed": "Export failed",
"deploy_success": "Published successfully",
"deploy_failed": "Publish failed",
"copy_skill_confirm": "The system will create a skill with the same configuration for you, but the permissions will not be copied. Please confirm!",
"detail_tab_config": "Skill Config",
"detail_tab_preview": "Run Preview",
"history_versions": "History Versions",
"exit_tips": "Your changes have not been saved. \"Exit directly\" will not save your edits.",
"select_skill": "Select Skill",
"associated_skills": "Skills",
"skill_deleted": "Skill deleted",
......@@ -67,7 +53,6 @@
"sandbox_operation_system_not_configured_title": "Virtual machine not configured",
"sandbox_operation_system_not_configured_content": "Skill operations depend on the virtual machine runtime. The current system has not configured a virtual machine, so related features are temporarily unavailable. Contact an administrator to configure it.",
"sandbox_plan_not_supported_title": "Plan does not support this feature",
"sandbox_plan_not_supported_content": "The current plan does not support virtual machine features. Upgrade your plan to continue.",
"sandbox_skill_plan_not_supported_content": "Skills depend on the virtual machine runtime. The current plan does not support virtual machine features. Upgrade your plan to continue.",
"sandbox_operation_plan_not_supported_content": "Skill operations depend on the virtual machine runtime. The current plan does not support virtual machine features. Upgrade your plan to continue.",
"sandbox_upgrade_action": "Upgrade",
......@@ -87,7 +72,6 @@
"sandbox_failed": "Sandbox creation failed: {{message}}",
"sandbox_retry": "Retry",
"sandbox_error_title": "Sandbox Creation Failed",
"sandbox_debug_loading_toast": "The sandbox is starting. Please send the message later.",
"no_current_version": "No available Skill version yet. Recreate or import the Skill before editing.",
"permission.des.read": "Can view Agent Skill",
"permission.des.write": "Can edit Agent Skill",
......
......@@ -69,6 +69,8 @@
"enter_comment": "Enter comment",
"error_catch": "Error catch",
"error_text": "Error text",
"http_full_error": "Full error",
"http_full_error_description": "Complete error object when the HTTP request fails, including message, status, code, data, and other fields.",
"execute_different_branches_based_on_conditions": "Execute different branches based on conditions.",
"extraction_requirements_description": "Extraction Requirements Description",
"extraction_requirements_description_detail": "Provide AI with some background knowledge or requirements to guide it in completing the task better.\\nThis input box can use global variables.",
......@@ -170,7 +172,6 @@
"parallel_full_results": "Full Results",
"parallel_full_results_desc": "Array of the same length as the input, each item is {success, message, data}: on success success=true, message is empty, data is the output; on failure success=false, message contains the error, data is null.",
"parallel_run": "Parallel Run",
"parallel_run_end_intro": "Select a variable as the output of the parallel run",
"parallel_run_execution_logic": "Execution Logic",
"parallel_run_max_concurrency": "Max Concurrency",
"parallel_run_max_concurrency_tip": "Maximum number of tasks running in parallel (range: 1 to the upper limit, default 5).",
......@@ -204,12 +205,6 @@
"reasoning_content": "Thinking text",
"regex": "Regex",
"reply_text": "Reply Text",
"response.Code log": "Code Log",
"response.Custom inputs": "Custom Inputs",
"response.Custom outputs": "Custom Outputs",
"response.Error": "Error",
"response.Read file result": "Read File Result",
"response.read files": "Read Files",
"search_query": "Search content",
"select_an_application": "Select an Application",
"select_another_application_to_call": "You can choose another application to call",
......@@ -238,7 +233,6 @@
"to_add_node": "to add",
"to_app_detail": "Go to edit app",
"to_connect_node": "to connect",
"tool.tool_result": "Tool operation results",
"tool_active_config": "Tool active",
"tool_active_config_type": "Tool activation: {{type}}",
"tool_call_termination": "Stop ToolCall",
......@@ -252,7 +246,6 @@
"tool_params.params_description_placeholder": "Name/Age/SQL statement..",
"tool_params.params_name": "Name",
"tool_params.params_name_placeholder": "name/age/sql",
"tool_params.tool_params_result": "Parameter configuration results",
"tool_raw_response_description": "The original response of the tool",
"trigger_after_application_completion": "Will be triggered after the application is fully completed",
"unFoldAll": "Expand all",
......
......@@ -79,7 +79,6 @@
"timespan_label": "时间颗粒度",
"timespan_minute": "分钟",
"total_call_volume": "调用总量",
"use_in_eval": "用于应用评测",
"view_chart": "图表",
"view_table": "表格",
"vlm_model": "图片理解模型",
......@@ -103,7 +102,6 @@
"model.censor_tip": "如果需要进行敏感校验,则开启该开关",
"model.charsPointsPrice": "模型综合价格",
"model.charsPointsPrice_tip": "将模型输入和输出合并起来进行 Token 计费,语言模型如果单独配置了输入和输出计费,则按输入和输出分别计算",
"model.dataset_process": "用于知识库文件处理",
"model.defaultConfig": "额外 Body 参数",
"model.defaultConfig_tip": "每次请求时候,都会携带该额外 Body 参数",
"model.default_config": "Body 额外字段",
......@@ -117,9 +115,6 @@
"model.delete_model_confirm": "确认删除该模型?",
"model.edit_model": "模型参数编辑",
"model.feature_config_section": "功能配置",
"model.function_call": "支持函数调用",
"model.function_call_tip": "如果模型支持函数调用,则开启该开关。工具调用优先级更高。",
"model.input_price_tip": "语言模型输入价格,如果配置了该项,则模型综合价格会失效",
"model.json_config": "配置文件",
"model.json_config_confirm": "确认使用该配置进行覆盖?",
"model.json_config_tip": "通过配置文件配置模型,点击确认后,会使用输入的配置进行全量覆盖,请确保配置文件输入正确。建议操作前,复制当前配置文件进行备份。",
......@@ -129,18 +124,11 @@
"model.model_id_tip": "模型的唯一标识,也就是实际请求到服务商model 的值,需要与 OneAPI 渠道中的模型对应。",
"model.normalization": "归一化处理",
"model.normalization_tip": "如果Embedding API 未对向量值进行归一化,可以启用该开关,系统会进行归一化处理。\n未归一化的 API,表现为向量检索得分会大于 1。",
"model.output_price_tip": "语言模型输出价格,如果配置了该项,则模型综合价格会失效",
"model.param_name": "参数名",
"model.params_config_section": "参数配置",
"model.price_config_section": "价格配置",
"model.price_tier": "梯度",
"model.price_tier_max_required": "除最后一个梯度外,都需要填写区间上限",
"model.price_tier_open_ended": "默认正无穷",
"model.price_tier_prev_range_required": "请先补全上一梯度的区间上限",
"model.price_tier_price_required": "每个价格梯度都需要至少配置一个输入价或输出价",
"model.price_tier_range_invalid": "价格梯度区间设置有误,请检查区间上限是否递增",
"model.price_tiers": "模型价格梯度",
"model.price_tiers_tip": "按输入 Token 所在区间匹配一个梯度,再使用该梯度的输入价格和输出价格分别计费。区间起点自动按上一梯度递增,最后一个梯度上限留空表示及以上。",
"model.reasoning": "模型支持思考",
"model.reasoning_tip": "例如 Deepseek-reasoner,可以输出思考过程。",
"model.reasoning_effort": "支持思考配置",
......@@ -149,20 +137,14 @@
"model.request_url": "自定义请求地址",
"model.request_url_tip": "如果填写该值,则会直接向该地址发起请求,不经过模型渠道的配置。\n接口需要遵循 OpenAI 的 API格式,并填写完整请求地址,例如:\nLLM: {{host}}/v1/chat/completions\nEmbedding: {{host}}/v1/embeddings\nSTT: {{host}}/v1/audio/transcriptions\nTTS: {{host}}/v1/audio/speech\nRerank: {{host}}/v1/rerank",
"model.response_format": "响应格式",
"model.response_format_placeholder": "自定义参数",
"model.show_stop_sign": "展示停止序列参数",
"model.show_top_p": "展示 Top-p 参数",
"model.test_mode": "标记为测试模型",
"model.test_mode_tip": "开启后,该模型在选择时候,将会增加 Beta 标志。",
"model.test_model": "模型测试",
"model.tool_choice": "支持工具调用",
"model.tool_choice_tag": "工具调用",
"model.tool_choice_tip": "如果该模型支持工具调用,则开启该开关",
"model.used_in_classify": "用于问题分类",
"model.used_in_extract_fields": "用于文本提取",
"model.used_in_tool_call": "用于工具调用节点",
"model.vision": "支持图片识别",
"model.vision_tag": "视觉",
"model.vision_tip": "如果模型支持图片识别,则打开该开关。",
"model.embedding_vision_tip": "开启后该索引模型可接收图片输入,并用于图片向量索引和图搜图。",
"model.voices": "声音角色",
......
......@@ -274,7 +274,6 @@
"user_team_invite_member": "邀请成员",
"user_team_leave_team": "离开团队",
"user_team_leave_team_failed": "离开团队失败",
"waiting": "待接受",
"copy_skill": "复制技能",
"create_skill": "创建技能",
"create_skill_folder": "创建技能文件夹",
......
......@@ -10,7 +10,6 @@
"llm_compress_text": "文件内容压缩",
"tool_response_compress": "工具响应压缩",
"compress_llm_messages": "AI 历史记录压缩",
"context_pick": "上下文选取",
"count": "运行次数",
"dashboard": "仪表盘",
"dataset_chunk_selection": "知识库分块裁切",
......@@ -20,8 +19,6 @@
"duration_seconds": "时长(秒)",
"embedding_index": "索引生成",
"evaluation": "应用评测",
"every_day": "天",
"every_month": "月",
"export_confirm_tip": "当前共 {{total}} 条使用记录,确认导出?",
"export_title": "时间,成员,类型,项目名,AI 积分消耗",
"feishu": "飞书",
......
......@@ -115,14 +115,12 @@
"custom_plugin_config_success": "配置成功",
"custom_plugin_config_title": "{{name}}配置",
"custom_plugin_create": "新建插件",
"custom_plugin_default_installed_label": "默认安装",
"custom_plugin_delete_success": "删除成功",
"custom_plugin_has_token_fee_label": "是否收取 Token 费用",
"custom_plugin_intro_label": "介绍",
"custom_plugin_intro_placeholder": "为这个应用添加一个介绍",
"custom_plugin_name_label": "取个名字",
"custom_plugin_name_required": "应用名不能为空",
"custom_plugin_parse_error": "插件解析失败",
"custom_plugin_parsing": "解析中...",
"custom_plugin_plugin_status_label": "插件状态",
"custom_plugin_tags_label": "标签",
......@@ -139,13 +137,10 @@
"dataset_create_failed": "知识库创建失败",
"dataset_create_success": "知识库创建成功,正在后台索引文件",
"dataset_empty_tips": "你还没有知识库,先创建一个吧",
"dataset_search_tool_description": "调用“语义检索”和“全文检索”能力,从“知识库”中查找可能与问题相关的参考内容。优先调用该工具来辅助回答用户的问题。",
"dataset_select": "可选知识库",
"delete_all_input_guide_confirm": "确定要清空输入引导词库吗?",
"deleted": "应用已删除",
"document_quote": "文档引用",
"document_quote_tip": "通常用于接受用户上传的文档内容(这需要文档解析),也可以用于引用其他字符串数据。",
"edit_app": "应用详情",
"edit_info": "编辑信息",
"edit_param": "编辑参数",
"empty_folder": "(空文件夹)",
......@@ -197,10 +192,7 @@
"llm_multimodal_select_placeholder": "请选择多模态能力",
"llm_multimodal_video": "视频",
"llm_not_support_multimodal": "该模型不支持多模态识别",
"llm_not_support_vision": "该模型不支持图片识别",
"llm_use_audio": "音频识别",
"llm_use_multimodal": "多模态识别",
"llm_use_video": "视频识别",
"llm_use_vision": "图片识别",
"local_upload": "本地上传",
"log_detail": "日志详情",
......@@ -285,7 +277,6 @@
"max_histories_number": "记忆轮数",
"max_histories_number_tip": "模型最多携带多少轮对话进入记忆中,如果记忆超出模型上下文,系统会强制截断。所以尽管配置 30 轮对话,实际运行时候,不一定会达到 30 轮。",
"max_tokens": "回复上限",
"module.Custom Title Tip": "该标题名字会展示在对话过程中",
"module.No Modules": "没找到插件",
"modules.Title is required": "模块名不能为空",
"month.unit": "号",
......@@ -294,7 +285,6 @@
"my_agents": "我的 agents",
"new_input_guide_lexicon": "新词库",
"no_mcp_tools_list": "暂无数据,需先解析 MCP 地址",
"node_not_intro": "这个节点没有介绍",
"not_json_file": "请选择JSON文件",
"not_the_newest": "非最新版",
"open_auto_execute": "启用自动执行",
......@@ -315,6 +305,8 @@
"plugin_offline_url": "网址",
"publish.chat_desc": "用户登录门户后可直接与应用对话",
"publish.playground_link": "跳转链接",
"publish.show_whole_response": "显示完整响应",
"publish.show_whole_response_tip": "开启后,聊天页面可查看每个模块的详细响应流程",
"publish_channel": "发布渠道",
"publish_channel.wecom.empty": "发布到企业微信机器人,请先 <a>绑定自定义域名</a>,并且通过域名校验。",
"publish_success": "发布成功",
......@@ -348,8 +340,6 @@
"space_to_expand_folder": "按\"空格\"展开文件夹",
"stop_sign": "停止序列",
"stop_sign_placeholder": "多个序列号通过 | 隔开,例如:aaa|stop",
"stream_response": "流输出",
"stream_response_tip": "关闭该开关,可以强制模型使用非流模式,并且不会直接进行内容输出。可以在 AI 回复的输出中,获取本次模型输出的内容进行二次处理。",
"sync_log_keys_popover_text": "当前字段配置仅对个人生效,是否需要保存至团队配置?",
"sync_team_app_log_keys": "还原成团队配置",
"system_secret": "系统密钥",
......@@ -410,7 +400,6 @@
"toolkit_call_points_label": "调用积分",
"toolkit_config_system_key": "是否配置系统密钥",
"toolkit_contribute_resource": "贡献插件",
"toolkit_default_install": "默认安装",
"toolkit_hide_tags": "隐藏标签",
"toolkit_hide_tags_tip": "拥有以下标签的用户将完全看不到此工具",
"toolkit_id": "ID",
......@@ -426,7 +415,6 @@
"toolkit_no_call_points": "该工具无需调用积分",
"toolkit_no_plugins": "暂无插件",
"toolkit_no_runtime_config": "暂无运行时配置",
"toolkit_official": "官方",
"toolkit_open_marketplace": "打开插件市场",
"toolkit_outputs": "输出参数",
"toolkit_params_description": "参数说明",
......@@ -439,26 +427,10 @@
"toolkit_promote_tags_tip": "拥有以下标签的用户会看到\"推荐\"标识",
"toolkit_reset_runtime_config_confirm": "确认恢复默认运行时配置?",
"toolkit_runtime_config": "运行时配置",
"toolkit_runtime_config_idle_timeout": "节点空闲时间(ms)",
"toolkit_runtime_config_idle_timeout_tip": "工作节点空闲超过该时间后可被回收",
"toolkit_runtime_config_invalid_integer": "{{label}} 需要填写整数",
"toolkit_runtime_config_invalid_number": "{{label}} 需要填写有效数字",
"toolkit_runtime_config_max_concurrent_requests_per_pod": "每节点最大并发数",
"toolkit_runtime_config_max_concurrent_requests_per_pod_tip": "单个工作节点可同时处理的最大请求数",
"toolkit_runtime_config_max_pods": "最大工作节点数",
"toolkit_runtime_config_max_pods_tip": "插件运行时允许启动的最大工作节点数",
"toolkit_runtime_config_max_queue_size": "最大排队队列长度",
"toolkit_runtime_config_max_queue_size_tip": "等待可用工作节点的最大请求队列长度",
"toolkit_runtime_config_max_requests_per_pod": "每节点最大请求数",
"toolkit_runtime_config_max_requests_per_pod_tip": "单个工作节点累计处理请求达到该数量后会被替换",
"toolkit_runtime_config_min_pods": "最小工作节点数",
"toolkit_runtime_config_min_pods_over_max_pods": "最小工作节点数不能大于最大工作节点数",
"toolkit_runtime_config_min_pods_tip": "插件运行时保留的最小工作节点数",
"toolkit_runtime_config_min_value": "{{label}} 不能小于 {{min}}",
"toolkit_runtime_config_pod_timeout": "节点超时时间(ms)",
"toolkit_runtime_config_pod_timeout_tip": "单次节点调用的最大等待时间",
"toolkit_runtime_config_queue_timeout": "排队超时时间",
"toolkit_runtime_config_queue_timeout_tip": "请求在队列中的最长等待时间",
"toolkit_search_placeholder": "搜索工具名称",
"toolkit_select_app": "选择现有应用",
"toolkit_select_user_tags": "选择用户标签",
......@@ -480,7 +452,6 @@
"toolkit_tags_manage_title": "工具标签管理",
"toolkit_tags_name": "标签名称",
"toolkit_tags_total": "共 {{count}} 个标签",
"toolkit_token_fee": "Token 积分",
"toolkit_token_fee_tip": "开启该开关后,用户使用该插件,需要支付插件中Token的积分,并且同时会收取调用积分",
"toolkit_tool_config": "{{name}}配置",
"toolkit_tool_list": "工具列表",
......@@ -490,9 +461,7 @@
"toolkit_uninstalled": "未安装",
"toolkit_updatable": "可更新",
"toolkit_updatable_plugins": "可更新的插件",
"toolkit_update_failed": "更新失败",
"toolkit_user_guide": "使用说明",
"toolkit_version_description": "版本描述",
"toolkit_version_info": "版本信息",
"tools": "工具",
"tools_no_description": "这个工具没有介绍~",
......@@ -519,7 +488,6 @@
"type.hidden": "隐藏应用",
"type_http_tool_set_intro": "批量导入 API 工具",
"type_mcp_intro": "连接 MCP 服务",
"type_not_recognized": "模板应用类型错误",
"type_plugin_description": "一键输出指定结果。",
"type_plugin_intro": "常用于封装工作流",
"type_simple_description": "最基础的对话应用,无需复杂配置,快速创建和使用。",
......@@ -529,12 +497,8 @@
"unnamed_app": "未命名",
"upgrade": "去升级",
"upload_file_exists_filtered": "已自动过滤重复文件",
"upload_file_extension_type_canSelectAudio": "音频",
"upload_file_extension_type_canSelectCustomFileExtension": "自定义文件扩展类型",
"upload_file_extension_type_canSelectCustomFileExtension_placeholder": "文件扩展名",
"upload_file_extension_type_canSelectFile": "文档",
"upload_file_extension_type_canSelectImg": "图片",
"upload_file_extension_type_canSelectVideo": "视频",
"upload_file_extension_types": "支持上传的类型",
"upload_file_max_amount": "最大文件数量",
"upload_file_max_amount_tip": "单轮对话中最大上传文件数量",
......
{
"AI_input_is_empty": "传入 AI 节点的内容为空",
"Delete_all": "清空词库",
"LLM_model_response_empty": "模型响应为空,请查看模型详情请求",
"no_output_content": "应用无输出内容",
"Next": "下一个",
......@@ -18,12 +17,10 @@
"chat.quote.deleted": "该数据已被删除~",
"chat.waiting_for_response": "正在努力思考中",
"chat_history": "聊天记录",
"chat_input_guide_lexicon_is_empty": "还没有配置词库",
"chat_test_app": "调试-{{name}}",
"citation_card_prefix": "共 ",
"citation_card_suffix": " 条引用",
"citation_card_title": "共 {{num}} 条引用",
"citations": "{{num}}条引用",
"clear_input_value": "清空输入",
"click_to_add_url": "输入文件链接",
"completion_finish_abnormal_close": "异常断开",
......@@ -33,40 +30,23 @@
"completion_finish_function_call": "函数调用",
"completion_finish_length": "超出回复限制",
"completion_finish_null": "未知",
"completion_finish_reason": "完成原因",
"completion_finish_stop": "正常完成",
"completion_finish_tool_calls": "工具调用",
"feedback_helpful": "有帮助",
"feedback_unhelpful": "没有帮助",
"compress_llm_messages": "上下文压缩",
"compress_llm_usage": "文本压缩输入输出 tokens",
"compress_llm_usage_point": "文本压缩积分消耗",
"config_input_guide": "配置输入引导",
"config_input_guide_lexicon": "配置词库",
"config_input_guide_lexicon_title": "配置词库",
"confirm_clear_input_value": "确认清空表单内容?将会恢复默认值!",
"mobile_clear_history_confirm_title": "确定清空历史记录?",
"mobile_clear_history_confirm_tip": "此操作不可撤销",
"confirm_plan": "确认计划",
"confirm_to_clear_share_chat_history": "确认清空所有聊天记录?",
"content_empty": "内容为空",
"context_pick": "上下文选取",
"continue_run": "继续运行",
"csv_input_lexicon_tip": "仅支持 CSV 批量导入,点击下载模板",
"custom_input_guide_url": "自定义词库地址",
"data_source": "来源知识库: {{name}}",
"dataset_quote_type error": "知识库引用类型错误,正确类型:{ datasetId: string }[]",
"dataset_search": "知识库检索",
"delete_all_input_guide_confirm": "确定要清空输入引导词库吗?",
"download_all_files": "下载所有",
"download_chunks": "下载数据",
"empty_directory": "这个目录已经没东西可选了~",
"edit_message": "编辑消息",
"error_message": "错误信息",
"file_amount_over": "超出最大文件数量 {{max}}",
"file_compress_text": "文件内容压缩",
"file_input": "系统文件",
"file_input_tip": "可通过【插件开始】节点的“文件链接”获取对应文件的链接",
"history_generating": "思考中",
"go_to_dataset": "前往知识库",
"history_slider.home.title": "聊天",
......@@ -75,68 +55,109 @@
"home.tools": "工具:{{num}}",
"in_progress": "进行中",
"input_guide": "输入引导",
"input_guide_lexicon": "词库",
"input_guide_tip": "可以配置一些预设的问题。在用户输入问题时,会从这些预设问题中获取相关问题进行提示。",
"input_placeholder_phone": "发消息给FastGPT",
"insert_input_guide,_some_data_already_exists": "有重复数据,已自动过滤,共插入 {{len}} 条数据",
"internal_variables_tip": "内部变量仅调试时可见",
"invalid_share_url": "无效的分享链接",
"is_chatting": "正在聊天中...请等待结束",
"llm_request_detail": "LLM 请求详情",
"llm_request_ids": "LLM 请求详情",
"llm_tokens": "LLM tokens",
"log.error.collapse": "折叠",
"log.error.error_prefix": "报错信息",
"log.error.expand": "展开剩余",
"log.feedback.hide_feedback": "隐藏反馈",
"log.feedback.mark_as_read": "标为已读",
"log.feedback.read": "已读",
"log.feedback.show_feedback": "显示反馈",
"master_agent_call": "主 agent 调用",
"module_runtime_and": "工作流总运行时间",
"new_input_guide_lexicon": "新词库",
"no_workflow_response": "没有运行数据",
"plan_agent": "规划 Agent",
"plan_check_tip": "规划已生成,您可继续对话来微调当前规划",
"plugins_output": "插件输出",
"press_to_speak": "按住说话",
"processed": "已处理",
"processing": "处理中",
"query_extension_IO_tokens": "问题优化输入/输出 Tokens",
"query_extension_result": "问题优化结果",
"question_tip": "从上到下,为各个模块的响应顺序",
"quote_result_notice": "仅代表本次搜索时的结果,请注意信息的时效性",
"quote_source_title": "引用来源",
"read_file": "文件解析",
"read_raw_source": "打开原文",
"reasoning_content": "思考过程",
"reflection_agent": "反思 Agent",
"release_cancel": "松开取消",
"release_send": "松开发送,上滑取消",
"request_body": "请求体",
"response.child total points": "子流程积分消耗",
"response.body": "请求体",
"response.child_total_points": "子流程积分消耗",
"response.click_to_expand": "点击展开",
"response.code_log": "Log 日志",
"response.complete_response": "完整响应",
"response.completion_finish_reason": "结束原因",
"response.compress_llm_usage": "问题优化模型输入/输出 Tokens",
"response.compress_llm_usage_point": "问题优化模型积分消耗",
"response.context_total_length": "上下文总长度",
"response.cq": "问题分类列表",
"response.cq_result": "分类结果",
"response.custom_inputs": "自定义输入",
"response.custom_outputs": "自定义输出",
"response.dataset_concat_length": "合并后总数",
"response.embedding_model": "向量模型",
"response.embedding_model_tokens": "向量模型 Tokens",
"response.error": "错误信息",
"response.extension_model": "问题优化模型",
"response.extract_description": "提取背景描述",
"response.extract_result": "提取结果",
"response.form_input_result": "表单输入结果",
"response.headers": "请求头",
"response.history_preview": "记录预览(仅展示部分内容)",
"response.http_error_result": "失败响应",
"response.http_result": "响应体",
"response.hybrid_weight": "语义检索 : 全文检索 = {{emb}} : {{text}}",
"response.if_else_result": "判断器结果",
"response.limit": "单次搜索上限",
"response.llm_request_ids": "模型请求 ID",
"response.llm_tokens": "模型 Tokens",
"response.loop_input": "输入数组",
"response.loop_input_element": "输入数组元素",
"response.loop_output": "输出数组",
"response.loop_output_element": "输出数组元素",
"response.loop_run_history": "循环历史",
"response.loop_run_input": "循环输入",
"response.loop_run_iterations": "循环轮数",
"response.max_tokens": "最大响应 tokens",
"response.model": "模型",
"response.no_workflow_response": "暂无工作流响应",
"response.node_inputs": "节点输入",
"response.node_name": "名称",
"response.parallel_input": "并行输入数组",
"response.parallel_output": "并行成功结果",
"response.parallel_run_detail": "并行执行明细",
"response.params": "请求参数",
"response.query": "问题/检索词",
"response.query_extension_result": "问题优化结果",
"response.question_tip": "从上到下,为各个模块的响应顺序",
"response.read_complete_response": "查看详情",
"response.read_complete_response_tips": "点击查看详细流程",
"response.read_file_result": "文档解析结果预览",
"response.read_files": "解析的文档",
"response.reasoning_content": "思考过程",
"response.rerank_tokens": "重排模型 Tokens",
"response.search_mode": "搜索模式",
"response.search_results": "搜索结果({{len}})",
"response.search_using_rerank": "结果重排",
"response.similarity": "相似度",
"response.status": "状态",
"response.step_query": "当前步骤问题",
"response.temperature": "温度",
"response.text_output": "文本输出",
"response.tool_call_tokens": "工具调用 tokens 消耗",
"response.tool_input": "工具输入",
"response.tool_output": "工具输出",
"response.tool_params_result": "工具参数结果",
"response.tool_result": "工具响应",
"response.total_points": "总积分消耗",
"response.update_var_result": "变量更新结果(按顺序展示多个变量更新结果)",
"response.user_select_result": "用户选择结果",
"response_content": "响应内容",
"response_embedding_model": "向量模型",
"response_embedding_model_tokens": "向量模型 Tokens",
"response_hybrid_weight": "语义检索 : 全文检索 = {{emb}} : {{text}}",
"response_rerank_tokens": "重排模型 Tokens",
"response_search_results": "搜索结果({{len}})",
"resume_placeholder_generating": "生成中",
"resume_unavailable": "当前无法恢复正在生成的流式内容,请稍后查看最终回答。",
"resume_unavailable_memory_pressure": "当前服务资源紧张,暂不提供流式恢复。请稍后查看最终回答。",
"sandbox_audio_not_supported": "当前浏览器不支持音频播放。",
"sandbox_binary_file_no_preview": "无法预览该文件,请直接下载查看",
"sandbox_collapse_all": "全部折叠",
"sandbox_confirm_delete_action": "确认删除",
"sandbox_confirm_delete_content": "确定要删除 <name>{{name}}</name> 吗?此操作不可撤销,并将永久删除所有包含的子文件。",
"sandbox_confirm_delete_title": "确认删除",
"sandbox_connect_failed_max_attempts": "连接沙盒失败次数过多,已停止尝试。",
"sandbox_refresh_page_to_retry": "请刷新页面重试。",
"sandbox_copy": "复制",
"sandbox_copy_failed": "复制失败",
"sandbox_create_failed": "新建失败",
"sandbox_delete": "删除",
"sandbox_delete_failed": "删除失败",
......@@ -148,7 +169,6 @@
"sandbox_html_preview": "预览",
"sandbox_html_preview_failed": "预览链接生成失败",
"sandbox_load_failed": "加载目录失败",
"sandbox_loading_files": "文件加载中...",
"sandbox_starting": "沙盒启动中(1/2)",
"sandbox_file_loading": "文件加载中(2/2)",
"sandbox_move_failed": "移动失败",
......@@ -159,30 +179,14 @@
"sandbox_new_folder": "新建文件夹",
"sandbox_new_folder_placeholder": "新建文件夹...",
"sandbox_no_file": "虚拟机里还没有文件",
"sandbox_open_terminal": "打开终端",
"sandbox_preview": "预览",
"sandbox_rename": "重命名",
"sandbox_rename_failed": "重命名失败",
"sandbox_root_directory": "根目录",
"sandbox_search_files": "搜索文件",
"sandbox_search_workspace_files": "输入以搜索工作区文件...",
"sandbox_select_file_edit": "选择一个文件进行编辑",
"sandbox_source": "原文",
"sandbox_save_failed": "保存文件失败",
"sandbox_status_checkExisting": "检查沙箱状态...",
"sandbox_status_connecting": "连接已有沙箱...",
"sandbox_status_creatingContainer": "启动沙箱(约 60 秒)...",
"sandbox_status_deployingSkills": "部署技能 {{skillName}}...",
"sandbox_status_downloadingPackage": "下载技能包 {{skillName}}...",
"sandbox_status_extractingPackage": "解压技能包 {{skillName}}...",
"sandbox_status_failed": "沙箱启动失败",
"sandbox_status_fetchSkills": "加载技能信息...",
"sandbox_status_lazyInit": "初始化沙箱...",
"sandbox_status_ready_cold": "沙箱就绪",
"sandbox_status_ready_warm": "沙箱已连接",
"sandbox_status_uploadingPackage": "上传技能包 {{skillName}}...",
"sandbox_terminal": "终端",
"sandbox_toggle_terminal": "切换终端面板",
"sandbox_upload_failed": "上传失败",
"sandbox_upload_file": "上传文件",
"sandbox_upload_too_large": "文件过大",
......@@ -248,19 +252,13 @@
"sidebar.favourite_apps": "精选应用",
"sidebar.home": "首页",
"sidebar.team_apps": "团队应用",
"skill_calling": "正在调用技能:{{name}}",
"source_cronJob": "定时执行",
"start_chat": "开始对话",
"step_query": "任务标题",
"stream_output": "流输出",
"task_has_continued": "任务已继续运行",
"tool_input": "工具输入",
"tool_output": "工具输出",
"tool_response_compress": "工具响应压缩",
"unsupported_file_type": "不支持的文件类型",
"variable_invisable_in_share": "外部变量在免登录链接中不可见",
"view_all_citations": "查看全部",
"view_citations": "查看引用",
"run_detail": "运行详情",
"web_site_sync": "Web站点同步"
"run_detail": "运行详情"
}
......@@ -102,7 +102,6 @@
"add_new_param": "新增参数",
"add_success": "添加成功",
"aipoint_desc": "每次调用 AI 模型时,都会消耗一定的 AI 积分(类似于 token)。点击可查看详细计算规则。",
"all_quotes": "全部引用",
"all_result": "完整结果",
"app_evaluation": "Agent 评测(Beta)",
"app_icon_and_name": "图标 & 名称",
......@@ -127,7 +126,6 @@
"chose_condition": "选择条件",
"chosen": "已选",
"classification": "分类",
"click_drag_tip": "点我可拖动",
"click_select_avatar": "点击选择头像",
"click_to_copy": "点击复制",
"click_to_resume": "点击恢复",
......@@ -180,7 +178,6 @@
"code_error.skill_error.invalid_skill_id": "无效的技能 ID",
"code_error.skill_error.missing_image_repository": "提供 image 时必须指定 image.repository",
"code_error.skill_error.missing_model": "提供需求描述时必须指定 model",
"code_error.skill_error.name_exists": "该目录下已存在同名技能",
"code_error.skill_error.no_fields_to_update": "没有需要更新的字段",
"code_error.skill_error.no_storage": "技能没有存储,无法复制",
"code_error.skill_error.not_exist": "技能不存在",
......@@ -299,7 +296,6 @@
"core.app.edit.Query extension background prompt": "对话背景描述",
"core.app.edit.Query extension background tip": "描述当前对话的范围,便于 AI 为当前问题进行补全和扩展。填写的内容,通常为该助手所用",
"core.app.edit_content": "应用信息编辑",
"core.app.error.App name can not be empty": "应用名不能为空",
"core.app.error.Get app failed": "获取应用异常",
"core.app.feedback.Custom feedback": "自定义反馈",
"core.app.feedback.close custom feedback": "关闭反馈",
......@@ -374,7 +370,6 @@
"core.chat.Pin": "置顶",
"core.chat.Question Guide": "猜你想问",
"core.chat.Quote": "引用",
"core.chat.Quote Amount": "知识库引用({{amount}} 条)",
"core.chat.Recent use": "最近使用",
"core.chat.Record": "语音输入",
"core.chat.Restart": "重开对话",
......@@ -406,45 +401,11 @@
"core.chat.markdown.Edit Question": "编辑问题",
"core.chat.markdown.Quick Question": "点我立即提问",
"core.chat.markdown.Send Question": "发送问题",
"core.chat.quote.Quote Tip": "此处仅显示实际引用内容,若数据有更新,此处不会实时更新",
"core.chat.quote.Read Quote": "查看引用",
"core.chat.response.Complete Response": "完整响应",
"core.chat.response.Extension model": "问题优化模型",
"core.chat.response.Read complete response": "查看详情",
"core.chat.response.Read complete response tips": "点击查看详细流程",
"core.chat.response.Tool call tokens": "工具调用 tokens 消耗",
"core.chat.response.context total length": "上下文总长度",
"core.chat.response.loop_input": "输入数组",
"core.chat.response.loop_input_element": "输入数组元素",
"core.chat.response.loop_output": "输出数组",
"core.chat.response.loop_output_element": "输出数组元素",
"core.chat.response.loop_run_history": "循环历史",
"core.chat.response.loop_run_input": "循环输入",
"core.chat.response.loop_run_iterations": "循环轮数",
"core.chat.response.module cq": "问题分类列表",
"core.chat.response.module cq result": "分类结果",
"core.chat.response.module extract description": "提取背景描述",
"core.chat.response.module extract result": "提取结果",
"core.chat.response.module historyPreview": "记录预览(仅展示部分内容)",
"core.chat.response.module http result": "响应体",
"core.chat.response.module if else Result": "判断器结果",
"core.chat.response.module limit": "单次搜索上限",
"core.chat.response.module maxToken": "最大响应 tokens",
"core.chat.response.module model": "模型",
"core.chat.response.module query": "问题/检索词",
"core.chat.response.module similarity": "相似度",
"core.chat.response.module temperature": "温度",
"core.chat.response.parallel_input": "并行输入数组",
"core.chat.response.parallel_output": "并行成功结果",
"core.chat.response.parallel_run_detail": "并行执行明细",
"core.chat.response.search using reRank": "结果重排",
"core.chat.response.text output": "文本输出",
"core.chat.response.update_var_result": "变量更新结果(按顺序展示多个变量更新结果)",
"core.chat.response.user_select_result": "用户选择结果",
"core.chat.retry": "重新生成",
"core.chat.tts.Stop Speech": "停止",
"core.dataset.Collection": "数据集",
"core.dataset.Create dataset": "创建一个{{name}}",
"core.dataset.Dataset": "知识库",
"core.dataset.Dataset ID": "知识库 ID",
"core.dataset.Delete Confirm": "确认删除该知识库?删除后数据无法恢复,请确认!",
......@@ -473,8 +434,6 @@
"core.dataset.collection.metadata.read source": "查看原始内容",
"core.dataset.collection.metadata.source": "数据来源",
"core.dataset.collection.metadata.source size": "来源大小",
"core.dataset.collection.status.active": "已就绪",
"core.dataset.collection.status.error": "训练异常",
"core.dataset.collection.sync.result.sameRaw": "内容未变动,无需更新",
"core.dataset.collection.sync.result.success": "开始同步",
"core.dataset.data.Edit": "编辑数据",
......@@ -550,12 +509,9 @@
"core.dataset.status.active": "已就绪",
"core.dataset.status.syncing": "同步中",
"core.dataset.status.waiting": "排队中",
"core.dataset.test.Batch test": "批量测试",
"core.dataset.test.Batch test Placeholder": "选择一个 CSV 文件",
"core.dataset.test.Search Test": "搜索测试",
"core.dataset.test.Test": "测试",
"core.dataset.test.Test Result": "测试结果",
"core.dataset.test.Test Text": "单个文本测试",
"core.dataset.test.Test Text Placeholder": "输入需要测试的内容",
"core.dataset.test.Test params": "测试参数",
"core.dataset.test.delete test history": "删除该测试结果",
......@@ -592,7 +548,6 @@
"core.module.Default value": "默认值",
"core.module.Default value placeholder": "不填则默认返回空字符",
"core.module.Diagram": "示意图",
"core.module.Edit intro": "编辑描述",
"core.module.Field Description": "字段描述",
"core.module.Field Name": "字段名",
"core.module.Http request props": "请求参数",
......@@ -626,7 +581,6 @@
"core.module.http.Current time": "当前时间",
"core.module.http.Histories": "历史记录",
"core.module.http.Key already exists": "Key 已经存在",
"core.module.http.Key cannot be empty": "参数名不能为空",
"core.module.http.Props name": "参数名",
"core.module.http.Props tip": "可以设置 HTTP 请求的相关参数\n可通过输入 / 来调用变量,当前可使用变量:\n{{variable}}",
"core.module.http.Props value": "参数值",
......@@ -760,15 +714,12 @@
"dataset.Insert Data": "插入",
"dataset.Manual collection Tip": "手动数据集允许创建一个空的容器装入数据",
"dataset.Training Name": "数据训练",
"dataset.collections.Collection Embedding": "{{total}} 组索引中",
"dataset.collections.Confirm to delete the folder": "确认删除该文件夹及里面所有内容?",
"dataset.collections.Create And Import": "新建/导入",
"dataset.collections.Select Collection": "选择文件",
"dataset.collections.Select One Collection To Store": "选择一个文件进行存储",
"dataset.data.Can not edit": "无编辑权限",
"dataset.data.Index Placeholder": "输入索引文本内容",
"dataset.data.Input Success Tip": "导入数据成功",
"dataset.data.Update Index Timeout Tip": "更新索引超时,请稍后刷新数据查看结果",
"dataset.data.Update Success Tip": "更新数据成功",
"dataset.data.edit.Index": "数据索引({{amount}})",
"dataset.dataset_name": "知识库名称",
......@@ -804,12 +755,7 @@
"error.invalid_params": "参数无效",
"error.llm_track_expired": "请求详情已过期",
"error.missingParams": "参数缺失",
"error.s3_upload_auth_failed": "无权上传文件",
"error.s3_upload_bucket_not_found": "找不到存储桶",
"error.s3_upload_file_too_large": "文件需小于 {{max}}",
"error.s3_upload_invalid_file_type": "文件内容不受支持,或文件后缀与内容不匹配",
"error.s3_upload_network_error": "网络异常",
"error.s3_upload_timeout": "上传超时",
"error.send_auth_code_too_frequently": "请勿频繁获取验证码",
"error.too_many_request": "请求太频繁了,请稍后重试",
"error.tool_not_exist": "工具已删除",
......@@ -834,7 +780,6 @@
"filter_sensitive_info": "过滤敏感信息",
"filter_sensitive_info_tip": "敏感信息范围:【系统工具】使用的临时密钥(泄露可能导致意外扣费,请谨慎导出),以及【知识库搜索节点】配置的知识库信息",
"folder.empty": "这个目录已经没东西可选了~",
"folder.open_dataset": "打开知识库",
"folder_description": "文件夹描述",
"free": "免费",
"get_QR_failed": "获取二维码失败",
......@@ -846,10 +791,7 @@
"hour_unit": "时",
"import_failed": "导入失败",
"import_success": "导入成功",
"info.csv_download": "点击下载批量测试模板",
"info.csv_message": "读取 CSV 文件第一列进行批量测试,单次最多支持 100 组数据。",
"info.felid_message": "字段key必须是纯英文字母或数字,并且不能以数字开头。",
"info.node_info": "调整该模块会对工具调用时机有影响。\n你可以通过精确的描述该模块功能,引导模型进行工具调用。",
"info.old_version_attention": "检测到您的高级编排为旧版,系统将为您自动格式化成新版工作流。\n\n由于版本差异较大,会导致一些工作流无法正常排布,请重新手动连接工作流。如仍异常,可尝试删除对应节点后重新添加。\n\n你可以直接点击调试进行工作流测试,调试完毕后点击发布。直到你点击发布,新工作流才会真正保存生效。\n\n在你发布新工作流前,自动保存不会生效。",
"input.Repeat Value": "有重复的值",
"input_name": "取个名字",
......@@ -1083,9 +1025,6 @@
"support.user.login.wx_qr_login": "微信扫码登录",
"support.user.team.Dataset usage": "知识库容量",
"support.user.team.Team Tags Async Success": "同步完成",
"support.wallet.Ai point every thousand tokens": "{{points}} 积分/1K tokens",
"support.wallet.Ai point every thousand tokens_input": "输入:{{points}} 积分/1K tokens",
"support.wallet.Ai point every thousand tokens_output": "输出:{{points}} 积分/1K tokens",
"support.wallet.App_amount_not_sufficient": "您的应用数量已达上限,请升级套餐后继续使用。",
"support.wallet.Buy": "购买",
"support.wallet.Dataset_amount_not_sufficient": "您的知识库数量已达上限,请升级套餐后继续使用。",
......@@ -1156,13 +1095,6 @@
"support.wallet.usage.Audio Speech": "语音播放",
"support.wallet.usage.Code Copilot": "代码助手",
"support.wallet.usage.Optimize Prompt": "提示词优化",
"support.wallet.usage.Source": "来源",
"support.wallet.usage.Text Length": "文本长度",
"support.wallet.usage.Time": "生成时间",
"support.wallet.usage.Token Length": "token 长度",
"support.wallet.usage.Total": "总金额",
"support.wallet.usage.Total points": "积分总消耗",
"support.wallet.usage.Usage Detail": "使用详情",
"support.wallet.usage.Whisper": "语音输入",
"sync_link": "同步链接",
"sync_success": "同步成功",
......@@ -1200,7 +1132,6 @@
"upload_file_error": "上传文件失败",
"usage_records": "使用记录",
"user.Account": "账号",
"user.Application Name": "项目名",
"user.Laf Account Setting": "laf 账号配置",
"user.No_right_to_reset_password": "没有重置密码的权限",
"user.Old password is error": "旧密码错误",
......
......@@ -29,7 +29,6 @@
"collection_data_count": "数据量",
"collection_metadata_custom_pdf_parse": "PDF增强解析",
"collection_name": "数据集名称",
"collection_not_support_sync": "该集合不支持同步",
"collection_sync": "立即同步",
"collection_sync_confirm_tip": "确认开始同步数据?系统将会拉取最新数据进行比较,如果内容不相同,则会创建一个新的集合并删除旧的集合,请确认!",
"collection_tags": "集合标签",
......@@ -48,7 +47,6 @@
"custom_split_char": "分隔符",
"custom_split_sign_tip": "允许你根据自定义的分隔符进行分块。通常用于已处理好的数据,使用特定的分隔符来精确分块。可以使用 | 符号表示多个分割符,例如:“。|.” 表示中英文句号。\n尽量避免使用正则相关特殊符号,例如: * () [] {} 等。",
"data_amount": "{{dataAmount}} 组数据, {{indexAmount}} 组索引",
"data_error_amount": "{{errorAmount}} 组训练异常",
"data_index_image": "图片索引",
"data_index_image_embedding": "多模态图片索引",
"image_embedding_index_default_desc": "已通过多模态模型生成图片向量,支持以图搜图",
......@@ -91,7 +89,6 @@
"filename": "文件名",
"folder_dataset": "文件夹",
"image_auto_parse": "图片自动索引",
"image_auto_parse_tips": "调用 VLM 自动标注文档里的图片,并生成额外的检索索引",
"image_auto_parse_tip_commercial": "请升级商业版后使用该功能",
"image_auto_parse_tip_multimodal_with_vlm": "为文档中的图片生成图片向量索引和文本描述索引,支持以图搜图",
"image_auto_parse_tip_multimodal_without_vlm": "使用多模态模型为图片生成向量索引,支持以图搜图",
......@@ -152,9 +149,7 @@
"retain_collection": "调整训练参数",
"retrain_task_submitted": "重新训练任务已提交",
"retry_all": "全部重试",
"retry_failed": "重试失败",
"rootdirectory": "/根目录",
"same_api_collection": "存在相同的 API 集合",
"selectDirectory": "选择",
"selectRootFolder": "选择根目录",
"split_chunk_char": "按指定分割符分块",
......@@ -202,7 +197,6 @@
"yuque_dataset": "语雀知识库",
"yuque_dataset_config": "配置语雀知识库",
"yuque_dataset_desc": "可通过配置语雀文档权限,使用语雀文档构建知识库,文档不会进行二次存储",
"training.stage_error": "{{stage}}异常",
"training.status_error": "训练异常",
"training_error_list": "异常列表",
"training_error_empty": "暂无训练异常"
......
{
"Image_Preview": "图片预览",
"Image_dataset_requires_VLM_model_to_be_configured": "图片数据集需要配置图片理解模型或多模态索引模型才能使用,请先在模型配置中添加对应模型",
"click_to_view_raw_source": "点击查看来源",
"file_name": "文件名",
"file_size": "文件大小",
"image": "图片",
......
......@@ -17,7 +17,6 @@
"feishu_api": "飞书接口",
"feishu_bot": "飞书机器人",
"feishu_bot_desc": "通过 API 直接接入飞书机器人",
"ip_whitelist": "IP 白名单",
"key_alias": "key 的别名,仅用于展示",
"link_name": "分享链接的名字",
"new_feishu_bot": "新增飞书机器人",
......
......@@ -4,21 +4,13 @@
"create_your_first_skill": "创建你的第一个技能",
"no_skills": "暂无 Skill",
"copy_skill": "创建副本",
"related_apps_count": "关联应用 {{count}}",
"confirm_delete_title": "确定删除该技能吗?",
"confirm_delete_with_refs": "该技能当前正被<bold>{{count}}个应用</bold>引用。删除后,相关应用将<bold>无法调用此技能</bold>。建议先解除关联或备份配置。",
"confirm_delete_action": "坚持删除",
"confirm_delete_cancel": "放弃删除",
"custom_skill": "自定义 Skill",
"custom_skill_desc": "通过描述 Skill 需求,智能生成 Skill 大纲及框架",
"import_skill_zip": "导入压缩包",
"related_count": "关联应用",
"related_apps_hidden": "其余 {{count}} 个应用无权限查看",
"creator_tooltip": "创建人:{{creator}}",
"update_time_tooltip": "更新时间:{{updateTime}}",
"permission_settings": "权限设置",
"export_config": "导出配置",
"create_folder": "新建文件夹",
"unnamed_skill": "未命名",
"skill_name_placeholder": "请输入 Skill 名称",
"skill_avatar_and_name": "头像 & 名称",
......@@ -28,7 +20,6 @@
"skill_requirement_tooltip_title": "示例:",
"skill_requirement_tooltip_example": "## 目标\n根据会议记录自动生成会议纪要。\n\n## 流程\n1. 识别会议主题和参与人员\n2. 提取讨论的关键要点\n3. 整理出明确的结论和决策\n4. 提取需要跟进的行动项,并标注负责人(如有)\n\n## 要求\n1. 结果以结构化格式输出\n2. 包含:会议主题、参与人、讨论要点、决策结论、行动项\n3. 内容简洁清晰,避免冗余描述",
"skill_requirement_default": "## 目标\n\n## 流程\n\n## 要求",
"ai_optimize": "AI 优化",
"import_skill": "导入技能",
"import_skill_select_file": "上传技能",
"import_skill_file_type_tip": "支持 {{ext}} 格式",
......@@ -43,17 +34,13 @@
"copy_failed": "复制失败",
"edit_success": "编辑成功",
"edit_failed": "编辑失败",
"move_success": "移动成功",
"move_failed": "移动失败",
"export_success": "导出成功",
"export_failed": "导出失败",
"deploy_success": "发布成功",
"deploy_failed": "发布失败",
"copy_skill_confirm": "系统将为您创建一个相同配置技能,但权限不会进行复制,请确认!",
"detail_tab_config": "Skill 配置",
"detail_tab_preview": "运行预览",
"history_versions": "历史版本",
"exit_tips": "您的更改尚未保存,「直接退出」将不会保存您的编辑记录。",
"select_skill": "选择 Skill",
"associated_skills": "关联 Skill",
"skill_deleted": "技能已删除",
......@@ -66,7 +53,6 @@
"sandbox_operation_system_not_configured_title": "未配置虚拟机",
"sandbox_operation_system_not_configured_content": "skill操作依赖虚拟机环境。当前系统未配置虚拟机,暂时无法使用相关功能,请联系管理员配置。",
"sandbox_plan_not_supported_title": "套餐不支持功能",
"sandbox_plan_not_supported_content": "当前套餐不支持虚拟机功能,请升级套餐后继续使用。",
"sandbox_skill_plan_not_supported_content": "skill运行依赖虚拟机环境。当前套餐不支持虚拟机功能,请升级套餐后继续使用。",
"sandbox_operation_plan_not_supported_content": "skill操作依赖虚拟机环境。当前套餐不支持虚拟机功能,请升级套餐后继续使用。",
"sandbox_upgrade_action": "去升级",
......@@ -86,7 +72,6 @@
"sandbox_failed": "沙箱创建失败: {{message}}",
"sandbox_retry": "重试",
"sandbox_error_title": "沙箱创建失败",
"sandbox_debug_loading_toast": "沙箱启动中,请稍后再发送消息",
"no_current_version": "Skill 暂无可用版本,请重新创建或导入后再编辑。",
"permission.des.read": "可查看 Agent Skill",
"permission.des.write": "可编辑 Agent Skill",
......
......@@ -69,6 +69,8 @@
"enter_comment": "输入注释",
"error_catch": "报错捕获",
"error_text": "错误信息",
"http_full_error": "完整错误",
"http_full_error_description": "HTTP 请求失败时的完整错误对象,包含 message、status、code、data 等字段。",
"execute_different_branches_based_on_conditions": "根据一定的条件,执行不同的分支。",
"extraction_requirements_description": "提取要求描述",
"extraction_requirements_description_detail": "给AI一些对应的背景知识或要求描述,引导AI更好的完成任务。\\n该输入框可使用全局变量。",
......@@ -170,7 +172,6 @@
"parallel_full_results": "完整结果",
"parallel_full_results_desc": "与输入数组等长的结果数组,每项形如 {success, message, data}:成功时 success=true、message 为空、data 为输出值;失败时 success=false、message 为错误信息、data 为 null。",
"parallel_run": "并行执行",
"parallel_run_end_intro": "选择变量,作为并行执行的结果输出",
"parallel_run_execution_logic": "执行逻辑",
"parallel_run_max_concurrency": "最大并发数",
"parallel_run_max_concurrency_tip": "同时并行执行的最大任务数,范围 1~上限值(默认 5)。",
......@@ -204,12 +205,6 @@
"reasoning_content": "思考过程",
"regex": "正则",
"reply_text": "回复的文本",
"response.Code log": "Log 日志",
"response.Custom inputs": "自定义输入",
"response.Custom outputs": "自定义输出",
"response.Error": "错误信息",
"response.Read file result": "文档解析结果预览",
"response.read files": "解析的文档",
"search_query": "检索内容",
"select_an_application": "选择一个应用",
"select_another_application_to_call": "可以选择一个其他应用进行调用",
......@@ -238,7 +233,6 @@
"to_add_node": "添加节点",
"to_app_detail": "前去编辑应用",
"to_connect_node": "连接节点",
"tool.tool_result": "工具运行结果",
"tool_active_config": "工具激活",
"tool_active_config_type": "工具激活: {{type}}",
"tool_call_termination": "工具调用终止",
......@@ -252,7 +246,6 @@
"tool_params.params_description_placeholder": "姓名/年龄/SQL 语句...",
"tool_params.params_name": "参数名",
"tool_params.params_name_placeholder": "name/age/sql",
"tool_params.tool_params_result": "参数配置结果",
"tool_raw_response_description": "工具的原始响应",
"trigger_after_application_completion": "将在应用完全结束后触发",
"unFoldAll": "全部展开",
......
......@@ -79,7 +79,6 @@
"timespan_label": "時間顆粒度",
"timespan_minute": "分鐘",
"total_call_volume": "調用總量",
"use_in_eval": "用於應用評測",
"view_chart": "圖表",
"view_table": "表格",
"vlm_model": "圖片理解模型",
......@@ -103,7 +102,6 @@
"model.censor_tip": "如果需要進行敏感校驗,則開啟該開關",
"model.charsPointsPrice": "模型綜合價格",
"model.charsPointsPrice_tip": "將模型輸入和輸出合併起來進行 Token 計費,語言模型如果單獨設定了輸入和輸出計費,則按輸入和輸出分別計算",
"model.dataset_process": "用於知識庫文件處理",
"model.defaultConfig": "額外 Body 參數",
"model.defaultConfig_tip": "每次請求時候,都會攜帶該額外 Body 參數",
"model.default_config": "Body 額外欄位",
......@@ -117,9 +115,6 @@
"model.delete_model_confirm": "確認刪除該模型?",
"model.edit_model": "模型參數編輯",
"model.feature_config_section": "功能配置",
"model.function_call": "支援函式呼叫",
"model.function_call_tip": "如果模型支援函式呼叫,則開啟該開關。\n工具呼叫優先權更高。",
"model.input_price_tip": "語言模型輸入價格,如果設定了該項,則模型綜合價格會失效",
"model.json_config": "設定檔",
"model.json_config_confirm": "確認使用該設定進行覆蓋?",
"model.json_config_tip": "透過設定檔設定模型,點選確認後,會使用輸入的設定進行全量覆蓋,請確保設定檔輸入正確。\n建議操作前,複製目前設定檔進行備份。",
......@@ -129,18 +124,11 @@
"model.model_id_tip": "模型的唯一標識,也就是實際請求到服務商 model 的值,需要與 OneAPI 管道中的模型對應。",
"model.normalization": "歸一化處理",
"model.normalization_tip": "如果 Embedding API 未對向量值進行歸一化,可以啟用該開關,系統會進行歸一化處理。\n未歸一化的 API,表現為向量檢索得分會大於 1。",
"model.output_price_tip": "語言模型輸出價格,如果設定了該項,則模型綜合價格會失效",
"model.param_name": "參數名稱",
"model.params_config_section": "參數配置",
"model.price_config_section": "價格配置",
"model.price_tier": "梯度",
"model.price_tier_max_required": "除了最後一個梯度,其餘都需要填寫區間上限",
"model.price_tier_open_ended": "預設無窮",
"model.price_tier_prev_range_required": "請先補齊上一梯度的區間上限",
"model.price_tier_price_required": "每個價格梯度都需要至少設定一個輸入價或輸出價",
"model.price_tier_range_invalid": "價格梯度區間設定有誤,請確認區間上限有持續遞增",
"model.price_tiers": "模型價格梯度",
"model.price_tiers_tip": "依輸入 Token 所在區間匹配一個梯度,再使用該梯度的輸入價格和輸出價格分別計費。區間起點會依上一梯度自動遞增,最後一個梯度上限留空表示及以上。",
"model.reasoning": "模型支援思考",
"model.reasoning_tip": "例如 Deepseek-reasoner,可以輸出思考過程。",
"model.reasoning_effort": "支援思考配置",
......@@ -149,20 +137,14 @@
"model.request_url": "自訂請求地址",
"model.request_url_tip": "如果填寫該值,則會直接向該地址發起請求,不經過模型渠道的配置。\n\n接口需要遵循 OpenAI 的 API格式,並填寫完整請求地址,例如:\nLLM: {{host}}/v1/chat/completions\nEmbedding: {{host}}/v1/embeddings\nSTT: {{host}}/v1/audio/transcriptions\nTTS: {{host}}/v1/audio/speech\nRerank: {{host}}/v1/rerank",
"model.response_format": "響應格式",
"model.response_format_placeholder": "自訂參數",
"model.show_stop_sign": "展示停止序列參數",
"model.show_top_p": "展示 Top-p 參數",
"model.test_mode": "標記為測試模型",
"model.test_mode_tip": "開啟後,該模型在選擇時候,將會增加 Beta 標誌。",
"model.test_model": "模型測試",
"model.tool_choice": "支援工具呼叫",
"model.tool_choice_tag": "工具呼叫",
"model.tool_choice_tip": "如果該模型支援工具呼叫,則開啟該開關",
"model.used_in_classify": "用於問題分類",
"model.used_in_extract_fields": "用於文字擷取",
"model.used_in_tool_call": "用於工具呼叫節點",
"model.vision": "支援圖片識別",
"model.vision_tag": "視覺",
"model.vision_tip": "如果模型支援圖片識別,則開啟該開關。",
"model.embedding_vision_tip": "開啟後該索引模型可接收圖片輸入,並用於圖片向量索引和圖搜圖。",
"model.voices": "聲音角色",
......
......@@ -64,7 +64,7 @@
"dataset.folder_dataset": "資料夾",
"dataset.website_dataset": "網站同步",
"dataset.yuque_dataset": "語雀知識庫",
"skill.folder": "技能資料夾",
"skill.folder": "資料夾",
"skill.skill": "技能",
"delete": "刪除",
"delete_api_key": "刪除api密鑰",
......@@ -235,8 +235,6 @@
"search_test": "搜索測試",
"set_invoice_header": "設置發票抬頭",
"set_name_avatar": "團隊頭像",
"skill.folder": "資料夾",
"skill.skill": "技能",
"sync_immediately": "立即同步",
"sync_member_failed": "同步成員失敗",
"sync_member_success": "同步成員成功",
......@@ -272,7 +270,6 @@
"user_team_invite_member": "邀請成員",
"user_team_leave_team": "離開團隊",
"user_team_leave_team_failed": "離開團隊失敗",
"waiting": "待接受",
"copy_skill": "複製技能",
"create_skill": "建立技能",
"create_skill_folder": "建立技能資料夾",
......
......@@ -8,7 +8,6 @@
"llm_compress_text": "文件內容壓縮",
"tool_response_compress": "工具回應壓縮",
"compress_llm_messages": "AI 歷史記錄壓縮",
"context_pick": "上下文選取",
"count": "運行次數",
"dashboard": "儀表板",
"dataset_chunk_selection": "知識庫分塊裁切",
......@@ -18,8 +17,6 @@
"duration_seconds": "時長(秒)",
"embedding_index": "索引生成",
"evaluation": "應用評測",
"every_day": "天",
"every_month": "月",
"export_confirm_tip": "目前共 {{total}} 筆使用記錄,確認匯出?",
"export_title": "時間,成員,類型,項目名,AI 積分消耗",
"feishu": "飛書",
......
......@@ -112,14 +112,12 @@
"custom_plugin_config_success": "配置成功",
"custom_plugin_config_title": "{{name}}配置",
"custom_plugin_create": "新建外掛",
"custom_plugin_default_installed_label": "預設安裝",
"custom_plugin_delete_success": "刪除成功",
"custom_plugin_has_token_fee_label": "是否收取 Token 費用",
"custom_plugin_intro_label": "介紹",
"custom_plugin_intro_placeholder": "為這個應用程式新增一個介紹",
"custom_plugin_name_label": "取個名字",
"custom_plugin_name_required": "應用程式名稱不能為空",
"custom_plugin_parse_error": "插件解析失敗",
"custom_plugin_plugin_status_label": "外掛狀態",
"custom_plugin_tags_label": "標籤",
"custom_plugin_tags_max_limit": "最多只能選擇3個標籤",
......@@ -135,13 +133,10 @@
"dataset_create_failed": "知識庫創建失敗",
"dataset_create_success": "知識庫創建成功,正在後台索引文件",
"dataset_empty_tips": "你還沒有知識庫,先創建一個吧",
"dataset_search_tool_description": "呼叫「語意搜尋」和「全文搜尋」功能,從「知識庫」中尋找可能與問題相關的參考內容。優先呼叫這個工具來協助回答使用者的問題。",
"dataset_select": "可選知識庫",
"delete_all_input_guide_confirm": "確定要清除輸入導引詞彙庫嗎?",
"deleted": "應用已刪除",
"document_quote": "文件引用",
"document_quote_tip": "通常用於接受使用者上傳的文件內容(這需要文件解析),也可以用於引用其他字串資料。",
"edit_app": "應用詳情",
"edit_info": "編輯資訊",
"empty_folder": "(空文件夾)",
"empty_tool_tips": "請在左側添加工具",
......@@ -192,10 +187,7 @@
"llm_multimodal_select_placeholder": "請選擇多模態能力",
"llm_multimodal_video": "視頻",
"llm_not_support_multimodal": "這個模型不支援多模態識別",
"llm_not_support_vision": "這個模型不支援圖片辨識",
"llm_use_audio": "音頻辨識",
"llm_use_multimodal": "多模態識別",
"llm_use_video": "視頻辨識",
"llm_use_vision": "圖片辨識",
"local_upload": "本地上傳",
"log_detail": "日誌詳情",
......@@ -277,7 +269,6 @@
"max_histories_number": "記憶輪數",
"max_histories_number_tip": "模型最多攜帶多少輪對話進入記憶中,如果記憶超出模型上下文,系統會強制截斷。\n所以儘管設定 30 輪對話,實際運作時候,不一定會達到 30 輪。",
"max_tokens": "回覆上限",
"module.Custom Title Tip": "這個標題會顯示在對話過程中",
"module.No Modules": "找不到外掛",
"modules.Title is required": "模組名稱不能空白",
"month.unit": "號",
......@@ -286,7 +277,6 @@
"my_agents": "我的 agents",
"new_input_guide_lexicon": "新增詞彙庫",
"no_mcp_tools_list": "暫無數據,需先解析 MCP 地址",
"node_not_intro": "這個節點沒有介紹",
"not_json_file": "請選擇 JSON 檔案",
"not_the_newest": "非最新版",
"open_auto_execute": "啟用自動執行",
......@@ -307,6 +297,8 @@
"plugin_offline_url": "網址",
"publish.chat_desc": "用戶登錄門戶後可直接與應用對話",
"publish.playground_link": "跳轉鏈接",
"publish.show_whole_response": "顯示完整回應",
"publish.show_whole_response_tip": "開啟後,聊天頁面可查看每個模組的詳細回應流程",
"publish_channel": "發布通道",
"publish_success": "發布成功",
"question_guide_tip": "對話結束後,會為你產生 3 個引導性問題。",
......@@ -339,8 +331,6 @@
"space_to_expand_folder": "按\"空格\"展開文件夾",
"stop_sign": "停止序列",
"stop_sign_placeholder": "多個序列號透過 | 隔開,例如:aaa|stop",
"stream_response": "流輸出",
"stream_response_tip": "關閉該開關​​,可以強制模型使用非流模式,並且不會直接進行內容輸出。\n可在 AI 回覆的輸出中,取得本次模型輸出的內容進行二次處理。",
"sync_log_keys_popover_text": "當前字段配置僅對個人生效,是否需要保存至團隊配置?",
"sync_team_app_log_keys": "還原成團隊配置",
"system_secret": "系統密鑰",
......@@ -399,7 +389,6 @@
"toolkit_call_points_label": "調用積分",
"toolkit_config_system_key": "是否配置系統密鑰",
"toolkit_contribute_resource": "貢獻資源",
"toolkit_default_install": "默認安裝",
"toolkit_hide_tags": "隱藏標籤",
"toolkit_hide_tags_tip": "擁有以下標籤的使用者將完全看不到此工具",
"toolkit_id": "ID",
......@@ -415,7 +404,6 @@
"toolkit_no_call_points": "該工具無需調用積分",
"toolkit_no_plugins": "暫無插件",
"toolkit_no_runtime_config": "暫無執行階段配置",
"toolkit_official": "官方",
"toolkit_open_marketplace": "打開資源市場",
"toolkit_outputs": "輸出參數",
"toolkit_params_description": "參數說明",
......@@ -428,26 +416,10 @@
"toolkit_promote_tags_tip": "擁有以下標籤的使用者會看到「推薦」標識",
"toolkit_reset_runtime_config_confirm": "確認恢復預設執行階段配置?",
"toolkit_runtime_config": "執行階段配置",
"toolkit_runtime_config_idle_timeout": "節點閒置時間(ms)",
"toolkit_runtime_config_idle_timeout_tip": "工作節點閒置超過該時間後可被回收",
"toolkit_runtime_config_invalid_integer": "{{label}} 需要填寫整數",
"toolkit_runtime_config_invalid_number": "{{label}} 需要填寫有效數字",
"toolkit_runtime_config_max_concurrent_requests_per_pod": "每節點最大並發數",
"toolkit_runtime_config_max_concurrent_requests_per_pod_tip": "單個工作節點可同時處理的最大請求數",
"toolkit_runtime_config_max_pods": "最大工作節點數",
"toolkit_runtime_config_max_pods_tip": "插件執行階段允許啟動的最大工作節點數",
"toolkit_runtime_config_max_queue_size": "最大排隊佇列長度",
"toolkit_runtime_config_max_queue_size_tip": "等待可用工作節點的最大請求佇列長度",
"toolkit_runtime_config_max_requests_per_pod": "每節點最大請求數",
"toolkit_runtime_config_max_requests_per_pod_tip": "單個工作節點累計處理請求達到該數量後會被替換",
"toolkit_runtime_config_min_pods": "最小工作節點數",
"toolkit_runtime_config_min_pods_over_max_pods": "最小工作節點數不能大於最大工作節點數",
"toolkit_runtime_config_min_pods_tip": "插件執行階段保留的最小工作節點數",
"toolkit_runtime_config_min_value": "{{label}} 不能小於 {{min}}",
"toolkit_runtime_config_pod_timeout": "節點逾時時間(ms)",
"toolkit_runtime_config_pod_timeout_tip": "單次節點調用的最大等待時間",
"toolkit_runtime_config_queue_timeout": "排隊逾時時間",
"toolkit_runtime_config_queue_timeout_tip": "請求在佇列中的最長等待時間",
"toolkit_search_placeholder": "搜索工具名稱",
"toolkit_select_app": "選擇現有應用",
"toolkit_select_user_tags": "選擇使用者標籤",
......@@ -468,7 +440,6 @@
"toolkit_tags_manage_title": "工具標籤管理",
"toolkit_tags_name": "標籤名稱",
"toolkit_tags_total": "共 {{count}} 個標籤",
"toolkit_token_fee": "Token 積分",
"toolkit_token_fee_tip": "開啟該開關後,用戶使用該插件,需要支付插件中Token的積分,並且同時會收取調用積分",
"toolkit_tool_config": "{{name}}配置",
"toolkit_tool_list": "工具列表",
......@@ -478,9 +449,7 @@
"toolkit_uninstalled": "未安裝",
"toolkit_updatable": "可更新",
"toolkit_updatable_plugins": "可更新的外掛程式",
"toolkit_update_failed": "更新失敗",
"toolkit_user_guide": "使用說明",
"toolkit_version_description": "版本描述",
"toolkit_version_info": "版本資訊",
"tools": "工具",
"tools_no_description": "這個工具沒有介紹~",
......@@ -505,7 +474,6 @@
"type.hidden": "隱藏應用",
"type_http_tool_set_intro": "批量導入 API 工具",
"type_mcp_intro": "連接 MCP 服務",
"type_not_recognized": "模板應用程式類型錯誤",
"type_plugin_description": "一鍵輸出指定結果。",
"type_plugin_intro": "常用於封裝工作流",
"type_simple_description": "最基礎的對話應用,無需複雜配置,快速創建和使用。",
......@@ -515,12 +483,8 @@
"unnamed_app": "未命名",
"upgrade": "去升級",
"upload_file_exists_filtered": "已自動過濾重複檔案",
"upload_file_extension_type_canSelectAudio": "音頻",
"upload_file_extension_type_canSelectCustomFileExtension": "自定義文件擴展類型",
"upload_file_extension_type_canSelectCustomFileExtension_placeholder": "文件擴展名",
"upload_file_extension_type_canSelectFile": "文檔",
"upload_file_extension_type_canSelectImg": "圖片",
"upload_file_extension_type_canSelectVideo": "視頻",
"upload_file_extension_types": "支持上傳的類型",
"upload_file_max_amount": "最大檔案數量",
"upload_file_max_amount_tip": "單輪對話中最大上傳檔案數量",
......
{
"AI_input_is_empty": "傳送至 AI 節點的內容為空",
"Delete_all": "清除所有詞彙",
"LLM_model_response_empty": "模型響應為空,請查看模型詳情請求",
"no_output_content": "應用無輸出內容",
"Next": "下一個",
......@@ -18,12 +17,10 @@
"chat.quote.deleted": "該資料已被刪除~",
"chat.waiting_for_response": "正在努力思考中",
"chat_history": "對話紀錄",
"chat_input_guide_lexicon_is_empty": "尚未設定詞彙庫",
"chat_test_app": "除錯-{{name}}",
"citation_card_prefix": "共 ",
"citation_card_suffix": " 筆引用",
"citation_card_title": "共 {{num}} 筆引用",
"citations": "{{num}} 筆引用",
"clear_input_value": "清空輸入",
"click_to_add_url": "輸入文件鏈接",
"completion_finish_abnormal_close": "異常斷開",
......@@ -33,40 +30,23 @@
"completion_finish_function_call": "函式呼叫",
"completion_finish_length": "超出回覆限制",
"completion_finish_null": "未知",
"completion_finish_reason": "完成原因",
"completion_finish_stop": "正常完成",
"completion_finish_tool_calls": "工具呼叫",
"feedback_helpful": "有幫助",
"feedback_unhelpful": "沒有幫助",
"compress_llm_messages": "上下文壓縮",
"compress_llm_usage": "文本壓縮輸入輸出 tokens",
"compress_llm_usage_point": "文本壓縮積分消耗",
"config_input_guide": "設定輸入導引",
"config_input_guide_lexicon": "設定詞彙庫",
"config_input_guide_lexicon_title": "設定詞彙庫",
"confirm_clear_input_value": "確認清空表單內容?\n將會恢復默認值!",
"mobile_clear_history_confirm_title": "確定清空歷史記錄?",
"mobile_clear_history_confirm_tip": "此操作不可撤銷",
"confirm_plan": "確認計劃",
"confirm_to_clear_share_chat_history": "確認清空所有聊天記錄?",
"content_empty": "無內容",
"context_pick": "上下文選取",
"continue_run": "繼續運行",
"csv_input_lexicon_tip": "僅支援 CSV 批次匯入,點選下載範本",
"custom_input_guide_url": "自訂詞彙庫網址",
"data_source": "來源知識庫:{{name}}",
"dataset_quote_type error": "知識庫引用類型錯誤,正確類型:{ datasetId: string }[]",
"dataset_search": "知識庫檢索",
"delete_all_input_guide_confirm": "確定要清除輸入導引詞彙庫嗎?",
"download_all_files": "下載所有",
"download_chunks": "下載資料",
"empty_directory": "此目錄中已無項目可選~",
"edit_message": "編輯訊息",
"error_message": "錯誤訊息",
"file_amount_over": "超出檔案數量上限 {{max}}",
"file_compress_text": "文件內容壓縮",
"file_input": "檔案輸入",
"file_input_tip": "可透過「外掛程式啟動」節點的「檔案連結」取得對應檔案的連結",
"history_generating": "思考中",
"go_to_dataset": "前往知識庫",
"history_slider.home.title": "聊天",
......@@ -75,65 +55,106 @@
"home.tools": "工具:{{num}}",
"in_progress": "進行中",
"input_guide": "輸入導引",
"input_guide_lexicon": "詞彙庫",
"input_guide_tip": "您可以設定一些預設問題。當使用者輸入問題時,系統會從這些預設問題中提供相關問題作為提示。",
"input_placeholder_phone": "請輸入問題",
"insert_input_guide,_some_data_already_exists": "偵測到重複資料,已自動過濾,共插入 {{len}} 筆資料",
"internal_variables_tip": "內部變量僅調試時可見",
"invalid_share_url": "無效的分享鏈接",
"is_chatting": "對話進行中...請稍候",
"llm_request_ids": "LLM 請求詳情",
"llm_tokens": "LLM tokens",
"log.error.collapse": "折疊",
"log.error.error_prefix": "報錯信息",
"log.error.expand": "展開剩餘",
"log.feedback.hide_feedback": "隱藏反饋",
"log.feedback.mark_as_read": "標為已讀",
"log.feedback.read": "已讀",
"log.feedback.show_feedback": "顯示反饋",
"master_agent_call": "主 agent 調用",
"module_runtime_and": "模組執行總時間",
"new_input_guide_lexicon": "新增詞彙庫",
"no_workflow_response": "無工作流程資料",
"plan_agent": "規劃 Agent",
"plan_check_tip": "規劃已生成,您可繼續對話來微調當前規劃",
"plugins_output": "外掛程式輸出",
"press_to_speak": "按住說話",
"processed": "已處理",
"processing": "處理中",
"query_extension_IO_tokens": "問題最佳化輸入/輸出 Tokens",
"query_extension_result": "問題優化結果",
"question_tip": "由上至下,各個模組的回應順序",
"quote_result_notice": "僅代表本次搜尋時的結果,請注意資訊的時效性",
"quote_source_title": "引用來源",
"read_file": "文件解析",
"read_raw_source": "開啟原文",
"reasoning_content": "思考過程",
"reflection_agent": "反思 Agent",
"release_cancel": "鬆開取消",
"release_send": "鬆開傳送,上滑取消",
"response.child total points": "子流程積分消耗",
"response.body": "請求體",
"response.child_total_points": "子流程積分消耗",
"response.click_to_expand": "點擊展開",
"response.code_log": "程式碼日誌",
"response.complete_response": "完整回應",
"response.completion_finish_reason": "結束原因",
"response.compress_llm_usage": "問題最佳化模型輸入/輸出 Tokens",
"response.compress_llm_usage_point": "問題最佳化模型積分消耗",
"response.context_total_length": "上下文總長度",
"response.cq": "問題分類列表",
"response.cq_result": "分類結果",
"response.custom_inputs": "自訂輸入",
"response.custom_outputs": "自訂輸出",
"response.dataset_concat_length": "合併總數",
"response.embedding_model": "向量模型",
"response.embedding_model_tokens": "向量模型 Tokens",
"response.error": "錯誤訊息",
"response.extension_model": "問題最佳化模型",
"response.extract_description": "提取背景描述",
"response.extract_result": "提取結果",
"response.form_input_result": "表單輸入結果",
"response.headers": "請求頭",
"response.history_preview": "記錄預覽(僅顯示部分內容)",
"response.http_error_result": "失敗回應",
"response.http_result": "回應內容",
"response.hybrid_weight": "語義檢索 : 全文檢索 = {{emb}} : {{text}}",
"response.if_else_result": "條件判斷結果",
"response.limit": "單次搜尋上限",
"response.llm_request_ids": "模型請求 ID",
"response.llm_tokens": "模型 Tokens",
"response.loop_input": "輸入陣列",
"response.loop_input_element": "輸入陣列元素",
"response.loop_output": "輸出陣列",
"response.loop_output_element": "輸出陣列元素",
"response.loop_run_history": "迴圈歷史",
"response.loop_run_input": "迴圈輸入",
"response.loop_run_iterations": "迴圈輪數",
"response.max_tokens": "最大回應 Token 數",
"response.model": "模型",
"response.no_workflow_response": "暫無工作流回應",
"response.node_inputs": "節點輸入",
"response.node_name": "名稱",
"response_embedding_model": "向量模型",
"response_embedding_model_tokens": "向量模型 Tokens",
"response_hybrid_weight": "語義檢索 : 全文檢索 = {{emb}} : {{text}}",
"response_rerank_tokens": "重排模型 Tokens",
"response_search_results": "搜索結果({{len}})",
"response.parallel_input": "並行輸入陣列",
"response.parallel_output": "並行成功結果",
"response.parallel_run_detail": "並行執行明細",
"response.params": "請求參數",
"response.query": "問題/搜尋詞",
"response.query_extension_result": "問題優化結果",
"response.question_tip": "由上至下,各個模組的回應順序",
"response.read_complete_response": "檢視詳細資料",
"response.read_complete_response_tips": "點選檢視詳細流程",
"response.read_file_result": "檔案解析結果預覽",
"response.read_files": "解析的檔案",
"response.reasoning_content": "思考過程",
"response.rerank_tokens": "重排模型 Tokens",
"response.search_mode": "搜尋模式",
"response.search_results": "搜索結果({{len}})",
"response.search_using_rerank": "結果重新排名",
"response.similarity": "相似度",
"response.status": "狀態",
"response.step_query": "目前步驟問題",
"response.temperature": "溫度",
"response.text_output": "文字輸出",
"response.tool_call_tokens": "工具呼叫 Token 消耗",
"response.tool_input": "工具輸入",
"response.tool_output": "工具輸出",
"response.tool_params_result": "工具參數結果",
"response.tool_result": "工具回應",
"response.total_points": "總積分消耗",
"response.update_var_result": "變數更新結果(依序顯示多個變數更新結果)",
"response.user_select_result": "使用者選擇結果",
"resume_placeholder_generating": "生成中",
"resume_unavailable": "目前無法恢復正在產生的串流內容,請稍後再查看最終回答。",
"resume_unavailable_memory_pressure": "目前服務資源緊張,暫時不提供串流恢復。請稍後再查看最終回答。",
"sandbox_audio_not_supported": "目前瀏覽器不支援音訊播放。",
"sandbox_binary_file_no_preview": "無法預覽該文件,請直接下載查看",
"sandbox_collapse_all": "全部折疊",
"sandbox_confirm_delete_action": "確認刪除",
"sandbox_confirm_delete_content": "確定要刪除 <name>{{name}}</name> 嗎?此操作不可撤銷,並將永久刪除所有包含的子文件。",
"sandbox_confirm_delete_title": "確認刪除",
"sandbox_connect_failed_max_attempts": "連接沙箱失敗次數過多,已停止嘗試。",
"sandbox_refresh_page_to_retry": "請重新整理頁面後重試。",
"sandbox_copy": "複製",
"sandbox_copy_failed": "複製失敗",
"sandbox_create_failed": "新建失敗",
"sandbox_delete": "刪除",
"sandbox_delete_failed": "刪除失敗",
......@@ -145,7 +166,6 @@
"sandbox_html_preview": "預覽",
"sandbox_html_preview_failed": "預覽連結產生失敗",
"sandbox_load_failed": "載入目錄失敗",
"sandbox_loading_files": "文件載入中...",
"sandbox_starting": "沙盒啟動中(1/2)",
"sandbox_file_loading": "文件載入中(2/2)",
"sandbox_move_failed": "移動失敗",
......@@ -156,30 +176,14 @@
"sandbox_new_folder": "新建資料夾",
"sandbox_new_folder_placeholder": "新建資料夾...",
"sandbox_no_file": "虛擬機器裡還沒有文件",
"sandbox_open_terminal": "開啟終端機",
"sandbox_preview": "預覽",
"sandbox_rename": "重新命名",
"sandbox_rename_failed": "重新命名失敗",
"sandbox_root_directory": "根目錄",
"sandbox_search_files": "搜尋文件",
"sandbox_search_workspace_files": "輸入以搜尋工作區文件...",
"sandbox_select_file_edit": "選擇一個文件進行編輯",
"sandbox_source": "原文",
"sandbox_save_failed": "儲存文件失敗",
"sandbox_status_checkExisting": "檢查沙箱狀態...",
"sandbox_status_connecting": "連接已有沙箱...",
"sandbox_status_creatingContainer": "啟動沙箱(約 60 秒)...",
"sandbox_status_deployingSkills": "部署技能 {{skillName}}...",
"sandbox_status_downloadingPackage": "下載技能套件 {{skillName}}...",
"sandbox_status_extractingPackage": "解壓縮技能套件 {{skillName}}...",
"sandbox_status_failed": "沙箱啟動失敗",
"sandbox_status_fetchSkills": "載入技能資訊...",
"sandbox_status_lazyInit": "初始化沙箱...",
"sandbox_status_ready_cold": "沙箱就緒",
"sandbox_status_ready_warm": "沙箱已連接",
"sandbox_status_uploadingPackage": "上傳技能套件 {{skillName}}...",
"sandbox_terminal": "終端機",
"sandbox_toggle_terminal": "切換終端機面板",
"sandbox_upload_failed": "上傳失敗",
"sandbox_upload_file": "上傳文件",
"sandbox_upload_too_large": "文件過大",
......@@ -244,19 +248,13 @@
"sidebar.favourite_apps": "精選應用",
"sidebar.home": "首頁",
"sidebar.team_apps": "團隊應用",
"skill_calling": "正在呼叫技能:{{name}}",
"source_cronJob": "定時執行",
"start_chat": "開始對話",
"step_query": "任務標題",
"stream_output": "串流輸出",
"task_has_continued": "任務已繼續運行",
"tool_input": "工具輸入",
"tool_output": "工具輸出",
"tool_response_compress": "工具回應壓縮",
"unsupported_file_type": "不支援的檔案類型",
"variable_invisable_in_share": "外部變量在免登錄鏈接中不可見",
"view_all_citations": "查看全部",
"view_citations": "檢視引用",
"run_detail": "運行詳情",
"web_site_sync": "網站同步"
"run_detail": "運行詳情"
}
......@@ -101,7 +101,6 @@
"add_new_param": "新增參數",
"add_success": "新增成功",
"aipoint_desc": "每次呼叫 AI 模型時,都會消耗一定的 AI 點數(類似於 Token)。點選可檢視詳細計算規則。",
"all_quotes": "全部引用",
"all_result": "完整結果",
"app_evaluation": "應用評測(Beta)",
"app_icon_and_name": "圖示",
......@@ -126,7 +125,6 @@
"chose_condition": "選擇條件",
"chosen": "已選擇",
"classification": "分類",
"click_drag_tip": "點選可拖曳",
"click_select_avatar": "點選選擇頭像",
"click_to_copy": "點選複製",
"click_to_resume": "點選繼續",
......@@ -178,7 +176,6 @@
"code_error.skill_error.invalid_skill_id": "無效的技能 ID",
"code_error.skill_error.missing_image_repository": "提供 image 時必須指定 image.repository",
"code_error.skill_error.missing_model": "提供需求描述時必須指定 model",
"code_error.skill_error.name_exists": "該目錄下已存在同名技能",
"code_error.skill_error.no_fields_to_update": "沒有需要更新的欄位",
"code_error.skill_error.no_storage": "技能沒有存儲,無法複製",
"code_error.skill_error.not_exist": "技能不存在",
......@@ -296,7 +293,6 @@
"core.app.edit.Query extension background prompt": "對話背景描述",
"core.app.edit.Query extension background tip": "描述目前對話的範圍,協助 AI 完成並擴展目前問題。填寫的內容通常是為該助手所用",
"core.app.edit_content": "編輯應用程式資訊",
"core.app.error.App name can not be empty": "應用程式名稱不能為空",
"core.app.error.Get app failed": "取得應用程式失敗",
"core.app.feedback.Custom feedback": "自訂回饋",
"core.app.feedback.close custom feedback": "關閉回饋",
......@@ -370,7 +366,6 @@
"core.chat.Pin": "釘選",
"core.chat.Question Guide": "猜你想問",
"core.chat.Quote": "引用",
"core.chat.Quote Amount": "知識庫引用({{amount}} 筆)",
"core.chat.Recent use": "最近使用",
"core.chat.Record": "語音輸入",
"core.chat.Restart": "重新開始對話",
......@@ -402,44 +397,10 @@
"core.chat.markdown.Edit Question": "編輯問題",
"core.chat.markdown.Quick Question": "點我立即發問",
"core.chat.markdown.Send Question": "傳送問題",
"core.chat.quote.Quote Tip": "此處僅顯示實際引用內容,若資料有更新,此處不會即時更新",
"core.chat.quote.Read Quote": "檢視引用",
"core.chat.response.Complete Response": "完整回應",
"core.chat.response.Extension model": "問題最佳化模型",
"core.chat.response.Read complete response": "檢視詳細資料",
"core.chat.response.Read complete response tips": "點選檢視詳細流程",
"core.chat.response.Tool call tokens": "工具呼叫 Token 消耗",
"core.chat.response.context total length": "上下文總長度",
"core.chat.response.loop_input": "輸入陣列",
"core.chat.response.loop_input_element": "輸入陣列元素",
"core.chat.response.loop_output": "輸出陣列",
"core.chat.response.loop_output_element": "輸出陣列元素",
"core.chat.response.loop_run_history": "迴圈歷史",
"core.chat.response.loop_run_input": "迴圈輸入",
"core.chat.response.loop_run_iterations": "迴圈輪數",
"core.chat.response.module cq": "問題分類列表",
"core.chat.response.module cq result": "分類結果",
"core.chat.response.module extract description": "提取背景描述",
"core.chat.response.module extract result": "提取結果",
"core.chat.response.module historyPreview": "記錄預覽(僅顯示部分內容)",
"core.chat.response.module http result": "回應內容",
"core.chat.response.module if else Result": "條件判斷結果",
"core.chat.response.module limit": "單次搜尋上限",
"core.chat.response.module maxToken": "最大回應 Token 數",
"core.chat.response.module model": "模型",
"core.chat.response.module query": "問題/搜尋詞",
"core.chat.response.module similarity": "相似度",
"core.chat.response.module temperature": "溫度",
"core.chat.response.parallel_input": "並行輸入陣列",
"core.chat.response.parallel_output": "並行成功結果",
"core.chat.response.parallel_run_detail": "並行執行明細",
"core.chat.response.search using reRank": "結果重新排名",
"core.chat.response.text output": "文字輸出",
"core.chat.response.update_var_result": "變數更新結果(依序顯示多個變數更新結果)",
"core.chat.response.user_select_result": "使用者選擇結果",
"core.chat.tts.Stop Speech": "停止",
"core.dataset.Collection": "資料集",
"core.dataset.Create dataset": "建立一個{{name}}",
"core.dataset.Dataset": "知識庫",
"core.dataset.Dataset ID": "知識庫 ID",
"core.dataset.Delete Confirm": "確認刪除此知識庫?刪除後資料無法復原,請確認!",
......@@ -468,8 +429,6 @@
"core.dataset.collection.metadata.read source": "檢視原始內容",
"core.dataset.collection.metadata.source": "資料來源",
"core.dataset.collection.metadata.source size": "來源大小",
"core.dataset.collection.status.active": "已就緒",
"core.dataset.collection.status.error": "訓練異常",
"core.dataset.collection.sync.result.sameRaw": "內容未變更,無需更新",
"core.dataset.collection.sync.result.success": "開始同步",
"core.dataset.data.Edit": "編輯資料",
......@@ -545,12 +504,9 @@
"core.dataset.status.active": "已就緒",
"core.dataset.status.syncing": "同步中",
"core.dataset.status.waiting": "排隊中",
"core.dataset.test.Batch test": "批次測試",
"core.dataset.test.Batch test Placeholder": "選擇一個 CSV 檔案",
"core.dataset.test.Search Test": "搜尋測試",
"core.dataset.test.Test": "測試",
"core.dataset.test.Test Result": "測試結果",
"core.dataset.test.Test Text": "單一文字測試",
"core.dataset.test.Test Text Placeholder": "輸入需要測試的內容",
"core.dataset.test.Test params": "測試參數",
"core.dataset.test.delete test history": "刪除此測試結果",
......@@ -587,7 +543,6 @@
"core.module.Default value": "預設值",
"core.module.Default value placeholder": "不填則預設回傳空字串",
"core.module.Diagram": "示意圖",
"core.module.Edit intro": "編輯描述",
"core.module.Field Description": "欄位描述",
"core.module.Field Name": "欄位名稱",
"core.module.Http request props": "請求參數",
......@@ -621,7 +576,6 @@
"core.module.http.Current time": "目前時間",
"core.module.http.Histories": "歷史記錄",
"core.module.http.Key already exists": "鍵值已存在",
"core.module.http.Key cannot be empty": "參數名稱不能為空",
"core.module.http.Props name": "參數名稱",
"core.module.http.Props tip": "您可以設定 HTTP 請求的相關參數\n可透過 {{key}} 呼叫全域變數或外部變數,目前可使用的變數:\n{{variable}}",
"core.module.http.Props value": "參數值",
......@@ -755,15 +709,12 @@
"dataset.Insert Data": "插入",
"dataset.Manual collection Tip": "手動資料集允許建立一個空的容器來存放資料",
"dataset.Training Name": "資料訓練",
"dataset.collections.Collection Embedding": "{{total}} 個索引",
"dataset.collections.Confirm to delete the folder": "確認刪除此資料夾及其所有內容?",
"dataset.collections.Create And Import": "建立或匯入",
"dataset.collections.Select Collection": "選擇檔案",
"dataset.collections.Select One Collection To Store": "選擇一個檔案進行儲存",
"dataset.data.Can not edit": "無編輯權限",
"dataset.data.Index Placeholder": "輸入索引文字內容",
"dataset.data.Input Success Tip": "匯入資料成功",
"dataset.data.Update Index Timeout Tip": "更新索引逾時,請稍後重新整理資料查看結果",
"dataset.data.Update Success Tip": "更新資料成功",
"dataset.data.edit.Index": "資料索引({{amount}})",
"dataset.dataset_name": "知識庫名稱",
......@@ -798,12 +749,7 @@
"error.invalid_params": "參數無效",
"error.llm_track_expired": "請求詳情已過期",
"error.missingParams": "參數不足",
"error.s3_upload_auth_failed": "無權上傳文件",
"error.s3_upload_bucket_not_found": "找不到存儲桶",
"error.s3_upload_file_too_large": "文件需小於 {{max}}",
"error.s3_upload_invalid_file_type": "文件內容不受支援,或副檔名與內容不匹配",
"error.s3_upload_network_error": "網絡異常",
"error.s3_upload_timeout": "上傳超時",
"error.send_auth_code_too_frequently": "請勿頻繁取得驗證碼",
"error.too_many_request": "請求太頻繁了,請稍後重試",
"error.tool_not_exist": "工具已刪除",
......@@ -828,7 +774,6 @@
"filter_sensitive_info": "過濾敏感信息",
"filter_sensitive_info_tip": "敏感資訊範圍:【系統工具】使用的臨時密鑰(外洩可能導致意外扣費,請謹慎匯出),以及【知識庫搜尋節點】配置的知識庫資訊",
"folder.empty": "此目錄中沒有更多項目了",
"folder.open_dataset": "開啟知識庫",
"folder_description": "資料夾描述",
"free": "免費",
"get_QR_failed": "取得 QR Code 失敗",
......@@ -840,10 +785,7 @@
"hour_unit": "時",
"import_failed": "匯入失敗",
"import_success": "匯入成功",
"info.csv_download": "點選下載批次測試範本",
"info.csv_message": "讀取 CSV 檔案的第一欄進行批次測試,每次最多支援 100 組資料。",
"info.felid_message": "欄位鍵必須是純英文或數字且不能以數字開頭。",
"info.node_info": "調整此模組會影響工具呼叫的時機。\n您可以透過精確描述此模組功能,引導模型進行工具呼叫。",
"info.old_version_attention": "偵測到您的進階編排為舊版本,系統將自動格式化為新版工作流程。\n\n由於版本差異較大,可能導致某些工作流程無法正常排列。請重新手動連接工作流程。如果仍然異常,請嘗試刪除對應節點後重新新增。\n\n您可以直接點選除錯來測試工作流程。除錯完成後,點選發布。直到您點選發布,新工作流程才會真正儲存生效。\n\n在您發布新工作流程之前,自動儲存將不會生效。",
"input.Repeat Value": "重複的值",
"input_name": "輸入名稱",
......@@ -1072,9 +1014,6 @@
"support.user.login.wx_qr_login": "微信 QR Code 登入",
"support.user.team.Dataset usage": "知識庫容量",
"support.user.team.Team Tags Async Success": "同步完成",
"support.wallet.Ai point every thousand tokens": "{{points}} 點數/1K tokens",
"support.wallet.Ai point every thousand tokens_input": "輸入:{{points}} 積分/1K tokens",
"support.wallet.Ai point every thousand tokens_output": "輸出:{{points}} 積分/1K tokens",
"support.wallet.App_amount_not_sufficient": "您的應用數量已達上限,請升級套餐後繼續使用。",
"support.wallet.Buy": "購買",
"support.wallet.Dataset_amount_not_sufficient": "您的知識庫數量已達上限,請升級套餐後繼續使用。",
......@@ -1145,13 +1084,6 @@
"support.wallet.usage.Audio Speech": "語音播放",
"support.wallet.usage.Code Copilot": "代碼助手",
"support.wallet.usage.Optimize Prompt": "提示詞優化",
"support.wallet.usage.Source": "來源",
"support.wallet.usage.Text Length": "文字長度",
"support.wallet.usage.Time": "產生時間",
"support.wallet.usage.Token Length": "Token 長度",
"support.wallet.usage.Total": "總金額",
"support.wallet.usage.Total points": "積分總消耗",
"support.wallet.usage.Usage Detail": "使用詳細資訊",
"support.wallet.usage.Whisper": "語音輸入",
"sync_link": "同步連結",
"sync_success": "同步成功",
......@@ -1188,7 +1120,6 @@
"upload_file": "上傳檔案",
"upload_file_error": "上傳檔案失敗",
"user.Account": "帳戶",
"user.Application Name": "專案名稱",
"user.Laf Account Setting": "LAF 帳戶設定",
"user.No_right_to_reset_password": "沒有重置密碼的權限",
"user.Old password is error": "舊密碼錯誤",
......
......@@ -29,7 +29,6 @@
"collection_data_count": "資料量",
"collection_metadata_custom_pdf_parse": "PDF 增強解析",
"collection_name": "數據集名稱",
"collection_not_support_sync": "該集合不支援同步",
"collection_sync": "立即同步",
"collection_sync_confirm_tip": "確認開始同步資料?\n系統將會拉取最新資料進行比較,如果內容不相同,則會建立一個新的集合並刪除舊的集合,請確認!",
"collection_tags": "集合標籤",
......@@ -48,7 +47,6 @@
"custom_split_char": "分隔符",
"custom_split_sign_tip": "允許你根據自定義的分隔符進行分塊。\n通常用於已處理好的資料,使用特定的分隔符來精確分塊。\n可以使用 | 符號表示多個分割符,例如:“。|.”表示中英文句號。\n\n盡量避免使用正則相關特殊符號,例如:* () [] {} 等。",
"data_amount": "{{dataAmount}} 組資料,{{indexAmount}} 組索引",
"data_error_amount": "{{errorAmount}} 組訓練異常",
"data_index_image": "圖片索引",
"data_index_image_embedding": "多模態圖片索引",
"image_embedding_index_default_desc": "已透過多模態模型生成圖片向量,支援以圖搜圖",
......@@ -91,7 +89,6 @@
"filename": "檔案名稱",
"folder_dataset": "資料夾",
"image_auto_parse": "圖片自動索引",
"image_auto_parse_tips": "呼叫 VLM 自動標註文件裡的圖片,並生成額外的檢索索引",
"image_auto_parse_tip_commercial": "請升級商業版後使用該功能",
"image_auto_parse_tip_multimodal_with_vlm": "為文件中的圖片生成圖片向量索引和文字描述索引,支援以圖搜圖",
"image_auto_parse_tip_multimodal_without_vlm": "使用多模態模型為圖片生成向量索引,支援以圖搜圖",
......@@ -152,9 +149,7 @@
"retain_collection": "調整訓練參數",
"retrain_task_submitted": "重新訓練任務已提交",
"retry_all": "全部重試",
"retry_failed": "重試失敗",
"rootdirectory": "/根目錄",
"same_api_collection": "存在相同的 API 集合",
"selectDirectory": "選擇",
"selectRootFolder": "選擇根目錄",
"split_chunk_char": "按指定分割符分塊",
......@@ -202,7 +197,6 @@
"yuque_dataset": "語雀知識庫",
"yuque_dataset_config": "設定語雀知識庫",
"yuque_dataset_desc": "可透過設定語雀文件權限,使用語雀文件建構知識庫,文件不會進行二次儲存",
"training.stage_error": "{{stage}}異常",
"training.status_error": "訓練異常",
"training_error_list": "異常列表",
"training_error_empty": "暫無訓練異常"
......
{
"Image_Preview": "圖片預覽",
"Image_dataset_requires_VLM_model_to_be_configured": "圖片數據集需要設定圖片理解模型或多模態索引模型才能使用,請先在模型設定中新增對應模型",
"click_to_view_raw_source": "點選檢視原始來源",
"file_name": "檔案名稱",
"file_size": "檔案大小",
"image": "圖片",
......
......@@ -17,7 +17,6 @@
"feishu_api": "Lark API",
"feishu_bot": "Lark 聊天機器人",
"feishu_bot_desc": "透過 API 直接連結 Lark 聊天機器人",
"ip_whitelist": "IP 白名單",
"key_alias": "金鑰別名,僅供顯示",
"link_name": "分享連結名稱",
"new_feishu_bot": "新增 Lark 聊天機器人",
......
......@@ -4,21 +4,13 @@
"create_your_first_skill": "創建你的第一個技能",
"no_skills": "暫無 Skill",
"copy_skill": "建立副本",
"related_apps_count": "關聯應用 {{count}}",
"confirm_delete_title": "確定刪除該技能嗎?",
"confirm_delete_with_refs": "該技能當前正被<bold>{{count}}個應用</bold>引用。刪除後,相關應用將<bold>無法調用此技能</bold>。建議先解除關聯或備份配置。",
"confirm_delete_action": "堅持刪除",
"confirm_delete_cancel": "放棄刪除",
"custom_skill": "自定義 Skill",
"custom_skill_desc": "通過描述 Skill 需求,智能生成 Skill 大綱及框架",
"import_skill_zip": "導入壓縮包",
"related_count": "關聯應用",
"related_apps_hidden": "其餘 {{count}} 個應用無權限查看",
"creator_tooltip": "創建人:{{creator}}",
"update_time_tooltip": "更新時間:{{updateTime}}",
"permission_settings": "權限設置",
"export_config": "導出配置",
"create_folder": "新建文件夾",
"unnamed_skill": "未命名",
"skill_name_placeholder": "請輸入 Skill 名稱",
"skill_avatar_and_name": "頭像 & 名稱",
......@@ -28,7 +20,6 @@
"skill_requirement_tooltip_title": "示例:",
"skill_requirement_tooltip_example": "## 目標\n根據會議記錄自動生成會議紀要。\n\n## 流程\n1. 識別會議主題和參與人員\n2. 提取討論的關鍵要點\n3. 整理出明確的結論和決策\n4. 提取需要跟進的行動項,並標注負責人(如有)\n\n## 要求\n1. 結果以結構化格式輸出\n2. 包含:會議主題、參與人、討論要點、決策結論、行動項\n3. 內容簡潔清晰,避免冗余描述",
"skill_requirement_default": "## 目標\n\n## 流程\n\n## 要求",
"ai_optimize": "AI 優化",
"import_skill": "導入技能",
"import_skill_select_file": "上傳技能",
"import_skill_file_type_tip": "支持 {{ext}} 格式",
......@@ -43,17 +34,13 @@
"copy_failed": "複製失敗",
"edit_success": "編輯成功",
"edit_failed": "編輯失敗",
"move_success": "移動成功",
"move_failed": "移動失敗",
"export_success": "導出成功",
"export_failed": "導出失敗",
"deploy_success": "發布成功",
"deploy_failed": "發布失敗",
"copy_skill_confirm": "系統將為您創建一個相同配置技能,但權限不會進行複製,請確認!",
"detail_tab_config": "Skill 配置",
"detail_tab_preview": "執行預覽",
"history_versions": "歷史版本",
"exit_tips": "您的更改尚未儲存,「直接退出」將不會儲存您的編輯記錄。",
"select_skill": "選擇 Skill",
"associated_skills": "關聯 Skill",
"skill_deleted": "技能已刪除",
......@@ -66,7 +53,6 @@
"sandbox_operation_system_not_configured_title": "未配置虛擬機器",
"sandbox_operation_system_not_configured_content": "skill操作依賴虛擬機器環境。目前系統未配置虛擬機器,暫時無法使用相關功能,請聯絡管理員配置。",
"sandbox_plan_not_supported_title": "套餐不支援功能",
"sandbox_plan_not_supported_content": "目前套餐不支援虛擬機器功能,請升級套餐後繼續使用。",
"sandbox_skill_plan_not_supported_content": "skill運行依賴虛擬機器環境。目前套餐不支援虛擬機器功能,請升級套餐後繼續使用。",
"sandbox_operation_plan_not_supported_content": "skill操作依賴虛擬機器環境。目前套餐不支援虛擬機器功能,請升級套餐後繼續使用。",
"sandbox_upgrade_action": "去升級",
......@@ -86,7 +72,6 @@
"sandbox_failed": "沙箱創建失敗: {{message}}",
"sandbox_retry": "重試",
"sandbox_error_title": "沙箱創建失敗",
"sandbox_debug_loading_toast": "沙箱啟動中,請稍後再發送訊息",
"no_current_version": "Skill 暫無可用版本,請重新建立或匯入後再編輯。",
"permission.des.read": "可查看 Agent Skill",
"permission.des.write": "可編輯 Agent Skill",
......
......@@ -69,6 +69,8 @@
"enter_comment": "輸入註解",
"error_catch": "報錯捕獲",
"error_text": "錯誤訊息",
"http_full_error": "完整錯誤",
"http_full_error_description": "HTTP 請求失敗時的完整錯誤物件,包含 message、status、code、data 等欄位。",
"execute_different_branches_based_on_conditions": "根據條件執行不同的分支。",
"extraction_requirements_description": "擷取需求描述",
"extraction_requirements_description_detail": "提供 AI 相對應的背景知識或需求描述,引導 AI 更好地完成任務。\\n這個輸入框可以使用全域變數。",
......@@ -170,7 +172,6 @@
"parallel_full_results": "完整結果",
"parallel_full_results_desc": "與輸入陣列等長的結果陣列,每項形如 {success, message, data}:成功時 success=true、message 為空、data 為輸出值;失敗時 success=false、message 為錯誤訊息、data 為 null。",
"parallel_run": "並行執行",
"parallel_run_end_intro": "選擇變數,作為並行執行的結果輸出",
"parallel_run_execution_logic": "執行邏輯",
"parallel_run_max_concurrency": "最大並發數",
"parallel_run_max_concurrency_tip": "同時並行執行的最大任務數,範圍 1~上限值(預設 5)。",
......@@ -204,12 +205,6 @@
"reasoning_content": "思考過程",
"regex": "正規表達式",
"reply_text": "回覆文字",
"response.Code log": "程式碼日誌",
"response.Custom inputs": "自訂輸入",
"response.Custom outputs": "自訂輸出",
"response.Error": "錯誤訊息",
"response.Read file result": "檔案解析結果預覽",
"response.read files": "解析的檔案",
"search_query": "檢索內容",
"select_an_application": "選擇一個應用程式",
"select_another_application_to_call": "可以選擇另一個應用程式來呼叫",
......@@ -238,7 +233,6 @@
"to_add_node": "添加節點",
"to_app_detail": "前去編輯應用",
"to_connect_node": "連接節點",
"tool.tool_result": "工具運行結果",
"tool_active_config": "工具激活",
"tool_active_config_type": "工具激活: {{type}}",
"tool_call_termination": "工具呼叫終止",
......@@ -252,7 +246,6 @@
"tool_params.params_description_placeholder": "姓名/年齡/SQL 敘述…",
"tool_params.params_name": "參數名稱",
"tool_params.params_name_placeholder": "name/age/sql",
"tool_params.tool_params_result": "參數設定結果",
"tool_raw_response_description": "工具的原始響應",
"trigger_after_application_completion": "將會在應用程式完全結束後觸發",
"unFoldAll": "全部展開",
......
Subproject commit f83176bedc07175d1537f10a27d5af2d8a3f1932
Subproject commit 87fa826b752283252de740099a7d4cc242338cde
......@@ -28,11 +28,9 @@ const WholeResponseModal = dynamic(() => import('../../../components/WholeRespon
const CitationListCard = React.memo(function CitationListCard({
items,
isPc,
onOpenAll
}: {
items: CitationRenderItem[];
isPc: boolean;
onOpenAll: () => void;
}) {
const { t } = useTranslation();
......@@ -222,9 +220,6 @@ const ResponseTags = ({
: {})
};
}, [historyItem, isShowCite]);
const quoteList: SearchDataResponseQuoteListItemType[] = responseTags.totalQuoteList ?? [];
const toolCiteLinks: ToolCiteLinksType[] = responseTags.toolCiteLinks ?? [];
const chatType = useContextSelector(ChatBoxContext, (v) => v.chatType);
const notSharePage = useMemo(() => chatType !== 'share', [chatType]);
......@@ -237,6 +232,8 @@ const ResponseTags = ({
const citationRenderList: CitationRenderItem[] = useMemo(() => {
if (!isShowCite) return [];
const quoteList: SearchDataResponseQuoteListItemType[] = responseTags.totalQuoteList ?? [];
const toolCiteLinks: ToolCiteLinksType[] = responseTags.toolCiteLinks ?? [];
// Dataset citations
const datasetItems = Object.values(
......@@ -279,7 +276,7 @@ const ResponseTags = ({
}));
return [...datasetItems, ...linkItems];
}, [quoteList, toolCiteLinks, onOpenCiteModal, isShowCite]);
}, [responseTags, onOpenCiteModal, isShowCite]);
const notEmptyTags =
(showFooterMeta && notSharePage) || (showFooterMeta && isPc && durationSeconds > 0);
......@@ -288,11 +285,7 @@ const ResponseTags = ({
<>
{/* quote */}
{citationRenderList.length > 0 && (
<CitationListCard
items={citationRenderList}
isPc={isPc}
onOpenAll={() => onOpenCiteModal()}
/>
<CitationListCard items={citationRenderList} onOpenAll={() => onOpenCiteModal()} />
)}
{notEmptyTags && (
......@@ -306,14 +299,14 @@ const ResponseTags = ({
)}
{showFooterMeta && notSharePage && showWholeResponse && (
<MyTooltip label={t('common:core.chat.response.Read complete response tips')}>
<MyTooltip label={t('chat:response.read_complete_response_tips')}>
<MyTag
colorSchema="gray"
type="borderSolid"
cursor={'pointer'}
onClick={onOpenWholeModal}
>
{t('common:core.chat.response.Read complete response')}
{t('chat:response.read_complete_response')}
</MyTag>
</MyTooltip>
)}
......
......@@ -708,8 +708,11 @@ export const useChatGenerate = ({
const responseData = mergeNodeResponseDataByIdAndParent(item.responseData || []);
if (!abortSignal?.signal?.aborted) {
const uncaughtErr = responseData.find((r) => r.error)?.error;
const err = uncaughtErr ?? responseData[responseData.length - 1]?.errorText;
const uncaughtErr = responseData.find((r) => r.error && !r.errorCaptured)?.error;
const lastUncapturedErrorText = [...responseData]
.reverse()
.find((r) => r.errorText && !r.errorCaptured)?.errorText;
const err = uncaughtErr ?? lastUncapturedErrorText;
const errorMsg = err ? t(getErrText(err)) : undefined;
return {
......
......@@ -38,7 +38,7 @@ export const CommonInfoRows = ({ activeModule }: { activeModule: ChatHistoryItem
value={t(activeModule.moduleName as any, activeModule.moduleNameArgs)}
/>
<Row
label={t('common:Status')}
label={t('chat:response.status')}
value={
activeModule.agentPlanStatus
? t(agentPlanStatusMap[activeModule.agentPlanStatus] as any)
......@@ -47,17 +47,14 @@ export const CommonInfoRows = ({ activeModule }: { activeModule: ChatHistoryItem
/>
{activeModule.totalPoints !== undefined && (
<Row
label={t('common:support.wallet.usage.Total points')}
label={t('chat:response.total_points')}
value={formatNumber(activeModule.totalPoints)}
/>
)}
{showChildTotalPoints && (
<Row label={t('chat:response.child total points')} value={formatNumber(childTotalPoints)} />
<Row label={t('chat:response.child_total_points')} value={formatNumber(childTotalPoints)} />
)}
<Row
label={t('workflow:response.Error')}
value={activeModule.errorText ?? activeModule.error}
/>
<Row label={t('chat:response.error')} value={activeModule.errorText ?? activeModule.error} />
<Row label={t('chat:response.node_inputs')} value={activeModule.nodeInputs} />
</>
);
......@@ -76,7 +73,7 @@ const LlmRequestIdsRow = ({
return (
<Row
label={t('chat:llm_request_ids')}
label={t('chat:response.llm_request_ids')}
rawDom={
<Grid templateColumns={'repeat(2, minmax(0, 1fr))'} gap={2}>
{requestIds.map((requestId, index) => (
......@@ -93,7 +90,7 @@ const LlmRequestIdsRow = ({
color={'myGray.900'}
_hover={{ color: 'primary.600' }}
onClick={() => onOpenRequestIdDetail(requestId)}
title={t('common:Click_to_expand')}
title={t('chat:response.click_to_expand')}
>
<Box
flex={'1 0 0'}
......@@ -135,32 +132,34 @@ export const AiChatRows = ({
<>
{activeModule.finishReason && (
<Row
label={t('chat:completion_finish_reason')}
label={t('chat:response.completion_finish_reason')}
value={t(completionFinishReasonMap[activeModule.finishReason])}
/>
)}
<Row label={t('common:core.chat.response.module model')} value={activeModule.model} />
{activeModule.tokens && <Row label={t('chat:llm_tokens')} value={`${activeModule.tokens}`} />}
<Row label={t('chat:response.model')} value={activeModule.model} />
{activeModule.tokens && (
<Row label={t('chat:response.llm_tokens')} value={`${activeModule.tokens}`} />
)}
{(!!activeModule.inputTokens || !!activeModule.outputTokens) && (
<Row
label={t('chat:llm_tokens')}
label={t('chat:response.llm_tokens')}
value={`Input/Output = ${activeModule.inputTokens || 0}/${activeModule.outputTokens || 0}`}
/>
)}
{(!!activeModule.toolCallInputTokens || !!activeModule.toolCallOutputTokens) && (
<Row
label={t('common:core.chat.response.Tool call tokens')}
label={t('chat:response.tool_call_tokens')}
value={`Input/Output = ${activeModule.toolCallInputTokens || 0}/${activeModule.toolCallOutputTokens || 0}`}
/>
)}
{activeModule.compressTextAgent && (
<>
<Row
label={t('chat:compress_llm_usage_point')}
label={t('chat:response.compress_llm_usage_point')}
value={`${activeModule.compressTextAgent.totalPoints}`}
/>
<Row
label={t('chat:compress_llm_usage')}
label={t('chat:response.compress_llm_usage')}
value={`${activeModule.compressTextAgent.inputTokens}/${activeModule.compressTextAgent.outputTokens}`}
/>
</>
......@@ -169,21 +168,15 @@ export const AiChatRows = ({
requestIds={activeModule.llmRequestIds}
onOpenRequestIdDetail={onOpenRequestIdDetail}
/>
<Row label={t('chat:step_query')} value={activeModule.stepQuery} />
<Row label={t('chat:response.step_query')} value={activeModule.stepQuery} />
<Row label={t('common:core.chat.response.module query')} value={activeModule.query} />
<Row
label={t('common:core.chat.response.context total length')}
value={activeModule.contextTotalLen}
/>
<Row label={t('chat:response.query')} value={activeModule.query} />
<Row label={t('chat:response.context_total_length')} value={activeModule.contextTotalLen} />
<Row label={t('chat:response.temperature')} value={activeModule.temperature} />
<Row label={t('chat:response.max_tokens')} value={activeModule.maxToken} />
<Row label={t('chat:response.reasoning_content')} value={activeModule.reasoningText} />
<Row
label={t('common:core.chat.response.module temperature')}
value={activeModule.temperature}
/>
<Row label={t('common:core.chat.response.module maxToken')} value={activeModule.maxToken} />
<Row label={t('chat:reasoning_content')} value={activeModule.reasoningText} />
<Row
label={t('common:core.chat.response.module historyPreview')}
label={t('chat:response.history_preview')}
rawDomBoxProps={responseRowValueBoxStyles}
rawDom={
activeModule.historyPreview ? (
......@@ -225,13 +218,13 @@ export const DatasetSearchRows = ({
<>
{activeModule.searchMode && (
<Row
label={t('common:core.dataset.search.search mode')}
label={t('chat:response.search_mode')}
rawDomBoxProps={responseRowValueBoxStyles}
rawDom={
<Flex>
<Box>{t(DatasetSearchModeMap[activeModule.searchMode]?.title as any)}</Box>
{activeModule.embeddingWeight && (
<>{`(${t('chat:response_hybrid_weight', {
<>{`(${t('chat:response.hybrid_weight', {
emb: activeModule.embeddingWeight,
text: 1 - activeModule.embeddingWeight
})})`}</>
......@@ -240,13 +233,10 @@ export const DatasetSearchRows = ({
}
/>
)}
<Row
label={t('common:core.chat.response.module similarity')}
value={activeModule.similarity}
/>
<Row label={t('chat:response.similarity')} value={activeModule.similarity} />
{activeModule.datasetQueries && activeModule.datasetQueries.length > 0 && (
<Row
label={t('common:core.chat.response.module query')}
label={t('chat:response.query')}
rawDom={
<ImageQuery
datasetQueries={activeModule.datasetQueries}
......@@ -255,16 +245,16 @@ export const DatasetSearchRows = ({
}
/>
)}
<Row label={t('common:core.chat.response.module limit')} value={activeModule.limit} />
<Row label={t('chat:response_embedding_model')} value={activeModule.embeddingModel} />
<Row label={t('chat:response.limit')} value={activeModule.limit} />
<Row label={t('chat:response.embedding_model')} value={activeModule.embeddingModel} />
<Row
label={t('chat:response_embedding_model_tokens')}
label={t('chat:response.embedding_model_tokens')}
value={`${activeModule.embeddingTokens}`}
/>
{activeModule.searchUsingReRank !== undefined && (
<>
<Row
label={t('common:core.chat.response.search using reRank')}
label={t('chat:response.search_using_rerank')}
rawDomBoxProps={responseRowValueBoxStyles}
rawDom={
<Box>
......@@ -281,19 +271,19 @@ export const DatasetSearchRows = ({
}
/>
<Row
label={t('chat:response_rerank_tokens')}
label={t('chat:response.rerank_tokens')}
value={`${activeModule.reRankInputTokens}`}
/>
</>
)}
<Row label={t('chat:response.extension_model')} value={activeModule.extensionModel} />
<Row
label={t('common:core.chat.response.Extension model')}
value={activeModule.extensionModel}
label={t('chat:response.query_extension_result')}
value={`${activeModule.extensionResult}`}
/>
<Row label={t('chat:query_extension_result')} value={`${activeModule.extensionResult}`} />
{activeModule.quoteList && activeModule.quoteList.length > 0 && (
<Row
label={t('chat:response_search_results', { len: activeModule.quoteList.length })}
label={t('chat:response.search_results', { len: activeModule.quoteList.length })}
rawDom={<QuoteList chatItemDataId={dataId} rawSearch={activeModule.quoteList} />}
/>
)}
......@@ -308,7 +298,7 @@ const ReadFilesRows = ({ activeModule }: { activeModule: ChatHistoryItemResType
<>
{activeModule.readFiles && activeModule.readFiles.length > 0 && (
<Row
label={t('workflow:response.read files')}
label={t('chat:response.read_files')}
rawDom={
<Flex flexWrap={'wrap'} gap={3} px={4} py={2}>
{activeModule.readFiles.map((file, i) => (
......@@ -334,7 +324,7 @@ const ReadFilesRows = ({ activeModule }: { activeModule: ChatHistoryItemResType
}
/>
)}
<Row label={t('workflow:response.Read file result')} value={activeModule.readFilesResult} />
<Row label={t('chat:response.read_file_result')} value={activeModule.readFilesResult} />
</>
);
};
......@@ -362,58 +352,44 @@ export const WorkflowResultRows = ({
return (
<>
<Row label={t('chat:response.dataset_concat_length')} value={activeModule.concatLength} />
<Row label={t('common:core.chat.response.module cq result')} value={activeModule.cqResult} />
<Row label={t('chat:response.cq_result')} value={activeModule.cqResult} />
<Row
label={t('common:core.chat.response.module cq')}
label={t('chat:response.cq')}
value={(() => {
if (!activeModule.cqList) return '';
return activeModule.cqList.map((item) => `* ${item.value}`).join('\n');
})()}
/>
<Row label={t('chat:response.if_else_result')} value={activeModule.ifElseResult} />
<Row label={t('chat:response.extract_description')} value={activeModule.extractDescription} />
<Row label={t('chat:response.extract_result')} value={activeModule.extractResult} />
<Row label={t('chat:response.headers')} value={activeModule.headers} />
<Row label={t('chat:response.params')} value={activeModule.params} />
<Row label={t('chat:response.body')} value={activeModule.body} />
<Row label={t('chat:response.http_result')} value={activeModule.httpResult} />
<Row label={t('chat:response.http_error_result')} value={activeModule.httpErrorResult} />
<Row label={t('chat:response.tool_input')} value={activeModule.toolInput} />
<Row label={t('chat:response.tool_output')} value={activeModule.pluginOutput} />
<Row
label={t('common:core.chat.response.module if else Result')}
value={activeModule.ifElseResult}
/>
<Row
label={t('common:core.chat.response.module extract description')}
value={activeModule.extractDescription}
/>
<Row
label={t('common:core.chat.response.module extract result')}
value={activeModule.extractResult}
/>
<Row label={'Headers'} value={activeModule.headers} />
<Row label={'Params'} value={activeModule.params} />
<Row label={'Body'} value={activeModule.body} />
<Row
label={t('common:core.chat.response.module http result')}
value={activeModule.httpResult}
/>
<Row label={t('chat:tool_input')} value={activeModule.toolInput} />
<Row label={t('chat:tool_output')} value={activeModule.pluginOutput} />
<Row
label={t('common:core.chat.response.text output')}
label={t('chat:response.text_output')}
value={activeModule.textOutput}
contentBoxProps={codeBlockContentBoxProps}
/>
<Row
label={t('workflow:response.Custom inputs')}
label={t('chat:response.custom_inputs')}
value={activeModule.customInputs}
contentBoxProps={codeBlockContentBoxProps}
/>
<Row
label={t('workflow:response.Custom outputs')}
label={t('chat:response.custom_outputs')}
value={activeModule.customOutputs}
contentBoxProps={codeBlockContentBoxProps}
/>
<Row label={t('workflow:response.Code log')} value={activeModule.codeLog} />
<Row label={t('chat:response.code_log')} value={activeModule.codeLog} />
<ReadFilesRows activeModule={activeModule} />
<Row label={t('chat:response.user_select_result')} value={activeModule.userSelectResult} />
<Row
label={t('common:core.chat.response.user_select_result')}
value={activeModule.userSelectResult}
/>
<Row
label={t('common:core.chat.response.update_var_result')}
label={t('chat:response.update_var_result')}
value={(() => {
/**
* updateVarResult 是 updateList.map(...) 的结果。单行配置时,外层数组只是噪音;
......@@ -426,51 +402,24 @@ export const WorkflowResultRows = ({
return r;
})()}
/>
<Row label={t('common:core.chat.response.loop_input')} value={activeModule.loopInput} />
<Row label={t('common:core.chat.response.loop_output')} value={activeModule.loopResult} />
<Row
label={t('common:core.chat.response.parallel_input')}
value={activeModule.parallelInput}
/>
<Row
label={t('common:core.chat.response.parallel_output')}
value={activeModule.parallelResult}
/>
<Row
label={t('common:core.chat.response.parallel_run_detail')}
value={activeModule.parallelRunDetail}
/>
<Row
label={t('common:core.chat.response.loop_run_input')}
value={activeModule.loopRunInput}
/>
<Row
label={t('common:core.chat.response.loop_run_iterations')}
value={activeModule.loopRunIterations}
/>
<Row
label={t('common:core.chat.response.loop_run_history')}
value={activeModule.loopRunHistory}
/>
<Row
label={t('common:core.chat.response.loop_input_element')}
value={activeModule.loopInputValue}
/>
<Row
label={t('common:core.chat.response.loop_output_element')}
value={activeModule.loopOutputValue}
/>
<Row label={t('chat:response.loop_input')} value={activeModule.loopInput} />
<Row label={t('chat:response.loop_output')} value={activeModule.loopResult} />
<Row label={t('chat:response.parallel_input')} value={activeModule.parallelInput} />
<Row label={t('chat:response.parallel_output')} value={activeModule.parallelResult} />
<Row label={t('chat:response.parallel_run_detail')} value={activeModule.parallelRunDetail} />
<Row label={t('chat:response.loop_run_input')} value={activeModule.loopRunInput} />
<Row label={t('chat:response.loop_run_iterations')} value={activeModule.loopRunIterations} />
<Row label={t('chat:response.loop_run_history')} value={activeModule.loopRunHistory} />
<Row label={t('chat:response.loop_input_element')} value={activeModule.loopInputValue} />
<Row label={t('chat:response.loop_output_element')} value={activeModule.loopOutputValue} />
{activeModule.formInputResult && (
<Row
label={t('workflow:form_input_result')}
label={t('chat:response.form_input_result')}
rawDom={<FormInputResult value={activeModule.formInputResult} />}
/>
)}
<Row
label={t('workflow:tool_params.tool_params_result')}
value={activeModule.toolParamsResult}
/>
<Row label={t('workflow:tool.tool_result')} value={activeModule.toolRes} />
<Row label={t('chat:response.tool_params_result')} value={activeModule.toolParamsResult} />
<Row label={t('chat:response.tool_result')} value={activeModule.toolRes} />
</>
);
};
......@@ -44,9 +44,9 @@ const WholeResponseModal = ({ onClose, dataId }: { onClose: () => void; dataId:
title={
<Flex alignItems={'center'} gap={2}>
<Box fontSize={'20px'} lineHeight={'26px'} letterSpacing={'0.15px'} fontWeight={500}>
{t('common:core.chat.response.Complete Response')}
{t('chat:response.complete_response')}
</Box>
<QuestionTip label={t('chat:question_tip')} />
<QuestionTip label={t('chat:response.question_tip')} />
</Flex>
}
>
......@@ -54,7 +54,7 @@ const WholeResponseModal = ({ onClose, dataId }: { onClose: () => void; dataId:
(!!response?.length ? (
<ResponseBox response={response} dataId={dataId} />
) : (
<EmptyTip text={t('chat:no_workflow_response')} />
<EmptyTip text={t('chat:response.no_workflow_response')} />
))}
</MyModal>
);
......
......@@ -46,6 +46,9 @@ const withUseAgentSandbox = (historyItem: ChatItemMiniType, useAgentSandbox: boo
* 这里统一兜底,避免报错卡片显示“无输出”。
*/
const getNodeErrorText = (item: ChatHistoryItemResType) => {
// 开启错误捕获的节点会把错误交给 catch 分支继续执行,聊天气泡不应把它当最终失败展示。
if (item.errorCaptured) return;
return item.errorText || getErrText(item.error);
};
......@@ -70,7 +73,8 @@ export const chatItemResponsePreviewProjection = {
'data.quoteList.score': 1,
'data.toolId': 1,
'data.toolRes.citeLinks': 1,
'data.errorText': 1
'data.errorText': 1,
'data.errorCaptured': 1
} as const;
export function transformPreviewHistories(
......
import React, { useMemo } from 'react';
import { Box, Flex, Switch } from '@chakra-ui/react';
import { useTranslation } from 'next-i18next';
import { useForm } from 'react-hook-form';
import { useForm, useWatch } from 'react-hook-form';
import FormLabel from '@fastgpt/web/components/common/MyBox/FormLabel';
import QuestionTip from '@fastgpt/web/components/common/MyTooltip/QuestionTip';
import { useRequest } from '@fastgpt/web/hooks/useRequest';
......@@ -27,16 +27,16 @@ const PlaygroundVisibilityConfig = ({ appId }: { appId: string }) => {
const { t } = useTranslation();
const { copyData } = useCopyData();
const { register, watch, setValue, reset } = useForm({
const { register, control, getValues, setValue, reset } = useForm({
defaultValues: defaultPlaygroundVisibilityForm
});
const showCite = watch('showCite');
const showFullText = watch('showFullText');
const canDownloadSource = watch('canDownloadSource');
const showRunningStatus = watch('showRunningStatus');
const showSkillReferences = watch('showSkillReferences');
const showWholeResponse = watch('showWholeResponse');
const showCite = useWatch({ control, name: 'showCite' });
const showFullText = useWatch({ control, name: 'showFullText' });
const canDownloadSource = useWatch({ control, name: 'canDownloadSource' });
const showRunningStatus = useWatch({ control, name: 'showRunningStatus' });
const showSkillReferences = useWatch({ control, name: 'showSkillReferences' });
const showWholeResponse = useWatch({ control, name: 'showWholeResponse' });
const playgroundLink = useMemo(() => {
if (typeof window !== 'undefined') {
......@@ -72,7 +72,7 @@ const PlaygroundVisibilityConfig = ({ appId }: { appId: string }) => {
);
const autoSave = async () => {
const values = watch();
const values = getValues();
await saveConfig(values);
};
......@@ -127,13 +127,8 @@ const PlaygroundVisibilityConfig = ({ appId }: { appId: string }) => {
</Flex>
<Flex alignItems={'center'}>
<Flex alignItems={'center'} flex={'0 0 127px'}>
<FormLabel fontSize={'12px'}>
{t('common:core.chat.response.Read complete response')}
</FormLabel>
<QuestionTip
ml={1}
label={t('common:core.chat.response.Read complete response tips')}
/>
<FormLabel fontSize={'12px'}>{t('app:publish.show_whole_response')}</FormLabel>
<QuestionTip ml={1} label={t('app:publish.show_whole_response_tip')} />
</Flex>
<Switch
{...register('showWholeResponse', {
......
......@@ -170,11 +170,14 @@ const WorkflowInitContextProvider = ({
outputs: node.data.outputs.map((output) => {
return {
key: output.key,
id: output.id,
label: output.label,
type: output.type,
valueType: output.valueType,
invalid: output.invalid
};
})
}),
catchError: node.data.catchError
});
if (node.data.parentNodeId) {
......
......@@ -297,6 +297,73 @@ describe('addStatisticalDataToHistoryItem', () => {
});
});
it('ignores captured node errors when building chat bubble error text', () => {
const historyItem: ChatItemMiniType = {
obj: ChatRoleEnum.AI,
value: [
{
text: {
content: 'done'
}
}
],
responseData: [
{
id: 'http-response',
nodeId: 'http-node',
moduleName: 'HTTP 请求',
moduleType: FlowNodeTypeEnum.httpRequest468,
errorText: 'upstream timeout',
errorCaptured: true
},
{
id: 'answer-response',
nodeId: 'answer-node',
moduleName: '指定回复',
moduleType: FlowNodeTypeEnum.answerNode,
textOutput: 'fallback answer'
}
]
};
expect(addStatisticalDataToHistoryItem(historyItem).errorText).toBeUndefined();
});
it('uses later uncaptured errors after captured node errors', () => {
const historyItem: ChatItemMiniType = {
obj: ChatRoleEnum.AI,
value: [
{
text: {
content: 'done'
}
}
],
responseData: [
{
id: 'http-response',
nodeId: 'http-node',
moduleName: 'HTTP 请求',
moduleType: FlowNodeTypeEnum.httpRequest468,
errorText: 'captured timeout',
errorCaptured: true
},
{
id: 'agent-response',
nodeId: 'agent-node',
moduleName: 'Agent',
moduleType: FlowNodeTypeEnum.agent,
errorText: 'agent stopped'
}
]
};
expect(addStatisticalDataToHistoryItem(historyItem).errorText).toEqual({
moduleName: 'Agent',
errorText: 'agent stopped'
});
});
it('does not use HTTP result error as chat bubble error text when node error is absent', () => {
const historyItem: ChatItemMiniType = {
obj: ChatRoleEnum.AI,
......
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