Former-commit-id: 3da4c909fd727e9f7ccefe13fdb58ed18f6959b7
TangShanKaiPing
wanggang 5 years ago
parent b8be3a60f1
commit 7df5738dd8

@ -47,7 +47,7 @@
</nav>
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<a class="brand-link" href="@Url.Action("Index","Home",new { area=""})">
<img class="brand-image img-circle elevation-3" style="opacity: .8" src="@Url.Content("~"+logo)" />
<img class="brand-image img-circle elevation-3" style="opacity: .8" src="@Url.Content2(logo)" />
<span class="brand-text font-weight-light @name">@name</span>
</a>
<div class="sidebar">

@ -1,31 +1,28 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Globalization;
namespace Infrastructure.Extensions
{
public static class UrlHelperExtensions
{
public static string GetFullUrl(this IUrlHelper url, string visualPath)
public static string Content2(this IUrlHelper url, string path)
{
if (url is null)
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(url));
return path;
}
if (string.IsNullOrEmpty(visualPath))
if (path.StartsWith("~"))
{
return visualPath;
return url.Content(path);
}
var request = url.ActionContext.HttpContext.Request;
if (visualPath.StartsWith("~", StringComparison.Ordinal))
else if (path.StartsWith("/dfs/"))
{
return string.Format(CultureInfo.InvariantCulture, "{0}://{1}{2}", request.Scheme, request.Host, url.Content(visualPath));
return path;
}
else if (visualPath.StartsWith("/", StringComparison.Ordinal))
else
{
return string.Format(CultureInfo.InvariantCulture, "{0}://{1}{2}", request.Scheme, request.Host, visualPath);
return url.Content("~" + path);
}
return visualPath;
}
public static string FullAction(this IUrlHelper helper, string action = null, string controller = null, object values = null, string scheme = null, string host = null)

@ -26,6 +26,7 @@
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
<PackageReference Include="Minio" Version="3.1.13" />
<PackageReference Include="nacos-sdk-csharp-unofficial" Version="0.2.6" />
<PackageReference Include="nacos-sdk-csharp-unofficial.AspNetCore" Version="0.2.6" />
<PackageReference Include="nacos-sdk-csharp-unofficial.Extensions.Configuration" Version="0.2.6" />

@ -47,7 +47,7 @@
</nav>
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<a class="brand-link" href="@Url.Action("Index","Home",new { area=""})">
<img class="brand-image img-circle elevation-3" style="opacity: .8" src="@Url.Content("~"+logo)" />
<img class="brand-image img-circle elevation-3" style="opacity: .8" src="@Url.Content2(logo)" />
<span class="brand-text font-weight-light">@name</span>
</a>
<div class="sidebar">

@ -1,5 +1,5 @@
@model string
@{
var src = Url.Content("~" + (Model as string ?? "/images/empty.png"));
var src = Url.Content2((Model as string) ?? "/images/empty.png");
}
<a class="fancybox" href="@src"><img src="@src" /></a>

@ -11,7 +11,7 @@
{
@class = "edit-file",
style = "visibility:hidden;",
data_uploadUrl = Url.Content("~/File/Upload"),
data_baseUrl = Url.Content("~"),
data_uploadUrl = Url.Content2("~/File/Upload"),
data_baseUrl = Url.Content2("~"),
})
</div>

@ -1 +1 @@
@Html.TextArea("", new { @class = "form-control edit-editor", data_uploadUrl = Url.Content("~/File/Upload"), data_baseUrl = Url.Content("~") })
@Html.TextArea("", new { @class = "form-control edit-editor", data_uploadUrl = Url.Content2("~/File/Upload"), data_baseUrl = Url.Content2("~") })

@ -1,7 +1,7 @@
@{
var id = Html.IdForModel();
var name = Html.NameForModel().ToString();
var src = Url.Content("~" + (Model as string ?? "/images/empty.png"));
var src = Url.Content2((Model as string) ?? "/images/empty.png");
}
<div style="padding-top:7px;">
<a class="fancybox" href="@src"><img style="height:60px;" id="image_@id" src="@src" /></a>
@ -9,9 +9,9 @@
{
@class = "edit-image",
style = "visibility:hidden;",
data_uploadUrl = Url.Content("~/File/Upload"),
data_emptyImage = Url.Content("~/images/empty.png"),
data_baseUrl = Url.Content("~")
data_uploadUrl = Url.Content2("~/File/Upload"),
data_emptyImage = Url.Content2("~/images/empty.png"),
data_baseUrl = Url.Content2("~")
})
<br />
<br />

@ -12,7 +12,7 @@
@foreach (var item in ViewData.ModelMetadata.AdditionalValues)
{
<span>@(i == 0 ? "" : ",")</span>
<a class="agreement" target="_blank" href="@Url.Content("~"+item.Value)">@item.Key</a>
<a class="agreement" target="_blank" href="@Url.Content2(item.Value.ToString())">@item.Key</a>
i += 1;
}
</div>

@ -16,7 +16,7 @@
<nav class="main-header navbar navbar-expand-md navbar-light navbar-white">
<div class="container">
<a href="@Url.Action("Index","Home")" class="navbar-brand">
<img src="@Url.Content("~"+logo)" alt="@name" class="brand-image img-circle elevation-3"
<img src="@Url.Content2(logo)" alt="@name" class="brand-image img-circle elevation-3"
style="opacity: .8">
<span class="brand-text font-weight-light">@name</span>
</a>

@ -3,13 +3,14 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Newtonsoft.Json;
using Minio;
using System;
using System.Globalization;
using System.IO;
using System.IO.Compression;
using System.Net.Http;
using System.Security.Cryptography;
using System.Collections.Generic;
namespace Infrastructure.Web.Mvc
{
@ -31,7 +32,30 @@ namespace Infrastructure.Web.Mvc
if (Request.Form.Files != null && Request.Form.Files.Count > 0)
{
var file = Request.Form.Files[0];
var path = this.Save(file);
var fileserver = this._cfg.GetSection("AppSettings").GetValue<string>("fileserver");
var path = string.Empty;
try
{
if (string.IsNullOrEmpty(fileserver))
{
path = UploadLocalServer(file);
}
else
{
if (fileserver == "minio")
{
path = UploadMinIO(file);
}
}
}
catch (Exception ex)
{
return Content(new { error = 3, msg = ex.Message }.ToJson());
}
if (string.IsNullOrEmpty(path))
{
return Content(new { error = 2, msg = "文件存储失败" }.ToJson());
}
return Content(new { error = 0, url = path }.ToJson());
}
@ -43,60 +67,82 @@ namespace Infrastructure.Web.Mvc
return Content(value);
}
public string Save(IFormFile file)
private string UploadLocalServer(IFormFile file)
{
if (file is null)
using Stream stream = file.OpenReadStream();
var ext = GetExtension(file.FileName);
var md5 = GetFileNameHash(stream);
var phicyPath = Path.Combine(this._host.WebRootPath, "upload");
Directory.CreateDirectory(phicyPath);
var name = string.Format(CultureInfo.CurrentCulture, "{0}.{1}", md5, ext);
var fullName = Path.Combine(phicyPath, name);
if (!System.IO.File.Exists(fullName))
{
throw new ArgumentNullException(nameof(file));
using (FileStream fs = System.IO.File.Create(fullName))
{
file.CopyTo(fs);
}
if (ext == "zip")
{
var zipDirectory = Path.Combine(phicyPath, md5);
Directory.CreateDirectory(Path.Combine(phicyPath, md5));
ZipFile.ExtractToDirectory(fullName, zipDirectory);
}
}
var uploadUrl = this._cfg.GetSection("AppSettings").GetValue<string>("upload");
using Stream stream = file.OpenReadStream();
return $"/upload/{name}";
}
private string UploadMinIO(IFormFile file)
{
using var stream = file.OpenReadStream();
var ext = GetExtension(file.FileName);
var md5 = GetFileNameHash(stream);
if (string.IsNullOrEmpty(uploadUrl))
var name = $"{md5}.{ext}";
var endpoint = this._cfg["minio:endpoint"];
var accessKey = this._cfg["minio:accessKey"];
var secretKey = this._cfg["minio:secretKey"];
var bucketName = "upload";
var minio = new MinioClient(endpoint, accessKey, secretKey);//.WithSSL();
bool found = minio.BucketExistsAsync(bucketName).Result;
if (!found)
{
var phicyPath = Path.Combine(this._host.WebRootPath, "upload");
Directory.CreateDirectory(phicyPath);
var name = string.Format(CultureInfo.CurrentCulture, "{0}.{1}", md5, ext);
var fullName = Path.Combine(phicyPath, name);
if (!System.IO.File.Exists(fullName))
minio.MakeBucketAsync(bucketName);
var policyJson = new
{
using (FileStream fs = System.IO.File.Create(fullName))
{
file.CopyTo(fs);
}
if (ext == "zip")
{
var zipDirectory = Path.Combine(phicyPath, md5);
Directory.CreateDirectory(Path.Combine(phicyPath, md5));
ZipFile.ExtractToDirectory(fullName, zipDirectory);
Version = "2012-10-17",
Statement = new List<object>{
new {
Effect="Allow",
Principal=new {
AWS=new List<object>{"*"}
},
Action=new List<object>{"s3:GetBucketLocation", "s3:ListBucket", "s3:ListBucketMultipartUploads"},
Resource="arn:aws:s3:::upload"
}, new {
Effect= "Allow",
Principal=new {
AWS=new List<object>{"*"}
},
Action=new List<object>{"s3:AbortMultipartUpload", "s3:DeleteObject", "s3:GetObject", "s3:ListMultipartUploadParts", "s3:PutObject"},
Resource=new List<object>{"arn:aws:s3:::upload/*"}
}
}
}
return $"/upload/{name}";
};
minio.SetPolicyAsync(bucketName, policyJson.ToJson());
}
try
{
var result = minio.StatObjectAsync(bucketName, name).Result;
}
else
catch (AggregateException ex)
{
#pragma warning disable CA2000 // 丢失范围之前释放对象
var hc = this._httpClientFactory.CreateClient();
#pragma warning restore CA2000 // 丢失范围之前释放对象
using var form = new MultipartFormDataContent();
stream.Seek(0, SeekOrigin.Begin);
var bytes = new byte[stream.Length];
stream.Read(bytes, 0, bytes.Length);
using var fileContent = new ByteArrayContent(bytes);
form.Add(fileContent, "file", file.FileName);
using var pathContent = new StringContent("dfs");
form.Add(pathContent, "path");
using var outputContent = new StringContent("json");
form.Add(outputContent, "output");
var response = hc.PostAsync(new Uri(uploadUrl), form).Result;
var result = response.Content.ReadAsStringAsync().Result;
var json = JsonConvert.DeserializeAnonymousType(result, new { url = "", md5 = "", path = "", domain = "", scene = "", size = 0, mtime = 0L, scenes = "", retmsg = "", retcode = -1, src = "" });
return $"/dfs{json.src}";
ex.PrintStack();
stream.Position = 0;
minio.PutObjectAsync(bucketName, name, stream, stream.Length);
}
var path = $"/{bucketName}/{name}";
return $"/dfs{path}";
}
#region private

@ -15,7 +15,7 @@
<div class="card-tools"><span data-toggle="tooltip" class="badge bg-green">@item.DeviceCount</span></div>
</div>
<a class="card-body" href="@Url.Action("Index","Device",new { categoryId=item.Id})" style="display:block;text-align:center;">
<img alt="@item.Name" src="@Url.Content("~"+item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
<img alt="@item.Name" src="@Url.Content2(item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
</a>
</div>
</div>
@ -32,7 +32,7 @@
<div class="card-tools"><span data-toggle="tooltip" class="badge bg-green">@item.DeviceCount</span></div>
</div>
<a class="card-body" href="@Url.Action("Index","Device",new { productId=item.Id})" style="display:block;text-align:center;">
<img alt="@item.Name" src="@Url.Content("~"+item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
<img alt="@item.Name" src="@Url.Content2(item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
</a>
</div>
</div>
@ -51,7 +51,7 @@
<div class="card-tools"><span data-toggle="tooltip" class="badge bg-green">@item.DeviceCount</span></div>
</div>
<a class="card-body" href="@Url.Action("Index","Device",new { nodeId=item.Id})" style="display:block;text-align:center;">
<img alt="@item.Name" src="@Url.Content("~"+item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
<img alt="@item.Name" src="@Url.Content2(item.Image??"/images/empty.png")" style="margin:0 auto;width:64px;" />
</a>
<div class="card-footer text-center">
<button class="btn btn-success" onclick="nodeMethod('@item.Number','Upload')">上传</button>

@ -1,23 +0,0 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY ["IoTCenter/IoTCenter.csproj", "IoTCenter/"]
COPY ["IoT.Shared/IoT.Shared.csproj", "IoT.Shared/"]
COPY ["Infrastructure/Infrastructure.csproj", "Infrastructure/"]
RUN dotnet restore "IoTCenter/IoTCenter.csproj"
COPY . .
WORKDIR "/src/IoTCenter"
RUN dotnet build "IoTCenter.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "IoTCenter.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "IoTCenter.dll"]

@ -13,4 +13,5 @@
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
<ProjectReference Include="..\IoT.Shared\IoT.Shared.csproj" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
</Project>

@ -13,7 +13,7 @@
<div class="card-tools"><span data-toggle="tooltip" class="badge bg-green">{{item.count}}</span></div>
</div>
<a class="card-body" :href="'@Url.Content("~")/Home/Product/?number='+item.number" style="display:block;text-align:center;">
<img :alt="item.Name" :src="'@Url.Content("~")'+item.image" style="margin:0 auto;width:64px;" />
<img :alt="item.Name" :src="urlContent(item.image)" style="margin:0 auto;width:64px;" />
</a>
</div>
</div>

@ -31,7 +31,7 @@
</div>
</div>
<a class="card-body" :href="'@Url.Content("~")/Home/Node/?number='+item.number" style="display:block;text-align:center;">
<img :alt="item.name" :src="'@Url.Content("~")'+item.image" style="margin:0 auto;width:64px;" />
<img :alt="item.name" :src="'@Url.Content2("~")'+item.image" style="margin:0 auto;width:64px;" />
</a>
<div class="card-footer text-center">
<button class="btn btn-success" v-on:click="nodePower(item.number,'On')">开</button>

@ -42,7 +42,7 @@
</template>
</div>
<a class="card-body" :href="'@Url.Content("~")/Home/Device?number='+item.number+'&productNumber='+product.number" style="display:block;text-align:center;">
<img :alt="item.name" :src="'@Url.Content("~")'+product.image" style="margin:0 auto;max-width:64px;" />
<img :alt="item.name" :src="urlContent(product.image)" style="margin:0 auto;max-width:64px;" />
</a>
<!-- 设备信息 Start -->

@ -17,7 +17,7 @@
<nav class="main-header navbar navbar-expand-md navbar-light navbar-white">
<div class="container">
<a href="@Url.Action("Index","Home")" class="navbar-brand">
<img src="@Url.Content("~"+logo)" alt="@name" class="brand-image img-circle elevation-3"
<img src="@Url.Content2(logo)" alt="@name" class="brand-image img-circle elevation-3"
style="opacity: .8">
<span class="brand-text font-weight-light">@name</span>
</a>

@ -19,5 +19,8 @@
"influxdb": {
"address": "http://influxdb"
}
},
"minio": {
"endpoint": "minio:9000"
}
}

@ -67,7 +67,12 @@
"AppSettings": {
"database": "mysql",
"cache": "memory",
"upload": ""
"fileserver": "minio"
},
"minio": {
"endpoint": "localhost:9000",
"accessKey": "admin",
"secretKey": "12345678"
},
"logserver": {
"influxdb": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

@ -0,0 +1,13 @@
<svg width="1024" height="1024" xmlns="http://www.w3.org/2000/svg" p-id="5702" version="1.1" class="icon" t="1578371831778">
<defs>
<style type="text/css"/>
</defs>
<g>
<title>background</title>
<rect fill="none" id="canvas_background" height="514" width="1073" y="-1" x="-1"/>
</g>
<g>
<title>Layer 1</title>
<path stroke="null" id="svg_1" p-id="5703" fill="#8a8a8a" d="m900.922221,989.073926c0,19.692269 -15.753817,35.446077 -35.446077,35.446077l-706.952312,0c-19.69226,0 -35.446077,-15.753808 -35.446077,-35.446077c0,0 5.907682,-122.092038 102.399778,-169.353479c61.046019,-29.538394 37.415307,-15.753808 112.245912,-45.292211c74.830605,-29.538394 92.553644,-51.199885 92.553644,-51.199885l-3.938452,-39.384529s-82.707518,-23.630721 -96.492096,-114.215134c-25.599951,5.907674 -33.476855,-27.569173 -35.446077,-49.230663c-1.96923,-21.66149 -15.753817,-88.615192 15.753808,-82.707518c-5.907682,-45.292202 -11.815356,-84.676731 -7.876904,-106.33823c3.938452,-35.446077 -5.907682,-41.35375 27.569173,-68.922923c7.876904,-7.876904 -7.876913,-41.353759 -1.96923,-51.199885c9.846134,-19.692269 76.799836,-11.815365 86.645961,-15.753817c27.569173,-11.815356 59.076797,-19.69226 92.553652,-21.66149c141.784307,5.907682 196.922643,82.707509 204.799547,157.538115c1.96923,21.661499 -1.969222,61.046028 -9.846126,106.33823c31.507616,-5.907674 17.723038,61.046028 15.753808,82.707518c-1.96923,21.66149 -9.846134,57.107567 -35.446077,49.230663c-13.784586,90.584413 -80.738288,114.215134 -80.738288,114.215134l-3.938452,37.415298s17.723038,19.692269 92.553644,51.199893c74.830605,29.538394 51.199893,17.723038 112.245912,47.261433c92.553644,45.292211 98.461326,169.353479 98.461326,169.353479zm0,0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

@ -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="1590469865389" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1192" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M892.2 63.9H134.1C97 63.9 66.9 94 66.9 131v761.4c0 37 30.1 67.2 67.2 67.2h758.1c37 0 67.2-30.1 67.2-67.2V131c-0.1-37-30.2-67.1-67.2-67.1z m13.6 828.5c0 7.5-6.2 13.7-13.7 13.7h-758c-7.5 0-13.7-6.1-13.7-13.7V131c0-7.5 6.2-13.7 13.7-13.7h758.1c7.5 0 13.7 6.1 13.7 13.7-0.1 0-0.1 761.4-0.1 761.4z" p-id="1193" fill="#07c160"></path><path d="M718.8 501.1c-0.6-22-14-38.7-32.8-41.4-21.9-3.1-38 7.5-45.4 30-0.4 1.1-1.3 1.9-2.9 4.3-1.5-23.3-10.7-39.9-33.5-43.3-25-3.7-40.1 9.4-46.8 36-5.1-22.6-16.7-35.3-37.5-36.5C497.8 449 484.3 461 478 483c-0.8-2.1-1.3-2.9-1.3-3.6 0.1-51.6 0.3-103.2 0.3-154.7 0-4.6-0.1-9.2-0.8-13.7-2.6-18.6-17.5-32-37.1-33.5-16.8-1.3-33.8 9.9-38.7 26.8-2.1 7.3-3 15.2-3 22.8-0.2 91.7-0.1 183.4-0.1 275v17.8c-0.7 0.3-1.4 0.5-2 0.8-6.8-9.5-13.5-19-20.3-28.5-12.8-18-25.2-36.2-38.6-53.7-10.1-13-24-18.6-40.4-14.2-16.4 4.5-26.7 15.4-29.5 32.3-2.5 14.8 4.9 26.5 13 37.9 49.2 69.4 99.2 138.3 147.3 208.4 42 61.4 124.8 92.4 198.3 61 52.7-22.5 92.7-75.1 93.8-138.6 1.1-63.6 0.3-127.2 0.3-190.8-0.3-11-0.1-22.2-0.4-33.4z" p-id="1194" fill="#07c160"></path><path d="M353.6 423.8c3.8 2.4 7.2 3.6 10-0.9 1.5-2.5 0.5-6.3-3.6-9-1-0.7-2.4-1.5-3.6-2.3-55.1-35.7-84.4-107.1-54-175.7 21.2-50.3 68.5-83 127.9-84.4 54.2-1.3 97.2 22.8 124.6 69 39.2 66.1 20.2 144.9-42.9 189.8-1.6 1.2-3.3 2.5-4.6 3.7-1.6 1.5-2.6 4.1-1.1 6.7 1.8 3.2 4.5 3.4 7.2 2.4 1.9-0.7 4-2.1 5.8-3.4 56.4-38.2 80.7-108.1 59.9-174.2-20.9-66.5-84.8-106.4-145.9-105.2-10.7 0-20.9 0.9-30.5 3.2-89.8 19.1-139.6 101.4-117.5 189.2 9.9 39.5 33.5 69.7 68.3 91.1z" p-id="1195" fill="#07c160"></path><path d="M506.2 390.8c2-0.8 3.9-2.2 5.7-3.6 41.6-34.4 55.7-93.6 34.1-143.4-21.3-49.2-73.3-79.3-126.4-73.2-62.6 7.2-108.9 59.1-109.3 122.2-0.1 24.6 7.2 50.5 22.1 70 8.1 10.6 18.4 19.5 28.2 28.7 1.5 1.4 4 3.5 7.8 0.3 2.6-2.8 2-6.4-0.7-9-1.3-1.3-3-2.5-4.6-3.8-17.8-14.8-30.4-33.1-36.7-55.5C303.6 243.4 373.6 167 455 184.1c44.1 9.3 73.6 36.6 85.2 80.4s-1.4 81.3-34.2 112.2c-2.1 2-4.4 3.7-6.1 5.9-1.3 1.6-2 4.3 0.2 6.9 1.5 1.7 3.9 2.2 6.1 1.3z" p-id="1196" fill="#07c160"></path><path d="M489.4 350.7c-3.3 3.4-3.7 7.4-1.1 9.8 3.6 3.1 6.5 0.6 9-1.5 1.2-1 2.6-2.2 3.7-3.5 24.5-28.5 31.9-60.7 18.1-95.9-15-38.3-45-56.9-83.7-59.6-5.6 0.3-9.4 0.3-13.1 0.8-53.9 8.1-87.7 52.8-80.4 106.9 2.9 21.1 13 39 29.1 53.1 1.9 1.6 5.5 4.3 9 1.2 3.3-3.5 1.9-6.1-0.8-9.1-1-1.1-2.2-2.5-3.5-3.7-30.9-31.6-30.9-81.6 0-113 31-31.5 81.2-32.2 113.1-1.7 31.8 30.5 33.3 80.4 3.4 113-0.9 1.2-1.9 2.3-2.8 3.2z" p-id="1197" fill="#07c160"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

@ -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="1588124825040" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2525" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M954.066 439.7a181.176 181.176 0 0 1-49.844 64.146 25.936 25.936 0 0 1 5.917 30.043l-87.854 188.377a25.985 25.985 0 0 1-34.531 12.566l-74.657-34.81a77.974 77.974 0 0 1-88.605 16.023l-149.2-69.564-50.517 101.011a77.534 77.534 0 0 1-69.729 43.083H223.391v25.982a78.036 78.036 0 0 1-77.952 77.943h-51.97a25.982 25.982 0 0 1-25.984-25.98V608.707a25.983 25.983 0 0 1 25.983-25.982h51.969a78.076 78.076 0 0 1 73.485 51.964h87.941l27.067-54.118L200.593 518.4c-64.927-30.273-93.118-107.718-62.841-172.637l65.89-141.284c30.277-64.919 107.731-93.1 172.655-62.835l565.2 263.523a25.985 25.985 0 0 1 12.569 34.533zM145.439 634.687h-25.985v207.85h25.983a26.012 26.012 0 0 0 25.985-25.982V660.669a26.012 26.012 0 0 0-25.983-25.982z m640.727 42.071l65.894-141.282-2.421-1.127a182 182 0 0 1-59.26 10.429L739.067 654.8z m-463.246 9.89h-99.529v51.962h131.655a25.845 25.845 0 0 0 23.246-14.36l49.884-99.742-47.128-21.973-34.887 69.752a25.984 25.984 0 0 1-23.241 14.361zM217.795 297.083l-32.944 70.641a78.03 78.03 0 0 0 37.7 103.581L646.455 668.95a25.972 25.972 0 0 0 34.53-12.566l55.683-119.4a184.083 184.083 0 0 1-24.326-9.311z m136.539-108.344a78.041 78.041 0 0 0-103.593 37.7l-10.981 23.548 494.544 230.584a130.038 130.038 0 0 0 159.336-40.378z m266.985 411.155l-94.2-43.921a25.982 25.982 0 1 1 21.966-47.094l94.2 43.921a25.982 25.982 0 1 1-21.966 47.094z m-271.626-129.32a25.982 25.982 0 1 1 25.984-25.981 25.983 25.983 0 0 1-25.984 25.981z m-94.184-43.926a25.982 25.982 0 1 1 25.984-25.982 25.984 25.984 0 0 1-25.984 25.982z" fill="#07c160" p-id="2526"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

@ -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="1588040084926" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9437" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M987.776 441.696a22.304 22.304 0 0 0-1.856-2l-90.864-86.656 0.032-0.528L532.688 7.424a23.088 23.088 0 0 0-32.144-0.208L36.48 439.504c-0.736 0.672-1.44 1.408-2.096 2.208C22.528 455.696 16 474.256 16 493.792c0 41.312 29.312 74.912 65.36 74.912h22.336v428.8c0 14.64 10.976 26.496 24.48 26.496h771.648c13.552 0 24.496-11.856 24.496-26.496v-428.8h16.496c36.032 0 65.376-33.616 65.376-74.912 0-19.568-6.528-38.096-18.416-52.096z m-80.272 75.952h-30.08c-1.856 0 18.336-1.712 16.512-1.248-1.744-0.464-20.544 1.776-22.432 1.776-13.536 0-27.504-0.64-27.504 14l2 426.832h-656l-1.328-416.832c0-14.64-10.976-26.528-24.48-26.528H117.36c-8.88 0-16.4-10-16.4-21.84 0-5.84 1.696-11.216 4.8-15.344L514 94.176l405.024 386.16c3.104 4.16 4.88 9.6 4.88 15.44-0.032 11.872-7.536 21.872-16.4 21.872z" p-id="9438" fill="#07c160"></path><path d="M436.912 493.504c12.208 0 22.384-10.176 22.384-22.384v-42.736c0-12.208-10.176-22.384-22.384-22.384a22.56 22.56 0 0 0-22.384 22.384v44.768c0 12.208 10.16 20.352 22.384 20.352z m132.272 0a22.56 22.56 0 0 0 22.368-22.384v-42.736a22.56 22.56 0 0 0-22.368-22.384c-12.208 0-22.384 10.176-22.384 22.384v44.768c0 12.208 10.192 20.352 22.384 20.352zM369.76 515.888v199.424c0 36.624 30.528 67.152 67.152 67.152h132.272c36.64 0 67.152-30.528 67.152-67.152V515.888H369.76z m109.888 221.808v-87.504h-42.72l87.504-87.52v87.52h44.768l-89.552 87.504z m-42.736 87.504h22.384v89.552h87.504v-87.52h22.384v-22.368h-132.272v20.336z" p-id="9439" fill="#07c160"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

@ -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="1588125569698" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2175" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M432.276 485.945a191.795 191.795 0 0 1 21.436-10.604c54.977-23.177 113.527-23.177 170.541 15.132a28.444 28.444 0 0 0 31.721-47.218c-74.9-50.335-153.201-50.335-224.37-20.332-17.828 7.521-31.083 15.19-38.911 20.753a28.444 28.444 0 1 0 32.961 46.376c0.853-0.614 3.106-2.07 6.622-4.107zM323.243 349.662c3.151-2.048 6.929-4.358 11.275-6.884a389.325 389.325 0 0 1 43.543-21.526c111.57-47.036 231.538-47.036 347.727 31.027a28.444 28.444 0 1 0 31.722-47.218c-134.087-90.1-273.795-90.1-401.556-36.238a445.952 445.952 0 0 0-49.926 24.712c-8.966 5.2-15.394 9.353-19.046 11.947a28.444 28.444 0 0 0 32.961 46.376c0.41-0.296 1.513-1.047 3.3-2.196z m452.483 549.933c0 11.367-9.091 20.48-20.412 20.48h-475.25a20.503 20.503 0 0 1-20.412-20.593v-59.506h-56.889v59.506c0 42.757 34.589 77.482 77.301 77.482h475.25a77.255 77.255 0 0 0 77.3-77.369v-66.434h-56.888v66.446zM244.11 594.603h547.158c65.479 0 118.556 53.1 118.556 118.636 0 65.513-53.1 118.636-118.556 118.636H244.11c-65.479 0-118.556-53.1-118.556-118.636 0-65.525 53.1-118.636 118.556-118.636z m0 294.16h547.158c96.881 0 175.445-78.597 175.445-175.524 0-96.95-78.552-175.525-175.445-175.525H244.11c-96.882 0-175.445 78.586-175.445 175.525s78.552 175.525 175.445 175.525z" fill="#07c160" p-id="2176"></path><path d="M208.122 220.786c5.143-3.323 11.253-7.066 18.262-11.128a622.478 622.478 0 0 1 69.632-34.44c74.41-31.369 155.306-50.176 239.707-50.176 108.26 0 214.698 31.14 317.155 99.988a28.444 28.444 0 1 0 31.733-47.218c-112.037-75.298-229.547-109.66-348.888-109.66-92.615 0-180.827 20.504-261.803 54.648a679.105 679.105 0 0 0-76.026 37.615c-13.54 7.828-23.131 14.04-28.445 17.818a28.444 28.444 0 0 0 32.962 46.364c0.83-0.58 2.742-1.888 5.711-3.811zM279.973 713.239a30.64 30.481 90 1 0 60.962 0 30.64 30.481 90 1 0-60.962 0zM487.208 713.239a30.64 30.481 90 1 0 60.962 0 30.64 30.481 90 1 0-60.962 0zM694.443 713.239a30.64 30.481 90 1 0 60.962 0 30.64 30.481 90 1 0-60.962 0z" fill="#07c160" p-id="2177"></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

@ -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="1588124504993" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1975" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M416 795.392c31.978667 6.08 63.573333 16.746667 94.698667 31.936 28.949333-16.256 61.44-27.242667 97.301333-33.066667V320h-192v475.392z m-64-6.058667V320H192v498.581333C251.370667 799.146667 304.64 789.333333 352 789.333333zM128.341333 859.264A45.226667 45.226667 0 0 1 128 853.333333V320a64 64 0 0 1 64-64h640a64 64 0 0 1 64 64v533.333333c0 2.261333-0.106667 4.224-0.341333 5.952a32 32 0 0 1-44.586667 33.984C790.741333 866.56 731.136 853.333333 671.978667 853.333333c-57.749333 0-104.96 12.586667-142.336 37.333334a32 32 0 0 1-32.938667 1.450666C448.938667 866.154667 400.810667 853.333333 352 853.333333c-49.92 0-110.165333 13.397333-180.48 40.533334a32 32 0 0 1-43.178667-34.602667zM832 817.024V320h-160v469.333333c53.333333 0 106.666667 9.258667 160 27.690667zM160 128h704a32 32 0 0 1 0 64h-704a32 32 0 0 1 0-64z" fill="#07c160" p-id="1976"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 756 B

@ -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="1588039572630" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9110" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M408.520306 659.194804l-176.006995-97.213166c-16.884392-9.465492-38.629442-3.581538-48.094935 12.791206-9.721317 16.372744-3.837362 37.350322 13.302855 46.815814l176.006995 97.213166c16.884392 9.465492 38.629442 3.581538 48.094935-12.791206 9.465492-16.628568 3.581538-37.350322-13.302855-46.815814z m0 0" fill="#07c160" p-id="9111"></path><path d="M818.862196 374.718381c16.884392-9.465492 23.024171-30.187246 13.302854-46.815814-9.721317-16.372744-31.210543-22.256699-48.094934-12.791206l-275.778403 152.471176-275.778402-152.471176c-16.884392-9.465492-38.629442-3.581538-48.094935 12.791206-9.721317 16.372744-3.837362 37.350322 13.302855 46.815814l279.615764 154.517769v330.013116c0 12.279558 6.651427 23.535819 17.651864 29.675598 11.000437 6.139779 24.303291 6.139779 35.303729 0 11.000437-6.139779 17.651864-17.39604 17.651864-29.675598V527.701205c0-1.023296-0.511648-2.046593-0.511648-3.069889l271.429392-149.912935z m0 0" fill="#07c160" p-id="9112"></path><path d="M964.681945 213.805009L570.968623 14.006371c-36.582849-18.675161-82.119543-18.675161-118.958216 0L58.808733 213.805009C22.481708 232.224346-0.030815 266.248954 0.225009 302.575979v423.900568c0 37.094498 23.024171 71.37493 59.862845 89.538443l393.457498 193.914683c36.071201 17.651864 80.07295 17.651864 116.14415 0l393.457498-193.914683c37.094498-18.419337 60.118668-52.443945 59.862845-89.538443V302.575979c0.511648-36.582849-22.000874-70.351633-58.3279-88.77097z m-5.116482 514.973955c0 12.535382-7.930548 24.047467-20.721754 30.187247L531.827533 954.927487c-12.535382 5.883955-27.629005 5.883955-40.164387 0L84.646969 758.966211c-12.791206-6.139779-20.721754-17.651864-20.721754-30.187247V300.529386c0-12.279558 7.674724-23.791643 20.210106-29.931422l406.760352-201.845232c12.535382-6.395603 28.396477-6.395603 40.93186 0L939.355357 270.597964c12.535382 6.139779 20.210106 17.651864 20.210106 29.931422v428.249578z m-14.837799-2.302417" fill="#07c160" p-id="9113"></path><path d="M803.512749 454.023859l-165.006558 94.3991c-22.768347 13.04703-41.187683 41.699332-41.187684 64.211855v189.054025c0 22.256699 18.419337 29.931422 41.187684 16.884392l165.006558-94.399101c22.768347-13.04703 41.187683-41.699332 41.187683-64.211854v-189.054025c0-22.256699-18.419337-29.931422-41.187683-16.884392z m0 0" fill="#07c160" p-id="9114"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

@ -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="1588148967420" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3402" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M699.854735 371.805273L508.167192 549.066257 324.764207 372.376622c-12.712512-12.141163-30.852839-16.711954-47.70763-11.855489-16.854791 4.856465-29.852978 18.426001-34.138095 35.423629-4.142279 16.997629 0.999861 34.995118 13.712373 47.279119L473.457748 652.05189c18.711675 17.997489 48.278979 18.283164 67.419166 0.714186l225.682801-208.828009c13.141024-11.855489 18.854512-29.852978 15.140745-47.136282-3.856605-17.283303-16.711954-31.138513-33.566746-36.280652-17.140466-5.284977-35.42363-0.999861-48.278979 11.28414z m0 0" fill="#07c160" p-id="3403"></path><path d="M982.958097 313.099177C880.972325 70.990096 612.295522-54.420979 361.330534 22.996792 110.365546 100.271725-41.18474 355.236156 10.808006 612.628819c51.992747 257.392663 290.530897 433.51095 551.923002 407.371739C823.980276 993.861347 1022.952518 774.034872 1022.952518 511.357233c0.142837-67.990515-13.426698-135.552518-39.994421-198.258056zM804.26874 802.316641c-138.837774 138.837774-356.236016 160.263356-519.356116 51.135723C121.649686 744.467569 58.229962 535.353885 133.362338 354.093458c74.989538-181.403264 267.81978-284.388897 460.221509-246.108523 192.544567 38.280374 331.096666 207.2568 331.096666 403.515135 0.285674 109.127633-42.994002 213.827312-120.411773 290.816571z m0 0" fill="#07c160" p-id="3404"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 669 B

@ -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="1590482135471" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2785" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M718.933333 106.666667L469.333333 362.666667l320 106.666666-334.933333 313.6 108.8 59.733334L256 917.333333l57.6-315.733333 61.866667 108.8L576 512l-320-106.666667L533.333333 106.666667h185.6z" fill="#00BCD4" p-id="2786"></path></svg>

After

Width:  |  Height:  |  Size: 613 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

@ -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="1588125781397" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2588" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M889.4 448.6c0-0.3 0.1-0.7 0.1-0.9V55.4c0-19.8-16.2-37.2-36-37.7-20.9-0.5-37.9 16.4-37.9 37.2V448H207.1V55.4c0-19.8-16.2-37.2-36-37.7-20.9-0.5-37.9 16.4-37.9 37.2v392.8c0 0.3 0.1 0.7 0.1 0.9C67.5 453.4 15.7 507.8 15.7 575v304.1c0 70.4 57 127.3 127.3 127.3h738.2c70.4 0 127.3-57 127.3-127.3V575c-0.2-67.1-52.7-121.6-119.1-126.4z m45 429.7c0 29.2-23.6 52.8-52.8 52.8H776V726.5h9.2c11.6 0 21.1-9.5 21.1-21.1v-81.8c0-11.6-9.5-21.1-21.1-21.1h-81.8c-11.6 0-21.1 9.5-21.1 21.1v81.8c0 11.6 9.5 21.1 21.1 21.1H714v204.6H520V726.5h9.2c11.6 0 21.1-9.5 21.1-21.1v-81.8c0-11.6-9.5-21.1-21.1-21.1h-81.8c-11.6 0-21.1 9.5-21.1 21.1v81.8c0 11.6 9.5 21.1 21.1 21.1H458v204.6H326v-93.5l-62-62v-49.1h9.1c11.7 0 21.3-9.5 21.3-21.3v-81.6c0-11.8-9.5-21.3-21.3-21.3h-81.6c-11.8 0-21.2 9.5-21.2 21.3v81.6c0 11.8 9.5 21.3 21.2 21.3h10.4v74.9l62 62v67.7H142.4c-29.2 0-52.8-23.6-52.8-52.8V574.7c0-29.2 23.6-52.8 52.8-52.8h739.2c29.2 0 52.8 23.6 52.8 52.8v303.6z m0 0" fill="#07c160" p-id="2589"></path><path d="M413.1 283.2c-12.1 12.1-12.1 31.8 0 43.8 12.1 12.1 31.8 12.1 43.8 0 30.4-30.4 79.7-30.4 110.1 0 6.1 6.1 14 9.1 21.9 9.1 7.9 0 15.8-3 21.9-9.1 12.1-12.1 12.1-31.8 0-43.8-54.3-54.5-143.2-54.5-197.7 0z m0 0" fill="#07c160" p-id="2590"></path><path d="M653.8 271.5c7.9 0 15.8-3 21.9-9.1 12.1-12.1 12.1-31.8 0-43.8-87.4-87.5-240-87.5-327.4 0-12.1 12.2-12.1 31.8 0 43.8 12.1 12.1 31.8 12.1 43.8 0 64-64 175.6-64 239.6 0 6.2 6.1 14.1 9.1 22.1 9.1z m0 0" fill="#07c160" p-id="2591"></path><path d="M319.7 189.9c106.1-106.1 278.7-106.1 384.8 0 6.1 6.1 14 9.1 21.9 9.1 7.9 0 15.8-3 21.9-9.1 12.1-12.1 12.1-31.8 0-43.8C618 15.8 406 15.8 275.7 146.1c-12.1 12.1-12.1 31.8 0 43.8 12.2 12 31.8 12 44 0z m0 0" fill="#07c160" p-id="2592"></path></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

@ -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="1590481962936" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1297" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M759.091 384.307c-53.043 0-96.051-43.008-96.051-96.051s96.051-143.974 96.051-143.974 96.051 91.033 96.051 143.974c0.103 53.043-42.905 96.051-96.05 96.051z m0-192.102s-64 60.723-64 96.051c0 35.43 28.672 64 64 64 35.43 0 64-28.57 64-64 0-35.328-64-96.051-64-96.051z m-320 688.23c-150.323 0-272.179-123.597-272.179-276.07s272.18-460.186 272.18-460.186 271.974 307.61 271.974 460.186-121.652 276.07-271.975 276.07zM214.938 604.16c0 126.157 100.25 228.352 224.05 228.352 123.7 0 224.052-102.195 224.052-228.352 0-126.26-224.051-395.878-224.051-395.878S214.938 477.9 214.938 604.16zM439.09 816.435c-114.893 0-208.179-92.467-208.179-206.643 0-114.074 108.237-56.32 208.18 0 100.249 56.525 207.974-114.074 207.974 0 0 114.176-93.184 206.643-207.975 206.643z m0 0" fill="#06DCF3" p-id="1298"></path></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -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="1588125515273" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2038" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M43.119152 804.252027c0 121.372427 98.375546 219.747973 219.747972 219.747973s219.747973-98.375546 219.747973-219.747973c0-35.134124-8.304429-69.629445-24.274486-100.930754-14.692452-28.746101-36.411728-54.298191-62.60262-74.101061V129.676856C395.099189 58.131004 336.968185 0 265.422333 0H260.311915C188.127261 0 129.996257 58.131004 129.996257 129.676856v499.543356c-26.190892 19.80287-47.910168 45.354959-62.60262 74.101061C51.423581 734.622583 43.119152 769.117904 43.119152 804.252027z m146.924516-143.091703V129.676856c0-38.328135 31.30131-70.268247 70.268247-70.268247h5.74922c38.328135 0 70.268247 31.30131 70.268247 70.268247v531.483468l13.414848 8.943232c45.993762 29.384903 73.462258 79.850281 73.462258 134.148471 0 88.15471-71.545852 159.700561-159.700562 159.700562s-159.700561-71.545852-159.700561-159.700562c0-54.298191 27.468497-104.763568 73.462258-134.148471l12.776045-8.943232z" fill="#07c160" p-id="2039"></path><path d="M362.520274 810.001248c0-55.575795-44.716157-100.291953-100.291952-100.291953s-100.291953 44.716157-100.291953 100.291953 44.716157 100.291953 100.291953 100.291952 100.291953-44.716157 100.291952-100.291952z" fill="#07c160" p-id="2040"></path><path d="M225.816594 728.23456c0 20.441672 16.608858 37.05053 37.05053 37.05053 20.441672 0 37.05053-16.608858 37.05053-37.05053V327.705552c0-20.441672-16.608858-37.05053-37.05053-37.05053-20.441672 0-37.05053 16.608858-37.05053 37.05053V728.23456zM477.504679 111.151591h205.055521c13.414847 0 24.274485 10.859638 24.274485 24.274485s-10.859638 24.274485-24.274485 24.274485H477.504679c-13.414847 0-24.274485-10.859638-24.274486-24.274485 0.638802-13.414847 11.49844-24.274485 24.274486-24.274485zM477.504679 188.446663h173.754211c13.414847 0 24.274485 10.859638 24.274485 24.274485 0 13.414847-10.859638 24.274485-24.274485 24.274485H477.504679c-13.414847 0-24.274485-10.859638-24.274486-24.274485 0.638802-13.414847 11.49844-24.274485 24.274486-24.274485zM477.504679 265.102932h205.055521c13.414847 0 24.274485 10.859638 24.274485 24.274485s-10.859638 24.274485-24.274485 24.274486H477.504679c-13.414847 0-24.274485-10.859638-24.274486-24.274486 0.638802-13.414847 11.49844-24.274485 24.274486-24.274485zM477.504679 342.398004h173.754211c13.414847 0 24.274485 10.859638 24.274485 24.274485s-10.859638 24.274485-24.274485 24.274485H477.504679c-13.414847 0-24.274485-10.859638-24.274486-24.274485 0.638802-13.414847 11.49844-24.274485 24.274486-24.274485zM477.504679 419.693075h205.055521c13.414847 0 24.274485 10.859638 24.274485 24.274486 0 13.414847-10.859638 24.274485-24.274485 24.274485H477.504679c-13.414847 0-24.274485-10.859638-24.274486-24.274485 0.638802-13.414847 11.49844-24.274485 24.274486-24.274486z" fill="#07c160" p-id="2041"></path><path d="M727.276357 534.67748c-45.993762 145.00811-139.25889 205.694323-139.25889 282.989395 0 77.295072 62.60262 139.25889 139.25889 139.258889s139.25889-62.60262 139.258889-139.258889c0-77.295072-124.566438-279.795384-139.258889-282.989395z m252.326887 83.044292c-7.026825-31.940112-77.295072-106.041173-83.044292-106.041173-6.388022 64.519027-40.244541 98.375546-33.217717 130.315658 7.026825 31.940112 38.328135 53.020586 70.907049 45.993762 31.30131-6.388022 51.742982-38.328135 45.35496-70.268247z" fill="#07c160" p-id="2042"></path></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -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="1583467707880" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="41073" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256"><defs><style type="text/css"></style></defs><path d="M512 39.384615C250.092308 39.384615 39.384615 250.092308 39.384615 512s210.707692 472.615385 472.615385 472.615385 472.615385-210.707692 472.615385-472.615385S773.907692 39.384615 512 39.384615z m0 238.276923c33.476923 0 59.076923 25.6 59.076923 59.076924s-25.6 59.076923-59.076923 59.076923-59.076923-25.6-59.076923-59.076923 25.6-59.076923 59.076923-59.076924z m98.461538 413.538462c0 9.846154-7.876923 17.723077-19.692307 17.723077h-157.538462c-9.846154 0-19.692308-5.907692-19.692307-17.723077v-39.384615c0-9.846154 7.876923-21.661538 19.692307-21.661539 9.846154 0 19.692308-5.907692 19.692308-17.723077v-78.769231c0-9.846154-7.876923-21.661538-19.692308-21.661538-9.846154 0-19.692308-5.907692-19.692307-17.723077v-39.384615c0-9.846154 7.876923-21.661538 19.692307-21.661539h118.153846c9.846154 0 19.692308 9.846154 19.692308 21.661539v157.538461c0 9.846154 7.876923 17.723077 19.692308 17.723077 9.846154 0 19.692308 9.846154 19.692307 21.661539v39.384615z" p-id="41074" fill="#1296db"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

@ -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="1588124564283" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2112" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M233.344 393.536c7.54-7.056 19.6-6.592 27.244 1.052 7.648 7.644 8.112 19.708 1.052 27.248-51.884 51.888-49.908 138.296 4.4 192.604 7.416 7.876 7.5 19.936 0.192 27.24-7.304 7.308-19.364 7.224-27.24-0.188-69.92-69.92-72.46-181.148-5.648-247.956z" fill="#07c160" p-id="2113"></path><path d="M175.124 337.436c5.06-5.06 12.556-6.908 19.668-4.852a21.808 21.808 0 0 1 14.816 14.816c2.056 7.116 0.208 14.612-4.848 19.668-81.976 81.976-78.856 218.472 6.956 304.28a21.448 21.448 0 0 1 6.328 14.628 19.56 19.56 0 0 1-5.688 14.348 19.56 19.56 0 0 1-14.34 5.672 21.448 21.448 0 0 1-14.616-6.328C81.24 597.52 77.544 435.016 175.12 337.436zM789.984 393.536c-7.54-7.056-19.6-6.592-27.248 1.052-7.64 7.644-8.108 19.708-1.048 27.248 51.884 51.888 49.908 138.296-4.4 192.604-7.416 7.876-7.5 19.936-0.196 27.24 7.308 7.308 19.368 7.224 27.24-0.188 69.924-69.92 72.46-181.148 5.652-247.956z" fill="#07c160" p-id="2114"></path><path d="M848.2 337.436c-5.056-5.06-12.552-6.908-19.664-4.852a21.808 21.808 0 0 0-14.82 14.816c-2.056 7.116-0.204 14.612 4.852 19.668 81.976 81.976 78.856 218.472-6.956 304.28a21.448 21.448 0 0 0-6.328 14.628 19.56 19.56 0 0 0 5.688 14.348 19.56 19.56 0 0 0 14.34 5.672 21.448 21.448 0 0 0 14.616-6.328c102.16-102.144 105.856-264.652 8.276-362.232zM521.52 318.756c-84.1 0-152.272-71.36-152.272-159.38S437.42 0 521.52 0s152.268 71.356 152.268 159.376c0 88.024-68.172 159.38-152.268 159.38z m0-63.752c50.452 0 91.36-42.812 91.36-95.628 0-52.812-40.908-95.624-91.36-95.624-50.46 0-91.364 42.812-91.364 95.624 0 52.816 40.904 95.628 91.36 95.628z" fill="#07c160" p-id="2115"></path><path d="M548.16 934.8v-196.828l45.556-12.42c3.312-0.904 6.08-2.024 9.856-4 7.72-4.024 13.52-9.616 18-17.332 6.16-10.628 9-21.58 11.764-56.3l16.64-208.984c0.12-1.54 0.184-3.088 0.184-4.632 0-30.808-23.86-55.784-53.296-55.784H445.388c-1.476 0-2.952 0.064-4.424 0.196-29.332 2.56-51.128 29.52-48.684 60.22l16.64 208.984c2.76 34.72 5.6 45.672 11.76 56.3 4.48 7.716 10.284 13.308 18.004 17.336 3.892 2.032 6.728 3.168 10.212 4.088l45.972 12.172V934.8c0 9.46 1.144 14.784 2.972 18.364 0.96 1.88 2 2.968 3.796 3.972 3.42 1.916 8.504 3.108 17.544 3.108h4.672c9.04 0 14.128-1.192 17.548-3.108 1.792-1 2.836-2.096 3.792-3.972 1.828-3.58 2.972-8.904 2.972-18.364z m60.912 0c0 19.972-3.536 35.448-10.172 48.432-6.632 12.988-16.372 23.18-28.776 30.124-12.408 6.944-27.192 10.644-46.272 10.644h-4.672c-19.08 0-33.86-3.7-46.268-10.64-12.408-6.948-22.144-17.14-28.78-30.128-6.636-12.984-10.168-28.46-10.168-48.428v-147.352c-8.552-2.264-15.512-5.22-22.46-8.844-18.008-9.4-32.44-23.3-42.88-41.3-10.444-18.004-16.612-36.48-20.4-84.092l-16.64-208.984c-5.24-65.792 41.468-123.568 104.32-129.048 3.156-0.276 6.32-0.412 9.484-0.412h151.48c63.068 0 114.2 53.516 114.2 119.532 0 3.312-0.132 6.624-0.4 9.928l-16.636 208.984c-3.792 47.616-9.96 66.088-20.4 84.092-10.44 18-24.876 31.9-42.88 41.3-6.736 3.512-13.484 6.4-21.68 8.636v147.56z" fill="#07c160" p-id="2116"></path></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -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="1588148975709" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3672" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M652.43278 699.616683L475.171795 507.929139l176.689636-183.402985c12.141163-12.712512 16.711954-30.852839 11.855489-47.70763-4.856465-16.854791-18.426001-29.852978-35.42363-34.138094-16.997629-4.142279-34.995118 0.999861-47.279118 13.712372L372.186162 473.219696c-17.997489 18.711675-18.283164 48.278979-0.714186 67.419166l208.82801 225.682801c11.855489 13.141024 29.852978 18.854512 47.136281 15.140745 17.283303-3.856605 31.138513-16.711954 36.280653-33.566746 5.284977-16.997629 0.857023-35.42363-11.28414-48.278979z m0 0" fill="#07c160" p-id="3673"></path><path d="M982.958097 313.099177C880.972325 70.990096 612.295522-54.420979 361.330534 22.996792 110.365546 100.271725-41.18474 355.236156 10.808006 612.628819c51.992747 257.392663 290.530897 433.51095 551.923002 407.371739C823.980276 993.861347 1022.952518 774.034872 1022.952518 511.357233c0.142837-67.990515-13.426698-135.552518-39.994421-198.258056zM804.26874 802.316641c-138.837774 138.837774-356.236016 160.263356-519.356116 51.135723C121.649686 744.467569 58.229962 535.353885 133.362338 354.093458c74.989538-181.403264 267.81978-284.388897 460.221509-246.108523 192.544567 38.280374 331.096666 207.2568 331.096666 403.515135 0.285674 109.127633-42.994002 213.827312-120.411773 290.816571z m0 0" fill="#07c160" p-id="3674"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

@ -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="1588124700762" class="icon" viewBox="0 0 1053 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2249" xmlns:xlink="http://www.w3.org/1999/xlink" width="1053" height="1024"><defs><style type="text/css"></style></defs><path d="M1021.28 456.8a32 32 0 0 0-32 32A471.68 471.68 0 0 1 518.08 960a32 32 0 0 0 0 64 535.84 535.84 0 0 0 535.2-535.2 32 32 0 0 0-32-32z" fill="#07c160" p-id="2250"></path><path d="M518.08 802.08a32 32 0 0 0 0 64 375.84 375.84 0 0 0 375.2-375.36 32 32 0 0 0-64 0 311.68 311.68 0 0 1-311.2 311.36z" fill="#07c160" p-id="2251"></path><path d="M734.56 480.96A245.76 245.76 0 1 0 488.8 724.8a245.6 245.6 0 0 0 245.76-243.84z m-427.52 0A181.76 181.76 0 1 1 488.8 660.8a181.12 181.12 0 0 1-181.76-179.84zM700.16 297.28a32 32 0 0 0 22.4-9.12l102.88-101.28a32 32 0 1 0-44.8-45.6l-103.04 101.28a32 32 0 0 0 22.56 54.72zM247.04 288.96a32 32 0 1 0 44.8-45.6l-102.88-101.12A32 32 0 1 0 144 187.84zM475.52 206.4a32 32 0 0 0 32-32V32a32 32 0 0 0-64 0v142.4a32 32 0 0 0 32 32zM214.08 660.16l-103.04 101.12a32 32 0 0 0 44.96 45.76l102.88-101.12a32 32 0 0 0-44.8-45.76z" fill="#07c160" p-id="2252"></path><path d="M208 467.68a32 32 0 0 0-32-32H32a32 32 0 0 0 0 64h144a32 32 0 0 0 32-32z" fill="#07c160" p-id="2253"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 683 B

@ -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="1578372037393" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6811" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256"><defs><style type="text/css"></style></defs><path d="M263.2 710.5c13.8 0 25-11.2 25-25s-11.2-25-25-25c-82.6 0-149.8-67.2-149.8-149.8 0-82.6 67.2-149.8 149.8-149.8h0.1c14.9 0 27.2-12 27.5-26.9 1.2-58.1 24.8-112.6 66.3-153.3 41.6-40.8 96.6-63.3 154.9-63.3h0.4c58.3 0 113.3 22.5 154.9 63.3 41.5 40.7 65.1 95.2 66.3 153.3 0.3 14.9 12.6 26.9 27.5 26.9h0.1c82.6 0 149.8 67.2 149.8 149.8 0 82.6-67.2 149.8-149.8 149.8-13.8 0-25 11.2-25 25s11.2 25 25 25c110.2 0 199.8-89.6 199.8-199.8 0-103-78.3-188.1-178.6-198.7-6.2-63.3-34.1-122-80.1-167.1-51-50-118.5-77.6-189.9-77.6h-0.4c-71.5 0-138.9 27.6-189.9 77.6-46 45.1-74 103.8-80.1 167.1-100.2 10.6-178.6 95.7-178.6 198.7 0 110.2 89.7 199.8 199.8 199.8z" fill="#07c160" p-id="6812"></path><path d="M517.1 226c-49 0-88.9 39.9-88.9 88.9 0 40.4 27 74.5 63.9 85.4v371.1c-21.3 9.2-36.2 30.4-36.2 55.1 0 33.1 26.9 60 60 60s60-26.9 60-60c0-23.7-13.8-44.3-33.8-54V400.3c36.9-10.8 63.9-45 63.9-85.4 0-49-39.9-88.9-88.9-88.9z m0 127.9c-21.5 0-38.9-17.5-38.9-38.9s17.5-38.9 38.9-38.9S556 293.6 556 315s-17.5 38.9-38.9 38.9zM351.5 382.7c-33.1 0-60 26.9-60 60 0 25.9 16.4 48 39.5 56.4v308c0 18.9-15.4 34.4-34.4 34.4H259c-10.8-36.9-45-63.9-85.4-63.9-49 0-88.9 39.9-88.9 88.9s39.9 88.9 88.9 88.9c40.4 0 74.5-27 85.4-63.9h37.6c46.5 0 84.4-37.8 84.4-84.4V494.9c18.2-10.3 30.5-29.8 30.5-52.3 0-33.1-26.9-59.9-60-59.9zM173.6 905.4c-21.5 0-38.9-17.5-38.9-38.9s17.5-38.9 38.9-38.9 38.9 17.5 38.9 38.9-17.4 38.9-38.9 38.9zM853.5 777.5c-40.4 0-74.5 27-85.4 63.9h-37.6c-18.9 0-34.4-15.4-34.4-34.4V497.9c21.4-9.2 36.5-30.4 36.5-55.2 0-33.1-26.9-60-60-60s-60 26.9-60 60c0 23.6 13.7 44.1 33.5 53.9v310.5c0 46.5 37.8 84.4 84.4 84.4h37.6c10.8 36.9 45 63.9 85.4 63.9 49 0 88.9-39.9 88.9-88.9s-39.8-89-88.9-89z m0 127.9c-21.5 0-38.9-17.5-38.9-38.9s17.5-38.9 38.9-38.9 38.9 17.5 38.9 38.9-17.4 38.9-38.9 38.9z" fill="#07c160" p-id="6813"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -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 class="icon" width="256px" height="256.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#07c160" d="M511.989333 895.997315c-32.747348 0-85.335109 0-85.335109 0L192.004007 1023.999979 192.004007 789.349762c-116.973101-82.113709-192.003996-199.961495-192.003996-341.361771C1.1e-05 200.580175 229.231448 0 511.989333 0s511.989322 200.580175 511.989322 447.98799C1023.999989 695.438474 794.768552 895.997315 511.989333 895.997315L511.989333 895.997315zM511.989333 63.979998c-247.407816 0-448.030658 171.928912-448.030658 384.007992 0 130.136042 76.524259 250.543881 192.046664 319.985326l0 142.232294 170.627551-78.209628c0 0 47.979665 0 85.335109 0 247.407816 0 448.030658-171.928912 448.030658-384.007992C960.019991 235.887576 759.397149 63.979998 511.989333 63.979998L511.989333 63.979998zM768.015995 511.989322c-35.371403 0-64.022666-28.651263-64.022666-64.022666s28.651263-64.022666 64.022666-64.022666c35.328735 0 63.979998 28.651263 63.979998 64.022666S803.34473 511.989322 768.015995 511.989322L768.015995 511.989322zM511.989333 511.989322c-35.371403 0-64.022666-28.651263-64.022666-64.022666s28.651263-64.022666 64.022666-64.022666c35.371403 0 64.022666 28.651263 64.022666 64.022666S547.360736 511.989322 511.989333 511.989322L511.989333 511.989322zM255.984005 511.989322c-35.328735 0-63.979998-28.651263-63.979998-64.001332s28.651263-64.022666 63.979998-64.022666c35.371403 0 64.022666 28.651263 64.022666 64.022666S291.334074 511.989322 255.984005 511.989322L255.984005 511.989322z" /></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

@ -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="1579404681035" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2163" data-spm-anchor-id="a313x.7781069.0.i3" xmlns:xlink="http://www.w3.org/1999/xlink" width="256" height="256"><defs><style type="text/css"></style></defs><path d="M512 958.016c-119.648 0-232.128-46.368-316.736-130.56C110.624 743.2 64 631.2 64 512c0-119.168 46.624-231.2 131.232-315.424 84.608-84.192 197.088-130.56 316.736-130.56s232.128 46.368 316.704 130.56c84.672 84.224 131.264 196.256 131.264 315.392 0.032 119.2-46.592 231.232-131.264 315.456C744.128 911.616 631.648 958.016 512 958.016zM512 129.984c-102.624 0-199.072 39.744-271.584 111.936C167.936 314.048 128 409.984 128 512c0 102.016 39.904 197.952 112.384 270.048 72.512 72.192 168.96 111.936 271.584 111.936 102.592 0 199.072-39.744 271.584-111.936 72.48-72.16 112.416-168.064 112.384-270.08 0-102.016-39.904-197.92-112.384-270.016C711.072 169.76 614.592 129.984 512 129.984zM736 480l-192 0L544 288c0-17.664-14.336-32-32-32s-32 14.336-32 32l0 192L288 480c-17.664 0-32 14.336-32 32s14.336 32 32 32l192 0 0 192c0 17.696 14.336 32 32 32s32-14.304 32-32l0-192 192 0c17.696 0 32-14.336 32-32S753.696 480 736 480z" p-id="2164" fill="#ffffff"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -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="1588040084926" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9437" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M987.776 441.696a22.304 22.304 0 0 0-1.856-2l-90.864-86.656 0.032-0.528L532.688 7.424a23.088 23.088 0 0 0-32.144-0.208L36.48 439.504c-0.736 0.672-1.44 1.408-2.096 2.208C22.528 455.696 16 474.256 16 493.792c0 41.312 29.312 74.912 65.36 74.912h22.336v428.8c0 14.64 10.976 26.496 24.48 26.496h771.648c13.552 0 24.496-11.856 24.496-26.496v-428.8h16.496c36.032 0 65.376-33.616 65.376-74.912 0-19.568-6.528-38.096-18.416-52.096z m-80.272 75.952h-30.08c-1.856 0 18.336-1.712 16.512-1.248-1.744-0.464-20.544 1.776-22.432 1.776-13.536 0-27.504-0.64-27.504 14l2 426.832h-656l-1.328-416.832c0-14.64-10.976-26.528-24.48-26.528H117.36c-8.88 0-16.4-10-16.4-21.84 0-5.84 1.696-11.216 4.8-15.344L514 94.176l405.024 386.16c3.104 4.16 4.88 9.6 4.88 15.44-0.032 11.872-7.536 21.872-16.4 21.872z" p-id="9438" fill="#07c160"></path><path d="M436.912 493.504c12.208 0 22.384-10.176 22.384-22.384v-42.736c0-12.208-10.176-22.384-22.384-22.384a22.56 22.56 0 0 0-22.384 22.384v44.768c0 12.208 10.16 20.352 22.384 20.352z m132.272 0a22.56 22.56 0 0 0 22.368-22.384v-42.736a22.56 22.56 0 0 0-22.368-22.384c-12.208 0-22.384 10.176-22.384 22.384v44.768c0 12.208 10.192 20.352 22.384 20.352zM369.76 515.888v199.424c0 36.624 30.528 67.152 67.152 67.152h132.272c36.64 0 67.152-30.528 67.152-67.152V515.888H369.76z m109.888 221.808v-87.504h-42.72l87.504-87.52v87.52h44.768l-89.552 87.504z m-42.736 87.504h22.384v89.552h87.504v-87.52h22.384v-22.368h-132.272v20.336z" p-id="9439" fill="#07c160"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -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="1590478482401" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2071" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M688.6 165.4l0 102c88.4 58.6 147.6 159.8 147.6 275 0 181.4-145.4 328.4-325 328.4S186 723.8 186 542.4c-0.2-115.2 59.2-216.6 147.6-275.2L333.6 166C195 233 98 376.8 98 543.2c0 230.6 185.4 417.8 413.8 417.8 228.4 0 413.6-187 413.6-417.8C925.4 376.6 829 232.4 688.6 165.4z" p-id="2072" fill="#d81e06"></path><path d="M511 482.8c32.6 0 59.8-26.8 59.8-59.6L570.8 124.6c0-33-27.2-59.6-59.8-59.6-32.6 0-59.8 26.8-59.8 59.6l0 298.4C451.4 456 478.6 482.8 511 482.8z" p-id="2073" fill="#d81e06"></path></svg>

After

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -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="1590478482401" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2071" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M688.6 165.4l0 102c88.4 58.6 147.6 159.8 147.6 275 0 181.4-145.4 328.4-325 328.4S186 723.8 186 542.4c-0.2-115.2 59.2-216.6 147.6-275.2L333.6 166C195 233 98 376.8 98 543.2c0 230.6 185.4 417.8 413.8 417.8 228.4 0 413.6-187 413.6-417.8C925.4 376.6 829 232.4 688.6 165.4z" p-id="2072" fill="#1afa29"></path><path d="M511 482.8c32.6 0 59.8-26.8 59.8-59.6L570.8 124.6c0-33-27.2-59.6-59.8-59.6-32.6 0-59.8 26.8-59.8 59.6l0 298.4C451.4 456 478.6 482.8 511 482.8z" p-id="2073" fill="#1afa29"></path></svg>

After

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

@ -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="1588139977802" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2725" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M233.344 393.536c7.54-7.056 19.6-6.592 27.244 1.052 7.648 7.644 8.112 19.708 1.052 27.248-51.884 51.888-49.908 138.296 4.4 192.604 7.416 7.876 7.5 19.936 0.192 27.24-7.304 7.308-19.364 7.224-27.24-0.188-69.92-69.92-72.46-181.148-5.648-247.956z" fill="#07c160" p-id="2726"></path><path d="M175.124 337.436c5.06-5.06 12.556-6.908 19.668-4.852a21.808 21.808 0 0 1 14.816 14.816c2.056 7.116 0.208 14.612-4.848 19.668-81.976 81.976-78.856 218.472 6.956 304.28a21.448 21.448 0 0 1 6.328 14.628 19.56 19.56 0 0 1-5.688 14.348 19.56 19.56 0 0 1-14.34 5.672 21.448 21.448 0 0 1-14.616-6.328C81.24 597.52 77.544 435.016 175.12 337.436zM789.984 393.536c-7.54-7.056-19.6-6.592-27.248 1.052-7.64 7.644-8.108 19.708-1.048 27.248 51.884 51.888 49.908 138.296-4.4 192.604-7.416 7.876-7.5 19.936-0.196 27.24 7.308 7.308 19.368 7.224 27.24-0.188 69.924-69.92 72.46-181.148 5.652-247.956z" fill="#07c160" p-id="2727"></path><path d="M848.2 337.436c-5.056-5.06-12.552-6.908-19.664-4.852a21.808 21.808 0 0 0-14.82 14.816c-2.056 7.116-0.204 14.612 4.852 19.668 81.976 81.976 78.856 218.472-6.956 304.28a21.448 21.448 0 0 0-6.328 14.628 19.56 19.56 0 0 0 5.688 14.348 19.56 19.56 0 0 0 14.34 5.672 21.448 21.448 0 0 0 14.616-6.328c102.16-102.144 105.856-264.652 8.276-362.232zM521.52 318.756c-84.1 0-152.272-71.36-152.272-159.38S437.42 0 521.52 0s152.268 71.356 152.268 159.376c0 88.024-68.172 159.38-152.268 159.38z m0-63.752c50.452 0 91.36-42.812 91.36-95.628 0-52.812-40.908-95.624-91.36-95.624-50.46 0-91.364 42.812-91.364 95.624 0 52.816 40.904 95.628 91.36 95.628z" fill="#07c160" p-id="2728"></path><path d="M548.16 934.8v-196.828l45.556-12.42c3.312-0.904 6.08-2.024 9.856-4 7.72-4.024 13.52-9.616 18-17.332 6.16-10.628 9-21.58 11.764-56.3l16.64-208.984c0.12-1.54 0.184-3.088 0.184-4.632 0-30.808-23.86-55.784-53.296-55.784H445.388c-1.476 0-2.952 0.064-4.424 0.196-29.332 2.56-51.128 29.52-48.684 60.22l16.64 208.984c2.76 34.72 5.6 45.672 11.76 56.3 4.48 7.716 10.284 13.308 18.004 17.336 3.892 2.032 6.728 3.168 10.212 4.088l45.972 12.172V934.8c0 9.46 1.144 14.784 2.972 18.364 0.96 1.88 2 2.968 3.796 3.972 3.42 1.916 8.504 3.108 17.544 3.108h4.672c9.04 0 14.128-1.192 17.548-3.108 1.792-1 2.836-2.096 3.792-3.972 1.828-3.58 2.972-8.904 2.972-18.364z m60.912 0c0 19.972-3.536 35.448-10.172 48.432-6.632 12.988-16.372 23.18-28.776 30.124-12.408 6.944-27.192 10.644-46.272 10.644h-4.672c-19.08 0-33.86-3.7-46.268-10.64-12.408-6.948-22.144-17.14-28.78-30.128-6.636-12.984-10.168-28.46-10.168-48.428v-147.352c-8.552-2.264-15.512-5.22-22.46-8.844-18.008-9.4-32.44-23.3-42.88-41.3-10.444-18.004-16.612-36.48-20.4-84.092l-16.64-208.984c-5.24-65.792 41.468-123.568 104.32-129.048 3.156-0.276 6.32-0.412 9.484-0.412h151.48c63.068 0 114.2 53.516 114.2 119.532 0 3.312-0.132 6.624-0.4 9.928l-16.636 208.984c-3.792 47.616-9.96 66.088-20.4 84.092-10.44 18-24.876 31.9-42.88 41.3-6.736 3.512-13.484 6.4-21.68 8.636v147.56z" fill="#07c160" p-id="2729"></path></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 807 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -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="1588148971252" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3537" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M371.900488 324.383317L549.161473 515.928023 372.614674 699.331009c-12.141163 12.712512-16.711954 30.852839-11.855489 47.70763 4.856465 16.854791 18.426001 29.852978 35.42363 34.138094 16.997629 4.142279 34.995118-0.999861 47.279118-13.712373l208.82801-216.826893c17.997489-18.711675 18.283164-48.278979 0.714186-67.419166l-208.82801-225.682801c-11.855489-13.141024-29.852978-18.854512-47.136281-15.140745-17.283303 3.856605-31.138513 16.711954-36.280653 33.566746-5.284977 17.140466-0.999861 35.566467 11.141303 48.421816z m0 0" fill="#07c160" p-id="3538"></path><path d="M982.958097 313.099177C880.972325 70.990096 612.295522-54.420979 361.330534 22.996792 110.365546 100.271725-41.18474 355.236156 10.808006 612.628819c51.992747 257.392663 290.530897 433.51095 551.923002 407.371739C823.980276 993.861347 1022.952518 774.034872 1022.952518 511.357233c0.142837-67.990515-13.426698-135.552518-39.994421-198.258056zM804.26874 802.316641c-138.837774 138.837774-356.236016 160.263356-519.356116 51.135723C121.649686 744.467569 58.229962 535.353885 133.362338 354.093458c74.989538-181.403264 267.81978-284.388897 460.221509-246.108523 192.544567 38.280374 331.096666 207.2568 331.096666 403.515135 0.285674 109.127633-42.994002 213.827312-120.411773 290.816571z m0 0" fill="#07c160" p-id="3539"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 571 B

@ -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="1588040144621" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9755" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M609.8 138.3l1.8 2.4 311.6 455.9c13.3 19.5 0.3 45.6-22.5 47.5l-2.6 0.1h-88l140.9 204c13.4 19.5 0.5 45.7-22.4 47.6l-2.6 0.1H210.9v-60.8h656.9l-280-405.7-85.2 128.8c-12.2 18.4-39 17.9-50.8-0.1l-1.5-2.6-117.5-223.3-212 424L66.3 729l238.5-477c10.6-21.3 40.1-22.4 52.6-3.1l1.5 2.5 121.2 230.3 81.7-123.4c11.3-17.1 35.7-18.2 48.5-2.9l1.8 2.4L768 583.3h72.4L585.6 210.4 500.1 327 451 291l110.8-151.1c11.9-16.2 35.5-16.5 48-1.6z" p-id="9756" fill="#07c160"></path></svg>

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

@ -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="1588125423780" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3064" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M511.381326 3.141578C229.474209 3.141578 0.949 231.666788 0.949 513.572658c0 281.900886 228.525209 510.426095 510.432326 510.426096 281.89964 0 510.423603-231.849974 510.423603-510.426096 0-281.907117-228.525209-510.43108-510.423603-510.43108z m-26.93084 981.529501V792.245981h56.344038v192.425098M276.468283 410.592195h15.352734V630.633523h-15.352734V410.592195z m-33.11555-36.852794h-10.821685V358.384174h557.690587v15.353981H243.352733z m373.559953-61.92062h-213.093966v-59.815851h213.093966v59.815851z m115.420914 98.773414h14.104079V633.12585H732.3336V410.592195z m-347.678383 4.314219h255.934576V602.594844l-57.642541 140.99842H442.151957L384.655217 602.594844V414.906414z m191.904201 377.339567h31.496784l71.881205-181.676937V410.592195h17.726677v253.161863h82.836229V410.592195h47.673232v-87.820883h-68.051745v-66.698411h-42.238713v66.698411h-58.479963v-111.891779H363.353297v111.891779h-58.739165v-66.698411h-41.980757v66.698411h-68.207516v87.820883h47.68071v253.161863h82.829998V410.592195h17.879955v199.975603l72.190254 181.676937h31.494291V978.961157C223.612256 953.13691 35.441561 746.273762 42.807633 490.936098 59.948613 239.1824 259.191471 43.722894 511.532112 43.722894 761.954907 48.600378 958.848747 240.509564 979.011673 484.70528 987.510509 737.550617 826.570979 949.748591 576.559418 983.945811m0 4.984655" fill="#07c160" p-id="3065"></path></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

@ -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="1588125179839" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2796" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M961.995752 0.729345H59.68029C26.780212 0.729345 0 27.509557 0 60.409635v902.318777c0 32.911681 26.778555 59.68029 59.68029 59.68029h902.31712c32.908366 0 59.68029-26.765294 59.68029-59.68029V60.409635C1021.676042 27.509557 994.900803 0.729345 961.995752 0.729345z m1.728879 945.608702c-0.009946 10.005284-8.115618 18.112613-18.120901 18.125874H76.075628c-9.998653-0.013261-18.104325-8.117275-18.117586-18.125874V76.796685c0.013261-9.996996 8.117275-18.097695 18.117586-18.115929h869.529759c10.001968 0.004973 18.110956 8.118933 18.120902 18.115929l-0.001658 869.541362z m-607.139705-342.26159h40.094069v-152.726444h-40.094069v152.726444z m-165.967366 124.61352l101.21813 101.216472 28.348304-28.340015-101.2115-101.224761-28.354934 28.348304z m330.948459-258.244393c-1.117224 0-2.166485 0.038125-3.17928 0.102771v-19.191712h-40.092411v152.726444h40.092411V584.884745c1.012795 0.071277 2.065372 0.104429 3.17928 0.104429 31.636985 0 57.271795-25.639782 57.271795-57.271795s-25.64144-57.271795-57.271795-57.271795zM433.081585 801.558146l28.341673 28.346646 101.21813-101.216473-28.351619-28.351619-101.208184 101.221446zM231.687956 584.980886c1.135457 0 2.183061-0.033152 3.194199-0.097799v19.190055h40.080808V451.348355H234.882155v19.198343a43.525304 43.525304 0 0 0-3.187568-0.102772c-31.630355 0-57.270137 25.63481-57.270137 57.270138 0 31.63367 25.639782 57.266822 57.263506 57.266822z m493.769697 233.431753h101.799949V463.581456h-101.799949v354.831183z m15.266512-339.569645h71.276871l-1.650971 324.308107h-69.6259V478.842994z m16.499767 307.906138h36.881637V495.062626h-36.881637v291.686506zM486.834292 338.95799c-13.472986 13.472986-13.472986 34.536131 0 48.009117 13.472986 13.471329 34.537788 13.471329 48.005801 0 13.474644-13.472986 13.474644-34.536131 0-48.009117-14.323336-13.516084-35.384823-13.516084-48.005801 0z m-93.120746-54.843408l34.53613 39.610049c45.492877-52.231028 120.492722-52.231028 165.9856 0l34.53613-39.610049c-65.704015-74.144522-170.164413-74.144522-235.05786 0z m-59.817871-68.260037l35.389795 40.460399c78.366434-90.176845 204.743642-90.176845 283.110075 0l35.389796-40.460399c-96.918311-111.196892-256.167418-111.196892-353.889666 0z" fill="#07C160" p-id="2797"></path></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -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="1588148953856" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3132" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M982.958097 313.099177C880.972325 70.990096 612.295522-54.420979 361.330534 22.996792 110.365546 100.271725-41.18474 355.236156 10.808006 612.628819c51.992747 257.392663 290.530897 433.51095 551.923002 407.371739C823.980276 993.861347 1022.952518 774.034872 1022.952518 511.357233c0.142837-67.990515-13.426698-135.552518-39.994421-198.258056zM804.26874 802.316641c-138.837774 138.837774-356.236016 160.263356-519.356116 51.135723C121.649686 744.467569 58.229962 535.353885 133.362338 354.093458c74.989538-181.403264 267.81978-284.388897 460.221509-246.108523 192.544567 38.280374 331.096666 207.2568 331.096666 403.515135 0.285674 109.127633-42.994002 213.827312-120.411773 290.816571z m0 0" fill="#07c160" p-id="3133"></path><path d="M647.147803 301.815037H376.756953c-41.137118 0-74.989538 33.709583-74.989538 74.989538V647.052588c0 41.279955 33.709583 74.989538 74.989538 74.989538h270.248013c41.279955 0 74.989538-33.709583 74.989538-74.989538V376.804575c0.142837-41.137118-33.709583-74.989538-74.846701-74.989538z" fill="#07c160" p-id="3134"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 839 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

@ -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="1588125713142" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2449" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M928 96H96c-35.296 0-64 28.704-64 64v704c0 35.296 28.704 64 64 64h832c35.296 0 64-28.704 64-64V160c0-35.296-28.704-64-64-64zM96 864V160h832l0.064 704H96z" fill="#cccccc" p-id="2450"></path><path d="M832 192H192c-35.296 0-64 28.704-64 64v512c0 35.296 28.704 64 64 64h640c35.296 0 64-28.704 64-64V256c0-35.296-28.704-64-64-64zM192 768V256h640l0.064 512H192z" fill="#cccccc" p-id="2451"></path><path d="M672 288H352a32 32 0 0 0 0 64h320a32 32 0 1 0 0-64z" fill="#cccccc" p-id="2452"></path></svg>

After

Width:  |  Height:  |  Size: 872 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

@ -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="1588125713142" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2449" xmlns:xlink="http://www.w3.org/1999/xlink" width="1024" height="1024"><defs><style type="text/css"></style></defs><path d="M928 96H96c-35.296 0-64 28.704-64 64v704c0 35.296 28.704 64 64 64h832c35.296 0 64-28.704 64-64V160c0-35.296-28.704-64-64-64zM96 864V160h832l0.064 704H96z" fill="#07c160" p-id="2450"></path><path d="M832 192H192c-35.296 0-64 28.704-64 64v512c0 35.296 28.704 64 64 64h640c35.296 0 64-28.704 64-64V256c0-35.296-28.704-64-64-64zM192 768V256h640l0.064 512H192z" fill="#07c160" p-id="2451"></path><path d="M672 288H352a32 32 0 0 0 0 64h320a32 32 0 1 0 0-64z" fill="#07c160" p-id="2452"></path></svg>

After

Width:  |  Height:  |  Size: 872 B

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

Loading…
Cancel
Save