feat: 初始化

This commit is contained in:
George
2025-07-07 16:00:31 +08:00
commit e94478ac2d
502 changed files with 58925 additions and 0 deletions

91
src/App.vue Normal file
View File

@ -0,0 +1,91 @@
<template>
<el-config-provider :locale="locale">
<router-view />
<message-box ref="msgbox" :options="msgOptions"/>
<message-box ref="tipbox" :options="tipOptions" />
</el-config-provider>
</template>
<script setup>
import { ref, provide, watch } from 'vue'
import { ElConfigProvider } from 'element-plus';
// import { handleThemeStyle } from '@/utils/theme'
import Locales from '@/locales/index'
// import useSettingsStore from '@/store/modules/settings'
import useAppStore from '@/store/modules/app'
import MessageBox from '@/components/MessageBox'
import { dotSpinner } from 'ldrs'
import { ring2 } from 'ldrs'
import { clientLang } from '@/utils/i18n'
ring2.register()
dotSpinner.register()
const { proxy } = getCurrentInstance();
const route = useRoute();
watch(route, (newRoute) => {
if (newRoute.query && newRoute.query.language && ( newRoute.path == '/login' || newRoute.path.startsWith('/signUp') ) ) {
changeLanguage(clientLang(newRoute.query.language))
}
}, {
immediate: true, deep: true
})
onMounted(() => {
window.openMsg = openMsg
window.showTip = showTip
})
const locale = ref(Locales[useAppStore().lang]);
const changeLanguage = (lang = 'en') => {
if (lang) {
if (lang == 'zh-cn') {
locale.value = Locales['zh-cn']
} else if (lang.startsWith('zh')) {
locale.value = Locales['zh-tw']
} else if (lang.startsWith('es')) {
locale.value = Locales['es']
} else if (lang.startsWith('ko')) {
locale.value = Locales['ko']
} else if (lang.startsWith('hi')) {
locale.value = Locales['hi']
} else if (lang.startsWith('vi')) {
locale.value = Locales['vi']
} else if (lang.startsWith('th')) {
locale.value = Locales['th']
} else if (lang.startsWith('id')) {
locale.value = Locales['id']
} else if (lang.startsWith('ar')) {
locale.value = Locales['ar']
} else if (lang.startsWith('en')) {
locale.value = Locales['en']
}
}
useAppStore().changeLanguage(lang)
}
const msgOptions = ref({})
const tipOptions = ref({})
function openMsg(options) {
msgOptions.value = options
return proxy.$refs.msgbox.openMsg()
}
function showTip(options) {
options.type = "tip"
options.closeIcon = true
if (!options.width) {
options.width = '410'
}
tipOptions.value = options
return proxy.$refs.tipbox.showTip()
}
provide('changeLanguage', changeLanguage);
provide('openMsg', openMsg);
provide('showTip', showTip);
</script>

92
src/api/account.js Normal file
View File

@ -0,0 +1,92 @@
import request from "@/utils/request";
// 申请调整杠杆
export function editMtLeverage(data) {
return request({
url: "/app/customer/editMtLeverage",
method: "post",
data: data
});
}
// 查询申请杠杆列表
export function queryApplyLeverageList(query) {
return request({
url: "/app/customer/queryApplyLeverageList",
method: "get",
params: query
});
}
// 修改MT账户密码
export function editOwnMtPassword(data) {
return request({
url: "/app/customer/editOwnMtPassword",
method: "post",
data: data
});
}
// 修改MT交易密码发送验证码
export function editOwnMtPasswordSendCode(data) {
return request({
url: "/app/customer/sendCode",
method: "post",
data: data
});
}
// 修改MT交易密码校验验证码
export function editOwnMtPasswordCheckCode(data) {
return request({
url: "/app/customer/checkCode",
method: "post",
data: data
});
}
// 查询开户MT类型列表
export function queryMtTypeList(query) {
return request({
url: "/app/customer/queryMtTypeList",
method: "get",
params: query
});
}
// 查询开户申请待审核数量
export function getApplyMTAwaitAuditNum(query) {
return request({
url: "/app/customer/getApplyMTAwaitAuditNum",
method: "get",
params: query
});
}
// 保存开户申请接口
export function saveApplyMT(data) {
return request({
url: "/app/customer/saveApplyMT",
method: "post",
data: data
});
}
// 查询弹层数据detailQuery
export function detailQuery(query) {
return request({
url: "/app/ibHome/detailQuery",
method: "get",
params: query
});
}
// 查询弹层数据detailTableQuery
export function detailTableQuery(query) {
return request({
url: "/app/ibHome/detailTableQuery",
method: "get",
params: query,
ignoreError: true
});
}

55
src/api/activity.js Normal file
View File

@ -0,0 +1,55 @@
import request from "@/utils/request";
// 查询活动列表getActivityByUser
export const getActivityByUser = (query) => {
return request({
url: "/app/activity/getActivityByUser",
method: "get",
params: query,
});
};
// 查询活动列表getNewActivityByUser
export const getNewActivityByUser = (query) => {
return request({
url: "/app/activity/getNewActivityByUser",
method: "get",
params: query,
});
};
// 查询是否可以参加活动及返回必要信息
export const getActInfo = (query) => {
return request({
url: "/app/activity/getActInfo",
method: "get",
params: query,
});
};
// 查询活动内容详情接口
export const getActivityDetail = (query) => {
return request({
url: "/app/activity/getActivityDetail",
method: "get",
params: query,
});
};
// 查询最新活动详情接口
export const getNewActivityDetail = (query) => {
return request({
url: "/app/activity/getNewActivityDetail",
method: "get",
params: query,
});
};
// 保存最新活动申请
export function participateSave(data) {
return request({
url: "/app/activity/participateSave",
method: "post",
data: data,
});
}

23
src/api/audit.js Normal file
View File

@ -0,0 +1,23 @@
import request from "@/utils/request";
export function agencyQuery(query) {
return request({
url: "/app/audit/agency",
headers: {
isToken: false,
},
method: "get",
params: query,
});
}
export function agencyAudit(data) {
return request({
url: "/app/audit/agency/audit",
headers: {
isToken: false,
},
method: "post",
data: data,
});
}

274
src/api/common.js Normal file
View File

@ -0,0 +1,274 @@
import request from '@/utils/request'
// 获取模板
export function getTemplateDetailByCode(query) {
return request({
url: '/sys/template/getTemplateDetailByCode',
headers: {
isToken: false
},
method: 'get',
params: query
})
}
// 获取国家
export function getCountry() {
return request({
url: '/common/getCountry',
headers: {
isToken: false
},
method: 'get'
})
}
// 获取州属
export function getStates(query) {
return request({
url: '/common/getStates',
headers: {
isToken: false
},
method: 'get',
params: query
})
}
// 获取城市
export function getCity(query) {
return request({
url: '/common/getCity',
headers: {
isToken: false
},
method: 'get',
params: query
})
}
// 获取轮播图
export function queryBannerList(query) {
return request({
url: '/app/common/queryBannerList',
method: 'get',
params: query,
ignoreError: true
})
}
// 我的账户列表
export function getMtTableInfo(query) {
return request({
url: '/app/customer/getMtTableInfo',
method: 'get',
params: query
})
}
// 我的账户列表(过滤禁止出金账号)
export function getMtTableInfo2(query) {
return request({
url: '/app/customer/getMtTableInfo2',
method: 'get',
params: query
})
}
// 更新爱好语言接口
export function setLoveLanguage(data) {
return request({
url: '/app/login/setLoveLanguage',
method: 'post',
ignoreError: true,
data: data
})
}
// 我的交易列表
export function queryMyTradeList(query) {
return request({
url: '/app/customer/queryMyTradeList',
method: 'get',
params: query
})
}
// 查询MT服务器列表
export function mtServer(query) {
return request({
url: '/app/common/mt/server',
method: 'get',
params: query
})
}
// 查询mt账户列表
export function mtLogin(query) {
return request({
url: '/app/common/mt/login',
method: 'get',
params: query
})
}
// 查询字典数据接口
export function getDictByCode(query) {
return request({
url: '/app/common/getDictByCode',
method: 'get',
params: query
})
}
// 查询页面按钮权限
export function getPageBtnPower(query) {
return request({
url: '/app/common/getPageBtnPower',
method: 'get',
params: query
})
}
// 查询页面的数据权限
export function getDataPower(query) {
return request({
url: '/app/common/getDataPower',
method: 'get',
params: query
})
}
// 查询KYC认证状态接口(邮箱认证+身份认证+居住认证)
export function getPersonalAuthStatus(query) {
return request({
url: '/app/personal/getPersonalAuthStatus',
method: 'get',
params: query
})
}
// 查询出入金权限设置
export function getIfOTParams(query) {
return request({
url: '/app/capital/getIfOTParams',
method: 'get',
params: query
})
}
// 获取出金转账配置
export function getOtFundConfig(query) {
return request({
url: '/app/common/querySys',
method: 'get',
params: query
})
}
// 加载MT4列表
export function getCustomerMtLoginList(query) {
return request({
url: '/app/capital/getMtLoginList',
method: 'get',
params: query
})
}
// 根据MT4账号查询出入金阈值如果没有设置那么取默认值
export function queryByMt4Login(query) {
return request({
url: '/app/capital/queryByMt4Login',
method: 'get',
params: query
})
}
// 根据支付通道ID查询适用币种
export function getCurrencyByPay(query) {
return request({
url: '/app/capital/getCurrencyByPay',
method: 'get',
params: query
})
}
export function getExchangeRate(query) {
return request({
url: '/app/capital/getExchangeRate',
method: 'get',
params: query
})
}
// 查询图片上传路径
export function getImgPath(query) {
return request({
url: '/app/common/getImgPath',
method: 'get',
params: query
})
}
// 查询文件上传路径
export function getFilePath(query) {
return request({
url: '/app/common/getFilePath',
method: 'get',
params: query
})
}
// 我的已归档列表
export function queryHistoryMtLogin(query) {
return request({
url: '/app/customer/queryHistoryMtLogin',
method: 'get',
params: query
})
}
// 保存MT账户归档
export function savePlaceFile(data) {
return request({
url: '/app/customer/savePlaceFile',
method: 'post',
data: data
})
}
// 查询开户MT类型列表(模拟)
export function queryMtTypeListByDemo(query) {
return request({
url: '/app/customer/queryMtTypeListByDemo',
method: 'get',
params: query
})
}
// 查询MT组列表
export function getMtGroup(query) {
return request({
url: '/app/common/getMtGroup',
method: 'get',
params: query
})
}
// 查询是否完善个人资料接口 data=1已完善 data=0未完善
export function getIfImproveUser(query) {
return request({
url: '/app/personal/getIfImproveUser',
method: 'get',
params: query
})
}
// 判断是否需要收取手续费
export function getIfChargeCommission(query) {
return request({
url: '/app/common/getIfChargeCommission',
method: 'get',
params: query
})
}

30
src/api/contact.js Normal file
View File

@ -0,0 +1,30 @@
import request from '@/utils/request'
// 获取轮播图
export function queryBannerList(query) {
return request({
url: '/app/common/queryBannerList',
method: 'get',
params: query,
ignoreError: true
})
}
//查询联系电话+邮箱接口
export function queryPhoneAndEmail(query) {
return request({
url: '/app/contactUs/queryContactUs',
method: 'get',
params: query
})
}
//查询教育视频列表
export function queryVideoList(query) {
return request({
url: '/app/contactUs/queryVideoList',
method: 'get',
params: query
})
}

21
src/api/download.js Normal file
View File

@ -0,0 +1,21 @@
import request from '@/utils/request'
//查询软件下载列表
export function queryDownList() {
return request({
url: '/app/down/queryDownList',
method: 'get'
})
}
// 获取轮播图
export function queryBannerList(query) {
return request({
url: '/app/common/queryBannerList',
method: 'get',
params: query,
ignoreError: true
})
}

19
src/api/fundout.js Normal file
View File

@ -0,0 +1,19 @@
import request from '@/utils/request'
// 佣金出金记录
export const queryMyFundOutList = (query) => {
return request({
url: '/app/capital/queryMyFundOutList',
method: 'get',
params: query
})
}
// 取消MT出金接口
export const cancelFundGoldOut = (data) => {
return request({
url: '/app/ibHome/fundOut/cancel',
method: 'post',
data: data
})
}

10
src/api/fundtransfer.js Normal file
View File

@ -0,0 +1,10 @@
import request from '@/utils/request'
// 佣金转账记录
export const queryMyFundTransferList = (query) => {
return request({
url: '/app/capital/queryMyFundTransferList',
method: 'get',
params: query
})
}

55
src/api/goldin.js Normal file
View File

@ -0,0 +1,55 @@
import request from '@/utils/request'
// 入金记录
export const queryMyGoldInList = (query) => {
return request({
url: '/app/capital/queryMyGoldInList',
method: 'get',
params: query
})
}
// 入金通道列表
export function getPayChannel(query) {
return request({
url: '/app/capital/getPayChannel',
method: 'get',
params: query
})
}
// MT入金申请接口
export function goldInSave(data) {
return request({
url: '/app/capital/goldIn/save',
method: 'post',
data: data
})
}
// 入金申请页,根据通道 和币种筛选出适合的LD代理mt信息和 sys_pay_config_bank表ID
export function getIbMtLoginBankAsGoldInPage(query) {
return request({
url: '/app/capital/getIbMtLoginBankAsGoldInPage',
method: 'get',
params: query
})
}
// 查询接口getSubsidyById
export function getSubsidyById(query) {
return request({
url: '/app/capital/in/getSubsidyById',
method: 'get',
params: query
})
}
// 入金金额发生变化时,计算赠金金额
export function calculatePresentedCredit(query) {
return request({
url: '/app/capital/goldIn/calculatePresentedCredit',
method: 'get',
params: query
})
}

28
src/api/goldout.js Normal file
View File

@ -0,0 +1,28 @@
import request from '@/utils/request'
// 出金记录
export const queryMyGoldOutList = (query) => {
return request({
url: '/app/capital/queryMyGoldOutList',
method: 'get',
params: query
})
}
// 取消MT出金接口
export const cancelGoldOut = (data) => {
return request({
url: '/app/capital/goldOut/cancel',
method: 'post',
data: data
})
}
// MT出金申请接口
export const saveGoldOut = (data) => {
return request({
url: '/app/capital/goldOut/save',
method: 'post',
data: data
})
}

114
src/api/ib.js Normal file
View File

@ -0,0 +1,114 @@
import request from '@/utils/request'
// 查询IB佣金钱包余额
export const getIbFund = () => {
return request({
url: '/app/ibHome/getIbFund',
method: 'get'
})
}
// 查询IB佣金余额
export const getIbFundSum = () => {
return request({
url: '/app/ibHome/getIbFundSum',
method: 'get'
})
}
// 概览
export function getPhaseSummarizing(query) {
return request({
url: '/app/partners/getPhaseSummarizing',
method: 'get',
params: query
})
}
// 查询当前客户数量
export const statCustomerNum = () => {
return request({
url: '/app/partners/statCustomerNum',
method: 'get'
})
}
// 概览数据图表统计
export function statOverviewChart(query) {
return request({
url: '/app/partners/statOverviewChart',
method: 'get',
params: query
})
}
// 我的客户列表查询
export const queryMyCustomerList = (query) => {
return request({
url: '/app/partners/queryMyCustomerList',
method: 'get',
params: query
})
}
// 查询代理树形数据
export const getIbtree = (query) => {
return request({
url: '/app/partners/getIbtree',
method: 'get',
params: query
})
}
// 我的代理列表查询
export const queryMyAgentList = (query) => {
return request({
url: '/app/partners/queryMyAgentList',
method: 'get',
params: query
})
}
// 佣金设置-查询返佣规则
export const queryRebate = () => {
return request({
url: '/app/partners/queryRebate',
method: 'get'
})
}
// 佣金设置-查询层级设置信息
export const getAllJunior = (query) => {
return request({
url: '/app/partners/getAllJunior',
method: 'get',
params: query
})
}
// 佣金设置-保存层级设置
export const saveRebateSet = (data) => {
return request({
url: '/app/partners/saveRebateSet',
method: 'post',
data: data
})
}
// IB申请转账接口
export const saveTransfer = (data) => {
return request({
url: '/app/ibHome/transfer/save',
method: 'post',
data: data
})
}
// IB申请出金接口
export const saveGoldOut = (data) => {
return request({
url: '/app/ibHome/fundOut/save',
method: 'post',
data: data
})
}

122
src/api/login.js Normal file
View File

@ -0,0 +1,122 @@
import request from '@/utils/request'
// 登录方法
export function login(username, password, code, uuid, lang) {
const data = {
user_code: username,
password,
code,
uuid,
qcc_language: lang
}
return request({
url: '/app/login/appLogin',
headers: {
isToken: false,
repeatSubmit: false
},
method: 'post',
data: data
})
}
// 获取用户详细信息
export function getInfo() {
return request({
url: '/app/login/getUserInfo',
method: 'get'
})
}
// 退出方法
export function logout() {
return request({
url: '/app/login/logout',
method: 'post',
ignoreError: true
})
}
// 获取验证码
export function getCodeImg() {
return request({
url: '/captchaImage',
headers: {
isToken: false
},
method: 'get',
timeout: 20000
})
}
// 注册方法
export function signUp(username, password, first_name, last_name, country, lang, shareCode, phone, phone_prefix
, utm_source, utm_medium, utm_content, utm_campaign, utm_blocka) {
const data = {
email: username,
password,
first_name,
last_name,
country,
language: lang, shareCode,
phone, phone_prefix,
utm_source, utm_medium, utm_content, utm_campaign, utm_blocka
}
return request({
url: '/app/register/appRegister',
headers: {
isToken: false,
repeatSubmit: false
},
method: 'post',
data: data
})
}
// 根据IP获取国家
export function checkCountryByIP() {
return request({
url: 'https://ipapi.co/json/',
headers: {
isToken: false
},
method: 'get',
ignoreError: true
})
}
// 发送找回密码验证码
export function sendCodeForgot(data) {
return request({
url: '/app/register/sendCode',
headers: {
isToken: false
},
method: 'post',
data: data
})
}
// 校验验证码
export function checkCodeForgot(data) {
return request({
url: '/app/register/checkCode',
headers: {
isToken: false
},
method: 'post',
data: data
})
}
// 保存新密码
export function saveNewPwdForgot(data) {
return request({
url: '/app/register/saveNewPwd',
headers: {
isToken: false
},
method: 'post',
data: data
})
}

9
src/api/menu.js Normal file
View File

@ -0,0 +1,9 @@
import request from '@/utils/request'
// 获取用户信息
export const getMenu = () => {
return request({
url: '/app/login/getUserInfo',
method: 'get'
})
}

19
src/api/news.js Normal file
View File

@ -0,0 +1,19 @@
import request from "@/utils/request";
// 查询公司新闻列表
export const queryNewsList = (query) => {
return request({
url: "/app/news/queryNewsList",
method: "get",
params: query,
});
};
// 查询文章详情接口
export const queryNewsDetail = (query) => {
return request({
url: "/app/news/getDetail",
method: "get",
params: query,
});
};

19
src/api/notice.js Normal file
View File

@ -0,0 +1,19 @@
import request from '@/utils/request'
// 查询公告列表
export const getNoticeByUserId = (query) => {
return request({
url: '/app/notice/getNoticeByUserId',
method: 'get',
params: query
})
}
// 设置公告为已读
export const setNoticeReadStatus = (data) => {
return request({
url: '/app/notice/setNoticeReadStatus',
method: 'post',
data: data
})
}

100
src/api/personal.js Normal file
View File

@ -0,0 +1,100 @@
import request from "@/utils/request";
// 验证邮箱(发送验证码)
export const sendCodeP = (data) => {
return request({
url: "/app/personal/sendCode",
method: "post",
data: data,
});
};
// 邮箱验证接口
export const saveVerifyEmail = (data) => {
return request({
url: "/app/personal/saveVerifyEmail",
method: "post",
data: data,
});
};
// 查询个人基础资料接口
export const queryBaseInfo = (query) => {
return request({
url: "/app/personal/queryBaseInfo",
method: "get",
params: query,
});
};
// 保存个人基础资料接口
export const saveUserBaseInfo = (data) => {
return request({
url: "/app/personal/saveUserBaseInfo",
method: "post",
data: data,
});
};
// 查询身份认证信息
export const getAuthVoucher = (query) => {
return request({
url: "/app/personal/getAuthVoucher",
method: "get",
params: query,
});
};
// 保存认证信息接口
export const saveVoucher = (data) => {
return request({
url: "/app/personal/saveVoucher",
method: "post",
data: data,
});
};
// 查询居住认证信息
export const getAuthAddress = (query) => {
return request({
url: "/app/personal/getAuthAddress",
method: "get",
params: query,
});
};
// 查询财务资料列表
export const queryBankList = (query) => {
return request({
url: "/app/personal/queryBankList",
method: "get",
params: query,
});
};
// 修改密码接口
export const editPassword = (data) => {
return request({
url: "/app/login/editPassword",
method: "post",
data: data,
});
};
// 保存财务资料接口
export const personalBankSave = (data) => {
return request({
url: "/app/personal/personalBankSave",
method: "post",
data: data,
});
};
// 发送数字钱包确认邮件接口
export const sendBankMail = (data) => {
return request({
url: "/app/personal/sendBankMail",
method: "post",
data: data,
});
};

28
src/api/remittance.js Normal file
View File

@ -0,0 +1,28 @@
import request from "@/utils/request";
// 获取签名接口
export function remittanceSign(query) {
return request({
url: "/app/remittance/getSign",
method: "get",
params: query,
});
}
// 查询接口
export function remittanceQuery(query) {
return request({
url: "/app/remittance/query",
method: "get",
params: query,
});
}
// 保存接口
export function remittanceSave(data) {
return request({
url: "/app/remittance/save",
method: "post",
data: data,
});
}

135
src/api/report.js Normal file
View File

@ -0,0 +1,135 @@
import request from '@/utils/request'
// 统计报表中的统计数据(佣金,出金,入金,交易量)
export const statReportInfo = () => {
return request({
url: '/app/partners/statReportInfo',
method: 'get'
})
}
// 查询报表筛选条件(适用所有报表)
export const getFilterColumns = (query) => {
return request({
url: '/app/report/getFilterColumns',
method: 'get',
params: query
})
}
// 入金报表
export const getReport16 = (query) => {
return request({
url: '/app/report/getReport16',
method: 'get',
params: query
})
}
// 出金报表
export const getReport17 = (query) => {
return request({
url: '/app/report/getReport17',
method: 'get',
params: query
})
}
// 转账报表
export const getReport18 = (query) => {
return request({
url: '/app/report/getReport18',
method: 'get',
params: query
})
}
// 挂单报表
export const getReport14 = (query) => {
return request({
url: '/app/report/getReport14',
method: 'get',
params: query
})
}
// 交易报表
export const getReport20 = (query) => {
return request({
url: '/app/report/getReport20',
method: 'get',
params: query
})
}
// 账户综合报表
export const getReport21 = (query) => {
return request({
url: '/app/report/getReport21',
method: 'get',
params: query
})
}
// 持仓报表
export const getReport22 = (query) => {
return request({
url: '/app/report/getReport22',
method: 'get',
params: query
})
}
// 资金报表
export const getReport24 = (query) => {
return request({
url: '/app/report/getReport24',
method: 'get',
params: query
})
}
// 交易返佣报表
export const getReport26 = (query) => {
return request({
url: '/app/report/getReport26',
method: 'get',
params: query
})
}
// 待定钱包报表
export const getReport27 = (query) => {
return request({
url: '/app/report/getReport27',
method: 'get',
params: query
})
}
// 佣金钱包报表
export const getReport28 = (query) => {
return request({
url: '/app/report/getReport28',
method: 'get',
params: query
})
}
// MT账户统计报表
export const getReport40 = (query) => {
return request({
url: '/app/report/getReport40',
method: 'get',
params: query
})
}
// 业绩统计报表
export const getReport81 = (query) => {
return request({
url: '/app/report/getReport81',
method: 'get',
params: query
})
}

44
src/api/share.js Normal file
View File

@ -0,0 +1,44 @@
import request from "@/utils/request";
// 查询推广链接列表
export const queryShareRecord = () => {
return request({
url: "/app/share/queryShareRecord",
method: "get",
});
};
// 查询账户类型列表
export const queryShareMtTypeList = (query) => {
return request({
url: "/app/share/queryShareMtTypeList",
method: "get",
params: query
});
};
// 查询系统设置的推广链接
export const querySysShareList = () => {
return request({
url: "/app/share/querySysShareList",
method: "get",
});
};
// 保存推广链接接口
export const saveShareRecord = (data) => {
return request({
url: "/app/share/saveShareRecord",
method: "post",
data: data
});
};
// 删除推广链接接口
export const delShareRecord = (data) => {
return request({
url: "/app/share/delShareRecord",
method: "post",
data: data
});
};

101
src/api/shop.js Normal file
View File

@ -0,0 +1,101 @@
import request from "@/utils/request";
// 查询积分商城入口介绍信息
export const getShopBrief = (query) => {
return request({
url: "/app/integral/getShopBrief",
method: "get",
params: query,
});
};
// 查询当前用户积分+商城分类信息
export const initShop = (query) => {
return request({
url: "/app/integral/initShop",
method: "get",
params: query,
});
};
// 查询商品列表
export const queryShop = (query) => {
return request({
url: "/app/integral/shop/query",
method: "get",
params: query,
});
};
// 查询商品详情接口
export const queryShopInfo = (query) => {
return request({
url: "/app/integral/shop/info",
method: "get",
params: query,
});
};
// 我的兑换礼品列表
export const queryShopMyOrder = (query) => {
return request({
url: "/app/integral/shop/order/query",
method: "get",
params: query,
});
};
// 兑换商品接口
export const dh = (data) => {
return request({
url: "/app/integral/shop/dh",
method: "post",
data: data,
ignoreError: true
});
};
// 取消订单接口
export const doQX = (data) => {
return request({
url: "/app/integral/shop/order/doQX",
method: "post",
data: data,
});
};
// 我的积分记录
export const queryIntegralRecord = (query) => {
return request({
url: "/app/integral/queryIntegralRecord",
method: "get",
params: query,
});
};
// 查询收货地址列表
export const queryAddrList = (query) => {
return request({
url: "/app/integral/shop/addrList",
method: "get",
params: query,
});
};
// 新增收货地址
export const saveAddr = (data) => {
return request({
url: "/app/integral/shop/saveAddr",
method: "post",
data: data,
});
};
// 删除地址接口
export const delAddr = (data) => {
return request({
url: "/app/integral/shop/delAddr",
method: "post",
data: data,
});
};

49
src/api/structure.js Normal file
View File

@ -0,0 +1,49 @@
import request from '@/utils/request'
export function getStructureUserByFuzzy(query) {
return request({
url: '/app/common/getStructureUserByFuzzy',
method: 'get',
params: query
})
}
export function getStructureUserSuperior(query) {
return request({
url: '/app/common/getStructureUserSuperior',
method: 'get',
params: query
})
}
export function getSubToTreeByIbId(query) {
return request({
url: '/app/common/getSubToTreeByIbId',
method: 'get',
params: query
})
}
export function getSubToTreeBySalesman(query) {
return request({
url: '/app/common/getSubToTreeBySalesman',
method: 'get',
params: query
})
}
export function getSalesmanToTree(query) {
return request({
url: '/app/common/getSalesmanToTree',
method: 'get',
params: query
})
}
export function getOrgToTree(query) {
return request({
url: '/app/common/getOrgToTree',
method: 'get',
params: query
})
}

60
src/api/system/config.js Normal file
View File

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询参数列表
export function listConfig(query) {
return request({
url: '/system/config/list',
method: 'get',
params: query
})
}
// 查询参数详细
export function getConfig(configId) {
return request({
url: '/system/config/' + configId,
method: 'get'
})
}
// 根据参数键名查询参数值
export function getConfigKey(configKey) {
return request({
url: '/system/config/configKey/' + configKey,
method: 'get'
})
}
// 新增参数配置
export function addConfig(data) {
return request({
url: '/system/config',
method: 'post',
data: data
})
}
// 修改参数配置
export function updateConfig(data) {
return request({
url: '/system/config',
method: 'put',
data: data
})
}
// 删除参数配置
export function delConfig(configId) {
return request({
url: '/system/config/' + configId,
method: 'delete'
})
}
// 刷新参数缓存
export function refreshCache() {
return request({
url: '/system/config/refreshCache',
method: 'delete'
})
}

52
src/api/system/dept.js Normal file
View File

@ -0,0 +1,52 @@
import request from '@/utils/request'
// 查询部门列表
export function listDept(query) {
return request({
url: '/system/dept/list',
method: 'get',
params: query
})
}
// 查询部门列表(排除节点)
export function listDeptExcludeChild(deptId) {
return request({
url: '/system/dept/list/exclude/' + deptId,
method: 'get'
})
}
// 查询部门详细
export function getDept(deptId) {
return request({
url: '/system/dept/' + deptId,
method: 'get'
})
}
// 新增部门
export function addDept(data) {
return request({
url: '/system/dept',
method: 'post',
data: data
})
}
// 修改部门
export function updateDept(data) {
return request({
url: '/system/dept',
method: 'put',
data: data
})
}
// 删除部门
export function delDept(deptId) {
return request({
url: '/system/dept/' + deptId,
method: 'delete'
})
}

View File

@ -0,0 +1,52 @@
import request from '@/utils/request'
// 查询字典数据列表
export function listData(query) {
return request({
url: '/system/dict/data/list',
method: 'get',
params: query
})
}
// 查询字典数据详细
export function getData(dictCode) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'get'
})
}
// 根据字典类型查询字典数据信息
export function getDicts(dictType) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
}
// 新增字典数据
export function addData(data) {
return request({
url: '/system/dict/data',
method: 'post',
data: data
})
}
// 修改字典数据
export function updateData(data) {
return request({
url: '/system/dict/data',
method: 'put',
data: data
})
}
// 删除字典数据
export function delData(dictCode) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete'
})
}

View File

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询字典类型列表
export function listType(query) {
return request({
url: '/system/dict/type/list',
method: 'get',
params: query
})
}
// 查询字典类型详细
export function getType(dictId) {
return request({
url: '/system/dict/type/' + dictId,
method: 'get'
})
}
// 新增字典类型
export function addType(data) {
return request({
url: '/system/dict/type',
method: 'post',
data: data
})
}
// 修改字典类型
export function updateType(data) {
return request({
url: '/system/dict/type',
method: 'put',
data: data
})
}
// 删除字典类型
export function delType(dictId) {
return request({
url: '/system/dict/type/' + dictId,
method: 'delete'
})
}
// 刷新字典缓存
export function refreshCache() {
return request({
url: '/system/dict/type/refreshCache',
method: 'delete'
})
}
// 获取字典选择框列表
export function optionselect() {
return request({
url: '/system/dict/type/optionselect',
method: 'get'
})
}

60
src/api/system/menu.js Normal file
View File

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询菜单列表
export function listMenu(query) {
return request({
url: '/system/menu/list',
method: 'get',
params: query
})
}
// 查询菜单详细
export function getMenu(menuId) {
return request({
url: '/system/menu/' + menuId,
method: 'get'
})
}
// 查询菜单下拉树结构
export function treeselect() {
return request({
url: '/system/menu/treeselect',
method: 'get'
})
}
// 根据角色ID查询菜单下拉树结构
export function roleMenuTreeselect(roleId) {
return request({
url: '/system/menu/roleMenuTreeselect/' + roleId,
method: 'get'
})
}
// 新增菜单
export function addMenu(data) {
return request({
url: '/system/menu',
method: 'post',
data: data
})
}
// 修改菜单
export function updateMenu(data) {
return request({
url: '/system/menu',
method: 'put',
data: data
})
}
// 删除菜单
export function delMenu(menuId) {
return request({
url: '/system/menu/' + menuId,
method: 'delete'
})
}

44
src/api/system/notice.js Normal file
View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询公告列表
export function listNotice(query) {
return request({
url: '/system/notice/list',
method: 'get',
params: query
})
}
// 查询公告详细
export function getNotice(noticeId) {
return request({
url: '/system/notice/' + noticeId,
method: 'get'
})
}
// 新增公告
export function addNotice(data) {
return request({
url: '/system/notice',
method: 'post',
data: data
})
}
// 修改公告
export function updateNotice(data) {
return request({
url: '/system/notice',
method: 'put',
data: data
})
}
// 删除公告
export function delNotice(noticeId) {
return request({
url: '/system/notice/' + noticeId,
method: 'delete'
})
}

44
src/api/system/post.js Normal file
View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询岗位列表
export function listPost(query) {
return request({
url: '/system/post/list',
method: 'get',
params: query
})
}
// 查询岗位详细
export function getPost(postId) {
return request({
url: '/system/post/' + postId,
method: 'get'
})
}
// 新增岗位
export function addPost(data) {
return request({
url: '/system/post',
method: 'post',
data: data
})
}
// 修改岗位
export function updatePost(data) {
return request({
url: '/system/post',
method: 'put',
data: data
})
}
// 删除岗位
export function delPost(postId) {
return request({
url: '/system/post/' + postId,
method: 'delete'
})
}

119
src/api/system/role.js Normal file
View File

@ -0,0 +1,119 @@
import request from '@/utils/request'
// 查询角色列表
export function listRole(query) {
return request({
url: '/system/role/list',
method: 'get',
params: query
})
}
// 查询角色详细
export function getRole(roleId) {
return request({
url: '/system/role/' + roleId,
method: 'get'
})
}
// 新增角色
export function addRole(data) {
return request({
url: '/system/role',
method: 'post',
data: data
})
}
// 修改角色
export function updateRole(data) {
return request({
url: '/system/role',
method: 'put',
data: data
})
}
// 角色数据权限
export function dataScope(data) {
return request({
url: '/system/role/dataScope',
method: 'put',
data: data
})
}
// 角色状态修改
export function changeRoleStatus(roleId, status) {
const data = {
roleId,
status
}
return request({
url: '/system/role/changeStatus',
method: 'put',
data: data
})
}
// 删除角色
export function delRole(roleId) {
return request({
url: '/system/role/' + roleId,
method: 'delete'
})
}
// 查询角色已授权用户列表
export function allocatedUserList(query) {
return request({
url: '/system/role/authUser/allocatedList',
method: 'get',
params: query
})
}
// 查询角色未授权用户列表
export function unallocatedUserList(query) {
return request({
url: '/system/role/authUser/unallocatedList',
method: 'get',
params: query
})
}
// 取消用户授权角色
export function authUserCancel(data) {
return request({
url: '/system/role/authUser/cancel',
method: 'put',
data: data
})
}
// 批量取消用户授权角色
export function authUserCancelAll(data) {
return request({
url: '/system/role/authUser/cancelAll',
method: 'put',
params: data
})
}
// 授权用户选择
export function authUserSelectAll(data) {
return request({
url: '/system/role/authUser/selectAll',
method: 'put',
params: data
})
}
// 根据角色ID查询部门树结构
export function deptTreeSelect(roleId) {
return request({
url: '/system/role/deptTree/' + roleId,
method: 'get'
})
}

135
src/api/system/user.js Normal file
View File

