feat: 增加警示信息图标渲染
@ -325,6 +325,39 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"4009":{
|
||||
"table": "OMDB_WARNINGSIGN",
|
||||
"code": 4009,
|
||||
"name": "警示信息",
|
||||
"zoomMin": 15,
|
||||
"zoomMax": 20,
|
||||
"transformer": [
|
||||
{
|
||||
"k": "geometry",
|
||||
"v": "~",
|
||||
"klib": "geometry",
|
||||
"vlib": "translateRight()"
|
||||
},
|
||||
{
|
||||
"k": "geometry",
|
||||
"v": "~",
|
||||
"klib": "geometry",
|
||||
"vlib": "generateS2EReferenceLine()"
|
||||
},
|
||||
{
|
||||
"k": "geometry",
|
||||
"v": "~",
|
||||
"klib": "geometry",
|
||||
"vlib": "generateDirectReferenceLine('',3)"
|
||||
},
|
||||
{
|
||||
"k": "geometry",
|
||||
"v": "~",
|
||||
"klib": "geometry",
|
||||
"vlib": "obtainReferenceDynamicSrc('assets:omdb/appendix/1105_','_0.svg','typeCode')"
|
||||
}
|
||||
]
|
||||
},
|
||||
"4010":{
|
||||
"table": "OMDB_ELECTRONICEYE",
|
||||
"code": 4010,
|
||||
|
@ -57,7 +57,7 @@ class ImportConfig {
|
||||
for ((index, value) in params.withIndex()) {
|
||||
// 前2个参数确定为对象本身和RenderEntity,因此自定义参数从index+2开始设置
|
||||
if (methodParams.size>index+2) {
|
||||
callByParams[methodParams[index+2]] = value
|
||||
callByParams[methodParams[index+2]] = value.replace("'", "")
|
||||
}
|
||||
}
|
||||
when(val result = method.callBy(callByParams)) { // 如果方法返回的数据类型是boolean,且返回为false,则该数据不处理
|
||||
|
@ -146,6 +146,7 @@ class ImportOMDBHelper @AssistedInject constructor(
|
||||
val realm = Realm.getDefaultInstance()
|
||||
// 先获取当前配置的所有图层的个数,方便后续计算数据解析进度
|
||||
var tableNum = 0
|
||||
var processIndex = 0
|
||||
for (importConfig in importConfigList) {
|
||||
tableNum += importConfig.tableMap.size
|
||||
}
|
||||
@ -457,7 +458,7 @@ class ImportOMDBHelper @AssistedInject constructor(
|
||||
}
|
||||
}
|
||||
// 1个文件发送一次flow流
|
||||
emit("${index + 1}/${tableNum}")
|
||||
emit("${++processIndex}/${tableNum}")
|
||||
// 如果当前解析的是OMDB_RD_LINK数据,将其缓存在预处理类中,以便后续处理其他要素时使用
|
||||
if (currentConfig.table == "OMDB_RD_LINK") {
|
||||
importConfig.preProcess.cacheRdLink =
|
||||
|
@ -661,4 +661,85 @@ class ImportPreProcess {
|
||||
WKTWriter(3).write(GeometryTools.getPolygonGeometry(geometry.coordinates))
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 生成动态src字段-辅助图层,一般用于显示带角度的图标
|
||||
* @param renderEntity 要被处理的RenderEntity
|
||||
* @param prefix 图片的前缀(一般还需要指定图片对应的文件夹)
|
||||
* @param suffix 图片的后缀(根据codeName获取到的code后,匹配图片的后缀,还包含code码后的其他字符串内容)
|
||||
* @param codeName 数据对应的code字段的字段名
|
||||
* */
|
||||
fun obtainReferenceDynamicSrc(renderEntity: RenderEntity, prefix: String, suffix: String, codeName: String) {
|
||||
if (codeName.isNullOrBlank()) {
|
||||
return
|
||||
}
|
||||
|
||||
// 根据数据或angle计算方向对应的角度和偏移量
|
||||
val geometry = renderEntity.wkt
|
||||
var radian = 0.0 // geometry的角度,如果是点,获取angle,如果是线,获取最后两个点的方向
|
||||
var pointStartArray = mutableListOf<Coordinate>()
|
||||
if (Geometry.TYPENAME_POINT == geometry?.geometryType) {
|
||||
val point = Coordinate(geometry?.coordinate)
|
||||
pointStartArray.add(point)
|
||||
var angle =
|
||||
if (renderEntity?.properties?.get("angle") == null) 0.0 else renderEntity?.properties?.get(
|
||||
"angle"
|
||||
)?.toDouble()!!
|
||||
// angle角度为与正北方向的顺时针夹角,将其转换为与X轴正方向的逆时针夹角,即为正东方向的夹角
|
||||
angle = (450 - angle) % 360
|
||||
radian = Math.toRadians(angle)
|
||||
} else if (Geometry.TYPENAME_LINESTRING == geometry?.geometryType) {
|
||||
var coordinates = geometry.coordinates
|
||||
val p1: Coordinate = coordinates.get(coordinates.size - 2)
|
||||
val p2: Coordinate = coordinates.get(coordinates.size - 1)
|
||||
// 计算线段的方向
|
||||
radian = Angle.angle(p1, p2)
|
||||
pointStartArray.add(p1)
|
||||
} else if (Geometry.TYPENAME_POLYGON == geometry?.geometryType) {
|
||||
// 记录下面数据的每一个点位
|
||||
pointStartArray.addAll(geometry.coordinates)
|
||||
// 获取当前的面数据对应的方向信息
|
||||
var angle = if (renderEntity?.properties?.get("angle") == null) {
|
||||
if (renderEntity?.properties?.get("heading") == null) {
|
||||
0.0
|
||||
} else {
|
||||
renderEntity?.properties?.get("heading")?.toDouble()!!
|
||||
}
|
||||
} else renderEntity?.properties?.get("angle")?.toDouble()!!
|
||||
|
||||
angle = (450 - angle) % 360
|
||||
radian = Math.toRadians(angle)
|
||||
}
|
||||
|
||||
// 计算偏移距离
|
||||
var dx: Double = GeometryTools.convertDistanceToDegree(
|
||||
defaultTranslateDistance,
|
||||
geometry?.coordinate?.y!!
|
||||
) * Math.cos(radian)
|
||||
var dy: Double = GeometryTools.convertDistanceToDegree(
|
||||
defaultTranslateDistance,
|
||||
geometry?.coordinate?.y!!
|
||||
) * Math.sin(radian)
|
||||
|
||||
for (pointStart in pointStartArray) {
|
||||
val coorEnd = Coordinate(pointStart.getX() + dx, pointStart.getY() + dy, pointStart.z)
|
||||
|
||||
val dynamicSrcReference = ReferenceEntity()
|
||||
dynamicSrcReference.renderEntityId = renderEntity.id
|
||||
dynamicSrcReference.name = "${renderEntity.name}动态icon"
|
||||
dynamicSrcReference.table = renderEntity.table
|
||||
dynamicSrcReference.zoomMin = renderEntity.zoomMin
|
||||
dynamicSrcReference.zoomMax = renderEntity.zoomMax
|
||||
dynamicSrcReference.taskId = renderEntity.taskId
|
||||
dynamicSrcReference.enable = renderEntity.enable
|
||||
// 与原有方向指向平行的线
|
||||
dynamicSrcReference.geometry =
|
||||
WKTWriter(3).write(GeometryTools.createLineString(arrayOf(pointStart, coorEnd)))
|
||||
dynamicSrcReference.properties["qi_table"] = renderEntity.table
|
||||
dynamicSrcReference.properties["type"] = "dynamicSrc"
|
||||
val code = renderEntity.properties[codeName]
|
||||
dynamicSrcReference.properties["src"] = "${prefix}${code}${suffix}"
|
||||
Realm.getDefaultInstance().insert(dynamicSrcReference)
|
||||
}
|
||||
}
|
||||
}
|
@ -129,7 +129,7 @@ class PersonalCenterFragment(private var indoorDataListener: ((Boolean) -> Unit?
|
||||
// 定位到指定位置
|
||||
niMapController.mMapView.vtmMap.animator()
|
||||
// .animateTo(GeoPoint( 40.05108004733645, 116.29187746293708 ))
|
||||
.animateTo(GeoPoint( 40.45403725443716, 115.81488271796577))
|
||||
.animateTo(GeoPoint( 40.45250049995882, 115.85967482434108 ))
|
||||
}
|
||||
R.id.personal_center_menu_open_all_layer -> {
|
||||
MapParamUtils.setDataLayerEnum(DataLayerEnum.SHOW_ALL_LAYERS)
|
||||
|
@ -171,7 +171,7 @@ class PersonalCenterViewModel @Inject constructor(
|
||||
}
|
||||
} else {
|
||||
val newTask = TaskBean()
|
||||
newTask.id = 9999
|
||||
newTask.id = -1
|
||||
importOMDBHelper.importOmdbZipFile(importOMDBHelper.omdbFile, newTask).collect {
|
||||
Log.d("importOMDBData", it)
|
||||
}
|
||||
|
@ -256,6 +256,8 @@
|
||||
<xs:attribute name="rotate" default="true" type="xs:boolean" use="optional"/>
|
||||
<!-- 设置是否支持图标压盖,如果为true,则同点位图标不避让,允许压盖,否则支持自动避让 -->
|
||||
<xs:attribute name="gland" default="false" type="xs:boolean" use="optional"/>
|
||||
<!-- 原图标旋转角度,默认情况下应该使用以X轴为正方向的图标,此处可设置原图标的旋转角度,在渲染时自动对图标进行旋转,仅支持线要素 -->
|
||||
<xs:attribute name="degree" default="0" type="xs:float" use="optional"/>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="extrusion">
|
||||
|
@ -2348,5 +2348,16 @@
|
||||
</m>
|
||||
</m>
|
||||
|
||||
<!-- 警示信息 -->
|
||||
<m v="OMDB_WARNINGSIGN">
|
||||
<m k="type" v="dynamicSrc">
|
||||
<symbol repeat="false" repeat-gap="2000" repeat-start="0" rotate="true"
|
||||
src="@src" symbol-height="24" symbol-width="24" degree="90"></symbol>
|
||||
</m>
|
||||
<m k="type" v="s_2_e">
|
||||
<line use="s2e" />
|
||||
</m>
|
||||
</m>
|
||||
|
||||
</m>
|
||||
</rendertheme>
|
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="30px" height="28px" viewBox="0 0 30 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>qita_icon</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0.0002 0.672 29.465 0.672 29.465 27.9996 0.0002 27.9996"></polygon>
|
||||
</defs>
|
||||
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="工具栏汇总复制" transform="translate(-432.000000, -394.000000)">
|
||||
<g id="qita_icon-2" transform="translate(432.000000, 393.000000)">
|
||||
<g id="qita_icon">
|
||||
<g id="编组复制-25">
|
||||
<g id="编组" transform="translate(0.000000, 0.328000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-2"></g>
|
||||
<path d="M28.5572,27.9986 C29.0572,27.9986 29.4652,27.5706 29.4652,27.0356 C29.4652,26.8666 29.4212,26.6986 29.3432,26.5536 L15.5192,1.1546 C15.3582,0.8566 15.0582,0.6716 14.7302,0.6716 C14.4082,0.6716 14.1062,0.8566 13.9452,1.1546 L0.1172,26.5546 C0.0432,26.6996 0.0002,26.8686 0.0002,27.0366 C0.0002,27.5666 0.4062,27.9996 0.9092,27.9996 L28.5572,27.9986 Z" id="Fill-1" fill="#100808" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
<polygon id="Fill-3" fill="#F7BD42" points="25.4156 25.4369 4.0526 25.4369 14.7326 5.8169"></polygon>
|
||||
</g>
|
||||
<circle id="椭圆形" fill="#000000" cx="10.3" cy="19.3" r="1.3"></circle>
|
||||
<circle id="椭圆形复制-9" fill="#000000" cx="14.8" cy="19.3" r="1.3"></circle>
|
||||
<circle id="椭圆形复制-10" fill="#000000" cx="19.3" cy="19.3" r="1.3"></circle>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>5</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-209.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="5" transform="translate(2.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-180" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="5复制-8" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="6" y="13">5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>10</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-248.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="10" transform="translate(41.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-192" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="10复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="4" y="13">10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>15</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-287.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="15" transform="translate(80.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-185" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="15复制-9" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="4" y="13">15</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>20</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-326.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="20" transform="translate(119.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-197" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="20复制-9" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">20</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>25</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-366.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="25" transform="translate(159.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-182" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="25复制-8" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">25</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>30</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-405.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="30" transform="translate(198.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-194" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="30复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">30</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>35</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-444.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="35" transform="translate(237.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-189" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="35复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">35</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>40</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-483.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="40" transform="translate(276.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-201" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="40复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">40</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>45</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-523.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="45" transform="translate(316.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-187" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="45复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">45</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>50</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-562.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="50" transform="translate(355.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-199" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="50复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">50</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>55</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-603.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="55" transform="translate(396.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-184" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="55复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">55</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>60</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-642.000000, -1408.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="60" transform="translate(435.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-196" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="60复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">60</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>65</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-209.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="65" transform="translate(2.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-191" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="65复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">65</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>70</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-248.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="70" transform="translate(41.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-203" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="70复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">70</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>75</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-287.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="75" transform="translate(80.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-181" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="75复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">75</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>80</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-326.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="80" transform="translate(119.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-193" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="80复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">80</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>90</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-405.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="90" transform="translate(198.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-198" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="90复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="3" y="13">90</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>100</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-483.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="100" transform="translate(276.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-195" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="100复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="1" y="13">100</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>110</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-562.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="110" transform="translate(355.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-202" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="110复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="2" y="13">110</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>120</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-642.000000, -1452.000000)">
|
||||
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
|
||||
<g id="120" transform="translate(435.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-200" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="120复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
|
||||
<tspan x="1" y="13">120</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>5</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-211.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="5">
|
||||
<circle id="椭圆形复制-51" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="5复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="8" y="15">5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 963 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>10</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-250.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="10" transform="translate(39.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-63" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="10复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="6" y="15">10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1010 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>15</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-289.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="15" transform="translate(78.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-56" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="15复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="6" y="15">15</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1010 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>20</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-328.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="20" transform="translate(117.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-68" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="20复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">20</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>25</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-368.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="25" transform="translate(157.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-53" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="25复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">25</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>30</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-407.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="30" transform="translate(196.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-65" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="30复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">30</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>35</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-446.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="35" transform="translate(235.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-60" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="35复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">35</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>40</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-485.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="40" transform="translate(274.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-72" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="40复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">40</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>45</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-525.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="45" transform="translate(314.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-58" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="45复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">45</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22"><defs><style>.h{fill:#7074ff;}.i{fill:#ececec;font-family:PingFangHK-Medium-B5pc-H, 'PingFang HK';font-size:10px;font-weight:500;isolation:isolate;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><circle id="g" class="h" cx="11" cy="11" r="11"/><text class="i" transform="translate(5 15)"><tspan x="0" y="0">50</tspan></text></g></g></g></g></svg>
|
After Width: | Height: | Size: 482 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>55</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-605.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="55" transform="translate(394.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-55" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="55复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">55</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>60</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-644.000000, -1215.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="60" transform="translate(433.000000, 0.000000)">
|
||||
<circle id="椭圆形复制-67" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="60复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">60</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>65</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-211.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="65" transform="translate(0.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-62" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="65复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">65</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1010 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>70</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-250.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="70" transform="translate(39.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-74" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="70复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">70</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>75</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-289.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="75" transform="translate(78.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-52" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="75复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">75</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1011 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>80</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-328.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="80" transform="translate(117.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-64" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="80复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">80</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1012 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>90</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-407.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="90" transform="translate(196.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-69" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="90复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="5" y="15">90</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1012 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>100</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-485.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="100" transform="translate(274.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-66" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="100复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="15">100</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1016 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>110</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-564.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="110" transform="translate(353.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-73" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="110复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="4" y="15">110</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1016 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>120</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-644.000000, -1259.000000)">
|
||||
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
|
||||
<g id="120" transform="translate(433.000000, 44.000000)">
|
||||
<circle id="椭圆形复制-71" fill="#7074FF" cx="11" cy="11" r="11"></circle>
|
||||
<text id="120复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="15">120</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1016 B |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>5</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1130.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="5" transform="translate(42.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-104" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="5复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="6" y="13">5</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-4" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>10</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1169.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="10" transform="translate(81.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-116" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="10复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="4" y="13">10</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-8" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>15</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1201.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="15" transform="translate(113.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-109" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="15复制-6" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="4" y="13">15</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-9" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>20</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1240.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="20" transform="translate(152.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-121" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="20复制-6" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">20</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-10" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>25</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1280.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="25" transform="translate(192.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-106" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="25复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">25</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-11" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>30</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1319.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="30" transform="translate(231.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-118" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="30复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">30</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-15" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>35</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1358.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="35" transform="translate(270.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-113" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="35复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">35</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-16" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>40</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1397.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="40" transform="translate(309.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-125" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="40复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">40</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-19" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>45</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1437.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="45" transform="translate(349.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-111" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="45复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">45</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-22" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>50</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1477.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="50" transform="translate(389.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-123" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="50复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">50</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-23" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>55</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1517.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="55" transform="translate(429.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-108" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="55复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">55</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-24" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>60</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1556.000000, -1546.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="60" transform="translate(468.000000, 2.000000)">
|
||||
<circle id="椭圆形复制-120" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="60复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">60</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-25" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>65</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1091.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="65" transform="translate(3.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-115" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="65复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">65</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-5" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>70</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1130.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="70" transform="translate(42.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-127" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="70复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">70</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-6" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>75</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1169.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="75" transform="translate(81.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-105" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="75复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">75</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-7" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>80</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1208.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="80" transform="translate(120.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-117" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="80复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">80</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-14" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>90</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1287.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="90" transform="translate(199.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-122" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="90复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="3" y="13">90</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-12" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>100</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1365.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="100" transform="translate(277.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-119" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="100复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="1" y="13">100</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-17" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>110</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1444.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="110" transform="translate(356.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-126" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="110复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="2" y="13">110</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-21" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>120</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-1524.000000, -1590.000000)">
|
||||
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
|
||||
<g id="120" transform="translate(436.000000, 46.000000)">
|
||||
<circle id="椭圆形复制-124" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
|
||||
<text id="120复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
|
||||
<tspan x="1" y="13">120</tspan>
|
||||
</text>
|
||||
<g id="编组-8复制-26" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
|
||||
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
|
||||
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
|
||||
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
|
||||
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>5</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-215.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="5">
|
||||
<rect id="矩形" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="9" y="12">5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 966 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>10</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-254.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="10" transform="translate(39.000000, 0.000000)">
|
||||
<rect id="矩形复制-2" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="7" y="12">10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1020 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>15</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-293.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="15" transform="translate(78.000000, 0.000000)">
|
||||
<rect id="矩形复制-5" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="7" y="12">15</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1020 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>20</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-332.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="20" transform="translate(117.000000, 0.000000)">
|
||||
<rect id="矩形复制-6" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">20</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>25</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-369.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="25" transform="translate(154.000000, 0.000000)">
|
||||
<rect id="矩形复制-7" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">25</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>30</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-406.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="30" transform="translate(191.000000, 0.000000)">
|
||||
<rect id="矩形复制-8" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">30</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>35</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-443.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="35" transform="translate(228.000000, 0.000000)">
|
||||
<rect id="矩形复制-9" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">35</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>40</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-480.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="40" transform="translate(265.000000, 0.000000)">
|
||||
<rect id="矩形复制-10" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">40</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>45</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-517.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="45" transform="translate(302.000000, 0.000000)">
|
||||
<rect id="矩形复制-11" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">45</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>50</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-554.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="50" transform="translate(339.000000, 0.000000)">
|
||||
<rect id="矩形复制-12" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">50</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>55</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-591.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="55" transform="translate(376.000000, 0.000000)">
|
||||
<rect id="矩形复制-13" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">55</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>60</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-628.000000, -1623.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="60" transform="translate(413.000000, 0.000000)">
|
||||
<rect id="矩形复制-14" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">60</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>65</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-215.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="65" transform="translate(0.000000, 41.000000)">
|
||||
<rect id="矩形复制-15" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">65</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1021 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>70</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-254.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="70" transform="translate(39.000000, 41.000000)">
|
||||
<rect id="矩形复制-16" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">70</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>75</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-293.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="75" transform="translate(78.000000, 41.000000)">
|
||||
<rect id="矩形复制-17" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">75</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>80</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-332.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="80" transform="translate(117.000000, 41.000000)">
|
||||
<rect id="矩形复制-17" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">80</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1023 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>85</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-369.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="85" transform="translate(154.000000, 41.000000)">
|
||||
<rect id="矩形复制-20" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">85</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1023 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>90</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-406.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="90" transform="translate(191.000000, 41.000000)">
|
||||
<rect id="矩形复制-21" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">90</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1023 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>95</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-443.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="95" transform="translate(228.000000, 41.000000)">
|
||||
<rect id="矩形复制-22" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="6" y="12">95</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1023 B |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>100</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-480.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="100" transform="translate(265.000000, 41.000000)">
|
||||
<rect id="矩形复制-23" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="4" y="12">100</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>105</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-517.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="105" transform="translate(302.000000, 41.000000)">
|
||||
<rect id="矩形复制-24" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="4" y="12">105</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>110</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-554.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="110" transform="translate(339.000000, 41.000000)">
|
||||
<rect id="矩形复制-25" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="5" y="12">110</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>115</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-591.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="115" transform="translate(376.000000, 41.000000)">
|
||||
<rect id="矩形复制-26" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="5" y="12">115</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>120</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-汇总说明" transform="translate(-628.000000, -1664.000000)">
|
||||
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
|
||||
<g id="120" transform="translate(413.000000, 41.000000)">
|
||||
<rect id="矩形复制-27" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
|
||||
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
|
||||
<tspan x="4" y="12">120</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹閹间礁纾圭€瑰嫭鍣磋ぐ鎺戠倞闁哄啫鐗婇崑鎰版煕濞嗗繘宕伴幇纾藉ù锝嗗灊閸氭煕鐎d户闁瑰箍鍨归埞鎴犫偓锝忕床婵犵數濮撮敃銈夊箠閹扮増鏅繝濠傚暊閺€浠嬫煃閳轰礁鏆㈢痪鍋撶紓鍌氬€烽懗鑸垫叏闂堟稓鏆嗙紒瀣仢鐓ょ紒鐘茬秺閺岋綁骞囩徊璇测攽濞叉牠鍩為幋锔芥櫖闁告洖鎽嬫繝纰樷偓鎶芥煙閸嬫捇骞栨潏鍓ф偧闁绘挻鎹囬弻锝夋偐閸欏绐涢梺绋块幐姝岀亱闂佸憡鍔栧Σ姊洪柅鐐插閸樼敻姊洪懝鏉垮惞婵" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾归柟闂寸绾剧懓鐎f崳闁绘閵嗘帒閿濆懍澹曟俊銈囧Х閸嬬偤鎮ч悩鑼嫚濞村濠电偛妫欓崝鏇㈠礉閸涘瓨鈷戦梻鍫熺〒缁犲啿鈹戦弨杈╃矉閹烘鍤冮柍鍝勫暟閿涙繃绻涙潏鍓у缂佺懇瀹暶洪悡娆撴煕濞戞﹫鏀婚柛濠冨姍閺" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
|
||||
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
|
||||
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
|
||||
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<path id="path14_8_" fill="#FEFEFE" stroke="#D91C0F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="
|
||||
M1.478,15.001c0,7.454,6.066,13.52,13.522,13.52s13.522-6.064,13.522-13.52S22.459,1.48,15,1.48
|
||||
C7.545,1.48,1.478,7.546,1.478,15.001z"/>
|
||||
<g>
|
||||
<path id="path3387_3_" sodipodi:nodetypes="cczcczccscccccccccscczcczccc" stroke="#000000" stroke-width="0.25" d="
|
||||
M15.771,25.621l-2.306-0.798c0,0-1.258-0.461-2.427-0.922c-0.721-0.25-1.032-0.43-1.254-1.478v-1.95c0,0,0.013-0.022-0.002-0.967
|
||||
c-0.015-0.919,1.237-1.53,1.237-1.53l4.749-3.345c0,0,0.708-0.333,1.532-1.302c0.885-1.041,0.859-2.367,0.859-2.367l0.019-4.127
|
||||
l4.221,3.882l0.067-2.41L17.16,3.367L10.269,8.3l0.072,2.301l5.922-3.884L16.265,8.6c0,0,0.057,2.125-0.278,3.073
|
||||
c-0.261,0.745-1.458,1.317-1.458,1.317l-5.027,3.549c0,0-0.921,0.476-1.221,1.119c-0.33,0.702-0.265,2.527-0.265,2.527
|
||||
l0.031,1.487c-0.017-2.804-0.039,0.735,0.089,1.684c0.132,0.943,0.937,1.31,1.649,1.545l5.938,2.289L15.771,25.621z"/>
|
||||
<path id="path3194" sodipodi:nodetypes="cccccccccc" stroke="#000000" stroke-width="0.5" d="M19.257,25.448l0.007-7.581
|
||||
l3.112,2.217l0.044-1.419l-3.716-3.054l-3.647,3.056l0.041,1.484l2.975-2.215l-0.017,7.515L19.257,25.448z"/>
|
||||
</g>
|
||||
<rect x="14.072" y="1.841" fill="#D91C0F" width="1.852" height="26.317"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹閹间礁纾圭€瑰嫭鍣磋ぐ鎺戠倞闁哄啫鐗婇崑鎰版煕濞嗗繘宕伴幇纾藉ù锝嗗灊閸氭煕鐎d户闁瑰箍鍨归埞鎴犫偓锝忕床婵犵數濮撮敃銈夊箠閹扮増鏅繝濠傚暊閺€浠嬫煃閳轰礁鏆㈢痪鍋撶紓鍌氬€烽懗鑸垫叏闂堟稓鏆嗙紒瀣仢鐓ょ紒鐘茬秺閺岋綁骞囩徊璇测攽濞叉牠鍩為幋锔芥櫖闁告洖鎽嬫繝纰樷偓鎶芥煙閸嬫捇骞栨潏鍓ф偧闁绘挻鎹囬弻锝夋偐閸欏绐涢梺绋块幐姝岀亱闂佸憡鍔栧Σ姊洪柅鐐插閸樼敻姊洪懝鏉垮惞婵" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾归柟闂寸绾剧懓鐎f崳闁绘閵嗘帒閿濆懍澹曟俊銈囧Х閸嬬偤鎮ч悩鑼嫚濞村濠电偛妫欓崝鏇㈠礉閸涘瓨鈷戦梻鍫熺〒缁犲啿鈹戦弨杈╃矉閹烘鍤冮柍鍝勫暟閿涙繃绻涙潏鍓у缂佺懇瀹暶洪悡娆撴煕濞戞﹫鏀婚柛濠冨姍閺" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
|
||||
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
|
||||
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
|
||||
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<path id="path14_9_" fill="#FEFEFE" stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="
|
||||
M1.478,15c0,7.454,6.064,13.52,13.524,13.52c7.455,0,13.52-6.064,13.52-13.52S22.459,1.479,15.002,1.479
|
||||
C7.543,1.481,1.478,7.543,1.478,15z"/>
|
||||
<g opacity="0.75">
|
||||
|
||||
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="3.883" y1="21.057" x2="24.258" y2="6.702"/>
|
||||
|
||||
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="4.655" y1="22.484" x2="25.03" y2="8.128"/>
|
||||
|
||||
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="5.62" y1="23.951" x2="25.995" y2="9.595"/>
|
||||
|
||||
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="6.507" y1="25.381" x2="26.882" y2="11.025"/>
|
||||
</g>
|
||||
<g>
|
||||
<path id="path3387_1_" sodipodi:nodetypes="cczcczccscccccccccscczcczccc" stroke="#000000" stroke-width="0.25" d="M15.769,25.62
|
||||
l-2.304-0.798c0,0-1.261-0.461-2.428-0.922c-0.722-0.25-1.032-0.43-1.254-1.478v-1.95c0,0,0.013-0.022-0.002-0.967
|
||||
c-0.015-0.919,1.237-1.53,1.237-1.53l4.751-3.345c0,0,0.706-0.333,1.53-1.302c0.887-1.043,0.863-2.367,0.863-2.367l0.017-4.127
|
||||
l4.223,3.882l0.065-2.41l-5.305-4.938l-6.892,4.933l0.072,2.301l5.922-3.884l0.002,1.884c0,0,0.057,2.125-0.274,3.073
|
||||
c-0.265,0.745-1.458,1.317-1.458,1.317l-5.038,3.547c0,0-0.921,0.476-1.219,1.119c-0.332,0.702-0.267,2.527-0.267,2.527
|
||||
l0.035,1.487c-0.02-2.804-0.041,0.735,0.089,1.684c0.13,0.943,0.935,1.31,1.647,1.545l5.938,2.289L15.769,25.62z"/>
|
||||
<path id="path3194_1_" sodipodi:nodetypes="cccccccccc" stroke="#000000" stroke-width="0.5" d="M19.257,25.446l0.007-7.581
|
||||
l3.114,2.217l0.044-1.419l-3.716-3.053l-3.649,3.056l0.041,1.484l2.977-2.215l-0.019,7.515L19.257,25.446z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>jinzhishiru-icon</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="C9_1_icon-汇总说明" transform="translate(-861.000000, -341.000000)" fill-rule="nonzero">
|
||||
<g id="jinzhishiru-icon-2" transform="translate(861.000000, 341.000000)">
|
||||
<g id="jinzhishiru-icon">
|
||||
<path d="M0,10 C6.76353751e-16,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,3.38176876e-16 10,0 C4.4771525,-3.38176876e-16 6.76353751e-16,4.4771525 0,10 Z" id="路径" fill="#FF090B"></path>
|
||||
<polygon id="路径" fill="#FFFFFF" points="2 8 19 8 19 12 2 12"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹瀹勬噴褰掑炊閺冨牊鍋愰柛娆忛崰鎰磽娴f垝鍚柛瀣仧閹广垹鈹戠€o紲濠电姴锕ら幊鎰版晬濠婂啠鏀介柍鈺佸暢绾偓缂傚倷鑳舵慨闈涚暆缁嬪灝煤缁犲綊鏌i幇绲诲┑娲栭埞鎴︽晬閸曞摋濠碘€抽柟鍋撻幖杈剧悼閻撴捇鏌i悩鍙夊窛闁稿鎸歌灋闁告劖妲梺閫炲嫮鍘甸梺鑹板吹濡" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾瑰瀣捣閻棗銆掑锝呬壕濡ょ姷鍋為悧鐘茬拠娴嬫婵炲棙鍔曢崝鍛存⒑闂堟稓绠冲┑鏀辩粋鎺楁嚃閳哄啰锛濇繛杈剧导缁瑩宕ú鐓欓柛娑橈攻閸婃劙鏌" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
|
||||
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
|
||||
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
|
||||
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#100808" d="M1.175,28.664c-0.5,0-0.909-0.428-0.909-0.963c0-0.169,0.046-0.337,0.124-0.483L14.213,1.819
|
||||
C14.374,1.521,14.676,1.336,15,1.336c0.322,0,0.624,0.185,0.785,0.483l13.829,25.399c0.074,0.146,0.119,0.315,0.119,0.483
|
||||
c0,0.53-0.406,0.963-0.913,0.963H1.175z"/>
|
||||
<polygon fill="#F7BD42" points="4.318,25.775 25.679,25.775 15,6.155 "/>
|
||||
</g>
|
||||
<path d="M17.031,14.05l-1.235-1.311l-5.162,2.539l3.31,4.56l-0.367-3.114c0.659,0.3,5.073,1.428,4.027,2.489
|
||||
c-2.471,2.512-5.238,5.116-5.238,5.116l1.143,1.134c4.345-4.338,4.705-4.657,5.685-5.829c0.207-0.248,1.024-1.756-1.3-2.79
|
||||
c-1.823-0.815-2.443-1.043-3.688-1.365L17.031,14.05z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹瀹勬噴褰掑炊閺冨牊鍋愰柛娆忛崰鎰磽娴f垝鍚柛瀣仧閹广垹鈹戠€o紲濠电姴锕ら幊鎰版晬濠婂啠鏀介柍鈺佸暢绾偓缂傚倷鑳舵慨闈涚暆缁嬪灝煤缁犲綊鏌i幇绲诲┑娲栭埞鎴︽晬閸曞摋濠碘€抽柟鍋撻幖杈剧悼閻撴捇鏌i悩鍙夊窛闁稿鎸歌灋闁告劖妲梺閫炲嫮鍘甸梺鑹板吹濡" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾瑰瀣捣閻棗銆掑锝呬壕濡ょ姷鍋為悧鐘茬拠娴嬫婵炲棙鍔曢崝鍛存⒑闂堟稓绠冲┑鏀辩粋鎺楁嚃閳哄啰锛濇繛杈剧导缁瑩宕ú鐓欓柛娑橈攻閸婃劙鏌" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
|
||||
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
|
||||
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
|
||||
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#100808" d="M28.825,28.664c0.502,0,0.909-0.428,0.909-0.963c0-0.169-0.044-0.337-0.122-0.483L15.787,1.819
|
||||
C15.626,1.521,15.324,1.336,15,1.336c-0.322,0-0.624,0.185-0.785,0.483L0.387,27.218c-0.074,0.146-0.12,0.315-0.12,0.483
|
||||
c0,0.53,0.408,0.963,0.913,0.963H28.825z"/>
|
||||
<polygon fill="#F7BD42" points="25.682,25.775 4.321,25.775 15,6.155 "/>
|
||||
</g>
|
||||
<path d="M12.971,14.05l1.235-1.311l5.162,2.539l-3.31,4.56l0.367-3.114c-0.661,0.3-5.073,1.428-4.027,2.489
|
||||
c2.471,2.512,5.236,5.116,5.236,5.116l-1.141,1.134c-4.347-4.338-4.705-4.657-5.685-5.829c-0.209-0.248-1.024-1.756,1.3-2.79
|
||||
c1.821-0.815,2.441-1.043,3.688-1.365L12.971,14.05z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="28px" height="25px" viewBox="0 0 28 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
|
||||
<title>zhuyiyeshengdonwu_icon</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0 0.473 28 0.473 28 25 0 25"></polygon>
|
||||
</defs>
|
||||
<g id="-" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="C9_1_icon-汇总说明(一)" transform="translate(-208.000000, -614.000000)">
|
||||
<g id="zhuyiyeshengdonwu_icon-2" transform="translate(208.000000, 613.000000)">
|
||||
<g id="zhuyiyeshengdonwu_icon">
|
||||
<g id="编组" transform="translate(0.000000, 0.527500)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-2"></g>
|
||||
<path d="M13.9918,25.0001 L1.1738,25.0001 C0.5958,25.0001 0.1108,24.5751 0.0148,24.0051 C-0.0422,23.6551 0.0688,23.3591 0.2418,23.0681 C0.5398,22.5651 0.8268,22.0581 1.1188,21.5521 C1.4778,20.9331 1.8388,20.3131 2.1968,19.6941 C2.5548,19.0741 2.9118,18.4531 3.2698,17.8331 C3.6048,17.2551 3.9408,16.6791 4.2758,16.1011 C4.6028,15.5361 4.9288,14.9681 5.2558,14.4021 C5.5328,13.9221 5.8128,13.4441 6.0898,12.9641 C6.2918,12.6161 6.4888,12.2651 6.6898,11.9161 C6.8798,11.5881 7.0708,11.2621 7.2608,10.9351 C7.5618,10.4131 7.8638,9.8911 8.1648,9.3691 C8.4218,8.9241 8.6768,8.4791 8.9338,8.0351 C9.2518,7.4851 9.5728,6.9381 9.8898,6.3881 C10.2908,5.6951 10.6878,5.0011 11.0888,4.3091 C11.3958,3.7761 11.7088,3.2451 12.0168,2.7121 C12.3248,2.1811 12.6318,1.6501 12.9348,1.1171 C13.1058,0.8151 13.3498,0.6081 13.6858,0.5151 C14.1528,0.3851 14.7068,0.5571 14.9698,0.9821 C15.2558,1.4431 15.5198,1.9181 15.7928,2.3881 C16.0348,2.8041 16.2748,3.2211 16.5148,3.6381 C16.9088,4.3211 17.3018,5.0051 17.6958,5.6881 C17.9378,6.1071 18.1838,6.5241 18.4268,6.9421 C18.8578,7.6891 19.2888,8.4361 19.7198,9.1831 C20.0878,9.8191 20.4558,10.4561 20.8238,11.0921 C21.0628,11.5061 21.3038,11.9191 21.5428,12.3331 C21.9968,13.1171 22.4488,13.9011 22.9018,14.6851 C23.2458,15.2791 23.5908,15.8731 23.9328,16.4671 C24.2848,17.0791 24.6348,17.6911 24.9878,18.3021 C25.3548,18.9381 25.7258,19.5721 26.0948,20.2081 C26.4848,20.8841 26.8738,21.5621 27.2638,22.2381 C27.4618,22.5801 27.6668,22.9171 27.8568,23.2621 C28.0058,23.5311 28.0388,23.8211 27.9548,24.1181 C27.8318,24.5581 27.5448,24.8381 27.1078,24.9641 C27.0258,24.9871 26.9368,24.9991 26.8508,24.9991 C22.5648,25.0001 18.2788,25.0001 13.9918,25.0001" id="Fill-1" fill="#231916" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
<path d="M25.276,23.5276 C21.555,17.0956 17.843,10.6776 14.121,4.2406 C10.397,10.6806 6.687,17.0986 2.97,23.5276 L25.276,23.5276 Z" id="Fill-3" fill="#E7D642"></path>
|
||||
<path d="M18.522,16.7512 C18.619,16.6572 18.787,16.7712 19.148,16.6162 C19.423,16.4992 19.46,16.3592 19.514,16.1052 C19.578,15.8082 19.251,15.4792 19.182,15.4872 C19.115,15.4962 19.184,15.7542 19.103,15.9422 C18.949,16.3012 18.918,16.2962 18.67,16.4342 C18.299,16.6392 18.197,16.5042 18.197,16.5042 C17.874,16.1232 17.482,16.0302 16.835,15.9702 C16.457,15.9352 15.974,15.4192 15.457,15.2242 C14.952,15.0342 14.391,14.3252 14.294,13.9192 C14.119,13.2062 14.213,12.6732 14.218,12.1702 C14.22,11.9942 14.226,11.6862 14.203,11.5352 C14.203,11.5352 14.425,11.5472 14.48,11.5382 C14.534,11.5282 14.784,11.0912 14.714,11.0602 C14.645,11.0282 14.442,11.0742 14.262,11.1192 C14.099,11.1592 14.488,10.6352 14.546,10.3102 C14.568,10.1872 14.745,10.0442 14.764,9.7472 C14.776,9.5712 14.744,9.4062 14.668,9.4032 C14.563,9.3982 14.646,9.5752 14.616,9.7312 C14.511,10.2672 14.253,10.3882 13.999,9.3852 C13.944,9.1732 14.081,8.8782 13.98,8.8822 C13.879,8.8862 13.791,9.2172 13.796,9.3932 C13.803,9.5692 13.799,9.4682 13.782,9.6702 C13.625,9.5002 13.503,9.3392 13.432,9.0792 C13.35,8.7782 13.494,8.5222 13.369,8.5272 C13.267,8.5312 13.205,8.8862 13.231,9.0862 C13.253,9.2592 13.293,9.3862 13.377,9.6352 C13.198,9.5662 13.071,9.4872 12.975,9.3342 C12.869,9.1642 12.924,8.9312 12.824,8.9352 C12.723,8.9392 12.753,9.0882 12.756,9.1642 C12.786,9.9442 14.107,9.7582 14.097,10.6652 C14.089,11.4202 13.419,11.1002 12.99,11.1962 C12.762,11.2442 12.769,11.4062 12.189,11.3992 C12.064,11.3982 11.883,11.3572 11.836,11.4462 C11.769,11.5742 12.009,11.7142 12.006,11.9772 C12.005,12.0902 12.145,12.0742 12.24,12.1062 C12.334,12.1392 12.866,12.1842 12.877,12.4102 C12.883,12.5282 12.842,13.1672 12.892,13.6742 C12.923,14.0002 12.36,14.5442 12.35,15.4412 C12.35,15.4412 12.171,15.3812 11.654,15.1862 C11.157,14.9992 10.673,15.0122 10.575,15.0682 C10.49,15.1172 10.466,15.4792 10.513,15.5272 C10.56,15.5752 10.734,15.7542 10.826,16.0392 C10.904,16.2832 10.872,16.9792 10.872,16.9792 C10.872,16.9792 11.035,17.1482 11.082,17.1642 C11.128,17.1812 11.141,17.1712 11.201,17.2572 C11.256,17.3392 11.262,17.3852 11.262,17.3852 L11.57,17.7282 C11.57,17.7282 11.652,17.3402 11.625,17.2552 C11.606,17.1982 11.431,17.0762 11.366,17.0052 C11.226,16.8552 11.242,16.6022 11.238,16.3422 C11.235,16.0792 11.134,15.7552 11.186,15.7472 C11.238,15.7392 11.536,15.8912 11.848,16.0992 C12.162,16.3072 12.31,16.4352 12.529,16.5022 C12.98,16.6412 13.159,16.8932 13.584,17.0012 C13.986,17.1042 16.207,17.4692 16.503,17.9512 C16.627,18.1542 16.708,18.5132 17.006,18.7692 C17.649,19.2802 18.374,19.5792 18.791,20.3242 C18.919,20.5532 18.959,21.3842 19.006,21.6872 C19.031,21.7622 19.158,21.9342 19.385,22.1002 C19.596,22.2522 19.577,22.5242 19.878,22.5272 L19.884,22.0232 C19.737,21.9342 19.536,21.9112 19.466,21.4542 C19.432,21.2232 19.411,20.7782 19.416,20.3632 C19.423,19.6102 18.465,19.5292 18.418,18.4662 C18.398,17.9932 18.616,17.9072 18.621,17.4092 C18.625,17.0652 18.345,16.9252 18.522,16.7512" id="Fill-5" fill="#231916"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹瀹勬噴褰掑炊閺冨牊鍋愰柛娆忛崰鎰磽娴f垝鍚柛瀣仧閹广垹鈹戠€o紲濠电姴锕ら幊鎰版晬濠婂啠鏀介柍鈺佸暢绾偓缂傚倷鑳舵慨闈涚暆缁嬪灝煤缁犲綊鏌i幇绲诲┑娲栭埞鎴︽晬閸曞摋濠碘€抽柟鍋撻幖杈剧悼閻撴捇鏌i悩鍙夊窛闁稿鎸歌灋闁告劖妲梺閫炲嫮鍘甸梺鑹板吹濡" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾瑰瀣捣閻棗銆掑锝呬壕濡ょ姷鍋為悧鐘茬拠娴嬫婵炲棙鍔曢崝鍛存⒑闂堟稓绠冲┑鏀辩粋鎺楁嚃閳哄啰锛濇繛杈剧导缁瑩宕ú鐓欓柛娑橈攻閸婃劙鏌" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
|
||||
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
|
||||
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
|
||||
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#100808" d="M1.174,28.664c-0.502,0-0.908-0.428-0.908-0.963c0-0.169,0.044-0.337,0.122-0.483L14.213,1.819
|
||||
C14.374,1.521,14.676,1.336,15,1.336s0.624,0.185,0.785,0.483l13.827,25.399c0.074,0.146,0.12,0.315,0.12,0.483
|
||||
c0,0.53-0.408,0.963-0.913,0.963H1.174z"/>
|
||||
<polygon fill="#F7BD42" points="4.318,25.775 25.68,25.775 15,6.153 "/>
|
||||
</g>
|
||||
<path d="M10.69,17.493c0.096,0.056,0.193,0.243,0.408,0.282c0.524,0.089,1.361,0.309,1.749,0.367
|
||||
c0.613,0.091,4.738-0.059,7.222-0.004c0.311,0.007,0.554,0.27,0.546,0.532c-0.007,0.285-0.057,2.599-0.039,4.12
|
||||
c0.002,0.211,0.28,0.087,0.087,0.713c-0.028,0.093-0.354-0.267-0.35-0.369c-0.011-0.052,0.039-0.154,0.03-0.204
|
||||
c-0.019-0.117-0.046-0.039-0.041-0.17c0-0.715,0.035-3.408,0.035-3.408c0.006-0.206-0.302-0.213-0.298-0.007
|
||||
c0.039,2.023,0.015,4.031-0.08,6.05c0,0.052-0.054,0.072-0.106,0.063c-0.3-0.031-0.659,0.039-0.659-0.063
|
||||
c0-0.144,0.163-0.409,0.265-0.633c0.128-0.307,0.117-0.656,0.12-1.021c0.002-0.061-0.265-1.072-0.735-1.195
|
||||
c-0.217-0.057-0.513,0-0.774-0.098c-0.339-0.12-0.474-0.495-0.832-0.498c-0.011,0-1.906,0.02-2.808,0.009
|
||||
c-0.739-0.009-0.504,1.502-0.624,2.197c-0.013,0.072-0.122,0.159-0.124,0.209c-0.163,0.309,0.293,0.767,0.078,1.013
|
||||
c-0.091,0.102-0.587,0.072-0.585-0.031c0.004-0.183,0.117-0.483,0.144-0.671c0.087-0.565,0.087-1.087-0.094-1.636
|
||||
c-0.198-0.42-0.191-0.897-0.545-1.115c-0.357-0.215-0.611-0.482-0.811-0.796c-0.046-0.106-0.052-0.246-0.148-0.313
|
||||
c-0.506-0.389-0.876-0.811-1.308-1.235c-0.27-0.261-0.83-0.043-1.143,0.109c-0.169,0.061-0.567-0.232-0.476-0.437
|
||||
c0.117-0.261,0.787-1.467,0.758-1.436c0.065-0.082,0.113-0.202,0.059-0.307c-0.05-0.159-0.289-0.137-0.274-0.256
|
||||
C9.35,17.088,10.254,17.243,10.69,17.493z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |