【优化】重绘各类厂商和资源来源图标

【新增】CA类型SSL.COM
【新增】消息通知渠道-webhook
【新增】消息通知渠道-飞书
【新增】消息通知渠道-钉钉
【新增】huaweicloud-cdn部署类型
1.0.3
chudong 2025-05-29 14:23:54 +08:00
parent a0768181bb
commit 936c7a00e3
237 changed files with 21246 additions and 0 deletions

View File

View File

@ -0,0 +1,131 @@
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type {
AccessListParams,
AccessListResponse,
AddAccessParams,
DeleteAccessParams,
GetAccessAllListParams,
GetAccessAllListResponse,
UpdateAccessParams,
// CA授权相关类型
EabListParams,
EabListResponse,
EabAddParams,
EabUpdateParams,
EabDeleteParams,
EabGetAllListParams,
EabGetAllListResponse,
// 新增类型
TestAccessParams,
GetSitesParams,
GetSitesResponse,
} from '@/types/access' // Sorted types
import type { AxiosResponseData } from '@/types/public'
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {AccessListParams} [params]
* @returns {useAxiosReturn<AccessListResponse, AccessListParams>} API
*/
export const getAccessList = (params?: AccessListParams): useAxiosReturn<AccessListResponse, AccessListParams> =>
useApi<AccessListResponse, AccessListParams>('/v1/access/get_list', params)
/**
* @description
* @param {AddAccessParams<string>} [params]
* @returns {useAxiosReturn<AxiosResponseData, AddAccessParams<string>>} API
*/
export const addAccess = (
params?: AddAccessParams<string>,
): useAxiosReturn<AxiosResponseData, AddAccessParams<string>> =>
useApi<AxiosResponseData, AddAccessParams<string>>('/v1/access/add_access', params)
/**
* @description
* @param {UpdateAccessParams<string>} [params]
* @returns {useAxiosReturn<AxiosResponseData, UpdateAccessParams<string>>} API
*/
export const updateAccess = (
params?: UpdateAccessParams<string>,
): useAxiosReturn<AxiosResponseData, UpdateAccessParams<string>> =>
useApi<AxiosResponseData, UpdateAccessParams<string>>('/v1/access/upd_access', params)
/**
* @description
* @param {DeleteAccessParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, DeleteAccessParams>} API
*/
export const deleteAccess = (params?: DeleteAccessParams): useAxiosReturn<AxiosResponseData, DeleteAccessParams> =>
useApi<AxiosResponseData, DeleteAccessParams>('/v1/access/del_access', params)
/**
* @description DNS
* @param {GetAccessAllListParams} [params]
* @returns {useAxiosReturn<GetAccessAllListResponse, GetAccessAllListParams>} DNS API
*/
export const getAccessAllList = (
params?: GetAccessAllListParams,
): useAxiosReturn<GetAccessAllListResponse, GetAccessAllListParams> =>
useApi<GetAccessAllListResponse, GetAccessAllListParams>('/v1/access/get_all', params)
/**
* @description CA
* @param {EabListParams} [params]
* @returns {useAxiosReturn<EabListResponse, EabListParams>} CA API
*/
export const getEabList = (params?: EabListParams): useAxiosReturn<EabListResponse, EabListParams> =>
useApi<EabListResponse, EabListParams>('/v1/access/get_eab_list', params)
/**
* @description CA
* @param {EabAddParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, EabAddParams>} CA API
*/
export const addEab = (params?: EabAddParams): useAxiosReturn<AxiosResponseData, EabAddParams> =>
useApi<AxiosResponseData, EabAddParams>('/v1/access/add_eab', params)
/**
* @description CA
* @param {EabUpdateParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, EabUpdateParams>} CA API
*/
export const updateEab = (params?: EabUpdateParams): useAxiosReturn<AxiosResponseData, EabUpdateParams> =>
useApi<AxiosResponseData, EabUpdateParams>('/v1/access/upd_eab', params)
/**
* @description CA
* @param {EabDeleteParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, EabDeleteParams>} CA API
*/
export const deleteEab = (params?: EabDeleteParams): useAxiosReturn<AxiosResponseData, EabDeleteParams> =>
useApi<AxiosResponseData, EabDeleteParams>('/v1/access/del_eab', params)
/**
* @description CA
* @param {EabGetAllListParams} [params]
* @returns {useAxiosReturn<EabGetAllListResponse, EabGetAllListParams>} CA API
*/
export const getAllEabList = (
params?: EabGetAllListParams,
): useAxiosReturn<EabGetAllListResponse, EabGetAllListParams> =>
useApi<EabGetAllListResponse, EabGetAllListParams>('/v1/access/get_all_eab', params)
/**
* @description API
* @param {TestAccessParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, TestAccessParams>} API
*/
export const testAccess = (params?: TestAccessParams): useAxiosReturn<AxiosResponseData, TestAccessParams> =>
useApi<AxiosResponseData, TestAccessParams>('/v1/access/test_access', params)
/**
* @description
* @param {GetSitesParams} [params]
* @returns {useAxiosReturn<GetSitesResponse, GetSitesParams>} API
*/
export const getSites = (params?: GetSitesParams): useAxiosReturn<GetSitesResponse, GetSitesParams> =>
useApi<GetSitesResponse, GetSitesParams>('/v1/access/get_sites', params)

View File

@ -0,0 +1,61 @@
// External library dependencies
import axios, { AxiosResponse } from 'axios'
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type {
ApplyCertParams,
ApplyCertResponse,
CertListParams,
CertListResponse,
DeleteCertParams,
DeleteCertResponse,
DownloadCertParams,
DownloadCertResponse, // Ensuring this type is imported
UploadCertParams,
UploadCertResponse,
} from '@/types/cert' // Path alias and sorted types
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {CertListParams} [params]
* @returns {useAxiosReturn<CertListResponse, CertListParams>} API
*/
export const getCertList = (params?: CertListParams): useAxiosReturn<CertListResponse, CertListParams> =>
useApi<CertListResponse, CertListParams>('/v1/cert/get_list', params)
/**
* @description
* @param {ApplyCertParams} [params]
* @returns {useAxiosReturn<ApplyCertResponse, ApplyCertParams>} API
*/
export const applyCert = (params?: ApplyCertParams): useAxiosReturn<ApplyCertResponse, ApplyCertParams> =>
useApi<ApplyCertResponse, ApplyCertParams>('/v1/cert/apply_cert', params)
/**
* @description
* @param {UploadCertParams} [params]
* @returns {useAxiosReturn<UploadCertResponse, UploadCertParams>} API
*/
export const uploadCert = (params?: UploadCertParams): useAxiosReturn<UploadCertResponse, UploadCertParams> =>
useApi<UploadCertResponse, UploadCertParams>('/v1/cert/upload_cert', params)
/**
* @description
* @param {DeleteCertParams} [params]
* @returns {useAxiosReturn<DeleteCertResponse, DeleteCertParams>} API
*/
export const deleteCert = (params?: DeleteCertParams): useAxiosReturn<DeleteCertResponse, DeleteCertParams> =>
useApi<DeleteCertResponse, DeleteCertParams>('/v1/cert/del_cert', params)
/**
* @description
* @param {DownloadCertParams} [params]
* @returns {Promise<AxiosResponse<DownloadCertResponse>>} Promise
*/
export const downloadCert = (params?: DownloadCertParams): Promise<AxiosResponse<DownloadCertResponse>> => {
return axios.get<DownloadCertResponse>('/v1/cert/download', { params })
}

View File

@ -0,0 +1,98 @@
// External Libraries (sorted alphabetically by module path)
import { HttpClient, useAxios, useAxiosReturn } from '@baota/hooks/axios'
import { errorMiddleware } from '@baota/hooks/axios/model'
import { isDev } from '@baota/utils/browser'
import { AxiosError } from 'axios'
import MD5 from 'crypto-js/md5'
// Type Imports (sorted alphabetically by module path)
import type { AxiosResponseData } from '@/types/public'
import type { Ref } from 'vue'
// Relative Internal Imports (sorted alphabetically by module path)
import { router } from '@router/index'
/**
* @description 401 404
* @param {AxiosError} error
* @returns {AxiosError}
*/
export const responseHandleStatusCode = errorMiddleware((error: AxiosError) => {
// 处理 401 状态码
if (error.status === 401) {
router.push(`/login`)
}
// 处理404状态码
if (error.status === 404) {
// router.go(0) // 刷新页面
}
return error
})
/**
* @description
* @param {T} data
* @returns {AxiosResponseData<T>}
*/
export const useApiReturn = <T>(data: T, message?: string): AxiosResponseData<T> => {
return {
code: 200,
count: 0,
data,
message: message || '请求返回值错误,请检查',
status: false,
} as AxiosResponseData<T>
}
/**
* @description http
*/
export const instance = new HttpClient({
baseURL: isDev() ? '/api' : '/',
timeout: 50000,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
middlewares: [responseHandleStatusCode],
})
/**
* @description API Token
*/
interface ApiTokenResult {
api_token: string
timestamp: number
}
/**
* @description api token
* @returns {ApiTokenResult} API token
*/
export const createApiToken = (): ApiTokenResult => {
const now = new Date().getTime()
const apiKey = '123456' // 注意: 此处为硬编码密钥,建议后续优化
const api_token = MD5(now + MD5(apiKey).toString()).toString()
return { api_token, timestamp: now }
}
/**
* @description axios
* @param {string} url
* @param {Z} [params]
* @returns {useAxiosReturn<T, Z>}
*/
export const useApi = <T, Z = Record<string, unknown>>(url: string, params?: Z) => {
const { urlRef, paramsRef, ...other } = useAxios<T>(instance)
const apiParams = createApiToken()
urlRef.value = url
paramsRef.value = isDev() ? { ...(params || {}), ...apiParams } : params || {}
return { urlRef, paramsRef: paramsRef as Ref<Z>, ...other } as useAxiosReturn<T, Z>
}
// 导出所有模块
export * from './public'
export * from './workflow'
export * from './cert'
export * from './access'
export * from './monitor'
export * from './setting'

View File

@ -0,0 +1,60 @@
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type {
AddSiteMonitorParams,
DeleteSiteMonitorParams,
SetSiteMonitorParams,
SiteMonitorListParams,
SiteMonitorListResponse,
UpdateSiteMonitorParams,
} from '@/types/monitor' // Sorted types
import type { AxiosResponseData } from '@/types/public'
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {SiteMonitorListParams} [params]
* @returns {useAxiosReturn<SiteMonitorListResponse, SiteMonitorListParams>} API
*/
export const getSiteMonitorList = (
params?: SiteMonitorListParams,
): useAxiosReturn<SiteMonitorListResponse, SiteMonitorListParams> =>
useApi<SiteMonitorListResponse, SiteMonitorListParams>('/v1/siteMonitor/get_list', params)
/**
* @description
* @param {AddSiteMonitorParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, AddSiteMonitorParams>} API
*/
export const addSiteMonitor = (params?: AddSiteMonitorParams): useAxiosReturn<AxiosResponseData, AddSiteMonitorParams> =>
useApi<AxiosResponseData, AddSiteMonitorParams>('/v1/siteMonitor/add_site_monitor', params)
/**
* @description
* @param {UpdateSiteMonitorParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, UpdateSiteMonitorParams>} API
*/
export const updateSiteMonitor = (
params?: UpdateSiteMonitorParams,
): useAxiosReturn<AxiosResponseData, UpdateSiteMonitorParams> =>
useApi<AxiosResponseData, UpdateSiteMonitorParams>('/v1/siteMonitor/upd_site_monitor', params)
/**
* @description
* @param {DeleteSiteMonitorParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, DeleteSiteMonitorParams>} API
*/
export const deleteSiteMonitor = (
params?: DeleteSiteMonitorParams,
): useAxiosReturn<AxiosResponseData, DeleteSiteMonitorParams> =>
useApi<AxiosResponseData, DeleteSiteMonitorParams>('/v1/siteMonitor/del_site_monitor', params)
/**
* @description /
* @param {SetSiteMonitorParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, SetSiteMonitorParams>} / API
*/
export const setSiteMonitor = (params?: SetSiteMonitorParams): useAxiosReturn<AxiosResponseData, SetSiteMonitorParams> =>
useApi<AxiosResponseData, SetSiteMonitorParams>('/v1/siteMonitor/set_site_monitor', params)

View File

@ -0,0 +1,47 @@
// External library dependencies
import axios, { type AxiosResponse } from 'axios'
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type {
AxiosResponseData,
GetOverviewsParams,
GetOverviewsResponse,
loginCodeResponse, // Added this type based on usage
loginParams,
loginResponse,
} from '@/types/public' // Sorted types
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {loginParams} [params]
* @returns {useAxiosReturn<loginResponse, loginParams>} API
*/
export const login = (params?: loginParams): useAxiosReturn<loginResponse, loginParams> =>
useApi<loginResponse, loginParams>('/v1/login/sign', params)
/**
* @description
* @returns {Promise<AxiosResponse<loginCodeResponse>>} Promise
*/
export const getLoginCode = (): Promise<AxiosResponse<loginCodeResponse>> => {
return axios.get<loginCodeResponse>('/v1/login/get_code')
}
/**
* @description
* @returns {useAxiosReturn<AxiosResponseData, unknown>} API
*/
export const signOut = (): useAxiosReturn<AxiosResponseData, unknown> =>
useApi<AxiosResponseData, unknown>('/v1/login/sign-out', {})
/**
* @description
* @param {GetOverviewsParams} [params]
* @returns {useAxiosReturn<GetOverviewsResponse, GetOverviewsParams>} API
*/
export const getOverviews = (params?: GetOverviewsParams): useAxiosReturn<GetOverviewsResponse, GetOverviewsParams> =>
useApi<GetOverviewsResponse, GetOverviewsParams>('/v1/overview/get_overviews', params)

View File

@ -0,0 +1,73 @@
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type { AxiosResponseData } from '@/types/public'
import type {
AddReportParams,
DeleteReportParams,
GetReportListParams,
GetReportListResponse,
GetSettingParams,
GetSettingResponse,
SaveSettingParams,
TestReportParams,
UpdateReportParams,
} from '@/types/setting' // Sorted types
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {GetSettingParams} [params]
* @returns {useAxiosReturn<GetSettingResponse, GetSettingParams>} API
*/
export const getSystemSetting = (params?: GetSettingParams): useAxiosReturn<GetSettingResponse, GetSettingParams> =>
useApi<GetSettingResponse, GetSettingParams>('/v1/setting/get_setting', params)
/**
* @description
* @param {SaveSettingParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, SaveSettingParams>} API
*/
export const saveSystemSetting = (params?: SaveSettingParams): useAxiosReturn<AxiosResponseData, SaveSettingParams> =>
useApi<AxiosResponseData, SaveSettingParams>('/v1/setting/save_setting', params)
/**
* @description
* @param {AddReportParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, AddReportParams>} API
*/
export const addReport = (params?: AddReportParams): useAxiosReturn<AxiosResponseData, AddReportParams> =>
useApi<AxiosResponseData, AddReportParams>('/v1/report/add_report', params)
/**
* @description
* @param {UpdateReportParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, UpdateReportParams>} API
*/
export const updateReport = (params?: UpdateReportParams): useAxiosReturn<AxiosResponseData, UpdateReportParams> =>
useApi<AxiosResponseData, UpdateReportParams>('/v1/report/upd_report', params)
/**
* @description
* @param {DeleteReportParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, DeleteReportParams>} API
*/
export const deleteReport = (params?: DeleteReportParams): useAxiosReturn<AxiosResponseData, DeleteReportParams> =>
useApi<AxiosResponseData, DeleteReportParams>('/v1/report/del_report', params)
/**
* @description
* @param {TestReportParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, TestReportParams>} API
*/
export const testReport = (params?: TestReportParams): useAxiosReturn<AxiosResponseData, TestReportParams> =>
useApi<AxiosResponseData, TestReportParams>('/v1/report/notify_test', params)
/**
* @description
* @param {GetReportListParams} [params]
* @returns {useAxiosReturn<GetReportListResponse, GetReportListParams>} API
*/
export const getReportList = (params?: GetReportListParams): useAxiosReturn<GetReportListResponse, GetReportListParams> =>
useApi<GetReportListResponse, GetReportListParams>('/v1/report/get_list', params)

View File

@ -0,0 +1,97 @@
// Type imports
import type { useAxiosReturn } from '@baota/hooks/axios'
import type { AxiosResponseData } from '@/types/public'
import type {
AddWorkflowParams,
DeleteWorkflowParams,
EnableWorkflowParams,
ExecuteWorkflowParams,
UpdateWorkflowExecTypeParams,
UpdateWorkflowParams,
WorkflowHistoryDetailParams,
WorkflowHistoryParams,
WorkflowHistoryResponse,
WorkflowListParams,
WorkflowListResponse,
} from '@/types/workflow' // Sorted types
// Relative internal imports
import { useApi } from '@api/index'
/**
* @description
* @param {WorkflowListParams} [params]
* @returns {useAxiosReturn<WorkflowListResponse, WorkflowListParams>} API
*/
export const getWorkflowList = (params?: WorkflowListParams): useAxiosReturn<WorkflowListResponse, WorkflowListParams> =>
useApi<WorkflowListResponse, WorkflowListParams>('/v1/workflow/get_list', params)
/**
* @description
* @param {AddWorkflowParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, AddWorkflowParams>} API
*/
export const addWorkflow = (params?: AddWorkflowParams): useAxiosReturn<AxiosResponseData, AddWorkflowParams> =>
useApi<AxiosResponseData, AddWorkflowParams>('/v1/workflow/add_workflow', params)
/**
* @description
* @param {UpdateWorkflowParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, UpdateWorkflowParams>} API
*/
export const updateWorkflow = (params?: UpdateWorkflowParams): useAxiosReturn<AxiosResponseData, UpdateWorkflowParams> =>
useApi<AxiosResponseData, UpdateWorkflowParams>('/v1/workflow/upd_workflow', params)
/**
* @description
* @param {DeleteWorkflowParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, DeleteWorkflowParams>} API
*/
export const deleteWorkflow = (params?: DeleteWorkflowParams): useAxiosReturn<AxiosResponseData, DeleteWorkflowParams> =>
useApi<AxiosResponseData, DeleteWorkflowParams>('/v1/workflow/del_workflow', params)
/**
* @description
* @param {WorkflowHistoryParams} [params]
* @returns {useAxiosReturn<WorkflowHistoryResponse, WorkflowHistoryParams>} API
*/
export const getWorkflowHistory = (
params?: WorkflowHistoryParams,
): useAxiosReturn<WorkflowHistoryResponse, WorkflowHistoryParams> =>
useApi<WorkflowHistoryResponse, WorkflowHistoryParams>('/v1/workflow/get_workflow_history', params)
/**
* @description
* @param {WorkflowHistoryDetailParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, WorkflowHistoryDetailParams>} API
*/
export const getWorkflowHistoryDetail = (
params?: WorkflowHistoryDetailParams,
): useAxiosReturn<AxiosResponseData, WorkflowHistoryDetailParams> =>
useApi<AxiosResponseData, WorkflowHistoryDetailParams>('/v1/workflow/get_exec_log', params)
/**
* @description
* @param {ExecuteWorkflowParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, ExecuteWorkflowParams>} API
*/
export const executeWorkflow = (params?: ExecuteWorkflowParams): useAxiosReturn<AxiosResponseData, ExecuteWorkflowParams> =>
useApi<AxiosResponseData, ExecuteWorkflowParams>('/v1/workflow/execute_workflow', params)
/**
* @description
* @param {UpdateWorkflowExecTypeParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, UpdateWorkflowExecTypeParams>} API
*/
export const updateWorkflowExecType = (
params?: UpdateWorkflowExecTypeParams,
): useAxiosReturn<AxiosResponseData, UpdateWorkflowExecTypeParams> =>
useApi<AxiosResponseData, UpdateWorkflowExecTypeParams>('/v1/workflow/exec_type', params)
/**
* @description
* @param {EnableWorkflowParams} [params]
* @returns {useAxiosReturn<AxiosResponseData, EnableWorkflowParams>} API
*/
export const enableWorkflow = (params?: EnableWorkflowParams): useAxiosReturn<AxiosResponseData, EnableWorkflowParams> =>
useApi<AxiosResponseData, EnableWorkflowParams>('/v1/workflow/active', params)

View File

@ -0,0 +1 @@
<?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="1747902416932" class="icon" viewBox="0 0 1273 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10903" width="49.7265625" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M692.017327 292.268083l29.243926 0.499287 79.457889-79.457889 3.851639-33.666179A355.634679 355.634679 0 0 0 567.409668 89.300966c-164.621909 0-303.566225 112.011372-344.693171 263.737423 8.673321-6.0485 27.21825-1.512125 27.21825-1.512125l158.773124-26.105554s8.159769-13.509268 12.296714-12.838797A198.002782 198.002782 0 0 1 567.509525 247.86011c47.075589 0.099857 90.442193 16.733232 124.507802 44.251054z" fill="#EA4335" p-id="10904"></path><path d="M912.302554 353.352227a357.674622 357.674622 0 0 0-107.774569-173.708925l-112.510658 112.510658c45.078443 36.376592 73.994267 92.03991 73.994267 154.350872v19.85734c54.736072 0 99.201106 44.564891 99.201105 99.201105 0 54.736072-44.564891 99.201106-99.201105 99.201106H567.609383L547.752043 684.735845v119.058445l19.85734 19.757482h198.402211A258.345128 258.345128 0 0 0 1024.000089 565.577542c-0.099857-87.803107-44.222523-165.477829-111.697535-212.21105z" fill="#4285F4" p-id="10905"></path><path d="M369.007457 823.68016h198.288089V664.764383h-198.288089a98.288124 98.288124 0 0 1-40.827375-8.873036l-28.630517 8.773178-79.457889 79.457889-6.961481 26.818821a256.775942 256.775942 0 0 0 155.862997 52.624802z" fill="#34A853" p-id="10906"></path><path d="M369.007457 307.70317A258.345128 258.345128 0 0 0 111.018962 565.6774c0 83.780284 40.128374 158.273837 102.225356 205.463549l115.035622-115.035622a99.286697 99.286697 0 0 1-58.473588-90.427927c0-54.736072 44.564891-99.201106 99.201105-99.201106 40.228231 0 74.807391 24.251061 90.442193 58.487854l115.035622-115.035622c-47.175447-62.096982-121.683266-102.225355-205.46355-102.225356z" fill="#FBBC05" p-id="10907"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<?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="1747988020538" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5468" width="40" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M776.399 1023.968H247.664a41.194 41.194 0 0 1-41.053-41.021V591.801a41.18 41.18 0 0 1 41.053-41.053h49.661v-63.227c0-118.393 96.346-214.675 214.675-214.675s214.674 96.347 214.674 214.675v63.228h49.661a41.18 41.18 0 0 1 41.05 41.052v391.145a41.167 41.167 0 0 1-40.986 41.055zM538.785 807.565a54.36 54.36 0 0 0-26.686-101.722h-0.128a54.4 54.4 0 0 0-27.073 101.558l0.256 0.128v52.989a26.782 26.782 0 0 0 53.565 0zM420.454 550.75H603.61v-63.228a91.547 91.547 0 0 0-183.093 0z m-226.418-58.3H66.46a37.47 37.47 0 1 1 0-74.939h127.576a37.47 37.47 0 1 1 0 74.939z m89.882-200.691h-0.1a37.06 37.06 0 0 1-23.743-8.575l0.064 0.064-100.89-82.971a37.483 37.483 0 1 1 47.677-57.852l-0.064-0.064 100.89 82.971a37.468 37.468 0 0 1-23.767 66.426h-0.1z m228.082-88.218a37.458 37.458 0 0 1-37.47-37.47V37.47a37.47 37.47 0 0 1 74.939 0v128.6a37.458 37.458 0 0 1-37.47 37.47z m228.085 88.217h-0.16a37.42 37.42 0 0 1-23.742-66.332l0.064-0.064 100.89-82.971a37.471 37.471 0 0 1 47.677 57.82l-0.064 0.064-100.89 82.971a37.184 37.184 0 0 1-23.711 8.479h-0.064zM957.54 492.449H828.748a37.47 37.47 0 1 1 0-74.939H957.54a37.47 37.47 0 1 1 0 74.939z" fill="#003A70" p-id="5469"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1 @@
<?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="1747901885171" class="icon" viewBox="0 0 1113 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5838" width="43.4765625" height="40" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M107.287 512.928c0-79.047-0.045-158.094 0.03-237.141 0.02-21.15 1.256-42.135 9.203-62.181 23.74-59.883 67.166-95.237 130.865-105.518 8.582-1.385 17.221-1.667 25.889-1.667 159.718 0.009 319.436-0.021 479.155 0.019 74.315 0.019 133.182 41.364 157.993 111.108 6.12 17.204 8.542 35.132 8.54 53.403-0.022 161.072 0.122 322.144-0.072 483.215-0.091 75.418-50.342 141.59-119.876 158.868-15.044 3.738-30.331 5.422-45.807 5.423-160.26 0.014-320.521 0.29-480.78-0.12-71.188-0.182-121.825-33.848-152.353-97.864-10.72-22.48-12.842-46.672-12.817-71.218 0.081-78.774 0.03-157.551 0.03-236.327z m283.66-4.813v136.454H254.062v138.583h138.402V645.64h138.004v137.437h138.576V644.705h137.443V505.977H668.339V367.658H530.496V229.98H391.685v138.154H254.216c-0.365 1.798-0.66 2.576-0.661 3.354-0.035 43.047 0.079 86.094-0.188 129.139-0.042 6.738 3.542 6.504 8.205 6.495 39.798-0.073 79.596-0.06 119.394-0.007 3.173 0.005 6.462-0.676 9.981 1z" fill="#4D70D4" p-id="5839"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg viewBox="64 64 896 896" data-icon="solution" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M688 264c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48zm-8 136H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM480 544H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm-48 308H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h264c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm356.8-74.4c29-26.3 47.2-64.3 47.2-106.6 0-79.5-64.5-144-144-144s-144 64.5-144 144c0 42.3 18.2 80.3 47.2 106.6-57 32.5-96.2 92.7-99.2 162.1-.2 4.5 3.5 8.3 8 8.3h48.1c4.2 0 7.7-3.3 8-7.6C564 871.2 621.7 816 692 816s128 55.2 131.9 124.4c.2 4.2 3.7 7.6 8 7.6H880c4.6 0 8.2-3.8 8-8.3-2.9-69.5-42.2-129.6-99.2-162.1zM692 591c44.2 0 80 35.8 80 80s-35.8 80-80 80-80-35.8-80-80 35.8-80 80-80z"/></svg>

After

Width:  |  Height:  |  Size: 958 B

View File

@ -0,0 +1 @@
<svg viewBox="64 64 896 896" data-icon="sisternode" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M672 432c-120.3 0-219.9 88.5-237.3 204H320c-15.5 0-28-12.5-28-28V244h291c14.2 35.2 48.7 60 89 60 53 0 96-43 96-96s-43-96-96-96c-40.3 0-74.8 24.8-89 60H112v72h108v364c0 55.2 44.8 100 100 100h114.7c17.4 115.5 117 204 237.3 204 132.5 0 240-107.5 240-240S804.5 432 672 432zm128 266c0 4.4-3.6 8-8 8h-86v86c0 4.4-3.6 8-8 8h-52c-4.4 0-8-3.6-8-8v-86h-86c-4.4 0-8-3.6-8-8v-52c0-4.4 3.6-8 8-8h86v-86c0-4.4 3.6-8 8-8h52c4.4 0 8 3.6 8 8v86h86c4.4 0 8 3.6 8 8v52z"/></svg>

After

Width:  |  Height:  |  Size: 584 B

View File

@ -0,0 +1 @@
<svg viewBox="64 64 896 896" data-icon="deployment-unit" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M888.3 693.2c-42.5-24.6-94.3-18-129.2 12.8l-53-30.7V523.6c0-15.7-8.4-30.3-22-38.1l-136-78.3v-67.1c44.2-15 76-56.8 76-106.1 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 49.3 31.8 91.1 76 106.1v67.1l-136 78.3c-13.6 7.8-22 22.4-22 38.1v151.6l-53 30.7c-34.9-30.8-86.8-37.4-129.2-12.8-53.5 31-71.7 99.4-41 152.9 30.8 53.5 98.9 71.9 152.2 41 42.5-24.6 62.7-73 53.6-118.8l48.7-28.3 140.6 81c6.8 3.9 14.4 5.9 22 5.9s15.2-2 22-5.9L674.5 740l48.7 28.3c-9.1 45.7 11.2 94.2 53.6 118.8 53.3 30.9 121.5 12.6 152.2-41 30.8-53.6 12.6-122-40.7-152.9zm-673 138.4a47.6 47.6 0 0 1-65.2-17.6c-13.2-22.9-5.4-52.3 17.5-65.5a47.6 47.6 0 0 1 65.2 17.6c13.2 22.9 5.4 52.3-17.5 65.5zM522 463.8zM464 234a48.01 48.01 0 0 1 96 0 48.01 48.01 0 0 1-96 0zm170 446.2-122 70.3-122-70.3V539.8l122-70.3 122 70.3v140.4zm239.9 133.9c-13.2 22.9-42.4 30.8-65.2 17.6-22.8-13.2-30.7-42.6-17.5-65.5s42.4-30.8 65.2-17.6c22.9 13.2 30.7 42.5 17.5 65.5z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M64 512a448 448 0 1 0 896 0 448 448 0 1 0-896 0z" fill="#FA5151"/><path d="m557.3 512 113.1-113.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L512 466.7 398.9 353.6c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L466.7 512 353.6 625.1c-12.5 12.5-12.5 32.8 0 45.3 6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4L512 557.3l113.1 113.1c6.2 6.2 14.4 9.4 22.6 9.4s16.4-3.1 22.6-9.4c12.5-12.5 12.5-32.8 0-45.3L557.3 512z" fill="#FFF"/></svg>

After

Width:  |  Height:  |  Size: 538 B

View File

@ -0,0 +1 @@
<svg viewBox="64 64 896 896" data-icon="send" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M931.4 498.9 94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2a15.99 15.99 0 0 0-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-.9 3.7-.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 .7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-.8 4.2-2.6 5-5 1.4-4.2-.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"/></svg>

After

Width:  |  Height:  |  Size: 525 B

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M64 512a448 448 0 1 0 896 0 448 448 0 1 0-896 0z" fill="#07C160"/><path d="M466.7 679.8c-8.5 0-16.6-3.4-22.6-9.4l-181-181.1c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l158.4 158.5 249-249c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L489.3 670.4c-6 6-14.1 9.4-22.6 9.4z" fill="#FFF"/></svg>

After

Width:  |  Height:  |  Size: 398 B

View File

@ -0,0 +1 @@
<svg viewBox="64 64 896 896" data-icon="cloud-upload" width="1em" height="1em" fill="currentColor" aria-hidden="true"><path d="M518.3 459a8 8 0 0 0-12.6 0l-112 141.7a7.98 7.98 0 0 0 6.3 12.9h73.9V856c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V613.7H624c6.7 0 10.4-7.7 6.3-12.9L518.3 459z"/><path d="M811.4 366.7C765.6 245.9 648.9 160 512.2 160S258.8 245.8 213 366.6C127.3 389.1 64 467.2 64 560c0 110.5 89.5 200 199.9 200H304c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8h-40.1c-33.7 0-65.4-13.4-89-37.7-23.5-24.2-36-56.8-34.9-90.6.9-26.4 9.9-51.2 26.2-72.1 16.7-21.3 40.1-36.8 66.1-43.7l37.9-9.9 13.9-36.6c8.6-22.8 20.6-44.1 35.7-63.4a245.6 245.6 0 0 1 52.4-49.9c41.1-28.9 89.5-44.2 140-44.2s98.9 15.3 140 44.2c19.9 14 37.5 30.8 52.4 49.9 15.1 19.3 27.1 40.7 35.7 63.4l13.8 36.5 37.8 10C846.1 454.5 884 503.8 884 560c0 33.1-12.9 64.3-36.3 87.7a123.07 123.07 0 0 1-87.6 36.3H720c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h40.1C870.5 760 960 670.5 960 560c0-92.7-63.1-170.7-148.6-193.3z"/></svg>

After

Width:  |  Height:  |  Size: 968 B

View File

@ -0,0 +1 @@
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M717.62 682.138h116.582l-212.02 296.396-5.12-1.792 46.08-194.816h-91.136c10.24-47.257 20.07-91.648 30.72-140.185-25.907 7.782-48.537 12.288-69.17 21.299-44.698 19.456-84.89 11.162-121.14-17.613a455.68 455.68 0 0 1-66.97-63.232c-20.48-24.473-13.977-38.451 17.05-43.673 65.69-11.06 131.584-20.788 197.58-33.076h-41.42c-56.78-.563-113.613-1.484-170.394-1.69-34.867 0-59.443-18.175-80.486-43.468a272.589 272.589 0 0 1-54.989-110.848c-6.451-26.01.666-33.178 27.495-26.931 67.84 15.77 135.577 32.102 203.417 47.974a1030.195 1030.195 0 0 0 105.165 20.173c-40.96-13.62-82.74-26.112-123.34-40.96-61.953-22.938-122.88-47.923-184.833-71.68a66.56 66.56 0 0 1-38.963-37.376c-24.115-54.989-42.138-111.565-42.547-172.288 0-22.118 7.219-27.546 26.214-18.33C378.88 143.36 578.918 222.31 779.571 299.315a288.666 288.666 0 0 1 54.989 29.747c33.331 22.17 44.186 50.125 26.931 85.248-35.43 72.09-74.393 142.439-112.23 213.35-9.472 17.46-20.02 34.407-31.642 54.478z" fill="#59ADF8"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M512 0q512 0 512 512t-512 512Q0 1024 0 512T512 0z" fill="#FFF"/><path d="M832.032 367.205c4.123.024 8.243.265 12.34.723a345.91 345.91 0 0 1 91.865 25.368c8.523 3.818 10.629 6.91 3.291 14.608a296.456 296.456 0 0 0-51.46 75.942c-14.15 29.776-29.614 58.928-44.09 88.576a190.048 190.048 0 0 1-43.992 58.567c-45.276 40.963-98.052 58.238-158.264 49.88-69.096-9.575-134.541-32.903-196.365-63.667-3.85-1.908-6.581-3.29-8.851-4.672a4.483 4.483 0 0 1-2.096-3.943 4.483 4.483 0 0 1 2.358-3.79l4.278-2.304c50.079-26.749 91.866-64.027 132.138-103.216 17.011-16.451 33.331-33.725 50.507-50.045a291.126 291.126 0 0 1 135.2-72.387c11.12-2.666 22.34-4.837 33.527-7.239h.528l23.82-2.204" fill="#133C9A"/><path d="M348.029 850.682c-7.6-.428-26.322-2.994-28.56-3.29a452.614 452.614 0 0 1-139.312-40.734c-25.466-11.91-49.98-25.96-74.559-39.648-16.155-9.016-23.492-23.032-23.328-42.05.528-70.347.528-140.704 0-211.074-.262-45.275-1.579-90.548-2.27-135.792a36.602 36.602 0 0 1 1.875-11.744c2.731-8.16 8.359-8.656 13.92-3.29 6.416 6.185 11.515 13.686 17.866 19.74 56.856 56 117.1 107.296 184.651 149.546a1017.56 1017.56 0 0 0 118.451 65.246c65.642 29.81 132.928 56.1 203.44 72.78 62.285 14.742 122.861 5.463 173.333-34.086 15.4-13.161 23.034-22.803 41.294-47.118a303.662 303.662 0 0 1-31.555 61.464c-11.745 18.491-38.2 43.168-58.368 62.515-30.633 29.613-70.677 53.632-108.253 73.901-40.963 22.078-83.54 39.714-129.044 49.354-23.328 5.824-57.023 12.504-68.637 13.161-2.04-.165-8.983 1.415-12.536 1.12-29.975 2.269-48.466 3.125-78.408 0z" fill="#3370FF"/><path d="M219.28 172.912a44.256 44.256 0 0 1 6.283 0c128.848 0 256.645 2.072 385.328 2.072.224 0 .443.069.626.198a303.498 303.498 0 0 1 33.133 33.856c29.054 28.89 50.704 78.968 65.51 109.503 7.371 21.091 18.491 41.26 23.757 64.752v.429a281.552 281.552 0 0 0-38.3 15.596c-37.214 18.887-54.126 32.672-85.022 63.108-16.813 16.45-31.192 31.29-53.533 52.348-7.008 6.581-24.841 23.264-25.137 22.736-5.923-10.464-106.08-206.4-307.283-360.552" fill="#00D6B9"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M906.667 266.667v640h-832v-640h832zM585.259 623.872l-94.592 94.592-94.614-94.613-218.837 218.816h626.88L585.259 623.85zm257.408-257.43-212.139 212.14 212.139 212.16v-424.32zm-704 0V790.72l212.138-212.117-212.138-212.139zm649.28-35.775H193.365l297.302 297.301 297.28-297.301z" fill="#1677FF"/></svg>

After

Width:  |  Height:  |  Size: 407 B

View File

@ -0,0 +1 @@
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M446.293 810.667C384 898.987 262.4 921.173 174.507 859.733 87.04 798.293 66.56 675.84 128 586.667a195.627 195.627 0 0 1 152.747-84.48l2.133 61.013c-38.827 2.987-76.373 23.04-100.693 58.027-42.667 61.44-29.44 144.213 29.013 185.6 58.88 40.96 141.227 25.173 183.893-35.84 13.227-19.2 20.907-40.107 23.894-61.44v-43.094l238.08-1.706 2.986-4.694c22.614-39.253 71.68-52.906 110.08-30.72a81.067 81.067 0 0 1 29.014 110.934c-22.614 38.826-72.107 52.48-110.507 30.293-17.493-9.813-29.867-25.6-35.413-43.52l-173.654.853a211.627 211.627 0 0 1-33.28 82.774m310.614-304.64c107.946 13.226 184.746 110.08 171.52 216.32-13.227 106.666-111.36 182.186-219.307 168.96a197.504 197.504 0 0 1-146.347-94.294l52.907-30.72a137.387 137.387 0 0 0 98.987 61.867c74.666 8.96 140.8-41.813 149.76-113.067 8.96-71.253-43.947-136.533-117.76-145.493-23.04-2.56-45.227.427-65.28 7.68l-36.267 18.773-110.08-203.52h-9.387a81.323 81.323 0 0 1-78.933-83.2C448 264.96 486.4 230.4 531.2 232.107c44.8 2.56 80.213 38.826 78.933 83.2-.853 18.773-8.106 35.84-19.626 49.066l81.066 149.76c26.454-8.533 55.467-11.52 85.334-8.106M352 389.973c-42.667-100.266 2.56-215.04 101.12-256.853 98.987-41.813 213.333 5.547 256 105.813 25.173 58.454 20.053 122.454-8.533 173.654l-52.907-30.72c17.92-34.56 20.907-76.8 3.84-116.48C622.507 197.12 545.28 164.267 479.147 192c-66.56 28.16-96.427 106.667-67.414 174.933 11.947 28.16 32 49.92 56.32 64.427l16.64 8.96-130.986 212.907c1.28 2.133 2.986 4.693 4.266 8.106 20.907 38.827 6.4 87.894-32.853 108.8-38.827 20.907-87.893 5.547-109.227-34.56-20.906-39.68-6.4-88.746 32.854-109.653 16.64-8.96 34.986-11.093 52.48-7.253l98.56-160.854c-20.054-18.346-37.12-41.386-47.787-67.84z" fill="#44A3F3"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg class="icon" width="30" height="30" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M803.6 859.2c0 26.6-20.4 49.2-48.4 51.8-21.2 2-48.6-11-54.8-39.8-5.6-26-13.2-50.8-29-72.4-6-8.2-12.8-16-20-23.4-7.6-8-9.4-14-4.4-19.8 5-5.8 12.8-5 20.8 3.2 20.8 21 45.4 35.2 73.6 43.6 7.2 2.2 14.8 3.4 22.2 5.2 24.6 6.2 40 26.2 40 51.6z" fill="#FC6401"/><path d="M698.2 549.8c.2-28.4 20.8-50.2 49.6-52.6 25.6-2.2 50.6 17.6 55 45.2 6 36.2 22.8 66.2 48.4 92 3.2 3.2 5.6 9.2 5.2 13.8-.4 7.2-9.8 10.6-16.2 6.4-3.4-2.2-6.2-5-9-7.8-25.4-24.6-55.6-39.4-90.4-45.4-24.8-4.6-42.6-26.2-42.6-51.6z" fill="#2DBD00"/><path d="M595.4 765.2c-26.6 0-49.2-20.4-51.8-48.4-2-21.2 11-48.6 39.8-54.8 26-5.6 50.8-13.2 72.4-29 8.2-6 16-12.8 23.4-20 8-7.6 14-9.4 19.8-4.4 5.8 5 5 12.8-3.2 20.8-21 20.8-35.2 45.4-43.6 73.6-2.2 7.2-3.4 14.8-5.2 22.2-6.2 24.6-26.2 40-51.6 40z" fill="#FFCD00"/><path d="M898.8 650c28.4.2 50.2 20.8 52.6 49.6 2.2 25.6-17.6 50.6-45.2 55-36.2 6-66.2 22.8-92 48.4-3.2 3.2-9.2 5.6-13.8 5.2-7.2-.4-10.6-9.8-6.4-16.2 2.2-3.4 5-6.2 7.8-9 24.6-25.4 39.4-55.6 45.4-90.4 4.6-25 26.2-42.8 51.6-42.6z" fill="#0084F0"/><path d="M734 208.6c-110.4-108.4-244.8-139.8-392.4-100-260 70.2-340.4 340.6-209 517 6.4 8.6 7.6 24.4 5.2 35.4-7 32.4-17.4 64.2-26 96.2-4.6 17.2-7.4 34.6 8 48.4 16.6 14.8 34.2 11.8 52.2 2.6 29.6-15 59.8-29.2 89-45 19-10.4 36.2-10.8 57.6-4.8 42.8 11.8 87.2 18.4 109.6 23 43.8-.8 83.6-5.2 120.2-13.6-13.8-12-23-29.2-24.8-49-.4-5.4-.2-10.8.6-16.2C466.4 715 405 710 341 688.6c-42.2-14.2-76.8-17.8-113.4 7-3.4 2.2-7.8 2.8-24.6 8.2 33.8-58.4 8.8-95-19.6-136.6-63.4-92-50.4-210.8 24.6-296.4C330.8 131 571 131 693.8 271c52.8 60.2 73.6 135.2 61.8 206.2 28 1.6 52.8 20.6 63 47.2 32-108.8 4-228.8-84.6-315.8z" fill="#0083EF"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M69.53 0h884.94v1024H69.53z" fill="none"/><path d="M79.56 259.856v503.572l435.095 250.732 434.041-250.732-1.054-502.519L514.655 10.177 79.56 259.856z" fill="#005EFD"/><path d="M93.256 268.284V755l422.452 241.25L935 753.947V268.284L513.601 25.979 93.256 268.284z" fill="#FFF"/><path d="m139.61 294.621 95.868 56.89 371.885-218.075L513.6 79.708 139.61 294.62z" fill="#005EFD"/><path d="M139.61 293.568v435.094l243.358 139.062 92.707-55.835-241.25-140.116 1.053-320.263-95.868-57.942zm651.66 56.528v321.78l95.27 55.733V294.364L645.75 154.506l-94.223 55.732L791.27 350.096z" fill="#0854C1"/><path d="m420.893 886.47 93.34 56.052L886.54 727.83l-94.388-57.11-371.259 215.75zm-35.818-469.643h49.88v280.23l93.395 55.836V278.819l-143.275 81.12v56.888z" fill="#005EFD"/><path d="m528.35 752.893 31.605-16.856V295.675l-31.605-16.856v474.074z" fill="#0854C1"/></svg>

After

Width:  |  Height:  |  Size: 952 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M642.56 946.176H381.44c-167.936 0-303.616-136.192-303.616-303.616V381.44c0-167.936 136.192-303.616 303.616-303.616h261.12c167.936 0 303.616 136.192 303.616 303.616v261.12c0 167.424-136.192 303.616-303.616 303.616z" fill="#F2F9FF"/><path d="m512 808.448-6.144-2.56c-201.728-78.336-224.768-180.736-224.768-250.88V287.232l17.92.512c140.288 4.608 199.68-58.88 200.192-59.392l12.8-14.336 12.8 14.336c.512.512 56.832 59.392 185.344 59.392 5.12 0 9.728 0 14.848-.512l17.92-.512v267.776c0 70.144-23.552 172.544-224.768 250.88L512 808.448zM315.904 323.072V555.52c0 37.888 0 137.216 196.096 215.552 196.096-78.336 196.096-178.176 196.096-215.552V323.072C599.552 322.56 537.088 283.648 512 263.68c-25.088 19.968-87.552 58.88-196.096 59.392zm0 0" fill="#04AE7F"/><path d="M674.304 566.272h-78.336v-133.12h28.16v110.08h49.664v23.04zm-114.176-7.68c-9.216 6.656-22.016 10.24-38.4 10.24-15.36 0-27.648-2.56-37.376-7.168v-28.672c10.24 8.704 23.04 13.312 36.352 13.312 7.68 0 13.312-1.536 17.408-4.096 4.096-2.56 5.632-6.144 5.632-10.24 0-3.584-1.536-7.168-4.608-10.24-3.072-3.072-11.264-7.68-24.576-13.312-20.992-8.704-31.232-21.504-31.232-38.4 0-12.288 4.608-22.016 14.336-28.672 9.216-6.656 22.016-10.24 37.376-10.24 12.8 0 24.064 1.536 32.768 5.12v26.624c-8.704-6.144-19.456-9.216-31.232-9.216-7.168 0-12.8 1.024-16.896 3.584s-6.144 6.144-6.144 10.24c0 3.584 1.536 6.656 4.096 9.728 3.072 3.072 9.728 6.656 20.992 11.776 13.312 5.632 22.528 11.776 27.136 17.92 5.12 6.144 7.68 13.824 7.68 22.528.512 12.8-4.096 22.528-13.312 29.184zm-105.472 0c-9.216 6.656-22.016 10.24-38.4 10.24-15.36 0-27.648-2.56-37.376-7.168v-28.672c10.752 8.704 23.04 13.312 36.352 13.312 7.68 0 13.312-1.536 17.408-4.096 4.096-2.56 5.632-6.144 5.632-10.24 0-3.584-1.536-7.168-4.608-10.24-3.072-3.072-11.264-7.68-24.576-13.312-20.992-8.704-31.232-21.504-31.232-38.4 0-12.288 4.608-22.016 14.336-28.672 9.216-6.656 22.016-10.24 37.376-10.24 12.8 0 24.064 1.536 32.768 5.12v26.624c-8.704-6.144-19.456-9.216-31.232-9.216-7.168 0-12.8 1.024-16.896 3.584s-6.144 6.144-6.144 10.24c0 3.584 1.536 6.656 4.096 9.728 3.072 3.072 9.728 6.656 20.992 11.776 13.312 5.632 22.528 11.776 27.136 17.92 5.12 6.656 7.68 14.336 7.68 22.528 0 12.8-4.608 22.528-13.312 29.184zm332.288-190.464C696.32 386.56 604.16 395.776 512 395.776s-184.32-9.216-274.944-27.648c22.528 61.44 33.792 109.056 33.792 142.848 0 33.792-11.264 81.92-33.792 142.848C358.4 632.832 450.56 622.08 512 622.08s153.6 10.752 274.944 31.744C757.248 591.872 742.4 544.256 742.4 510.976s15.36-80.896 44.544-142.848zm0 0" fill="#04AE7F"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" height="200" width="200"><circle style="fill:#32bea6" cx="256" cy="256" r="256"/><path style="fill:#fff" d="M58.016 202.296h18.168v42.48h.296c2.192-3.368 5.128-6.152 8.936-8.2 3.512-2.056 7.76-3.224 12.304-3.224 12.16 0 24.896 8.064 24.896 30.912v42.04H104.6v-39.992c0-10.4-3.808-18.168-13.776-18.168-7.032 0-12.008 4.688-13.912 10.112-.584 1.472-.728 3.368-.728 5.424v42.624H58.016V202.296zM161.76 214.6v20.368h17.144v13.48H161.76v31.496c0 8.64 2.344 13.176 9.224 13.176 3.08 0 5.424-.44 7.032-.872l.296 13.768c-2.64 1.032-7.328 1.768-13.04 1.768-6.584 0-12.16-2.2-15.52-5.856-3.816-4.112-5.568-10.544-5.568-19.92v-33.544h-10.248V234.96h10.248v-16.12l17.576-4.24zm51.432 0v20.368h17.144v13.48h-17.144v31.496c0 8.64 2.344 13.176 9.224 13.176 3.08 0 5.424-.44 7.032-.872l.296 13.768c-2.64 1.032-7.328 1.768-13.04 1.768-6.584 0-12.16-2.2-15.52-5.856-3.816-4.112-5.568-10.544-5.568-19.92v-33.544h-10.248V234.96h10.248v-16.12l17.576-4.24zm30.792 44.088c0-9.376-.296-16.992-.592-23.728h15.832l.872 10.984h.296c5.264-8.056 13.616-12.6 24.464-12.6 16.408 0 30.024 14.064 30.024 36.328 0 25.784-16.256 38.232-32.512 38.232-8.936 0-16.408-3.808-20.072-9.512H262v36.904h-18.016v-76.608zM262 276.416c0 1.76.144 3.368.584 4.976 1.76 7.328 8.2 12.6 15.824 12.6 11.424 0 18.168-9.52 18.168-23.584 0-12.592-6.16-22.848-17.728-22.848-7.472 0-14.36 5.424-16.112 13.336-.448 1.464-.736 3.072-.736 4.536v10.984zm65.504-29.296c0-6.744 4.688-11.568 11.136-11.568 6.592 0 10.984 4.832 11.136 11.568 0 6.592-4.392 11.432-11.136 11.432-6.592 0-11.136-4.84-11.136-11.432zm0 49.368c0-6.744 4.688-11.576 11.136-11.576 6.592 0 10.984 4.688 11.136 11.576 0 6.448-4.392 11.424-11.136 11.424-6.592 0-11.136-4.976-11.136-11.424zM355.8 312.16l35.744-106.2h12.6l-35.752 106.2H355.8zm49.376 0 35.744-106.2h12.592l-35.728 106.2h-12.608z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z" fill="#FF6A00"/><path d="M324.8 602.624a26.752 26.752 0 0 1-21.312-25.92v-142.72A27.712 27.712 0 0 1 324.864 408l132.416-28.672 13.952-56.896h-153.92a97.6 97.6 0 0 0-98.24 96.96v169.344c.384 54.08 44.16 97.856 98.24 98.176h153.92L457.344 630.4 324.8 602.624zm385.6-280.192c54.016.128 97.92 43.584 98.56 97.6v170.176a98.368 98.368 0 0 1-98.56 98.048H555.328l14.08-56.832 132.608-28.736a27.84 27.84 0 0 0 21.376-25.92v-142.72a26.88 26.88 0 0 0-21.376-25.984l-132.544-28.8-14.08-56.832zM570.368 497.92v13.952H457.28V497.92h113.088z" fill="#FFF"/></svg>

After

Width:  |  Height:  |  Size: 697 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1710 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M486.119 373.591c0 20.818 2.25 37.697 6.189 50.075 4.5 12.378 10.127 25.881 18.004 40.51 2.813 4.5 3.939 9.002 3.939 12.94 0 5.627-3.376 11.253-10.69 16.88l-35.447 23.63c-5.063 3.376-10.127 5.064-14.628 5.064-5.627 0-11.253-2.813-16.88-7.877-7.876-8.44-14.628-17.442-20.254-26.444-5.627-9.565-11.253-20.255-17.442-33.195-43.886 51.762-99.024 77.644-165.415 77.644-47.262 0-84.959-13.504-112.528-40.51-27.57-27.007-41.635-63.016-41.635-108.027 0-47.824 16.879-86.646 51.2-115.903 34.32-29.257 79.894-43.886 137.846-43.886 19.13 0 38.822 1.688 59.64 4.501 20.817 2.814 42.197 7.315 64.703 12.378V200.3c0-42.76-9.002-72.58-26.444-90.022-18.004-17.442-48.387-25.881-91.71-25.881-19.692 0-39.947 2.25-60.765 7.314-20.817 5.064-41.072 11.253-60.765 19.13-9.002 3.938-15.753 6.189-19.692 7.314-3.938 1.125-6.752 1.688-9.002 1.688-7.877 0-11.816-5.627-11.816-17.442V74.83c0-9.001 1.126-15.753 3.939-19.692 2.813-3.938 7.877-7.876 15.754-11.815 19.692-10.127 43.323-18.567 70.892-25.319 27.57-7.314 56.826-10.69 87.772-10.69 66.953 0 115.903 15.191 147.41 45.574 30.946 30.382 46.7 76.519 46.7 138.409V373.59zm-228.431 85.521c18.567 0 37.697-3.376 57.952-10.127 20.255-6.752 38.259-19.13 53.45-36.01 9.002-10.69 15.754-22.505 19.13-36.008 3.376-13.503 5.626-29.82 5.626-48.95v-23.63c-16.316-3.939-33.758-7.314-51.762-9.565-18.005-2.25-35.447-3.376-52.888-3.376-37.697 0-65.266 7.314-83.833 22.506-18.567 15.19-27.57 36.571-27.57 64.703 0 26.444 6.752 46.136 20.818 59.64 13.503 14.065 33.196 20.817 59.077 20.817zm451.798 60.765c-10.128 0-16.88-1.688-21.38-5.626-4.502-3.376-8.44-11.253-11.816-21.943L544.07 57.389c-3.375-11.253-5.063-18.567-5.063-22.505 0-9.003 4.5-14.066 13.503-14.066h55.138c10.69 0 18.005 1.687 21.943 5.626 4.501 3.376 7.877 11.253 11.253 21.943l94.523 372.466 87.771-372.466c2.814-11.253 6.19-18.567 10.69-21.943 4.502-3.376 12.379-5.626 22.506-5.626h45.011c10.69 0 18.004 1.687 22.506 5.626 4.5 3.376 8.44 11.253 10.69 21.943l88.896 376.967 97.337-376.967c3.375-11.253 7.314-18.567 11.252-21.943 4.501-3.376 11.816-5.626 21.943-5.626h52.326c9.002 0 14.065 4.5 14.065 14.066 0 2.813-.562 5.626-1.125 9.002-.562 3.376-1.688 7.877-3.938 14.066L1079.7 492.87c-3.376 11.253-7.314 18.567-11.815 21.943-4.501 3.376-11.816 5.627-21.38 5.627h-48.387c-10.69 0-18.005-1.688-22.506-5.627-4.5-3.938-8.44-11.253-10.69-22.505l-87.209-362.901-86.646 362.338c-2.813 11.253-6.189 18.567-10.69 22.506-4.501 3.938-12.378 5.626-22.505 5.626h-48.387zm722.989 15.191c-29.257 0-58.515-3.376-86.646-10.127-28.132-6.752-50.075-14.066-64.704-22.506-9.002-5.064-15.19-10.69-17.441-15.754-2.251-5.063-3.376-10.69-3.376-15.754v-28.694c0-11.815 4.5-17.442 12.94-17.442 3.376 0 6.752.563 10.128 1.688 3.376 1.125 8.44 3.376 14.066 5.626 19.13 8.44 39.947 15.192 61.89 19.693 22.505 4.5 44.448 6.751 66.954 6.751 35.446 0 63.015-6.189 82.145-18.567 19.13-12.378 29.257-30.382 29.257-53.45 0-15.754-5.064-28.695-15.191-39.385-10.128-10.69-29.257-20.255-56.827-29.257l-81.582-25.319c-41.073-12.94-71.455-32.07-90.022-57.389-18.567-24.756-28.132-52.325-28.132-81.582 0-23.63 5.064-44.448 15.191-62.453 10.128-18.004 23.631-33.758 40.51-46.136 16.88-12.94 36.009-22.506 58.514-29.257 22.506-6.752 46.137-9.565 70.893-9.565 12.378 0 25.318.563 37.696 2.25 12.941 1.688 24.757 3.939 36.572 6.19 11.253 2.813 21.943 5.626 32.07 9.002 10.128 3.376 18.005 6.751 23.631 10.127 7.877 4.501 13.503 9.002 16.88 14.066 3.375 4.501 5.063 10.69 5.063 18.567v26.444c0 11.816-4.501 18.005-12.94 18.005-4.502 0-11.816-2.251-21.381-6.752-32.07-14.629-68.08-21.943-108.026-21.943-32.07 0-57.39 5.064-74.831 15.754-17.442 10.69-26.444 27.006-26.444 50.075 0 15.753 5.626 29.257 16.879 39.947 11.253 10.69 32.07 21.38 61.89 30.945l79.895 25.319c40.51 12.94 69.767 30.945 87.208 54.013 17.442 23.068 25.882 49.512 25.882 78.769 0 24.193-5.064 46.136-14.629 65.266-10.127 19.13-23.63 36.009-41.072 49.512-17.442 14.066-38.26 24.193-62.453 31.508-25.319 7.877-51.763 11.815-80.457 11.815z" fill="#252F3E"/><path d="M1538.813 808.51c-185.108 136.72-454.048 209.301-685.292 209.301-324.08 0-616.088-119.842-836.642-319.015-17.442-15.754-1.688-37.134 19.13-24.756 238.558 138.408 532.817 222.24 837.204 222.24 205.363 0 430.98-42.76 638.594-130.532 30.945-14.065 57.389 20.255 27.006 42.76z" fill="#F90"/><path d="M1615.895 720.738c-23.631-30.382-156.414-14.628-216.616-7.314-18.004 2.25-20.817-13.503-4.501-25.319 105.776-74.268 279.63-52.887 299.886-28.131 20.255 25.318-5.627 199.173-104.65 282.444-15.192 12.94-29.82 6.189-23.069-10.69 22.506-55.702 72.58-181.17 48.95-210.99z" fill="#F90"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M565.76 114.761 233.472 821.833 0 819.2l260.608-448.512L565.76 114.615m35.84 55.808L1024 909.239H242.761l476.16-84.846L469.577 527.8 601.6 170.423z" fill="#1E88E5"/></svg>

After

Width:  |  Height:  |  Size: 269 B

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 0h1024v1024H0z" fill="#FFF"/><path d="m705.024 658.901-147.925 79.232A82.304 82.304 0 0 0 512 811.82V934.4l353.579-188.416a25.515 25.515 0 0 0 14.25-22.827V345.941l-115.114 60.16a82.304 82.304 0 0 0-45.056 73.686V634.58c-.427 11.222-6.358 18.688-14.635 24.32" fill="#DA4725"/><path d="M304.768 637.397V482.091c0-30.379-16.64-58.496-45.099-73.899l-115.498-62.293v376.618c0 9.387 6.314 18.774 14.25 22.87L512 934.443V811.435c0-30.379-16.64-58.539-45.099-73.899l-147.925-77.653c-8.277-5.632-14.208-13.142-14.208-22.486" fill="#028DCF"/><path d="M665.77 181.333 525.313 92.672a31.53 31.53 0 0 0-27.392 0L162.56 303.915l109.27 67.328c27.434 16.725 60.458 16.725 86.015 0l140.459-88.662c1.877-2.09 3.755-2.09 5.973-2.09a25.856 25.856 0 0 1 21.419 2.09l140.459 88.662c27.434 16.725 60.458 16.725 86.016 0l109.226-67.328-195.626-122.539z" fill="#72AE2C"/></svg>

After

Width:  |  Height:  |  Size: 965 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M482.687 74.101c10.109-5.627 19.662-12.497 30.785-15.998 8.506-2.192 16.685 2.323 23.883 6.38 117.253 68.08 235.062 135.312 352.118 203.753-40.338 22.115-79.662 46.063-119.805 68.506-27.677 15.148-62.814 13.74-89.771-2.388-48.289-28.135-96.871-55.78-145.127-84.014-8.997-5.692-21.232-5.889-30.654-1.21-49.728 28.724-99.456 57.58-149.282 86.173-27.056 15.834-61.963 15.867-89.314.687a26252.906 26252.906 0 0 1-113.785-65.628c-.229-1.178-.72-3.533-.949-4.744 110.776-63.533 221.256-127.722 331.9-191.517z" fill="#72AF2D"/><path d="M115.552 719.744c.49-135.148-.622-270.329.556-405.477 32.617 19.367 65.595 38.08 98.441 57.088 12.76 7.427 26.27 14.199 36.74 24.864 15.769 16.39 26.042 38.67 25.845 61.637.033 54.57.131 109.172-.065 163.774-1.047 12.203 3.304 25.65 14.493 31.963 40.567 23.72 81.396 47.045 122.095 70.6 14.362 8.638 29.771 15.9 42.4 27.057 18.156 17.11 28.756 41.777 29.116 66.707-.033 44.559-.196 89.15.066 133.709-10.175-3.468-18.877-9.848-28.201-14.984-108.55-62.716-217.167-125.366-325.652-188.148-10.207-5.66-17.143-16.947-15.834-28.79z" fill="#118CCF"/><path d="M815.143 367.397c30.753-17.47 61.015-35.824 92.095-52.705.196 135.017-.066 270.035.13 405.052.819 11.582-5.3 23.163-15.637 28.627-110.416 63.86-220.896 127.558-331.312 191.386-7.328 4.45-14.722 8.8-22.508 12.432-.098-44.82.065-89.64-.098-134.428-.426-31.538 17.47-62.16 44.558-78.06 49.074-28.43 98.245-56.664 147.286-85.159 8.245-4.515 15.311-13.053 14.919-22.9.13-55.683.065-111.398 0-167.08-.033-23.784 8.048-47.732 24.21-65.398 12.497-14.362 30.36-22.083 46.357-31.767z" fill="#DA4525"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" xml:space="preserve"><image width="64" height="64" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAABGdBTUEAALGPC/xhBQAAACBjSFJN AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA/1BMVEX///8AAAARd8MHcLoH c7sHcLoIb7kIcLkHcLkJcr8NcrwJcLkIcLkHcLm2r/kIb7kKcrsIcLoHcLkIb7oIb7g9i8gkiNIH b7kKcboJcLoIcLkHcLkHcLkLeLwIcLkIb7kHb7gJcroIcLoIcLkJcboIcLkIb7kYfMUHb7kHcLkI b7kIcLkHcLkIdL0Lc7wIcLkHcLkHb7kIcLkHcroIcLkJcLsIcLoHb7kNdb0IcLkJcbkHcLoIb7gI cbv/IS/pOSjrOirpOyrqOijpOSjtBBjxDx/pOSjpOijpOSjrExrrEBrpOinpOijoAxfpOinpOynq CxvoOigHb7joOSj///8lnnjLAAAAUnRSTlMAAA5HImu+yfwZJnWF1QHcMECRnecEBu9MVqmy9BZi bs4deuA2luoKuPdlxNAfKn+K2OREoVFfrhKlU2iYOwbyQlmctAwS+2/OGCWJ5iujXR/XWWe7FwAA AAFiS0dEAIgFHUgAAAAHdElNRQfpBR0BDietRxIKAAACgElEQVRYw+2X2ULCMBBF2VREqIKCiLjg hoiKO7iCG+Cu6f//i4JMZppM2vTNB+9bm5nTNDmlJRL5C4kyicW9SXBFfoAx4c14WMCEAkhOhgOk hJqpcIC0BsiEAjjTGkDMhAFk9X6RCwOYZQBzeXtAYZ4BiKI9YIHrFyV7wCILKMdsAUtJFiCWbQEr fL+uswmwagCIih0gZeoXa3aAtBGQsQI460aA2LABZM39qs48gGi8mRsGn6ytfDCgihrDtpFtLQYD iMYgDhGrFAzYlsW1mN85E4C9GpnVThCAvV+yLvUgwC674mRn9vwB+/yeEzca/oADrKQ/osTOQ1+A c2TwnjwfG36AY9OTR57QTT/ACdZVPADyqiOLqwGqZU1jZntPzYAzrDpTAESwphlgUnYQ/KWutUyA SbzKudofvcDZXZoAU1gT1wAFRmcVgBoz78HoFeITPGAGKw70/ui1rrMCMGgMId8M0ywgP2fQGNLA C1xzgDiOy+8hZxA4IDpfcYBzOZysjFpu2u5POkBAnecLOoBovA0dt4N+9w4OL3EKFzqA0/h+CGg/ jA5bNUVnD2BcDparo4bH7hDg3gKwiXfZUgEV1PgE6nu//e49nDjFWY6pgDUcO4b6/gjQfdJ1nlAB GTl0BPv27EJ6jM4pL4DT+EUC+ozOaS8ghyP7INGrBLhvQECd1x0KyG/JgV2o7WC/+8LonKWAIqPx HQG8wroksHCWAkq4wfDH4qFNAKhzneosATFUTNEY8g6nd3AKCwhYpmc9GkM4nRcRwGj81PUA3A9G 5yUA7OEENI0hUmey3isAIBpnVY1lQGey46sAaB5C6rBdn19q5D00ZHUm8p9hvgEG5MwXHwY2TAAA ACV0RVh0ZGF0ZTpjcmVhdGUAMjAyNS0wNS0yOVQwMToxNDozOSswMDowMH48Zp4AAAAldEVYdGRh dGU6bW9kaWZ5ADIwMjUtMDUtMjlUMDE6MTQ6MzkrMDA6MDAPYd4iAAAAGXRFWHRTb2Z0d2FyZQBB ZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggg=="/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 42.7" style="enable-background:new 0 0 38.1 42.7" xml:space="preserve"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="16.85" y1="37.895" x2="36.49" y2="37.895" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#fbaa19"/><stop offset="1" style="stop-color:#ef3e23"/></linearGradient><path d="m21 6.8 9.9 5.4L21.8 0C20.3 2 20 4.6 21 6.8z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#a)"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="15.771" y1="12.919" x2="17.311" y2="17.129" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#f78d1e"/><stop offset="1" style="stop-color:#f37121"/></linearGradient><path d="M16.5 26.7c1.2 0 2.2 1 2.2 2.3 0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2.1-1.2 1.1-2.3 2.3-2.3z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="3.56" y1="11.47" x2="27.49" y2="37.12" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#febe2d"/><stop offset="1" style="stop-color:#f04e23"/></linearGradient><path d="m9.7 1.8 27.6 15c.7.3.9 1.1.6 1.8-.1.3-.3.5-.6.6-2.1 1.3-4.4 2.2-6.8 2.6l-5.8 11.8s-1.8 4.1-6.8 2.5c2.1-2.1 4.6-4 4.6-7.2 0-3.4-2.7-6.1-6.1-6.1s-6.1 2.7-6.1 6.1c0 4.2 4.2 6 6.5 8.9 1 1.5.9 3.5-.3 4.8-2.8-2.8-8.3-7.6-10.6-10.7-1.2-1.6-1.9-3.5-2-5.5.2-4.4 3.2-8.2 7.4-9.5 1.3-.4 2.6-.5 3.9-.5 1.8.1 3.6.7 5.2 1.6 2.5 1.4 3.6 1.1 5.3-.4 1-.8 2.1-3.5.4-4.1-.6-.2-1.1-.3-1.7-.4-3.1-.6-8.6-1.2-10.6-2.3-3.2-1.8-5.4-5.5-4.1-9z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="20.503" y1="26.439" x2="7.263" y2="6.059" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#ea4425"/><stop offset="1" style="stop-color:#fdbb27"/></linearGradient><path d="M22.5 29.4zm0-.4c1.3-6.7-5.5-13.1-10.8-12.2l.4-.1c-.3.1-.6.1-.8.2-4.2 1.3-7.2 5.1-7.4 9.5 0 2 .7 4 2 5.5 2.3 3.1 7.8 7.9 10.7 10.8 1.2-1.3 1.4-3.3.3-4.8-2.4-2.9-6.5-4.7-6.5-8.9 0-3.4 2.7-6.1 6.1-6.1 3.4 0 6.1 2.7 6 6.1z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1=".24" y1="33.428" x2="42.04" y2="33.428" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#f47920"/><stop offset="1" style="stop-color:#e93825"/></linearGradient><path d="m9.7 1.8 21 11.4.6.3c.5.4 1 1.2.4 2.6-1 2.1-5 4.2-9.6 2.6 1.4.4 2.4-.1 3.7-1.1 1-.8 2.1-3.5.4-4.1-.6-.2-1.1-.3-1.7-.4-3.1-.6-8.6-1.2-10.6-2.3-3.3-1.8-5.5-5.5-4.2-9z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="-21.84" y1="36.21" x2="63.21" y2="36.21" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#fdca0b"/><stop offset="1" style="stop-color:#f5841f"/></linearGradient><path d="M9.7 1.8c2.2 8 15.4 8.7 22 12l-22-12z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#f)"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="8.545" y1="25.931" x2="17.395" y2="-4.939" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#e73c25"/><stop offset="1" style="stop-color:#faa21b"/></linearGradient><path d="M16.9 37.9c-2.3-2.9-6.5-4.7-6.5-8.9 0-3.1 2.3-5.6 5.3-6-4.8 0-8.7 3.9-8.7 8.8 0 .6.1 1.2.2 1.8 1.9 2.2 4.7 4.7 7 6.9.9.8 1.8 1.7 2.4 2.3.6-.7.9-1.5 1-2.4.1-.9-.2-1.8-.7-2.5z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#g)"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="-51.37" y1="20.92" x2="74.88" y2="20.92" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#fdba12"/><stop offset="1" style="stop-color:#f7921e"/></linearGradient><path d="M22.5 29.7V29c1.3-6.7-5.6-13.1-10.8-12.2 1.1-.3 2.3-.4 3.4-.3 6.9.2 8.9 7.6 7.4 13.2z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#h)"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1=".08" y1="27.281" x2="4.81" y2="26.441" gradientTransform="matrix(1 0 0 -1 0 44)"><stop offset="0" style="stop-color:#febe2d"/><stop offset="1" style="stop-color:#f04e23"/></linearGradient><path d="M2.3 14.8c1.2 0 2.3 1 2.3 2.3v2.3H2.3c-1.2 0-2.3-1-2.3-2.3 0-1.2 1-2.3 2.3-2.3z" style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#i)"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m113 51 1 39 11-9 3-1v-2c1.695-1.523 1.695-1.523 4.125-3.375 5.243-4.071 10.255-8.365 15.227-12.763C151.782 58 151.782 58 154 58v-2c4.353-4 4.353-4 8-4 .023 11.196.04 22.391.052 33.587.005 5.198.012 10.396.023 15.594.011 5.012.017 10.024.02 15.036.002 1.917.005 3.834.01 5.75.008 2.675.009 5.35.009 8.025l.01 2.426c-.01 5.468-.01 5.468-1.124 6.582-1.769.1-3.541.13-5.313.133l-3.257.004-3.43-.012-3.43.012-3.257-.004-3.012-.004C137 139 137 139 136 138c-.158-1.998-.251-4-.316-6.004l-.127-3.682-.12-3.876-.13-3.89c-.107-3.182-.209-6.365-.307-9.548l-2.3 1.934c-.995.826-1.989 1.652-3.012 2.504l-2.989 2.496C124 120 124 120 121 121v2c-1.487 1.354-3.044 2.631-4.625 3.875-4.64 3.71-9.19 7.496-13.688 11.375-1.687 1.455-3.375 2.91-5.068 4.357a231.572 231.572 0 0 0-3.265 2.864C90.327 149 90.327 149 87 149v-40l-10 8h-2v2a104.582 104.582 0 0 1-5.313 4.563l-2.988 2.44C64 128 64 128 61 129v2c-1.427 1.27-2.92 2.465-4.438 3.625-4.418 3.422-8.523 7.038-12.554 10.906C42 147 42 147 38 147c-.023-11.065-.04-22.13-.052-33.196-.005-5.138-.012-10.275-.023-15.413-.011-4.953-.017-9.907-.02-14.86-.002-1.895-.005-3.79-.01-5.684a2620.21 2620.21 0 0 1-.009-7.93l-.01-2.398c.01-5.405.01-5.405 1.124-6.519a98.712 98.712 0 0 1 5.348-.098l3.271.01 3.444.026 3.455.013c2.827.012 5.655.028 8.482.049 1.341 2.682 1.215 4.884 1.316 7.883l.127 3.535.12 3.707.13 3.73c.107 3.049.209 6.097.307 9.145l3-1v-2a104.582 104.582 0 0 1 5.313-4.563l2.988-2.44C79 77 79 77 82 76v-2c1.695-1.523 1.695-1.523 4.125-3.375 5.243-4.071 10.255-8.365 15.227-12.763C105.782 54 105.782 54 108 54v-2c2-1 2-1 5-1z" fill="#0260F9"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" xml:space="preserve"><image width="60" height="60" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAABGdBTUEAALGPC/xhBQAAACBjSFJN AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABHVBMVEUAAACSSbabWLecWbab WbaaWbaXVbOaWbWbWbacWrabWbWbWLabWbaaWbaqVaqbWbabWbakaL3FntTgy+jw5/T59fr+/f73 8vns3/HWu+G5isydXLefYLnStN77+Pz////07ffBmdKcWrembL7s4PHeyOfQsd3KptjRs967js2g Ybrv5fT28PjBmNLr3fC8kM7bxOXy6vaobr/Lqdm6jc2sdcL//v/9/P6we8XXveLcxua3h8qlar3+ /v6hY7qve8X27/jv5PO2h8qhY7u3iMvdx+awfMWcW7fcxOWob8DOrdugYrrw5vT38fnCmtPt4fKn bb/t4PL49PrStd7Ttd/eyee6jM2gYbnx6PW9kc/Fn9Xfyuj48/rr3vHVuuFD4Bw/AAAAEHRSTlMA B27I9G0b0M9sycfz8QbGFMLQ2wAAAAFiS0dEHwUNEL0AAAAHdElNRQfpBR0BDig9+A+bAAABRUlE QVRIx+3XV1PCQBAH8A3NRCIeokSxrEZRERtij71hAQvYFb7/x3BjRuFBJrObJ2fyf7rczG/ucrm9 yQGAFonGFDOxaFwDSqKHK73oCRpXaElrEJFapQzoleMkmHJsgtwqFeIQ/1OcHsgMDmWt4ZHcKBeP jU/gTyanbBaeniFk5Wfn5vMWtQocvFBEXFzypmvnlnGFg1cRS2u/T3Z5nYE3NnFru7OD8847iLvK N11wCdGR4j3E/QMpPkQ88rddsIN4LMYniEUxDjRtd8FOpdj9VGdiTJvkXIzd7XnR2VFhYHVJhXHV pteskrypItZuvZKsFO54JanuH+gIqGca5cenOrWeWVi9NNrH0OsbZ8G+k37/qH5ma82WYys29k2I Qxziv3CAn/W+YNeEuBwboOlSq6foUibU7qUMIGUk2atm9hs07hdY1fMZ81URfQAAACV0RVh0ZGF0 ZTpjcmVhdGUAMjAyNS0wNS0yOVQwMToxNDo0MCswMDowMOFhKlQAAAAldEVYdGRhdGU6bW9kaWZ5 ADIwMjUtMDUtMjlUMDE6MTQ6NDArMDA6MDCQPJLoAAAAAElFTkSuQmCC"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m576 512 277.333 277.333-64 64L512 576 234.667 853.333l-64-64L448 512 170.667 234.667l64-64L512 448l277.333-277.333 64 64L576 512z"/></svg>

After

Width:  |  Height:  |  Size: 250 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M704.384 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-.096a6.688 6.688 0 0 1-5.568-3.008l-.032-.032a8.192 8.192 0 0 1-.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 .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.648A155.04 155.04 0 0 0 .032 714.784c0 7.456.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.208zm117.6-237.376c-3.296 0-6.88 0-10.176.48-2.4 0-4.512 1.76-5.408 4.16L792 536.096c-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 .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.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"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m663.48 555.229-32.39-29.14-15.173-13.607a60.881 60.881 0 0 0-81.64 0l-105.603 95.127c-9.634 8.67-24.324 8.67-34.078 0l-5.177-4.576-26.612-23.962-7.586 36.605 19.266 17.22 13.246 11.8 15.172 13.727a60.881 60.881 0 0 0 81.64 0l101.87-91.755 3.734-3.372c9.633-8.67 24.203-8.67 33.956 0l5.419 4.817 32.632 29.38 1.566-42.024z" fill="#8DC21F"/><path d="M294.653 383.76c8.79-.362 16.015-7.226 16.858-16.016 10.355-101.87 96.451-181.464 201.091-181.464 110.179 0 199.646 88.023 202.055 197.6 23.842 0 47.804 4.455 70.442 13.004 0-2.77.12-5.66.12-8.429 0-150.638-122.1-272.737-272.737-272.737s-272.738 122.1-272.738 272.737v5.419c18.062-6.02 36.365-9.272 54.668-10.115z" fill="#0084CF"/><path d="M726.457 858.43h2.408c1.927 0 3.733-.24 5.54-.36 145.46-10.838 259.13-135.707 251.905-285.502-7.104-146.182-130.287-261.418-276.71-259.13h-1.927a333.306 333.306 0 0 0-214.578 83.085l-.482.482c-1.565 1.445-3.25 2.89-4.816 4.335L352.692 522.837a61.05 61.05 0 0 0 0 90.792l2.409 2.168 32.27 29.14-7.104-6.382a30.465 30.465 0 0 1-.963-44.433l4.816-4.335 62.254-55.872v.482l78.751-70.803c45.878-46.841 109.095-76.704 179.176-79.112 85.012-4.094 166.773 46.239 198.683 130.167C942.6 619.048 890.1 735.73 785.821 775.466c-5.298 2.047-10.596 3.732-15.894 5.298-1.686.482-3.372.963-5.058 1.324l-.722.241-4.576 1.084-.963.24c-1.445.362-2.89.603-4.335.964l-.963.24c-1.445.242-2.89.603-4.335.844h-.964c-1.445.482-3.01.722-4.455.843h-.843a34.87 34.87 0 0 1-4.937.722h-.361c-5.419.723-10.837 1.084-16.136 1.325h-11.8c-32.15-.723-63.458-9.152-91.394-24.203-8.43-4.576-18.664-3.492-25.769 2.89l-41.784 37.569c40.34 30.224 89.227 49.49 142.45 53.584.723 0 1.445 0 2.168.12.842 0 1.685 0 2.528.12 1.084 0 2.047 0 3.131.121h21.675c1.324 0 2.77 0 4.094-.12z" fill="#0084CF"/><path d="m665.889 557.396-2.408-2.167-25.167-22.638a30.525 30.525 0 0 1 0 45.396l-22.517 20.23-44.433 39.977v-.361l-78.871 70.803c-45.878 46.841-109.095 76.704-179.176 79.112-85.012 4.094-166.773-46.24-198.683-130.168-39.616-104.398 12.884-221.08 117.163-260.816a202.626 202.626 0 0 1 62.615-13.005c8.79-.361 16.136-7.104 16.978-15.894 1.927-18.905 6.382-36.968 13.126-53.946-6.984-.482-13.968-.843-21.073-.843-150.517 0-272.497 121.86-272.737 272.256-.241 150.517 122.1 273.099 272.737 273.099h10.115-3.853c1.806 0 3.612 0 5.418-.241h-1.565c80.677-2.408 154.13-33.234 210.724-82.965l.482-.361c1.926-1.686 3.974-3.492 5.9-5.299l134.984-121.497a60.917 60.917 0 0 0 0-90.672z" fill="#0084CF"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="27.989" height="28.412" viewBox="0 0 7.405 7.517"><g style="fill:#000"><g style="fill:#000;stroke:#fff;stroke-opacity:1"><path d="M509.136 366.224c8.879-33.137 42.94-52.802 76.077-43.923a62.117 62.117 0 0 1 43.923 43.923s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078s-6.1-6.078-10-6.078c-3.9 0-10 6.078-10 6.078z" style="color:#000;display:inline;overflow:visible;visibility:visible;fill:#000;fill-opacity:1;stroke:#fff;stroke-width:.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" transform="translate(-30.864 -19.415) scale(.06074)"/><path d="M567.427 364.896v61.873c0 9.347 5.48 16.173 12.239 16.173 6.757 0 12.236-6.836 12.236-16.183 0 0-1.078-1.027-1.76-1.04-.642-.012-1.695.918-1.695.918 0 6.708-3.932 13.015-8.781 13.015-4.85 0-8.782-6.307-8.782-13.015v-61.741z" style="color:#000;display:inline;overflow:visible;visibility:visible;fill:#000;fill-opacity:1;stroke:#fff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:117.14173126;stroke-opacity:1;marker:none;enable-background:accumulate" transform="translate(-30.864 -19.415) scale(.06074)"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="-16 -16 1600 1600" width="200" height="200"><path fill-rule="evenodd" fill="#0069ff" d="M784.5 1562v-302.5c322.4 0 570.3-317.3 447.3-655-44.7-124.3-145.4-224.5-270.2-269C622.4 213 303.8 461.6 303.8 780.8H0C0 270.5 495.7-128.4 1032.4 38.6c234.8 72.3 421.2 259.7 495.7 493.6C1695.8 1068.4 1297 1562 784.5 1562zM482.6 960.8h301.9v300.6H482.6zm-232.9 300.6h232.9v231.9H249.7zm-195.6.1v-193h193.8v193z"/></svg>

After

Width:  |  Height:  |  Size: 468 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><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 79zm200.075 375.014c-.867 3.764-3.117 9.347-6.234 16.012h.087l-.347.648c-18.183 38.86-65.631 115.108-65.631 115.108l-.215-.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"/></svg>

After

Width:  |  Height:  |  Size: 950 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M0 512C0 229.222 229.222 0 512 0s512 229.222 512 512-229.222 512-512 512S0 794.778 0 512z" fill="#7A8CD2"/><path d="M758.613 281.207a1.792 1.792 0 0 0-.938-.819 591.599 591.599 0 0 0-144.299-44.032 2.219 2.219 0 0 0-2.321 1.075 398.114 398.114 0 0 0-17.954 36.301 548.437 548.437 0 0 0-162.082 0 364.663 364.663 0 0 0-18.245-36.318 2.27 2.27 0 0 0-2.32-1.075 589.943 589.943 0 0 0-144.3 44.032 2.048 2.048 0 0 0-.955.82c-91.904 135.1-117.077 266.888-104.721 397.038a2.355 2.355 0 0 0 .921 1.622 591.565 591.565 0 0 0 177.016 88.064 2.321 2.321 0 0 0 2.492-.82 412.16 412.16 0 0 0 36.215-57.958 2.185 2.185 0 0 0-1.229-3.072 390.212 390.212 0 0 1-55.296-25.941 2.27 2.27 0 0 1-1.126-1.792 2.219 2.219 0 0 1 .887-1.912c3.738-2.73 7.39-5.563 10.991-8.465a2.202 2.202 0 0 1 2.287-.307c116.02 52.122 241.63 52.122 356.267 0a2.219 2.219 0 0 1 2.321.273 295.065 295.065 0 0 0 11.008 8.5 2.253 2.253 0 0 1 .905 1.91 2.202 2.202 0 0 1-1.093 1.793 366.029 366.029 0 0 1-55.33 25.907 2.27 2.27 0 0 0-1.314 1.297 2.185 2.185 0 0 0 .102 1.81 462.507 462.507 0 0 0 36.182 57.94 2.287 2.287 0 0 0 2.491.837 589.636 589.636 0 0 0 177.323-88.064 2.27 2.27 0 0 0 .905-1.605c14.796-150.46-24.747-281.173-104.79-397.039zM394.445 598.99c-34.936 0-63.71-31.574-63.71-70.315s28.211-70.315 63.71-70.315c35.772 0 64.273 31.83 63.71 70.315 0 38.741-28.229 70.315-63.71 70.315zm235.554 0c-34.918 0-63.71-31.574-63.71-70.315S594.517 458.36 630 458.36c35.772 0 64.273 31.83 63.71 70.315 0 38.741-27.938 70.315-63.71 70.315z" fill="#FFF"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 122 24" fill="none"><g fill-rule="evenodd" clip-rule="evenodd" fill="#1966F0"><path d="m12.818 17.23-4.344.038c-.134 0-.31-.043-.244-.359l2.31-11.262h2.494c4.339 0 6.277 2.488 5.626 6.1-.656 3.607-2.986 5.483-5.842 5.483zM.432 23.42h15.037c3.842 0 7.655-4.564 8.798-6.812 1.215-2.383 1.627-6.158 1.21-8.818-.526-3.358-4.023-7.727-6.822-7.727H5.206L.432 23.421zm47.843-7.726L41.137.064h-4.89L31.453 23.42h4.904l3.244-15.435 7.09 15.454h4.842L56.327.063H51.48l-3.205 15.63zm8.707-5.189c.306 2.296 2.344 3.688 4.574 3.703h6.057c.79.047 1.115 1.09 1.019 1.732-.263 1.755-1.326 3.784-2.55 3.784H54.59l-.76 3.717h14.74c4.119 0 6.99-10.975 2.698-13.123-.732-.368-1.799-.56-2.986-.56h-6.066c-1.593 0-.273-5.258 1.35-5.258H75.75l.914-4.444H63.742c-5.435-.005-7.238 6.817-6.76 10.449zm51.394 3.159 5.469-9.038 1.885 9.038h-7.354zm-10.42 9.693h4.918l3.316-5.406h10.377l1.12 5.406h4.286L117.232.067h-5.507l-13.769 23.29zm-11.259.009h9.377l.818-2.722-4.554.072c-1.866.024-5.593.038-4.784-3.895L90.989.052h-4.9l-3.535 17.296c-.856 4.162.564 6.018 4.143 6.018z"/><path d="M27.855 12.63c-1.005 7.038-7.78 10.234-9.277 10.794h9.985L33.357.067h-12.66c4.378 1.426 8.196 6.3 7.158 12.563zm51.14 10.794H74.56l.952-4.488h4.406l-.923 4.488z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="128" width="128" viewBox="-1.5 -32 128 128"><path fill="#cf0000" d="M124.6 35.7c0 3.9-1.2 7.3-3.8 10.2-3.1 3.3-6.9 5-11.6 5-5.5 0-9.49-2.2-12.19-6.8-1.8-3.1-2.8-6.7-2.8-11 0-6.2 2.3-12.3 6.49-18.1 5-6.8 11.2-11.8 18.9-14.9h.2c.4 0 .7.3.9 1 .2.4.3.7.3.9 0 .3-.1.4-.2.5-5.9 3.1-10.3 7.8-13.5 14-1.5 2.9-2.6 5.8-3.4 8.9 1.5-1.8 3.4-3 5.7-3.6.7-.2 1.6-.3 2.3-.3 3.9 0 7.1 1.6 9.6 4.7 2.1 2.6 3.1 5.8 3.1 9.5m-7.9 2c0-2.5-.7-4.8-2.1-7.1-1.5-2.4-3.3-3.6-5.6-3.6-2.2 0-4.1 1-5.8 2.9-.2 1-.3 2-.3 3.3 0 9.3 2.4 14 7.1 14 2.6 0 4.5-1.4 5.7-4.2.7-1.5 1-3.3 1-5.3"/><path fill="#404040" d="M13.56 32.3V21.1h5.45v29.2h-5.45v-3.1c-.59 1.2-1.36 2.1-2.3 2.7-.92.6-2.01.9-3.27.9-2.4 0-4.27-.9-5.59-2.9-1.32-1.9-2-4.7-2-8.2 0-3.5.68-6.2 2.01-8.1 1.35-1.9 3.27-2.9 5.76-2.9 1.13 0 2.13.4 3.02.9.91.6 1.68 1.5 2.37 2.7M5.9 39.8c0 2.1.34 3.7 1.01 4.7.68 1.2 1.61 1.8 2.8 1.8 1.19 0 2.12-.6 2.81-1.8.68-1 1.04-2.6 1.04-4.7 0-2-.36-3.6-1.04-4.8-.69-1.1-1.62-1.7-2.81-1.7s-2.12.6-2.8 1.7c-.67 1.2-1.01 2.8-1.01 4.8m29.21 12.7c-.7 2.1-1.6 3.4-2.6 4.3-1.1 1-2.3 1.4-3.8 1.4h-4.5V54h2.2c1.2 0 2-.2 2.5-.5.5-.4 1-1.3 1.6-2.7l.4-1.2-8-20.3h5.7l4.8 13.6 4.7-13.6h5.8l-8.8 23.2m29.9-15.9v13.7h-5.4V37.5c0-1.5-.2-2.7-.7-3.3-.4-.7-1.1-1-2.1-1s-1.8.4-2.3 1.3c-.6 1-.9 2.1-.9 3.7v12.1h-5.4v-21h5.4v3.1c.4-1.1 1.1-2.1 2-2.7.9-.6 2.1-1 3.3-1 2.1 0 3.6.7 4.6 2.1 1 1.2 1.5 3.2 1.5 5.8"/><path fill="#008fd4" d="m89.71 29.3-6.8 21h-6.7l-6.7-21h5.5l4.5 16.4 4.6-16.4h5.6"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 256 256"><defs><radialGradient id="b" cx="104.362%" cy="13.088%" r="94.575%" fx="104.362%" fy="13.088%"><stop offset="0%" stop-color="#01B07D"/><stop offset="100%" stop-color="#01B07D" stop-opacity="0"/></radialGradient><radialGradient id="c" cx="68.749%" cy="120.916%" r="68.487%" fx="68.749%" fy="120.916%"><stop offset="0%" stop-color="#00AAE5"/><stop offset="100%" stop-color="#00AAE5" stop-opacity="0"/></radialGradient><linearGradient id="a" x1="3.185%" x2="57.325%" y1="2.866%" y2="58.917%"><stop offset="0%" stop-color="#793092"/><stop offset="100%" stop-color="#6144A1"/></linearGradient></defs><path fill="url(#a)" d="M0 0h256v256H0z"/><path fill="url(#b)" d="M0 0h256v256H0z"/><path fill="url(#c)" d="M0 0h256v256H0z"/><path fill="#FFF" d="m170.908 77.201 16.225-29.253H68.867v160.103h118.266l-16.144-29.293h-70.24v-36.819h55.755l8.983-29.294h-64.738V77.201z"/></svg>

After

Width:  |  Height:  |  Size: 956 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M832 128H192A128 128 0 0 0 64 256v512a128 128 0 0 0 128 128h384v-64H192a64 64 0 0 1-64-64V310.4l384 206.08 384-206.72V768h64V256a128 128 0 0 0-128-128zM512 443.52 131.2 240a64 64 0 0 1 60.8-48h640a64 64 0 0 1 60.8 46.72z" fill="#616971"/><path d="M640 896h64v-64h-64zm256-64v64h64v-64zm-128 64h64v-64h-64z" fill="#FF8910"/></svg>

After

Width:  |  Height:  |  Size: 427 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" xml:space="preserve"><image width="100" height="100" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAABGdBTUEAALGPC/xhBQAAACBjSFJN AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACKFBMVEX///8AAADw9f+Yu/+X uv+Vu/+Ptv+TuP+Wuf+Vuv+UuP+Xu/+Rt/+Tuf+Uuf+Osv+St/9Dff+Gr/94pf+Grv+Erf/c6v+A qv96p/99qP95p/95pv9zov9lmv9un/9om/9nmf9bkf9hlv9elP9Zkf////9Pi/9Qiv9HhP4pcv9G gv9Fgv9AgP89fv4tc/0tcv4uc/4tcv4tc/4faP0baP8TYv8SX/wMW/4LWv4IWP8AU/wASv8AUv0A Tv0ASv0ASP8AVf8ASP0ASv8ASP0AQ/8ASP0AQP0APv0APfwAP/wAP/0AQP8APf0APP0AO/0AO/2S t/+Qtv+Ptf+Ns/6NtP+Ksv+IsP+Hr/6Frv+CrP+BrP5/qv98qP98qP55pv92pP90o/9yov9xoP5u n/9rnf9pm/9mmf5jl/5glf5dk/5dk/2rxv7N3f7f6f7u9P74+v78/f709/7k7f7T4v7I2v6zzP5b kv5akf2Yuv7B1v7p8P7///9Yj/7a5/6hwP5Vjf5TjP5Si/5OiP5Qiv5Khv5Jhf5HhP5zoP260f5F gv5Egv1BgP4/fv48ff47fP45ev03ef41d/0xdf0wdP0uc/0rcf0scf3E1/6Ut/0ob/0lbf0mbv0j a/17pv0ia/0faf0cZv0ZZP0XY/0VYv0VYfwSYP0PXv0PXfwMXP0JWvwKWv0GWP0DVf0BVPwAUvwA UPwATfwAS/wASPwARvwARPwAQfwAP/wAPfyqW5wSAAAAUHRSTlMAAAg+Z46y1t/s+Y4yf8EffA+S UefnBcwt5T3z6h/Mkucy/LWs/n3ZwQn5P2eOtdLf7PmOZzrBfdkgsS/8kuZRBswf7zv2keq5rP4g fdn5Z1O89DQAAAABYktHRACIBR1IAAAAB3RJTUUH6QUdAQ4pSv8/DQAABdlJREFUaN7tmPtXE0cU gI1aUIpFoEVUEFFB8f1ClAjyiIAKWAg1xWoVlSjySMIrgQiFEJVnIAkIxQqJUqmgoATh3+vM7uzu sLuzj8RfPCffmZO5c3PvfCeP3U1206YwYcKE+c7RSLF5y9YfIiK3bY+K2r4tMuLHrVs2S5YHIYne 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"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M683.52 924.16c69.632-32.768 165.888-91.648 245.76-194.56 20.48-26.112 37.376-52.224 51.2-76.8 12.8-31.232 27.648-76.8 35.84-133.12 18.432-127.488-12.288-222.208-20.48-245.76-12.8-37.376-29.696-80.896-71.68-122.88-65.536-65.536-145.408-78.336-168.96-81.92-57.856-8.192-103.424 2.048-138.24 10.24-23.552 5.632-68.096 16.384-117.76 46.08-39.424 24.064-64.512 48.64-81.92 66.56-48.64 49.152-73.216 95.232-107.52 158.72-20.48 37.376-37.376 70.144-51.2 117.76-2.56 9.216-9.216 32.768-15.36 76.8-6.144 41.984-11.776 101.376-10.24 175.104-50.176-82.432-79.36-154.112-97.28-205.824-15.872-46.08-22.016-74.752-25.6-102.4-7.168-56.832-13.824-110.08 15.36-158.72 38.912-64.512 116.224-78.848 138.752-83.456 95.232-17.408 169.984 29.696 188.928 42.496 27.136-24.064 54.784-47.616 81.92-71.68-31.744-25.088-89.088-62.464-168.96-76.8-16.896-3.072-57.856-9.216-109.056-4.096C217.6 64 160.256 69.632 104.96 110.08c-11.776 8.704-46.08 35.328-71.68 81.92C-5.632 263.168.512 334.848 7.68 422.4c3.584 44.032 10.24 79.872 15.36 102.4 34.816 125.44 86.528 210.432 122.88 261.12 29.184 39.936 51.2 61.952 57.856 68.608 27.648 27.136 95.232 91.136 203.264 115.712 31.744 7.168 98.304 21.504 179.2-1.536 27.136-7.68 99.84-29.184 155.648-96.256 76.288-91.136 69.12-202.752 64-270.848-4.608-71.68-24.576-115.2-30.72-128-20.992-43.52-47.616-73.728-66.56-92.16-80.384 32.256-160.256 65.024-240.64 97.28l34.816 86.528 164.864-71.168c13.824 24.064 34.304 67.072 35.84 122.88 2.56 92.16-46.592 203.264-143.36 240.64-50.688 19.456-131.584 25.088-179.2-20.48-28.672-27.136-33.28-61.44-40.96-117.76-4.096-28.16-12.8-111.104 15.36-215.04 10.24-37.888 34.816-113.152 92.16-189.44 33.28-44.032 62.976-69.632 71.68-76.8 27.648-23.04 57.344-47.616 100.864-61.44 16.896-5.12 99.328-28.672 178.688 17.92 67.584 39.424 90.112 104.96 99.328 130.048 13.824 38.912 14.336 70.656 15.36 97.28.512 26.624 2.048 84.992-25.6 153.6-24.064 59.392-58.368 99.84-81.92 122.88C765.44 774.144 724.48 848.896 683.52 924.16z" fill="#13EAE4"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64" xml:space="preserve"><image width="64" height="64" href="data:image/png;base64,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"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M925.915 521.545c.512-29.623-2.56-59.282-9.033-88.1H512V593.48h237.714a210.469 210.469 0 0 1-88.137 139.886l-.804 5.303 127.963 99.181 8.85.842c81.299-75.155 128.366-185.783 128.366-317.148" fill="#4285F4"/><path d="M512 943.177c116.37 0 214.199-38.363 285.623-104.484L661.577 733.22a254.83 254.83 0 0 1-149.43 43.117 259.95 259.95 0 0 1-245.395-179.273l-5.12.512L128.549 700.49l-1.683 4.754a429.86 429.86 0 0 0 385.097 237.898" fill="#34A853"/><path d="M266.606 597.211a264.046 264.046 0 0 1-14.336-85.357c.183-28.965 4.937-57.783 13.97-85.395l-.146-5.632L131.29 316.233l-4.425 2.012a430.263 430.263 0 0 0 0 387.181L266.57 597.211" fill="#FBBC05"/><path d="M512 247.515a237.934 237.934 0 0 1 166.656 64.256l121.673-118.784A414.647 414.647 0 0 0 511.817 80.86a430.811 430.811 0 0 0-385.316 237.715l139.41 108.251A260.974 260.974 0 0 1 512 247.48" fill="#EB4335"/></svg>

After

Width:  |  Height:  |  Size: 967 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="3000" height="380" viewBox="0 0 182 23"><path d="M174.05 14.12a10.22 10.22 0 0 0 4.53-2 6.15 6.15 0 0 0 1.68-4.78 7.71 7.71 0 0 0-1.14-4.06 6.47 6.47 0 0 0-5.28-3.19h-1.09L170.2 0h-11.54c-.7 0-1 .29-1 1v20.22c0 .7.29 1 1 1h3c.7 0 1-.29 1-1v-6.7h3.67a3.48 3.48 0 0 1 2.17.91l5.82 5.85a3.08 3.08 0 0 0 2 .92h4.47c.7 0 .87-.41.38-.91l-7.12-7.17zm-.76-4.3h-10.65v-5.1h10.65a2.13 2.13 0 0 1 1.87 2.15v.79a2.14 2.14 0 0 1-1.87 2.16zM153 17.52h-16.53v-4.17h13.19c.7 0 1-.29 1-1V9.92c0-.7-.29-1-1-1h-13.2V4.76H153c.7 0 1-.29 1-1V1c0-.7-.29-1-1-1h-20.62c-.7 0-1 .29-1 1v20.24c0 .7.29 1 1 1H153c.7 0 1-.29 1-1v-2.73c0-.7-.33-.99-1-.99zM127.73 7.3a7.25 7.25 0 0 0-1.13-4 6.61 6.61 0 0 0-5.36-3.3h-15.16c-.71 0-1 .29-1 1v20.22c0 .7.29 1 1 1h3.26c.7 0 1-.28 1-1V4.73h8.78c1.87 0 3.69 1.24 3.69 3.11v13.4c0 .7.29 1 1 1h2.95c.71 0 1-.29 1-1l-.03-13.94zm-27.26 10.09H86.22L100.5 4.84a2.57 2.57 0 0 0 1-1.84V1c0-.7-.3-1-1-1H79.83c-.7 0-1 .29-1 1v2.77c0 .7.29 1 1 1h13.25L79.79 17.24a2.62 2.62 0 0 0-1 1.84v2.17c0 .7.29 1 1 1h20.65c.7 0 1-.29 1-1v-2.87c.02-.7-.27-.99-.97-.99zM74.19 0H53.55c-.71 0-1 .28-1 1v2.76c0 .7.28 1 1 1h7.78v16.48c0 .7.29 1 1 1h3.3c.7 0 1-.29 1-1V4.75h7.57c.7 0 1-.29 1-1V1c-.02-.68-.31-1-1.01-1zM47.91 17.52h-16.5v-4.17H44.6c.7 0 1-.29 1-1V9.92c0-.7-.28-1-1-1H31.41V4.76h16.5c.7 0 1-.29 1-1V1c0-.7-.29-1-1-1H27.33c-.7 0-1 .29-1 1v20.24c0 .7.29 1 1 1h20.58c.7 0 1-.29 1-1v-2.73c-.01-.7-.3-.99-1-.99zM21.63 0h-3.11c-.7 0-1 .29-1 1v7.87H5.13V1c0-.7-.29-1-1-1H1C.29 0 0 .29 0 1v20.25c0 .71.29 1 1 1h3.13c.7 0 1-.28 1-1v-8h12.4v8c0 .7.29 1 1 1h3.11c.7 0 1-.29 1-1V1c-.02-.68-.31-1-1.01-1z" fill="#D50C2D"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1027 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M378.88 143.36c20.48-6.827 40.96-10.24 61.44-13.653 23.893 30.72 30.72 71.68 40.96 109.226 6.827 40.96 13.653 81.92 13.653 122.88 6.827 27.307 3.414 58.027 3.414 85.334s-3.414 51.2 0 78.506c0 37.547-3.414 71.68-3.414 109.227-6.826 23.893 0 47.787-6.826 71.68-10.24-3.413-13.654-13.653-17.067-20.48-40.96-61.44-78.507-122.88-112.64-187.733-34.133-68.267-68.267-136.534-71.68-215.04-6.827-61.44 34.133-119.467 92.16-139.947zm211.627-10.24c6.826-3.413 10.24 0 17.066 0 27.307 6.827 58.027 10.24 81.92 27.307s44.374 40.96 51.2 68.266c10.24 34.134 6.827 71.68 0 105.814-10.24 44.373-30.72 85.333-51.2 126.293-6.826 13.653-13.653 23.893-20.48 37.547-10.24 23.893-27.306 47.786-40.96 71.68-23.893 40.96-47.786 75.093-71.68 116.053-3.413 3.413-6.826 13.653-13.653 6.827-3.413-40.96-6.827-81.92-10.24-126.294-6.827-54.613-3.413-105.813-3.413-160.426 3.413-34.134 3.413-71.68 6.826-105.814 6.827-40.96 13.654-85.333 27.307-126.293 13.653-10.24 13.653-30.72 27.307-40.96zm-430.08 133.12c3.413 0 6.826 6.827 10.24 10.24C269.653 406.187 358.4 542.72 430.08 689.493c6.827 10.24 13.653 23.894 13.653 37.547-13.653-3.413-23.893-10.24-34.133-17.067-64.853-34.133-129.707-71.68-194.56-109.226-23.893-17.067-47.787-34.134-68.267-51.2-40.96-27.307-68.266-78.507-64.853-129.707 3.413-61.44 37.547-112.64 78.507-153.6zm706.56 0h6.826c17.067 23.893 40.96 47.787 54.614 75.093 13.653 23.894 20.48 54.614 23.893 81.92 0 30.72-10.24 64.854-34.133 88.747-13.654 13.653-23.894 27.307-40.96 37.547-78.507 61.44-163.84 109.226-252.587 153.6-13.653 6.826-23.893 17.066-40.96 17.066 3.413-17.066 13.653-34.133 20.48-47.786C662.187 552.96 733.867 440.32 812.373 331.093c17.067-17.066 37.547-40.96 54.614-64.853zM10.24 539.307c3.413-3.414 0-10.24 6.827-13.654 10.24 3.414 20.48 10.24 27.306 13.654 122.88 68.266 245.76 136.533 365.227 211.626 3.413 3.414 6.827 6.827 6.827 10.24h-235.52c-47.787 0-92.16-20.48-126.294-54.613C27.307 675.84 3.413 634.88 0 593.92c6.827-17.067 3.413-34.133 10.24-54.613zm983.04-3.414c6.827-3.413 17.067-10.24 23.893-6.826 0 17.066 6.827 37.546 6.827 54.613-3.413 23.893-3.413 44.373-13.653 64.853-6.827 17.067-17.067 37.547-30.72 51.2-17.067 13.654-27.307 30.72-47.787 40.96-20.48 17.067-51.2 20.48-75.093 23.894h-245.76c3.413-3.414 3.413-6.827 6.826-10.24C740.693 675.84 866.987 604.16 993.28 535.893zM184.32 798.72c44.373-3.413 88.747 0 133.12-6.827 30.72 0 64.853-3.413 95.573 0-6.826 13.654-23.893 20.48-34.133 27.307-34.133 23.893-68.267 44.373-105.813 61.44s-81.92 10.24-112.64-13.653c-23.894-17.067-44.374-44.374-58.027-68.267h81.92zm433.493-6.827c30.72-3.413 61.44 0 95.574 0 40.96 3.414 85.333 0 129.706 6.827 30.72 3.413 61.44 0 88.747 3.413-10.24 20.48-27.307 40.96-44.373 58.027-27.307 27.307-68.267 40.96-105.814 34.133-34.133-10.24-61.44-30.72-92.16-47.786-17.066-10.24-30.72-20.48-47.786-30.72-10.24-10.24-17.067-13.654-23.894-23.894z" fill="#C71F1E"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 2030 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M1669.094 432.488c15.512 21.695 27.118 51.146 25.817 112.868-17.465 193.79-181.966 316.15-345.763 316.15-177.247 0-302.047-127.567-377.112-270.103-17.735-33.681-30.59-71.267-42.685-103.81-23.701 32.217-73.654 84.773-99.091 109.234a629.153 629.153 0 0 0 59.986 123.987C910.26 752 960.755 822.563 1032.945 878.427c65.627 50.604 128.596 81.681 199.81 99.417a487.81 487.81 0 0 0 354.657-50.007c128.814-73.817 219.607-209.79 236.041-350.97-31.729-52.61-100.502-114.765-154.36-144.379zM585.379 381.125a238.97 238.97 0 0 1 126.97 36.394c30.535-32.543 57.545-66.17 85.586-100.068a370.55 370.55 0 0 0-583.268 303.566 373.098 373.098 0 0 0 4.393 57.003c10.36 12.8 114.712 4.122 130.983-10.522a242.495 242.495 0 0 1-4.556-46.481A239.892 239.892 0 0 1 585.38 381.125zm0 610.875a370.658 370.658 0 0 1-320.977-185.383c4.99-6.617 121.6-19.58 149.424-18.007a239.078 239.078 0 0 0 171.553 72.298s147.525 11.336 285.396-97.627c0 0 51.851 73.872 91.661 101.641 0 0-130.007 127.078-377.057 127.078z" fill="#E1251B"/><path d="M1545.053 74.305c-175.132-73.6-345.98-52.122-514.82 71.973-148.882 109.397-208.109 219.607-303.35 314.197-113.897 113.139-199.32 151.213-267.063 176.813-69.966 26.468-167.593 44.529-240.759 40.515A371.417 371.417 0 0 0 264.402 806.4c186.794-3.2 318.482-74.685 403.417-126.481 74.251-45.288 185.98-159.35 244.61-233.22 94.21-118.563 216.95-231.974 329.167-267.553 156.745-49.627 309.152 19.796 383.023 117.857 6.617 8.624 145.14 58.36 188.692 95.783-16-67.905-91.499-244.176-268.258-318.48z" fill="#E1251B"/><path d="M1809.243 377.817a497.356 497.356 0 0 0-282.847-90.902c-122.631 0-245.424 47.783-331.824 132.882-62.861 61.83-93.451 112-163.146 195.58a570.36 570.36 0 0 0 92.637 108.474c9.004-13.126 59.661-84.827 97.627-135.214 48.814-64.108 98.387-115.362 173.56-145.03a350.047 350.047 0 0 1 427.498 139.335 486.02 486.02 0 0 0-13.505-205.125z" fill="#E1251B"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1 @@
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><text x="50%" y="50%" font-size="48" fill="#a2a9b6" font-family="system-ui, sans-serif" text-anchor="middle" dominant-baseline="middle">LeCDN</text></svg>

After

Width:  |  Height:  |  Size: 219 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M776.416 1024H247.648a41.184 41.184 0 0 1-41.056-41.024V591.808c0-22.56 18.464-41.056 41.056-41.056h49.664V487.52c0-118.4 96.352-214.688 214.688-214.688s214.688 96.352 214.688 214.688v63.232h49.664c22.56 0 41.056 18.464 41.056 41.056v391.168a41.184 41.184 0 0 1-41.024 41.056zM538.784 807.584a54.4 54.4 0 0 0-26.688-101.728h-.128a54.4 54.4 0 0 0-27.072 101.568l.256.128v52.992a26.784 26.784 0 0 0 53.568 0v-52.992zM420.448 550.752h183.168V487.52c0-50.464-41.088-91.552-91.552-91.552s-91.552 41.088-91.552 91.552v63.232zm-226.432-58.304H66.432a37.44 37.44 0 1 1 0-74.944h127.584a37.44 37.44 0 1 1 0 74.944zm89.888-200.704h-.096a37.062 37.062 0 0 1-23.744-8.576l.064.064-100.896-82.976a37.44 37.44 0 1 1 47.68-57.856l-.064-.064 100.896 82.976a37.44 37.44 0 0 1-23.808 66.4h-.064zM512 203.52a37.44 37.44 0 0 1-37.472-37.472V37.44a37.44 37.44 0 1 1 74.944 0v128.608A37.44 37.44 0 0 1 512 203.52zm228.096 88.224h-.16a37.44 37.44 0 0 1-23.744-66.336l.064-.064 100.896-82.976a37.44 37.44 0 0 1 47.68 57.824l-.064.064-100.896 82.976c-6.4 5.312-14.72 8.544-23.776 8.544zm217.472 200.704h-128.8a37.44 37.44 0 1 1 0-74.944h128.8a37.44 37.44 0 1 1 0 74.944z" fill="#003A70"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M339.008 128a64 64 0 0 1 41.6 15.36L512 256h384a64 64 0 0 1 64 64v512a64 64 0 0 1-64 64H128a64 64 0 0 1-64-64V192a64 64 0 0 1 64-64h211.008zM883.2 486.4H140.8v332.8h742.4V486.4zM334.208 204.736 288 204.8H140.8v204.8h742.4v-76.8H483.584l-21.568-18.496L334.208 204.8z" fill="#525962"/></svg>

After

Width:  |  Height:  |  Size: 387 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M515.466.012C300.718-1.428 99.826 133.354 27.188 347.877-63.467 615.65 80.086 906.203 347.853 996.825c267.771 90.654 558.326-52.899 648.947-320.666 73.699-217.594-7.327-450.2-183.932-578.421l5.376 108.67c88.098 97.375 122.878 235.164 79.007 364.76-65.44 193.374-281.339 295.036-482.135 227.037C214.256 730.239 104.5 518.37 170.001 324.966 214 195.016 325.934 106.472 455.593 83.05L525.642.268A211.823 211.823 0 0 0 516.2.044h-.8zM665.996 46.7h-.352a12.194 12.194 0 0 0-4.96 1.056l.064-.032-.16.032a14.077 14.077 0 0 0-4.64 3.04c-6.176 6.048-28.031 35.327-28.031 35.327l-47.619 58.975-55.454 67.614-95.232 118.43s-43.679 54.526-34.047 121.63c9.632 67.166 59.55 99.838 98.297 112.99 38.687 13.087 98.207 17.407 146.686-30.047 48.42-47.456 46.847-117.342 46.847-117.342l-3.711-151.901-2.976-87.455-2.012-75.742s.416-36.511-.864-45.087a13.915 13.915 0 0 0-1.536-4.64l.032.064-.256-.512-.288-.48a11.879 11.879 0 0 0-9.76-5.984h-.028z" fill="#0072C6"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 -57 256 256" preserveAspectRatio="xMidYMid"><path d="M232 0c-9 0-16.8 5-20.9 12.3l-.5 1-18.8 37L168 97.2l15.6 30.7.9 1.7c2.4 4.2 6 7.7 10.4 9.8 4.4-2.2 8-5.6 10.4-9.8l.9-1.7 46.7-92 1.1-2.2c1.3-3 2-6.2 2-9.7 0-13.3-10.7-24-24-24zM87.9 44.6 72.4 14l-.9-1.7c-2.4-4.2-6-7.7-10.4-9.8-4.4 2.2-8 5.6-10.4 9.8l-.8 1.7-46.7 92-1.1 2.2c-1.3 3-2 6.2-2 9.7 0 13.2 10.7 24 24 24 9 0 16.8-5 20.9-12.3l.5-1 18.8-37L88 44.7l-.1-.1z" fill="#FF5000"/><path d="M232 0c-9 0-16.9 5-20.9 12.3l-.5 1-18.8 37L168 97.2l15.6 30.7.9 1.7c2.4 4.2 6 7.7 10.4 9.8 4.4-2.2 8-5.6 10.4-9.8l.9-1.7 46.7-92 1.1-2.2c1.3-3 2-6.2 2-9.7 0-13.3-10.8-24-24-24z" fill="url(#linearGradient-1)"/><path d="M24 141.9c9 0 16.9-5 20.9-12.3l.5-1 18.8-37L88 44.7 72.4 14l-.9-1.7c-2.4-4.2-6-7.7-10.4-9.8-4.4 2.2-8 5.6-10.4 9.8l-.8 1.7-46.7 92-1.2 2.3c-1.3 3-2 6.2-2 9.7 0 13.2 10.7 23.9 24 23.9z" fill="url(#linearGradient-2)"/><path d="M87.9 44.6 72.4 14l-.9-1.7c-2.4-4.2-6-7.7-10.4-9.8 1.4-.7 3-1.3 4.5-1.7 1.9-.5 4-.8 6-.8h32.8c9 .1 16.8 5 20.9 12.3l.7 1.7 42.1 83.3 15.5 30.6.9 1.7c2.4 4.2 6 7.7 10.4 9.8-1.4.7-3 1.3-4.5 1.7-1.9.5-4 .8-6.1.8h-32.6c-9-.1-16.8-5-20.9-12.3l-.9-1.7-42-83.3z" fill="#FF8C44"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 180 180" width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M90.1 0C139.8 0 180 40.2 180 89.9s-40.2 89.9-89.9 89.9-90-40.1-90-89.9C.1 40.3 40.4 0 90.1 0z" fill="#282828"/><path d="M39.1 121.1V59.7l18-4.3-2.8 19.8h1.9c1.1-4.6 2.9-8.5 5.2-11.6 2.5-3.2 5.5-5.6 9.2-7.2 3.8-1.7 8.2-2.6 13.2-2.6 6.5 0 12.1 1.4 16.8 4.4 4.7 2.9 8.3 7 10.8 12.6 2.6 5.4 3.9 11.9 3.9 19.5v30.8H97.6V94.8c0-5.1-.8-9.4-2.3-13-1.6-3.6-3.9-6.3-6.9-8.2-3.1-1.9-6.6-2.9-10.9-2.9-6.3 0-11.3 2-14.9 6.2-3.6 4.1-5.3 10-5.3 17.7V121H39.1z" fill="#fff"/><circle cx="137.3" cy="110.4" fill="#6eda78" r="12.4"/></svg>

After

Width:  |  Height:  |  Size: 616 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M799.8 943.7H220c-59.5-4.6-99-37.8-126-88.8C81.8 832 81.8 806.8 81.7 782c-.4-180.3 1.5-360.7-1-541-1.2-83.1 69.1-160.3 156.5-159.6 184.7 1.6 369.4 1.1 554.1.2 76.9-.4 152.1 67.6 151.6 155.1-1 186 .3 372.1-.6 558.1-.4 80.6-57.4 139.3-138.7 147-1.4.2-2.6 1.2-3.8 1.9z" fill="#031B4E"/><path d="M500.9 435.5c-47.8-.3-94.7-5.6-140.2-21.4-17.7-6.2-23.7-16.3-25.3-35.9-2.6-30.7 8.4-47.2 35-61.3 41.9-22.2 81.6-48.7 121.7-74 10.2-6.4 17.9-7 28.4-.1 44.9 29.8 90.3 58.9 135.9 87.7 8.2 5.1 11.3 10.5 11.5 20.3 1.2 57.7 1.1 58-55.2 72.5-36.7 9.3-74.1 12.3-111.8 12.2zm-164.6 108c111.7 39.3 220.4 39.5 331.2 0V628c0 9.6-7 13-14 16.8-20.4 10.9-42.6 15.3-65 18.6-73 10.8-145.6 10.5-217-10.4-34.5-10.1-35.2-12.1-35.2-47.2v-62.3z" fill="#FEFEFE"/><path d="M667.6 423.1c0 26-1.5 50.3.5 74.4 1.7 20.6-8 29.6-25.2 35.6-38.7 13.5-78.8 17.9-119.2 19.4-53.4 2-106.2-2-157.7-18.1-20.9-6.5-32.4-16.8-30-41.1 2.2-22.5.5-45.4.5-69.9 52.9 27.5 109.2 31.7 165.8 31.7 55.8-.1 111.6-3.7 165.3-32zM336.4 661.3c111.6 38.1 220.2 39 331.2-.2 0 26.2-.1 54.9 0 83.6.1 11.8-8.9 15.4-17.2 19.2-25.5 11.6-52.8 16.4-80.2 19.3-63.8 6.8-127.4 6.4-189.9-10.3-10.8-2.9-21.3-7.3-31.6-11.8-8.4-3.7-12.7-10.2-12.5-20.2.5-26.9.2-53.9.2-79.6z" fill="#FEFEFE"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400" xml:space="preserve"><image width="400" height="400" href="data:image/png;base64,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 RU5ErkJggg=="/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1 @@
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 390 390"><path d="M51.963 131.224c-.077.579-.118 112.462-.042 116.026L52 251h23.132l-.316-44.001c-.174-24.2-.074-44 .223-44 .296.001 2.273 4.389 4.393 9.751 3.967 10.038 10.957 24.373 28.401 58.25l10.041 19.5 15.063.276 15.063.276V130.937l-11.75.281-11.75.282v84l-3.75-7.875c-2.062-4.331-3.75-8.029-3.75-8.218 0-.888-27.165-54.292-33.016-64.907l-1.653-3-15.166-.276c-8.341-.152-15.182-.152-15.202 0m146.037.807c-11.778 2.475-22.924 10.888-27.645 20.868-3.543 7.488-3.702 19.258-.356 26.376 3.109 6.613 12.378 14.831 21.73 19.265 23.156 10.978 26.261 12.659 28.674 15.527 4.98 5.919 2.551 14.383-5.039 17.554-9.455 3.951-26.027-.858-36.881-10.702-1.988-1.804-2.109-1.695-8.5 7.606-3.566 5.189-6.483 10.225-6.483 11.191 0 3.605 14.819 11.258 25.853 13.351 6.554 1.243 20.919 1.184 27.942-.114 16.496-3.049 29.08-14.932 31.268-29.528 1.437-9.576-2.904-20.798-10.893-28.161-4.905-4.521-7.783-6.161-24.267-13.821-12.61-5.86-16.992-8.776-19-12.643-2.245-4.321-1.705-7.5 1.952-11.49 3.029-3.305 3.956-3.705 9.535-4.108 7.465-.54 13.628 1.508 19.904 6.616 2.399 1.953 4.634 3.095 5.065 2.588.424-.498 3.442-4.056 6.706-7.906 3.264-3.85 6.273-7.15 6.685-7.333 4.233-1.882-6.673-10.182-18.131-13.8-5.761-1.818-22.121-2.596-28.119-1.336m74 6.587c-13.821 9.504-13.103 7.911-8.09 17.932 2.363 4.726 4.861 8.809 5.55 9.073.689.264 3.905-1.285 7.146-3.444l5.894-3.925.26 46.373.26 46.373H307V132l-12.75.043-12.75.043-9.5 6.532" fill="#231F20FD" stroke="#231F20FD"/><path d="M325.071 225.703c-9.907 5.191-10.467 17.785-1.071 24.115 10.022 6.753 23.264-3.698 20.007-15.791-2.063-7.663-11.924-11.997-18.936-8.324" fill="#F30270FE" stroke="#F30270FE"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M939.94 459.073h-377.6V83.519H462.055v375.554h-377.6v100.284h377.6v379.646H562.34V559.357h377.6z"/></svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@ -0,0 +1 @@
<svg width="200" height="200" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><style>.st1{fill:#fff}</style><circle cx="512" cy="512" r="512" style="fill:#ef7878"/><path class="st1" d="M398.3 331.8c-33.2-17.9-70.3-31.9-108.6-40.9-7.7 16.6-11.5 33.2-11.5 52.4 0 28.1 8.9 53.7 24.3 74.1 24.2-35.7 56.2-66.4 95.8-85.6zm323.3 85.6c15.3-20.4 24.3-46 24.3-74.1 0-19.2-3.8-37.1-11.5-52.4-38.3 7.7-75.4 21.7-108.6 40.9 38.3 19.2 71.5 49.9 95.8 85.6zm-152.1 58.8c-7.7 0-14.1 6.4-14.1 14.1 0 2.6 1.3 5.1 2.6 7.7 5.1 7.7 12.8 12.8 21.7 15.3 2.6-5.1 3.8-11.5 3.8-17.9V489c-1.2-7.7-6.3-12.8-14-12.8z"/><path class="st1" d="M503.1 320.3c-126.5 5.1-224.9 112.4-224.9 239v131.6c0 23 19.2 42.2 42.2 42.2 23 0 42.2-19.2 42.2-42.2v-34.5H659v34.5c0 23 19.2 42.2 42.2 42.2 23 0 42.2-19.2 42.2-42.2v-138c1.2-131.6-107.5-237.7-240.3-232.6zm132.8 184c-7.7 12.8-19.2 21.7-33.2 26.8-8.9 17.9-28.1 30.7-49.8 30.7h-6.4c-7.7 0-14.1-6.4-14.1-14.1s6.4-14.1 14.1-14.1c6.4 0 12.8-2.6 17.9-5.1-7.7-3.8-15.3-8.9-20.4-16.6-5.1-6.4-7.7-12.8-7.7-21.7 0-17.9 15.3-33.2 33.2-33.2 11.5 0 20.4 5.1 26.8 14.1 7.7 10.2 12.8 21.7 12.8 35.8v5.1c6.4-2.6 11.5-7.7 15.3-12.8 2.6-3.8 6.4-3.8 10.2-2.6 2.6-1.2 3.9 3.9 1.3 7.7z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M18.97 21.14c0 5.293-4.248 9.585-9.487 9.585S0 26.432 0 21.14s4.245-9.585 9.485-9.585 9.485 4.293 9.485 9.585z" fill="#e38000"/><path d="M18.97 42.865c0 5.29-4.248 9.58-9.487 9.58S0 48.156 0 42.86s4.245-9.585 9.485-9.585 9.485 4.293 9.485 9.585zM41.488 21.14c0 5.293-4.25 9.585-9.49 9.585s-9.485-4.29-9.485-9.585 4.248-9.585 9.485-9.585 9.487 4.293 9.487 9.585zm0 21.726c0 5.29-4.25 9.58-9.49 9.58s-9.485-4.29-9.485-9.585 4.248-9.585 9.485-9.585 9.487 4.293 9.487 9.585zM64 21.14c0 5.293-4.245 9.585-9.485 9.585s-9.485-4.29-9.485-9.585 4.245-9.585 9.485-9.585S64 15.848 64 21.14z" fill="#e17f03"/><path d="M64 42.865c0 5.29-4.245 9.58-9.485 9.58s-9.485-4.29-9.485-9.585 4.245-9.585 9.485-9.585S64 37.57 64 42.86z" fill="#e38000"/></svg>

After

Width:  |  Height:  |  Size: 830 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M93.867 234.667c-34.134 12.8-51.2 25.6-51.2 34.133 0 4.267 51.2 64 115.2 136.533 64 68.267 115.2 128 115.2 128s-51.2 59.734-115.2 128-115.2 132.267-115.2 136.534c4.266 17.066 59.733 42.666 98.133 42.666 64 0 81.067-12.8 217.6-162.133 68.267-76.8 128-140.8 128-140.8 0-4.267-55.467-64-123.733-140.8-85.334-102.4-132.267-145.067-153.6-157.867-29.867-12.8-81.067-17.066-115.2-4.266zm725.333 4.266c-21.333 8.534-68.267 59.734-153.6 153.6-68.267 76.8-123.733 140.8-123.733 140.8 0 4.267 55.466 68.267 128 140.8 136.533 153.6 153.6 162.134 217.6 162.134 42.666 0 98.133-21.334 98.133-42.667 0-4.267-51.2-68.267-115.2-136.533s-115.2-128-115.2-128 51.2-59.734 115.2-128 115.2-128 115.2-136.534c-4.267-17.066-55.467-38.4-98.133-38.4-34.134 0-46.934 4.267-68.267 12.8z" fill="#E57000"/><path d="M238.933 136.533c-42.666 21.334-42.666 25.6-4.266 68.267C456.533 448 507.733 507.733 512 507.733s311.467-332.8 315.733-341.333c0-4.267-8.533-12.8-21.333-21.333-17.067-12.8-34.133-17.067-68.267-17.067-64-4.267-85.333 8.533-162.133 93.867-34.133 38.4-64 72.533-64 72.533s-29.867-29.867-64-68.267-72.533-76.8-89.6-85.333c-25.6-17.067-89.6-21.333-119.467-4.267zm115.2 588.8C268.8 819.2 200.533 896 200.533 900.267s8.534 12.8 21.334 21.333c17.066 12.8 34.133 17.067 68.266 17.067 59.734 4.266 85.334-8.534 162.134-98.134 34.133-38.4 64-68.266 64-68.266s29.866 29.866 64 68.266c81.066 89.6 98.133 102.4 162.133 98.134 34.133 0 51.2-4.267 68.267-17.067 12.8-8.533 21.333-17.067 21.333-21.333-4.267-8.534-311.467-345.6-315.733-341.334-8.534 0-76.8 76.8-162.134 166.4z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M998.4 191.488c-1.536-3.072-5.12-6.144-11.776-4.608-12.8 3.072-159.232 246.784-474.624 240.128-59.904 1.024-113.664-6.656-161.792-19.968l-25.6-87.04s-5.12-21.504-26.112-32.768c-14.336-7.68-23.04-5.12-24.576-3.072-1.536 2.048-1.536 4.096-1.536 4.096l12.8 96.256C124.928 315.904 46.08 189.44 36.864 187.392c-6.656-1.536-10.24 1.536-11.776 4.608-2.56 5.12 0 12.288 0 12.288 45.568 134.144 143.36 240.128 269.824 296.448l34.816 232.448c2.56 66.56 47.104 104.448 104.96 104.448h173.568c57.856 0 101.376-41.472 104.96-104.448l31.744-192.512s.512-2.56-1.024-3.584c-2.048-1.024-16.896-1.536-47.616 20.992-30.72 22.528-40.96 55.296-40.96 55.296s-33.28 79.872-41.984 114.176c-9.216 35.84-49.664 32.768-49.664 32.768h-92.16c-31.232 0-34.304-27.648-34.304-27.648L378.88 529.408c42.496 10.752 86.528 16.384 133.12 15.872 228.352 1.024 417.792-137.728 486.912-341.504 0 0 2.56-7.168-.512-12.288" fill="#00AAE7"/></svg>

After

Width:  |  Height:  |  Size: 1002 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M461.75 72.85 136.559 355.182l241.59 224.914h125.66L266.24 358.4 512 153.527l289.646 246.418v69.34l86.162 56.685V357.888L562.761 74.533 466.36 72.85z" fill="#45495A"/><path d="M542.647 446.318h-22.82l239.176 222.354-243.565 209.335-295.863-246.711v-77.897l-83.383-53.394v163.108L472.649 951.15h90.332l320.804-282.405-242.103-222.427z" fill="#45495A"/></svg>

After

Width:  |  Height:  |  Size: 455 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M244.224 643.84c0 59.221-45.099 107.264-100.779 107.264-55.637 0-100.778-48.043-100.778-107.264s45.141-107.264 100.778-107.264h100.779V643.84zm50.39 0c0-59.307 45.14-107.307 100.82-107.307 55.638 0 100.78 48.043 100.78 107.264v268.288c0 59.264-45.142 107.307-100.78 107.307-55.68 0-100.82-48.043-100.82-107.307V643.797z" fill="#E01E5A"/><path d="M395.392 214.613c-55.637 0-100.779-48.042-100.779-107.306C294.613 48.043 339.755 0 395.392 0c55.68 0 100.821 48.043 100.821 107.307v107.306H395.392zm0 53.632c55.68 0 100.821 48.086 100.821 107.307 0 59.307-45.141 107.307-100.821 107.307H143.445c-55.637 0-100.778-48.043-100.778-107.307 0-59.221 45.141-107.307 100.778-107.307h251.947z" fill="#36C5F0"/><path d="M798.55 375.552c0-59.221 45.098-107.307 100.778-107.307 55.637 0 100.779 48.086 100.779 107.307 0 59.307-45.142 107.307-100.779 107.307H798.549V375.552zm-50.39 0c0 59.307-45.141 107.307-100.821 107.307-55.638 0-100.779-48.043-100.779-107.307V107.307C546.56 48.043 591.701 0 647.339 0c55.68 0 100.821 48.043 100.821 107.307v268.245z" fill="#2EB67D"/><path d="M647.381 804.779c55.638 0 100.779 48.042 100.779 107.306 0 59.264-45.141 107.307-100.779 107.307-55.68 0-100.821-48.043-100.821-107.307V804.78h100.821zm0-53.675c-55.68 0-100.821-48.043-100.821-107.307 0-59.221 45.141-107.306 100.821-107.306h251.904c55.68 0 100.779 48.085 100.779 107.306 0 59.307-45.099 107.307-100.779 107.307H647.381z" fill="#ECB22E"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M128 128h768a42.667 42.667 0 0 1 42.667 42.667v682.666A42.667 42.667 0 0 1 896 896H128a42.667 42.667 0 0 1-42.667-42.667V170.667A42.667 42.667 0 0 1 128 128zm384 512v85.333h256V640H512zM358.997 512 238.336 632.661l60.33 60.374L479.702 512 298.667 330.965l-60.331 60.374L358.997 512z"/></svg>

After

Width:  |  Height:  |  Size: 389 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 72 72" fill="none"><circle cx="36" cy="36" r="35" stroke="#A0CC40" stroke-width="2"/><path d="M13.492 16.202h6.793l-1.43 6.792h-6.793l1.43-6.792zm6.344 9.741h6.792l-1.43 6.792h-6.792l1.43-6.792z" fill="#A0CC40"/><path fill-rule="evenodd" clip-rule="evenodd" d="M21.981 22.961c-.136-.136.888-5.49 1.208-6.313.163-.418 1.151-.446 15.735-.446 13.276 0 15.582.053 15.702.366.077.201-.099 1.538-.391 2.972-.435 2.13-.669 2.992-.348 3.336.257.275.868.22 2.015.22 2.152 0 2.196.012 2.057.574-.078.316-1.59 7.412-3.361 15.768-1.77 8.356-3.278 15.393-3.35 15.64-.125.418-1.01.446-13.894.446-7.568 0-13.808-.086-13.866-.191-.058-.105 1.414-7.316 3.27-16.023 1.858-8.707 3.329-15.917 3.269-16.023-.06-.105-1.864-.191-4.01-.191-2.145 0-3.962-.06-4.036-.135zM35.671 44.7c1.204.55 2.602.824 4.196.824a13.31 13.31 0 0 0 3.24-.399 9.593 9.593 0 0 0 3.107-1.407l-2.496-3.638a5.31 5.31 0 0 1-1.514.77 5.877 5.877 0 0 1-1.647.239c-.938 0-1.655-.186-2.15-.558-.324-.263-.538-.644-.642-1.142H47.94c.089-.39.16-.796.212-1.221.071-.425.107-.86.107-1.302 0-1.257-.292-2.363-.877-3.32-.584-.955-1.425-1.708-2.523-2.256-1.097-.55-2.425-.824-3.983-.824-1.806 0-3.39.363-4.753 1.09-1.346.725-2.39 1.716-3.134 2.973-.744 1.257-1.115 2.683-1.115 4.276 0 1.363.336 2.55 1.009 3.558.672 1.01 1.602 1.788 2.788 2.337zm2.337-8.205h4.774a1.8 1.8 0 0 0-.127-.664 1.696 1.696 0 0 0-.743-.93c-.354-.23-.788-.345-1.301-.345-.726 0-1.302.195-1.727.584-.388.356-.68.807-.876 1.355z" fill="#A0CC40"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M128 479.2h768v65.6H128z"/></svg>

After

Width:  |  Height:  |  Size: 144 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m679.424 746.862 84.005-395.996c7.424-34.852-12.581-48.567-35.438-40.009L234.277 501.138c-33.72 13.13-33.134 32-5.706 40.558l126.282 39.424 293.156-184.576c13.714-9.143 26.295-3.986 16.018 5.157L426.898 615.973l-9.143 130.304c13.13 0 18.871-5.706 25.71-12.581l61.696-59.429 128 94.282c23.442 13.129 40.01 6.29 46.3-21.724zM1024 512c0 282.843-229.157 512-512 512S0 794.843 0 512 229.157 0 512 0s512 229.157 512 512z" fill="#1296DB"/></svg>

After

Width:  |  Height:  |  Size: 536 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M512 170.667c130.475 0 240.939 83.797 277.93 199.296a198.827 198.827 0 0 0-41.557-.598 222.293 222.293 0 0 0-49.706 10.624C668.203 309.333 596.096 259.755 512 259.755c-100.267 0-183.467 70.528-199.381 163.029a279.04 279.04 0 0 0-89.43-3.84C241.28 278.954 363.691 170.667 512 170.667z" fill="#006DFE"/><path d="M258.475 417.323c54.442 0 104.192 20.181 142.165 53.418 16.085 14.08 45.227 39.68 87.381 76.8l-7.381-6.528-61.568 60.886-54.4-54.4c-34.219-34.262-66.09-47.958-106.197-47.958a133.59 133.59 0 0 0 0 267.222c10.666 0 29.312.768 56.064 2.346l-90.454 77.142a215.893 215.893 0 0 1 34.347-428.971z" fill="#00CDD8"/><path d="M674.347 434.475a215.808 215.808 0 0 1 168.618 397.354c-15.36 6.486-38.186 15.958-63.146 16.214-72.107.597-244.182.896-516.352.938H220.8a206248.107 206248.107 0 0 0 397.013-380.714c18.262-17.579 41.131-27.264 56.534-33.792zm41.856 80.554c-9.259 3.926-23.04 9.771-34.048 20.352-30.166 29.099-109.952 105.643-239.446 229.632h53.419c148.181 0 242.773-.213 283.733-.554 15.062-.128 28.843-5.846 38.102-9.814a130.133 130.133 0 0 0-101.76-239.616z" fill="#00A2FF"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M512 .445C229.477.445.445 229.477.445 512.003c0 282.521 229.032 511.552 511.555 511.552s511.555-229.032 511.555-511.552C1023.555 229.477 794.523.445 512 .445zm0 900.338c-47.087 0-85.26-39.416-85.26-88.035S464.913 724.71 512 724.71c47.085 0 85.257 39.417 85.257 88.038s-38.17 88.035-85.257 88.035zm66.202-316.928c0 48.621-26.946 88.035-60.183 88.035h-12.036c-33.24 0-60.183-39.414-60.183-88.035l-36.11-352.14c0-48.62 26.944-88.031 60.181-88.031h84.258c33.239 0 60.183 39.412 60.183 88.032l-36.11 352.14z"/></svg>

After

Width:  |  Height:  |  Size: 622 B

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M912.192 1024H111.808A111.808 111.808 0 0 1 0 912.192V111.808C0 50.048 50.048 0 111.808 0h800.384C973.952 0 1024 50.048 1024 111.808v800.384c0 61.76-50.048 111.808-111.808 111.808" fill="#3860F4"/><path d="M822.208 435.2c0 64.128.128 128.32 0 192.448-.256 134.592-81.216 229.376-214.336 252.416a462.08 462.08 0 0 1-187.136-5.632c-110.528-26.048-187.392-117.76-189.632-230.912-1.536-79.04.64-158.144-1.024-237.184-.512-24.576 9.728-30.272 30.144-26.88 30.336 5.056 42.56-6.848 37.248-37.248-4.288-24.704 7.68-33.408 30.912-29.952 25.984 3.968 38.848-5.056 34.24-33.152-3.008-18.432 3.712-26.304 24.128-26.368 20.416-.064 24.576 7.68 24.448 26.24-.64 120.32-.384 240.64-.192 360.96 0 30.016 2.304 59.84 19.968 85.568 24 35.008 78.464 50.688 131.072 36.736 42.368-11.2 69.312-37.696 76.16-82.88 5.824-37.76 3.328-75.52 3.456-113.216.448-116.864.896-233.728-.384-350.592-.256-24.32 6.72-31.488 30.72-30.4 41.088 1.92 82.368 1.6 123.52.064 20.736-.704 27.648 4.736 27.2 26.56-1.344 74.432-.512 148.928-.512 223.36" fill="#FFF"/><path d="M249.152 318.976c16.768-2.304 24 2.88 24.064 19.84 0 16.768-4.032 24.448-22.528 24.128-16.768-.256-21.12-7.168-20.672-22.4.384-14.528 2.304-25.472 19.2-21.568m135.424-91.072c-15.808 2.304-22.784-3.392-22.656-20.352.128-15.488 3.84-22.656 20.928-22.4 15.168.32 22.912 3.52 22.4 20.8-.448 14.976-3.072 24.832-20.736 21.952M317.76 253.44c16-2.368 22.72 3.648 22.72 20.672s-7.04 21.504-22.656 21.248c-14.272-.192-20.8-4.48-20.864-19.648-.128-15.168 3.008-25.088 20.8-22.272m1.6-60.8c13.312-1.536 21.056 1.984 20.928 18.112-.128 16.896-9.856 17.28-22.208 17.6-13.504.32-21.12-2.88-21.056-18.752 0-17.024 9.856-17.92 22.4-16.96m-47.232 80.256c2.176 15.36-7.424 15.744-18.944 16.192-14.976.64-16.128-7.552-16.448-19.328-.384-14.848 7.68-16.192 19.52-16.512 14.912-.448 17.216 7.68 15.872 19.648m-81.344 16c-12.288 1.664-15.616-4.992-15.168-16 .32-8.64 1.728-15.616 12.608-16 10.816-.32 17.152 3.392 17.472 15.232.256 10.624-2.24 17.92-14.912 16.768m143.04-138.88c.128 10.368-6.144 13.44-15.296 13.312-10.432-.128-17.728-4.032-17.024-15.744.64-11.52 9.664-10.304 17.472-10.56 8.96-.32 15.744 1.92 14.848 12.992M252.8 220.928c-8.64.448-15.616-1.152-15.616-12.096 0-8.192.128-15.808 11.52-16.128 9.728-.256 17.6.64 17.28 13.696-.256 9.28-2.816 15.04-13.184 14.528m13.312-70.656c-.32 7.68-3.712 12.544-12.032 12.032-8.32-.512-10.88-5.952-11.008-13.44-.064-8.32 4.352-11.52 12.288-11.392 8.576.192 11.328 4.992 10.752 12.8m-79.616 48.064c6.976 0 13.376 1.024 14.208 9.856.768 8.064-3.2 12.352-11.008 12.992-7.168.512-13.248-.64-13.632-9.792-.384-7.424 1.28-13.184 10.432-13.056m4.864-54.784c2.752 2.432 6.784 4.288 6.784 6.208 0 5.504-4.48 7.68-9.216 6.336-2.24-.64-3.584-4.48-5.312-6.912l7.68-5.632" fill="#FFF"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M819.733 102.74a479.288 479.288 0 0 0-59.608-38.286 33.923 33.923 0 0 0-43.131 8.723L589.054 242.31l-7.269 13.084a70.27 70.27 0 0 1-59.123 27.624h-25.2a228.256 228.256 0 0 0-213.718 239.886 25.2 25.2 0 0 0 14.539 21.808 60.093 60.093 0 1 1-82.385 71.723v-3.877a60.577 60.577 0 0 1 11.63-48.461 36.831 36.831 0 0 0 7.755-26.655A279.14 279.14 0 0 1 512 234.071a51.854 51.854 0 0 0 41.193-20.839L670.955 56.7a21.323 21.323 0 0 0-11.63-33.923A511.758 511.758 0 0 0 263.39 959.546a33.923 33.923 0 0 0 43.616-9.208L436.4 780.72l8.724-12.115a70.754 70.754 0 0 1 59.123-27.624 218.563 218.563 0 0 0 25.2 0A230.194 230.194 0 0 0 697.61 650.36a225.832 225.832 0 0 0 45.554-149.263 25.2 25.2 0 0 0-14.538-21.808 60.093 60.093 0 0 1-35.862-43.13 60.093 60.093 0 0 1 117.278-27.14 14.054 14.054 0 0 0 0 4.362 61.062 61.062 0 0 1-11.631 48.462 36.831 36.831 0 0 0-7.754 26.654 279.14 279.14 0 0 1-276.718 303.371 51.854 51.854 0 0 0-41.192 20.84L355.953 969.237a21.808 21.808 0 0 0 11.146 33.923 512.242 512.242 0 0 0 452.634-900.42z" fill="#009FFF"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="m512 60 512 904H0z" fill="#212121"/></svg>

After

Width:  |  Height:  |  Size: 140 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="192" height="192"><path d="M108 0h4c5.532 22.525 10.827 45.097 15.966 67.715.91 4.005 1.824 8.01 2.737 12.014A38952.02 38952.02 0 0 1 136 103l.487-2.171c.737-3.24 1.5-6.471 2.263-9.704l.766-3.418.78-3.262.7-3.015C142 79 142 79 144.105 77.66L146 77c2.256 3.383 2.996 6.526 3.88 10.421l.532 2.283c.58 2.49 1.15 4.983 1.72 7.476l1.203 5.197c.84 3.633 1.674 7.266 2.506 10.9 1.066 4.654 2.142 9.307 3.222 13.958.83 3.578 1.653 7.157 2.476 10.737.394 1.716.79 3.431 1.189 5.146.556 2.4 1.104 4.8 1.651 7.202.166.706.33 1.413.5 2.141.805 3.565 1.409 6.88 1.121 10.539-1 1-1 1-3.278 1.123l-3.081-.003-3.523.004-3.9-.01h-4.079c-3.702 0-7.404-.006-11.107-.013-3.865-.006-7.73-.006-11.595-.008-7.324-.003-14.648-.011-21.972-.021-8.336-.011-16.672-.017-25.008-.022-17.152-.01-34.305-.028-51.457-.05-1.142-3.426-.824-4.658-.012-8.114l.728-3.154.811-3.4.812-3.485c.858-3.68 1.728-7.357 2.599-11.035l1.748-7.474C35.116 121.223 36.554 115.11 38 109l4-1c.481 1.416.96 2.833 1.438 4.25l.808 2.39c.674 2.11 1.229 4.211 1.754 6.36 4.075-14.458 7.324-29.115 10.688-43.75.888-3.863 1.778-7.726 2.67-11.588.551-2.39 1.101-4.779 1.65-7.169l.749-3.25.656-2.857C63 50 63 50 64 47l3-1c2.764 2.764 3.088 5.864 3.91 9.563l.522 2.263c.55 2.39 1.091 4.782 1.63 7.174.545 2.392 1.092 4.783 1.641 7.174.342 1.488.68 2.977 1.015 4.467.84 3.78.84 3.78 2.282 7.359l5-21 4-1 4 9 .6-2.65c1.866-8.228 3.734-16.454 5.607-24.679.962-4.229 1.923-8.458 2.882-12.688.924-4.08 1.851-8.158 2.781-12.235.355-1.56.709-3.119 1.061-4.679.492-2.177.989-4.353 1.487-6.53l.854-3.761C107 1 107 1 108 0z" fill="#1678FE"/><path d="M66 46c4.012 2.675 4.291 5.677 5.367 10.129l.614 2.492a715.25 715.25 0 0 1 1.255 5.259c.626 2.629 1.3 5.243 1.975 7.86C78.07 83.416 78.004 92.421 75 104l-.823 3.623c-.786 3.45-1.63 6.882-2.49 10.314a740352709.556 740352709.556 0 0 1-2.769 11.276c-1.748 7.207-3.397 14.436-5.052 21.664l-.702 3.064-.61 2.678A394.543 394.543 0 0 1 61 163h48v1H27c-1.142-3.426-.824-4.658-.012-8.114l.728-3.154.811-3.4.812-3.485c.858-3.68 1.728-7.357 2.599-11.035l1.748-7.474C35.116 121.223 36.554 115.11 38 109l4-1c.481 1.416.96 2.833 1.438 4.25l.808 2.39c.674 2.11 1.229 4.211 1.754 6.36 4.075-14.458 7.324-29.115 10.688-43.75.888-3.863 1.778-7.726 2.67-11.588.551-2.39 1.101-4.779 1.65-7.169l.749-3.25.656-2.857C63 50 63 50 64 47l2-1z" fill="#167AFE"/><path d="m84 62 4 1c.467 1.58.923 3.165 1.375 4.75l.773 2.672c.727 3.055 1.266 6.042 1.754 9.14 1.078 6.66 2.648 13.148 4.285 19.688 3.018 12.249 5.788 24.538 8.415 36.876 1.411 6.576 2.92 13.06 4.856 19.502C110 158 110 158 110 163H61c.62-4.953 1.191-9.256 2.383-14l.838-3.387.904-3.613a1217.188 1217.188 0 0 0 7.438-32.063l.435-2A2715.867 2715.867 0 0 0 77.282 87.9c.413-1.97.828-3.938 1.243-5.907.513-2.437 1.02-4.875 1.522-7.315l.691-3.288.595-2.874C81.968 66.122 82.803 64.16 84 62z" fill="#36E1E2"/><path d="m144 77 3 1c1.039 2.834 1.039 2.834 1.958 6.593l.509 2.04c.524 2.119 1.03 4.242 1.533 6.367l.928 3.826c.933 3.89 1.843 7.785 2.744 11.682l.992 4.272c.684 2.949 1.366 5.898 2.046 8.848.871 3.772 1.75 7.543 2.63 11.314.681 2.924 1.358 5.85 2.033 8.776.322 1.392.646 2.783.971 4.174.453 1.936.898 3.874 1.343 5.812l.77 3.328c.504 2.753.729 5.18.543 7.968-1 1-1 1-2.766 1.114l-2.27-.016-2.45-.01-2.577-.025-2.587-.014c-2.117-.012-4.233-.03-6.35-.049l.087-3.103c-.082-3.687-.576-6.695-1.478-10.256l-.896-3.605-.963-3.786c-.645-2.603-1.283-5.208-1.922-7.813l-.947-3.843a700.034 700.034 0 0 1-3.381-14.344l-.52-2.175c-1.939-8.906.36-17.31 2.458-26.013l.658-2.86.65-2.73.584-2.46C142 79 142 79 144 77z" fill="#37E1E2"/><path d="m40 108 3 1c.95 2.371.95 2.371 1.688 5.438l.761 2.996c1.456 9.427-.086 17.567-2.386 26.754-2.451 9.827-2.451 9.827-4.063 19.812H27c-1.137-3.412-.833-4.652-.044-8.098l.709-3.144.792-3.39.797-3.478c.559-2.427 1.121-4.853 1.688-7.278a2222.69 2222.69 0 0 0 2.568-11.186l1.635-7.059.773-3.402.738-3.126.641-2.765C38 109 38 109 40 108z" fill="#38E1E2"/></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="200" height="200" viewBox="0 0 340 100"><path d="M290 61.5c-4.1 4.6-29.3 36.7-56.9 26.7-3.6-1.3-7.2-3.3-10.9-6.2 3.8.2 7.5 0 10.9-.3 5.3-.5 9.8-1.5 12.4-2.9 6.1-3 4.5-13.2-12.4-16.2-.4-.1-.9-.2-1.3-.2-11.3-1.7-19.5 1.7-23.7 5.3-.1 0-.3-.1-.4-.2-2.6-1.1-5.2-2.2-7.8-3.2 20-.9 23.4-14.1 4.8-26.4-7.5-5-16.3-9.4-25.6-13.4-10.7-4.5-22.3-8.5-33.7-11.7-7.9-2.2-15.7-4.1-23.1-5.7C109.9 4.6 98.7 2.8 90 2 71.1.3 58.1 1.5 50.8 5.8 47.7 7.6 46 10 46 13v.3c0 1.6.5 3.3 1.4 5.2 3 6.3 11.1 13.5 24.1 21.5C83 47.1 100.3 55.2 115 60.3c.1.8.2 1.6.6 2.6.9 2.4 3.1 5.2 6.7 8.3.5.5 1.1 1 1.8 1.5 5.7 4.5 12.7 8.7 21.1 12.2l.2.1c10.9 4.6 22.6 8.2 33.7 10.8 16.7 3.8 32.2 5.4 42.6 4.9.5-.2.7-.4.4-.6-.1-.1-.2-.2-.4-.2-5.7-.4-12.9-1.2-21.7-2.3-7.3-1-14.3-2.3-21-3.8-12.1-2.7-23.1-6.2-33-10.5-.2-.1-.4-.2-.7-.3-6.7-2.9-10.5-5.7-11.4-8.2-1.2-3.4 1.9-5.2 5-6 2 .7 4.1 1.3 6.4 1.9 10.2 2.9 22.2 5.5 33.7 7.4 11.1 1.9 21.7 3.2 29.5 3.6 7.6 6.7 16.1 10.2 24.6 11.3 15.2 1.8 30.4-4.1 41.1-13.8 7.3-6.6 13.2-13 16.3-17l-.5-.7zM145.3 30.3c8.5.3 17.4 1.3 26.7 3.1 2.5.5 4.8 1 7 1.5 6.7 1.6 11.5 3.3 14.5 5.2 3.4 2.1 4.1 3.7 2.1 4.9-1.5.9-4.6 1.5-9.4 2-2.4.2-4.8.4-7.2.4-2.4.1-4.9 0-7.4 0-4.9-.2-9.8-.9-14.8-1.8-4.9-1-8.3-2-10-3-1.3-.8-1.6-1.4-1-1.9.4-.2 1.1-.4 2.3-.5.9-.1 1.5-.4 2.1-.7 1.1-.7 1.4-1.6.8-2.9-.7-1.3-2-2.6-4-3.8-.5-.3-1.1-.6-1.7-1-.7-.4-1.6-.8-2.6-1.3.9-.2 1.7-.2 2.6-.2zm0 20.7c-6-.5-11.4-.5-16.2.1-2.7.3-5 .7-6.9 1.3-1.3.4-2.5.9-3.4 1.4-.3-.1-.6-.2-1-.4-12.8-4.5-26.4-14.1-19.6-18.1 4.8-2.8 12.8-4.4 24-4.8 2-.1 4.1-.1 6.3-.1-1.7 5.1 2.7 10.8 12.9 17.1 1.3.8 2.6 1.6 3.8 2.3.9.5 1.7 1 2.6 1.4-.8-.1-1.7-.1-2.5-.2zm61.4 28.4c-8.5-.8-18.3-2.9-27.7-5.2-10.6-2.7-20.7-5.7-27.7-7.9 6.4-1.5 14.8-2.2 25.6-2h2.1c10.8.4 20 1.9 27.8 4.6-2.2 2.6-3 6-.1 10.5zm26.4-12.5c.4 0 .7 0 1.1.1 3.6.4 6.7.9 9.8 3.1 3.5 2.4 3.5 4.4 2.1 6.5-1.3 2.1-7.1 2.9-13 3.2-4.6.2-9.3.1-12.2 0-4.8-5.1 1-13.4 12.2-12.9z" fill="#005BAC"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M749.1 515.5c-23.8.1-47.3 4.5-69.6 12.9l-80.1-159.5c28.6-31.1 31.5-78 6.9-112.3-24.6-34.4-69.9-46.8-108.5-29.7s-60.1 58.8-51.3 100.2c8.7 41.3 45.3 70.9 87.5 70.8 3.3.2 6.6.2 9.8 0l107.6 214.5 27.8-13.9c49.1-28.4 110.6-24.4 155.6 10.2 45 34.6 64.7 92.9 49.9 147.7-14.8 54.8-61.2 95.2-117.5 102.4-56.3 7.2-111.4-20.3-139.5-69.6l-54.3 31.6c49.4 85.6 153.2 123.4 246.1 89.5 92.9-33.9 148-129.6 130.6-227S848 514.9 749.1 515.2v.3z" fill="#3296FA"/><path d="M404.3 463.6 295.7 630.2c-6.8-1.4-13.7-2-20.7-2-41.6-.1-77.8 28.2-87.7 68.6-9.8 40.4 9.3 82.3 46.3 101.3s82.2 10.2 109.3-21.3 29.1-77.5 4.8-111.2l142.5-218.9-26.1-17c-49.7-28.2-77.4-83.7-70.1-140.3 7.3-56.7 48-103.3 103.2-118.1 55.2-14.8 113.8 5.2 148.5 50.6 34.6 45.4 38.4 107.3 9.5 156.6l54.3 31.2c18.1-30.9 27.6-66 27.5-101.8 1-94.9-63.7-177.9-156.1-200.1-92.3-22.2-187.7 22.4-229.9 107.4s-20.1 188 53.4 248.1v.3z" fill="#3296FA"/><path d="M665.3 749.3c15.1 40.6 57.2 64.6 99.8 57 42.7-7.7 73.7-44.8 73.7-88.2 0-43.4-31.1-80.5-73.7-88.2s-84.7 16.3-99.8 57H415.2v31.2c0 77.6-62.9 140.5-140.5 140.5s-140.5-62.9-140.5-140.5 62.9-140.5 140.5-140.5v-63.1c-108.6-.6-198.6 84.2-204.4 192.7s74.5 202.4 182.5 213.5c108 11.1 205.8-64.6 222.1-172l190.4.6z" fill="#3296FA"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M803.6 859.2c0 26.6-20.4 49.2-48.4 51.8-21.2 2-48.6-11-54.8-39.8-5.6-26-13.2-50.8-29-72.4-6-8.2-12.8-16-20-23.4-7.6-8-9.4-14-4.4-19.8 5-5.8 12.8-5 20.8 3.2 20.8 21 45.4 35.2 73.6 43.6 7.2 2.2 14.8 3.4 22.2 5.2 24.6 6.2 40 26.2 40 51.6z" fill="#FC6401"/><path d="M698.2 549.8c.2-28.4 20.8-50.2 49.6-52.6 25.6-2.2 50.6 17.6 55 45.2 6 36.2 22.8 66.2 48.4 92 3.2 3.2 5.6 9.2 5.2 13.8-.4 7.2-9.8 10.6-16.2 6.4-3.4-2.2-6.2-5-9-7.8-25.4-24.6-55.6-39.4-90.4-45.4-24.8-4.6-42.6-26.2-42.6-51.6z" fill="#2DBD00"/><path d="M595.4 765.2c-26.6 0-49.2-20.4-51.8-48.4-2-21.2 11-48.6 39.8-54.8 26-5.6 50.8-13.2 72.4-29 8.2-6 16-12.8 23.4-20 8-7.6 14-9.4 19.8-4.4 5.8 5 5 12.8-3.2 20.8-21 20.8-35.2 45.4-43.6 73.6-2.2 7.2-3.4 14.8-5.2 22.2-6.2 24.6-26.2 40-51.6 40z" fill="#FFCD00"/><path d="M898.8 650c28.4.2 50.2 20.8 52.6 49.6 2.2 25.6-17.6 50.6-45.2 55-36.2 6-66.2 22.8-92 48.4-3.2 3.2-9.2 5.6-13.8 5.2-7.2-.4-10.6-9.8-6.4-16.2 2.2-3.4 5-6.2 7.8-9 24.6-25.4 39.4-55.6 45.4-90.4 4.6-25 26.2-42.8 51.6-42.6z" fill="#0084F0"/><path d="M734 208.6c-110.4-108.4-244.8-139.8-392.4-100-260 70.2-340.4 340.6-209 517 6.4 8.6 7.6 24.4 5.2 35.4-7 32.4-17.4 64.2-26 96.2-4.6 17.2-7.4 34.6 8 48.4 16.6 14.8 34.2 11.8 52.2 2.6 29.6-15 59.8-29.2 89-45 19-10.4 36.2-10.8 57.6-4.8 42.8 11.8 87.2 18.4 109.6 23 43.8-.8 83.6-5.2 120.2-13.6-13.8-12-23-29.2-24.8-49-.4-5.4-.2-10.8.6-16.2C466.4 715 405 710 341 688.6c-42.2-14.2-76.8-17.8-113.4 7-3.4 2.2-7.8 2.8-24.6 8.2 33.8-58.4 8.8-95-19.6-136.6-63.4-92-50.4-210.8 24.6-296.4C330.8 131 571 131 693.8 271c52.8 60.2 73.6 135.2 61.8 206.2 28 1.6 52.8 20.6 63 47.2 32-108.8 4-228.8-84.6-315.8z" fill="#0083EF"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Some files were not shown because too many files have changed in this diff Show More