@ -0,0 +1,135 @@
import request from '@/utils/request'
import { parseStrEmpty } from "@/utils/htfx";
// 查询用户列表
export function listUser(query) {
return request({
url: '/system/user/list',
method: 'get',
params: query
})
}
// 查询用户详细
export function getUser(userId) {
return request({
url: '/system/user/' + parseStrEmpty(userId),
method: 'get'
})
}
// 新增用户
export function addUser(data) {
return request({
url: '/system/user',
method: 'post',
data: data
})
}
// 修改用户
export function updateUser(data) {
return request({
url: '/system/user',
method: 'put',
data: data
})
}
// 删除用户
export function delUser(userId) {
return request({
url: '/system/user/' + userId,
method: 'delete'
})
}
// 用户密码重置
export function resetUserPwd(userId, password) {
const data = {
userId,
password
}
return request({
url: '/system/user/resetPwd',
method: 'put',
data: data
})
}
// 用户状态修改
export function changeUserStatus(userId, status) {
const data = {
userId,
status
}
return request({
url: '/system/user/changeStatus',
method: 'put',
data: data
})
}
// 查询用户个人信息
export function getUserProfile() {
return request({
url: '/system/user/profile',
method: 'get'
})
}
// 修改用户个人信息
export function updateUserProfile(data) {
return request({
url: '/system/user/profile',
method: 'put',
data: data
})
}
// 用户密码重置
export function updateUserPwd(oldPassword, newPassword) {
const data = {
oldPassword,
newPassword
}
return request({
url: '/system/user/profile/updatePwd',
method: 'put',
params: data
})
}
// 用户头像上传
export function uploadAvatar(data) {
return request({
url: '/system/user/profile/avatar',
method: 'post',
data: data
})
}
// 查询授权角色
export function getAuthRole(userId) {
return request({
url: '/system/user/authRole/' + userId,
method: 'get'
})
}
// 保存授权角色
export function updateAuthRole(data) {
return request({
url: '/system/user/authRole',
method: 'put',
params: data
})
}
// 查询部门下拉树结构
export function deptTreeSelect() {
return request({
url: '/system/user/deptTree',
method: 'get'
})
}

10
src/api/tools.js Normal file
View File

@ -0,0 +1,10 @@
import request from "@/utils/request";
// 查询工具报告列表
export const queryToolReportList = (query) => {
return request({
url: "/app/news/queryToolReportList",
method: "get",
params: query,
});
};

19
src/api/transfer.js Normal file
View File

@ -0,0 +1,19 @@
import request from '@/utils/request'
// 转账记录
export const queryMyTransferList = (query) => {
return request({
url: '/app/capital/queryMyTransferList',
method: 'get',
params: query
})
}
// MT转账申请接口
export const saveTransfer = (data) => {
return request({
url: '/app/capital/transfer/save',
method: 'post',
data: data
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M121.718 73.272v9.953c3.957-7.584 6.199-16.05 6.199-24.995C127.917 26.079 99.273 0 63.958 0 28.644 0 0 26.079 0 58.23c0 .403.028.806.028 1.21l22.97-25.953h13.34l-19.76 27.187h6.42V53.77l13.728-19.477v49.361H22.998V73.272H2.158c5.951 20.284 23.608 36.208 45.998 41.399-1.44 3.3-5.618 11.263-12.565 12.674-8.607 1.764 23.358.428 46.163-13.178 17.519-4.611 31.938-15.849 39.77-30.513h-13.506V73.272H85.02V59.464l22.998-25.977h13.008l-19.429 27.187h6.421v-7.433l13.727-19.402v39.433h-.027zm-78.24 2.822a10.516 10.516 0 0 1-.996-4.535V44.548c0-1.613.332-3.124.996-4.535a11.66 11.66 0 0 1 2.713-3.68c1.134-1.032 2.49-1.864 4.04-2.468 1.55-.605 3.21-.908 4.982-.908h11.292c1.77 0 3.431.303 4.981.908 1.522.604 2.85 1.41 3.986 2.418l-12.26 16.303v-2.898a1.96 1.96 0 0 0-.665-1.512c-.443-.403-.996-.604-1.66-.604-.665 0-1.218.201-1.661.604a1.96 1.96 0 0 0-.664 1.512v9.071L44.364 77.606a10.556 10.556 0 0 1-.886-1.512zm35.73-4.535c0 1.613-.332 3.124-.997 4.535a11.66 11.66 0 0 1-2.712 3.68c-1.134 1.032-2.49 1.864-4.04 2.469-1.55.604-3.21.907-4.982.907H55.185c-1.77 0-3.431-.303-4.981-.907-1.55-.605-2.906-1.437-4.041-2.47a12.49 12.49 0 0 1-1.384-1.512l13.727-18.217v6.375c0 .605.222 1.109.665 1.512.442.403.996.604 1.66.604.664 0 1.218-.201 1.66-.604a1.96 1.96 0 0 0 .665-1.512V53.87L75.97 36.838c.913.932 1.66 1.99 2.214 3.175.664 1.41.996 2.922.996 4.535v27.011h.028z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,60 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="113" height="104.8818359375" viewBox="0 0 113 104.8818359375" fill="none">
<g filter="url(#filter_435_1435)">
<path d="M85.5499 75.5555C98.4657 75.5555 109 71.119 109 65.6797C109 60.2399 98.4657 55.8035 85.5499 55.8035C72.6347 55.8035 62.1006 60.2399 62.1006 65.6797C62.1006 71.119 72.6347 75.5555 85.5499 75.5555Z" fill="#FFFFFF" fill-opacity="0.23">
</path>
</g>
<g filter="url(#filter_435_1436)">
<path d="M109 80.9056C104.927 84.7956 95.9596 87.4974 85.5499 87.4974C75.1409 87.4974 66.1722 84.7956 62.1006 80.9056L62.1006 73.1785C66.1723 77.0684 75.14 79.7702 85.5499 79.7702C95.9596 79.7702 104.927 77.0684 109 73.1785L109 80.9056Z" fill="#FFFFFF" fill-opacity="0.23">
</path>
</g>
<g filter="url(#filter_435_1437)">
<path d="M109 92.9779C104.479 96.4951 95.6735 98.8818 85.5499 98.8818C75.427 98.8818 66.6202 96.4951 62.1006 92.9779L62.1006 85.9343C66.6193 89.4523 75.4253 91.8407 85.5499 91.8407C95.6753 91.8407 104.481 89.4523 109 85.9343L109 92.9779Z" fill="#FFFFFF" fill-opacity="0.23">
</path>
</g>
<g filter="url(#filter_435_1439)">
<path d="M21.3732 28.1628C21.3732 42.6202 33.013 54.3372 47.3753 54.3372C61.7377 54.3372 73.3775 42.6086 73.3775 28.1628C73.3775 13.7169 61.7377 1.99996 47.3753 1.99996C33.013 1.99996 21.3732 13.7053 21.3732 28.1628ZM60.0005 92.4829L60.0005 64.4093C60.6102 61.6318 62.5521 59.6191 65.1064 58.1482C63.9885 57.6437 62.8456 57.1854 61.68 56.7758L48.2175 70.3275C47.756 70.792 47.0062 70.792 46.5448 70.3275L33.0822 56.7758C16.7127 62.524 4.83059 77.864 4.04614 96.0955C4.01154 96.2116 4 96.3277 4 96.4555C4 97.3032 4.68062 97.9999 5.53429 97.9999L67.3442 97.9999C64.6728 97.0091 62.6045 95.9905 61.2468 95.3219C60.0005 94.3755 60.0005 93.0507 60.0005 92.4829Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.23">
</path>
</g>
<defs>
<filter id="filter_435_1435" x="58.1005859375" y="53.803466796875" width="54.8994140625" height="27.751953125" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_435_1435"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_435_1435"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_435_1435" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_435_1435" result="dropShadow_1_435_1435"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_435_1435" result="shape_435_1435"/>
</filter>
<filter id="filter_435_1436" x="58.1005859375" y="71.178466796875" width="54.8994140625" height="22.31884765625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_435_1436"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_435_1436"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_435_1436" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_435_1436" result="dropShadow_1_435_1436"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_435_1436" result="shape_435_1436"/>
</filter>
<filter id="filter_435_1437" x="58.1005859375" y="83.934326171875" width="54.8994140625" height="20.947509765625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_435_1437"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_435_1437"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_435_1437" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_435_1437" result="dropShadow_1_435_1437"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_435_1437" result="shape_435_1437"/>
</filter>
<filter id="filter_435_1439" x="0" y="0" width="77.37744140625" height="104" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_435_1439"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_435_1439"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_435_1439" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_435_1439" result="dropShadow_1_435_1439"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_435_1439" result="shape_435_1439"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,76 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="109" height="100.88134765625" viewBox="0 0 109 100.88134765625" fill="none">
<g filter="url(#filter_4_315)">
<path d="M83.5499 73.5553C96.4657 73.5553 107 69.1188 107 63.6795C107 58.2397 96.4657 53.8032 83.5499 53.8032C70.6347 53.8032 60.1006 58.2397 60.1006 63.6795C60.1006 69.1188 70.6347 73.5553 83.5499 73.5553Z" fill="url(#linear_fill_4_315)" >
</path>
</g>
<g filter="url(#filter_4_316)">
<path d="M107 78.9054C102.927 82.7953 93.9596 85.4972 83.5499 85.4972C73.1409 85.4972 64.1722 82.7953 60.1006 78.9054L60.1006 71.1782C64.1723 75.0682 73.14 77.77 83.5499 77.77C93.9596 77.77 102.927 75.0682 107 71.1782L107 78.9054Z" fill="url(#linear_fill_4_316)" >
</path>
</g>
<g filter="url(#filter_4_317)">
<path d="M107 90.9776C102.479 94.4949 93.6735 96.8815 83.5499 96.8815C73.427 96.8815 64.6202 94.4949 60.1006 90.9776L60.1006 83.9341C64.6193 87.452 73.4253 89.8404 83.5499 89.8404C93.6753 89.8404 102.481 87.452 107 83.9341L107 90.9776Z" fill="url(#linear_fill_4_317)" >
</path>
</g>
<g filter="url(#filter_4_319)">
<path d="M19.3732 26.1626C19.3732 40.6201 31.013 52.337 45.3753 52.337C59.7377 52.337 71.3775 40.6085 71.3775 26.1626C71.3775 11.7167 59.7377 -0.0002 45.3753 -0.0002C31.013 -0.0002 19.3732 11.7051 19.3732 26.1626ZM58.0005 90.4828L58.0005 62.4091C58.6102 59.6316 60.5521 57.619 63.1064 56.1481C61.9885 55.6435 60.8456 55.1852 59.68 54.7756L46.2175 68.3274C45.756 68.7918 45.0062 68.7918 44.5448 68.3274L31.0822 54.7756C14.7127 60.5238 2.83059 75.8638 2.04614 94.0953C2.01154 94.2115 2 94.3276 2 94.4553C2 95.303 2.68062 95.9998 3.53429 95.9998L65.3442 95.9998C62.6728 95.009 60.6045 93.9904 59.2468 93.3217C58.0005 92.3754 58.0005 91.0506 58.0005 90.4828Z" fill-rule="evenodd" fill="url(#linear_fill_4_319)" >
</path>
</g>
<defs>
<linearGradient id="linear_fill_4_315" x1="60.1005859375" y1="63.67919921875" x2="107" y2="63.67919921875" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#27C1E5" />
<stop offset="1" stop-color="#B5E3F0" />
</linearGradient>
<filter id="filter_4_315" x="58.1005859375" y="53.80322265625" width="50.8994140625" height="23.751953125" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_4_315"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_4_315"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="1"/>
<feComposite in2="hardAlpha_4_315" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_4_315" result="dropShadow_1_4_315"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_4_315" result="shape_4_315"/>
</filter>
<linearGradient id="linear_fill_4_316" x1="60.1005859375" y1="78.337890625" x2="107" y2="78.337890625" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#27C1E5" />
<stop offset="1" stop-color="#B5E3F0" />
</linearGradient>
<filter id="filter_4_316" x="58.1005859375" y="71.17822265625" width="50.8994140625" height="18.31884765625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_4_316"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_4_316"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="1"/>
<feComposite in2="hardAlpha_4_316" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_4_316" result="dropShadow_1_4_316"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_4_316" result="shape_4_316"/>
</filter>
<linearGradient id="linear_fill_4_317" x1="60.1005859375" y1="90.40771484375" x2="107" y2="90.40771484375" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#27C1E5" />
<stop offset="1" stop-color="#B5E3F0" />
</linearGradient>
<filter id="filter_4_317" x="58.1005859375" y="83.93408203125" width="50.8994140625" height="16.947265625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_4_317"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_4_317"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="1"/>
<feComposite in2="hardAlpha_4_317" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_4_317" result="dropShadow_1_4_317"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_4_317" result="shape_4_317"/>
</filter>
<linearGradient id="linear_fill_4_319" x1="2" y1="48" x2="71.37744140625" y2="48" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#27C1E5" />
<stop offset="1" stop-color="#B5E3F0" />
</linearGradient>
<filter id="filter_4_319" x="0" y="0" width="73.37744140625" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_4_319"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_4_319"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="1"/>
<feComposite in2="hardAlpha_4_319" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_4_319" result="dropShadow_1_4_319"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_4_319" result="shape_4_319"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,76 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="112.9990234375" height="104.8818359375" viewBox="0 0 112.9990234375 104.8818359375" fill="none">
<g filter="url(#filter_511_807)">
<path d="M85.5489 75.5556C98.4648 75.5556 108.999 71.1191 108.999 65.6798C108.999 60.24 98.4648 55.8036 85.5489 55.8036C72.6337 55.8036 62.0996 60.24 62.0996 65.6798C62.0996 71.1191 72.6337 75.5556 85.5489 75.5556Z" fill="url(#linear_fill_511_807)" >
</path>
</g>
<g filter="url(#filter_511_808)">
<path d="M108.999 80.9057C104.926 84.7957 95.9586 87.4975 85.5489 87.4975C75.1399 87.4975 66.1712 84.7957 62.0996 80.9057L62.0996 73.1786C66.1713 77.0686 75.1391 79.7703 85.5489 79.7703C95.9586 79.7703 104.926 77.0686 108.999 73.1786L108.999 80.9057Z" fill="url(#linear_fill_511_808)" >
</path>
</g>
<g filter="url(#filter_511_809)">
<path d="M108.999 92.978C104.478 96.4952 95.6725 98.8819 85.5489 98.8819C75.426 98.8819 66.6192 96.4952 62.0996 92.978L62.0996 85.9344C66.6184 89.4524 75.4243 91.8408 85.5489 91.8408C95.6744 91.8408 104.48 89.4524 108.999 85.9344L108.999 92.978Z" fill="url(#linear_fill_511_809)" >
</path>
</g>
<g filter="url(#filter_511_811)">
<path d="M21.37 28.16C21.37 42.6175 33.0177 54.34 47.38 54.34C61.7423 54.34 73.38 42.6058 73.38 28.16C73.38 13.7141 61.7423 1.99998 47.38 1.99998C33.0177 1.99998 21.37 13.7025 21.37 28.16ZM60 92.483L60 64.4093C60.6094 61.6331 62.5497 59.6212 65.1021 58.1505C63.9856 57.6467 62.8441 57.189 61.68 56.78L48.22 70.33C47.7586 70.7945 47.0014 70.7945 46.54 70.33L33.08 56.78C16.7104 62.5281 4.83445 77.8684 4.05 96.1C4.01539 96.2161 4 96.3322 4 96.46C4 97.3077 4.67634 98 5.53 98L67.3437 98C64.6723 97.0092 62.604 95.9905 61.2463 95.3219C60 94.3756 60 93.0507 60 92.483Z" fill-rule="evenodd" fill="url(#linear_fill_511_811)" >
</path>
</g>
<defs>
<linearGradient id="linear_fill_511_807" x1="62.099609375" y1="65.6795654296875" x2="108.9990234375" y2="65.6795654296875" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#113876" />
<stop offset="1" stop-color="#6071AB" />
</linearGradient>
<filter id="filter_511_807" x="58.099609375" y="53.8035888671875" width="54.8994140625" height="27.7520751953125" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_511_807"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_511_807"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_511_807" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_511_807" result="dropShadow_1_511_807"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_511_807" result="shape_511_807"/>
</filter>
<linearGradient id="linear_fill_511_808" x1="62.099609375" y1="80.3380126953125" x2="108.9990234375" y2="80.3380126953125" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#113876" />
<stop offset="1" stop-color="#6071AB" />
</linearGradient>
<filter id="filter_511_808" x="58.099609375" y="71.1785888671875" width="54.8994140625" height="22.3189697265625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_511_808"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_511_808"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_511_808" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_511_808" result="dropShadow_1_511_808"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_511_808" result="shape_511_808"/>
</filter>
<linearGradient id="linear_fill_511_809" x1="62.099609375" y1="92.408203125" x2="108.9990234375" y2="92.408203125" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#113876" />
<stop offset="1" stop-color="#6071AB" />
</linearGradient>
<filter id="filter_511_809" x="58.099609375" y="83.9344482421875" width="54.8994140625" height="20.9473876953125" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_511_809"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_511_809"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_511_809" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_511_809" result="dropShadow_1_511_809"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_511_809" result="shape_511_809"/>
</filter>
<linearGradient id="linear_fill_511_811" x1="4" y1="49.9998779296875" x2="73.37744140625" y2="49.9998779296875" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#113876" />
<stop offset="1" stop-color="#6071AB" />
</linearGradient>
<filter id="filter_511_811" x="0" y="0" width="77.3798828125" height="104" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_511_811"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_511_811"/>
<feOffset dx="0" dy="2"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha_511_811" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="feFloodId_511_811" result="dropShadow_1_511_811"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_511_811" result="shape_511_811"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

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: 9.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="42.957763671875" height="43" viewBox="0 0 42.957763671875 43" fill="none">
<path d="M42.743 29.1863L29.0632 24.5815C29.0632 24.5815 30.1145 23.0063 31.2367 19.9179C32.359 16.8293 32.5198 15.1333 32.5198 15.1333L23.6644 15.0602L23.6644 12.0326L34.3887 11.957L34.3887 9.8166L23.6623 9.8166L23.6623 4.94463L18.4099 4.94463L18.4099 9.81682L8.40381 9.81682L8.40381 11.9572L18.4099 11.886L18.4099 15.1333L10.3838 15.1333L10.3838 16.829L26.9038 16.829C26.9038 16.829 26.7219 18.2053 26.0886 19.9177C25.4555 21.6299 24.8033 23.1294 24.8033 23.1294C24.8033 23.1294 17.0465 20.4119 12.9591 20.4119C8.87167 20.4119 3.90053 22.0555 3.41856 26.8258C2.93887 31.5938 5.73419 34.1764 9.67236 35.1271C13.611 36.0827 17.2472 35.1176 20.413 33.5662C23.5793 32.0171 26.686 28.4954 26.686 28.4954L42.6294 36.2457C41.979 40.0269 38.701 42.7886 34.8679 42.7848L8.08967 42.7848C3.74447 42.7891 0.218881 39.2664 0.214847 34.9171L0.214847 8.09763C0.210813 3.74784 3.73035 0.218721 8.07544 0.214847L34.8681 0.214847C39.2133 0.210864 42.7391 3.73365 42.7429 8.08307L42.7429 29.1863L42.743 29.1863ZM22.8054 26.5184C22.8054 26.5184 17.8286 32.8075 11.9646 32.8075C6.09804 32.8075 4.86639 29.8192 4.86639 27.6701C4.86639 25.5235 6.08594 23.188 11.0774 22.8503C16.0661 22.5131 22.8079 26.5184 22.8079 26.5184L22.8054 26.5184L22.8054 26.5184Z" fill="#02A9F1" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="33" height="33" viewBox="0 0 33 33" fill="none">
<path d="M28.7238 8.99257C28.655 7.78256 27.775 6.77883 26.5925 6.54506C25.0525 6.31132 23.5263 5.95382 22.0275 5.5138C20.5838 4.9363 19.2363 4.16631 18.0125 3.21756C17.0225 2.55756 15.7025 2.61256 14.7675 3.3688C13.6125 4.37256 12.2513 5.12882 10.78 5.55505C9.37753 6.13256 7.90626 6.50381 6.39377 6.64132C5.18376 6.79256 4.26253 7.79632 4.20752 9.02006L4.20752 16.7063C4.31751 23.4301 12.1963 30.2638 16.555 30.2638C20.8313 30.2638 27.5963 25.5063 28.6275 16.8438C28.8063 14.2176 28.8338 11.6051 28.7238 8.99257ZM26.455 16.6238C25.52 24.2276 19.6213 28.0501 16.5688 28.0501C15.2625 28.0501 12.705 26.8126 10.3538 24.4475C7.89253 21.9726 6.46251 19.1401 6.40753 16.6788L6.40753 9.07507C6.42126 8.93756 6.53128 8.82757 6.65503 8.81381C8.31876 8.64881 9.95503 8.25007 11.5088 7.61756C13.2138 7.09507 14.8225 6.21506 16.1563 5.04632C16.2663 4.96382 16.39 4.9363 16.4725 4.9363C16.5413 4.9363 16.6375 4.95006 16.7338 5.00507C18.095 6.05006 19.5938 6.90258 21.1888 7.53506L21.285 7.57631L21.3813 7.60383C22.9488 8.07131 24.5575 8.44256 26.18 8.70382C26.3725 8.74507 26.4963 8.91007 26.5238 9.10256C26.6337 11.6051 26.6063 14.1351 26.455 16.6238Z" fill="#FFFFFF" >
</path>
<path d="M15.9087 20.5562C15.4825 20.9824 14.7812 20.9824 14.355 20.5562L10.4637 16.6649C10.0375 16.2387 10.0375 15.5374 10.4637 15.1112C10.89 14.6849 11.5912 14.6849 12.0175 15.1112L15.9087 19.0024C16.335 19.4287 16.335 20.1299 15.9087 20.5562Z" fill="#FFFFFF" >
</path>
<path d="M22.55 13.9288L15.895 20.5838C15.4825 20.9963 14.8088 20.9963 14.3825 20.5838C13.97 20.1713 13.97 19.4975 14.3825 19.0713L21.0375 12.4163C21.45 12.0038 22.1238 12.0038 22.55 12.4163C22.9625 12.8288 22.9625 13.5026 22.55 13.9288Z" fill="#FFFFFF" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="13.83984375" height="24.640380859375" viewBox="0 0 13.83984375 24.640380859375" >
<path d="M12.3203 24.1405C12.5812 24.1405 12.8423 24.0408 13.0414 23.8417C13.4396 23.4436 13.4396 22.7979 13.0414 22.3999L2.96155 12.3201L13.0414 2.24051C13.4396 1.84258 13.4396 1.1966 13.0414 0.798666C12.6432 0.400445 11.9978 0.400445 11.5996 0.798666L0.798617 11.5993C0.786821 11.6111 0.77532 11.6232 0.764117 11.6355C0.752914 11.6479 0.742023 11.6606 0.731445 11.6735C0.720851 11.6864 0.710586 11.6995 0.700648 11.7129C0.690711 11.7263 0.681101 11.74 0.67182 11.7538C0.662554 11.7677 0.653633 11.7818 0.645055 11.7961C0.636477 11.8104 0.628257 11.825 0.620398 11.8397C0.612523 11.8544 0.605023 11.8693 0.597898 11.8844C0.590758 11.8995 0.584 11.9147 0.577625 11.9301C0.571234 11.9456 0.565226 11.9611 0.559602 11.9768C0.553976 11.9925 0.548742 12.0084 0.543898 12.0244C0.539054 12.0403 0.534609 12.0564 0.530563 12.0726C0.5265 12.0888 0.522843 12.1051 0.519594 12.1214C0.516344 12.1378 0.513492 12.1542 0.511039 12.1707C0.508586 12.1872 0.506547 12.2038 0.504922 12.2204C0.503281 12.237 0.502055 12.2537 0.501242 12.2703C0.500414 12.287 0.5 12.3037 0.5 12.3204C0.5 12.3371 0.500414 12.3537 0.501242 12.3704C0.502055 12.3871 0.503281 12.4037 0.504922 12.4203C0.506547 12.4369 0.508586 12.4535 0.511039 12.47C0.513492 12.4865 0.516344 12.5029 0.519594 12.5193C0.522843 12.5357 0.5265 12.552 0.530563 12.5681C0.534609 12.5843 0.539054 12.6004 0.543898 12.6164C0.548742 12.6323 0.553976 12.6482 0.559602 12.6639C0.565226 12.6796 0.571234 12.6952 0.577625 12.7106C0.584 12.726 0.590758 12.7413 0.597898 12.7564C0.605023 12.7714 0.612523 12.7864 0.620398 12.8011C0.628257 12.8158 0.636477 12.8303 0.645055 12.8446C0.653633 12.8589 0.662554 12.873 0.67182 12.8869C0.681101 12.9008 0.690711 12.9144 0.700648 12.9278C0.710586 12.9412 0.720851 12.9544 0.731445 12.9673C0.742023 12.9802 0.752914 12.9928 0.764117 13.0052C0.77532 13.0175 0.786821 13.0296 0.798617 13.0414L11.5996 23.8417C11.7984 24.0408 12.0595 24.1405 12.3203 24.1405Z" stroke="#000" stroke-width="1" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="13.83984375" height="24.640380859375" viewBox="0 0 13.83984375 24.640380859375" >
<path d="M12.3203 24.1405C12.5812 24.1405 12.8423 24.0408 13.0414 23.8417C13.4396 23.4436 13.4396 22.7979 13.0414 22.3999L2.96155 12.3201L13.0414 2.24051C13.4396 1.84258 13.4396 1.1966 13.0414 0.798666C12.6432 0.400445 11.9978 0.400445 11.5996 0.798666L0.798617 11.5993C0.786821 11.6111 0.77532 11.6232 0.764117 11.6355C0.752914 11.6479 0.742023 11.6606 0.731445 11.6735C0.720851 11.6864 0.710586 11.6995 0.700648 11.7129C0.690711 11.7263 0.681101 11.74 0.67182 11.7538C0.662554 11.7677 0.653633 11.7818 0.645055 11.7961C0.636477 11.8104 0.628257 11.825 0.620398 11.8397C0.612523 11.8544 0.605023 11.8693 0.597898 11.8844C0.590758 11.8995 0.584 11.9147 0.577625 11.9301C0.571234 11.9456 0.565226 11.9611 0.559602 11.9768C0.553976 11.9925 0.548742 12.0084 0.543898 12.0244C0.539054 12.0403 0.534609 12.0564 0.530563 12.0726C0.5265 12.0888 0.522843 12.1051 0.519594 12.1214C0.516344 12.1378 0.513492 12.1542 0.511039 12.1707C0.508586 12.1872 0.506547 12.2038 0.504922 12.2204C0.503281 12.237 0.502055 12.2537 0.501242 12.2703C0.500414 12.287 0.5 12.3037 0.5 12.3204C0.5 12.3371 0.500414 12.3537 0.501242 12.3704C0.502055 12.3871 0.503281 12.4037 0.504922 12.4203C0.506547 12.4369 0.508586 12.4535 0.511039 12.47C0.513492 12.4865 0.516344 12.5029 0.519594 12.5193C0.522843 12.5357 0.5265 12.552 0.530563 12.5681C0.534609 12.5843 0.539054 12.6004 0.543898 12.6164C0.548742 12.6323 0.553976 12.6482 0.559602 12.6639C0.565226 12.6796 0.571234 12.6952 0.577625 12.7106C0.584 12.726 0.590758 12.7413 0.597898 12.7564C0.605023 12.7714 0.612523 12.7864 0.620398 12.8011C0.628257 12.8158 0.636477 12.8303 0.645055 12.8446C0.653633 12.8589 0.662554 12.873 0.67182 12.8869C0.681101 12.9008 0.690711 12.9144 0.700648 12.9278C0.710586 12.9412 0.720851 12.9544 0.731445 12.9673C0.742023 12.9802 0.752914 12.9928 0.764117 13.0052C0.77532 13.0175 0.786821 13.0296 0.798617 13.0414L11.5996 23.8417C11.7984 24.0408 12.0595 24.1405 12.3203 24.1405Z" stroke="#ffffff" stroke-width="1" fill="#ffffff" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="23" viewBox="0 0 30 23" fill="none">
<path d="M18.3383 19.6159L20.2116 15.5586L26.4656 15.5586L24.5906 19.6159L18.3383 19.6159Z" fill="#29BBE4" >
</path>
<path d="M26.8773 23L3.12271 23C1.39878 23 0 21.4836 0 19.6154L0 3.38457C0 1.51639 1.39878 0 3.12271 0L26.8773 0C28.6012 0 30 1.51639 30 3.38457L30 19.6154C30 21.487 28.6012 23 26.8773 23ZM28.7505 4.34283C28.7505 2.69363 27.5161 1.35418 25.9997 1.35418L4.00365 1.35418C2.48391 1.35418 1.25114 2.69021 1.25114 4.34283L1.25114 5.41671L28.7505 5.41671L28.7505 4.34283ZM1.25114 9.47048L1.25114 18.6607C1.25114 20.3099 2.48391 21.6476 4.00365 21.6476L25.9997 21.6476C27.5195 21.6476 28.7505 20.3133 28.7505 18.6607L28.7505 9.47048L1.25114 9.47048Z" fill="#333333" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 836 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 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="1733363459811" class="icon" viewBox="0 0 1325 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1828" width="288.5498046875" height="223" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M0 254.373647v84.781177h1319.002353V254.373647H0zM724.540235 704.752941h-74.209882l-79.691294 156.400941h76.047059l77.854117-156.400941z m164.864 0h-74.179764l-76.016942 156.400941h76.016942l74.179764-156.400941z m307.802353 0h-219.858823l-73.306353 156.400941h216.154353l76.980706-156.400941zM1164.137412 0a154.503529 154.503529 0 0 1 110.230588 48.549647 163.599059 163.599059 0 0 1 44.574118 114.447059v691.501176a163.629176 163.629176 0 0 1-44.574118 114.507294 154.503529 154.503529 0 0 1-110.230588 48.489412H156.611765a154.503529 154.503529 0 0 1-110.230589-48.489412 163.629176 163.629176 0 0 1-44.574117-114.477176V162.996706A159.081412 159.081412 0 0 1 155.708235 0h1008.459294z" fill="#f5f5f5" p-id="1829"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,61 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="141.654296875" height="80.5" viewBox="0 0 141.654296875 80.5" fill="none">
<g clip-path="url(#clip-path-5_5351)">
<g opacity="0.6">
<g filter="url(#filter_5_5353)">
<path stroke="url(#linear_border_5_5353_0)" stroke-width="2" stroke-linecap="round" d="M0 62.9664C0 62.9664 15.81 52.0022 23.3852 49.232C31.8192 46.1476 37.026 54.5913 47.4187 54.1969C57.8128 53.8025 57.5742 46.3556 67.5558 46.346C77.3002 46.3368 81.4912 50.3455 89.6418 50.3455C99.3848 50.3455 104.008 35.0156 115.428 35.0156C126.849 35.0156 135.112 49.4547 140.309 49.4547">
</path>
</g>
</g>
<g filter="url(#filter_5_5354)">
<path stroke="url(#linear_border_5_5354_0)" stroke-width="3" stroke-linecap="round" d="M0 65.508C2.82538 63.1072 8.5163 46.6764 17.0326 46.6764C25.5489 46.6764 34.4325 57.2639 41.6385 50.7702C48.8454 44.2765 51.754 34.9879 57.6496 34.9879C63.5452 34.9879 66.1926 43.1324 74.0519 42.4479C81.912 41.7635 91.3293 18.2527 95.6458 18.7619">
</path>
</g>
<g opacity="0.2">
<path fill="rgba(151, 151, 151, 1)" d="M95.8579 79.9936L95.5338 18.573L96.5338 18.5677L96.8579 79.9883L95.8579 79.9936Z">
</path>
</g>
</g>
<rect x="127.654296875" y="14" width="8" height="8" rx="4" fill="#25BAE4" >
</rect>
<path fill-rule="evenodd" fill="rgba(37, 186, 228, 1)" d="M131.654 28C137.177 28 141.654 23.5228 141.654 18C141.654 12.4772 137.177 8 131.654 8Q129.624 8 127.76 8.78831Q125.964 9.54781 124.583 10.9289Q123.202 12.3101 122.443 14.1057Q121.654 15.9695 121.654 18C121.654 23.5228 126.131 28 131.654 28ZM135.654 18C135.654 15.7909 133.863 14 131.654 14C129.445 14 127.654 15.7909 127.654 18C127.654 20.2091 129.445 22 131.654 22C133.863 22 135.654 20.2091 135.654 18Z">
</path>
<path fill-rule="evenodd" fill="rgba(255, 255, 255, 1)" d="M131.654 28C137.177 28 141.654 23.5228 141.654 18C141.654 12.4772 137.177 8 131.654 8Q129.624 8 127.76 8.78831Q125.964 9.54781 124.583 10.9289Q123.202 12.3101 122.443 14.1057Q121.654 15.9695 121.654 18C121.654 23.5228 126.131 28 131.654 28ZM135.654 18C135.654 15.7909 133.863 14 131.654 14C129.445 14 127.654 15.7909 127.654 18C127.654 20.2091 129.445 22 131.654 22C133.863 22 135.654 20.2091 135.654 18Z">
</path>
<defs>
<clipPath id="clip-path-5_5351">
<path d="M0 80.5L140.309 80.5L140.309 18.5L0 18.5L0 80.5Z" fill="white"/>
</clipPath>
<linearGradient id="linear_border_5_5353_0" x1="0" y1="66.9609375" x2="140.30859375" y2="66.9609375" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#C6EBF5" stop-opacity="0.27" />
<stop offset="0.2519" stop-color="#3EC7ED" />
<stop offset="0.9366" stop-color="#25BAE4" />
<stop offset="1" stop-color="#25BAE4" />
</linearGradient>
<filter id="filter_5_5353" x="-13.0577392578125" y="28.015625" width="166.3663330078125" height="54.34375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_5_5353"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_5_5353"/>
<feOffset dx="0" dy="6"/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha_5_5353" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.10196078431372549 0 0 0 0 0.4588235294117647 0 0 0 0 0.9176470588235294 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="feFloodId_5_5353" result="dropShadow_1_5_5353"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_5_5353" result="shape_5_5353"/>
</filter>
<linearGradient id="linear_border_5_5354_0" x1="0" y1="72.1875" x2="95.645751953125" y2="72.1875" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#25BAE4" />
<stop offset="0.2519490122795105" stop-color="#25BAE4" />
<stop offset="0.9366" stop-color="#25BAE4" />
<stop offset="1" stop-color="#25BAE4" />
</linearGradient>
<filter id="filter_5_5354" x="-8.1143798828125" y="14.1171875" width="111.425537109375" height="61.9375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_5_5354"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_5_5354"/>
<feOffset dx="0" dy="3"/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha_5_5354" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.10196078431372549 0 0 0 0 0.4588235294117647 0 0 0 0 0.9176470588235294 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="feFloodId_5_5354" result="dropShadow_1_5_5354"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_5_5354" result="shape_5_5354"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M127.88 73.143c0 1.412-.506 2.635-1.518 3.669-1.011 1.033-2.209 1.55-3.592 1.55h-17.887c0 9.296-1.783 17.178-5.35 23.645l16.609 17.044c1.011 1.034 1.517 2.257 1.517 3.67 0 1.412-.506 2.635-1.517 3.668-.958 1.033-2.155 1.55-3.593 1.55-1.438 0-2.635-.517-3.593-1.55l-15.811-16.063a15.49 15.49 0 0 1-1.196 1.06c-.532.434-1.65 1.208-3.353 2.322a50.104 50.104 0 0 1-5.192 2.974c-1.758.87-3.94 1.658-6.546 2.364-2.607.706-5.189 1.06-7.748 1.06V47.044H58.89v73.062c-2.716 0-5.417-.367-8.106-1.102-2.688-.734-5.003-1.631-6.945-2.692a66.769 66.769 0 0 1-5.268-3.179c-1.571-1.057-2.73-1.94-3.476-2.65L33.9 109.34l-14.611 16.877c-1.066 1.14-2.344 1.711-3.833 1.711-1.277 0-2.422-.434-3.434-1.304-1.012-.978-1.557-2.187-1.635-3.627-.079-1.44.333-2.705 1.236-3.794l16.129-18.51c-3.087-6.197-4.63-13.644-4.63-22.342H5.235c-1.383 0-2.58-.517-3.592-1.55S.125 74.545.125 73.132c0-1.412.506-2.635 1.518-3.668 1.012-1.034 2.21-1.55 3.592-1.55h17.887V43.939L9.308 29.833c-1.012-1.033-1.517-2.256-1.517-3.669 0-1.412.505-2.635 1.517-3.668 1.012-1.034 2.21-1.55 3.593-1.55s2.58.516 3.593 1.55l13.813 14.106h67.396l13.814-14.106c1.012-1.034 2.21-1.55 3.592-1.55 1.384 0 2.581.516 3.593 1.55 1.012 1.033 1.518 2.256 1.518 3.668 0 1.413-.506 2.636-1.518 3.67l-13.814 14.105v23.975h17.887c1.383 0 2.58.516 3.593 1.55 1.011 1.033 1.517 2.256 1.517 3.668l-.005.01zM89.552 26.175H38.448c0-7.23 2.489-13.386 7.466-18.469C50.892 2.623 56.92.082 64 .082c7.08 0 13.108 2.541 18.086 7.624 4.977 5.083 7.466 11.24 7.466 18.469z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 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="1568899741379" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2054" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M960 591.424V368.96c0-0.288 0.16-0.512 0.16-0.768S960 367.68 960 367.424V192a32 32 0 0 0-32-32H96a32 32 0 0 0-32 32v175.424c0 0.288-0.16 0.512-0.16 0.768s0.16 0.48 0.16 0.768v222.464c0 0.288-0.16 0.512-0.16 0.768s0.16 0.48 0.16 0.768V864a32 32 0 0 0 32 32h832a32 32 0 0 0 32-32v-271.04c0-0.288 0.16-0.512 0.16-0.768S960 591.68 960 591.424z m-560-31.232v-160H608v160h-208z m208 64V832h-208v-207.808H608z m-480-224h208v160H128v-160z m544 0h224v160h-224v-160zM896 224v112.192H128V224h768zM128 624.192h208V832H128v-207.808zM672 832v-207.808h224V832h-224z" p-id="2055"></path></svg>

After

Width:  |  Height:  |  Size: 954 B

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="1588670460195" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1314" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M230.4 307.712c13.824 0 25.088-11.264 25.088-25.088 0-100.352 81.92-182.272 182.272-182.272s182.272 81.408 182.272 182.272c0 13.824 11.264 25.088 25.088 25.088s25.088-11.264 24.576-25.088c0-127.488-103.936-231.936-231.936-231.936S205.824 154.624 205.824 282.624c-0.512 14.336 10.752 25.088 24.576 25.088z m564.736 234.496c-11.264 0-21.504 2.048-31.232 6.144 0-44.544-40.448-81.92-88.064-81.92-14.848 0-28.16 3.584-39.936 10.24-13.824-28.16-44.544-48.128-78.848-48.128-12.288 0-24.576 2.56-35.328 7.68V284.16c0-45.568-37.888-81.92-84.48-81.92s-84.48 36.864-84.48 81.92v348.672l-69.12-112.64c-18.432-28.16-58.368-36.864-91.136-19.968-26.624 14.336-46.592 47.104-30.208 88.064 3.072 8.192 76.8 205.312 171.52 311.296 0 0 28.16 24.576 43.008 58.88 4.096 9.728 13.312 15.36 22.528 15.36 3.072 0 6.656-0.512 9.728-2.048 12.288-5.12 18.432-19.968 12.8-32.256-19.456-44.544-53.76-74.752-53.76-74.752C281.6 768 209.408 573.44 208.384 570.88c-5.12-12.8-2.56-20.992 7.168-26.112 9.216-4.608 21.504-4.608 26.112 2.56l113.152 184.32c4.096 8.704 12.8 14.336 22.528 14.336 13.824 0 25.088-10.752 25.088-25.088V284.16c0-17.92 15.36-32.256 34.816-32.256s34.816 14.336 34.816 32.256v284.16c0 13.824 10.24 25.088 24.576 25.088 13.824 0 25.088-11.264 25.088-25.088v-57.344c0-17.92 15.36-32.768 34.816-32.768 19.968 0 37.376 15.36 37.376 32.768v95.232c0 7.168 3.072 13.312 7.68 17.92 4.608 4.608 10.752 7.168 17.92 7.168 13.824 0 24.576-11.264 24.576-25.088V547.84c0-18.432 13.824-32.256 32.256-32.256 20.48 0 38.912 15.36 38.912 32.256v95.232c0 13.824 11.264 25.088 25.088 25.088s24.576-11.264 25.088-25.088v-18.944c0-18.944 12.8-32.256 30.72-32.256 18.432 0 22.528 18.944 22.528 31.744 0 1.024-11.776 99.84-50.688 173.056-30.72 58.368-45.056 112.128-51.2 146.944-2.56 13.312 6.656 26.112 19.968 28.672 1.536 0 3.072 0.512 4.608 0.512 11.776 0 22.016-8.192 24.064-20.48 5.632-31.232 18.432-79.36 46.08-132.608 43.52-81.92 55.808-186.88 56.32-193.536-0.512-50.688-29.696-83.968-72.704-83.968z"></path></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="28" height="21" viewBox="0 0 28 21" fill="none">
<path d="M25.064 0L2.93882 0C1.32127 0 0 1.23237 0 2.7412L0 18.2588C0 19.7679 1.32127 21 2.93882 21L25.064 21C26.6815 21 28 19.7676 28 18.2588L28 2.7412C28 1.23237 26.6815 0 25.064 0ZM26.2843 17.4216C26.2843 18.6674 25.9234 19.1436 24.507 19.1436L3.51539 19.1436C2.09901 19.1436 1.76609 18.5862 1.76609 17.3404L1.76609 3.7772C1.76609 2.53142 2.09901 1.8088 3.51539 1.8088L24.507 1.8088C25.9234 1.8088 26.2843 2.28502 26.2843 3.5308L26.2843 17.4216Z" fill="#FFFFFF" >
</path>
<path d="M24.507 6.27254C24.507 6.70184 24.2018 7.05094 23.824 7.05094L15.6149 7.05094C15.2372 7.05094 14.9292 6.70211 14.9292 6.27254C14.9292 5.84324 15.2369 5.49414 15.6149 5.49414L23.824 5.49414C24.2021 5.49414 24.507 5.84297 24.507 6.27254ZM23.824 10.1589C23.824 10.5882 23.5163 10.9373 23.1383 10.9373L15.6149 10.9373C15.2372 10.9373 14.9292 10.5882 14.9292 10.1589C14.9292 9.72964 15.2369 9.38334 15.6149 9.38334L23.1383 9.38334C23.5163 9.38334 23.824 9.72964 23.824 10.1589ZM21.7725 14.0481C21.7725 14.4774 21.4645 14.8237 21.0867 14.8237L15.6149 14.8237C15.2372 14.8237 14.9292 14.4777 14.9292 14.0481C14.9292 13.6188 15.2372 13.2697 15.6149 13.2697L21.0867 13.2697C21.4648 13.2697 21.7725 13.6188 21.7725 14.0481Z" fill="#FFFFFF" >
</path>
<path d="M11.2237 10.9914C12.0363 10.3004 12.5615 9.28527 12.5615 8.1382C12.5615 6.06336 10.8739 4.375 8.79985 4.375C6.72584 4.375 5.03816 6.06336 5.03816 8.1382C5.03816 9.28527 5.56621 10.3004 6.37882 10.9914C4.69238 11.8705 3.53516 13.6343 3.53516 15.6646C3.53516 16.0802 3.8698 16.4178 4.28526 16.4178C4.70072 16.4178 5.03816 16.0802 5.03816 15.6646C5.03816 13.5898 6.72584 11.9014 8.79985 11.9014C10.8739 11.9014 12.5615 13.5898 12.5615 15.6646C12.5615 16.0802 12.899 16.4178 13.3144 16.4178C13.7299 16.4178 14.0673 16.0802 14.0673 15.6646C14.0673 13.6343 12.9104 11.8708 11.2237 10.9914ZM8.79985 10.395C7.55402 10.395 6.54395 9.38453 6.54395 8.1382C6.54395 6.89133 7.55347 5.8814 8.79985 5.8814C10.0462 5.8814 11.0557 6.89105 11.0557 8.1382C11.0557 9.38535 10.0465 10.395 8.79985 10.395Z" fill="#FFFFFF" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 2.1 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="1576153230908" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="971" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M772.87036133 734.06115723c-43.34106445 0-80.00793458 27.93273926-93.76831055 66.57714843H475.90991211c-56.60705567 0-102.66723633-46.06018067-102.66723633-102.66723633V600.82446289h305.859375c13.76037598 38.64440918 50.42724609 66.57714844 93.76831055 66.57714844 55.12390137 0 99.94812012-44.82421875 99.94812012-99.94812012S827.9942627 467.50537109 772.87036133 467.50537109c-43.34106445 0-80.00793458 27.93273926-93.76831055 66.57714844H373.24267578V401.01062011h321.92687989c55.12390137 0 99.94812012-44.82421875 99.94812011-99.94812011V190.07312011C795.11767578 134.94921875 750.29345703 90.125 695.16955567 90.125H251.12963867C196.0057373 90.125 151.18151855 134.94921875 151.18151855 190.07312011V301.0625c0 55.12390137 44.82421875 99.94812012 99.94812012 99.94812012h55.53588867v296.96044921c0 93.35632325 75.97045898 169.32678223 169.32678224 169.32678223h203.19213866c13.76037598 38.64440918 50.42724609 66.57714844 93.76831055 66.57714844 55.12390137 0 99.94812012-44.82421875 99.94812012-99.94812012s-44.90661622-99.86572266-100.03051758-99.86572265z m0-199.89624024c18.37463379 0 33.28857422 14.91394043 33.28857422 33.28857423s-14.91394043 33.28857422-33.28857422 33.28857421-33.28857422-14.91394043-33.28857422-33.28857421 14.91394043-33.28857422 33.28857422-33.28857422zM217.75866699 301.0625V190.07312011c0-18.37463379 14.91394043-33.28857422 33.28857423-33.28857421h444.03991698c18.37463379 0 33.28857422 14.91394043 33.28857422 33.28857422V301.0625c0 18.37463379-14.91394043 33.28857422-33.28857422 33.28857422H251.12963867c-18.37463379 0-33.37097168-14.91394043-33.37097168-33.28857422z m555.11169434 566.23535156c-18.37463379 0-33.28857422-14.91394043-33.28857422-33.28857422 0-18.37463379 14.91394043-33.28857422 33.28857422-33.28857422s33.28857422 14.91394043 33.28857422 33.28857422c0.08239747 18.29223633-14.91394043 33.28857422-33.28857422 33.28857422z" p-id="972"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M0 54.857h36.571V128H0V54.857zM91.429 27.43H128V128H91.429V27.429zM45.714 0h36.572v128H45.714V0z"/></svg>

After

Width:  |  Height:  |  Size: 179 B

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="19.40625" height="17.25" viewBox="0 0 19.40625 17.25" fill="none">
<path d="M0.718749 15.8125L18.6875 15.8125C19.0828 15.8125 19.4062 16.1359 19.4062 16.5312C19.4062 16.9265 19.0828 17.25 18.6875 17.25L0.718749 17.25C0.323437 17.25 0 16.9265 0 16.5312C0 16.1359 0.323437 15.8125 0.718749 15.8125ZM3.23437 15.0937C1.83281 15.0937 0.718749 13.9797 0.718749 12.5781L0.718749 4.67187C0.718749 3.27031 1.83281 2.15625 3.23437 2.15625C4.63593 2.15625 5.74999 3.27031 5.74999 4.67187L5.74999 12.5781C5.74999 13.9797 4.63593 15.0937 3.23437 15.0937ZM3.23437 3.59375C2.62343 3.59375 2.15625 4.06093 2.15625 4.67187L2.15625 12.5781C2.15625 13.189 2.62343 13.6562 3.23437 13.6562C3.84531 13.6562 4.3125 13.189 4.3125 12.5781L4.3125 4.67187C4.3125 4.06093 3.84531 3.59375 3.23437 3.59375ZM9.70311 15.0937C8.30155 15.0937 7.18749 13.9797 7.18749 12.5781L7.18749 8.26561C7.18749 6.86405 8.30155 5.74999 9.70311 5.74999C11.1047 5.74999 12.2187 6.86405 12.2187 8.26561L12.2187 12.5781C12.2187 13.9797 11.1047 15.0937 9.70311 15.0937ZM9.70311 7.18749C9.09218 7.18749 8.62499 7.65468 8.62499 8.26561L8.62499 12.5781C8.62499 13.189 9.09218 13.6562 9.70311 13.6562C10.3141 13.6562 10.7812 13.189 10.7812 12.5781L10.7812 8.26561C10.7812 7.65468 10.3141 7.18749 9.70311 7.18749ZM16.1719 15.0937C14.7703 15.0937 13.6562 13.9797 13.6562 12.5781L13.6562 2.51562C13.6562 1.11406 14.7703 0 16.1719 0C17.5734 0 18.6875 1.11406 18.6875 2.51562L18.6875 12.5781C18.6875 13.9797 17.5734 15.0937 16.1719 15.0937ZM16.1719 1.4375C15.5609 1.4375 15.0937 1.90469 15.0937 2.51562L15.0937 12.5781C15.0937 13.189 15.5609 13.6562 16.1719 13.6562C16.7828 13.6562 17.25 13.189 17.25 12.5781L17.25 2.51562C17.25 1.90469 16.7828 1.4375 16.1719 1.4375Z" fill="#7E7F80" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="19.40625" height="17.25" viewBox="0 0 19.40625 17.25" fill="none">
<path d="M0.718749 15.8125L18.6875 15.8125C19.0828 15.8125 19.4062 16.1359 19.4062 16.5312C19.4062 16.9265 19.0828 17.25 18.6875 17.25L0.718749 17.25C0.323437 17.25 0 16.9265 0 16.5312C0 16.1359 0.323437 15.8125 0.718749 15.8125ZM3.23437 15.0937C1.83281 15.0937 0.718749 13.9797 0.718749 12.5781L0.718749 4.67187C0.718749 3.27031 1.83281 2.15625 3.23437 2.15625C4.63593 2.15625 5.74999 3.27031 5.74999 4.67187L5.74999 12.5781C5.74999 13.9797 4.63593 15.0937 3.23437 15.0937ZM3.23437 3.59375C2.62343 3.59375 2.15625 4.06093 2.15625 4.67187L2.15625 12.5781C2.15625 13.189 2.62343 13.6562 3.23437 13.6562C3.84531 13.6562 4.3125 13.189 4.3125 12.5781L4.3125 4.67187C4.3125 4.06093 3.84531 3.59375 3.23437 3.59375ZM9.70311 15.0937C8.30155 15.0937 7.18749 13.9797 7.18749 12.5781L7.18749 8.26561C7.18749 6.86405 8.30155 5.74999 9.70311 5.74999C11.1047 5.74999 12.2187 6.86405 12.2187 8.26561L12.2187 12.5781C12.2187 13.9797 11.1047 15.0937 9.70311 15.0937ZM9.70311 7.18749C9.09218 7.18749 8.62499 7.65468 8.62499 8.26561L8.62499 12.5781C8.62499 13.189 9.09218 13.6562 9.70311 13.6562C10.3141 13.6562 10.7812 13.189 10.7812 12.5781L10.7812 8.26561C10.7812 7.65468 10.3141 7.18749 9.70311 7.18749ZM16.1719 15.0937C14.7703 15.0937 13.6562 13.9797 13.6562 12.5781L13.6562 2.51562C13.6562 1.11406 14.7703 0 16.1719 0C17.5734 0 18.6875 1.11406 18.6875 2.51562L18.6875 12.5781C18.6875 13.9797 17.5734 15.0937 16.1719 15.0937ZM16.1719 1.4375C15.5609 1.4375 15.0937 1.90469 15.0937 2.51562L15.0937 12.5781C15.0937 13.189 15.5609 13.6562 16.1719 13.6562C16.7828 13.6562 17.25 13.189 17.25 12.5781L17.25 2.51562C17.25 1.90469 16.7828 1.4375 16.1719 1.4375Z" fill="#25c0e5" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 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="1575982282951" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="902" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M828.40625 90.125H195.59375C137.375 90.125 90.125 137.375 90.125 195.59375v632.8125c0 58.21875 47.25 105.46875 105.46875 105.46875h632.8125c58.21875 0 105.46875-47.25 105.46875-105.46875V195.59375c0-58.21875-47.25-105.46875-105.46875-105.46875z m52.734375 738.28125c0 29.16-23.57015625 52.734375-52.734375 52.734375H195.59375c-29.109375 0-52.734375-23.574375-52.734375-52.734375V195.59375c0-29.109375 23.625-52.734375 52.734375-52.734375h632.8125c29.16 0 52.734375 23.625 52.734375 52.734375v632.8125z" p-id="903"></path><path d="M421.52890625 709.55984375a36.28125 36.28125 0 0 1-27.55265625-12.66890625L205.17453125 476.613125a36.28546875 36.28546875 0 0 1 55.10109375-47.22890625l164.986875 192.4846875 342.16171875-298.48078125a36.2896875 36.2896875 0 0 1 47.70984375 54.68765625L445.3859375 700.6203125a36.3234375 36.3234375 0 0 1-23.85703125 8.93953125z" p-id="904"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M54.857 118.857h64V73.143H89.143c-1.902 0-3.52-.668-4.855-2.002-1.335-1.335-2.002-2.954-2.002-4.855V36.57H54.857v82.286zM73.143 16v-4.571a2.2 2.2 0 0 0-.677-1.61 2.198 2.198 0 0 0-1.609-.676H20.571c-.621 0-1.158.225-1.609.676a2.198 2.198 0 0 0-.676 1.61V16a2.2 2.2 0 0 0 .676 1.61c.451.45.988.676 1.61.676h50.285c.622 0 1.158-.226 1.61-.677.45-.45.676-.987.676-1.609zm18.286 48h21.357L91.43 42.642V64zM128 73.143v48c0 1.902-.667 3.52-2.002 4.855-1.335 1.335-2.953 2.002-4.855 2.002H52.57c-1.901 0-3.52-.667-4.854-2.002-1.335-1.335-2.003-2.953-2.003-4.855v-11.429H6.857c-1.902 0-3.52-.667-4.855-2.002C.667 106.377 0 104.759 0 102.857v-96c0-1.902.667-3.52 2.002-4.855C3.337.667 4.955 0 6.857 0h77.714c1.902 0 3.52.667 4.855 2.002 1.335 1.335 2.003 2.953 2.003 4.855V30.29c1 .622 1.856 1.29 2.569 2.003l29.147 29.147c1.335 1.335 2.478 3.145 3.429 5.43.95 2.287 1.426 4.383 1.426 6.291v-.018z"/></svg>

After

Width:  |  Height:  |  Size: 971 B

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="1546567861908" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2422" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M318.577778 819.2L17.066667 512l301.511111-307.2 45.511111 45.511111L96.711111 512l267.377778 261.688889zM705.422222 819.2l-45.511111-45.511111L927.288889 512l-267.377778-261.688889 45.511111-45.511111L1006.933333 512zM540.785778 221.866667l55.751111 11.150222L483.157333 802.133333l-55.751111-11.093333z" p-id="2423"></path></svg>

After

Width:  |  Height:  |  Size: 717 B

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="1577252187056" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2508" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M747.59340925 691.12859384c11.51396329 0.25305413 22.43746719-0.21087818 40.74171707-1.51832482 29.35428085-2.10878421 35.84933734-2.36183835 46.47761114-0.8856895 24.71495444 3.37405491 41.12129828 21.76265671 32.47528161 47.95376084-85.57447632 258.19957947-442.00123984 249.76444099-628.67084683 50.73735554-153.47733892-159.33976008-153.09775772-414.41833795 0.92786545-573.42069196 159.71934128-162.67163983 424.03439521-166.59397897 565.78689185 0.63263534 80.38686649 94.81095318 108.34934958 169.16669549 89.11723508 230.57450162-15.01454608 47.99593598-50.61082928 77.68762207-119.77896259 114.63352789-4.89237973 2.65706845-29.35428085 15.52065436-35.84933652 19.02123633-46.94154346 25.30541465-63.51659033 41.20565021-62.20914449 58.45550757 2.95229856 39.13904114 24.16667102 52.7196135 70.98168823 53.81618115z m44.41100207 50.10472101c-19.82257471 1.43397372-32.05352527 1.940082-45.63409763 1.6448519-70.34905207-1.60267593-115.98314969-30.91478165-121.38163769-101.64341492-3.45840683-46.05585397 24.7571304-73.13264758 89.24376132-107.96976837 6.7902866-3.66928501 31.37871396-16.57504688 36.06021551-19.06341229 57.69634516-30.83042972 85.15271997-53.73183005 94.76877722-84.47790866 12.77923398-40.78389304-9.10994898-98.94417051-79.24812286-181.6507002-121.17075953-142.97559219-350.14258521-139.60153647-489.2380134 2.06660824-134.49827774 138.84237405-134.79350784 362.12048163-0.42175717 501.637667 158.53842169 168.99799328 451.9968783 181.18676788 534.57688175-11.80919339-4.68150156 0.2952301-10.71262573 0.67481131-18.72600705 1.26527069z" p-id="2509"></path><path d="M346.03865637 637.18588562a78.82636652 78.82636652 0 0 0 78.32025825-79.29029883c0-43.69401562-35.005823-79.29029883-78.32025825-79.29029882a78.82636652 78.82636652 0 0 0-78.36243338 79.29029882c0 43.69401562 35.005823 79.29029883 78.36243338 79.29029883z m0-51.7495729a27.07679361 27.07679361 0 0 1-26.5706845-27.54072593c0-15.30977536 11.97789643-27.54072593 26.5706845-27.54072592 14.55061295 0 26.57068533 12.23095057 26.57068533 27.54072592a27.07679361 27.07679361 0 0 1-26.57068533 27.54072593zM475.7289063 807.11174353a78.82636652 78.82636652 0 0 0 78.3624334-79.29029882c0-43.69401562-34.96364785-79.29029883-78.32025825-79.29029883a78.82636652 78.82636652 0 0 0-78.32025742 79.29029883c0 43.69401562 34.96364785 79.29029883 78.32025742 79.29029882z m0-51.74957208a27.07679361 27.07679361 0 0 1-26.57068532-27.54072674c0-15.30977536 12.06224753-27.54072593 26.57068532-27.54072593 14.59278892 0 26.57068533 12.23095057 26.57068453 27.54072593a27.07679361 27.07679361 0 0 1-26.57068453 27.54072674zM601.24376214 377.21492718a78.82636652 78.82636652 0 0 0 78.32025742-79.29029883c0-43.69401562-34.96364785-79.29029883-78.32025742-79.29029882a78.82636652 78.82636652 0 0 0-78.32025823 79.29029883c0 43.69401562 34.96364785 79.29029883 78.32025824 79.29029883z m1e-8-51.74957208a27.07679361 27.07679361 0 0 1-26.57068534-27.54072675c0-15.30977536 11.97789643-27.54072593 26.57068534-27.54072591 14.55061295 0 26.57068533 12.23095057 26.57068451 27.54072592a27.07679361 27.07679361 0 0 1-26.57068451 27.54072674zM378.80916809 433.85687983a78.82636652 78.82636652 0 0 0 78.32025824-79.29029883c0-43.69401562-34.96364785-79.29029883-78.32025824-79.29029802a78.82636652 78.82636652 0 0 0-78.32025742 79.29029802c0 43.69401562 34.96364785 79.29029883 78.32025742 79.29029883z m0-51.74957209a27.07679361 27.07679361 0 0 1-26.57068451-27.54072674c0-15.30977536 11.97789643-27.54072593 26.57068451-27.54072593 14.55061295 0 26.57068533 12.23095057 26.57068533 27.54072593a27.07679361 27.07679361 0 0 1-26.57068533 27.54072674z" p-id="2510"></path></svg>

After

Width:  |  Height:  |  Size: 3.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="1575804206892" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3145" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M826.56 470.016c-32.896 0-64.384 12.288-89.984 35.52l0-104.96c0-62.208-50.496-112.832-112.64-113.088L623.936 287.04 519.552 287.104C541.824 262.72 554.56 230.72 554.56 197.12c0-73.536-59.904-133.44-133.504-133.44-73.472 0-133.376 59.904-133.376 133.44 0 32.896 12.224 64.256 35.52 89.984L175.232 287.104l0 0.576C113.728 288.704 64 338.88 64 400.576l0.32 0 0.32 116.48C60.864 544.896 70.592 577.728 100.8 588.48c12.736 4.608 37.632 7.488 60.864-25.28 12.992-18.368 34.24-29.248 56.64-29.248 38.336 0 69.504 31.104 69.504 69.312 0 38.4-31.168 69.504-69.504 69.504-22.656 0-44.032-11.264-57.344-30.4C138.688 610.112 112.576 615.36 102.464 619.136c-29.824 10.752-39.104 43.776-38.144 67.392l0 160.384L64 846.912C64 909.248 114.752 960 177.216 960l446.272 0c62.4 0 113.152-50.752 113.152-113.152l0-145.024c24.384 22.272 56.384 35.008 89.984 35.008 73.536 0 133.44-59.904 133.44-133.504C960 529.92 900.096 470.016 826.56 470.016zM826.56 672.896c-22.72 0-44.032-11.264-57.344-30.4-22.272-32.384-48.448-27.136-58.56-23.36-29.824 10.752-39.04 43.776-38.08 67.392l0 160.384c0 27.136-22.016 49.152-49.152 49.152L177.216 896.064C150.08 896 128 873.984 128 846.848l0.32 0 0-145.024c24.384 22.272 56.384 35.008 89.984 35.008 73.6 0 133.504-59.904 133.504-133.504 0-73.472-59.904-133.376-133.504-133.376-32.896 0-64.32 12.288-89.984 35.52l0-104.96L128 400.512c0-27.072 22.08-49.152 49.216-49.152L177.216 351.04 334.656 350.72c3.776 0.512 7.616 0.832 11.52 0.832 24.896 0 50.752-10.816 60.032-37.056 4.544-12.736 7.424-37.568-25.344-60.736C362.624 240.768 351.68 219.52 351.68 197.12c0-38.272 31.104-69.44 69.376-69.44 38.336 0 69.504 31.168 69.504 69.44 0 22.72-11.264 44.032-30.528 57.472C427.968 276.736 433.088 302.784 436.8 313.024c10.752 29.888 43.072 39.232 67.392 38.08l119.232 0 0 0.384c27.136 0 49.152 22.08 49.152 49.152l0.256 116.48c-3.776 27.84 6.016 60.736 36.224 71.488 12.736 4.608 37.632 7.488 60.8-25.28 13.056-18.368 34.24-29.248 56.704-29.248C864.832 534.016 896 565.12 896 603.392 896 641.728 864.832 672.896 826.56 672.896z" p-id="3146"></path></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="27" height="27" viewBox="0 0 27 27" fill="none">
<path d="M13.5 0.5C6.33222 0.5 0.5 6.33222 0.5 13.5C0.5 20.6678 6.33222 26.5 13.5 26.5C20.6678 26.5 26.5 20.6678 26.5 13.5C26.5 6.33222 20.6678 0.5 13.5 0.5ZM13.5 25.3701C6.95429 25.3701 1.62988 20.0457 1.62988 13.5C1.62988 6.95429 6.95429 1.62988 13.5 1.62988C20.0457 1.62988 25.3701 6.95429 25.3701 13.5C25.3701 20.0457 20.0457 25.3701 13.5 25.3701Z" stroke="rgba(255, 255, 255, 1)" stroke-width="1" fill="#FFFFFF" >
</path>
<path d="M20.3766 12.9342L14.1584 12.9342L14.1584 6.71855C14.1584 6.40625 13.9019 6.15234 13.5922 6.15234C13.2799 6.15234 13.026 6.40879 13.026 6.71855L13.026 12.9342L6.81035 12.9342C6.49805 12.9342 6.24414 13.1906 6.24414 13.5004C6.24414 13.8127 6.50059 14.0666 6.81035 14.0666L13.026 14.0666L13.026 20.2848C13.026 20.5971 13.2824 20.851 13.5922 20.851C13.9045 20.851 14.1584 20.5945 14.1584 20.2848L14.1584 14.0666L20.374 14.0666C20.6863 14.0666 20.9402 13.8102 20.9428 13.5004C20.9428 13.1881 20.6863 12.9342 20.3766 12.9342Z" stroke="rgba(255, 255, 255, 1)" stroke-width="1" fill="#FFFFFF" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="35" height="35" viewBox="0 0 35 35" fill="none">
<path d="M17.4445 11.5469C14.0946 11.5469 11.3691 14.2417 11.3691 17.554C11.3691 20.8665 14.0946 23.5616 17.4445 23.5616C17.7705 23.5616 18.1151 23.5281 18.5313 23.456C19.1533 23.3438 19.5667 22.754 19.4529 22.1411C19.353 21.6034 18.8823 21.213 18.3336 21.213C18.2628 21.213 18.1914 21.2197 18.1243 21.2323C17.853 21.2802 17.6378 21.3026 17.4473 21.3026C15.3569 21.3026 13.6563 19.6209 13.6563 17.554C13.6563 15.4873 15.3543 13.8058 17.4416 13.8058C19.5305 13.8058 21.2298 15.4873 21.2298 17.554C21.2298 17.7554 21.2073 17.9671 21.1584 18.2216C21.0447 18.8344 21.4581 19.4244 22.0799 19.5363C22.1484 19.5486 22.2181 19.555 22.2873 19.555C22.8412 19.555 23.3134 19.1643 23.4095 18.6282C23.4826 18.2367 23.5168 17.8955 23.5168 17.5543C23.5183 15.9522 22.8867 14.4443 21.7383 13.3084C20.59 12.1724 19.0651 11.5469 17.4445 11.5469Z" fill="#FFFFFF" >
</path>
<path d="M32.0766 14.7928C32.0019 14.4023 31.6994 14.0921 31.3054 14.0026C29.8729 13.6776 28.681 12.8087 27.9495 11.557C27.2202 10.3073 27.0543 8.85338 27.4815 7.46537C27.6022 7.08516 27.4818 6.67119 27.1756 6.41126C25.7448 5.19032 24.1152 4.26006 22.3325 3.64663C22.2247 3.60941 22.1124 3.59061 21.9983 3.59061C21.7161 3.59061 21.4452 3.70788 21.2558 3.91108C20.2565 4.97216 18.9028 5.55653 17.4444 5.55653C15.9858 5.55653 14.6312 4.9712 13.6296 3.908C13.3604 3.62315 12.9286 3.51453 12.5502 3.6439C10.7563 4.26501 9.12776 5.19624 7.70899 6.41208C7.40766 6.67157 7.28779 7.0827 7.40359 7.46042C7.83381 8.84969 7.66883 10.3035 6.93885 11.5545C6.21059 12.8054 5.01968 13.6739 3.58331 14.0005C3.18884 14.0931 2.88615 14.4042 2.81222 14.7923C2.63352 15.721 2.54297 16.6499 2.54297 17.553C2.54297 18.4563 2.63352 19.3852 2.81208 20.3135C2.8864 20.7035 3.18884 21.0138 3.58293 21.1037C5.01551 21.4289 6.20741 22.2974 6.93909 23.5492C7.66879 24.7999 7.83381 26.2538 7.40336 27.6438C7.28841 28.0187 7.40753 28.4303 7.71008 28.6951C9.14047 29.9155 10.769 30.8457 12.552 31.4603C12.944 31.5931 13.3634 31.4791 13.6271 31.1978C14.6286 30.1351 15.983 29.5498 17.4414 29.5498C18.8998 29.5498 20.2545 30.1351 21.2545 31.1967C21.4444 31.4002 21.7157 31.5173 21.999 31.5173C22.111 31.5173 22.2225 31.4995 22.335 31.4626C24.1166 30.8485 25.7452 29.9182 27.1766 28.697C27.4771 28.4381 27.5973 28.0262 27.4823 27.6457C27.0517 26.2553 27.2175 24.8018 27.9496 23.5519C28.6784 22.3001 29.8702 21.4317 31.3057 21.1064C31.6951 21.0178 31.9974 20.7088 32.0765 20.3167C32.255 19.3875 32.3455 18.4587 32.3455 17.5559C32.3455 16.6513 32.2551 15.7214 32.0766 14.7928ZM24.9022 26.9977C24.0126 27.6867 23.0313 28.2471 21.9803 28.6663C20.7265 27.5676 19.1228 26.9648 17.4415 26.9648C15.7692 26.9648 14.1657 27.5676 12.9035 28.6665C11.8527 28.2474 10.8713 27.6871 9.98143 26.9981C10.3196 25.3766 10.046 23.7015 9.20339 22.2599C8.36773 20.8255 7.03545 19.7532 5.43725 19.2234C5.35587 18.6648 5.31475 18.1037 5.31475 17.553C5.31475 17.0047 5.35587 16.4439 5.43725 15.8833C7.03045 15.3573 8.36247 14.2851 9.20339 12.8464C10.0416 11.4101 10.3151 9.73494 9.98095 8.10843C10.8704 7.41971 11.8518 6.85942 12.9031 6.43993C14.1617 7.54057 15.7652 8.14418 17.4414 8.14418C19.1229 8.14418 20.7264 7.54139 21.9802 6.44274C23.0313 6.86209 24.0125 7.42241 24.9019 8.11113C24.5667 9.73925 24.8392 11.4141 25.6767 12.8491C26.5122 14.2835 27.8442 15.356 29.4427 15.886C29.5241 16.4461 29.5652 17.0071 29.5652 17.5588C29.5701 18.0866 29.53 18.6456 29.4456 19.2234C27.8473 19.7533 26.5151 20.8255 25.6794 22.2598C24.8431 23.6929 24.5697 25.3677 24.9022 26.9977Z" fill="#FFFFFF" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,60 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="141.654296875" height="80.5" viewBox="0 0 141.654296875 80.5" fill="none">
<g clip-path="url(#clip-path-5_5358)">
<g opacity="0.6">
<g filter="url(#filter_5_5360)">
<path stroke="url(#linear_border_5_5360_0)" stroke-width="2" stroke-linecap="round" d="M0 62.9664C0 62.9664 15.81 52.0022 23.3852 49.232C31.8192 46.1476 37.026 54.5913 47.4187 54.1969C57.8128 53.8025 57.5742 46.3556 67.5558 46.346C77.3002 46.3368 81.4912 50.3455 89.6418 50.3455C99.3848 50.3455 104.008 35.0156 115.428 35.0156C126.849 35.0156 135.112 49.4547 140.309 49.4547">
</path>
</g>
</g>
<g filter="url(#filter_5_5361)">
<path stroke="url(#linear_border_5_5361_0)" stroke-width="3" stroke-linecap="round" d="M0 65.508C2.82538 63.1072 8.5163 46.6764 17.0326 46.6764C25.5489 46.6764 34.4325 57.2639 41.6385 50.7702C48.8454 44.2765 51.754 34.9879 57.6496 34.9879C63.5452 34.9879 66.1926 43.1324 74.0519 42.4479C81.912 41.7635 91.3293 18.2527 95.6458 18.7619">
</path>
</g>
<g opacity="0.2">
<path fill="rgba(151, 151, 151, 1)" d="M95.8579 79.9936L95.5338 18.573L96.5338 18.5677L96.8579 79.9883L95.8579 79.9936Z">
</path>
</g>
</g>
<rect x="127.654296875" y="14" width="8" height="8" rx="4" fill="#384D83" >
</rect>
<path fill-rule="evenodd" fill="rgba(56, 77, 131, 1)" d="M131.654 28C137.177 28 141.654 23.5228 141.654 18C141.654 12.4772 137.177 8 131.654 8Q129.624 8 127.76 8.78831Q125.964 9.54781 124.583 10.9289Q123.202 12.3101 122.443 14.1057Q121.654 15.9695 121.654 18C121.654 23.5228 126.131 28 131.654 28ZM135.654 18C135.654 15.7909 133.863 14 131.654 14C129.445 14 127.654 15.7909 127.654 18C127.654 20.2091 129.445 22 131.654 22C133.863 22 135.654 20.2091 135.654 18Z">
</path>
<path fill-rule="evenodd" fill="rgba(255, 255, 255, 1)" d="M131.654 28C137.177 28 141.654 23.5228 141.654 18C141.654 12.4772 137.177 8 131.654 8Q129.624 8 127.76 8.78831Q125.964 9.54781 124.583 10.9289Q123.202 12.3101 122.443 14.1057Q121.654 15.9695 121.654 18C121.654 23.5228 126.131 28 131.654 28ZM135.654 18C135.654 15.7909 133.863 14 131.654 14C129.445 14 127.654 15.7909 127.654 18C127.654 20.2091 129.445 22 131.654 22C133.863 22 135.654 20.2091 135.654 18Z">
</path>
<defs>
<clipPath id="clip-path-5_5358">
<path d="M0 80.5L140.309 80.5L140.309 18.5L0 18.5L0 80.5Z" fill="white"/>
</clipPath>
<linearGradient id="linear_border_5_5360_0" x1="0" y1="66.9609375" x2="140.30859375" y2="66.9609375" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#334B84" />
<stop offset="0.2485" stop-color="#334B84" />
<stop offset="1" stop-color="#334B84" />
</linearGradient>
<filter id="filter_5_5360" x="-13.0577392578125" y="28.015625" width="166.3663330078125" height="54.34375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_5_5360"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_5_5360"/>
<feOffset dx="0" dy="6"/>
<feGaussianBlur stdDeviation="6"/>
<feComposite in2="hardAlpha_5_5360" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.10196078431372549 0 0 0 0 0.4588235294117647 0 0 0 0 0.9176470588235294 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="feFloodId_5_5360" result="dropShadow_1_5_5360"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_5_5360" result="shape_5_5360"/>
</filter>
<linearGradient id="linear_border_5_5361_0" x1="0" y1="72.1875" x2="95.645751953125" y2="72.1875" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#384D83" />
<stop offset="0.2469" stop-color="#384D83" />
<stop offset="0.9421" stop-color="#384D83" />
<stop offset="1" stop-color="#334B84" />
</linearGradient>
<filter id="filter_5_5361" x="-8.1143798828125" y="14.1171875" width="111.425537109375" height="61.9375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="feFloodId_5_5361"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha_5_5361"/>
<feOffset dx="0" dy="3"/>
<feGaussianBlur stdDeviation="3"/>
<feComposite in2="hardAlpha_5_5361" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.10196078431372549 0 0 0 0 0.4588235294117647 0 0 0 0 0.9176470588235294 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="feFloodId_5_5361" result="dropShadow_1_5_5361"/>
<feBlend mode="normal" in="SourceGraphic" in2="dropShadow_1_5_5361" result="shape_5_5361"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="45" height="45" viewBox="0 0 45 45" fill="none">
<path d="M22.5 0C10.0744 0 0 10.0744 0 22.5C0 34.9256 10.0744 45 22.5 45C34.9256 45 45 34.9256 45 22.5C45 10.0744 34.9256 0 22.5 0ZM32.9175 23.4956C32.6616 23.7488 32.31 23.9063 31.9219 23.9063L23.9062 23.9063L23.9062 31.9219C23.9062 32.6981 23.2762 33.3281 22.5 33.3281C22.1119 33.3281 21.7603 33.1706 21.5044 32.9175C21.2512 32.6616 21.0937 32.31 21.0937 31.9219L21.0937 23.9063L13.0781 23.9063C12.3019 23.9063 11.6719 23.2763 11.6719 22.5C11.6719 22.1119 11.8294 21.7603 12.0825 21.5044C12.3384 21.2513 12.69 21.0938 13.0781 21.0938L21.0937 21.0938L21.0937 13.0781C21.0937 12.3019 21.7237 11.6719 22.5 11.6719C22.8881 11.6719 23.2397 11.8294 23.4956 12.0825C23.7487 12.3384 23.9062 12.69 23.9062 13.0781L23.9062 21.0938L31.9219 21.0938C32.6981 21.0938 33.3281 21.7238 33.3281 22.5C33.3281 22.8881 33.1706 23.2397 32.9175 23.4956Z" fill="#0F3675" >
</path>
</svg>

After

Width:  |  Height:  |  Size: 1007 B

View File

@ -0,0 +1 @@
<svg width="128" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M27.429 63.638c0-2.508-.893-4.65-2.679-6.424-1.786-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.465 2.662-1.785 1.774-2.678 3.916-2.678 6.424 0 2.508.893 4.65 2.678 6.424 1.786 1.775 3.94 2.662 6.465 2.662 2.524 0 4.678-.887 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zm13.714-31.801c0-2.508-.893-4.65-2.679-6.424-1.785-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zM71.714 65.98l7.215-27.116c.285-1.23.107-2.378-.536-3.443-.643-1.064-1.56-1.762-2.75-2.094-1.19-.33-2.333-.177-3.429.462-1.095.639-1.81 1.573-2.143 2.804l-7.214 27.116c-2.857.237-5.405 1.266-7.643 3.088-2.238 1.822-3.738 4.152-4.5 6.992-.952 3.644-.476 7.098 1.429 10.364 1.905 3.265 4.69 5.37 8.357 6.317 3.667.947 7.143.474 10.429-1.42 3.285-1.892 5.404-4.66 6.357-8.305.762-2.84.619-5.607-.429-8.305-1.047-2.697-2.762-4.85-5.143-6.46zm47.143-2.342c0-2.508-.893-4.65-2.678-6.424-1.786-1.775-3.94-2.662-6.465-2.662-2.524 0-4.678.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.786 1.775 3.94 2.662 6.464 2.662 2.524 0 4.679-.887 6.465-2.662 1.785-1.775 2.678-3.916 2.678-6.424zm-45.714-45.43c0-2.509-.893-4.65-2.679-6.425C68.68 10.01 66.524 9.122 64 9.122c-2.524 0-4.679.887-6.464 2.661-1.786 1.775-2.679 3.916-2.679 6.425 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zm32 13.629c0-2.508-.893-4.65-2.679-6.424-1.785-1.775-3.94-2.662-6.464-2.662-2.524 0-4.679.887-6.464 2.662-1.786 1.774-2.679 3.916-2.679 6.424 0 2.508.893 4.65 2.679 6.424 1.785 1.774 3.94 2.662 6.464 2.662 2.524 0 4.679-.888 6.464-2.662 1.786-1.775 2.679-3.916 2.679-6.424zM128 63.638c0 12.351-3.357 23.78-10.071 34.286-.905 1.372-2.19 2.058-3.858 2.058H13.93c-1.667 0-2.953-.686-3.858-2.058C3.357 87.465 0 76.037 0 63.638c0-8.613 1.69-16.847 5.071-24.703C8.452 31.08 13 24.312 18.714 18.634c5.715-5.68 12.524-10.199 20.429-13.559C47.048 1.715 55.333.035 64 .035c8.667 0 16.952 1.68 24.857 5.04 7.905 3.36 14.714 7.88 20.429 13.559 5.714 5.678 10.262 12.446 13.643 20.301 3.38 7.856 5.071 16.09 5.071 24.703z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 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="1579774833889" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1376" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M887.466667 192.853333h-100.693334V119.466667c0-10.24-6.826667-17.066667-17.066666-17.066667s-17.066667 6.826667-17.066667 17.066667v73.386666H303.786667V119.466667c0-10.24-6.826667-17.066667-17.066667-17.066667s-17.066667 6.826667-17.066667 17.066667v73.386666H168.96c-46.08 0-85.333333 37.546667-85.333333 85.333334V836.266667c0 46.08 37.546667 85.333333 85.333333 85.333333H887.466667c46.08 0 85.333333-37.546667 85.333333-85.333333V278.186667c0-47.786667-37.546667-85.333333-85.333333-85.333334z m-718.506667 34.133334h100.693333v66.56c0 10.24 6.826667 17.066667 17.066667 17.066666s17.066667-6.826667 17.066667-17.066666v-66.56h450.56v66.56c0 10.24 6.826667 17.066667 17.066666 17.066666s17.066667-6.826667 17.066667-17.066666v-66.56H887.466667c27.306667 0 51.2 22.186667 51.2 51.2v88.746666H117.76v-88.746666c0-29.013333 22.186667-51.2 51.2-51.2zM887.466667 887.466667H168.96c-27.306667 0-51.2-22.186667-51.2-51.2V401.066667H938.666667V836.266667c0 27.306667-22.186667 51.2-51.2 51.2z" p-id="1377"></path><path d="M858.453333 493.226667H327.68c-10.24 0-17.066667 6.826667-17.066667 17.066666v114.346667h-116.053333c-10.24 0-17.066667 6.826667-17.066667 17.066667v133.12c0 10.24 6.826667 17.066667 17.066667 17.066666H460.8c10.24 0 17.066667-6.826667 17.066667-17.066666v-114.346667h380.586666c10.24 0 17.066667-6.826667 17.066667-17.066667v-133.12c0-10.24-6.826667-17.066667-17.066667-17.066666z m-413.013333 34.133333v97.28h-98.986667v-97.28h98.986667z m-230.4 131.413333h98.986667v98.986667h-98.986667v-98.986667z m131.413333 97.28v-97.28h98.986667v97.28h-98.986667z m133.12-228.693333h97.28v98.986667h-97.28v-98.986667z m131.413334 0h98.986666v98.986667h-98.986666v-98.986667z m230.4 97.28h-98.986667v-98.986667h98.986667v98.986667z" p-id="1378"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 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="1577186573535" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1068" xmlns:xlink="http://www.w3.org/1999/xlink" width="81" height="81"><defs><style type="text/css"></style></defs><path d="M479.85714249 608.42857168h64.28571502c19.28571417 0 32.14285751-12.85714249 32.14285664-32.14285751s-12.85714249-32.14285751-32.14285664-32.14285664h-64.28571504c-19.28571417 0-32.14285751 12.85714249-32.14285664 32.14285662s12.85714249 32.14285751 32.14285664 32.14285753z m-2e-8 122.14285665h64.28571504c19.28571417 0 32.14285751-12.85714249 32.14285664-32.14285665s-12.85714249-32.14285751-32.14285664-32.14285751h-64.28571504c-19.28571417 0-32.14285751 12.85714249-32.14285664 32.14285751s12.85714249 32.14285751 32.14285664 32.14285664z m353.57142921-559.28571416h-128.57142921v-32.14285664c0-19.28571417-12.85714249-32.14285751-32.14285664-32.14285753s-32.14285751 12.85714249-32.14285751 32.14285753v32.14285664h-257.14285665v-32.14285664c0-19.28571417-12.85714249-32.14285751-32.14285752-32.14285753s-32.14285751 12.85714249-32.14285664 32.14285753v32.14285664h-128.57142919c-70.71428585 0-128.57142832 57.85714249-128.57142832 122.14285751v501.42857081c0 70.71428585 57.85714249 128.57142832 128.57142832 122.14285751h642.85714335c70.71428585 0 128.57142832-57.85714249 128.57142833-122.14285751v-501.42857081c0-70.71428585-57.85714249-122.14285753-128.57142833-122.14285751z m64.28571415 623.57142832c0 32.14285751-32.14285751 64.28571415-64.28571416 64.28571504h-642.85714335c-32.14285751 0-64.28571415-25.71428583-64.28571417-64.28571504v-372.85714249h771.42857168v372.85714249z m0-437.14285664h-771.42857168v-64.28571417c0-32.14285751 32.14285751-64.28571415 64.28571417-64.28571415h128.57142919v32.14285664c0 19.28571417 12.85714249 32.14285751 32.14285664 32.14285751s32.14285751-12.85714249 32.14285753-32.14285751v-32.14285664h257.14285665v32.14285664c0 19.28571417 12.85714249 32.14285751 32.1428575 32.14285751s32.14285751-12.85714249 32.14285664-32.14285751v-32.14285664h128.57142921c32.14285751 0 64.28571415 25.71428583 64.28571415 64.28571415v64.28571417z m-610.71428583 372.85714247h64.28571415c19.28571417 0 32.14285751-12.85714249 32.14285753-32.14285664s-12.85714249-32.14285751-32.14285753-32.14285751h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285751 32.14285751s12.85714249 32.14285751 32.14285751 32.14285665z m385.71428583-122.14285664h64.28571417c19.28571417 0 32.14285751-12.85714249 32.14285751-32.14285751s-12.85714249-32.14285751-32.14285751-32.14285664h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285753 32.14285664s12.85714249 32.14285751 32.14285753 32.14285751z m-385.71428583 0h64.28571415c19.28571417 0 32.14285751-12.85714249 32.14285753-32.14285751s-12.85714249-32.14285751-32.14285753-32.14285664h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285751 32.14285664s12.85714249 32.14285751 32.14285751 32.14285751z m385.71428583 122.14285665h64.28571417c19.28571417 0 32.14285751-12.85714249 32.14285751-32.14285665s-12.85714249-32.14285751-32.14285751-32.14285751h-64.28571415c-19.28571417 0-32.14285751 12.85714249-32.14285753 32.14285751s12.85714249 32.14285751 32.14285753 32.14285665z" p-id="1069"></path></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 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="1566035680909" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3601" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1002.0848 744.672l-33.568 10.368c0.96 7.264 2.144 14.304 2.144 21.76 0 7.328-1.184 14.432-2.368 21.568l33.792 10.56c7.936 2.24 14.496 7.616 18.336 14.752 3.84 7.328 4.672 15.808 1.952 23.552-5.376 16-23.168 24.672-39.936 19.68l-34.176-10.624c-7.136 12.8-15.776 24.672-26.208 35.2l20.8 27.488a28.96 28.96 0 0 1 5.824 22.816 29.696 29.696 0 0 1-12.704 19.616 32.544 32.544 0 0 1-44.416-6.752l-20.8-27.552c-13.696 6.56-28.192 11.2-43.008 13.888v33.632c0 16.736-14.112 30.432-31.648 30.432-17.6 0-31.872-13.696-31.872-30.432v-33.632a167.616 167.616 0 0 1-42.88-13.888l-20.928 27.552c-10.72 13.76-30.08 16.64-44.288 6.752a29.632 29.632 0 0 1-12.704-19.616 29.28 29.28 0 0 1 5.696-22.816l20.896-27.808a166.72 166.72 0 0 1-27.008-34.688l-33.376 10.432c-16.8 5.184-34.56-3.552-39.936-19.616a29.824 29.824 0 0 1 20.224-38.24l33.472-10.432c-0.8-7.264-2.016-14.304-2.016-21.824 0-7.36 1.184-14.496 2.304-21.632l-33.792-10.368c-16.672-5.376-25.632-22.496-20.224-38.432 5.376-16 23.136-24.672 39.936-19.68l34.016 10.752c7.328-12.672 15.84-24.8 26.336-35.328l-20.8-27.552a29.44 29.44 0 0 1 6.944-42.432 32.704 32.704 0 0 1 44.384 6.752l20.832 27.616c13.696-6.432 28.224-11.2 43.104-13.952v-33.568c0-16.736 14.048-30.432 31.648-30.432 17.536 0 31.808 13.568 31.808 30.432v33.504c15.072 2.688 29.344 7.808 42.848 14.016l20.992-27.616a32.48 32.48 0 0 1 44.224-6.752 29.568 29.568 0 0 1 7.136 42.432l-21.024 27.808c10.432 10.432 19.872 21.888 27.04 34.752l33.376-10.432c16.768-5.12 34.56 3.68 39.936 19.68 5.536 15.936-3.712 33.056-20.32 38.304z m-206.016-74.432c-61.344 0-111.136 47.808-111.136 106.56 0 58.88 49.792 106.496 111.136 106.496 61.312 0 111.104-47.616 111.104-106.496 0-58.752-49.792-106.56-111.104-106.56z" p-id="3602"></path><path d="M802.7888 57.152h-76.448c0-22.08-21.024-38.24-42.848-38.24H39.3968a39.68 39.68 0 0 0-39.36 40.032v795.616s41.888 120.192 110.752 120.192H673.2848a227.488 227.488 0 0 1-107.04-97.44H117.6368s-40.608-13.696-40.608-41.248l470.304-0.256 1.664 3.36a227.68 227.68 0 0 1-12.64-73.632c0-60.576 24-118.624 66.88-161.44a228.352 228.352 0 0 1 123.552-63.392l-3.2 0.288 2.144-424.672h38.208l0.576 421.024c27.04 0 52.672 4.8 76.64 13.344V101.536c0.032 0-6.304-44.384-38.368-44.384zM149.7648 514.336H72.3888v-77.408H149.7648v77.408z m0-144.32H72.3888v-77.44H149.7648v77.44z m0-137.248H72.3888v-77.44H149.7648v77.44z m501.856 281.568H206.0848v-77.408h445.536v77.408z m0-144.32H206.0848v-77.44h445.536v77.44z m0-137.248H206.0848v-77.44h445.536v77.44z" p-id="3603"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M71.984 44.815H115.9L71.984 9.642v35.173zM16.094.05h63.875l47.906 38.37v76.74c0 3.392-1.682 6.645-4.677 9.044-2.995 2.399-7.056 3.746-11.292 3.746H16.094c-4.236 0-8.297-1.347-11.292-3.746-2.995-2.399-4.677-5.652-4.677-9.044V12.84C.125 5.742 7.23.05 16.094.05zm71.86 102.32V89.58h-71.86v12.79h71.86zm23.952-25.58V64H16.094v12.79h95.812z"/></svg>

After

Width:  |  Height:  |  Size: 418 B

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="5" height="5" viewBox="0 0 5 5" fill="none">
<circle cx="2.5" cy="2.5" r="2.5" fill="#0F3675" >
</circle>
</svg>

After

Width:  |  Height:  |  Size: 205 B

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="1569915748289" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3062" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M768.35456 416a256 256 0 1 0-512 0 192 192 0 1 0 0 384v64a256 256 0 0 1-58.88-505.216 320.128 320.128 0 0 1 629.76 0A256.128 256.128 0 0 1 768.35456 864v-64a192 192 0 0 0 0-384z m-512 384h64v64H256.35456v-64z m448 0h64v64h-64v-64z" fill="#333333" p-id="3063"></path><path d="M539.04256 845.248V512.192a32.448 32.448 0 0 0-32-32.192c-17.664 0-32 14.912-32 32.192v333.056l-36.096-36.096a32.192 32.192 0 0 0-45.056 0.192 31.616 31.616 0 0 0-0.192 45.056l90.88 90.944a31.36 31.36 0 0 0 22.528 9.088 30.08 30.08 0 0 0 22.4-9.088l90.88-90.88a32.192 32.192 0 0 0-0.192-45.12 31.616 31.616 0 0 0-45.056-0.192l-36.096 36.096z" fill="#333333" p-id="3064"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M73.137 29.08h-9.209 29.7L63.886.093 34.373 29.08h20.49v27.035H27.238v17.948h27.625v27.133h18.274V74.063h27.41V56.115h-27.41V29.08zm-9.245 98.827l27.518-26.711H36.59l27.302 26.71zM.042 64.982l27.196 27.029V38.167L.042 64.982zm100.505-26.815V92.01l27.41-27.029-27.41-26.815z"/></svg>

After

Width:  |  Height:  |  Size: 356 B

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="1566036347051" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5853" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M832 128H192a64.19 64.19 0 0 0-64 64v640a64.19 64.19 0 0 0 64 64h640a64.19 64.19 0 0 0 64-64V192a64.19 64.19 0 0 0-64-64z m0 703.89l-0.11 0.11H192.11l-0.11-0.11V768h640zM832 544H720L605.6 696.54 442.18 435.07 333.25 544H192v-64h114.75l147.07-147.07L610.4 583.46 688 480h144z m0-288H192v-63.89l0.11-0.11h639.78l0.11 0.11z" p-id="5854"></path></svg>

After

Width:  |  Height:  |  Size: 724 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M106.133 67.2a4.797 4.797 0 0 0-4.8 4.8c0 .187.014.36.027.533h-.027V118.4H9.6V26.667h50.133c2.654 0 4.8-2.147 4.8-4.8 0-2.654-2.146-4.8-4.8-4.8H9.6a9.594 9.594 0 0 0-9.6 9.6V118.4c0 5.307 4.293 9.6 9.6 9.6h91.733c5.307 0 9.6-4.293 9.6-9.6V72.533h-.026c.013-.173.026-.346.026-.533 0-2.653-2.146-4.8-4.8-4.8z"/><path d="M125.16 13.373L114.587 2.8c-3.747-3.747-9.854-3.72-13.6.027l-52.96 52.96a4.264 4.264 0 0 0-.907 1.36L33.813 88.533c-.746 1.76-.226 3.534.907 4.68 1.133 1.147 2.92 1.667 4.693.92l31.4-13.293c.507-.213.96-.52 1.36-.907l52.96-52.96c3.747-3.746 3.774-9.853.027-13.6zM66.107 72.4l-18.32 7.76 7.76-18.32L92.72 24.667l10.56 10.56L66.107 72.4zm52.226-52.227l-8.266 8.267-10.56-10.56 8.266-8.267.027-.026 10.56 10.56-.027.026z"/></svg>

After

Width:  |  Height:  |  Size: 818 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M88.883 119.565c-7.284 0-19.434 2.495-21.333 8.25v.127c-4.232.13-5.222 0-7.108 0-1.895-5.76-14.045-8.256-21.333-8.256H0V0h42.523c9.179 0 17.109 5.47 21.47 13.551C68.352 5.475 76.295 0 85.478 0H128v119.57l-39.113-.005h-.004zM60.442 24.763c0-9.651-8.978-16.507-17.777-16.507H7.108V111.43H39.11c7.054-.14 18.177.082 21.333 6.12v-4.628c-.134-5.722-.004-13.522 0-13.832V27.413l.004-2.655-.004.005zm60.442-16.517h-35.55c-8.802 0-17.78 6.856-17.78 16.493v74.259c.004.32.138 8.115 0 13.813v4.627c3.155-6.022 14.279-6.26 21.333-6.114h32V8.25l-.003-.005z"/></svg>

After

Width:  |  Height:  |  Size: 627 B

View File

@ -0,0 +1 @@
<svg width="128" height="96" xmlns="http://www.w3.org/2000/svg"><path d="M64.125 56.975L120.188.912A12.476 12.476 0 0 0 115.5 0h-103c-1.588 0-3.113.3-4.513.838l56.138 56.137z"/><path d="M64.125 68.287l-62.3-62.3A12.42 12.42 0 0 0 0 12.5v71C0 90.4 5.6 96 12.5 96h103c6.9 0 12.5-5.6 12.5-12.5v-71a12.47 12.47 0 0 0-1.737-6.35L64.125 68.287z"/></svg>

After

Width:  |  Height:  |  Size: 347 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M96.258 57.462h31.421C124.794 27.323 100.426 2.956 70.287.07v31.422a32.856 32.856 0 0 1 25.971 25.97zm-38.796-25.97V.07C27.323 2.956 2.956 27.323.07 57.462h31.422a32.856 32.856 0 0 1 25.97-25.97zm12.825 64.766v31.421c30.46-2.885 54.507-27.253 57.713-57.712H96.579c-2.886 13.466-13.146 23.726-26.292 26.291zM31.492 70.287H.07c2.886 30.46 27.253 54.507 57.713 57.713V96.579c-13.466-2.886-23.726-13.146-26.291-26.292z"/></svg>

After

Width:  |  Height:  |  Size: 497 B

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M78.208 16.576v8.384h38.72v5.376h-38.72v8.704h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.576h38.72v5.376h-38.72v8.512h38.72v5.376h-38.72v11.136H128v-94.72H78.208zM0 114.368L72.128 128V0L0 13.632v100.736z"/><path d="M28.672 82.56h-11.2l14.784-23.488-14.08-22.592h11.52l8.192 14.976 8.448-14.976h11.136l-14.08 22.208L58.368 82.56H46.656l-8.768-15.68z"/></svg>

After

Width:  |  Height:  |  Size: 459 B

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M49.217 41.329l-.136-35.24c-.06-2.715-2.302-4.345-5.022-4.405h-3.65c-2.712-.06-4.866 2.303-4.806 5.016l.152 19.164-24.151-23.79a6.698 6.698 0 0 0-9.499 0 6.76 6.76 0 0 0 0 9.526l23.93 23.713-18.345.074c-2.712-.069-5.228 1.813-5.64 5.02v3.462c.069 2.721 2.31 4.97 5.022 5.03l35.028-.207c.052.005.087.025.133.025l2.457.054a4.626 4.626 0 0 0 3.436-1.38c.88-.874 1.205-2.096 1.169-3.462l-.262-2.465c0-.048.182-.081.182-.136h.002zm52.523 51.212l18.32-.073c2.713.06 5.224-1.609 5.64-4.815v-3.462c-.068-2.722-2.317-4.97-5.021-5.04l-34.58.21c-.053 0-.086-.021-.138-.021l-2.451-.06a4.64 4.64 0 0 0-3.445 1.381c-.885.868-1.201 2.094-1.174 3.46l.27 2.46c.005.06-.177.095-.177.141l.141 34.697c.069 2.713 2.31 4.338 5.022 4.397l3.45.006c2.705.062 4.867-2.31 4.8-5.026l-.153-18.752 24.151 23.946a6.69 6.69 0 0 0 9.494 0 6.747 6.747 0 0 0 0-9.523L101.74 92.54v.001zM48.125 80.662a4.636 4.636 0 0 0-3.437-1.382l-2.457.06c-.05 0-.082.022-.137.022l-35.025-.21c-2.712.07-4.957 2.318-5.022 5.04v3.462c.409 3.206 2.925 4.874 5.633 4.814l18.554.06-24.132 23.928c-2.62 2.626-2.62 6.89 0 9.524a6.694 6.694 0 0 0 9.496 0l24.155-23.79-.155 18.866c-.06 2.722 2.094 5.093 4.801 5.025h3.65c2.72-.069 4.962-1.685 5.022-4.406l.141-34.956c0-.05-.182-.082-.182-.136l.262-2.46c.03-1.366-.286-2.592-1.166-3.46h-.001zM80.08 47.397a4.62 4.62 0 0 0 3.443 1.374l2.45-.054c.055 0 .088-.02.143-.028l35.08.21c2.712-.062 4.953-2.312 5.021-5.033l.009-3.463c-.417-3.211-2.937-5.084-5.64-5.025l-18.615-.073 23.917-23.715c2.63-2.623 2.63-6.879.008-9.513a6.691 6.691 0 0 0-9.494 0L92.251 26.016l.155-19.312c.065-2.713-2.097-5.085-4.802-5.025h-3.45c-2.713.069-4.954 1.693-5.022 4.406l-.139 35.247c0 .054.18.088.18.136l-.267 2.465c-.028 1.366.288 2.588 1.174 3.463v.001z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="128" height="128"><defs><style/></defs><path d="M512 128q69.675 0 135.51 21.163t115.498 54.997 93.483 74.837 73.685 82.006 51.67 74.837 32.17 54.827L1024 512q-2.347 4.992-6.315 13.483T998.87 560.17t-31.658 51.669-44.331 59.99-56.832 64.34-69.504 60.16-82.347 51.5-94.848 34.687T512 896q-69.675 0-135.51-21.163t-115.498-54.826-93.483-74.326-73.685-81.493-51.67-74.496-32.17-54.997L0 513.707q2.347-4.992 6.315-13.483t18.816-34.816 31.658-51.84 44.331-60.33 56.832-64.683 69.504-60.331 82.347-51.84 94.848-34.816T512 128.085zm0 85.333q-46.677 0-91.648 12.331t-81.152 31.83-70.656 47.146-59.648 54.485-48.853 57.686-37.675 52.821-26.325 43.99q12.33 21.674 26.325 43.52t37.675 52.351 48.853 57.003 59.648 53.845T339.2 767.02t81.152 31.488T512 810.667t91.648-12.331 81.152-31.659 70.656-46.848 59.648-54.186 48.853-57.344 37.675-52.651T927.957 512q-12.33-21.675-26.325-43.648t-37.675-52.65-48.853-57.345-59.648-54.186-70.656-46.848-81.152-31.659T512 213.334zm0 128q70.656 0 120.661 50.006T682.667 512 632.66 632.661 512 682.667 391.339 632.66 341.333 512t50.006-120.661T512 341.333zm0 85.334q-35.328 0-60.33 25.002T426.666 512t25.002 60.33T512 597.334t60.33-25.002T597.334 512t-25.002-60.33T512 426.666z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg width="128" height="64" xmlns="http://www.w3.org/2000/svg"><path d="M127.072 7.994c1.37-2.208.914-5.152-.914-6.87-2.056-1.717-4.797-1.226-6.396.982-.229.245-25.586 32.382-55.74 32.382-29.24 0-55.74-32.382-55.968-32.627-1.6-1.963-4.57-2.208-6.397-.49C-.17 3.086-.399 6.275 1.2 8.238c.457.736 5.94 7.36 14.62 14.72L4.17 35.96c-1.828 1.963-1.6 5.152.228 6.87.457.98 1.6 1.471 2.742 1.471s2.284-.49 3.198-1.472l12.564-13.983c5.94 4.416 13.021 8.587 20.788 11.53l-4.797 17.418c-.685 2.699.686 5.397 3.198 6.133h1.37c2.057 0 3.884-1.472 4.341-3.68L52.6 42.83c3.655.736 7.538 1.227 11.422 1.227 3.883 0 7.767-.49 11.422-1.227l4.797 17.173c.457 2.208 2.513 3.68 4.34 3.68.457 0 .914 0 1.143-.246 2.513-.736 3.883-3.434 3.198-6.133l-4.797-17.172c7.767-2.944 14.848-7.114 20.788-11.53l12.336 13.738c.913.981 2.056 1.472 3.198 1.472s2.284-.49 3.198-1.472c1.828-1.963 1.828-4.906.228-6.87l-11.65-13.001c9.366-7.36 14.849-14.474 14.849-14.474z"/></svg>

After

Width:  |  Height:  |  Size: 944 B

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M84.068 23.784c-1.02 0-1.877-.32-2.572-.96a8.588 8.588 0 0 1-1.738-2.237 11.524 11.524 0 0 1-1.042-2.621c-.232-.895-.348-1.641-.348-2.238V0h.278c.834 0 1.622.085 2.363.256.742.17 1.645.575 2.711 1.214 1.066.64 2.363 1.535 3.892 2.686 1.53 1.15 3.453 2.664 5.77 4.54 2.502 2.045 4.494 3.771 5.977 5.178 1.483 1.406 2.618 2.6 3.406 3.58.787.98 1.274 1.812 1.46 2.494.185.682.277 1.278.277 1.79v2.046H84.068zM127.3 84.01c.278.682.464 1.535.556 2.558.093 1.023-.37 2.003-1.39 2.94-.463.427-.88.832-1.25 1.215-.372.384-.696.704-.974.96a6.69 6.69 0 0 1-.973.767l-11.816-10.741a44.331 44.331 0 0 0 1.877-1.535 31.028 31.028 0 0 1 1.737-1.406c1.112-.938 2.317-1.343 3.615-1.215 1.297.128 2.363.405 3.197.83.927.427 1.923 1.173 2.989 2.239 1.065 1.065 1.876 2.195 2.432 3.388zM78.23 95.902c2.038 0 3.752-.511 5.143-1.534l-26.969 25.83H18.037c-1.761 0-3.684-.47-5.77-1.407a24.549 24.549 0 0 1-5.838-3.709 21.373 21.373 0 0 1-4.518-5.306c-1.204-2.003-1.807-4.07-1.807-6.202V16.495c0-1.79.44-3.665 1.32-5.626A18.41 18.41 0 0 1 5.04 5.562a21.798 21.798 0 0 1 5.213-3.964C12.198.533 14.237 0 16.37 0h53.24v15.984c0 1.62.278 3.367.834 5.242a16.704 16.704 0 0 0 2.572 5.179c1.159 1.577 2.665 2.898 4.518 3.964 1.853 1.066 4.078 1.598 6.673 1.598h20.295v42.325L85.458 92.45c1.02-1.364 1.529-2.856 1.529-4.476 0-2.216-.857-4.113-2.572-5.69-1.714-1.577-3.776-2.366-6.186-2.366H26.1c-2.409 0-4.448.789-6.116 2.366-1.668 1.577-2.502 3.474-2.502 5.69 0 2.217.834 4.092 2.502 5.626 1.668 1.535 3.707 2.302 6.117 2.302h52.13zM26.1 47.951c-2.41 0-4.449.789-6.117 2.366-1.668 1.577-2.502 3.473-2.502 5.69 0 2.216.834 4.092 2.502 5.626 1.668 1.534 3.707 2.302 6.117 2.302h52.13c2.409 0 4.47-.768 6.185-2.302 1.715-1.534 2.572-3.41 2.572-5.626 0-2.217-.857-4.113-2.572-5.69-1.714-1.577-3.776-2.366-6.186-2.366H26.1zm52.407 64.063l1.807-1.663 3.476-3.196a479.75 479.75 0 0 0 4.587-4.284 500.757 500.757 0 0 1 5.004-4.667c3.985-3.666 8.48-7.758 13.485-12.276l11.677 10.741-13.485 12.404-5.004 4.603-4.587 4.22a179.46 179.46 0 0 0-3.267 3.068c-.88.853-1.367 1.322-1.46 1.407-.463.341-.973.703-1.529 1.087-.556.383-1.112.703-1.668.959-.556.256-1.413.575-2.572.959a83.5 83.5 0 0 1-3.545 1.087 72.2 72.2 0 0 1-3.475.895c-1.112.256-1.946.426-2.502.511-1.112.17-1.854.043-2.224-.383-.371-.426-.464-1.151-.278-2.174.092-.511.278-1.279.556-2.302.278-1.023.602-2.067.973-3.132l1.042-3.005c.325-.938.58-1.577.765-1.918a10.157 10.157 0 0 1 2.224-2.941z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

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