Merge branch 'main-dev2' into main-dev
# Conflicts: # pom.xml
BIN
libs/gemsfx-2.32.0.jar
Normal file
13
pom.xml
@ -115,6 +115,19 @@
|
||||
<scope>system</scope>
|
||||
<systemPath>${pom.basedir}/libs/datafx-core-8.0.2-SNAPSHOT.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.dlsc.gemsfx</groupId>
|
||||
<artifactId>gemsfx</artifactId>
|
||||
<version>2.32.0</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<scope>system</scope>
|
||||
<systemPath>${pom.basedir}/libs/gemsfx-2.32.0.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.goxr3plus</groupId>
|
||||
<artifactId>FX-BorderlessScene</artifactId>
|
||||
|
7
src/main/java/com/cecilia/AppStart.java
Normal file
@ -0,0 +1,7 @@
|
||||
package com.cecilia;
|
||||
|
||||
public class AppStart {
|
||||
public static void main(String[] args) {
|
||||
AppUI.main(args);
|
||||
}
|
||||
}
|
@ -1,5 +1,9 @@
|
||||
package com.cecilia;
|
||||
|
||||
import com.cecilia.event.BrowseEvent;
|
||||
import com.cecilia.event.DefaultEventBus;
|
||||
import com.cecilia.event.HotkeyEvent;
|
||||
import com.cecilia.event.Listener;
|
||||
import com.goxr3plus.fxborderlessscene.borderless.BorderlessPane;
|
||||
import com.goxr3plus.fxborderlessscene.borderless.BorderlessScene;
|
||||
import com.cecilia.theme.ThemeManager;
|
||||
@ -11,10 +15,17 @@ import fr.brouillard.oss.cssfx.CSSFX;
|
||||
import fr.brouillard.oss.cssfx.api.URIToPathConverter;
|
||||
import fr.brouillard.oss.cssfx.impl.log.CSSFXLogger;
|
||||
import javafx.application.Application;
|
||||
import javafx.application.ConditionalFeature;
|
||||
import javafx.application.Platform;
|
||||
import javafx.css.PseudoClass;
|
||||
import javafx.geometry.Insets;
|
||||
import javafx.scene.Parent;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.scene.SceneAntialiasing;
|
||||
import javafx.scene.input.KeyCode;
|
||||
import javafx.scene.input.KeyCodeCombination;
|
||||
import javafx.scene.input.KeyCombination;
|
||||
import javafx.scene.input.KeyEvent;
|
||||
import javafx.scene.paint.Color;
|
||||
import javafx.stage.Stage;
|
||||
import javafx.stage.StageStyle;
|
||||
@ -23,6 +34,7 @@ import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.net.URI;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
import static java.nio.charset.StandardCharsets.UTF_8;
|
||||
@ -36,66 +48,80 @@ public class AppUI extends Application {
|
||||
Resources.getPropertyOrEnv("app.profiles.active", "app.profiles.active")
|
||||
);
|
||||
|
||||
public static final List<KeyCodeCombination> SUPPORTED_HOTKEYS = List.of(
|
||||
new KeyCodeCombination(KeyCode.SLASH),
|
||||
new KeyCodeCombination(KeyCode.T, KeyCombination.CONTROL_DOWN),
|
||||
new KeyCodeCombination(KeyCode.W, KeyCombination.CONTROL_DOWN)
|
||||
);
|
||||
|
||||
public static void main(String[] args) {
|
||||
launch(args);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void start(Stage primaryStage) throws IOException {
|
||||
Thread.currentThread().setUncaughtExceptionHandler(new DefaultExceptionHandler(primaryStage));
|
||||
|
||||
if ("DEV".equalsIgnoreCase(System.getProperty("app.profiles.active"))) {
|
||||
System.out.println("-------[WARNING] Application is running in development mode.");
|
||||
}
|
||||
public void start(Stage stage) {
|
||||
Thread.currentThread().setUncaughtExceptionHandler(new DefaultExceptionHandler(stage));
|
||||
loadApplicationProperties();
|
||||
|
||||
// Application.setUserAgentStylesheet(new NordDark().getUserAgentStylesheet());
|
||||
if (IS_DEV_MODE) {
|
||||
System.out.println("[WARNING] Application is running in development mode.");
|
||||
}
|
||||
|
||||
var antialiasing = Platform.isSupported(ConditionalFeature.SCENE3D)
|
||||
? SceneAntialiasing.BALANCED
|
||||
: SceneAntialiasing.DISABLED;
|
||||
|
||||
ViewTuple<WindowView, WindowViewModel> viewTuple = FluentViewLoader.fxmlView(WindowView.class).load();
|
||||
Parent mainView = viewTuple.getView();
|
||||
|
||||
|
||||
BorderlessScene scene = new BorderlessScene(primaryStage, StageStyle.TRANSPARENT, mainView, 250, 250);
|
||||
BorderlessScene scene = new BorderlessScene(stage, StageStyle.TRANSPARENT, mainView, 950, 650);
|
||||
BorderlessPane rootPane = (BorderlessPane) scene.getRoot();
|
||||
rootPane.setPadding(new Insets(15, 15, 15, 15));
|
||||
|
||||
scene.setOnKeyPressed(this::dispatchHotkeys);
|
||||
scene.removeDefaultCSS();
|
||||
scene.setMoveControl(mainView);
|
||||
scene.setFill(Color.TRANSPARENT);
|
||||
|
||||
var tm = ThemeManager.getInstance();
|
||||
tm.setScene(scene);
|
||||
tm.setTheme(tm.getDefaultTheme());
|
||||
if ("DEV".equalsIgnoreCase(System.getProperty("app.profiles.active"))) {
|
||||
if (IS_DEV_MODE) {
|
||||
startCssFX(scene);
|
||||
}
|
||||
scene.removeDefaultCSS();
|
||||
scene.setMoveControl(mainView);
|
||||
scene.setFill(Color.TRANSPARENT);
|
||||
// viewTuple.getViewModel().setTitle(System.getProperty("app.name"));
|
||||
primaryStage.setTitle(System.getProperty("app.name"));
|
||||
scene.getStylesheets().addAll(AppUI.class.getResource("/styles/index.css").toExternalForm());
|
||||
|
||||
scene.maximizedProperty().addListener((observableValue, oldVal, newVal) -> {
|
||||
if (newVal) {
|
||||
rootPane.setPadding(new Insets(0, 0, 0, 0));
|
||||
} else {
|
||||
rootPane.setPadding(new Insets(15, 15, 15, 15));
|
||||
}
|
||||
// viewTuple.getViewModel().setMaximized(newVal);
|
||||
|
||||
});
|
||||
|
||||
scene.getStylesheets().addAll(Resources.resolve("assets/styles/index.css"));
|
||||
|
||||
PseudoClass CUSTOM_THEME = PseudoClass.getPseudoClass("custom-theme");
|
||||
scene.getRoot().pseudoClassStateChanged(CUSTOM_THEME, true);
|
||||
//Show
|
||||
primaryStage.setScene(scene);
|
||||
primaryStage.setWidth(900);
|
||||
primaryStage.setHeight(600);
|
||||
stage.setScene(scene);
|
||||
stage.setTitle(System.getProperty("app.name"));
|
||||
loadIcons(stage);
|
||||
stage.setResizable(true);
|
||||
stage.setOnCloseRequest(t -> Platform.exit());
|
||||
|
||||
// primaryStage.titleProperty().bind(viewTuple.getViewModel().titleProperty());
|
||||
primaryStage.show();
|
||||
// register event listeners
|
||||
DefaultEventBus.getInstance().subscribe(BrowseEvent.class, this::onBrowseEvent);
|
||||
|
||||
Platform.runLater(() -> {
|
||||
stage.show();
|
||||
stage.requestFocus();
|
||||
});
|
||||
}
|
||||
|
||||
private void loadApplicationProperties() {
|
||||
try {
|
||||
var properties = new Properties();
|
||||
properties.load(new InputStreamReader(Resources.getResourceAsStream("application.properties"), UTF_8));
|
||||
Properties properties = new Properties();
|
||||
try (InputStreamReader in = new InputStreamReader(Resources.getResourceAsStream("/application.properties"),
|
||||
UTF_8)) {
|
||||
properties.load(in);
|
||||
properties.forEach((key, value) -> System.setProperty(
|
||||
String.valueOf(key),
|
||||
String.valueOf(value)
|
||||
@ -118,16 +144,39 @@ public class AppUI extends Application {
|
||||
};
|
||||
|
||||
CSSFX.addConverter(fileUrlConverter).start();
|
||||
CSSFXLogger.setLoggerFactory(loggerName -> (level, message, args) ->
|
||||
System.out.println("[CSSFX] " + String.format(message, args))
|
||||
);
|
||||
CSSFXLogger.setLoggerFactory(loggerName -> (level, message, args) -> {
|
||||
if (level.ordinal() <= CSSFXLogger.LogLevel.INFO.ordinal()) {
|
||||
System.out.println("[" + level + "] CSSFX: " + String.format(message, args));
|
||||
}
|
||||
});
|
||||
CSSFX.start(scene);
|
||||
}
|
||||
private void dispatchHotkeys(KeyEvent event) {
|
||||
for (KeyCodeCombination k : SUPPORTED_HOTKEYS) {
|
||||
if (k.match(event)) {
|
||||
DefaultEventBus.getInstance().publish(new HotkeyEvent(k));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
private void loadIcons(Stage stage) {
|
||||
int iconSize = 16;
|
||||
while (iconSize <= 1024) {
|
||||
iconSize *= 2;
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public void init() throws Exception {
|
||||
super.init();
|
||||
}
|
||||
@Override
|
||||
public void stop() throws Exception {
|
||||
super.stop();
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
|
||||
launch(args);
|
||||
}
|
||||
@Listener
|
||||
private void onBrowseEvent(BrowseEvent event) {
|
||||
getHostServices().showDocument(event.getUri().toString());
|
||||
}
|
||||
|
||||
|
||||
|
@ -2,6 +2,10 @@ package com.cecilia.view.loginregister;
|
||||
|
||||
import animatefx.animation.*;
|
||||
import animatefx.util.ParallelAnimationFX;
|
||||
import atlantafx.base.layout.DeckPane;
|
||||
import com.cecilia.AppStart;
|
||||
import com.cecilia.Resources;
|
||||
import com.dlsc.gemsfx.SVGImageView;
|
||||
import com.kitfox.svg.app.beans.SVGIcon;
|
||||
import de.saxsys.mvvmfx.FxmlView;
|
||||
import de.saxsys.mvvmfx.InjectViewModel;
|
||||
@ -13,12 +17,16 @@ import io.github.palexdev.materialfx.utils.SwingFXUtils;
|
||||
import javafx.beans.binding.Bindings;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.fxml.Initializable;
|
||||
import javafx.geometry.Insets;
|
||||
import javafx.geometry.Pos;
|
||||
import javafx.scene.control.Hyperlink;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.ProgressBar;
|
||||
import javafx.scene.image.ImageView;
|
||||
import javafx.scene.layout.HBox;
|
||||
import javafx.scene.layout.StackPane;
|
||||
import javafx.scene.layout.*;
|
||||
import javafx.scene.paint.CycleMethod;
|
||||
import javafx.scene.paint.LinearGradient;
|
||||
import javafx.scene.paint.Stop;
|
||||
import javafx.scene.shape.Rectangle;
|
||||
import org.kordamp.ikonli.feather.Feather;
|
||||
import org.kordamp.ikonli.javafx.FontIcon;
|
||||
@ -26,7 +34,7 @@ import org.kordamp.ikonli.javafx.FontIcon;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.net.URISyntaxException;
|
||||
import java.net.URL;
|
||||
import java.util.ResourceBundle;
|
||||
import java.util.*;
|
||||
|
||||
import static atlantafx.base.theme.Styles.STATE_DANGER;
|
||||
import static com.cecilia.view.loginregister.LoginRegisterViewModel.ON_VIEW_ADDEDA;
|
||||
@ -41,68 +49,42 @@ public class LoginRegisterView implements FxmlView<LoginRegisterViewModel>, Init
|
||||
@FXML
|
||||
private HBox loginPane;
|
||||
@FXML
|
||||
private HBox registerPane;
|
||||
|
||||
@FXML
|
||||
private Hyperlink loginLink;
|
||||
@FXML
|
||||
private Hyperlink registerLink;
|
||||
@FXML
|
||||
private ImageView logoImageView;
|
||||
@FXML
|
||||
private ImageView registerImageView;
|
||||
@FXML
|
||||
private MFXButton loginBut;
|
||||
|
||||
@FXML
|
||||
private MFXTextField usrNameTextField;
|
||||
|
||||
@FXML
|
||||
private MFXTextField vefCodeTextField;
|
||||
|
||||
@FXML
|
||||
private MFXPasswordField pwdTextField;
|
||||
@FXML
|
||||
private MFXButton closeBut;
|
||||
|
||||
@FXML
|
||||
private ImageView codeImeageView;
|
||||
|
||||
@FXML
|
||||
private ProgressBar bar;
|
||||
|
||||
@FXML
|
||||
private Label msg;
|
||||
@FXML
|
||||
private DeckPane deckPane;
|
||||
|
||||
private final Random random = new Random();
|
||||
|
||||
@Override
|
||||
public void initialize(URL url, ResourceBundle resourceBundle) {
|
||||
|
||||
closeBut.setOnAction(event -> MvvmFX.getNotificationCenter().publish("exit"));
|
||||
SVGIcon svgIcon = new SVGIcon();
|
||||
SVGIcon svgIcon1 = new SVGIcon();
|
||||
createImageView();
|
||||
|
||||
try {
|
||||
svgIcon.setSvgURI(LoginRegisterView.class.getResource("/images/dd.svg").toURI());
|
||||
svgIcon1.setSvgURI(LoginRegisterView.class.getResource("/images/bb.svg").toURI());
|
||||
} catch (URISyntaxException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
closeBut.setOnAction(event -> MvvmFX.getNotificationCenter().publish("exit"));
|
||||
msg.pseudoClassStateChanged(STATE_DANGER, true);
|
||||
loginRegisterViewModel.getCodeCommand().execute();
|
||||
codeImeageView.imageProperty().bind(loginRegisterViewModel.codeImageProperty());
|
||||
logoImageView.setImage(SwingFXUtils.toFXImage((BufferedImage) svgIcon.getImage(), null));
|
||||
registerImageView.setImage(SwingFXUtils.toFXImage((BufferedImage) svgIcon1.getImage(), null));
|
||||
codeImeageView.setOnMouseClicked(event -> loginRegisterViewModel.getCodeCommand().execute());
|
||||
loginBut.setOnAction(event -> {
|
||||
loginRegisterViewModel.getLoginCommand().execute();
|
||||
//
|
||||
});
|
||||
loginBut.setOnAction(event -> loginRegisterViewModel.getLoginCommand().execute());
|
||||
loginRegisterViewModel.successProperty().addListener((observable, oldValue, newValue) -> {
|
||||
|
||||
if (newValue) {
|
||||
BounceOutUp bounceOutDown = new BounceOutUp(loginPane);
|
||||
bounceOutDown.setOnFinished(event1 -> MvvmFX.getNotificationCenter().publish("showMainView", "显示主界面"));
|
||||
new ParallelAnimationFX(bounceOutDown, new BounceOutUp(registerPane)).play();
|
||||
new ParallelAnimationFX(bounceOutDown).play();
|
||||
}
|
||||
});
|
||||
bar.visibleProperty().bind(loginRegisterViewModel.getLoginCommand().runningProperty());
|
||||
@ -110,6 +92,7 @@ public class LoginRegisterView implements FxmlView<LoginRegisterViewModel>, Init
|
||||
bar.progressProperty().bind(Bindings.createDoubleBinding(
|
||||
() -> loginRegisterViewModel.getLoginCommand().isRunning() ? -1d : 0d, loginRegisterViewModel.getLoginCommand().runningProperty())
|
||||
);
|
||||
|
||||
usrNameTextField.textProperty().bindBidirectional(loginRegisterViewModel.userNameProperty());
|
||||
usrNameTextField.setTrailingIcon(new FontIcon(Feather.USER));
|
||||
pwdTextField.textProperty().bindBidirectional(loginRegisterViewModel.passWordProperty());
|
||||
@ -134,37 +117,95 @@ public class LoginRegisterView implements FxmlView<LoginRegisterViewModel>, Init
|
||||
|
||||
});
|
||||
|
||||
|
||||
loginRegisterViewModel.subscribe(ON_VIEW_ADDEDA, (s, objects) -> {
|
||||
new ParallelAnimationFX(new BounceInUp(loginPane), new BounceInUp(registerPane)).play();
|
||||
new ParallelAnimationFX(new BounceInUp(loginPane)).play();
|
||||
});
|
||||
registerLink.setOnAction(event -> {
|
||||
}
|
||||
|
||||
RotateOutDownRight rotateOutDownRight = new RotateOutDownRight(loginPane);
|
||||
rotateOutDownRight.setResetOnFinished(true);
|
||||
RotateInDownRight rotateInDownRight = new RotateInDownRight(registerPane);
|
||||
rotateInDownRight.setResetOnFinished(true);
|
||||
rotateInDownRight.setOnFinished(event1 -> loginPane.setVisible(false));
|
||||
ParallelAnimationFX parallelAnimationFX
|
||||
= new ParallelAnimationFX(rotateOutDownRight, rotateInDownRight);
|
||||
registerPane.setVisible(true);
|
||||
parallelAnimationFX.play();
|
||||
private void createImageView() {
|
||||
|
||||
});
|
||||
List<FunctionType> functionTypes = new ArrayList<>();
|
||||
// 添加功能
|
||||
functionTypes.add(new FunctionType("用户管理", "用户管理功能允许管理员轻松管理系统中的用户", "/icons/user-manage.svg"));
|
||||
functionTypes.add(new FunctionType("数据分析与报表", "数据分析与报表功能提供了系统内部数据的分析和可视化工具", "/icons/baobiaofenxi.svg"));
|
||||
functionTypes.add(new FunctionType("权限管理", "权限管理功能允许管理员灵活设置系统内各项功能的访问权限", "/icons/quanxian.svg"));
|
||||
functionTypes.add(new FunctionType("日志审计与监控", "日志审计与监控功能记录和跟踪系统内的操作日志", "/icons/jiankong.svg"));
|
||||
|
||||
loginLink.setOnAction(event -> {
|
||||
|
||||
RotateOutUpRight rotateOutDownRight = new RotateOutUpRight(registerPane);
|
||||
rotateOutDownRight.setResetOnFinished(true);
|
||||
RotateInUpRight rotateInDownRight = new RotateInUpRight(loginPane);
|
||||
rotateInDownRight.setResetOnFinished(true);
|
||||
rotateInDownRight.setOnFinished(event1 -> registerPane.setVisible(false));
|
||||
ParallelAnimationFX parallelAnimationFX
|
||||
= new ParallelAnimationFX(rotateOutDownRight, rotateInDownRight);
|
||||
loginPane.setVisible(true);
|
||||
parallelAnimationFX.play();
|
||||
});
|
||||
for (FunctionType functionType : functionTypes) {
|
||||
|
||||
SVGImageView svgImageView = new SVGImageView();
|
||||
svgImageView.setFitWidth(450);
|
||||
svgImageView.setFitHeight(300);
|
||||
svgImageView.setSvgUrl(Resources.getResource(functionType.getIcon()).getPath());
|
||||
|
||||
VBox.setVgrow(svgImageView, Priority.ALWAYS);
|
||||
|
||||
Label titleLabel = new Label(functionType.getTitle());
|
||||
titleLabel.getStyleClass().add("title-3");
|
||||
titleLabel.setStyle("-fx-text-fill: #ffffff");
|
||||
titleLabel.setAlignment(Pos.CENTER);
|
||||
|
||||
Label subLabel = new Label(functionType.getDescription());
|
||||
subLabel.getStyleClass().add("title-4");
|
||||
subLabel.setStyle("-fx-text-fill: #ffffff");
|
||||
subLabel.setAlignment(Pos.CENTER);
|
||||
subLabel.setWrapText(true);
|
||||
|
||||
VBox vBox = new VBox(svgImageView, titleLabel, subLabel);
|
||||
vBox.setAlignment(Pos.CENTER);
|
||||
vBox.setSpacing(10);
|
||||
vBox.setStyle(getRandomGradientStyle());
|
||||
vBox.setPadding(new Insets(10));
|
||||
AnchorPane.setBottomAnchor(vBox,10D);
|
||||
AnchorPane.setTopAnchor(vBox,10D);
|
||||
AnchorPane.setLeftAnchor(vBox,10D);
|
||||
AnchorPane.setRightAnchor(vBox,10D);
|
||||
deckPane.getChildren().add(vBox);
|
||||
}
|
||||
|
||||
}
|
||||
private String getRandomGradientStyle() {
|
||||
// 生成随机的颜色
|
||||
Stop[] stops = new Stop[] {
|
||||
new Stop(0, randomColor()),
|
||||
new Stop(1, randomColor())
|
||||
};
|
||||
LinearGradient gradient = new LinearGradient(0, 0, 1, 1, true, CycleMethod.NO_CYCLE, stops);
|
||||
// 将渐变转换为CSS样式
|
||||
return String.format("-fx-background-color: linear-gradient(from 0%% 0%% to 100%% 100%%, %s 0%%, %s 100%%);-fx-background-radius:10 10 10 10",
|
||||
toHex(stops[0].getColor()), toHex(stops[1].getColor()));
|
||||
}
|
||||
private String toHex(javafx.scene.paint.Color color) {
|
||||
return String.format("#%02X%02X%02X",
|
||||
(int) (color.getRed() * 255),
|
||||
(int) (color.getGreen() * 255),
|
||||
(int) (color.getBlue() * 255));
|
||||
}
|
||||
private javafx.scene.paint.Color randomColor() {
|
||||
return new javafx.scene.paint.Color(random.nextDouble(), random.nextDouble(), random.nextDouble(), 1.0);
|
||||
}
|
||||
class FunctionType {
|
||||
private String title;
|
||||
private String description;
|
||||
private String icon;
|
||||
|
||||
public FunctionType(String title, String description, String icon) {
|
||||
this.title = title;
|
||||
this.description = description;
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return icon;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,10 +2,12 @@ package com.cecilia.view.window;
|
||||
|
||||
import animatefx.animation.BounceInRight;
|
||||
import atlantafx.base.controls.Message;
|
||||
import atlantafx.base.controls.ModalPane;
|
||||
import atlantafx.base.theme.Styles;
|
||||
import atlantafx.base.util.Animations;
|
||||
import com.cecilia.view.loginregister.LoginRegisterView;
|
||||
import com.cecilia.view.loginregister.LoginRegisterViewModel;
|
||||
import com.goxr3plus.fxborderlessscene.borderless.BorderlessScene;
|
||||
import de.saxsys.mvvmfx.*;
|
||||
import javafx.animation.KeyFrame;
|
||||
import javafx.animation.Timeline;
|
||||
@ -42,12 +44,16 @@ public class WindowView implements FxmlView<WindowViewModel>, Initializable {
|
||||
private StackPane rootPane;
|
||||
@FXML
|
||||
private StackPane contentPane;
|
||||
public static final String MAIN_MODAL_ID = "modal-pane";
|
||||
|
||||
|
||||
@Override
|
||||
public void initialize(URL url, ResourceBundle resourceBundle) {
|
||||
|
||||
messagePane.visibleProperty().bindBidirectional(windowViewModel.mainViewVisbleProperty());
|
||||
var modalPane = new ModalPane();
|
||||
modalPane.setId(MAIN_MODAL_ID);
|
||||
rootPane.getChildren().add(0, modalPane);
|
||||
//messagePane.visibleProperty().bindBidirectional(windowViewModel.mainViewVisbleProperty());
|
||||
MvvmFX.getNotificationCenter().subscribe("showMainView", (key, payload) -> {
|
||||
// trigger some actions
|
||||
Platform.runLater(() -> {
|
||||
@ -66,35 +72,28 @@ public class WindowView implements FxmlView<WindowViewModel>, Initializable {
|
||||
|
||||
MvvmFX.getNotificationCenter().subscribe("message", (key, payload) -> {
|
||||
// trigger some actions
|
||||
|
||||
Platform.runLater(() -> {
|
||||
showMessage((Integer) payload[0], (String) payload[1]);
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
MvvmFX.getNotificationCenter().subscribe("exit", (key, payload) -> {
|
||||
// trigger some actions
|
||||
|
||||
Platform.runLater(() -> {
|
||||
Stage stage = (Stage) rootPane.getScene().getWindow();
|
||||
|
||||
stage.close();
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
showLoginView();
|
||||
|
||||
}
|
||||
|
||||
private void showMainView() {
|
||||
|
||||
contentPane.getChildren().clear();
|
||||
ViewTuple<MainView, MainViewModel> load = FluentViewLoader.fxmlView(MainView.class).load();
|
||||
contentPane.getChildren().add(load.getView());
|
||||
windowViewModel.mainViewVisbleProperty().setValue(true);
|
||||
if (contentPane.getScene() instanceof BorderlessScene) {
|
||||
((BorderlessScene) contentPane.getScene()).maximizeStage();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -110,9 +109,8 @@ public class WindowView implements FxmlView<WindowViewModel>, Initializable {
|
||||
|
||||
if (windowViewModel.isMainViewVisble()) {
|
||||
Platform.runLater(() -> {
|
||||
|
||||
|
||||
Message message = null;
|
||||
|
||||
if (code == HttpStatus.SUCCESS) {
|
||||
message = new Message("消息提示", msg, new FontIcon(Material2OutlinedAL.CHECK_CIRCLE_OUTLINE));
|
||||
message.getStyleClass().addAll(Styles.SUCCESS);
|
||||
@ -122,26 +120,26 @@ public class WindowView implements FxmlView<WindowViewModel>, Initializable {
|
||||
}
|
||||
message.setPrefHeight(Region.USE_PREF_SIZE);
|
||||
message.setMaxHeight(Region.USE_PREF_SIZE);
|
||||
message.setMaxWidth(Region.USE_PREF_SIZE);
|
||||
StackPane.setAlignment(message, Pos.TOP_RIGHT);
|
||||
StackPane.setMargin(message, new Insets(10, 10, 0, 0));
|
||||
StackPane.setMargin(message, new Insets(60, 10, 0, 0));
|
||||
|
||||
Message finalMessage = message;
|
||||
message.setOnClose(e -> {
|
||||
var out = Animations.slideOutUp(finalMessage, Duration.millis(250));
|
||||
out.setOnFinished(f -> messagePane.getChildren().remove(finalMessage));
|
||||
out.setOnFinished(f -> rootPane.getChildren().remove(finalMessage));
|
||||
out.playFromStart();
|
||||
});
|
||||
// var in = Animations.slideInDown(message, Duration.millis(250));
|
||||
if (!messagePane.getChildren().contains(message)) {
|
||||
messagePane.getChildren().add(message);
|
||||
if (!rootPane.getChildren().contains(message)) {
|
||||
rootPane.getChildren().add(message);
|
||||
}
|
||||
new BounceInRight(message).play();
|
||||
|
||||
Timeline fiveSecondsWonder = new Timeline(new KeyFrame(Duration.seconds(5), new EventHandler<ActionEvent>() {
|
||||
|
||||
@Override
|
||||
public void handle(ActionEvent event) {
|
||||
var out = Animations.slideOutUp(finalMessage, Duration.millis(250));
|
||||
out.setOnFinished(f -> messagePane.getChildren().remove(finalMessage));
|
||||
out.setOnFinished(f -> rootPane.getChildren().remove(finalMessage));
|
||||
out.playFromStart();
|
||||
}
|
||||
}));
|
||||
|
@ -17,112 +17,20 @@
|
||||
<?import javafx.scene.text.Font?>
|
||||
<?import org.kordamp.ikonli.javafx.FontIcon?>
|
||||
|
||||
<?import atlantafx.base.layout.DeckPane?>
|
||||
<AnchorPane xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.cecilia.view.loginregister.LoginRegisterView">
|
||||
<children>
|
||||
<StackPane id="login-pane" fx:id="rootPane" prefHeight="525.0" prefWidth="887.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
<children>
|
||||
<HBox id="login-context-pane" fx:id="registerPane" maxHeight="369.0" maxWidth="630.0" prefHeight="369.0" prefWidth="530.0" visible="false">
|
||||
<children>
|
||||
<VBox id="register-info-pane" alignment="TOP_CENTER" HBox.hgrow="ALWAYS">
|
||||
<children>
|
||||
<VBox alignment="TOP_CENTER" prefHeight="356.0" prefWidth="310.0" spacing="30.0" VBox.vgrow="ALWAYS">
|
||||
<children>
|
||||
<Label text="XXX系统">
|
||||
<font>
|
||||
<Font size="48.0" />
|
||||
</font>
|
||||
<effect>
|
||||
<Reflection fraction="0.57" topOffset="-10.0" topOpacity="0.26" />
|
||||
</effect>
|
||||
</Label>
|
||||
<Label text="欢迎访问">
|
||||
<font>
|
||||
<Font size="24.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<ImageView fx:id="registerImageView" fitHeight="167.0" fitWidth="254.0" pickOnBounds="true" preserveRatio="true" VBox.vgrow="ALWAYS" />
|
||||
</children>
|
||||
<padding>
|
||||
<Insets top="40.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
<Label text="©中国.xxx" />
|
||||
</children>
|
||||
<padding>
|
||||
<Insets bottom="10.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
<VBox id="login-text-pane" alignment="CENTER" maxWidth="300.0" prefWidth="300.0" spacing="10.0">
|
||||
<children>
|
||||
<Label text="注 册">
|
||||
<font>
|
||||
<Font name="System Bold" size="36.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<MFXTextField id="validatedField" fx:id="usrNameTextField1" floatMode="BORDER" floatingText="用户名" maxWidth="1.7976931348623157E308" prefHeight="45.0" prefWidth="237.0">
|
||||
<font>
|
||||
<Font size="16.0" />
|
||||
</font>
|
||||
</MFXTextField>
|
||||
<MFXPasswordField id="validatedField" fx:id="pwdTextField1" floatMode="BORDER" floatingText="密码" maxWidth="1.7976931348623157E308" prefHeight="40.0">
|
||||
<font>
|
||||
<Font size="16.0" />
|
||||
</font>
|
||||
</MFXPasswordField>
|
||||
<MFXPasswordField id="validatedField" fx:id="pwdTextField11" floatMode="BORDER" floatingText="确认密码" maxWidth="1.7976931348623157E308" prefHeight="40.0">
|
||||
<font>
|
||||
<Font size="16.0" />
|
||||
</font>
|
||||
</MFXPasswordField>
|
||||
<MFXButton id="register-button" fx:id="registerBut" buttonType="RAISED" maxWidth="1.7976931348623157E308" prefHeight="40.0" text="注 册">
|
||||
<font>
|
||||
<Font size="18.0" />
|
||||
</font>
|
||||
</MFXButton>
|
||||
<HBox alignment="CENTER_LEFT" />
|
||||
<HBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
|
||||
<children>
|
||||
<Label prefHeight="40.0" text="已有账号去" textFill="#00000091" />
|
||||
<Hyperlink fx:id="loginLink" prefHeight="40.0" text="登录">
|
||||
<font>
|
||||
<Font size="16.0" />
|
||||
</font>
|
||||
</Hyperlink>
|
||||
</children>
|
||||
</HBox>
|
||||
</children>
|
||||
<padding>
|
||||
<Insets bottom="10.0" left="20.0" right="20.0" top="40.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
</children>
|
||||
</HBox>
|
||||
<HBox id="login-context-pane" fx:id="loginPane" maxHeight="369.0" maxWidth="630.0" prefHeight="369.0" prefWidth="530.0">
|
||||
<children>
|
||||
<VBox id="login-info-pane" alignment="TOP_CENTER" HBox.hgrow="ALWAYS">
|
||||
<children>
|
||||
<VBox alignment="TOP_CENTER" spacing="30.0" VBox.vgrow="ALWAYS">
|
||||
<children>
|
||||
<Label text="XXX系统">
|
||||
<font>
|
||||
<Font size="48.0" />
|
||||
</font>
|
||||
<effect>
|
||||
<Reflection fraction="0.57" topOffset="-10.0" topOpacity="0.26" />
|
||||
</effect>
|
||||
</Label>
|
||||
<Label text="欢迎访问">
|
||||
<font>
|
||||
<Font size="24.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<ImageView fx:id="logoImageView" fitHeight="167.0" fitWidth="254.0" pickOnBounds="true" preserveRatio="true" VBox.vgrow="ALWAYS" />
|
||||
</children>
|
||||
<DeckPane fx:id="deckPane" animationDuration="500.0ms" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" VBox.vgrow="ALWAYS">
|
||||
<padding>
|
||||
<Insets top="40.0" />
|
||||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
<Label text="©中国.xxx" />
|
||||
</DeckPane>
|
||||
</children>
|
||||
<padding>
|
||||
<Insets bottom="10.0" />
|
||||
|
@ -1,27 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import javafx.scene.layout.BorderPane?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.layout.StackPane?>
|
||||
<?import javafx.scene.layout.VBox?>
|
||||
|
||||
<StackPane fx:id="rootPane" prefHeight="455.0" prefWidth="539.0" styleClass="window-view" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.cecilia.view.window.WindowView">
|
||||
<children>
|
||||
<Pane fx:id="backgroundPane" prefHeight="200.0" prefWidth="200.0" />
|
||||
<Pane fx:id="backgroundImgPane" prefHeight="200.0" prefWidth="200.0" />
|
||||
<StackPane fx:id="contentPane" prefHeight="150.0" prefWidth="200.0" />
|
||||
<BorderPane pickOnBounds="false" StackPane.alignment="TOP_RIGHT">
|
||||
<right>
|
||||
<VBox fx:id="messagePane" alignment="TOP_CENTER" minWidth="240.0" pickOnBounds="false" prefHeight="200.0" prefWidth="100.0" spacing="10.0" BorderPane.alignment="CENTER">
|
||||
<opaqueInsets>
|
||||
<Insets />
|
||||
</opaqueInsets>
|
||||
<padding>
|
||||
<Insets top="60.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
</right>
|
||||
</BorderPane>
|
||||
<StackPane fx:id="contentPane" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="150.0" prefWidth="200.0" />
|
||||
</children>
|
||||
</StackPane>
|
||||
</StackPane>
|
6
src/main/resources/icons/arrow-left.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M641.28 278.613333l-45.226667-45.226666-278.634666 278.762666 278.613333 278.485334 45.248-45.269334-233.365333-233.237333z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 434 B |
7
src/main/resources/icons/arrow-right.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M593.450667 512.128L360.064 278.613333l45.290667-45.226666 278.613333 278.762666L405.333333 790.613333l-45.226666-45.269333z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 445 B |
17
src/main/resources/icons/ball-1.c35 (1).svg
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="600px" height="600px" viewBox="0 0 600 600" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<title>画板</title>
|
||||
<defs>
|
||||
<linearGradient x1="73.3820089%" y1="23.197102%" x2="9.89105625%" y2="70.4996104%" id="linearGradient-1">
|
||||
<stop stop-color="#009CFF" stop-opacity="0" offset="0%"></stop>
|
||||
<stop stop-color="#3DE6F5" offset="48.8537454%"></stop>
|
||||
<stop stop-color="#0063FF" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-14.4%" y="-14.4%" width="128.8%" height="128.8%" filterUnits="objectBoundingBox" id="filter-2">
|
||||
<feGaussianBlur stdDeviation="25" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="画板" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.6" opacity="0.2">
|
||||
<circle id="椭圆形" fill="url(#linearGradient-1)" filter="url(#filter-2)" cx="300" cy="300" r="260"></circle>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1008 B |
17
src/main/resources/icons/ball-1.c35.svg
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="600px" height="600px" viewBox="0 0 600 600" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<title>画板</title>
|
||||
<defs>
|
||||
<linearGradient x1="73.3820089%" y1="23.197102%" x2="9.89105625%" y2="70.4996104%" id="linearGradient-1">
|
||||
<stop stop-color="#009CFF" stop-opacity="0" offset="0%"></stop>
|
||||
<stop stop-color="#3DE6F5" offset="48.8537454%"></stop>
|
||||
<stop stop-color="#0063FF" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-14.4%" y="-14.4%" width="128.8%" height="128.8%" filterUnits="objectBoundingBox" id="filter-2">
|
||||
<feGaussianBlur stdDeviation="25" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="画板" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.6" opacity="0.2">
|
||||
<circle id="椭圆形" fill="url(#linearGradient-1)" filter="url(#filter-2)" cx="300" cy="300" r="260"></circle>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1008 B |
954
src/main/resources/icons/baobiaofenxi.svg
Normal file
@ -0,0 +1,954 @@
|
||||
<svg xml:space="preserve" style="enable-background:new 0 0 1024 1024;" viewBox="0 0 1024 1024" y="0px" x="0px"
|
||||
xmlns="http://www.w3.org/2000/svg" id="图层_1" version="1.1">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#C7CEFB;stroke-width:2;}
|
||||
.st1{fill:none;stroke:#F1F3FF;stroke-width:2;}
|
||||
.st2{fill:none;stroke:#E0E6FF;stroke-width:2;}
|
||||
.st3{fill:none;stroke:#E6ECFF;stroke-width:2;}
|
||||
.st4{fill:none;stroke:#B0C6FF;stroke-width:2;}
|
||||
.st5{fill:none;stroke:#808098;stroke-width:2;}
|
||||
.st6{fill:none;stroke:#8F98E7;stroke-width:2;}
|
||||
.st7{fill:none;stroke:#B5BBF1;stroke-width:2;}
|
||||
.st8{fill:none;stroke:#9CA8F9;stroke-width:2;}
|
||||
.st9{fill:none;stroke:#878DDA;stroke-width:2;}
|
||||
.st10{fill:none;stroke:#FEE7F0;stroke-width:2;}
|
||||
.st11{fill:none;stroke:#2C41E1;stroke-width:2;}
|
||||
.st12{fill:none;stroke:#6476F4;stroke-width:2;}
|
||||
.st13{fill:none;stroke:#FCBCC1;stroke-width:2;}
|
||||
.st14{fill:none;stroke:#5767E3;stroke-width:2;}
|
||||
.st15{fill:none;stroke:#A8B5FB;stroke-width:2;}
|
||||
.st16{fill:none;stroke:#AEBBFB;stroke-width:2;}
|
||||
.st17{fill:none;stroke:#B9C1FB;stroke-width:2;}
|
||||
.st18{fill:none;stroke:#C6B6EC;stroke-width:2;}
|
||||
.st19{fill:none;stroke:#405FE7;stroke-width:2;}
|
||||
.st20{fill:none;stroke:#7D3D5A;stroke-width:2;}
|
||||
.st21{fill:none;stroke:#7895FB;stroke-width:2;}
|
||||
.st22{fill:none;stroke:#97B3FF;stroke-width:2;}
|
||||
.st23{fill:none;stroke:#1C2891;stroke-width:2;}
|
||||
.st24{fill:none;stroke:#2435D4;stroke-width:2;}
|
||||
.st25{fill:none;stroke:#1726C2;stroke-width:2;}
|
||||
.st26{fill:none;stroke:#E5D4F0;stroke-width:2;}
|
||||
.st27{fill:none;stroke:#7685E7;stroke-width:2;}
|
||||
.st28{fill:none;stroke:#080D73;stroke-width:2;}
|
||||
.st29{fill:none;stroke:#818CE7;stroke-width:2;}
|
||||
.st30{fill:none;stroke:#C6D3FF;stroke-width:2;}
|
||||
.st31{fill:none;stroke:#606798;stroke-width:2;}
|
||||
.st32{fill:none;stroke:#666D98;stroke-width:2;}
|
||||
.st33{fill:none;stroke:#484E93;stroke-width:2;}
|
||||
.st34{fill:none;stroke:#7F6889;stroke-width:2;}
|
||||
.st35{fill:none;stroke:#101980;stroke-width:2;}
|
||||
.st36{fill:none;stroke:#353B89;stroke-width:2;}
|
||||
.st37{fill:none;stroke:#314798;stroke-width:2;}
|
||||
.st38{fill:none;stroke:#9965BB;stroke-width:2;}
|
||||
.st39{fill:none;stroke:#8C55A9;stroke-width:2;}
|
||||
.st40{fill:none;stroke:#4D6FF9;stroke-width:2;}
|
||||
.st41{fill:none;stroke:#AD83C1;stroke-width:2;}
|
||||
.st42{fill:none;stroke:#3854DA;stroke-width:2;}
|
||||
.st43{fill:none;stroke:#844A9C;stroke-width:2;}
|
||||
.st44{fill:none;stroke:#7980DA;stroke-width:2;}
|
||||
.st45{fill:none;stroke:#E3A9C1;stroke-width:2;}
|
||||
.st46{fill:none;stroke:#8295F9;stroke-width:2;}
|
||||
.st47{fill:none;stroke:#D1DAFF;stroke-width:2;}
|
||||
.st48{fill:none;stroke:#DFCEF0;stroke-width:2;}
|
||||
.st49{fill:none;stroke:#F0DBF0;stroke-width:2;}
|
||||
.st50{fill:none;stroke:#9B90EA;stroke-width:2;}
|
||||
.st51{fill:none;stroke:#8E80D8;stroke-width:2;}
|
||||
.st52{fill:none;stroke:#8D9BF9;stroke-width:2;}
|
||||
.st53{fill:none;stroke:#7D89EC;stroke-width:2;}
|
||||
.st54{fill:none;stroke:#5163EA;stroke-width:2;}
|
||||
.st55{fill:none;stroke:#A2BAFF;stroke-width:2;}
|
||||
.st56{fill:none;stroke:#4554D9;stroke-width:2;}
|
||||
.st57{fill:#FFFFFF;}
|
||||
.st58{fill:#3850F2;}
|
||||
.st59{fill:#1F31CF;}
|
||||
.st60{fill:#8F9CF6;}
|
||||
.st61{fill:#000030;}
|
||||
.st62{fill:#F97983;}
|
||||
.st63{fill:#0F1AB5;}
|
||||
.st64{fill:#E2E6FF;}
|
||||
.st65{fill:#618DFF;}
|
||||
.st66{fill:#C0CDFF;}
|
||||
.st67{fill:#CCD9FF;}
|
||||
.st68{fill:#FDCFE1;}
|
||||
.st69{fill:#6A76E2;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M467.4,197.1L187,197c-0.7,0-1,0.3-1,1l0,141.7" class="st0"></path>
|
||||
<path d="M186,339.7c-11.4-0.7-20.5,2.6-27.3,9.7c-3.5,3.7-6,9-8.5,14.1
|
||||
c-0.2,0.5-0.8,0.7-1.3,0.4c-0.1,0-0.2-0.1-0.3-0.2c-16.9-16.6-37-38.5-63.9-32.6c-30.5,6.6-32.1,51.4-30.5,75
|
||||
c2.1,29.7,11,60.1,21,92.6c0.2,0.7,0,1.2-0.8,1.3c-5.5,1-10.7,2.8-15.6,5.3c-1.1,0.5-1.7,1.1-1.9,1.5c-0.5,1.1-0.2,2,0.9,2.6
|
||||
l74.2,41.8" class="st1"></path>
|
||||
<path d="M131.9,551.3c4.7,13.4,9.7,25.4,14.9,35.8c9.5,19,21.3,39.6,35.4,62" class="st2"></path>
|
||||
<path d="M182.3,649.1c1.1,1,1.8,2.3,2.2,3.9" class="st0"></path>
|
||||
<path d="M184.5,653c-1.2-0.1-2.4-0.6-3.5-1.5c-22.6-18.7-54.4-31.6-77.6-6.9
|
||||
c-40.3,43.1,6.2,137.4,41.1,171.2c1,1,1.8,0.8,3.1,0.7" class="st3"></path>
|
||||
<path d="M147.6,816.5l-0.1,3" class="st4"></path>
|
||||
<path d="M147.5,819.5H77c-0.7,0-1,0.3-1,1V838c0,0.6,0.4,1,1,1l92,0" class="st5"></path>
|
||||
<path d="M169,838.9l19.5,0.8" class="st6"></path>
|
||||
<path d="M188.5,839.7c6.6-0.2,15.4,0.5,26.4,2.4c6.9,1.1,17.5,1.7,31.7,1.5
|
||||
c0.7,0,1.1,0.4,1.2,1.1l0.4,12.5c0,1.2,0.7,1.8,1.9,1.8h234.2" class="st0"></path>
|
||||
<path d="M484.2,859l121.3,0" class="st7"></path>
|
||||
<path d="M605.5,859l105.2,0" class="st8"></path>
|
||||
<path d="M710.7,859l70,0.1c0.7,0,1.1-0.4,1.1-1.1l0.1-19.1" class="st9"></path>
|
||||
<path d="M782,838.9l192.9,0.1c0.7,0,1.1-0.4,1.1-1.1v-17.4c0-0.7-0.3-1-1-1l-71,0" class="st5"></path>
|
||||
<path d="M904,819.5l-0.6-2.3c-0.1-0.5,0-1.1,0.4-1.5
|
||||
c25-26.3,47.5-69.1,44.4-106.5c-2.5-29.6-26.6-18.7-39.4-6c-0.9,0.9-1.6,1.5-2.3,1.8c-2.6,1.3-4.1,0.3-4.6-3
|
||||
c-0.1-0.4,0-0.8,0.1-1.1c11.2-38.6,18.8-73.3,15.4-113.9" class="st10"></path>
|
||||
<path d="M917.3,586.9c18.8-40.6,26.1-84.7,24.6-130c-0.8-22.7-9.1-83.8-40.4-85
|
||||
c-15.5-0.6-33,2.8-52.5,10.2" class="st1"></path>
|
||||
<path d="M849,382.2l0-119.3c0-0.9-0.7-1.5-1.5-1.5l0,0L547,261.5" class="st0"></path>
|
||||
<path d="M547,261.5c25.7-33.9,7.5-81.5-36-84.4" class="st6"></path>
|
||||
<path d="M511.1,177.1c-17.9-0.2-32.4,6.4-43.7,19.9" class="st8"></path>
|
||||
<path d="M511.1,177.1l-0.8,14.8c-0.1,1.4,0.7,2.7,2,3.3
|
||||
c22.9,9.9,33.1,38.6,13.3,56.6c-1.6,1.4-1.8,3.8-0.6,5.5l8.3,11.2c0.4,0.6,1,0.9,1.8,0.9l3.4,0.1" class="st11"></path>
|
||||
<path d="M538.6,269.5c-0.7,0.7-1.1,1.3-1.1,1.8" class="st12"></path>
|
||||
<path d="M537.4,271.4c-20.5,7.7-38.4,11.8-57.7-1.7
|
||||
c-20.1-14.1-26.5-34.6-19.1-61.6" class="st8"></path>
|
||||
<path d="M460.7,208l6.7-11" class="st12"></path>
|
||||
<path d="M537.4,271.4l299.5,0.7c0.6,0,1,0.4,1,1l-0.1,226" class="st0"></path>
|
||||
<path d="M837.8,499.1c-10.5,17.2-18.7,35.1-24.4,53.7c-0.2,0.6-0.8,0.9-1.4,0.7
|
||||
c-0.4-0.1-0.6-0.4-0.7-0.8c-0.2-0.9-0.4-2-0.5-3.4c-1-17-2.9-34.1-7.9-50.3" class="st3"></path>
|
||||
<path d="M802.9,499c1.1-1.1,2.3-1.6,3.4-1.7" class="st0"></path>
|
||||
<path d="M806.3,497.3l2.5-0.5c0.8-0.2,1.1-0.6,1.1-1.4l-0.3-41.8" class="st6"></path>
|
||||
<path d="M809.6,453.6c-3.8-69.6-61.9-119.5-129.4-119.7" class="st4"></path>
|
||||
<path d="M680.1,333.9c-63.1,1-116.8,48.5-124.6,110.7
|
||||
c-2.1,17.1-2.5,35.2-1.3,54.3c0,0.7,0.4,1.1,1.2,1.1H642c0.9,0,1.1-0.4,0.8-1.2c-3.6-7.5-5.7-13.2-6.5-16.9
|
||||
c-6.7-31,12.1-58,43.9-60.3" class="st6"></path>
|
||||
<path d="M680.1,421.6c23.6,1.7,38.7,14.4,45.4,38.1" class="st4"></path>
|
||||
<path d="M725.5,459.7c-14.4,1.2-28.4,2.5-42,4c-0.4,0-0.7,0.2-1,0.4
|
||||
c-0.9,0.8-0.6,1.5,0.9,2.3c0.1,0.1,0.2,0.1,0.3,0.1l41.9,10.2" class="st6"></path>
|
||||
<path d="M725.6,476.7l-8.3,22.2c-0.3,0.7,0,1.1,0.7,1.1l63,0" class="st4"></path>
|
||||
<path d="M781.1,500c-8.2,23.7-11.1,49.6-13.1,74.5c-0.1,1,0.2,2.3,0.7,3.8" class="st3"></path>
|
||||
<path d="M768.6,578.3v3.3" class="st4"></path>
|
||||
<path d="M768.6,581.7c-2.4,13-1.8,25.5,1.9,37.4" class="st3"></path>
|
||||
<path d="M770.6,619.1c-24.7,12.4-23.2,45.1-0.7,59.1c2.3,1.4,7.8,3.1,16.6,5.1" class="st6"></path>
|
||||
<path d="M786.4,683.3l-62.2,0.5" class="st0"></path>
|
||||
<path d="M724.2,683.8c1.1-14.2,1.6-28.5,1.7-42.8c0.1-10.8-9.8-13.3-18.9-12.5" class="st5"></path>
|
||||
<path d="M707.1,628.5c-1.9-8.7-5.6-16.8-11.2-24.4" class="st3"></path>
|
||||
<path d="M695.9,604.1c3.5-0.1,6.5-0.3,8.9-0.5c1-0.1,1.5-0.6,1.7-1.4
|
||||
c0.2-0.9-0.4-1.9-1.3-2.1c-0.1,0-0.2,0-0.3,0l-12.7-0.8" class="st4"></path>
|
||||
<path d="M692.2,599.3c-3.1-4.3-7.2-7.1-12.3-8.2c-19.2-4.3-33.4,23.4-36.3,37.4" class="st3"></path>
|
||||
<path d="M643.6,628.5c-63.3,0-126.5,0.2-189.6,0.4c-7.3,0-11.3,3.2-12,9.5
|
||||
c-0.8,7.7-1.5,22.8-2.2,45.5" class="st5"></path>
|
||||
<path d="M439.8,683.9l-15.7-0.5" class="st0"></path>
|
||||
<path d="M424.1,683.4c-4.6-13.2-10.4-25.7-17.3-37.5c-0.3-0.6-0.9-0.9-1.5-0.9
|
||||
l-3.4,0" class="st3"></path>
|
||||
<path d="M401.9,645l8.5-113.4" class="st5"></path>
|
||||
<path d="M410.5,531.6c1.2-0.8,2.8-0.8,4.8,0c0.8,0.3,1.7-0.1,2-0.9
|
||||
c0.1-0.3,0.1-0.5,0.1-0.8l-7.4-45.6c-0.1-0.4,0.2-0.8,0.6-0.9c0,0,0.1,0,0.1,0l0.9,0" class="st8"></path>
|
||||
<path d="M411.6,483.5c10.6,0.9,17.3-6.6,23.9-14.9c10.7-13.5,19.8-27.7,27.4-42.6" class="st6"></path>
|
||||
<path d="M462.9,425.9c7.3-15.6,11.8-30.3,13.6-43.9c0.5-3.5-1.4-5.1-5.6-5" class="st13"></path>
|
||||
<path d="M470.9,377l14.5-42.4c0.6-1.9,0-2.8-2-2.8l-80.1-0.6" class="st4"></path>
|
||||
<path d="M403.4,331.2c-17.3-6.6-33.3-13.8-48.1-21.6" class="st8"></path>
|
||||
<path d="M355.3,309.7l-0.8-9.8" class="st13"></path>
|
||||
<path d="M354.5,299.9l12.4-0.1c0.9,0,1.3-0.4,1.2-1.3l-1.6-17.5" class="st5"></path>
|
||||
<path d="M366.6,281c-0.1-1.7-0.6-3.3-1.6-4.9" class="st13"></path>
|
||||
<path d="M365,276.1c7-1.1,10.7-10.8,2-10.6" class="st5"></path>
|
||||
<path d="M367,265.5c1.7-6.3,1.6-12.3-0.5-17.8" class="st13"></path>
|
||||
<path d="M366.4,247.7c13.3-4.7,14.7-23.3,0.5-25.4c-3.6-0.5-7.8,0.8-11.5,1.8
|
||||
c-0.7,0.2-1.4,0-1.9-0.4c-6.6-4.9-13.1-8.8-20.7-2.8c-3.1,2.4-2.3,4.8-7.3,5.2c-10.6,0.9-12.1,9.4-11,18.2
|
||||
c0.1,0.7-0.2,1.4-0.8,1.8c-2.7,1.7-3.9,4.3-3.7,7.5c0.1,0.8,0.5,1.3,1.2,1.6l4,1.6c0.7,0.3,1.1,0.7,1.4,1.4l4.7,11.7" class="st5"></path>
|
||||
<path d="M321.3,269.8c3.7,2.5,5.1,6.3,4.3,11.2c-1.5,9.1-3.5,18.1-5.9,26.9" class="st13"></path>
|
||||
<path d="M319.7,307.9l-8.9,3.8" class="st6"></path>
|
||||
<path d="M310.8,311.7l-36.5,15.9" class="st9"></path>
|
||||
<path d="M274.3,327.7c-2.6,0.9-5.7,2.1-9.2,3.7c-18.6,8.3-43.9,84.7-47.5,105.5" class="st6"></path>
|
||||
<path d="M217.5,436.8c-3.3,20.8,9.8,24.4,27.3,23.4c9.7-0.6,19.4-1.3,29.2-2.3" class="st8"></path>
|
||||
<path d="M274,457.9l-0.8,72.3c0,0.7,0.3,1.2,0.9,1.6l1.3,0.7" class="st9"></path>
|
||||
<path d="M275.4,532.4c0.5,1,0.7,2.2,0.6,3.6c-1.1,35.6-2.5,71.3-4.1,107.1" class="st5"></path>
|
||||
<path d="M271.9,643.1l-3.5,0.2c-0.7,0-1.1,0.3-1.3,1l-7.3,18
|
||||
c-0.1,0.3-0.5,0.5-0.8,0.3c-0.3-0.1-0.4-0.4-0.4-0.7c0.2-1.3,0-2.4-0.7-3.4" class="st3"></path>
|
||||
<path d="M257.8,658.4c12.9-78.1-10.6-157.4-60.8-218.3" class="st2"></path>
|
||||
<path d="M547,261.5l-8.5,8" class="st14"></path>
|
||||
<path d="M460.7,208l-263.4,0c-0.4,0-0.8,0.3-0.8,0.8l0.5,231.3" class="st0"></path>
|
||||
<path d="M197,440.1l-0.6,1.8c-0.2,0.6-0.3,1.2-0.3,1.9
|
||||
c-0.2,70.6-0.3,141.3-0.3,211.9c0,5.4,1.7,10.3,3.5,15.2c0.3,0.9,0.1,1.5-0.7,2l-0.6,0.4c-0.5,0.3-1,0.3-1.3-0.2l-9-12.5" class="st15"></path>
|
||||
<path d="M187.7,660.6l-3.2-7.6" class="st16"></path>
|
||||
<path d="M182.3,649.1l2.8-2.8c0.4-0.4,0.6-0.9,0.5-1.5
|
||||
c-1.1-17.4-0.7-34.9,1.2-52.2c0.1-0.7,0-1.3-0.2-1.9c-0.5-1.6-0.8-3.8-0.7-6.6c0.5-38.5,0.4-90.2-0.3-155.3" class="st15"></path>
|
||||
<path d="M185.5,428.7l0.5-89" class="st17"></path>
|
||||
<path d="M849,382.2l-0.2,98.8" class="st17"></path>
|
||||
<path d="M848.8,480.9l-1,110.9" class="st15"></path>
|
||||
<path d="M847.8,591.8l-9.8,18.4" class="st18"></path>
|
||||
<path d="M838.1,610.2l-0.3-111.1" class="st16"></path>
|
||||
<path d="M680.1,333.9v87.7" class="st19"></path>
|
||||
<path d="M806.3,497.3c-3-1.3-5.7-3.3-8.2-6c-0.5-0.5-1-0.8-1.7-0.9
|
||||
c-3.1-0.7-6.3-0.4-9.3,0.8" class="st14"></path>
|
||||
<path d="M787.1,491.1l-61.5-14.4" class="st19"></path>
|
||||
<path d="M439.9,695.6l-12.1-0.5" class="st0"></path>
|
||||
<path d="M427.7,695l-29.4-1.6" class="st16"></path>
|
||||
<path d="M793.8,681.2c-4.5,0.3-7,1-7.3,2.1" class="st14"></path>
|
||||
<path d="M366.4,247.7c-6.1,0.1-11.8-1.4-17-4.6c-4.4-2.7-16.7-7.2-21.7-5.7
|
||||
c-3.1,0.9-5.4,2.8-6.8,5.5c-0.3,0.6-0.2,0.7,0.4,0.3c6.2-4.6,8.1-6.5,16.1-3.4c4.6,1.8,13.6,2.7,12.5,10c-1.1,7-5.5,9.8-13.3,8.5
|
||||
c-0.4-0.1-0.9,0.2-0.9,0.7c0,0.1,0,0.1,0,0.2l0.1,3.2c0,0.9,0.5,1.3,1.3,1.4l15,1.7c0.7,0.1,0.7,0.3,0.1,0.6l-1.7,0.9
|
||||
c-0.4,0.2-0.7,0.6-0.8,1.1c-0.4,2.7,0.7,4.6,3.3,5.7c1.2,0.5,2.5-0.1,3-1.3c0.1-0.3,0.2-0.6,0.2-0.8v-4.5c0-0.7,0.3-1.1,1-1.1
|
||||
l9.9-0.4" class="st20"></path>
|
||||
<path d="M365,276.1c-2.2-1.6-3.2-3.9-3-6.8c0.1-0.7-0.2-1.1-0.8-1.4l-1.1-0.5
|
||||
c-0.7-0.3-1.5,0.1-1.8,0.8c0,0.1-0.1,0.2-0.1,0.3l-0.4,3.8c-0.1,0.8-0.5,1.4-1.3,1.7c-4.8,2-8.1-0.9-8.5-5.7
|
||||
c-0.1-0.9-0.5-1.4-1.4-1.5l-9-1.3c-0.6-0.1-1,0.1-1.1,0.7c-3.5,11.7,16.1,25.5,27.1,26.5c0.8,0.1,1.2-0.3,1.3-1l0.9-5
|
||||
c0.2-1.1-0.3-1.6-1.4-1.3c-1.6,0.3-3.2,0.2-4.7-0.5c-0.3-0.1-0.6-0.3-0.7-0.6c-0.3-0.5-0.2-0.9,0.1-1.4c0.3-0.4,0.8-0.6,1.3-0.3
|
||||
l1.6,0.9c0.7,0.4,1.4,0.5,2.1,0.2c1.4-0.5,2.2-1.4,2.4-2.6" class="st20"></path>
|
||||
<path d="M354.5,299.9c-23.2-6.1-21.6-12.5-23.7-33.7c-0.1-0.7-0.4-1.3-0.9-1.7
|
||||
c-5-3.9-7.1,1.7-8.6,5.3" class="st20"></path>
|
||||
<path d="M787.1,491.1l-3.2,4.4c-0.4,0.5-0.5,1.2-0.3,1.8
|
||||
c0.4,1.6,0.1,2.5-1.1,2.5" class="st21"></path>
|
||||
<path d="M782.5,499.9c-0.5,0.2-1,0.2-1.5,0.1" class="st22"></path>
|
||||
<path d="M410.5,531.6l-41.5-0.9c-0.7,0-1.3-0.4-1.6-1l-12.6-26" class="st23"></path>
|
||||
<path d="M354.7,503.8c-1.8-19.9-2.9-40.5-3.2-61.6c0-1-0.2-1.7-0.7-2.1
|
||||
c-0.6-0.5-1.4-0.7-2.4-0.6" class="st24"></path>
|
||||
<path d="M326.6,320.6l20,28.7" class="st6"></path>
|
||||
<path d="M346.6,349.3l-0.2,1.1" class="st11"></path>
|
||||
<path d="M346.4,350.3l-6.7-0.8c-0.7-0.1-1.3,0-1.9,0.3
|
||||
c-7.3,3.1-12.4,0.4-15.9-6.5c-5.2-10.2-8.9-20.7-11.1-31.5" class="st25"></path>
|
||||
<path d="M838.1,610.2l-20.7,42.1" class="st26"></path>
|
||||
<path d="M817.4,652.3c-0.1-26.3-21.9-43.6-46.9-33.2" class="st27"></path>
|
||||
<path d="M768.6,581.7l36.2,0.1c0.8,0,1.5-0.7,1.5-1.5c0-0.4-0.1-0.8-0.4-1
|
||||
c-0.9-0.9-2.1-1.3-3.7-1.2c-11.1,0.6-22.4-0.1-33.6,0.3" class="st22"></path>
|
||||
<path d="M424.1,683.4l-25-0.1" class="st16"></path>
|
||||
<path d="M795.6,695.1l-68.4-0.4" class="st0"></path>
|
||||
<path d="M411.6,483.5l-0.7-0.4c-0.6-0.3-1-0.8-1.1-1.4l-7.8-46.8" class="st11"></path>
|
||||
<path d="M802.9,499l-20.4,0.8" class="st16"></path>
|
||||
<path d="M354.7,503.8l-13.6,25.2c-0.7,1.3-2,2.1-3.4,2.1l-62.4,1.4" class="st28"></path>
|
||||
<path d="M275.1,414.8c-1.6,2-2.6,4.3-3.2,7" class="st29"></path>
|
||||
<path d="M271.9,421.8c-19.2-0.4-40.5-0.1-54.4,15" class="st11"></path>
|
||||
<path d="M257.8,658.4c-0.1,0.2-0.3,0.3-0.5,0.5c-0.2,0.1-0.5,0.1-0.7-0.1
|
||||
c-16.9-20.5-35.6-39.2-56.2-56.1c-0.5-0.4-0.8-0.3-1.1,0.2l-0.3,0.5c-0.3,0.5-0.2,0.9,0.2,1.3c6.7,6.7,24.7,22.3,23.5,32.2
|
||||
c-1.7,15.1-2.7,30.4-2.9,45.7c0,0.8,0.6,1.5,1.5,1.5c0,0,0.1,0,0.1,0c16.2-1.2,32.4-0.9,48.4,0.9" class="st30"></path>
|
||||
<path d="M269.9,685l0.1,9.2" class="st31"></path>
|
||||
<path d="M270,694.2l-48.1-0.3c-0.8,0-1.3,0.4-1.5,1.1c-0.9,3,2.2,6.1,1,9.5
|
||||
c-0.2,0.5-0.7,0.8-1.2,0.6c-0.2-0.1-0.4-0.2-0.5-0.4l-6.4-9.5c-1.1-1.6-3.1-2.4-5-2c-6.7,1.6-16.4,2.7-18.4-6.1
|
||||
c-2.1-9.5-2.8-18.4-2.1-26.6" class="st30"></path>
|
||||
<path d="M401.9,645l-2.8,38.3" class="st32"></path>
|
||||
<path d="M399.1,683.3l-0.8,10.1" class="st33"></path>
|
||||
<path d="M398.3,693.5L389.4,809c-0.1,0.7,0.5,1.3,1.2,1.4
|
||||
c7.9,0.9,15,3.7,21.4,8.4c0.6,0.4,1.2,0.7,2,0.7h19c0.7,0,1.1-0.4,1.2-1.1L438,728" class="st32"></path>
|
||||
<path d="M438,728l1.9-32.4" class="st5"></path>
|
||||
<path d="M439.9,695.6l0-11.6" class="st33"></path>
|
||||
<path d="M643.6,628.5h63.4" class="st32"></path>
|
||||
<path d="M724.2,683.8l0,9.1" class="st33"></path>
|
||||
<path d="M724.2,693l-2.6,55.4" class="st34"></path>
|
||||
<path d="M721.7,748.4l-9.3-0.6c-0.7,0-1.1-0.4-1.1-1.2l1.8-73.2" class="st35"></path>
|
||||
<path d="M713,673.5l0.9-32.6c0-0.5-0.4-0.9-0.8-0.9c0,0,0,0,0,0H453.4
|
||||
c-0.8,0-1.3,0.4-1.3,1.3l-1.5,41" class="st5"></path>
|
||||
<path d="M450.6,682.2c-0.5,5.4-0.7,11-0.7,16.6c0.2,16.1-2.3,32-2.4,48.1
|
||||
c-0.1,7.9-1.8,16.9-1.5,24c0.4,12.2,0.1,24.4-0.9,36.5c0,0.3,0.2,0.5,0.5,0.6c0,0,0,0,0,0l163.2,0c0.8,0,1.5,0.6,1.5,1.5
|
||||
c0,0.2,0,0.3-0.1,0.4l-2.2,7c-0.6,2,0.1,3,2.2,2.9l26.1-0.3" class="st35"></path>
|
||||
<path d="M636.2,819.5l144.3,0" class="st23"></path>
|
||||
<path d="M780.5,819.5l7.8,0" class="st34"></path>
|
||||
<path d="M788.3,819.5l33.8-0.1c0.3,0,0.7-0.1,0.9-0.3l0.9-0.6" class="st23"></path>
|
||||
<path d="M824,818.5c0,0.2,0,0.4,0,0.5c0.1,0.3,0.2,0.4,0.5,0.4l79.5,0.1" class="st34"></path>
|
||||
<path d="M782,838.9l-68.7-0.4" class="st28"></path>
|
||||
<path d="M713.3,838.5L603,839" class="st23"></path>
|
||||
<path d="M603,839H483" class="st36"></path>
|
||||
<path d="M483,839H207.5" class="st33"></path>
|
||||
<path d="M207.5,839c-12.9-1.2-25.7-1.2-38.6-0.1" class="st35"></path>
|
||||
<path d="M147.5,819.5l32.6,0.2" class="st37"></path>
|
||||
<path d="M180.1,819.7l3.9-0.2" class="st32"></path>
|
||||
<path d="M184,819.5h43" class="st23"></path>
|
||||
<path d="M227,819.5l1.5,0" class="st32"></path>
|
||||
<path d="M228.5,819.4h28.2" class="st20"></path>
|
||||
<path d="M256.8,819.4l5.9,0c0.8,0,1.2-0.4,1.3-1.1c2.4-19.6,2.3-45.4,2.9-58.7
|
||||
c1.1-22.2,2.1-44,3.1-65.4" class="st32"></path>
|
||||
<path d="M269.9,685l2-41.9" class="st32"></path>
|
||||
<path d="M355.3,309.7l0,9.7" class="st38"></path>
|
||||
<path d="M355.4,319.4c-10.1,3.1-19.7,3.5-28.8,1.2" class="st13"></path>
|
||||
<path d="M326.6,320.6c-3.6-3.9-5.9-8.1-6.9-12.7" class="st39"></path>
|
||||
<path d="M692.2,599.3l-18.6,0.8c-0.7,0-1.2,0.5-1.3,1.2c-0.1,1,0.5,1.6,1.9,1.7
|
||||
c7.7,0.6,15,0.9,21.7,1.2" class="st22"></path>
|
||||
<path d="M462.9,425.9c-3.3,0.3-5.6-0.3-6.9-1.9" class="st39"></path>
|
||||
<path d="M403.4,331.2l-31.3,0.7c-0.7,0-1.2,0.4-1.4,1.1L349,405.5" class="st40"></path>
|
||||
<path d="M349,405.5c-2-19-2.9-37.4-2.6-55.2" class="st24"></path>
|
||||
<path d="M346.6,349.3c4-9.7,6.9-19.7,8.8-29.9" class="st8"></path>
|
||||
<path d="M809.6,453.6l-84.1,6.1" class="st19"></path>
|
||||
<path d="M470.9,377c-18,2.6-19.4,16.8-15.3,31.3c1.7,6,1.2,10,0.3,15.7" class="st41"></path>
|
||||
<path d="M456,424c-1-1-1.6-0.6-2,1c-0.8,3.5-2,6.4-3.5,8.5
|
||||
c-0.4,0.6-1,0.9-1.7,0.9l-46.8,0.6" class="st19"></path>
|
||||
<path d="M402,434.9l-46,0" class="st40"></path>
|
||||
<path d="M356,434.9l11-7.8c1.1-0.8,1.4-2.4,0.6-3.5c-0.1-0.2-0.3-0.3-0.4-0.5
|
||||
c-5.8-4.8-12.3-8.2-19.4-10.4" class="st41"></path>
|
||||
<path d="M349,405.5l-1.3,7.2" class="st42"></path>
|
||||
<path d="M347.7,412.7c-19-6-25.6,2.1-37.6,14.5" class="st43"></path>
|
||||
<path d="M310.1,427.2l-2.2-5.9c-0.3-0.9-1.2-1.4-2.1-1.3l-27.5,2.1
|
||||
c-0.7,0.1-1.4-0.2-1.8-0.7l-0.7-0.8" class="st24"></path>
|
||||
<path d="M275.8,420.5c0.5-2.1,0.3-4-0.7-5.7" class="st44"></path>
|
||||
<path d="M275.1,414.8c3.8-7.7,8.7-18.4,14.6-32.1c9.5-22.1,4.3-40.4-15.4-55" class="st25"></path>
|
||||
<path d="M310.8,440c-0.4,3.1,0.1,6.5,1.3,10.2c0.2,0.5-0.1,1.1-0.6,1.3
|
||||
c0,0-0.1,0-0.1,0l-37.3,6.4" class="st24"></path>
|
||||
<path d="M256.8,819.4l-0.7-54.6c0-1.3-0.6-1.9-1.9-1.8l-22.5,0.4
|
||||
c-0.8,0-1.2,0.4-1.2,1.2c-0.1,17-0.1,33.9-0.1,50.8c0,2.4-0.6,3.7-1.9,4.1" class="st45"></path>
|
||||
<path d="M227,819.5c-0.1-0.3-0.4-0.5-0.9-0.6c-0.3-0.1-0.4-0.2-0.4-0.5
|
||||
l-0.8-83.5c0-0.7-0.4-1-1.1-1l-38.8,0.2c-0.7,0-1,0.3-1,1l0,84.4" class="st46"></path>
|
||||
<path d="M180.1,819.7l-0.1-50c0-0.9-0.7-1.7-1.6-1.7h-29.9c-0.7,0-1,0.3-1,1
|
||||
l0.1,47.5" class="st22"></path>
|
||||
<path d="M185.5,428.7c-7.5-8.5-15.9-14.7-25.2-18.5
|
||||
c-32.3-13.4-41.2,32.7-41.7,53.9c-0.8,31.5,4.5,56.4,13.3,87.3" class="st47"></path>
|
||||
<path d="M905.6,561.4c-20.5-4.2-33.2,3.4-45.9,18.2c-3.8,4.3-7.7,8.4-11.9,12.3" class="st48"></path>
|
||||
<path d="M917.3,586.9c-3-8.8-6.9-17.3-11.7-25.5" class="st49"></path>
|
||||
<path d="M905.6,561.4c1.2-22.2,1.5-93.8-28.1-96c-13.8-1-18.9,8.1-28.7,15.5" class="st47"></path>
|
||||
<path d="M824,818.5v-28c0-0.7-0.3-1-1-1h-33.5c-0.9,0-1.3,0.4-1.3,1.3l0.1,28.7" class="st50"></path>
|
||||
<path d="M780.5,819.5l0-54.3c0-0.7-0.4-1.1-1.1-1.1l-58.1,0.3" class="st50"></path>
|
||||
<path d="M721.3,764.4l5.8-12.8c0.3-0.7,0.1-1.2-0.6-1.5l-4.8-1.6" class="st51"></path>
|
||||
<path d="M724.2,693c1.1,0.1,2.1,0.6,3,1.7" class="st18"></path>
|
||||
<path d="M727.2,694.6l2.1,16.5c0.2,1.6,0.9,1.8,2.1,0.8c9-7.5,19.7-8.4,28.7-0.3
|
||||
c10.4,9.2,15.5,29.7,18.9,42.7c0.1,0.4,0.5,0.6,0.8,0.5c0.2,0,0.3-0.2,0.4-0.3c0.2-0.4,0.4-0.9,0.5-1.6c3-19.4,7.9-38.7,14.9-57.9" class="st10"></path>
|
||||
<path d="M795.6,695.1l-1.9-13.9" class="st18"></path>
|
||||
<path d="M793.8,681.2c13.1-4.7,20.9-14.3,23.7-28.9" class="st51"></path>
|
||||
<path d="M427.7,695c4.4,10.3,7.2,21,8.2,32c0.1,0.7,0.4,1,1.1,1h1" class="st3"></path>
|
||||
<path d="M356,434.9l-7.6,4.5" class="st38"></path>
|
||||
<path d="M348.4,439.4c-11.5,7.4-25.8,4.7-37.7,0.6" class="st43"></path>
|
||||
<path d="M310.8,440c-2-4.6-2.2-8.9-0.7-12.8" class="st38"></path>
|
||||
<path d="M275.8,420.5c-0.4,1.5-1.7,1.9-3.9,1.3" class="st52"></path>
|
||||
<path d="M721.3,764.4l-12.5,19c-0.3,0.4-0.6,0.7-1,1l-6.4,4.6" class="st11"></path>
|
||||
<path d="M701.5,789l1-37.3c0-0.6-0.3-0.9-0.9-0.8l-7.6,1.7" class="st39"></path>
|
||||
<path d="M694,752.6c0-0.6-0.2-1.1-0.6-1.5c-0.3-0.3-0.7-0.4-1.3-0.5
|
||||
c-15.2-0.6-30.3-0.8-45.5-0.6c-0.9,0-1.6,0.2-2,0.6c-0.7,0.6-0.9,1.4-0.5,2.4c0.3,0.6,0.9,1.1,1.6,1.1l42.1,0.1" class="st6"></path>
|
||||
<path d="M687.8,754.2l-9.8,27.1c-0.2,0.5-0.8,0.8-1.3,0.6
|
||||
c-0.1,0-0.2-0.1-0.3-0.2l-9.4-8.9c-0.5-0.4-1.2-0.4-1.7,0.1c-0.1,0.1-0.2,0.3-0.3,0.4c-3.8,11.8-9,23.5-15.6,35.3" class="st39"></path>
|
||||
<path d="M649.5,808.5l-13.3,11" class="st11"></path>
|
||||
<path d="M483,839l-2.3,3.5c-0.3,0.5-0.4,1.1-0.3,1.6l1.1,5.3
|
||||
c0.1,0.6,0.4,1,0.8,1.4c1.7,1.4,2.4,4.1,1.9,8.2" class="st53"></path>
|
||||
<path d="M713.3,838.5c-0.8,4.1-0.6,7.5,0.3,10.2c0.2,0.6,0.2,1.2,0,1.8l-2.9,8.6" class="st24"></path>
|
||||
<path d="M605.5,859c-1.2-0.3-1.8-1.2-1.5-2.7c0.1-0.7-0.2-1.4-0.8-1.7l-5-2.6
|
||||
c-0.5-0.2-0.7-0.6-0.7-1.1c-0.1-2.3,0.7-4.3,2.2-5.9c0.5-0.5,0.8-1.2,0.8-1.9v-2.5c0-0.7,0.3-1,1-1c0.8,0,1.3-0.2,1.5-0.5" class="st54"></path>
|
||||
<path d="M713,673.5c-5.7,0.8-11.4,1.7-17,2.8c-9.3,1.8-16.9,8.1-24.5,13.3
|
||||
c-0.5,0.4-1.2,0.6-1.9,0.5c-12-0.1-24-0.4-36-0.6c-7.8-0.2-14.5,2.6-21.9,4.6c-0.5,0.1-1-0.2-1.1-0.7l-1.7-6
|
||||
c-0.3-1-1.3-1.6-2.3-1.3c-0.1,0-0.1,0-0.2,0.1c-8.4,3.3-16.8,6.7-25.3,10.1c-9.3,3.8-26.2,0.1-36-1.7
|
||||
c-4.7-0.9-10.8-12.1-13.8-16.1c-0.6-0.8-1.2-0.8-1.8,0l-13.7,16.8c-0.4,0.5-1,0.7-1.6,0.5c-16.2-5.4-32.4-10.7-48.4-16
|
||||
c-6-1.9-9.8,0.1-15.2,2.4" class="st6"></path>
|
||||
<path d="M207.5,839l-19.1,0.7" class="st14"></path>
|
||||
<path d="M701.5,789c-6.9,5.8-11.7,10.7-20.5,13.1c-9.9,2.7-20.4,4.9-31.5,6.4" class="st38"></path>
|
||||
<path d="M694,752.6c-1.4,1.2-3.5,1.7-6.2,1.6" class="st13"></path>
|
||||
<path d="M736.5,234.3c0-1-0.8-1.9-1.9-1.9l-24.5,0c-1,0-1.9,0.8-1.9,1.9
|
||||
c0,0,0,0,0,0l0,1.8c0,1,0.8,1.9,1.9,1.9l24.5,0c1,0,1.9-0.8,1.9-1.9c0,0,0,0,0,0L736.5,234.3" class="st13"></path>
|
||||
<path d="M705,234.1c0-0.9-0.7-1.6-1.6-1.6l0,0H573.6c-0.9,0-1.6,0.7-1.6,1.6v0
|
||||
v2.2c0,0.9,0.7,1.6,1.6,1.6l0,0h129.8c0.9,0,1.6-0.7,1.6-1.6l0,0V234.1" class="st6"></path>
|
||||
<path d="M767.8,234.4c0-0.9-0.8-1.6-1.7-1.6l-24,0.3c-0.9,0-1.6,0.8-1.6,1.7l0,1
|
||||
c0,0.9,0.8,1.6,1.7,1.6l24-0.3c0.9,0,1.6-0.8,1.6-1.7L767.8,234.4" class="st0"></path>
|
||||
<path d="M491.2,208.4c-7.3,0.1-9.5,9-2.8,13.4c11.1,7.1,21.7,14.8,31.9,23.1
|
||||
c0.2,0.2,0.5,0.2,0.6,0c0.1-0.2,0.2-0.4,0-0.6c-6-7.5-11.9-15.1-17.9-22.7C500.3,218,496.9,208.3,491.2,208.4" class="st8"></path>
|
||||
<path d="M235.1,284.9c15.3,0.5,28.1-11.8,28.6-27.6c0,0,0,0,0,0
|
||||
c0.6-15.8-11.4-29-26.6-29.5c-15.3-0.5-28.1,11.8-28.6,27.6c0,0,0,0,0,0C207.9,271.1,219.8,284.3,235.1,284.9" class="st8"></path>
|
||||
<path d="M298.4,249.9c0-1-0.8-1.9-1.9-1.9l-18.7-0.1c-1,0-1.9,0.8-1.9,1.9l0,0.2
|
||||
c0,1,0.8,1.9,1.9,1.9l18.7,0.1c1,0,1.9-0.8,1.9-1.9L298.4,249.9" class="st0"></path>
|
||||
<path d="M298.3,268c0-1-0.8-1.8-1.8-1.8l-18.6-0.2c-1,0-1.8,0.8-1.8,1.8l0,0
|
||||
l0,0.2c0,1,0.8,1.8,1.8,1.8l0,0l18.6,0.2c1,0,1.8-0.8,1.8-1.8l0,0L298.3,268" class="st0"></path>
|
||||
<path d="M499.1,458.5l-0.7,64.9c0,1,0.4,1.3,1.4,1l1-0.3c0.8-0.2,1.3-1,1.3-1.8
|
||||
l-0.9-64.9" class="st13"></path>
|
||||
<path d="M501.2,457.4l0.7-154.3c0-0.7-0.4-1.1-1.1-1.1h-1.4
|
||||
c-0.9,0-1.3,0.4-1.3,1.3l1,155.2" class="st6"></path>
|
||||
<path d="M501.2,457.4c-0.7,0.1-1.4,0.5-2.1,1.1" class="st39"></path>
|
||||
<path d="M594.8,308c0-0.9-0.7-1.7-1.7-1.7c0,0,0,0,0,0l-64.9-0.1
|
||||
c-0.9,0-1.7,0.7-1.7,1.7l0,0.2c0,0.9,0.7,1.7,1.7,1.7c0,0,0,0,0,0l64.9,0.1c0.9,0,1.7-0.7,1.7-1.7L594.8,308" class="st9"></path>
|
||||
<path d="M626.2,308c0-0.6-0.4-1-1-1h0l-26.9-0.2c-0.6,0-1,0.4-1,1c0,0,0,0,0,0
|
||||
l0,0.1c0,0.6,0.4,1,1,1l0,0l26.9,0.2c0.6,0,1-0.4,1-1c0,0,0,0,0,0L626.2,308" class="st13"></path>
|
||||
<path d="M583.3,343.7c0-0.8-0.7-1.5-1.5-1.5c0,0,0,0,0,0l-54.6,0.3
|
||||
c-0.8,0-1.5,0.7-1.5,1.5c0,0,0,0,0,0l0,0.9c0,0.8,0.7,1.5,1.5,1.5c0,0,0,0,0,0l54.6-0.3c0.8,0,1.5-0.7,1.5-1.5c0,0,0,0,0,0
|
||||
L583.3,343.7" class="st0"></path>
|
||||
<path d="M577.3,510.3c0-0.8-0.7-1.5-1.5-1.5l-20.2,0c-0.8,0-1.5,0.7-1.5,1.5v0
|
||||
l0,0.4c0,0.8,0.7,1.5,1.5,1.5h0l20.2,0c0.8,0,1.5-0.7,1.5-1.5l0,0L577.3,510.3" class="st4"></path>
|
||||
<path d="M644.2,510.2c0-0.7-0.6-1.3-1.3-1.3l-39.8,0.3c-0.7,0-1.3,0.6-1.3,1.3
|
||||
c0,0,0,0,0,0l0,0.1c0,0.7,0.6,1.3,1.3,1.3l39.8-0.3C643.6,511.6,644.2,511,644.2,510.2C644.2,510.2,644.2,510.2,644.2,510.2
|
||||
L644.2,510.2" class="st9"></path>
|
||||
<path d="M772.4,510.2c0-0.7-0.6-1.3-1.4-1.3c0,0,0,0,0,0l-45.4,0.4
|
||||
c-0.7,0-1.3,0.6-1.3,1.4l0,0.1c0,0.7,0.6,1.3,1.4,1.3c0,0,0,0,0,0l45.4-0.4C771.8,511.6,772.4,511,772.4,510.2L772.4,510.2" class="st9"></path>
|
||||
<path d="M644,517.4c0-0.8-0.6-1.4-1.4-1.4L603,516c-0.8,0-1.4,0.6-1.4,1.4
|
||||
c0,0,0,0,0,0l0,0.3c0,0.8,0.6,1.4,1.4,1.4l39.6,0.1c0.8,0,1.4-0.6,1.4-1.4c0,0,0,0,0,0L644,517.4" class="st9"></path>
|
||||
<path d="M771.9,517.3c0-0.6-0.5-1-1-1l-45.3-0.2c-0.6,0-1,0.5-1,1c0,0,0,0,0,0
|
||||
l0,0.8c0,0.6,0.5,1,1,1l45.3,0.2c0.6,0,1-0.5,1-1c0,0,0,0,0,0L771.9,517.3" class="st9"></path>
|
||||
<path d="M645.2,524.9c0-0.5-0.4-0.9-0.9-0.9l0,0l-41.2-0.2
|
||||
c-0.5,0-0.9,0.4-0.9,0.9v0l0,0.2c0,0.5,0.4,0.9,0.9,0.9l0,0l41.2,0.2c0.5,0,0.9-0.4,0.9-0.9L645.2,524.9" class="st9"></path>
|
||||
<path d="M763.1,525.1c0-0.6-0.5-1.1-1.1-1.1l-36.4-0.4c-0.6,0-1.1,0.5-1.1,1.1
|
||||
l0,0.1c0,0.6,0.5,1.1,1.1,1.1l36.4,0.4C762.6,526.2,763.1,525.8,763.1,525.1L763.1,525.1" class="st9"></path>
|
||||
<path d="M492.2,617.8c15.3,2.2,29.5-8.8,31.7-24.5c2.2-15.7-8.4-30.2-23.6-32.3
|
||||
c-15.3-2.2-29.5,8.8-31.7,24.5C466.3,601.2,476.9,615.7,492.2,617.8" class="st4"></path>
|
||||
<path d="M672.9,579.7c0-0.9-0.8-1.7-1.7-1.7H543.6c-0.9,0-1.7,0.8-1.7,1.7v0.6
|
||||
c0,0.9,0.8,1.7,1.7,1.7h127.6c0.9,0,1.7-0.8,1.7-1.7V579.7" class="st6"></path>
|
||||
<path d="M718.4,580c0-1-0.8-1.8-1.8-1.8h-38.6c-1,0-1.8,0.8-1.8,1.8v0.1
|
||||
c0,1,0.8,1.8,1.8,1.8h38.6C717.6,581.9,718.4,581.1,718.4,580L718.4,580" class="st4"></path>
|
||||
<path d="M760.5,579.9c0-1.1-0.9-1.9-1.9-1.9l-33.6,0.1c-1.1,0-1.9,0.9-1.9,1.9
|
||||
c0,0,0,0,0,0v0.1c0,1.1,0.9,1.9,1.9,1.9c0,0,0,0,0,0l33.6-0.1C759.6,581.9,760.5,581.1,760.5,579.9
|
||||
C760.5,580,760.5,580,760.5,579.9L760.5,579.9" class="st4"></path>
|
||||
<path d="M642,601.8c0-1-0.8-1.8-1.8-1.8l-32.5,0.2c-1,0-1.8,0.8-1.8,1.8l0,0.1
|
||||
c0,1,0.8,1.8,1.8,1.8l32.5-0.2C641.2,603.7,642,602.8,642,601.8L642,601.8" class="st4"></path>
|
||||
<path d="M752,601.8c0-1.1-0.9-1.9-1.9-1.9l0,0l-28.6,0.1c-1.1,0-1.9,0.9-1.9,1.9
|
||||
l0,0.1c0,1.1,0.9,1.9,1.9,1.9h0l28.6-0.2c1.1,0,1.9-0.9,1.9-1.9L752,601.8" class="st4"></path>
|
||||
<path d="M577.8,602c0-0.7-0.6-1.3-1.3-1.3l0,0l-33.1-0.1c-0.7,0-1.3,0.6-1.3,1.3
|
||||
l0,0l0,0.1c0,0.7,0.6,1.3,1.3,1.3l0,0l33.1,0.1c0.7,0,1.3-0.6,1.3-1.3l0,0L577.8,602" class="st7"></path>
|
||||
<path d="M367.9,273.9c1.4-0.2,2.4-1.9,2.1-3.8c-0.2-1.9-1.6-3.3-3-3.2
|
||||
c-1.4,0.2-2.4,1.9-2.1,3.8C365.1,272.7,366.5,274.1,367.9,273.9" class="st5"></path>
|
||||
<path d="M239,255.7c-0.6-0.1-1-0.5-1.1-1.1l-0.7-4.6c-0.1-0.7-0.8-1.2-1.6-1.1
|
||||
c-0.6,0.1-1,0.5-1.1,1.1l-0.7,4.6c-0.1,0.6-0.5,1-1.1,1.1l-4.6,0.7c-0.7,0.1-1.2,0.8-1.1,1.6c0.1,0.6,0.5,1,1.1,1.1l4.6,0.7
|
||||
c0.6,0.1,1,0.5,1.1,1.1l0.7,4.6c0.1,0.7,0.8,1.2,1.6,1.1c0.6-0.1,1-0.5,1.1-1.1l0.7-4.6c0.1-0.6,0.5-1,1.1-1.1l4.6-0.7
|
||||
c0.7-0.1,1.2-0.8,1.1-1.6c-0.1-0.6-0.5-1-1.1-1.1L239,255.7" class="st8"></path>
|
||||
<path d="M405.1,390.9c-0.2,0.3,0,0.7,0.3,0.9c0.1,0,0.2,0.1,0.3,0.1l17.9,0.2
|
||||
c0.4,0,0.7-0.3,0.7-0.7c0-0.1,0-0.2-0.1-0.3l-8.7-18c-0.2-0.3-0.6-0.5-0.9-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L405.1,390.9" class="st4"></path>
|
||||
<path d="M727.8,420c-0.6-0.8-4.1,1.1-7.8,4.1c0,0,0,0,0,0
|
||||
c-3.7,3-6.1,6.1-5.5,6.9c0,0,0,0,0,0c0.6,0.8,4.1-1.1,7.8-4.1c0,0,0,0,0,0C726,423.9,728.5,420.8,727.8,420
|
||||
C727.8,420,727.8,420,727.8,420" class="st41"></path>
|
||||
<path d="M806.4,601.6c0-1-0.8-1.7-1.8-1.7l-31,0.3c-1,0-1.7,0.8-1.7,1.8l0,0.1
|
||||
c0,1,0.8,1.7,1.8,1.7l31-0.3c1,0,1.7-0.8,1.7-1.8L806.4,601.6" class="st22"></path>
|
||||
<path d="M321,684.3l-1.8,8.6" class="st31"></path>
|
||||
<path d="M319.1,692.9l-23.3,115.9c-0.2,0.8,0.3,1.5,1.1,1.7c0,0,0,0,0.1,0
|
||||
c7.5,1.2,14.4,4,20.5,8.5c0.5,0.4,1,0.5,1.6,0.5H356c1,0,1.8-0.8,1.8-1.8c0-0.1,0-0.1,0-0.2L346,692.9" class="st32"></path>
|
||||
<path d="M346,692.9l-0.8-7.8" class="st31"></path>
|
||||
<path d="M345.2,685.1l-7.7-76.2c0-0.3-0.2-0.6-0.5-0.6c-0.3,0-0.6,0.2-0.6,0.5
|
||||
l0,0L321,684.3" class="st32"></path>
|
||||
<path d="M345.2,685.1c-8.5-1.4-16.6-1.7-24.3-0.8" class="st30"></path>
|
||||
<path d="M346,692.9c-9.8,2.4-18.7,2.4-26.9,0" class="st30"></path>
|
||||
<path d="M505.9,577.8c0-0.5-0.4-0.9-0.9-1c-0.3,0-0.5,0.1-0.7,0.3l-15.8,15.1
|
||||
c-0.4,0.4-0.4,0.9,0,1.3c0.2,0.2,0.4,0.3,0.6,0.3l15.3,0.1c0.5,0,0.9-0.4,0.9-0.9L505.9,577.8" class="st4"></path>
|
||||
<path d="M782,655.2l8.6-2.3c0.2-0.1,0.3-0.3,0.3-0.5l-1.4-5.2
|
||||
c-0.7-2.6-3.3-4.1-5.8-3.4l-0.3,0.1c-2.5,0.7-4,3.3-3.3,5.9l1.4,5.2C781.5,655.1,781.8,655.2,782,655.2
|
||||
C782,655.2,782,655.2,782,655.2" class="st29"></path>
|
||||
<path d="M492.5,668c0.4-5.1-9.1-12.8-12.9-15.6c-1-0.8-2.5-0.6-3.3,0.4
|
||||
c-3.2,4-6.9,7.2-11.2,9.7c-1.8,1-2.4,3.3-1.3,5.1c0.7,1.1,1.8,1.8,3.1,1.8l23.7,0.3C491.6,669.8,492.4,669,492.5,668" class="st4"></path>
|
||||
<path d="M593.3,663.4c0-0.3-0.2-0.5-0.5-0.5c0,0,0,0,0,0l-82.1-0.3
|
||||
c-0.3,0-0.5,0.2-0.5,0.5l0,0l0,0.8c0,0.3,0.2,0.5,0.5,0.5h0l82.1,0.3c0.3,0,0.5-0.2,0.5-0.5c0,0,0,0,0,0L593.3,663.4" class="st7"></path>
|
||||
<path d="M692.4,663.7c0-0.6-0.5-1.1-1.1-1.1l-77.6-0.1c-0.6,0-1.1,0.5-1.1,1.1
|
||||
l0,0.1c0,0.6,0.5,1.1,1.1,1.1c0,0,0,0,0,0l77.6,0.1C691.9,664.8,692.4,664.3,692.4,663.7C692.4,663.7,692.4,663.7,692.4,663.7
|
||||
L692.4,663.7" class="st7"></path>
|
||||
<path d="M785.4,652.8c1.8-0.2,3.1-1.9,2.9-3.9c-0.2-2-1.8-3.4-3.6-3.3
|
||||
c-1.8,0.2-3.1,1.9-2.9,3.9C782,651.5,783.6,653,785.4,652.8" class="st29"></path>
|
||||
<path d="M483.3,664c0.4,0,0.7-0.3,0.7-0.6c0-0.2-0.1-0.3-0.2-0.4l-4.1-5
|
||||
c-0.2-0.3-0.6-0.3-0.9-0.1c0,0,0,0,0,0l-6.2,5c-0.3,0.2-0.3,0.6-0.1,0.9c0.1,0.2,0.3,0.3,0.5,0.3H483.3" class="st55"></path>
|
||||
<path d="M501.5,698.1c0-0.3-0.2-0.5-0.5-0.5l0,0h-0.1c-0.3,0-0.5,0.2-0.5,0.5
|
||||
l0,0v100.2c0,0.3,0.2,0.5,0.5,0.5l0,0h0.1c0.3,0,0.5-0.2,0.5-0.5l0,0V698.1" class="st56"></path>
|
||||
<path d="M575.6,701.6c0-0.3-0.2-0.5-0.5-0.5l0,0c-0.3,0-0.5,0.2-0.5,0.5l0,0
|
||||
l-0.2,96.9c0,0.3,0.2,0.5,0.5,0.5l0,0l0,0c0.3,0,0.5-0.2,0.5-0.5l0,0L575.6,701.6" class="st56"></path>
|
||||
<path d="M636,705.9c0-0.8-0.7-1.5-1.5-1.5c0,0,0,0,0,0l-48.7,0.1
|
||||
c-0.8,0-1.5,0.7-1.5,1.5l0,0.6c0,0.8,0.7,1.5,1.5,1.5c0,0,0,0,0,0l48.7-0.1c0.8,0,1.5-0.7,1.5-1.5L636,705.9" class="st6"></path>
|
||||
<path d="M702.5,705.9c0-1-0.8-1.7-1.7-1.7h0l-54.9,0.3c-1,0-1.7,0.8-1.7,1.7v0
|
||||
l0,0.2c0,1,0.8,1.7,1.7,1.7l0,0l54.9-0.3c1,0,1.7-0.8,1.7-1.7v0L702.5,705.9" class="st6"></path>
|
||||
<path d="M473.9,706.7c0-0.6-0.5-1.1-1.1-1.1l-19.5,0.2c-0.6,0-1.1,0.5-1.1,1.1
|
||||
c0,0,0,0,0,0l0,0.1c0,0.6,0.5,1.1,1.1,1.1l19.5-0.2c0.6,0,1.1-0.5,1.1-1.1v0L473.9,706.7" class="st6"></path>
|
||||
<path d="M480.3,708l0.9-0.4c0.5-0.2,0.6-0.8,0.4-1.3c-0.2-0.4-0.6-0.6-1.1-0.5
|
||||
l-1.9,0.6c-0.4,0.1-0.4,0.3-0.1,0.6l0.8,0.8C479.5,708.1,479.9,708.2,480.3,708" class="st27"></path>
|
||||
<path d="M536.7,707.5c0-0.8-5.4-1.5-12-1.5c-6.6-0.1-12,0.5-12,1.3c0,0,0,0,0,0
|
||||
c0,0.8,5.4,1.5,12,1.5C531.3,708.9,536.7,708.3,536.7,707.5C536.7,707.5,536.7,707.5,536.7,707.5" class="st6"></path>
|
||||
<path d="M538.5,707.3c0.8,0.6,1.7,0.9,2.6,0.7c0.4-0.1,0.6-0.5,0.5-0.9
|
||||
c-0.1-0.3-0.4-0.6-0.7-0.6l-2.3,0.1c-0.2,0-0.4,0.2-0.4,0.4C538.4,707.1,538.4,707.2,538.5,707.3" class="st27"></path>
|
||||
<path d="M636,713.9c0-1.1-0.9-1.9-1.9-1.9L586,712c-1.1,0-1.9,0.9-1.9,1.9
|
||||
c0,0,0,0,0,0l0,0.1c0,1.1,0.9,1.9,1.9,1.9l48.1-0.1C635.2,715.9,636,715,636,713.9L636,713.9" class="st6"></path>
|
||||
<path d="M694,713.8c0-1-0.8-1.8-1.8-1.8c0,0,0,0,0,0h-46.4c-1,0-1.8,0.8-1.8,1.8
|
||||
v0.4c0,1,0.8,1.8,1.8,1.8h46.4c1,0,1.8-0.8,1.8-1.8c0,0,0,0,0,0V713.8" class="st6"></path>
|
||||
<path d="M471.8,715.8c0-1-0.8-1.8-1.8-1.8l0,0l-16,0.1c-1,0-1.8,0.8-1.8,1.8
|
||||
c0,0,0,0,0,0l0,0.1c0,1,0.8,1.8,1.8,1.8l0,0l16-0.1c1,0,1.8-0.8,1.8-1.8v0L471.8,715.8" class="st6"></path>
|
||||
<path d="M533.9,716.7c0-0.7-0.5-1.2-1.2-1.2c0,0,0,0,0,0l-19,0
|
||||
c-0.7,0-1.2,0.5-1.2,1.2v0.1c0,0.7,0.5,1.2,1.2,1.2c0,0,0,0,0,0l19,0C533.3,718,533.9,717.4,533.9,716.7L533.9,716.7" class="st6"></path>
|
||||
<path d="M666.3,721.1c0-0.8-0.7-1.5-1.5-1.5l0,0h-19.2c-0.8,0-1.5,0.7-1.5,1.5
|
||||
v0.2c0,0.8,0.7,1.5,1.5,1.5l0,0h19.2c0.8,0,1.5-0.7,1.5-1.5v0V721.1" class="st6"></path>
|
||||
<path d="M534,725.9c0-1-0.8-1.8-1.8-1.8l-18.2,0c-1,0-1.8,0.8-1.8,1.8l0,0.2
|
||||
c0,1,0.8,1.8,1.8,1.8l18.2,0c1,0,1.8-0.8,1.8-1.8L534,725.9" class="st6"></path>
|
||||
<path d="M532.7,735c0-0.4-4.2-0.7-9.3-0.7c0,0,0,0,0,0c-5.1,0-9.3,0.3-9.3,0.6
|
||||
c0,0.4,4.2,0.7,9.3,0.7c0,0,0,0,0,0C528.5,735.6,532.7,735.4,532.7,735" class="st29"></path>
|
||||
<path d="M486,743.9c0-0.8-0.7-1.5-1.5-1.4l-31.3,0.4c-0.8,0-1.5,0.7-1.4,1.5l0,0
|
||||
l0,0.4c0,0.8,0.7,1.5,1.5,1.4l31.3-0.4c0.8,0,1.5-0.7,1.4-1.5L486,743.9" class="st6"></path>
|
||||
<path d="M533.9,744.3c0-0.9-0.7-1.6-1.6-1.6c0,0,0,0,0,0l-18.6-0.2
|
||||
c-0.9,0-1.6,0.7-1.6,1.6l0,0.2c0,0.9,0.7,1.6,1.6,1.6c0,0,0,0,0,0l18.6,0.2c0.9,0,1.6-0.7,1.6-1.6l0,0L533.9,744.3" class="st6"></path>
|
||||
<path d="M635.9,744.6c0-0.9-0.7-1.7-1.7-1.7l-48,0.2c-0.9,0-1.7,0.7-1.7,1.7l0,0
|
||||
l0,0.1c0,0.9,0.7,1.7,1.7,1.7l48-0.2c0.9,0,1.7-0.7,1.7-1.7l0,0L635.9,744.6" class="st6"></path>
|
||||
<path d="M702.1,744.4c0-0.8-0.6-1.4-1.4-1.4c0,0,0,0,0,0l-55.1,0.2
|
||||
c-0.8,0-1.4,0.6-1.4,1.4l0,0l0,0.6c0,0.8,0.6,1.4,1.4,1.4c0,0,0,0,0,0l55.1-0.2c0.8,0,1.4-0.6,1.4-1.4l0,0L702.1,744.4" class="st6"></path>
|
||||
<path d="M636,752c0-1.1-0.9-1.9-1.9-1.9h0l-47.4-0.1c-1.1,0-1.9,0.9-1.9,1.9l0,0
|
||||
v0c0,1.1,0.9,1.9,1.9,1.9l0,0L634,754C635.1,754,636,753.1,636,752L636,752L636,752" class="st6"></path>
|
||||
<path d="M679.8,756.9c0-0.3-1.1-0.5-2.5-0.5c-1.4,0-2.5,0.3-2.5,0.6v0
|
||||
c0,0.3,1.1,0.5,2.5,0.5C678.7,757.5,679.8,757.3,679.8,756.9C679.8,756.9,679.8,756.9,679.8,756.9" class="st19"></path>
|
||||
<path d="M636.2,759.7c0-0.9-0.8-1.7-1.7-1.7l-48.5,0.1c-0.9,0-1.7,0.8-1.7,1.7
|
||||
l0,0l0,0.1c0,0.9,0.8,1.7,1.7,1.7l0,0l48.5-0.1c0.9,0,1.7-0.8,1.7-1.7l0,0L636.2,759.7" class="st6"></path>
|
||||
<path d="M669.9,759.2c0-0.8-0.6-1.4-1.4-1.3l-23.1,0.3c-0.8,0-1.4,0.6-1.3,1.4
|
||||
l0,0.9c0,0.8,0.6,1.4,1.4,1.3l23.1-0.3c0.8,0,1.4-0.6,1.3-1.4L669.9,759.2" class="st6"></path>
|
||||
<path d="M459,763.6c2.2,0.1,4.4,0,6.5-0.2c0.2,0,0.4-0.2,0.4-0.4
|
||||
c0-0.2-0.2-0.4-0.4-0.4l0,0c-2.2-0.3-4.4-0.4-6.7-0.5c-0.8,0-1.4,0.3-1.3,0.7C457.6,763.3,458.2,763.6,459,763.6" class="st14"></path>
|
||||
<path d="M522.7,762.9c0-0.4-1.8-0.6-4.1-0.5c0,0,0,0,0,0
|
||||
c-2.3,0.1-4.1,0.4-4.1,0.7c0,0.4,1.8,0.6,4.1,0.5c0,0,0,0,0,0C520.9,763.6,522.7,763.3,522.7,762.9" class="st11"></path>
|
||||
<path d="M605.8,766.8c0-0.7-0.5-1.3-1.3-1.3l-18.6-0.6c-0.7,0-1.3,0.5-1.3,1.3
|
||||
l0,0.4c0,0.7,0.5,1.3,1.3,1.3l18.6,0.6c0.7,0,1.3-0.5,1.3-1.3L605.8,766.8" class="st6"></path>
|
||||
<path d="M661.5,766.8c0-0.6-0.5-1.1-1.1-1.1c0,0,0,0,0,0l-15-0.3
|
||||
c-0.6,0-1.1,0.5-1.1,1.1l0,0.5c0,0.6,0.5,1.1,1.1,1.1c0,0,0,0,0,0l15,0.3c0.6,0,1.1-0.5,1.1-1.1L661.5,766.8" class="st6"></path>
|
||||
<path d="M452.1,771.8c0.4,0.4,1.1,0.2,1.7-0.4c0.6-0.6,0.7-1.3,0.4-1.7
|
||||
c0,0,0,0,0,0c-0.4-0.4-1.1-0.2-1.7,0.4C451.9,770.7,451.8,771.5,452.1,771.8" class="st56"></path>
|
||||
<path d="M472.6,779.3c0-0.8-0.6-1.4-1.4-1.4c0,0,0,0,0,0l-17.6,0.1
|
||||
c-0.8,0-1.4,0.6-1.4,1.4l0,0.1c0,0.8,0.6,1.4,1.4,1.4c0,0,0,0,0,0l17.6-0.1C472,780.8,472.6,780.2,472.6,779.3L472.6,779.3" class="st6"></path>
|
||||
<path d="M490.5,779.1c0-0.6-3.4-1-7.5-1.1c-4.2,0-7.5,0.4-7.5,0.9c0,0,0,0,0,0
|
||||
c0,0.6,3.4,1,7.5,1.1S490.5,779.6,490.5,779.1C490.5,779.1,490.5,779.1,490.5,779.1" class="st29"></path>
|
||||
<path d="M534.7,779.6c0-1-5.1-1.8-11.5-1.8c0,0,0,0,0,0c-6.3,0-11.5,0.8-11.5,1.8
|
||||
l0,0c0,1,5.1,1.8,11.5,1.8S534.7,780.6,534.7,779.6" class="st6"></path>
|
||||
<path d="M551.4,778.9c0-0.5-3.3-1-7.4-0.9c-4.1,0-7.4,0.4-7.4,1v0
|
||||
c0,0.5,3.3,1,7.4,0.9C548.1,779.8,551.4,779.4,551.4,778.9C551.4,778.9,551.4,778.9,551.4,778.9" class="st29"></path>
|
||||
<path d="M635.6,779.8c0-0.3-0.2-0.5-0.5-0.5l-50.3,1.1c-0.3,0-0.5,0.2-0.5,0.5
|
||||
l0,0l0.1,2.5c0,0.3,0.2,0.5,0.5,0.5l0,0l50.3-1.1c0.3,0,0.5-0.2,0.5-0.5L635.6,779.8" class="st6"></path>
|
||||
<path d="M471.8,788c0-1-0.8-1.9-1.9-1.9l-16.1-0.1c-1,0-1.9,0.8-1.9,1.9l0,0
|
||||
l0,0.1c0,1,0.8,1.9,1.9,1.9l16.1,0.1c1,0,1.9-0.8,1.9-1.9v0L471.8,788" class="st6"></path>
|
||||
<path d="M533.4,788c0-1-0.8-1.9-1.9-1.9l-17.6-0.1c-1,0-1.9,0.8-1.9,1.9l0,0.1
|
||||
c0,1,0.8,1.9,1.9,1.9l17.6,0.1c1,0,1.9-0.8,1.9-1.9v0L533.4,788" class="st6"></path>
|
||||
<path d="M635.3,787.7c0-0.8-0.6-1.4-1.4-1.4l-47.9,0.4c-0.8,0-1.4,0.6-1.4,1.4
|
||||
c0,0,0,0,0,0l0,0.7c0,0.8,0.6,1.4,1.4,1.4l47.9-0.4c0.8,0,1.4-0.6,1.4-1.4c0,0,0,0,0,0L635.3,787.7" class="st6"></path>
|
||||
</g>
|
||||
<path d="M-2,0h1024v1024H-2V0z M463.4,197.1L183,197c-0.7,0-1,0.3-1,1l0,141.7c-11.4-0.7-20.5,2.6-27.3,9.7
|
||||
c-3.5,3.7-6,9-8.5,14.1c-0.2,0.5-0.8,0.7-1.3,0.4c-0.1,0-0.2-0.1-0.3-0.2c-16.9-16.6-37-38.5-63.9-32.6
|
||||
c-30.5,6.6-32.1,51.4-30.5,75c2.1,29.7,11,60.1,21,92.6c0.2,0.7,0,1.2-0.8,1.3c-5.5,1-10.7,2.8-15.6,5.3c-1.1,0.5-1.7,1.1-1.9,1.5
|
||||
c-0.5,1.1-0.2,2,0.9,2.6l74.2,41.8c4.7,13.4,9.7,25.4,14.9,35.8c9.5,19,21.3,39.6,35.4,62c1.1,1,1.8,2.3,2.2,3.9
|
||||
c-1.2-0.1-2.4-0.6-3.5-1.5c-22.6-18.7-54.4-31.6-77.6-6.9c-40.3,43.1,6.2,137.4,41.1,171.2c1,1,1.8,0.8,3.1,0.7l-0.1,3H73
|
||||
c-0.7,0-1,0.3-1,1V838c0,0.6,0.4,1,1,1l92,0l19.5,0.8c6.6-0.2,15.4,0.5,26.4,2.4c6.9,1.1,17.5,1.7,31.7,1.5c0.7,0,1.1,0.4,1.2,1.1
|
||||
l0.4,12.5c0,1.2,0.7,1.8,1.9,1.8h234.2l121.3,0l105.2,0l70,0.1c0.7,0,1.1-0.4,1.1-1.1l0.1-19.1l192.9,0.1c0.7,0,1.1-0.4,1.1-1.1
|
||||
v-17.4c0-0.7-0.3-1-1-1l-71,0l-0.6-2.3c-0.1-0.5,0-1.1,0.4-1.5c25-26.3,47.5-69.1,44.4-106.5c-2.5-29.6-26.6-18.7-39.4-6
|
||||
c-0.9,0.9-1.6,1.5-2.3,1.8c-2.6,1.3-4.1,0.3-4.6-3c-0.1-0.4,0-0.8,0.1-1.1c11.2-38.6,18.8-73.3,15.4-113.9
|
||||
c18.8-40.6,26.1-84.7,24.6-130c-0.8-22.7-9.1-83.8-40.4-85c-15.5-0.6-33,2.8-52.5,10.2l0-119.3c0-0.9-0.7-1.5-1.5-1.5l0,0
|
||||
L543,261.5c25.7-33.9,7.5-81.5-36-84.4C489.2,176.9,474.6,183.6,463.4,197.1z M732.5,234.3c0-1-0.8-1.9-1.9-1.9l-24.5,0
|
||||
c-1,0-1.9,0.8-1.9,1.9c0,0,0,0,0,0l0,1.8c0,1,0.8,1.9,1.9,1.9l24.5,0c1,0,1.9-0.8,1.9-1.9c0,0,0,0,0,0L732.5,234.3z M701,234.1
|
||||
c0-0.9-0.7-1.6-1.6-1.6l0,0H569.6c-0.9,0-1.6,0.7-1.6,1.6v0v2.2c0,0.9,0.7,1.6,1.6,1.6l0,0h129.8c0.9,0,1.6-0.7,1.6-1.6l0,0V234.1z
|
||||
M763.8,234.4c0-0.9-0.8-1.6-1.7-1.6l-24,0.3c-0.9,0-1.6,0.8-1.6,1.7l0,1c0,0.9,0.8,1.6,1.7,1.6l24-0.3c0.9,0,1.6-0.8,1.6-1.7
|
||||
L763.8,234.4z" class="st57"></path>
|
||||
<path d="M511.1,177.1l-0.8,14.8c-0.1,1.4,0.7,2.7,2,3.3c22.9,9.9,33.1,38.6,13.3,56.6c-1.6,1.4-1.8,3.8-0.6,5.5
|
||||
l8.3,11.2c0.4,0.6,1,0.9,1.8,0.9l3.4,0.1c-0.7,0.7-1.1,1.3-1.1,1.8c-20.5,7.7-38.4,11.8-57.7-1.7c-20.1-14.1-26.5-34.6-19.1-61.6
|
||||
l6.7-11C478.6,183.6,493.2,176.9,511.1,177.1z M491.2,208.4c-7.3,0.1-9.5,9-2.8,13.4c11.1,7.1,21.7,14.8,31.9,23.1
|
||||
c0.2,0.2,0.5,0.2,0.6,0c0.1-0.2,0.2-0.4,0-0.6c-6-7.5-11.9-15.1-17.9-22.7C500.3,218,496.9,208.3,491.2,208.4z" class="st58"></path>
|
||||
<path d="M511.1,177.1c43.5,2.9,61.7,50.5,36,84.4l-8.5,8l-3.4-0.1c-0.7,0-1.3-0.3-1.8-0.9l-8.3-11.2
|
||||
c-1.2-1.7-1-4.1,0.6-5.5c19.8-17.9,9.6-46.7-13.3-56.6c-1.3-0.6-2.1-1.9-2-3.3L511.1,177.1z" class="st59"></path>
|
||||
<path d="M467.4,197.1l-6.7,11l-263.4,0c-0.4,0-0.8,0.3-0.8,0.8l0.5,231.3l-0.6,1.8c-0.2,0.6-0.3,1.2-0.3,1.9
|
||||
c-0.2,70.6-0.3,141.3-0.3,211.9c0,5.4,1.7,10.3,3.5,15.2c0.3,0.9,0.1,1.5-0.7,2l-0.6,0.4c-0.5,0.3-1,0.3-1.3-0.2l-9-12.5l-3.2-7.6
|
||||
c-0.4-1.6-1.1-2.9-2.2-3.9l2.8-2.8c0.4-0.4,0.6-0.9,0.5-1.5c-1.1-17.4-0.7-34.9,1.2-52.2c0.1-0.7,0-1.3-0.2-1.9
|
||||
c-0.5-1.6-0.8-3.8-0.7-6.6c0.5-38.5,0.4-90.2-0.3-155.3l0.5-89l0-141.7c0-0.7,0.3-1,1-1L467.4,197.1z" class="st60"></path>
|
||||
<path d="M460.7,208c-7.4,27-1,47.5,19.1,61.6c19.3,13.5,37.2,9.4,57.7,1.7l299.5,0.7c0.6,0,1,0.4,1,1l-0.1,226
|
||||
c-10.5,17.2-18.7,35.1-24.4,53.7c-0.2,0.6-0.8,0.9-1.4,0.7c-0.4-0.1-0.6-0.4-0.7-0.8c-0.2-0.9-0.4-2-0.5-3.4
|
||||
c-1-17-2.9-34.1-7.9-50.3c1.1-1.1,2.3-1.6,3.4-1.7l2.5-0.5c0.8-0.2,1.1-0.6,1.1-1.4l-0.3-41.8c-3.8-69.6-61.9-119.5-129.4-119.7
|
||||
c-63.1,1-116.8,48.5-124.6,110.7c-2.1,17.1-2.5,35.2-1.3,54.3c0,0.7,0.4,1.1,1.2,1.1H642c0.9,0,1.1-0.4,0.8-1.2
|
||||
c-3.6-7.5-5.7-13.2-6.5-16.9c-6.7-31,12.1-58,43.9-60.3c23.6,1.7,38.7,14.4,45.4,38.1c-14.4,1.2-28.4,2.5-42,4
|
||||
c-0.4,0-0.7,0.2-1,0.4c-0.9,0.8-0.6,1.5,0.9,2.3c0.1,0.1,0.2,0.1,0.3,0.1l41.9,10.2l-8.3,22.2c-0.3,0.7,0,1.1,0.7,1.1l63,0
|
||||
c-8.2,23.7-11.1,49.6-13.1,74.5c-0.1,1,0.2,2.3,0.7,3.8v3.3c-2.4,13-1.8,25.5,1.9,37.4c-24.7,12.4-23.2,45.1-0.7,59.1
|
||||
c2.3,1.4,7.8,3.1,16.6,5.1l-62.2,0.5c1.1-14.2,1.6-28.5,1.7-42.8c0.1-10.8-9.8-13.3-18.9-12.5c-1.9-8.7-5.6-16.8-11.2-24.4
|
||||
c3.5-0.1,6.5-0.3,8.9-0.5c1-0.1,1.5-0.6,1.7-1.4c0.2-0.9-0.4-1.9-1.3-2.1c-0.1,0-0.2,0-0.3,0l-12.7-0.8c-3.1-4.3-7.2-7.1-12.3-8.2
|
||||
c-19.2-4.3-33.4,23.4-36.3,37.4c-63.3,0-126.5,0.2-189.6,0.4c-7.3,0-11.3,3.2-12,9.5c-0.8,7.7-1.5,22.8-2.2,45.5l-15.7-0.5
|
||||
c-4.6-13.2-10.4-25.7-17.3-37.5c-0.3-0.6-0.9-0.9-1.5-0.9l-3.4,0l8.5-113.4c1.2-0.8,2.8-0.8,4.8,0c0.8,0.3,1.7-0.1,2-0.9
|
||||
c0.1-0.3,0.1-0.5,0.1-0.8l-7.4-45.6c-0.1-0.4,0.2-0.8,0.6-0.9c0,0,0.1,0,0.1,0l0.9,0c10.6,0.9,17.3-6.6,23.9-14.9
|
||||
c10.7-13.5,19.8-27.7,27.4-42.6c7.3-15.6,11.8-30.3,13.6-43.9c0.5-3.5-1.4-5.1-5.6-5l14.5-42.4c0.6-1.9,0-2.8-2-2.8l-80.1-0.6
|
||||
c-17.3-6.6-33.3-13.8-48.1-21.6l-0.8-9.8l12.4-0.1c0.9,0,1.3-0.4,1.2-1.3l-1.6-17.5c-0.1-1.7-0.6-3.3-1.6-4.9
|
||||
c7-1.1,10.7-10.8,2-10.6c1.7-6.3,1.6-12.3-0.5-17.8c13.3-4.7,14.7-23.3,0.5-25.4c-3.6-0.5-7.8,0.8-11.5,1.8c-0.7,0.2-1.4,0-1.9-0.4
|
||||
c-6.6-4.9-13.1-8.8-20.7-2.8c-3.1,2.4-2.3,4.8-7.3,5.2c-10.6,0.9-12.1,9.4-11,18.2c0.1,0.7-0.2,1.4-0.8,1.8
|
||||
c-2.7,1.7-3.9,4.3-3.7,7.5c0.1,0.8,0.5,1.3,1.2,1.6l4,1.6c0.7,0.3,1.1,0.7,1.4,1.4l4.7,11.7c3.7,2.5,5.1,6.3,4.3,11.2
|
||||
c-1.5,9.1-3.5,18.1-5.9,26.9l-8.9,3.8l-36.5,15.9c-2.6,0.9-5.7,2.1-9.2,3.7c-18.6,8.3-43.9,84.7-47.5,105.5
|
||||
c-3.3,20.8,9.8,24.4,27.3,23.4c9.7-0.6,19.4-1.3,29.2-2.3l-0.8,72.3c0,0.7,0.3,1.2,0.9,1.6l1.3,0.7c0.5,1,0.7,2.2,0.6,3.6
|
||||
c-1.1,35.6-2.5,71.3-4.1,107.1l-3.5,0.2c-0.7,0-1.1,0.3-1.3,1l-7.3,18c-0.1,0.3-0.5,0.5-0.8,0.3c-0.3-0.1-0.4-0.4-0.4-0.7
|
||||
c0.2-1.3,0-2.4-0.7-3.4c12.9-78.1-10.6-157.4-60.8-218.3l-0.5-231.3c0-0.4,0.3-0.8,0.8-0.8L460.7,208z M235.1,284.9
|
||||
c15.3,0.5,28.1-11.8,28.6-27.6c0,0,0,0,0,0c0.6-15.8-11.4-29-26.6-29.5c-15.3-0.5-28.1,11.8-28.6,27.6c0,0,0,0,0,0
|
||||
C207.9,271.1,219.8,284.3,235.1,284.9z M298.4,249.9c0-1-0.8-1.9-1.9-1.9l-18.7-0.1c-1,0-1.9,0.8-1.9,1.9l0,0.2
|
||||
c0,1,0.8,1.9,1.9,1.9l18.7,0.1c1,0,1.9-0.8,1.9-1.9L298.4,249.9z M298.3,268c0-1-0.8-1.8-1.8-1.8l-18.6-0.2c-1,0-1.8,0.8-1.8,1.8
|
||||
l0,0l0,0.2c0,1,0.8,1.8,1.8,1.8l0,0l18.6,0.2c1,0,1.8-0.8,1.8-1.8l0,0L298.3,268z M499.1,458.5l-0.7,64.9c0,1,0.4,1.3,1.4,1l1-0.3
|
||||
c0.8-0.2,1.3-1,1.3-1.8l-0.9-64.9l0.7-154.3c0-0.7-0.4-1.1-1.1-1.1h-1.4c-0.9,0-1.3,0.4-1.3,1.3L499.1,458.5z M594.8,308
|
||||
c0-0.9-0.7-1.7-1.7-1.7c0,0,0,0,0,0l-64.9-0.1c-0.9,0-1.7,0.7-1.7,1.7l0,0.2c0,0.9,0.7,1.7,1.7,1.7c0,0,0,0,0,0l64.9,0.1
|
||||
c0.9,0,1.7-0.7,1.7-1.7L594.8,308z M626.2,308c0-0.6-0.4-1-1-1h0l-26.9-0.2c-0.6,0-1,0.4-1,1c0,0,0,0,0,0l0,0.1c0,0.6,0.4,1,1,1
|
||||
l0,0l26.9,0.2c0.6,0,1-0.4,1-1c0,0,0,0,0,0L626.2,308z M583.3,343.7c0-0.8-0.7-1.5-1.5-1.5c0,0,0,0,0,0l-54.6,0.3
|
||||
c-0.8,0-1.5,0.7-1.5,1.5c0,0,0,0,0,0l0,0.9c0,0.8,0.7,1.5,1.5,1.5c0,0,0,0,0,0l54.6-0.3c0.8,0,1.5-0.7,1.5-1.5c0,0,0,0,0,0
|
||||
L583.3,343.7z M577.3,510.3c0-0.8-0.7-1.5-1.5-1.5l-20.2,0c-0.8,0-1.5,0.7-1.5,1.5v0l0,0.4c0,0.8,0.7,1.5,1.5,1.5h0l20.2,0
|
||||
c0.8,0,1.5-0.7,1.5-1.5l0,0L577.3,510.3z M644.2,510.2c0-0.7-0.6-1.3-1.3-1.3l-39.8,0.3c-0.7,0-1.3,0.6-1.3,1.3c0,0,0,0,0,0l0,0.1
|
||||
c0,0.7,0.6,1.3,1.3,1.3l39.8-0.3C643.6,511.6,644.2,511,644.2,510.2C644.2,510.2,644.2,510.2,644.2,510.2L644.2,510.2z
|
||||
M772.4,510.2c0-0.7-0.6-1.3-1.4-1.3c0,0,0,0,0,0l-45.4,0.4c-0.7,0-1.3,0.6-1.3,1.4l0,0.1c0,0.7,0.6,1.3,1.4,1.3c0,0,0,0,0,0
|
||||
l45.4-0.4C771.8,511.6,772.4,511,772.4,510.2L772.4,510.2z M644,517.4c0-0.8-0.6-1.4-1.4-1.4L603,516c-0.8,0-1.4,0.6-1.4,1.4
|
||||
c0,0,0,0,0,0l0,0.3c0,0.8,0.6,1.4,1.4,1.4l39.6,0.1c0.8,0,1.4-0.6,1.4-1.4c0,0,0,0,0,0L644,517.4z M771.9,517.3c0-0.6-0.5-1-1-1
|
||||
l-45.3-0.2c-0.6,0-1,0.5-1,1c0,0,0,0,0,0l0,0.8c0,0.6,0.5,1,1,1l45.3,0.2c0.6,0,1-0.5,1-1c0,0,0,0,0,0L771.9,517.3z M645.2,524.9
|
||||
c0-0.5-0.4-0.9-0.9-0.9l0,0l-41.2-0.2c-0.5,0-0.9,0.4-0.9,0.9v0l0,0.2c0,0.5,0.4,0.9,0.9,0.9l0,0l41.2,0.2c0.5,0,0.9-0.4,0.9-0.9
|
||||
L645.2,524.9z M763.1,525.1c0-0.6-0.5-1.1-1.1-1.1l-36.4-0.4c-0.6,0-1.1,0.5-1.1,1.1l0,0.1c0,0.6,0.5,1.1,1.1,1.1l36.4,0.4
|
||||
C762.6,526.2,763.1,525.8,763.1,525.1L763.1,525.1z M492.2,617.8c15.3,2.2,29.5-8.8,31.7-24.5c2.2-15.7-8.4-30.2-23.6-32.3
|
||||
c-15.3-2.2-29.5,8.8-31.7,24.5C466.3,601.2,476.9,615.7,492.2,617.8z M672.9,579.7c0-0.9-0.8-1.7-1.7-1.7H543.6
|
||||
c-0.9,0-1.7,0.8-1.7,1.7v0.6c0,0.9,0.8,1.7,1.7,1.7h127.6c0.9,0,1.7-0.8,1.7-1.7V579.7z M718.4,580c0-1-0.8-1.8-1.8-1.8h-38.6
|
||||
c-1,0-1.8,0.8-1.8,1.8v0.1c0,1,0.8,1.8,1.8,1.8h38.6C717.6,581.9,718.4,581.1,718.4,580L718.4,580z M760.5,579.9
|
||||
c0-1.1-0.9-1.9-1.9-1.9l-33.6,0.1c-1.1,0-1.9,0.9-1.9,1.9c0,0,0,0,0,0v0.1c0,1.1,0.9,1.9,1.9,1.9c0,0,0,0,0,0l33.6-0.1
|
||||
C759.6,581.9,760.5,581.1,760.5,579.9C760.5,580,760.5,580,760.5,579.9L760.5,579.9z M642,601.8c0-1-0.8-1.8-1.8-1.8l-32.5,0.2
|
||||
c-1,0-1.8,0.8-1.8,1.8l0,0.1c0,1,0.8,1.8,1.8,1.8l32.5-0.2C641.2,603.7,642,602.8,642,601.8L642,601.8z M752,601.8
|
||||
c0-1.1-0.9-1.9-1.9-1.9l0,0l-28.6,0.1c-1.1,0-1.9,0.9-1.9,1.9l0,0.1c0,1.1,0.9,1.9,1.9,1.9h0l28.6-0.2c1.1,0,1.9-0.9,1.9-1.9
|
||||
L752,601.8z M577.8,602c0-0.7-0.6-1.3-1.3-1.3l0,0l-33.1-0.1c-0.7,0-1.3,0.6-1.3,1.3l0,0l0,0.1c0,0.7,0.6,1.3,1.3,1.3l0,0l33.1,0.1
|
||||
c0.7,0,1.3-0.6,1.3-1.3l0,0L577.8,602z" class="st57"></path>
|
||||
<path d="M491.2,208.4c5.7-0.1,9.1,9.5,11.9,13.2c5.9,7.6,11.9,15.2,17.9,22.7c0.2,0.2,0.1,0.5-0.1,0.6
|
||||
c-0.2,0.1-0.4,0.1-0.6,0c-10.1-8.3-20.8-16-31.9-23.1C481.7,217.4,483.9,208.6,491.2,208.4z" class="st57"></path>
|
||||
<path d="M366.4,247.7c-6.1,0.1-11.8-1.4-17-4.6c-4.4-2.7-16.7-7.2-21.7-5.7c-3.1,0.9-5.4,2.8-6.8,5.5
|
||||
c-0.3,0.6-0.2,0.7,0.4,0.3c6.2-4.6,8.1-6.5,16.1-3.4c4.6,1.8,13.6,2.7,12.5,10c-1.1,7-5.5,9.8-13.3,8.5c-0.4-0.1-0.9,0.2-0.9,0.7
|
||||
c0,0.1,0,0.1,0,0.2l0.1,3.2c0,0.9,0.5,1.3,1.3,1.4l15,1.7c0.7,0.1,0.7,0.3,0.1,0.6l-1.7,0.9c-0.4,0.2-0.7,0.6-0.8,1.1
|
||||
c-0.4,2.7,0.7,4.6,3.3,5.7c1.2,0.5,2.5-0.1,3-1.3c0.1-0.3,0.2-0.6,0.2-0.8v-4.5c0-0.7,0.3-1.1,1-1.1l9.9-0.4c8.7-0.2,5,9.5-2,10.6
|
||||
c-2.2-1.6-3.2-3.9-3-6.8c0.1-0.7-0.2-1.1-0.8-1.4l-1.1-0.5c-0.7-0.3-1.5,0.1-1.8,0.8c0,0.1-0.1,0.2-0.1,0.3l-0.4,3.8
|
||||
c-0.1,0.8-0.5,1.4-1.3,1.7c-4.8,2-8.1-0.9-8.5-5.7c-0.1-0.9-0.5-1.4-1.4-1.5l-9-1.3c-0.6-0.1-1,0.1-1.1,0.7
|
||||
c-3.5,11.7,16.1,25.5,27.1,26.5c0.8,0.1,1.2-0.3,1.3-1l0.9-5c0.2-1.1-0.3-1.6-1.4-1.3c-1.6,0.3-3.2,0.2-4.7-0.5
|
||||
c-0.3-0.1-0.6-0.3-0.7-0.6c-0.3-0.5-0.2-0.9,0.1-1.4c0.3-0.4,0.8-0.6,1.3-0.3l1.6,0.9c0.7,0.4,1.4,0.5,2.1,0.2
|
||||
c1.4-0.5,2.2-1.4,2.4-2.6l1.6,17.5c0.1,0.9-0.3,1.3-1.2,1.3l-12.4,0.1c-23.2-6.1-21.6-12.5-23.7-33.7c-0.1-0.7-0.4-1.3-0.9-1.7
|
||||
c-5-3.9-7.1,1.7-8.6,5.3l-4.7-11.7c-0.3-0.7-0.7-1.1-1.4-1.4l-4-1.6c-0.7-0.3-1.1-0.8-1.2-1.6c-0.3-3.3,1-5.8,3.7-7.5
|
||||
c0.6-0.4,0.9-1.1,0.8-1.8c-1.1-8.7,0.4-17.3,11-18.2c5-0.4,4.3-2.8,7.3-5.2c7.6-6,14-2.2,20.7,2.8c0.5,0.4,1.2,0.5,1.9,0.4
|
||||
c3.7-0.9,7.9-2.3,11.5-1.8C381.2,224.4,379.8,243,366.4,247.7z M367.9,273.9c1.4-0.2,2.4-1.9,2.1-3.8c-0.2-1.9-1.6-3.3-3-3.2
|
||||
c-1.4,0.2-2.4,1.9-2.1,3.8C365.1,272.7,366.5,274.1,367.9,273.9z" class="st61"></path>
|
||||
<path d="M235.1,284.9c-15.3-0.5-27.2-13.8-26.6-29.5c0.6-15.8,13.4-28.2,28.6-27.6c0,0,0,0,0,0
|
||||
c15.3,0.5,27.2,13.8,26.6,29.5S250.3,285.4,235.1,284.9C235.1,284.9,235.1,284.9,235.1,284.9z M239,255.7c-0.6-0.1-1-0.5-1.1-1.1
|
||||
l-0.7-4.6c-0.1-0.7-0.8-1.2-1.6-1.1c-0.6,0.1-1,0.5-1.1,1.1l-0.7,4.6c-0.1,0.6-0.5,1-1.1,1.1l-4.6,0.7c-0.7,0.1-1.2,0.8-1.1,1.6
|
||||
c0.1,0.6,0.5,1,1.1,1.1l4.6,0.7c0.6,0.1,1,0.5,1.1,1.1l0.7,4.6c0.1,0.7,0.8,1.2,1.6,1.1c0.6-0.1,1-0.5,1.1-1.1l0.7-4.6
|
||||
c0.1-0.6,0.5-1,1.1-1.1l4.6-0.7c0.7-0.1,1.2-0.8,1.1-1.6c-0.1-0.6-0.5-1-1.1-1.1L239,255.7z" class="st58"></path>
|
||||
<path d="M710.1,232.4l24.5,0c1,0,1.9,0.8,1.9,1.9l0,1.8c0,1-0.8,1.9-1.9,1.9l-24.5,0c-1,0-1.9-0.8-1.9-1.9l0-1.8
|
||||
C708.2,233.3,709.1,232.4,710.1,232.4z" class="st62"></path>
|
||||
<path d="M573.6,232.5h129.8c0.9,0,1.6,0.7,1.6,1.6v2.2c0,0.9-0.7,1.6-1.6,1.6H573.6c-0.9,0-1.6-0.7-1.6-1.6v-2.2
|
||||
C572,233.2,572.7,232.5,573.6,232.5z" class="st59"></path>
|
||||
<path d="M742.2,233.1l24-0.3c0.9,0,1.7,0.7,1.7,1.6l0,1c0,0.9-0.7,1.7-1.6,1.7l-24,0.3c-0.9,0-1.7-0.7-1.7-1.6l0-1
|
||||
C740.5,233.9,741.3,233.2,742.2,233.1z" class="st60"></path>
|
||||
<path d="M366.4,247.7c2.1,5.6,2.3,11.5,0.5,17.8L357,266c-0.7,0-1,0.4-1,1.1v4.5c0,1.3-1,2.3-2.3,2.3
|
||||
c-0.3,0-0.6-0.1-0.8-0.2c-2.6-1.1-3.7-3-3.3-5.7c0.1-0.5,0.3-0.9,0.8-1.1l1.7-0.9c0.6-0.3,0.6-0.5-0.1-0.6l-15-1.7
|
||||
c-0.9-0.1-1.3-0.6-1.3-1.4l-0.1-3.2c0-0.5,0.4-0.8,0.8-0.8c0.1,0,0.1,0,0.2,0c7.8,1.3,12.3-1.5,13.3-8.5c1.1-7.3-7.8-8.2-12.5-10
|
||||
c-8-3.1-9.9-1.2-16.1,3.4c-0.6,0.4-0.7,0.3-0.4-0.3c1.4-2.7,3.7-4.6,6.8-5.5c5-1.5,17.3,3,21.7,5.7
|
||||
C354.7,246.3,360.3,247.8,366.4,247.7z" class="st62"></path>
|
||||
<path d="M239,255.7l4.6,0.7c0.7,0.1,1.2,0.8,1.1,1.6c-0.1,0.6-0.5,1-1.1,1.1l-4.6,0.7c-0.6,0.1-1,0.6-1.1,1.1
|
||||
l-0.7,4.6c-0.1,0.7-0.8,1.2-1.6,1.1c-0.6-0.1-1-0.5-1.1-1.1l-0.7-4.6c-0.1-0.6-0.6-1-1.1-1.1l-4.6-0.7c-0.7-0.1-1.2-0.8-1.1-1.6
|
||||
c0.1-0.6,0.5-1,1.1-1.1l4.6-0.7c0.6-0.1,1-0.6,1.1-1.1l0.7-4.6c0.1-0.7,0.8-1.2,1.6-1.1c0.6,0.1,1,0.5,1.1,1.1l0.7,4.6
|
||||
C237.9,255.1,238.4,255.6,239,255.7z" class="st57"></path>
|
||||
<path d="M277.9,247.9l18.7,0.1c1,0,1.9,0.9,1.9,1.9l0,0.2c0,1-0.9,1.9-1.9,1.9l-18.7-0.1c-1,0-1.9-0.9-1.9-1.9l0-0.2
|
||||
C276,248.8,276.8,247.9,277.9,247.9z" class="st60"></path>
|
||||
<path d="M849,382.2l-0.2,98.8l-1,110.9l-9.8,18.4l-0.3-111.1l0.1-226c0-0.6-0.4-1-1-1l-299.5-0.7
|
||||
c0.1-0.5,0.4-1.1,1.1-1.8l8.5-8l300.4-0.3c0.8,0,1.5,0.7,1.5,1.5v0L849,382.2z" class="st60"></path>
|
||||
<path d="M354.5,299.9l0.8,9.8l0,9.7c-10.1,3.1-19.7,3.5-28.8,1.2c-3.6-3.9-5.9-8.1-6.9-12.7
|
||||
c2.4-8.9,4.4-17.8,5.9-26.9c0.8-4.9-0.6-8.7-4.3-11.2c1.5-3.5,3.5-9.2,8.6-5.3c0.5,0.4,0.9,1,0.9,1.7
|
||||
C333,287.5,331.3,293.9,354.5,299.9z" class="st62"></path>
|
||||
<path d="M365,276.1c1,1.6,1.5,3.3,1.6,4.9c-0.2,1.3-1,2.2-2.4,2.6c-0.7,0.2-1.4,0.2-2.1-0.2l-1.6-0.9
|
||||
c-0.4-0.3-1-0.1-1.3,0.3c-0.3,0.5-0.3,1-0.1,1.4c0.1,0.3,0.4,0.5,0.7,0.6c1.5,0.7,3,0.8,4.7,0.5c1.1-0.2,1.6,0.2,1.4,1.3l-0.9,5
|
||||
c-0.1,0.8-0.6,1.1-1.3,1c-11.1-0.9-30.6-14.7-27.1-26.5c0.2-0.6,0.5-0.8,1.1-0.7l9,1.3c0.9,0.1,1.3,0.6,1.4,1.5
|
||||
c0.4,4.8,3.7,7.6,8.5,5.7c0.8-0.3,1.2-0.8,1.3-1.7l0.4-3.8c0.1-0.7,0.8-1.3,1.5-1.2c0.1,0,0.2,0,0.3,0.1l1.1,0.5
|
||||
c0.6,0.3,0.9,0.7,0.8,1.4C361.8,272.2,362.8,274.5,365,276.1z" class="st62"></path>
|
||||
<path d="M277.9,266l18.6,0.2c1,0,1.8,0.8,1.8,1.8l0,0.2c0,1-0.8,1.8-1.8,1.8l-18.6-0.2c-1,0-1.8-0.8-1.8-1.8l0-0.2
|
||||
C276.1,266.8,276.9,266,277.9,266z" class="st60"></path>
|
||||
|
||||
<ellipse ry="3.5" rx="2.6" cy="270.4" cx="367.5" class="st57" transform="matrix(0.9921 -0.1253 0.1253 0.9921 -30.9926 48.1871)"></ellipse>
|
||||
<path d="M501.2,457.4c-0.7,0.1-1.4,0.5-2.1,1.1l-1-155.2c0-0.9,0.4-1.3,1.3-1.3h1.4c0.7,0,1.1,0.4,1.1,1.1
|
||||
L501.2,457.4z" class="st59"></path>
|
||||
<path d="M528.2,306.2l64.9,0.1c0.9,0,1.7,0.8,1.7,1.7l0,0.2c0,0.9-0.8,1.7-1.7,1.7l-64.9-0.1c-0.9,0-1.7-0.8-1.7-1.7
|
||||
l0-0.2C526.5,307,527.3,306.2,528.2,306.2z" class="st63"></path>
|
||||
<path d="M598.3,306.8l26.9,0.2c0.6,0,1,0.5,1,1l0,0.1c0,0.6-0.5,1-1,1l-26.9-0.2c-0.6,0-1-0.5-1-1l0-0.1
|
||||
C597.3,307.2,597.7,306.8,598.3,306.8z" class="st62"></path>
|
||||
<path d="M319.7,307.9c1,4.6,3.3,8.8,6.9,12.7l20,28.7l-0.2,1.1l-6.7-0.8c-0.7-0.1-1.3,0-1.9,0.3
|
||||
c-7.3,3.1-12.4,0.4-15.9-6.5c-5.2-10.2-8.9-20.7-11.1-31.5L319.7,307.9z" class="st59"></path>
|
||||
<path d="M355.3,309.7c14.7,7.8,30.7,15,48.1,21.6l-31.3,0.7c-0.7,0-1.2,0.4-1.4,1.1L349,405.5
|
||||
c-2-19-2.9-37.4-2.6-55.2l0.2-1.1c4-9.7,6.9-19.7,8.8-29.9L355.3,309.7z" class="st58"></path>
|
||||
<path d="M310.8,311.7c2.2,10.8,5.9,21.3,11.1,31.5c3.5,6.9,8.6,9.7,15.9,6.5c0.6-0.3,1.2-0.3,1.9-0.3l6.7,0.8
|
||||
c-0.2,17.8,0.7,36.2,2.6,55.2l-1.3,7.2c-19-6-25.6,2.1-37.6,14.5l-2.2-5.9c-0.3-0.9-1.2-1.4-2.1-1.3l-27.5,2.1
|
||||
c-0.7,0.1-1.4-0.2-1.8-0.7l-0.7-0.8c0.5-2.1,0.3-4-0.7-5.7c3.8-7.7,8.7-18.4,14.6-32.1c9.5-22.1,4.3-40.4-15.4-55L310.8,311.7z" class="st63"></path>
|
||||
<path d="M355.4,319.4c-1.9,10.3-4.8,20.2-8.8,29.9l-20-28.7C335.6,322.9,345.2,322.5,355.4,319.4z" class="st57"></path>
|
||||
<path d="M274.3,327.7c19.7,14.6,24.8,32.9,15.4,55c-5.9,13.7-10.8,24.5-14.6,32.1c-1.6,2-2.6,4.3-3.2,7
|
||||
c-19.2-0.4-40.5-0.1-54.4,15c3.6-20.7,28.9-97.2,47.5-105.5C268.6,329.7,271.7,328.5,274.3,327.7z" class="st59"></path>
|
||||
<path d="M186,339.7l-0.5,89c-7.5-8.5-15.9-14.7-25.2-18.5c-32.3-13.4-41.2,32.7-41.7,53.9
|
||||
c-0.8,31.5,4.5,56.4,13.3,87.3l-74.2-41.8c-1.1-0.6-1.4-1.5-0.9-2.6c0.2-0.5,0.9-1,1.9-1.5c4.9-2.5,10.1-4.3,15.6-5.3
|
||||
c0.8-0.1,1-0.6,0.8-1.3c-10-32.6-18.9-62.9-21-92.6c-1.6-23.6,0-68.3,30.5-75c27-5.9,47.1,16,63.9,32.6c0.4,0.4,1,0.4,1.4,0
|
||||
c0.1-0.1,0.1-0.2,0.2-0.3c2.5-5,5-10.4,8.5-14.1C165.5,342.3,174.6,339,186,339.7z" class="st64"></path>
|
||||
<path d="M403.4,331.2l80.1,0.6c2,0,2.6,1,2,2.8L470.9,377c-18,2.6-19.4,16.8-15.3,31.3c1.7,6,1.2,10,0.3,15.7
|
||||
c-1-1-1.6-0.6-2,1c-0.8,3.5-2,6.4-3.5,8.5c-0.4,0.6-1,0.9-1.7,0.9l-46.8,0.6l-46,0l11-7.8c1.1-0.8,1.4-2.4,0.6-3.5
|
||||
c-0.1-0.2-0.3-0.3-0.4-0.5c-5.8-4.8-12.3-8.2-19.4-10.4l1.3-7.2l21.7-72.5c0.2-0.7,0.7-1.1,1.4-1.1L403.4,331.2z M405.1,390.9
|
||||
c-0.2,0.3,0,0.7,0.3,0.9c0.1,0,0.2,0.1,0.3,0.1l17.9,0.2c0.4,0,0.7-0.3,0.7-0.7c0-0.1,0-0.2-0.1-0.3l-8.7-18
|
||||
c-0.2-0.3-0.6-0.5-0.9-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L405.1,390.9z" class="st65"></path>
|
||||
<path d="M680.1,333.9v87.7c-31.8,2.3-50.6,29.3-43.9,60.3c0.8,3.7,3,9.3,6.5,16.9c0.4,0.8,0.1,1.2-0.8,1.2h-86.5
|
||||
c-0.8,0-1.2-0.4-1.2-1.1c-1.3-19.1-0.9-37.2,1.3-54.3C563.3,382.4,617,334.9,680.1,333.9z" class="st59"></path>
|
||||
<path d="M680.1,333.9c67.5,0.2,125.6,50.1,129.4,119.7l-84.1,6.1c-6.6-23.7-21.7-36.4-45.4-38.1V333.9z M727.8,420
|
||||
c-0.6-0.8-4.1,1.1-7.8,4.1c0,0,0,0,0,0c-3.7,3-6.1,6.1-5.5,6.9c0,0,0,0,0,0c0.6,0.8,4.1-1.1,7.8-4.1c0,0,0,0,0,0
|
||||
C726,423.9,728.5,420.8,727.8,420C727.8,420,727.8,420,727.8,420z" class="st65"></path>
|
||||
<path d="M527.2,342.5l54.6-0.3c0.8,0,1.5,0.6,1.5,1.5l0,0.9c0,0.8-0.6,1.5-1.5,1.5l-54.6,0.3c-0.8,0-1.5-0.6-1.5-1.5
|
||||
l0-0.9C525.7,343.2,526.4,342.5,527.2,342.5z" class="st60"></path>
|
||||
<path d="M917.3,586.9c-3-8.8-6.9-17.3-11.7-25.5c1.2-22.2,1.5-93.8-28.1-96c-13.8-1-18.9,8.1-28.7,15.5l0.2-98.8
|
||||
c19.5-7.5,37-10.9,52.5-10.2c31.3,1.3,39.6,62.3,40.4,85C943.4,502.2,936.1,546.3,917.3,586.9z" class="st64"></path>
|
||||
<path d="M405.1,390.9l9.1-17.8c0.2-0.3,0.6-0.5,0.9-0.3c0.1,0.1,0.2,0.2,0.3,0.3l8.7,18c0.2,0.3,0,0.7-0.3,0.9
|
||||
c-0.1,0-0.2,0.1-0.3,0.1l-17.9-0.2c-0.4,0-0.7-0.3-0.7-0.7C405.1,391.1,405.1,391,405.1,390.9z" class="st57"></path>
|
||||
<path d="M470.9,377c4.2-0.2,6,1.5,5.6,5c-1.8,13.7-6.3,28.3-13.6,43.9c-3.3,0.3-5.6-0.3-6.9-1.9
|
||||
c0.9-5.7,1.4-9.7-0.3-15.7C451.5,393.8,452.9,379.6,470.9,377z" class="st62"></path>
|
||||
<path d="M185.5,428.7c0.7,65.1,0.8,116.8,0.3,155.3c0,2.9,0.2,5.1,0.7,6.6c0.2,0.6,0.3,1.3,0.2,1.9
|
||||
c-1.8,17.4-2.2,34.8-1.2,52.2c0,0.6-0.1,1.1-0.5,1.5l-2.8,2.8c-14.1-22.3-26-43-35.4-62c-5.2-10.4-10.2-22.4-14.9-35.8
|
||||
c-8.9-30.9-14.1-55.8-13.3-87.3c0.5-21.2,9.5-67.2,41.7-53.9C169.7,414,178,420.2,185.5,428.7z" class="st66"></path>
|
||||
<path d="M347.7,412.7c7.1,2.1,13.6,5.6,19.4,10.4c1.1,0.9,1.2,2.5,0.3,3.5c-0.1,0.2-0.3,0.3-0.5,0.4l-11,7.8l-7.6,4.5
|
||||
c-11.5,7.4-25.8,4.7-37.7,0.6c-2-4.6-2.2-8.9-0.7-12.8C322.1,414.8,328.7,406.7,347.7,412.7z" class="st62"></path>
|
||||
<path d="M275.1,414.8c1,1.7,1.3,3.6,0.7,5.7c-0.4,1.5-1.7,1.9-3.9,1.3C272.4,419.1,273.5,416.8,275.1,414.8z" class="st64"></path>
|
||||
|
||||
<ellipse ry="1.8" rx="8.6" cy="425.5" cx="721.2" class="st62" transform="matrix(0.7694 -0.6388 0.6388 0.7694 -105.4867 558.7999)"></ellipse>
|
||||
<path d="M310.1,427.2c-1.5,3.9-1.3,8.2,0.7,12.8c-0.4,3.1,0.1,6.5,1.3,10.2c0.2,0.5-0.1,1.1-0.6,1.3c0,0-0.1,0-0.1,0
|
||||
l-37.3,6.4c-9.7,0.9-19.5,1.7-29.2,2.3c-17.4,1.1-30.6-2.6-27.3-23.4c13.9-15.2,35.1-15.4,54.4-15c2.2,0.6,3.5,0.2,3.9-1.3l0.7,0.8
|
||||
c0.4,0.5,1.1,0.8,1.8,0.7l27.5-2.1c0.9-0.1,1.8,0.5,2.1,1.3L310.1,427.2z" class="st58"></path>
|
||||
<path d="M456,424c1.3,1.6,3.6,2.2,6.9,1.9c-7.5,14.9-16.6,29.1-27.4,42.6c-6.6,8.3-13.4,15.8-23.9,14.9l-0.7-0.4
|
||||
c-0.6-0.3-1-0.8-1.1-1.4l-7.8-46.8l46.8-0.6c0.7,0,1.3-0.3,1.7-0.9c1.6-2.1,2.7-4.9,3.5-8.5C454.3,423.4,455,423.1,456,424z" class="st59"></path>
|
||||
<path d="M356,434.9l46,0l7.8,46.8c0.1,0.7,0.5,1.1,1.1,1.4l0.7,0.4l-0.9,0c-0.4,0-0.8,0.4-0.7,0.8c0,0,0,0.1,0,0.1
|
||||
l7.4,45.6c0.1,0.8-0.4,1.6-1.3,1.8c-0.3,0-0.5,0-0.8-0.1c-2-0.8-3.6-0.8-4.8,0l-41.5-0.9c-0.7,0-1.3-0.4-1.6-1l-12.6-26
|
||||
c-1.8-19.9-2.9-40.5-3.2-61.6c0-1-0.2-1.7-0.7-2.1c-0.6-0.5-1.4-0.7-2.4-0.6L356,434.9z" class="st58"></path>
|
||||
<path d="M348.4,439.4c1.1-0.1,1.9,0.1,2.4,0.6c0.4,0.4,0.6,1.1,0.7,2.1c0.3,21.1,1.4,41.7,3.2,61.6l-13.6,25.2
|
||||
c-0.7,1.3-2,2.1-3.4,2.1l-62.4,1.4l-1.3-0.7c-0.6-0.3-1-0.9-0.9-1.6l0.8-72.3l37.3-6.4c0.5-0.1,0.9-0.6,0.8-1.2c0,0,0-0.1,0-0.1
|
||||
c-1.2-3.7-1.7-7.1-1.3-10.2C322.6,444.1,336.9,446.8,348.4,439.4z" class="st63"></path>
|
||||
<path d="M197,440.1c50.2,60.9,73.7,140.2,60.8,218.3c-0.1,0.2-0.3,0.3-0.5,0.5c-0.2,0.1-0.5,0.1-0.7-0.1
|
||||
c-16.9-20.5-35.6-39.2-56.2-56.1c-0.5-0.4-0.8-0.3-1.1,0.2l-0.3,0.5c-0.3,0.5-0.2,0.9,0.2,1.3c6.7,6.7,24.7,22.3,23.5,32.2
|
||||
c-1.7,15.1-2.7,30.4-2.9,45.7c0,0.8,0.6,1.5,1.5,1.5c0,0,0.1,0,0.1,0c16.2-1.2,32.4-0.9,48.4,0.9l0.1,9.2l-48.1-0.3
|
||||
c-0.8,0-1.3,0.4-1.5,1.1c-0.9,3,2.2,6.1,1,9.5c-0.2,0.5-0.7,0.8-1.2,0.6c-0.2-0.1-0.4-0.2-0.5-0.4l-6.4-9.5c-1.1-1.6-3.1-2.4-5-2
|
||||
c-6.7,1.6-16.4,2.7-18.4-6.1c-2.1-9.5-2.8-18.4-2.1-26.6l9,12.5c0.4,0.5,0.8,0.6,1.3,0.2l0.6-0.4c0.8-0.5,1-1.2,0.7-2
|
||||
c-1.8-4.9-3.5-9.8-3.5-15.2c0-70.6,0.1-141.3,0.3-211.9c0-0.7,0.1-1.3,0.3-1.9L197,440.1z" class="st66"></path>
|
||||
<path d="M809.6,453.6l0.3,41.8c0,0.8-0.4,1.3-1.1,1.4l-2.5,0.5c-3-1.3-5.7-3.3-8.2-6c-0.5-0.5-1-0.8-1.7-0.9
|
||||
c-3.1-0.7-6.3-0.4-9.3,0.8l-61.5-14.4l-41.9-10.2c-0.1,0-0.2,0-0.3-0.1c-1.5-0.8-1.8-1.5-0.9-2.3c0.2-0.2,0.6-0.3,1-0.4
|
||||
c13.6-1.5,27.6-2.8,42-4L809.6,453.6z" class="st59"></path>
|
||||
<path d="M501.2,457.4l0.9,64.9c0,0.8-0.5,1.6-1.3,1.8l-1,0.3c-0.9,0.3-1.4-0.1-1.4-1l0.7-64.9
|
||||
C499.9,457.9,500.6,457.6,501.2,457.4z" class="st62"></path>
|
||||
<path d="M905.6,561.4c-20.5-4.2-33.2,3.4-45.9,18.2c-3.8,4.3-7.7,8.4-11.9,12.3l1-110.9c9.8-7.4,15-16.5,28.7-15.5
|
||||
C907.1,467.6,906.9,539.2,905.6,561.4z" class="st66"></path>
|
||||
<path d="M725.6,476.7l61.5,14.4l-3.2,4.4c-0.4,0.5-0.5,1.2-0.3,1.8c0.4,1.6,0.1,2.5-1.1,2.5c-0.5,0.2-1,0.2-1.5,0.1
|
||||
l-63,0c-0.7,0-1-0.4-0.7-1.1L725.6,476.7z" class="st65"></path>
|
||||
<path d="M806.3,497.3c-1.1,0.1-2.3,0.6-3.4,1.7l-20.4,0.8c1.2,0,1.6-0.9,1.1-2.5c-0.2-0.6,0-1.3,0.3-1.8l3.2-4.4
|
||||
c3.1-1.2,6.2-1.4,9.3-0.8c0.7,0.1,1.2,0.4,1.7,0.9C800.6,494,803.3,496,806.3,497.3z" class="st60"></path>
|
||||
<path d="M802.9,499c5,16.2,6.9,33.3,7.9,50.3c0.1,1.4,0.2,2.5,0.5,3.4c0.1,0.6,0.7,0.9,1.3,0.8
|
||||
c0.4-0.1,0.7-0.4,0.8-0.7c5.7-18.6,13.9-36.5,24.4-53.7l0.3,111.1l-20.7,42.1c-0.1-26.3-21.9-43.6-46.9-33.2
|
||||
c-3.7-11.9-4.4-24.4-1.9-37.4l36.2,0.1c0.8,0,1.5-0.7,1.5-1.5c0-0.4-0.1-0.8-0.4-1c-0.9-0.9-2.1-1.3-3.7-1.2
|
||||
c-11.1,0.6-22.4-0.1-33.6,0.3c-0.5-1.5-0.8-2.8-0.7-3.8c2-24.9,5-50.8,13.1-74.5c0.5,0.1,1,0.1,1.5-0.1L802.9,499z M806.4,601.6
|
||||
c0-1-0.8-1.7-1.8-1.7l-31,0.3c-1,0-1.7,0.8-1.7,1.8l0,0.1c0,1,0.8,1.7,1.8,1.7l31-0.3c1,0,1.7-0.8,1.7-1.8L806.4,601.6z" class="st67"></path>
|
||||
<path d="M354.7,503.8l12.6,26c0.3,0.7,0.9,1,1.6,1l41.5,0.9L401.9,645l-2.8,38.3l-0.8,10.1L389.4,809
|
||||
c-0.1,0.7,0.5,1.3,1.2,1.4c7.9,0.9,15,3.7,21.4,8.4c0.6,0.4,1.2,0.7,2,0.7h19c0.7,0,1.1-0.4,1.2-1.1L438,728l1.9-32.4l0-11.6
|
||||
c0.7-22.7,1.4-37.8,2.2-45.5c0.7-6.3,4.6-9.5,12-9.5c63.1-0.3,126.3-0.4,189.6-0.4h63.4c9.1-0.8,18.9,1.7,18.9,12.5
|
||||
c-0.1,14.3-0.6,28.6-1.7,42.8l0,9.1l-2.6,55.4l-9.3-0.6c-0.7,0-1.1-0.4-1.1-1.2l1.8-73.2l0.9-32.6c0-0.5-0.4-0.9-0.8-0.9
|
||||
c0,0,0,0,0,0H453.4c-0.8,0-1.3,0.4-1.3,1.3l-1.5,41c-0.5,5.4-0.7,11-0.7,16.6c0.2,16.1-2.3,32-2.4,48.1c-0.1,7.9-1.8,16.9-1.5,24
|
||||
c0.4,12.2,0.1,24.4-0.9,36.5c0,0.3,0.2,0.5,0.5,0.6c0,0,0,0,0,0l163.2,0c0.8,0,1.5,0.6,1.5,1.5c0,0.2,0,0.3-0.1,0.4l-2.2,7
|
||||
c-0.6,2,0.1,3,2.2,2.9l26.1-0.3l144.3,0l7.8,0l33.8-0.1c0.3,0,0.7-0.1,0.9-0.3l0.9-0.6c0,0.2,0,0.4,0,0.5c0.1,0.3,0.2,0.4,0.5,0.4
|
||||
l79.5,0.1l71,0c0.7,0,1,0.3,1,1v17.4c0,0.7-0.4,1.1-1.1,1.1L782,838.9l-68.7-0.4L603,839H483H207.5c-12.9-1.2-25.7-1.2-38.6-0.1
|
||||
l-92,0c-0.6,0-1-0.4-1-1v-17.5c0-0.7,0.3-1,1-1h70.5l32.6,0.2l3.9-0.2h43l1.5,0h28.2l5.9,0c0.8,0,1.2-0.4,1.3-1.1
|
||||
c2.4-19.6,2.3-45.4,2.9-58.7c1.1-22.2,2.1-44,3.1-65.4l-0.1-9.2l2-41.9c1.7-35.7,3-71.4,4.1-107.1c0-1.4-0.2-2.6-0.6-3.6l62.4-1.4
|
||||
c1.4,0,2.8-0.8,3.4-2.1L354.7,503.8z M321,684.3l-1.8,8.6l-23.3,115.9c-0.2,0.8,0.3,1.5,1.1,1.7c0,0,0,0,0.1,0
|
||||
c7.5,1.2,14.4,4,20.5,8.5c0.5,0.4,1,0.5,1.6,0.5H356c1,0,1.8-0.8,1.8-1.8c0-0.1,0-0.1,0-0.2L346,692.9l-0.8-7.8l-7.7-76.2
|
||||
c0-0.3-0.2-0.6-0.5-0.6c-0.3,0-0.6,0.2-0.6,0.5l0,0L321,684.3z" class="st61"></path>
|
||||
<path d="M555.6,508.9l20.2,0c0.8,0,1.5,0.7,1.5,1.5l0,0.4c0,0.8-0.7,1.5-1.5,1.5l-20.2,0c-0.8,0-1.5-0.7-1.5-1.5
|
||||
l0-0.4C554.1,509.5,554.7,508.9,555.6,508.9z" class="st65"></path>
|
||||
<path d="M603.1,509.1l39.8-0.3c0.7,0,1.3,0.6,1.3,1.3l0,0.1c0,0.7-0.6,1.3-1.3,1.3l-39.8,0.3c-0.7,0-1.3-0.6-1.3-1.3
|
||||
l0-0.1C601.8,509.7,602.3,509.1,603.1,509.1z" class="st63"></path>
|
||||
<path d="M725.6,509.2l45.4-0.4c0.7,0,1.3,0.6,1.4,1.3l0,0.1c0,0.7-0.6,1.3-1.3,1.4l-45.4,0.4c-0.7,0-1.3-0.6-1.4-1.3
|
||||
l0-0.1C724.3,509.8,724.9,509.2,725.6,509.2z" class="st63"></path>
|
||||
<path d="M603,516l39.6,0.1c0.8,0,1.4,0.6,1.4,1.4l0,0.3c0,0.8-0.6,1.4-1.4,1.4L603,519c-0.8,0-1.4-0.6-1.4-1.4l0-0.3
|
||||
C601.7,516.6,602.3,516,603,516z" class="st63"></path>
|
||||
<path d="M725.6,516l45.3,0.2c0.6,0,1,0.5,1,1l0,0.8c0,0.6-0.5,1-1,1l-45.3-0.2c-0.6,0-1-0.5-1-1l0-0.8
|
||||
C724.5,516.5,725,516,725.6,516z" class="st63"></path>
|
||||
<path d="M603,523.8l41.2,0.2c0.5,0,0.9,0.4,0.9,0.9l0,0.2c0,0.5-0.4,0.9-0.9,0.9l-41.2-0.2c-0.5,0-0.9-0.4-0.9-0.9
|
||||
l0-0.2C602.1,524.2,602.5,523.8,603,523.8z" class="st63"></path>
|
||||
<path d="M725.7,523.5L762,524c0.6,0,1.1,0.5,1.1,1.1l0,0.1c0,0.6-0.5,1.1-1.1,1.1l-36.4-0.4c-0.6,0-1.1-0.5-1.1-1.1
|
||||
l0-0.1C724.6,524,725.1,523.5,725.7,523.5z" class="st63"></path>
|
||||
<path d="M905.6,561.4c4.8,8.2,8.7,16.7,11.7,25.5c3.3,40.6-4.2,75.3-15.4,113.9c-0.1,0.4-0.1,0.8-0.1,1.1
|
||||
c0.4,3.3,2,4.3,4.6,3c0.6-0.3,1.4-0.9,2.3-1.8c12.8-12.7,37-23.6,39.4,6c3.1,37.4-19.4,80.1-44.4,106.5c-0.4,0.4-0.5,1-0.4,1.5
|
||||
l0.6,2.3l-79.5-0.1c-0.3,0-0.4-0.1-0.5-0.4c0-0.2-0.1-0.3,0-0.5v-28c0-0.7-0.3-1-1-1h-33.5c-0.9,0-1.3,0.4-1.3,1.3l0.1,28.7l-7.8,0
|
||||
l0-54.3c0-0.7-0.4-1.1-1.1-1.1l-58.1,0.3l5.8-12.8c0.3-0.7,0.1-1.2-0.6-1.5l-4.8-1.6l2.6-55.4c1.1,0.1,2.1,0.6,3,1.7l2.1,16.5
|
||||
c0.2,1.6,0.9,1.8,2.1,0.8c9-7.5,19.7-8.4,28.7-0.3c10.4,9.2,15.5,29.7,18.9,42.7c0.1,0.4,0.5,0.6,0.8,0.5c0.2,0,0.3-0.2,0.4-0.3
|
||||
c0.2-0.4,0.4-0.9,0.5-1.6c3-19.4,7.9-38.7,14.9-57.9l-1.9-13.9c13.1-4.7,20.9-14.3,23.7-28.9l20.7-42.1l9.8-18.4
|
||||
c4.1-3.8,8.1-7.9,11.9-12.3C872.4,564.8,885.1,557.3,905.6,561.4z" class="st68"></path>
|
||||
<path d="M492.2,617.8c-15.3-2.2-25.9-16.7-23.6-32.3c2.2-15.7,16.4-26.6,31.7-24.5c15.3,2.2,25.9,16.7,23.6,32.3
|
||||
C521.7,609.1,507.5,620,492.2,617.8z M505.9,577.8c0-0.5-0.4-0.9-0.9-1c-0.3,0-0.5,0.1-0.7,0.3l-15.8,15.1c-0.4,0.4-0.4,0.9,0,1.3
|
||||
c0.2,0.2,0.4,0.3,0.6,0.3l15.3,0.1c0.5,0,0.9-0.4,0.9-0.9L505.9,577.8z" class="st65"></path>
|
||||
<path d="M505.9,577.8l-0.5,15.2c0,0.5-0.4,0.9-0.9,0.9l-15.3-0.1c-0.5,0-0.9-0.4-0.9-0.9c0-0.2,0.1-0.5,0.3-0.6
|
||||
l15.8-15.1c0.4-0.4,0.9-0.3,1.3,0C505.8,577.3,505.9,577.6,505.9,577.8z" class="st57"></path>
|
||||
<path d="M543.6,578h127.6c0.9,0,1.7,0.8,1.7,1.7v0.6c0,0.9-0.8,1.7-1.7,1.7H543.6c-0.9,0-1.7-0.8-1.7-1.7v-0.6
|
||||
C541.9,578.8,542.7,578,543.6,578z" class="st59"></path>
|
||||
<path d="M678.1,578.2h38.6c1,0,1.8,0.8,1.8,1.8v0.1c0,1-0.8,1.8-1.8,1.8h-38.6c-1,0-1.8-0.8-1.8-1.8V580
|
||||
C676.3,579,677.1,578.2,678.1,578.2z" class="st65"></path>
|
||||
<path d="M725,578.1l33.6-0.1c1.1,0,1.9,0.9,1.9,1.9l0,0.1c0,1.1-0.9,1.9-1.9,1.9L725,582c-1.1,0-1.9-0.9-1.9-1.9
|
||||
l0-0.1C723.1,579,723.9,578.1,725,578.1z" class="st65"></path>
|
||||
<path d="M768.6,581.7v-3.3c11.2-0.5,22.5,0.2,33.6-0.3c1.6-0.1,2.8,0.3,3.7,1.2c0.6,0.6,0.5,1.6-0.1,2.1
|
||||
c-0.3,0.3-0.6,0.4-1,0.4L768.6,581.7z" class="st65"></path>
|
||||
<path d="M692.2,599.3l-18.6,0.8c-0.7,0-1.2,0.5-1.3,1.2c-0.1,1,0.5,1.6,1.9,1.7c7.7,0.6,15,0.9,21.7,1.2
|
||||
c5.6,7.6,9.3,15.7,11.2,24.4h-63.4c2.9-14,17.1-41.7,36.3-37.4C685,592.2,689.1,595,692.2,599.3z" class="st67"></path>
|
||||
<path d="M692.2,599.3l12.7,0.8c1,0.1,1.7,0.9,1.6,1.8c0,0.1,0,0.2,0,0.3c-0.2,0.8-0.7,1.3-1.7,1.4
|
||||
c-2.5,0.3-5.4,0.4-8.9,0.5c-6.8-0.2-14-0.6-21.7-1.2c-1.4-0.1-2-0.7-1.9-1.7c0.1-0.7,0.6-1.2,1.3-1.2L692.2,599.3z" class="st65"></path>
|
||||
<path d="M607.7,600.2l32.5-0.2c1,0,1.8,0.8,1.8,1.8l0,0.1c0,1-0.8,1.8-1.8,1.8l-32.5,0.2c-1,0-1.8-0.8-1.8-1.8l0-0.1
|
||||
C605.9,601,606.7,600.2,607.7,600.2z" class="st65"></path>
|
||||
<path d="M721.4,600.1l28.6-0.1c1.1,0,1.9,0.8,1.9,1.9l0,0.1c0,1.1-0.8,1.9-1.9,1.9l-28.6,0.1c-1.1,0-1.9-0.8-1.9-1.9
|
||||
l0-0.1C719.5,600.9,720.4,600.1,721.4,600.1z" class="st65"></path>
|
||||
<path d="M773.6,600.2l31-0.3c1,0,1.7,0.8,1.8,1.7l0,0.1c0,1-0.8,1.7-1.7,1.8l-31,0.3c-1,0-1.7-0.8-1.8-1.7l0-0.1
|
||||
C771.9,601,772.6,600.2,773.6,600.2z" class="st65"></path>
|
||||
<path d="M543.4,600.6l33.1,0.1c0.7,0,1.3,0.6,1.3,1.3l0,0.1c0,0.7-0.6,1.3-1.3,1.3l-33.1-0.1c-0.7,0-1.3-0.6-1.3-1.3
|
||||
l0-0.1C542,601.2,542.6,600.6,543.4,600.6z" class="st69"></path>
|
||||
<path d="M257.8,658.4c0.7,1,0.9,2.1,0.7,3.4c-0.1,0.3,0.2,0.7,0.5,0.7c0.3,0.1,0.6-0.1,0.7-0.4l7.3-18
|
||||
c0.2-0.6,0.7-0.9,1.3-1l3.5-0.2l-2,41.9c-16-1.8-32.2-2.1-48.4-0.9c-0.8,0.1-1.5-0.5-1.6-1.4c0,0,0-0.1,0-0.1
|
||||
c0.2-15.3,1.1-30.6,2.9-45.7c1.1-9.8-16.8-25.5-23.5-32.2c-0.4-0.4-0.4-0.8-0.2-1.3l0.3-0.5c0.3-0.5,0.7-0.6,1.1-0.2
|
||||
c20.6,16.9,39.3,35.5,56.2,56.1c0.2,0.2,0.4,0.2,0.7,0.1C257.5,658.8,257.7,658.6,257.8,658.4z" class="st67"></path>
|
||||
<path d="M345.2,685.1c-8.5-1.4-16.6-1.7-24.3-0.8l15.4-75.5c0-0.3,0.3-0.5,0.6-0.5c0.3,0,0.5,0.3,0.5,0.6L345.2,685.1
|
||||
z" class="st67"></path>
|
||||
<path d="M817.4,652.3c-2.7,14.6-10.6,24.2-23.7,28.9c-4.5,0.3-7,1-7.3,2.1c-8.8-2-14.3-3.7-16.6-5.1
|
||||
c-22.5-14-24-46.7,0.7-59.1C795.5,608.7,817.3,626,817.4,652.3z M782,655.2l8.6-2.3c0.2-0.1,0.3-0.3,0.3-0.5l-1.4-5.2
|
||||
c-0.7-2.6-3.3-4.1-5.8-3.4l-0.3,0.1c-2.5,0.7-4,3.3-3.3,5.9l1.4,5.2C781.5,655.1,781.8,655.2,782,655.2
|
||||
C782,655.2,782,655.2,782,655.2z" class="st59"></path>
|
||||
<path d="M184.5,653l3.2,7.6c-0.7,8.2,0,17.1,2.1,26.6c2,8.8,11.7,7.7,18.4,6.1c1.9-0.4,3.9,0.3,5,2l6.4,9.5
|
||||
c0.3,0.4,0.9,0.6,1.4,0.3c0.2-0.1,0.3-0.3,0.4-0.5c1.2-3.4-1.9-6.6-1-9.5c0.2-0.8,0.7-1.2,1.5-1.1l48.1,0.3
|
||||
c-1,21.4-2.1,43.2-3.1,65.4c-0.6,13.3-0.5,39.1-2.9,58.7c-0.1,0.7-0.5,1.1-1.3,1.1l-5.9,0l-0.7-54.6c0-1.3-0.6-1.9-1.9-1.8
|
||||
l-22.5,0.4c-0.8,0-1.2,0.4-1.2,1.2c-0.1,17-0.1,33.9-0.1,50.8c0,2.4-0.6,3.7-1.9,4.1l-1.5,0c-0.1-0.3-0.4-0.5-0.9-0.6
|
||||
c-0.3-0.1-0.4-0.2-0.4-0.5l-0.8-83.5c0-0.7-0.4-1-1.1-1l-38.8,0.2c-0.7,0-1,0.3-1,1l0,84.4l-3.9,0.2l-0.1-50c0-0.9-0.7-1.7-1.6-1.7
|
||||
h-29.9c-0.7,0-1,0.3-1,1l0.1,47.5c-1.3,0.1-2.1,0.3-3.1-0.7c-34.9-33.7-81.4-128-41.1-171.2c23.2-24.8,55-11.8,77.6,6.9
|
||||
C182.2,652.4,183.3,652.9,184.5,653z" class="st67"></path>
|
||||
<path d="M713,673.5c-5.7,0.8-11.4,1.7-17,2.8c-9.3,1.8-16.9,8.1-24.5,13.3c-0.5,0.4-1.2,0.6-1.9,0.5
|
||||
c-12-0.1-24-0.4-36-0.6c-7.8-0.2-14.5,2.6-21.9,4.6c-0.5,0.1-1-0.2-1.1-0.7l-1.7-6c-0.3-1-1.3-1.6-2.3-1.3c-0.1,0-0.1,0-0.2,0.1
|
||||
c-8.4,3.3-16.8,6.7-25.3,10.1c-9.3,3.8-26.2,0.1-36-1.7c-4.7-0.9-10.8-12.1-13.8-16.1c-0.6-0.8-1.2-0.8-1.8,0l-13.7,16.8
|
||||
c-0.4,0.5-1,0.7-1.6,0.5c-16.2-5.4-32.4-10.7-48.4-16c-6-1.9-9.8,0.1-15.2,2.4l1.5-41c0-0.8,0.5-1.3,1.3-1.3h259.6
|
||||
c0.5,0,0.9,0.4,0.9,0.9c0,0,0,0,0,0L713,673.5z M492.5,668c0.4-5.1-9.1-12.8-12.9-15.6c-1-0.8-2.5-0.6-3.3,0.4
|
||||
c-3.2,4-6.9,7.2-11.2,9.7c-1.8,1-2.4,3.3-1.3,5.1c0.7,1.1,1.8,1.8,3.1,1.8l23.7,0.3C491.6,669.8,492.4,669,492.5,668z M593.3,663.4
|
||||
c0-0.3-0.2-0.5-0.5-0.5c0,0,0,0,0,0l-82.1-0.3c-0.3,0-0.5,0.2-0.5,0.5l0,0l0,0.8c0,0.3,0.2,0.5,0.5,0.5h0l82.1,0.3
|
||||
c0.3,0,0.5-0.2,0.5-0.5c0,0,0,0,0,0L593.3,663.4z M692.4,663.7c0-0.6-0.5-1.1-1.1-1.1l-77.6-0.1c-0.6,0-1.1,0.5-1.1,1.1l0,0.1
|
||||
c0,0.6,0.5,1.1,1.1,1.1c0,0,0,0,0,0l77.6,0.1C691.9,664.8,692.4,664.3,692.4,663.7C692.4,663.7,692.4,663.7,692.4,663.7
|
||||
L692.4,663.7z" class="st57"></path>
|
||||
<path d="M782,655.2c-0.2,0.1-0.4-0.1-0.5-0.3c0,0,0,0,0,0l-1.4-5.2c-0.7-2.6,0.8-5.2,3.3-5.9l0.3-0.1
|
||||
c2.5-0.7,5.1,0.9,5.8,3.4l1.4,5.2c0.1,0.2-0.1,0.4-0.3,0.5L782,655.2z M785.4,652.8c1.8-0.2,3.1-1.9,2.9-3.9
|
||||
c-0.2-2-1.8-3.4-3.6-3.3c-1.8,0.2-3.1,1.9-2.9,3.9C782,651.5,783.6,653,785.4,652.8z" class="st64"></path>
|
||||
<path d="M401.9,645l3.4,0c0.7,0,1.2,0.3,1.5,0.9c6.9,11.8,12.7,24.3,17.3,37.5l-25-0.1L401.9,645z" class="st67"></path>
|
||||
|
||||
<ellipse ry="3.6" rx="3.2" cy="649.2" cx="785.1" class="st59" transform="matrix(0.9959 -9.063253e-02 9.063253e-02 0.9959 -55.6112 73.8258)"></ellipse>
|
||||
<path d="M479.5,652.4c3.8,2.8,13.3,10.6,12.9,15.6c-0.1,1-0.9,1.7-1.9,1.7l-23.7-0.3c-2.1,0-3.7-1.7-3.6-3.8
|
||||
c0-1.3,0.7-2.5,1.8-3.1c4.3-2.5,8-5.7,11.2-9.7C477,651.9,478.5,651.7,479.5,652.4z M483.3,664c0.4,0,0.7-0.3,0.7-0.6
|
||||
c0-0.2-0.1-0.3-0.2-0.4l-4.1-5c-0.2-0.3-0.6-0.3-0.9-0.1c0,0,0,0,0,0l-6.2,5c-0.3,0.2-0.3,0.6-0.1,0.9c0.1,0.2,0.3,0.3,0.5,0.3
|
||||
H483.3z" class="st65"></path>
|
||||
<path d="M483.3,664H473c-0.4,0-0.7-0.3-0.7-0.6c0-0.2,0.1-0.4,0.3-0.5l6.2-5c0.3-0.2,0.7-0.2,0.9,0.1c0,0,0,0,0,0
|
||||
l4.1,5c0.2,0.3,0.2,0.7-0.1,0.9C483.6,663.9,483.4,664,483.3,664z" class="st64"></path>
|
||||
<path d="M510.7,662.6l82.1,0.3c0.3,0,0.5,0.2,0.5,0.5l0,0.8c0,0.3-0.2,0.5-0.5,0.5l-82.1-0.3c-0.3,0-0.5-0.2-0.5-0.5
|
||||
l0-0.8C510.2,662.8,510.4,662.6,510.7,662.6z" class="st69"></path>
|
||||
<path d="M613.7,662.5l77.6,0.1c0.6,0,1.1,0.5,1.1,1.1l0,0.1c0,0.6-0.5,1.1-1.1,1.1l-77.6-0.1c-0.6,0-1.1-0.5-1.1-1.1
|
||||
l0-0.1C612.6,662.9,613.1,662.5,613.7,662.5z" class="st69"></path>
|
||||
<path d="M713,673.5l-1.8,73.2c0,0.7,0.3,1.1,1.1,1.2l9.3,0.6l4.8,1.6c0.8,0.3,1,0.8,0.6,1.5l-5.8,12.8l-12.5,19
|
||||
c-0.3,0.4-0.6,0.7-1,1l-6.4,4.6l1-37.3c0-0.6-0.3-0.9-0.9-0.8l-7.6,1.7c0-0.6-0.2-1.1-0.6-1.5c-0.3-0.3-0.7-0.4-1.3-0.5
|
||||
c-15.2-0.6-30.3-0.8-45.5-0.6c-0.9,0-1.6,0.2-2,0.6c-0.7,0.6-0.9,1.4-0.5,2.4c0.3,0.6,0.9,1.1,1.6,1.1l42.1,0.1l-9.8,27.1
|
||||
c-0.2,0.5-0.8,0.8-1.3,0.6c-0.1,0-0.2-0.1-0.3-0.2l-9.4-8.9c-0.5-0.4-1.2-0.4-1.7,0.1c-0.1,0.1-0.2,0.3-0.3,0.4
|
||||
c-3.8,11.8-9,23.5-15.6,35.3l-13.3,11l-26.1,0.3c-2.1,0-2.8-1-2.2-2.9l2.2-7c0.2-0.8-0.2-1.6-1-1.8c-0.1,0-0.3-0.1-0.4-0.1
|
||||
l-163.2,0c-0.3,0-0.5-0.2-0.5-0.5c0,0,0,0,0,0c1-12.1,1.3-24.2,0.9-36.5c-0.2-7.2,1.5-16.1,1.5-24c0.1-16.1,2.6-32,2.4-48.1
|
||||
c-0.1-5.6,0.2-11.2,0.7-16.6c5.4-2.3,9.2-4.4,15.2-2.4c16,5.3,32.2,10.6,48.4,16c0.6,0.2,1.2,0,1.6-0.5l13.7-16.8
|
||||
c0.6-0.7,1.2-0.7,1.8,0c3,4,9.1,15.2,13.8,16.1c9.8,1.8,26.7,5.4,36,1.7c8.5-3.4,16.9-6.8,25.3-10.1c1-0.4,2.1,0.1,2.4,1
|
||||
c0,0.1,0,0.1,0.1,0.2l1.7,6c0.1,0.5,0.6,0.8,1.1,0.7c7.5-2.1,14.1-4.8,21.9-4.6c12,0.3,24,0.5,36,0.6c0.7,0,1.3-0.2,1.9-0.5
|
||||
c7.7-5.2,15.3-11.5,24.5-13.3C701.6,675.2,707.3,674.3,713,673.5z M501.5,698.1c0-0.3-0.2-0.5-0.5-0.5l0,0h-0.1
|
||||
c-0.3,0-0.5,0.2-0.5,0.5l0,0v100.2c0,0.3,0.2,0.5,0.5,0.5l0,0h0.1c0.3,0,0.5-0.2,0.5-0.5l0,0V698.1z M575.6,701.6
|
||||
c0-0.3-0.2-0.5-0.5-0.5l0,0c-0.3,0-0.5,0.2-0.5,0.5l0,0l-0.2,96.9c0,0.3,0.2,0.5,0.5,0.5l0,0l0,0c0.3,0,0.5-0.2,0.5-0.5l0,0
|
||||
L575.6,701.6z M636,705.9c0-0.8-0.7-1.5-1.5-1.5c0,0,0,0,0,0l-48.7,0.1c-0.8,0-1.5,0.7-1.5,1.5l0,0.6c0,0.8,0.7,1.5,1.5,1.5
|
||||
c0,0,0,0,0,0l48.7-0.1c0.8,0,1.5-0.7,1.5-1.5L636,705.9z M702.5,705.9c0-1-0.8-1.7-1.7-1.7h0l-54.9,0.3c-1,0-1.7,0.8-1.7,1.7v0
|
||||
l0,0.2c0,1,0.8,1.7,1.7,1.7l0,0l54.9-0.3c1,0,1.7-0.8,1.7-1.7v0L702.5,705.9z M473.9,706.7c0-0.6-0.5-1.1-1.1-1.1l-19.5,0.2
|
||||
c-0.6,0-1.1,0.5-1.1,1.1c0,0,0,0,0,0l0,0.1c0,0.6,0.5,1.1,1.1,1.1l19.5-0.2c0.6,0,1.1-0.5,1.1-1.1v0L473.9,706.7z M480.3,708
|
||||
l0.9-0.4c0.5-0.2,0.6-0.8,0.4-1.3c-0.2-0.4-0.6-0.6-1.1-0.5l-1.9,0.6c-0.4,0.1-0.4,0.3-0.1,0.6l0.8,0.8
|
||||
C479.5,708.1,479.9,708.2,480.3,708z M536.7,707.5c0-0.8-5.4-1.5-12-1.5c-6.6-0.1-12,0.5-12,1.3c0,0,0,0,0,0c0,0.8,5.4,1.5,12,1.5
|
||||
C531.3,708.9,536.7,708.3,536.7,707.5C536.7,707.5,536.7,707.5,536.7,707.5z M538.5,707.3c0.8,0.6,1.7,0.9,2.6,0.7
|
||||
c0.4-0.1,0.6-0.5,0.5-0.9c-0.1-0.3-0.4-0.6-0.7-0.6l-2.3,0.1c-0.2,0-0.4,0.2-0.4,0.4C538.4,707.1,538.4,707.2,538.5,707.3z
|
||||
M636,713.9c0-1.1-0.9-1.9-1.9-1.9L586,712c-1.1,0-1.9,0.9-1.9,1.9c0,0,0,0,0,0l0,0.1c0,1.1,0.9,1.9,1.9,1.9l48.1-0.1
|
||||
C635.2,715.9,636,715,636,713.9L636,713.9z M694,713.8c0-1-0.8-1.8-1.8-1.8c0,0,0,0,0,0h-46.4c-1,0-1.8,0.8-1.8,1.8v0.4
|
||||
c0,1,0.8,1.8,1.8,1.8h46.4c1,0,1.8-0.8,1.8-1.8c0,0,0,0,0,0V713.8z M471.8,715.8c0-1-0.8-1.8-1.8-1.8l0,0l-16,0.1
|
||||
c-1,0-1.8,0.8-1.8,1.8c0,0,0,0,0,0l0,0.1c0,1,0.8,1.8,1.8,1.8l0,0l16-0.1c1,0,1.8-0.8,1.8-1.8v0L471.8,715.8z M533.9,716.7
|
||||
c0-0.7-0.5-1.2-1.2-1.2c0,0,0,0,0,0l-19,0c-0.7,0-1.2,0.5-1.2,1.2v0.1c0,0.7,0.5,1.2,1.2,1.2c0,0,0,0,0,0l19,0
|
||||
C533.3,718,533.9,717.4,533.9,716.7L533.9,716.7z M666.3,721.1c0-0.8-0.7-1.5-1.5-1.5l0,0h-19.2c-0.8,0-1.5,0.7-1.5,1.5v0.2
|
||||
c0,0.8,0.7,1.5,1.5,1.5l0,0h19.2c0.8,0,1.5-0.7,1.5-1.5v0V721.1z M534,725.9c0-1-0.8-1.8-1.8-1.8l-18.2,0c-1,0-1.8,0.8-1.8,1.8
|
||||
l0,0.2c0,1,0.8,1.8,1.8,1.8l18.2,0c1,0,1.8-0.8,1.8-1.8L534,725.9z M532.7,735c0-0.4-4.2-0.7-9.3-0.7c0,0,0,0,0,0
|
||||
c-5.1,0-9.3,0.3-9.3,0.6c0,0.4,4.2,0.7,9.3,0.7c0,0,0,0,0,0C528.5,735.6,532.7,735.4,532.7,735z M486,743.9c0-0.8-0.7-1.5-1.5-1.4
|
||||
l-31.3,0.4c-0.8,0-1.5,0.7-1.4,1.5l0,0l0,0.4c0,0.8,0.7,1.5,1.5,1.4l31.3-0.4c0.8,0,1.5-0.7,1.4-1.5L486,743.9z M533.9,744.3
|
||||
c0-0.9-0.7-1.6-1.6-1.6c0,0,0,0,0,0l-18.6-0.2c-0.9,0-1.6,0.7-1.6,1.6l0,0.2c0,0.9,0.7,1.6,1.6,1.6c0,0,0,0,0,0l18.6,0.2
|
||||
c0.9,0,1.6-0.7,1.6-1.6l0,0L533.9,744.3z M635.9,744.6c0-0.9-0.7-1.7-1.7-1.7l-48,0.2c-0.9,0-1.7,0.7-1.7,1.7l0,0l0,0.1
|
||||
c0,0.9,0.7,1.7,1.7,1.7l48-0.2c0.9,0,1.7-0.7,1.7-1.7l0,0L635.9,744.6z M702.1,744.4c0-0.8-0.6-1.4-1.4-1.4c0,0,0,0,0,0l-55.1,0.2
|
||||
c-0.8,0-1.4,0.6-1.4,1.4l0,0l0,0.6c0,0.8,0.6,1.4,1.4,1.4c0,0,0,0,0,0l55.1-0.2c0.8,0,1.4-0.6,1.4-1.4l0,0L702.1,744.4z M636,752
|
||||
c0-1.1-0.9-1.9-1.9-1.9h0l-47.4-0.1c-1.1,0-1.9,0.9-1.9,1.9l0,0v0c0,1.1,0.9,1.9,1.9,1.9l0,0L634,754C635.1,754,636,753.1,636,752
|
||||
L636,752L636,752z M679.8,756.9c0-0.3-1.1-0.5-2.5-0.5c-1.4,0-2.5,0.3-2.5,0.6v0c0,0.3,1.1,0.5,2.5,0.5
|
||||
C678.7,757.5,679.8,757.3,679.8,756.9C679.8,756.9,679.8,756.9,679.8,756.9z M636.2,759.7c0-0.9-0.8-1.7-1.7-1.7l-48.5,0.1
|
||||
c-0.9,0-1.7,0.8-1.7,1.7l0,0l0,0.1c0,0.9,0.8,1.7,1.7,1.7l0,0l48.5-0.1c0.9,0,1.7-0.8,1.7-1.7l0,0L636.2,759.7z M669.9,759.2
|
||||
c0-0.8-0.6-1.4-1.4-1.3l-23.1,0.3c-0.8,0-1.4,0.6-1.3,1.4l0,0.9c0,0.8,0.6,1.4,1.4,1.3l23.1-0.3c0.8,0,1.4-0.6,1.3-1.4L669.9,759.2
|
||||
z M459,763.6c2.2,0.1,4.4,0,6.5-0.2c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4l0,0c-2.2-0.3-4.4-0.4-6.7-0.5
|
||||
c-0.8,0-1.4,0.3-1.3,0.7C457.6,763.3,458.2,763.6,459,763.6z M522.7,762.9c0-0.4-1.8-0.6-4.1-0.5c0,0,0,0,0,0
|
||||
c-2.3,0.1-4.1,0.4-4.1,0.7c0,0.4,1.8,0.6,4.1,0.5c0,0,0,0,0,0C520.9,763.6,522.7,763.3,522.7,762.9z M605.8,766.8
|
||||
c0-0.7-0.5-1.3-1.3-1.3l-18.6-0.6c-0.7,0-1.3,0.5-1.3,1.3l0,0.4c0,0.7,0.5,1.3,1.3,1.3l18.6,0.6c0.7,0,1.3-0.5,1.3-1.3L605.8,766.8
|
||||
z M661.5,766.8c0-0.6-0.5-1.1-1.1-1.1c0,0,0,0,0,0l-15-0.3c-0.6,0-1.1,0.5-1.1,1.1l0,0.5c0,0.6,0.5,1.1,1.1,1.1c0,0,0,0,0,0l15,0.3
|
||||
c0.6,0,1.1-0.5,1.1-1.1L661.5,766.8z M452.1,771.8c0.4,0.4,1.1,0.2,1.7-0.4c0.6-0.6,0.7-1.3,0.4-1.7c0,0,0,0,0,0
|
||||
c-0.4-0.4-1.1-0.2-1.7,0.4C451.9,770.7,451.8,771.5,452.1,771.8z M472.6,779.3c0-0.8-0.6-1.4-1.4-1.4c0,0,0,0,0,0l-17.6,0.1
|
||||
c-0.8,0-1.4,0.6-1.4,1.4l0,0.1c0,0.8,0.6,1.4,1.4,1.4c0,0,0,0,0,0l17.6-0.1C472,780.8,472.6,780.2,472.6,779.3L472.6,779.3z
|
||||
M490.5,779.1c0-0.6-3.4-1-7.5-1.1c-4.2,0-7.5,0.4-7.5,0.9c0,0,0,0,0,0c0,0.6,3.4,1,7.5,1.1S490.5,779.6,490.5,779.1
|
||||
C490.5,779.1,490.5,779.1,490.5,779.1z M534.7,779.6c0-1-5.1-1.8-11.5-1.8c0,0,0,0,0,0c-6.3,0-11.5,0.8-11.5,1.8l0,0
|
||||
c0,1,5.1,1.8,11.5,1.8S534.7,780.6,534.7,779.6z M551.4,778.9c0-0.5-3.3-1-7.4-0.9c-4.1,0-7.4,0.4-7.4,1v0c0,0.5,3.3,1,7.4,0.9
|
||||
C548.1,779.8,551.4,779.4,551.4,778.9C551.4,778.9,551.4,778.9,551.4,778.9z M635.6,779.8c0-0.3-0.2-0.5-0.5-0.5l-50.3,1.1
|
||||
c-0.3,0-0.5,0.2-0.5,0.5l0,0l0.1,2.5c0,0.3,0.2,0.5,0.5,0.5l0,0l50.3-1.1c0.3,0,0.5-0.2,0.5-0.5L635.6,779.8z M471.8,788
|
||||
c0-1-0.8-1.9-1.9-1.9l-16.1-0.1c-1,0-1.9,0.8-1.9,1.9l0,0l0,0.1c0,1,0.8,1.9,1.9,1.9l16.1,0.1c1,0,1.9-0.8,1.9-1.9v0L471.8,788z
|
||||
M533.4,788c0-1-0.8-1.9-1.9-1.9l-17.6-0.1c-1,0-1.9,0.8-1.9,1.9l0,0.1c0,1,0.8,1.9,1.9,1.9l17.6,0.1c1,0,1.9-0.8,1.9-1.9v0
|
||||
L533.4,788z M635.3,787.7c0-0.8-0.6-1.4-1.4-1.4l-47.9,0.4c-0.8,0-1.4,0.6-1.4,1.4c0,0,0,0,0,0l0,0.7c0,0.8,0.6,1.4,1.4,1.4
|
||||
l47.9-0.4c0.8,0,1.4-0.6,1.4-1.4c0,0,0,0,0,0L635.3,787.7z" class="st59"></path>
|
||||
<path d="M793.8,681.2l1.9,13.9l-68.4-0.4c-0.9-1-1.9-1.6-3-1.7l0-9.1l62.2-0.5C786.8,682.2,789.2,681.5,793.8,681.2z" class="st60"></path>
|
||||
<path d="M345.2,685.1l0.8,7.8c-9.8,2.4-18.7,2.4-26.9,0l1.8-8.6C328.6,683.4,336.7,683.7,345.2,685.1z" class="st66"></path>
|
||||
<path d="M399.1,683.3l25,0.1l15.7,0.5l0,11.6l-12.1-0.5l-29.4-1.6L399.1,683.3z" class="st60"></path>
|
||||
<path d="M319.1,692.9c8.1,2.4,17.1,2.4,26.9,0l11.8,124.6c0.1,1-0.6,1.9-1.7,2c-0.1,0-0.1,0-0.2,0h-36.9
|
||||
c-0.6,0-1.1-0.2-1.6-0.5c-6.1-4.5-13-7.3-20.5-8.5c-0.8-0.1-1.3-0.9-1.2-1.6c0,0,0,0,0-0.1L319.1,692.9z" class="st67"></path>
|
||||
<path d="M427.7,695c4.4,10.3,7.2,21,8.2,32c0.1,0.7,0.4,1,1.1,1h1l-3.9,90.4c0,0.7-0.4,1.1-1.2,1.1h-19
|
||||
c-0.7,0-1.4-0.2-2-0.7c-6.3-4.7-13.5-7.5-21.4-8.4c-0.7-0.1-1.2-0.7-1.2-1.4l8.9-115.6L427.7,695z" class="st67"></path>
|
||||
<path d="M727.2,694.6l68.4,0.4c-7,19.2-11.9,38.5-14.9,57.9c-0.1,0.7-0.3,1.2-0.5,1.6c-0.2,0.3-0.6,0.4-0.9,0.2
|
||||
c-0.2-0.1-0.3-0.3-0.3-0.4c-3.4-13-8.5-33.5-18.9-42.7c-9-8.1-19.7-7.2-28.7,0.3c-1.2,1-1.9,0.7-2.1-0.8L727.2,694.6z" class="st57"></path>
|
||||
<path d="M427.7,695l12.1,0.5L438,728h-1c-0.7,0-1-0.3-1.1-1C434.9,716,432.2,705.4,427.7,695z" class="st57"></path>
|
||||
<path d="M500.9,697.6L500.9,697.6c0.4,0,0.6,0.2,0.6,0.5v100.2c0,0.3-0.2,0.5-0.5,0.5h-0.1c-0.3,0-0.5-0.2-0.5-0.5
|
||||
V698.1C500.4,697.8,500.6,697.6,500.9,697.6z" class="st69"></path>
|
||||
<path d="M575.1,701.1L575.1,701.1c0.3,0,0.5,0.2,0.5,0.5l-0.2,96.9c0,0.3-0.2,0.5-0.5,0.5l0,0c-0.3,0-0.5-0.2-0.5-0.5
|
||||
l0.2-96.9C574.6,701.3,574.8,701.1,575.1,701.1z" class="st69"></path>
|
||||
<path d="M585.8,704.5l48.7-0.1c0.8,0,1.5,0.7,1.5,1.5l0,0.6c0,0.8-0.7,1.5-1.5,1.5l-48.7,0.1c-0.8,0-1.5-0.7-1.5-1.5
|
||||
l0-0.6C584.3,705.2,584.9,704.5,585.8,704.5z" class="st57"></path>
|
||||
<path d="M645.8,704.5l54.9-0.3c1,0,1.7,0.8,1.7,1.7l0,0.2c0,1-0.8,1.7-1.7,1.7l-54.9,0.3c-1,0-1.7-0.8-1.7-1.7l0-0.2
|
||||
C644.1,705.3,644.9,704.5,645.8,704.5z" class="st57"></path>
|
||||
<path d="M453.2,705.7l19.5-0.2c0.6,0,1.1,0.5,1.1,1.1l0,0.1c0,0.6-0.5,1.1-1.1,1.1l-19.5,0.2c-0.6,0-1.1-0.5-1.1-1.1
|
||||
l0-0.1C452.1,706.3,452.6,705.8,453.2,705.7z" class="st57"></path>
|
||||
<path d="M479.2,707.8l-0.8-0.8c-0.3-0.3-0.2-0.5,0.1-0.6l1.9-0.6c0.5-0.1,1,0.2,1.2,0.7c0.1,0.4-0.1,0.9-0.5,1.1
|
||||
l-0.9,0.4C479.9,708.2,479.5,708.1,479.2,707.8z" class="st67"></path>
|
||||
|
||||
<ellipse ry="12" rx="1.4" cy="707.4" cx="524.7" class="st57" transform="matrix(8.726535e-03 -1 1 8.726535e-03 -187.2317 1225.8472)"></ellipse>
|
||||
<path d="M538.5,707.3c-0.2-0.1-0.2-0.4-0.1-0.6c0.1-0.1,0.2-0.1,0.3-0.1l2.3-0.1c0.4,0,0.7,0.3,0.7,0.8
|
||||
c0,0.3-0.2,0.6-0.6,0.7C540.2,708.1,539.4,707.9,538.5,707.3z" class="st67"></path>
|
||||
<path d="M586,712l48.1-0.1c1.1,0,1.9,0.9,1.9,1.9l0,0.1c0,1.1-0.9,1.9-1.9,1.9L586,716c-1.1,0-1.9-0.9-1.9-1.9l0-0.1
|
||||
C584.1,712.9,585,712,586,712z" class="st57"></path>
|
||||
<path d="M645.7,712h46.4c1,0,1.8,0.8,1.8,1.8v0.4c0,1-0.8,1.8-1.8,1.8h-46.4c-1,0-1.8-0.8-1.8-1.8v-0.4
|
||||
C643.9,712.8,644.7,712,645.7,712z" class="st57"></path>
|
||||
<path d="M453.9,714.1l16-0.1c1,0,1.8,0.8,1.8,1.8l0,0.1c0,1-0.8,1.8-1.8,1.8l-16,0.1c-1,0-1.8-0.8-1.8-1.8l0-0.1
|
||||
C452.1,714.9,452.9,714.1,453.9,714.1z" class="st57"></path>
|
||||
<path d="M513.7,715.5l19,0c0.7,0,1.2,0.5,1.2,1.2l0,0.1c0,0.7-0.5,1.2-1.2,1.2l-19,0c-0.7,0-1.2-0.5-1.2-1.2l0-0.1
|
||||
C512.5,716.1,513,715.5,513.7,715.5z" class="st57"></path>
|
||||
<path d="M645.6,719.6h19.2c0.8,0,1.5,0.7,1.5,1.5v0.2c0,0.8-0.7,1.5-1.5,1.5h-19.2c-0.8,0-1.5-0.7-1.5-1.5v-0.2
|
||||
C644.1,720.2,644.8,719.6,645.6,719.6z" class="st57"></path>
|
||||
<path d="M514,724l18.2,0c1,0,1.8,0.8,1.8,1.8l0,0.2c0,1-0.8,1.8-1.8,1.8l-18.2,0c-1,0-1.8-0.8-1.8-1.8l0-0.2
|
||||
C512.1,724.8,512.9,724,514,724z" class="st57"></path>
|
||||
<path d="M227,819.5h-43l0-84.4c0-0.7,0.3-1,1-1l38.8-0.2c0.7,0,1,0.3,1.1,1l0.8,83.5c0,0.3,0.1,0.5,0.4,0.5
|
||||
C226.7,819,227,819.2,227,819.5z" class="st58"></path>
|
||||
|
||||
<ellipse ry="9.3" rx="0.6" cy="735" cx="523.3" class="st64" transform="matrix(3.490651e-03 -1 1 3.490651e-03 -213.4623 1255.7512)"></ellipse>
|
||||
<path d="M453.2,742.9l31.3-0.4c0.8,0,1.5,0.6,1.5,1.4l0,0.4c0,0.8-0.6,1.5-1.4,1.5l-31.3,0.4c-0.8,0-1.5-0.6-1.5-1.4
|
||||
l0-0.4C451.7,743.5,452.4,742.9,453.2,742.9z" class="st57"></path>
|
||||
<path d="M513.7,742.5l18.6,0.2c0.9,0,1.6,0.7,1.6,1.6l0,0.2c0,0.9-0.7,1.6-1.6,1.6l-18.6-0.2c-0.9,0-1.6-0.7-1.6-1.6
|
||||
l0-0.2C512.1,743.2,512.9,742.5,513.7,742.5z" class="st57"></path>
|
||||
<path d="M586.3,743.1l48-0.2c0.9,0,1.7,0.7,1.7,1.7l0,0.1c0,0.9-0.7,1.7-1.7,1.7l-48,0.2c-0.9,0-1.7-0.7-1.7-1.7
|
||||
l0-0.1C584.7,743.9,585.4,743.1,586.3,743.1z" class="st57"></path>
|
||||
<path d="M645.5,743.2l55.1-0.2c0.8,0,1.4,0.6,1.4,1.4l0,0.6c0,0.8-0.6,1.4-1.4,1.4l-55.1,0.2c-0.8,0-1.4-0.6-1.4-1.4
|
||||
l0-0.6C644.1,743.8,644.8,743.2,645.5,743.2z" class="st57"></path>
|
||||
<path d="M586.6,750l47.4,0.1c1.1,0,1.9,0.9,1.9,1.9l0,0c0,1.1-0.9,1.9-1.9,1.9l-47.4-0.1c-1.1,0-1.9-0.9-1.9-1.9l0,0
|
||||
C584.6,750.8,585.5,750,586.6,750z" class="st57"></path>
|
||||
<path d="M694,752.6c-1.4,1.2-3.5,1.7-6.2,1.6l-42.1-0.1c-0.7,0-1.3-0.4-1.6-1.1c-0.4-1-0.2-1.8,0.5-2.4
|
||||
c0.4-0.4,1.1-0.6,2-0.6c15.2-0.2,30.3,0,45.5,0.6c0.6,0,1,0.2,1.3,0.5C693.8,751.5,694,752,694,752.6z" class="st57"></path>
|
||||
<path d="M701.5,789c-6.9,5.8-11.7,10.7-20.5,13.1c-9.9,2.7-20.4,4.9-31.5,6.4c6.5-11.7,11.7-23.5,15.6-35.3
|
||||
c0.2-0.6,0.9-0.9,1.5-0.7c0.2,0.1,0.3,0.1,0.4,0.3l9.4,8.9c0.4,0.4,1.1,0.4,1.4,0c0.1-0.1,0.2-0.2,0.2-0.3l9.8-27.1
|
||||
c2.7,0.1,4.8-0.4,6.2-1.6l7.6-1.7c0.6-0.1,0.9,0.1,0.9,0.8L701.5,789z" class="st62"></path>
|
||||
|
||||
<ellipse ry="0.6" rx="2.5" cy="757" cx="677.3" class="st65" transform="matrix(0.9997 -2.268733e-02 2.268733e-02 0.9997 -17 15.5601)"></ellipse>
|
||||
<path d="M585.9,758.1l48.5-0.1c0.9,0,1.7,0.8,1.7,1.7l0,0.1c0,0.9-0.8,1.7-1.7,1.7l-48.5,0.1c-0.9,0-1.7-0.8-1.7-1.7
|
||||
l0-0.1C584.2,758.8,585,758.1,585.9,758.1z" class="st57"></path>
|
||||
<path d="M645.4,758.1l23.1-0.3c0.8,0,1.4,0.6,1.4,1.3l0,0.9c0,0.8-0.6,1.4-1.3,1.4l-23.1,0.3c-0.8,0-1.4-0.6-1.4-1.3
|
||||
l0-0.9C644,758.8,644.6,758.2,645.4,758.1z" class="st57"></path>
|
||||
<path d="M459,763.6c-0.8,0-1.4-0.4-1.4-0.8c0-0.4,0.6-0.7,1.3-0.7c2.2,0.1,4.4,0.2,6.7,0.5c0.2,0,0.4,0.2,0.4,0.4
|
||||
c0,0.2-0.2,0.4-0.4,0.4l0,0C463.4,763.6,461.2,763.7,459,763.6z" class="st60"></path>
|
||||
|
||||
<ellipse ry="0.6" rx="4.1" cy="763" cx="518.6" class="st58" transform="matrix(0.9997 -2.268733e-02 2.268733e-02 0.9997 -17.1779 11.962)"></ellipse>
|
||||
<path d="M256.8,819.4h-28.2c1.3-0.3,1.9-1.7,1.9-4.1c0-16.9,0-33.8,0.1-50.8c0-0.8,0.4-1.2,1.2-1.2l22.5-0.4
|
||||
c1.2,0,1.9,0.6,1.9,1.8L256.8,819.4z" class="st62"></path>
|
||||
<path d="M780.5,819.5l-144.3,0l13.3-11c11.1-1.6,21.5-3.7,31.5-6.4c8.8-2.4,13.6-7.2,20.5-13.1l6.4-4.6
|
||||
c0.4-0.3,0.7-0.6,1-1l12.5-19l58.1-0.3c0.7,0,1.1,0.4,1.1,1.1L780.5,819.5z" class="st58"></path>
|
||||
<path d="M585.9,764.9l18.6,0.6c0.7,0,1.3,0.6,1.3,1.3l0,0.4c0,0.7-0.6,1.3-1.3,1.3l-18.6-0.6c-0.7,0-1.3-0.6-1.3-1.3
|
||||
l0-0.4C584.6,765.5,585.2,764.9,585.9,764.9z" class="st57"></path>
|
||||
<path d="M645.4,765.3l15,0.3c0.6,0,1.1,0.5,1.1,1.1l0,0.5c0,0.6-0.5,1.1-1.1,1.1l-15-0.3c-0.6,0-1.1-0.5-1.1-1.1
|
||||
l0-0.5C644.3,765.8,644.8,765.3,645.4,765.3z" class="st57"></path>
|
||||
<path d="M180.1,819.7l-32.6-0.2l0.1-3l-0.1-47.5c0-0.7,0.3-1,1-1h29.9c0.9,0,1.6,0.7,1.6,1.7L180.1,819.7z" class="st65"></path>
|
||||
|
||||
<ellipse ry="0.9" rx="1.5" cy="770.8" cx="453.2" class="st69" transform="matrix(0.7133 -0.7009 0.7009 0.7133 -410.3257 538.6703)"></ellipse>
|
||||
<path d="M453.5,778l17.6-0.1c0.8,0,1.4,0.6,1.4,1.4l0,0.1c0,0.8-0.6,1.4-1.4,1.4l-17.6,0.1c-0.8,0-1.4-0.6-1.4-1.4
|
||||
l0-0.1C452.1,778.6,452.7,778,453.5,778z" class="st57"></path>
|
||||
<ellipse ry="7.5" rx="1" cy="779" cx="483" class="st64" transform="matrix(6.981261e-03 -1 1 6.981261e-03 -299.353 1256.5498)"></ellipse>
|
||||
<ellipse ry="1.8" rx="11.5" cy="779.6" cx="523.2" class="st57"></ellipse>
|
||||
<ellipse ry="1" rx="7.4" cy="778.9" cx="544" class="st64" transform="matrix(1 -1.745326e-03 1.745326e-03 1 -1.3586 0.9506)"></ellipse>
|
||||
<path d="M584.8,780.4l50.3-1.1c0.3,0,0.5,0.2,0.5,0.5l0.1,2.5c0,0.3-0.2,0.5-0.5,0.5l-50.3,1.1
|
||||
c-0.3,0-0.5-0.2-0.5-0.5l-0.1-2.5C584.3,780.6,584.5,780.4,584.8,780.4z" class="st57"></path>
|
||||
<path d="M453.9,786l16.1,0.1c1,0,1.9,0.9,1.9,1.9l0,0.1c0,1-0.9,1.9-1.9,1.9l-16.1-0.1c-1,0-1.9-0.9-1.9-1.9l0-0.1
|
||||
C452,786.9,452.8,786,453.9,786z" class="st57"></path>
|
||||
<path d="M514,786.1l17.6,0.1c1,0,1.9,0.8,1.9,1.9l0,0.1c0,1-0.8,1.9-1.9,1.9l-17.6-0.1c-1,0-1.9-0.8-1.9-1.9l0-0.1
|
||||
C512.1,786.9,512.9,786,514,786.1z" class="st57"></path>
|
||||
<path d="M586,786.7l47.9-0.4c0.8,0,1.4,0.6,1.4,1.4l0,0.7c0,0.8-0.6,1.4-1.4,1.4l-47.9,0.4c-0.8,0-1.4-0.6-1.4-1.4
|
||||
l0-0.7C584.7,787.3,585.3,786.7,586,786.7z" class="st57"></path>
|
||||
<path d="M824,818.5l-0.9,0.6c-0.3,0.2-0.6,0.3-0.9,0.3l-33.8,0.1l-0.1-28.7c0-0.9,0.4-1.3,1.3-1.3H823
|
||||
c0.7,0,1,0.3,1,1V818.5z" class="st58"></path>
|
||||
<path d="M207.5,839l-19.1,0.7l-19.5-0.8C181.8,837.8,194.7,837.8,207.5,839z" class="st59"></path>
|
||||
<path d="M713.3,838.5c-0.8,4.1-0.6,7.5,0.3,10.2c0.2,0.6,0.2,1.2,0,1.8l-2.9,8.6l-105.2,0c-1.2-0.3-1.8-1.2-1.5-2.7
|
||||
c0.1-0.7-0.2-1.4-0.8-1.7l-5-2.6c-0.5-0.2-0.7-0.6-0.7-1.1c-0.1-2.3,0.7-4.3,2.2-5.9c0.5-0.5,0.8-1.2,0.8-1.9v-2.5c0-0.7,0.3-1,1-1
|
||||
c0.8,0,1.3-0.2,1.5-0.5L713.3,838.5z" class="st58"></path>
|
||||
<path d="M713.3,838.5l68.7,0.4l-0.1,19.1c0,0.8-0.4,1.1-1.1,1.1l-70-0.1l2.9-8.6c0.2-0.6,0.2-1.2,0-1.8
|
||||
C712.6,846,712.5,842.6,713.3,838.5z" class="st63"></path>
|
||||
<path d="M207.5,839H483l-2.3,3.5c-0.3,0.5-0.4,1.1-0.3,1.6l1.1,5.3c0.1,0.6,0.4,1,0.8,1.4c1.7,1.4,2.4,4.1,1.9,8.2
|
||||
H250c-1.2,0-1.8-0.6-1.9-1.8l-0.4-12.5c0-0.7-0.4-1.1-1.2-1.1c-14.2,0.1-24.7-0.4-31.7-1.5c-11-1.8-19.8-2.6-26.4-2.4L207.5,839z" class="st60"></path>
|
||||
<path d="M483,839h120c-0.3,0.4-0.8,0.5-1.5,0.5c-0.7,0-1,0.3-1,1v2.5c0,0.8-0.3,1.4-0.8,1.9c-1.6,1.6-2.3,3.6-2.2,5.9
|
||||
c0,0.5,0.2,0.9,0.7,1.1l5,2.6c0.6,0.3,0.9,1,0.8,1.7c-0.2,1.4,0.3,2.3,1.5,2.7l-121.3,0c0.4-4.1-0.2-6.8-1.9-8.2
|
||||
c-0.4-0.4-0.7-0.8-0.8-1.4l-1.1-5.3c-0.1-0.6,0-1.1,0.3-1.6L483,839z" class="st69"></path>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 83 KiB |
7
src/main/resources/icons/bars.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M199.110656 284.444672c-31.418368 0-56.88832-25.469952-56.88832-56.889344 0-31.418368 25.469952-56.88832 56.88832-56.88832 31.419392 0 56.889344 25.469952 56.889344 56.88832 0 31.419392-25.469952 56.889344-56.889344 56.889344z m156.444672-99.555328h483.555328c23.564288 0 42.667008 19.101696 42.667008 42.665984 0 23.564288-19.10272 42.667008-42.667008 42.667008H355.555328c-23.564288 0-42.665984-19.10272-42.665984-42.667008s19.101696-42.665984 42.665984-42.665984z m0 284.443648h483.555328c23.564288 0 42.667008 19.10272 42.667008 42.667008s-19.10272 42.667008-42.667008 42.667008H355.555328c-23.564288 0-42.665984-19.10272-42.665984-42.667008s19.101696-42.667008 42.665984-42.667008z m0 284.444672h483.555328c23.564288 0 42.667008 19.10272 42.667008 42.667008s-19.10272 42.665984-42.667008 42.665984H355.555328c-23.564288 0-42.665984-19.101696-42.665984-42.665984 0-23.564288 19.101696-42.667008 42.665984-42.667008zM199.110656 568.889344c-31.418368 0-56.88832-25.470976-56.88832-56.889344s25.469952-56.889344 56.88832-56.889344C230.530048 455.110656 256 480.581632 256 512s-25.469952 56.889344-56.889344 56.889344z m0 284.443648c-31.418368 0-56.88832-25.469952-56.88832-56.88832 0-31.419392 25.469952-56.889344 56.88832-56.889344 31.419392 0 56.889344 25.469952 56.889344 56.889344 0 31.418368-25.469952 56.88832-56.889344 56.88832z"
|
||||
fill="#6e6e6e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
7
src/main/resources/icons/bumenguanli.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M938.666667 661.333333h-67.413334c-0.426667-0.853333-0.426667-1.706667-0.853333-2.133333l-128.426667-170.666667a20.48 20.48 0 0 0-17.066666-8.533333H533.333333V362.666667H768c35.413333 0 64-28.586667 64-64V213.333333c0-35.413333-28.586667-64-64-64H256c-35.413333 0-64 28.586667-64 64v85.333334c0 35.413333 28.586667 64 64 64h234.666667v117.333333H298.666667a20.48 20.48 0 0 0-17.066667 8.533333l-128 170.666667c-0.426667 0.853333-0.426667 1.28-0.853333 2.133333H85.333333c-11.946667 0-21.333333 9.386667-21.333333 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333333 21.333334h170.666667c11.946667 0 21.333333-9.386667 21.333333-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333333-21.333334H205.226667l104.106666-138.666666h181.333334v138.666666H426.666667c-11.946667 0-21.333333 9.386667-21.333334 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333334 21.333334h170.666666c11.946667 0 21.333333-9.386667 21.333334-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333334-21.333334h-64v-138.666666h180.906667l104.533333 138.666666H768c-11.946667 0-21.333333 9.386667-21.333333 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333333 21.333334h170.666667c11.946667 0 21.333333-9.386667 21.333333-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333333-21.333334zM234.666667 298.666667V213.333333c0-11.946667 9.386667-21.333333 21.333333-21.333333h512c11.946667 0 21.333333 9.386667 21.333333 21.333333v85.333334c0 11.946667-9.386667 21.333333-21.333333 21.333333H256c-11.946667 0-21.333333-9.386667-21.333333-21.333333z m0 533.333333h-128v-128h128v128z m341.333333 0h-128v-128h128v128z m341.333333 0h-128v-128h128v128z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
7
src/main/resources/icons/calendar.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M928 128h-117.333333v-21.333333a21.333333 21.333333 0 0 0-42.666667 0v21.333333H554.666667v-21.333333a21.333333 21.333333 0 0 0-42.666667 0v21.333333H298.666667v-21.333333a21.333333 21.333333 0 0 0-42.666667 0v21.333333H138.666667a53.393333 53.393333 0 0 0-53.333334 53.333333v704a53.393333 53.393333 0 0 0 53.333334 53.333334h789.333333a53.393333 53.393333 0 0 0 53.333333-53.333334V181.333333a53.393333 53.393333 0 0 0-53.333333-53.333333zM138.666667 170.666667h117.333333v21.333333a21.333333 21.333333 0 0 0 42.666667 0v-21.333333h213.333333v21.333333a21.333333 21.333333 0 0 0 42.666667 0v-21.333333h213.333333v21.333333a21.333333 21.333333 0 0 0 42.666667 0v-21.333333h117.333333a10.666667 10.666667 0 0 1 10.666667 10.666666v160H128V181.333333a10.666667 10.666667 0 0 1 10.666667-10.666666z m789.333333 725.333333H138.666667a10.666667 10.666667 0 0 1-10.666667-10.666667V384h810.666667v501.333333a10.666667 10.666667 0 0 1-10.666667 10.666667zM384 490.666667a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m128 128a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m0 128a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334zM384 618.666667a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334zM256 490.666667a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m0 256a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m0-128a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m256-128a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m-128 256a21.333333 21.333333 0 1 1-21.333333-21.333334 21.333333 21.333333 0 0 1 21.333333 21.333334z m298.666667-256a21.333333 21.333333 0 0 1-21.333334 21.333333h-42.666666a21.333333 21.333333 0 0 1 0-42.666667h42.666666a21.333333 21.333333 0 0 1 21.333334 21.333334z m170.666666 0a21.333333 21.333333 0 0 1-21.333333 21.333333h-42.666667a21.333333 21.333333 0 0 1 0-42.666667h42.666667a21.333333 21.333333 0 0 1 21.333333 21.333334z m0 128a21.333333 21.333333 0 0 1-21.333333 21.333333h-42.666667a21.333333 21.333333 0 0 1 0-42.666667h42.666667a21.333333 21.333333 0 0 1 21.333333 21.333334z m-170.666666 0a21.333333 21.333333 0 0 1-21.333334 21.333333h-42.666666a21.333333 21.333333 0 0 1 0-42.666667h42.666666a21.333333 21.333333 0 0 1 21.333334 21.333334z m0 128a21.333333 21.333333 0 0 1-21.333334 21.333333h-42.666666a21.333333 21.333333 0 0 1 0-42.666667h42.666666a21.333333 21.333333 0 0 1 21.333334 21.333334z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
7
src/main/resources/icons/delte.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M870.4 160.914c-21.943 0-36.571 14.629-36.571 36.572v665.6c0 43.885-36.572 80.457-80.458 80.457H270.63c-43.886 0-80.458-36.572-80.458-80.457v-665.6c0-21.943-14.628-36.572-36.571-36.572s-36.571 14.629-36.571 36.572v665.6c0 87.771 73.142 160.914 160.914 160.914H753.37c87.772 0 160.915-73.143 160.915-160.914v-665.6c-7.315-14.629-21.943-36.572-43.886-36.572z m80.457 0h-870.4c-21.943 0-36.571 14.629-36.571 36.572s14.628 36.571 36.571 36.571h870.4c21.943 0 36.572-14.628 36.572-36.571s-14.629-36.572-36.572-36.572zM314.514 80.457h394.972c21.943 0 36.571-14.628 36.571-36.571S731.43 7.314 709.486 7.314H314.514c-21.943 0-36.571 14.629-36.571 36.572-7.314 14.628 14.628 36.571 36.571 36.571z"/>
|
||||
<path fill="#6E6E6E" d="M380.343 811.886c-21.943 0-36.572-14.629-36.572-36.572V394.971c0-21.942 14.629-36.571 36.572-36.571s36.571 14.629 36.571 36.571v380.343c0 21.943-14.628 36.572-36.571 36.572z m263.314 0c-21.943 0-36.571-14.629-36.571-36.572V394.971c0-21.942 14.628-36.571 36.571-36.571s36.572 14.629 36.572 36.571v380.343c0 21.943-14.629 36.572-36.572 36.572z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
7
src/main/resources/icons/double-arrow-left.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M535.76 806.16c-12.5 12.5-32.76 12.5-45.25 0l-248.9-248.9c-24.99-24.99-24.99-65.52 0-90.51l248.9-248.9c12.5-12.5 32.76-12.5 45.25 0 12.5 12.5 12.5 32.76 0 45.25L286.86 512l248.9 248.9c12.5 12.5 12.5 32.76 0 45.26z"/>
|
||||
<path fill="#6E6E6E" d="M791.76 806.16c-12.5 12.5-32.76 12.5-45.25 0l-248.9-248.9c-24.99-24.99-24.99-65.52 0-90.51l248.9-248.9c12.5-12.5 32.76-12.5 45.25 0 12.5 12.5 12.5 32.76 0 45.25L542.86 512l248.9 248.9c12.5 12.5 12.5 32.76 0 45.26z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 771 B |
9
src/main/resources/icons/double-arrow-right.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E"
|
||||
d="M488.24 217.84c12.5-12.5 32.76-12.5 45.25 0l248.9 248.9c24.99 24.99 24.99 65.52 0 90.51l-248.9 248.9c-12.5 12.5-32.76 12.5-45.25 0-12.5-12.5-12.5-32.76 0-45.25L737.14 512l-248.9-248.9c-12.5-12.5-12.5-32.76 0-45.26z"/>
|
||||
<path fill="#6E6E6E"
|
||||
d="M232.24 217.84c12.5-12.5 32.76-12.5 45.25 0l248.9 248.9c24.99 24.99 24.99 65.52 0 90.51l-248.9 248.9c-12.5 12.5-32.76 12.5-45.25 0-12.5-12.5-12.5-32.76 0-45.25L481.14 512l-248.9-248.9c-12.5-12.5-12.5-32.76 0-45.26z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 791 B |
6
src/main/resources/icons/email.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M960.000282 192.000282H64.000847c-35.346638 0-64.000094 28.653456-64.000094 63.999718v512.000376c0 35.346262 28.653456 63.999718 64.000094 63.999718h895.999435c35.347014 0 64.00047-28.653456 64.000471-63.999718V256c0-35.346262-28.653832-63.999718-64.000471-63.999718z m32.000612 63.999718v512a32.002117 32.002117 0 0 1-1.195117 8.658577 15.944049 15.944049 0 0 0-4.154311-5.364856l-314.253298-263.690367 314.253298-263.690367a16.05882 16.05882 0 0 0 2.049309-2.068124c2.109517 4.267952 3.300118 9.071751 3.300119 14.155137z m-32.000612-31.999859c0.195674 0 0.387961 0.011289 0.582507 0.014676l-406.769123 341.319912h-83.62545l-406.768747-341.319912c0.194169-0.003387 0.386456-0.014676 0.581378-0.014676h895.999435zM37.349663 771.293345a15.940286 15.940286 0 0 0-4.154311 5.364856 31.999483 31.999483 0 0 1-1.195117-8.658201v-512c0-5.083386 1.190601-9.886432 3.299742-14.154761a16.082903 16.082903 0 0 0 2.04931 2.068125l314.253297 263.68999-314.252921 263.689991z m26.650807 28.70689c-3.573686 0-7.006637-0.594548-10.215691-1.675271a16.002752 16.002752 0 0 0 4.133991-2.517798l318.575813-267.317111 75.299518 63.183908c2.934735 3.461173 7.312942 5.660625 12.206299 5.660625h95.999953c4.894109 0 9.27194-2.199452 12.206675-5.661378l75.298766-63.183155 318.575812 267.316735a15.994849 15.994849 0 0 0 4.133991 2.517798 31.935136 31.935136 0 0 1-10.216067 1.675647h-895.99906z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
6
src/main/resources/icons/enter.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M922.523841 496.178663c0.11154 0.273223 0.151449 0.550539 0.25685 0.824785 1.806135 4.627391 2.883677 9.622148 2.895957 14.889105 0 0.024559 0.008186 0.050142 0.008186 0.074701 0 0.01228 0.004093 0.022513 0.004093 0.032746 0 5.369288-1.100054 10.464329-2.962471 15.169491-0.060375 0.153496-0.080841 0.308015-0.14224 0.459464-4.202719 10.278087-12.400425 18.460444-22.684652 22.651906-0.016373 0.00614-0.032746 0.008186-0.047072 0.014326-4.803399 1.950422-10.031471 3.074012-15.533788 3.074012L139.680273 553.3692c-22.848381 0-41.3692-18.520819-41.3692-41.3692 0-22.846334 18.520819-41.3692 41.3692-41.3692l644.817981 0L503.31827 189.452863c-16.156982-16.156982-16.156982-42.349527 0-58.505485 16.154935-16.154935 42.349527-16.154935 58.503439 0L913.570935 482.696604c0.080841 0.080841 0.101307 0.190335 0.180102 0.271176C917.470755 486.73764 920.462902 491.209488 922.523841 496.178663zM710.276832 627.590622c16.154935-16.156982 42.349527-16.156982 58.505485 0 16.152888 16.154935 16.152888 42.349527 0 58.503439L561.822732 893.052622c-16.154935 16.154935-42.349527 16.154935-58.503439 0-16.156982-16.154935-16.156982-42.349527 0-58.503439L710.276832 627.590622z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
7
src/main/resources/icons/error.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#333333"
|
||||
d="M512 64.303538c-247.25636 0-447.696462 200.440102-447.696462 447.696462 0 247.254314 200.440102 447.696462 447.696462 447.696462s447.696462-200.440102 447.696462-447.696462S759.25636 64.303538 512 64.303538zM710.491727 665.266709c12.491499 12.491499 12.489452 32.729425-0.002047 45.220924-6.246261 6.246261-14.429641 9.370415-22.611997 9.370415s-16.363689-3.121084-22.60995-9.366322L512 557.222971 358.730221 710.491727c-6.246261 6.246261-14.429641 9.366322-22.611997 9.366322s-16.365736-3.125177-22.611997-9.370415c-12.491499-12.491499-12.491499-32.729425 0-45.220924l153.268756-153.266709L313.50725 358.730221c-12.491499-12.491499-12.489452-32.729425 0.002047-45.220924s32.729425-12.495592 45.220924-0.004093l153.268756 153.268756 153.268756-153.268756c12.491499-12.491499 32.729425-12.487406 45.220924 0.004093s12.493545 32.729425 0.002047 45.220924L557.225017 512 710.491727 665.266709z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
6
src/main/resources/icons/gerenxinxi.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6e6e6e" d="M816.527819 288.393895c-28.738552-168.902019-175.456425-288.393895-341.333334-288.393895-19.66322 0-39.32644 1.512555-58.98966 5.041851-188.565239 32.267848-315.619892 211.757755-283.352043 400.322994 19.66322 114.95421 94.282619 207.220089 192.094535 254.109306-151.759724 54.451994-265.705564 186.044313-295.956672 346.375184-1.512555 8.066962 4.033481 16.133924 12.100443 17.64648 1.00837 0 2.016741 0.504185 3.025111 0.504185 7.058592 0 13.612999-5.041851 14.621369-12.100443 30.251108-161.339242 152.263909-291.923191 310.57804-334.274742 33.276219 10.587888 68.569178 16.133924 104.870507 16.133925 19.66322 0 39.32644-1.512555 58.98966-5.041852 189.069424-32.772033 315.619892-211.757755 283.352044-400.322993z m-288.393895 370.071885c-17.64648 3.025111-35.797144 4.537666-53.947809 4.537667-32.267848 0-64.031512-5.041851-94.786804-14.621369-2.016741-1.512555-5.041851-2.520926-7.562777-2.520926-36.301329-12.604628-70.081733-31.259478-100.332841-56.468734-56.97292-47.897587-95.795175-114.95421-108.399803-189.069424-14.621369-83.694732 4.537666-167.389463 53.443624-236.462827S338.05613 48.905958 421.246677 34.788774c17.64648-3.025111 35.797144-4.537666 53.947808-4.537666 73.611029 0 145.709503 26.217627 202.682423 73.611029 57.477105 47.897587 96.29936 115.458395 108.903988 189.573609 29.746923 171.927129-86.215657 335.787297-258.646972 365.030034zM729.807976 695.77548c0 8.571147 7.058592 15.125554 15.125554 15.125554h234.950271c8.066962 0 15.125554-6.554407 15.125554-15.125554s-7.058592-15.125554-15.125554-15.125554h-234.950271c-8.066962 0-15.125554 7.058592-15.125554 15.125554zM979.883801 829.38454H633.004431c-8.571147 0-15.125554 6.554407-15.125554 15.125554 0 8.066962 6.554407 15.125554 15.125554 15.125553h346.87937c8.066962 0 15.125554-7.058592 15.125554-15.125553s-7.058592-15.125554-15.125554-15.125554zM979.883801 978.119153H633.004431c-8.571147 0-15.125554 6.554407-15.125554 15.125554 0 8.066962 6.554407 15.125554 15.125554 15.125554h346.87937c8.066962 0 15.125554-7.058592 15.125554-15.125554 0-8.571147-7.058592-15.125554-15.125554-15.125554z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
11
src/main/resources/icons/guanli.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M129 199v241h241V199H129z m-30-60h301c16.569 0 30 13.431 30 30v301c0 16.569-13.431 30-30 30H99c-16.569 0-30-13.431-30-30V169c0-16.569 13.431-30 30-30z"
|
||||
fill="#2F54EB"/>
|
||||
<path d="M129 656v241h241V656H129z m-30-60h301c16.569 0 30 13.431 30 30v301c0 16.569-13.431 30-30 30H99c-16.569 0-30-13.431-30-30V626c0-16.569 13.431-30 30-30zM706.537 149.202L536.276 319.463l170.261 170.261 170.261-170.261-170.261-170.261z m21.213-63.64L940.438 298.25c11.715 11.716 11.715 30.71 0 42.426L727.75 553.364c-11.716 11.715-30.71 11.715-42.426 0L472.636 340.676c-11.715-11.716-11.715-30.71 0-42.426L685.324 85.562c11.716-11.715 30.71-11.715 42.426 0z"
|
||||
fill="#85A5FF"/>
|
||||
<path d="M587 656v241h239V656H587z m-30-60h299c16.569 0 30 13.431 30 30v301c0 16.569-13.431 30-30 30H557c-16.569 0-30-13.431-30-30V626c0-16.569 13.431-30 30-30z"
|
||||
fill="#2F54EB"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
7
src/main/resources/icons/home.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="189.98px" viewBox="0 0 1078 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M879.74227 494.221646C870.158228 494.221646 862.379876 501.999999 862.379876 511.58404L862.379876 894.737354C862.379876 936.846945 828.118086 971.108735 786.00849 971.108735L651.114264 971.108735 651.114264 705.209457C651.114264 695.625415 643.335912 687.847063 633.75187 687.847063L444.108227 687.847063C434.524186 687.847063 426.745833 695.625415 426.745833 705.209457L426.745833 971.108735 291.805307 971.108735C249.718864 971.108735 215.480223 936.846945 215.480223 894.737354L215.480223 511.58404C215.480223 501.999999 207.70187 494.221646 198.117829 494.221646 188.533787 494.221646 180.755434 501.999999 180.755434 511.58404L180.755434 894.737354C180.755434 955.991875 230.573931 1005.833523 291.805307 1005.833523L786.00849 1005.833523C847.263016 1005.833523 897.104664 955.991875 897.104664 894.737354L897.104664 511.58404C897.104664 501.999999 889.326312 494.221646 879.74227 494.221646L879.74227 494.221646ZM461.470621 722.571851 616.389476 722.571851 616.389476 971.085587 461.470621 971.085587 461.470621 722.571851ZM1051.305871 365.716781 925.810489 275.223983C909.39724 263.324955 894.974874 235.221027 894.974874 215.08065L894.974874 66.273358C894.974874 30.877224 866.176453 2.0788 830.803467 2.0788L786.749284 2.0788C751.399451 2.0788 722.647326 30.877224 722.647326 66.273358L722.647326 115.721456C722.647326 122.064518 721.165738 124.9351 721.003687 125.166599 720.471239 125.166599 717.48491 124.9814 712.114144 121.092224L582.336032 27.451045C566.594129 16.038165 553.884855 6.824521 551.153174 4.717884 547.796442 1.824152 543.189623-0.120436 538.906899 0.018463 534.855674-0.213036 530.133102 1.754702 526.776373 4.671584 523.790041 6.98657 508.071287 18.376301 489.5514 31.803219L26.600526 365.716781C12.71061 375.763819 3.566416 390.626029 0.834733 407.618025-1.896951 424.586872 2.131125 441.555718 12.108714 455.306734L29.725756 479.845584C41.578484 496.328284 60.491919 505.773426 81.60459 505.773426L81.62774 505.773426C83.850126 505.773426 86.095662 505.657677 88.341199 505.449328 91.39698 505.14838 94.313862 504.060336 96.814047 502.254648L538.930049 183.272744 981.1155 502.254648C983.615682 504.060336 986.532568 505.14838 989.588351 505.449328 991.833886 505.657677 994.079421 505.773426 996.324956 505.773426 1017.50708 505.773426 1036.397363 496.305134 1048.064889 479.868734L1065.774533 455.329884C1086.493658 426.600909 1079.988547 386.412754 1051.305871 365.716781L1051.305871 365.716781ZM1037.624304 435.004308 1019.845212 459.658907C1014.844842 466.650165 1006.626644 470.793989 997.204652 471.048638L549.231735 147.87661 549.208587 147.89976C543.397969 143.663336 534.369526 143.501287 528.350563 148.108109L80.724895 471.048638C71.279753 470.793989 63.015253 466.650165 57.922285 459.566308L40.282092 434.981158C35.69842 428.684396 33.869581 420.929194 35.119674 413.127691 36.369766 405.303039 40.55989 398.473831 46.926102 393.890158L509.923276 59.953447C523.558542 50.045307 532.679587 43.424448 538.906899 38.794476 544.185069 42.683652 551.569871 48.00812 561.941008 55.554974L691.811716 149.288751C701.604104 156.303159 711.419645 159.891387 721.003687 159.891387 739.106875 159.891387 757.372114 146.232971 757.372114 115.721456L757.372114 66.273358C757.372114 50.022157 770.544387 36.803588 786.749284 36.803588L830.803467 36.803588C847.031517 36.803588 860.250085 50.022157 860.250085 66.273358L860.250085 215.08065C860.250085 246.24036 880.112667 285.016373 905.484913 303.374211L1031.003443 393.890158C1044.152563 403.381601 1047.115749 421.832038 1037.624304 435.004308L1037.624304 435.004308Z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
7
src/main/resources/icons/icon_username.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M409.6 307.2a102.4 102.4 0 1 1 204.8 0 102.4 102.4 0 0 1-204.8 0z m102.4-163.84a163.84 163.84 0 1 0 0 327.68 163.84 163.84 0 0 0 0-327.68zM194.56 706.56v143.36a30.72 30.72 0 0 0 61.44 0v-143.36A133.12 133.12 0 0 1 389.12 573.44h245.76a133.12 133.12 0 0 1 133.12 133.12v143.36a30.72 30.72 0 0 0 61.44 0v-143.36A194.56 194.56 0 0 0 634.88 512H389.12a194.56 194.56 0 0 0-194.56 194.56z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 703 B |
1
src/main/resources/icons/info.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#333333" d="M512 65.984C266.048 65.984 65.984 266.048 65.984 512S266.048 958.016 512 958.016 958.016 757.952 958.016 512 757.952 65.984 512 65.984zM544 736c0 17.696-14.304 32-32 32s-32-14.304-32-32l0-288c0-17.696 14.304-32 32-32s32 14.304 32 32L544 736zM512 352c-26.496 0-48-21.536-48-48C464 277.472 485.504 256 512 256s48 21.472 48 48C560 330.464 538.496 352 512 352z" /></svg>
|
After Width: | Height: | Size: 648 B |
7
src/main/resources/icons/item.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M867.2 492.8l-336-336c-11.2-11.2-28.8-17.6-44.8-17.6L208 148.8C176 150.4 150.4 176 148.8 208l-9.6 278.4c0 16 6.4 33.6 17.6 44.8l336 336c11.2 11.2 27.2 17.6 43.2 17.6 16 0 30.4-6.4 43.2-17.6l288-288c24-24 24-62.4 0-86.4z m-33.6 52.8l-288 288c-4.8 4.8-12.8 4.8-17.6 0l-336-336c-3.2-3.2-3.2-6.4-3.2-9.6l9.6-278.4c0-6.4 4.8-11.2 11.2-11.2l278.4-9.6c3.2 0 6.4 1.6 8 3.2l336 336c6.4 4.8 6.4 12.8 1.6 17.6z"/>
|
||||
<path fill="#6E6E6E" d="M344 344m-48 0a48 48 0 1 0 96 0 48 48 0 1 0-96 0Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 791 B |
146
src/main/resources/icons/jiankong.svg
Normal file
@ -0,0 +1,146 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1071 1387" height="1387" width="1071">
|
||||
<g clip-path="url(#clip0_1617_18725)">
|
||||
<path fill="url(#paint0_linear_1617_18725)"
|
||||
d="M59.3729 1275.39L841.748 823.69C852.993 817.195 862.121 799.761 862.121 784.755V76.8496C862.121 61.8427 852.993 54.9491 841.748 61.4448L59.3729 513.141C48.1145 519.637 39 537.07 39 552.077V1259.98C39 1274.99 48.1145 1281.88 59.3729 1275.39Z"></path>
|
||||
<path fill="url(#paint1_linear_1617_18725)"
|
||||
d="M128.373 1329.4L910.748 877.69C922.006 871.195 931.121 853.775 931.121 838.768V130.85C931.121 115.843 922.006 108.949 910.748 115.445L128.373 567.154C117.127 573.65 108 591.083 108 606.077V1313.99C108 1329 117.127 1335.9 128.373 1329.4Z"></path>
|
||||
<path fill="white"
|
||||
d="M146.877 1337.52L929.251 885.819C940.497 879.323 949.624 861.89 949.624 846.883V138.978C949.624 123.971 940.497 117.077 929.251 123.573L146.877 575.27C135.618 581.765 126.504 599.198 126.504 614.205V1322.11C126.504 1337.12 135.618 1344.01 146.877 1337.52Z"
|
||||
opacity="0.4"></path>
|
||||
<path fill="url(#paint2_linear_1617_18725)"
|
||||
d="M203.373 1366.39L985.748 914.685C997.006 908.189 1006.12 890.769 1006.12 875.762V167.844C1006.12 152.837 997.006 145.943 985.748 152.439L203.373 604.148C192.127 610.644 183 628.077 183 643.071V1350.99C183 1366 192.127 1372.89 203.373 1366.39Z"></path>
|
||||
<path fill="white"
|
||||
d="M220.373 1372.39L1002.75 920.69C1013.99 914.195 1023.12 896.761 1023.12 881.755V173.85C1023.12 158.843 1013.99 151.949 1002.75 158.445L220.373 610.141C209.115 616.637 200 634.07 200 649.077V1356.98C200 1371.99 209.115 1378.88 220.373 1372.39Z"
|
||||
opacity="0.4"></path>
|
||||
<path fill="url(#paint3_linear_1617_18725)"
|
||||
d="M268.265 1384.32L1050.64 932.628C1061.89 926.132 1071.01 908.699 1071.01 893.692V185.774C1071.01 170.78 1061.89 163.95 1050.64 170.369L268.265 622.078C257.007 628.574 247.892 646.007 247.892 661.001V1368.92C247.892 1383.93 257.007 1390.82 268.265 1384.32Z"></path>
|
||||
<path fill="white"
|
||||
d="M793.186 1034.21L1015.35 905.939C1026.6 899.443 1035.72 882.023 1035.72 867.016V253.209C1035.72 238.202 1026.6 231.308 1015.35 237.804L793.186 366.088C781.941 372.584 772.813 390.017 772.813 405.024V1018.83C772.813 1033.81 781.941 1040.71 793.186 1034.21Z"></path>
|
||||
<path fill="url(#paint4_linear_1617_18725)"
|
||||
d="M987.919 305.744C1002.7 296.947 1014.75 304.249 1014.75 321.403C1014.22 330.725 1011.51 339.793 1006.83 347.876C1002.16 355.959 995.647 362.831 987.831 367.939C973.052 376.736 961 369.522 961 352.368C961.552 343.039 964.272 333.966 968.945 325.873C973.618 317.779 980.115 310.887 987.919 305.744Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M1017.9 784.391C1017.9 779.773 1012.9 776.886 1008.9 779.195L833 880.735C831.144 881.807 830 883.788 830 885.932V908.231C830 912.85 835 915.737 839 913.428L1014.9 811.888C1016.76 810.816 1017.9 808.835 1017.9 806.691V784.391Z"></path>
|
||||
<path fill="#0FD3FF"
|
||||
d="M941.03 738.06C937.309 740.292 934.085 745.498 934.085 749.961C934.085 754.424 937.309 756.159 941.03 753.928L1011.22 713.515C1014.94 711.284 1018.16 706.077 1018.16 701.615C1018.16 697.152 1015.19 695.416 1011.22 697.648L941.03 738.06Z"></path>
|
||||
<path fill="#3C84E5"
|
||||
d="M964.096 686.243C960.376 688.475 957.151 693.681 957.151 698.144C957.151 702.607 960.376 704.342 964.096 702.111L1011.47 674.839C1015.19 672.607 1018.41 667.401 1018.41 662.938C1018.41 658.475 1015.19 656.74 1011.47 658.971L964.096 686.243Z"></path>
|
||||
<path fill="#F68AC6"
|
||||
d="M873.119 780.705C869.399 782.936 866.175 788.143 866.175 792.605C866.175 797.068 869.399 798.804 873.119 796.572L912.803 773.515C916.523 771.283 919.748 766.077 919.748 761.614C919.748 757.151 916.523 755.416 912.803 757.647L873.119 780.705Z"></path>
|
||||
<path fill="#0FD3FF"
|
||||
d="M801.193 857.811C797.472 860.043 794.248 865.249 794.248 869.712C794.248 874.175 797.472 875.91 801.193 873.679L863.694 837.481C867.414 835.25 870.639 830.043 870.639 825.58C870.639 821.118 867.414 819.382 863.694 821.614L801.193 857.811Z"></path>
|
||||
<path fill="#5C52E1"
|
||||
d="M800.945 822.357C797.224 824.589 794 829.795 794 834.258C794 838.721 797.224 840.456 800.945 838.225L840.628 815.167C844.348 812.936 847.573 807.729 847.573 803.266C847.573 798.804 844.596 797.068 840.628 799.3L800.945 822.357Z"></path>
|
||||
<path fill="#5C52E1"
|
||||
d="M895.937 803.018C892.217 805.25 888.993 810.456 888.993 814.919C888.993 819.382 891.969 821.117 895.937 818.886L958.439 782.688C962.159 780.457 965.383 775.25 965.383 770.787C965.383 766.325 962.159 764.589 958.439 766.821L895.937 803.018Z"></path>
|
||||
<path fill="#F68AC6"
|
||||
d="M800.945 783.928C797.224 786.159 794 791.366 794 795.828C794 800.291 797.224 802.027 800.945 799.795L935.868 721.945C939.589 719.714 942.813 714.507 942.813 710.044C942.813 705.581 939.589 703.846 935.868 706.077L800.945 783.928Z"></path>
|
||||
<path fill="#F68AC6"
|
||||
d="M986.914 747.234C983.193 749.465 979.969 754.672 979.969 759.135C979.969 763.597 983.193 765.333 986.914 763.101L1011.47 748.969C1015.19 746.738 1018.41 741.531 1018.41 737.069C1018.41 732.606 1015.44 730.87 1011.47 733.102L986.914 747.234Z"></path>
|
||||
<path fill="url(#paint5_linear_1617_18725)"
|
||||
d="M303.555 1031.06L734.802 782.097C746.047 775.588 755.174 758.168 755.174 743.161V415.178C755.174 400.171 746.047 393.278 734.802 399.773L303.555 648.819C292.297 655.314 283.182 672.748 283.182 687.755V1015.66C283.182 1030.65 292.297 1037.55 303.555 1031.06Z"></path>
|
||||
<path fill="white"
|
||||
d="M686.545 484.542L718.305 466.21C721.707 464.233 724.48 458.957 724.48 454.412C724.48 449.855 721.707 447.776 718.305 449.74L686.545 468.071C683.13 470.048 680.358 475.325 680.358 479.869C680.358 484.426 683.13 486.519 686.545 484.542Z"></path>
|
||||
<path fill="white"
|
||||
d="M629.201 517.649L660.947 499.317C664.349 497.341 667.122 492.064 667.122 487.52C667.122 482.963 664.349 480.883 660.947 482.847L629.188 501.179C625.773 503.156 623 508.432 623 512.976C623.013 517.534 625.786 519.588 629.201 517.649Z"></path>
|
||||
<path fill="white" d="M374.931 958.085L309.64 995.775V691.118L374.931 726.357V958.085Z" opacity="0.4"></path>
|
||||
<path fill="white" d="M516.078 876.593L450.8 914.283V644.903L516.078 674.262V876.593Z" opacity="0.4"></path>
|
||||
<path fill="white" d="M586.658 835.847L521.38 873.537V675.918L586.658 693.506V835.847Z" opacity="0.4"></path>
|
||||
<path fill="white" d="M591.96 832.792L657.238 795.101V612.771L591.96 684.571V832.792Z" opacity="0.4"></path>
|
||||
<path fill="white" d="M727.818 754.342L662.54 792.033V612.065L727.818 699.064V754.342Z" opacity="0.4"></path>
|
||||
<path fill="white" d="M380.22 955.029L445.511 917.339V643.26L380.22 726.832V955.029Z" opacity="0.4"></path>
|
||||
<path stroke-miterlimit="10" stroke-width="3.3" stroke="white"
|
||||
d="M728.255 698.217L659.883 610.062L586.222 690.823L517.413 671.733L448.156 640.551L380.22 726.831L312.285 689.59"></path>
|
||||
<path fill="white"
|
||||
d="M666.211 616.258C668.848 610.06 668.146 603.828 664.642 602.337C661.139 600.846 656.161 604.662 653.524 610.86C650.887 617.057 651.589 623.29 655.092 624.781C658.596 626.271 663.573 622.456 666.211 616.258Z"></path>
|
||||
<path fill="white"
|
||||
d="M525.053 674.222C527.69 668.025 526.988 661.792 523.484 660.301C519.981 658.811 515.003 662.626 512.366 668.824C509.729 675.022 510.431 681.254 513.934 682.745C517.438 684.236 522.415 680.42 525.053 674.222Z"></path>
|
||||
<path fill="white"
|
||||
d="M455.355 645.056C457.993 638.858 457.29 632.625 453.787 631.135C450.284 629.644 445.306 633.46 442.669 639.658C440.032 645.855 440.734 652.088 444.237 653.579C447.74 655.069 452.718 651.253 455.355 645.056Z"></path>
|
||||
<path fill="white"
|
||||
d="M318.623 692.244C321.26 686.047 320.558 679.814 317.055 678.323C313.551 676.833 308.573 680.648 305.936 686.846C303.299 693.044 304.001 699.276 307.505 700.767C311.008 702.258 315.986 698.442 318.623 692.244Z"></path>
|
||||
<path fill="white"
|
||||
d="M734.147 701.732C736.784 695.535 736.082 689.302 732.579 687.812C729.075 686.321 724.097 690.137 721.46 696.334C718.823 702.532 719.525 708.765 723.029 710.255C726.532 711.746 731.51 707.93 734.147 701.732Z"></path>
|
||||
<path fill="white"
|
||||
d="M595.632 689.938C598.269 683.74 597.567 677.507 594.064 676.017C590.56 674.526 585.583 678.342 582.945 684.539C580.308 690.737 581.01 696.97 584.514 698.46C588.017 699.951 592.995 696.135 595.632 689.938Z"></path>
|
||||
<path fill="white"
|
||||
d="M384.775 730.516C387.412 724.318 386.71 718.085 383.206 716.595C379.703 715.104 374.725 718.92 372.088 725.117C369.451 731.315 370.153 737.548 373.657 739.038C377.16 740.529 382.138 736.713 384.775 730.516Z"></path>
|
||||
<path fill="url(#paint6_linear_1617_18725)"
|
||||
d="M303.555 1054.58L734.802 805.538C746.047 799.042 755.174 805.936 755.174 820.942V1028.91C755.174 1043.92 746.047 1061.35 734.802 1067.84L303.555 1316.89C292.297 1323.39 283.182 1316.49 283.182 1301.48V1093.52C283.182 1078.56 292.297 1061.08 303.555 1054.58Z"
|
||||
opacity="0.65"></path>
|
||||
<path fill="#FF94CF"
|
||||
d="M732.904 999.391C732.904 994.773 727.904 991.886 723.904 994.195L548 1095.74C546.144 1096.81 545 1098.79 545 1100.93V1123.23C545 1127.85 550 1130.74 554 1128.43L729.904 1026.89C731.76 1025.82 732.904 1023.84 732.904 1021.69V999.391Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M724.176 853.422C724.176 849.698 720.128 847.385 716.92 849.276L602.369 916.781C600.901 917.647 600 919.224 600 920.928V920.928C600 924.652 604.048 926.965 607.256 925.074L721.807 857.568C723.275 856.703 724.176 855.126 724.176 853.422V853.422Z"
|
||||
opacity="0.6"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M724.176 882.542C724.176 878.818 720.127 876.507 716.92 878.401L648.51 918.814C647.045 919.68 646.147 921.254 646.147 922.955V922.955C646.147 926.679 650.197 928.99 653.403 927.096L721.813 886.683C723.278 885.817 724.176 884.243 724.176 882.542V882.542Z"
|
||||
opacity="0.6"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M311.548 1108.98C311.786 1107.34 312.775 1105.9 314.224 1105.08L493.186 1004.56C497.308 1002.24 502.307 1005.62 501.701 1010.31V1010.31C501.467 1012.11 500.389 1013.7 498.796 1014.59L319.448 1114.43C315.577 1116.58 310.914 1113.37 311.548 1108.98V1108.98Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M311.486 1144.51C311.71 1142.9 312.667 1141.48 314.078 1140.66L535.639 1012.74C539.726 1010.38 544.751 1013.71 544.173 1018.39V1018.39C543.952 1020.18 542.902 1021.76 541.34 1022.65L319.348 1149.82C315.537 1152.01 310.88 1148.86 311.486 1144.51V1144.51Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M311.558 1183.48C311.79 1181.88 312.739 1180.48 314.134 1179.68L620.636 1002.74C624.725 1000.38 629.751 1003.71 629.172 1008.39V1008.39C628.952 1010.18 627.903 1011.76 626.343 1012.65L319.382 1188.8C315.576 1190.98 310.926 1187.82 311.558 1183.48V1183.48Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M311.489 1218.49C311.712 1216.89 312.657 1215.48 314.054 1214.66L495.607 1108.81C499.679 1106.44 504.704 1109.77 504.099 1114.45V1114.45C503.872 1116.2 502.84 1117.75 501.308 1118.64L319.346 1223.78C315.546 1225.97 310.883 1222.84 311.489 1218.49V1218.49Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M311.486 1254.35C311.711 1252.74 312.665 1251.32 314.074 1250.5L449.463 1172.1C453.543 1169.73 458.561 1173.08 457.956 1177.75V1177.75C457.728 1179.52 456.685 1181.07 455.14 1181.96L319.352 1259.67C315.538 1261.86 310.88 1258.7 311.486 1254.35V1254.35Z"></path>
|
||||
<path fill="url(#paint7_linear_1617_18725)"
|
||||
d="M806.837 450.938L887.122 404.595C894.183 400.513 899.96 389.575 899.96 380.204C899.96 370.781 894.234 366.455 887.122 370.538L806.837 416.881C799.777 420.963 794 431.9 794 441.272C794.051 450.694 799.777 455.02 806.837 450.938Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M799.289 516.97L1009.26 395.746C1012.18 394.065 1014.55 389.533 1014.55 385.631C1014.55 381.779 1012.18 379.944 1009.26 381.625L799.289 502.849C796.362 504.53 794 509.062 794 512.965C794 516.803 796.362 518.6 799.289 516.97Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M799.289 554.545L1009.26 433.321C1012.18 431.64 1014.55 427.108 1014.55 423.205C1014.55 419.354 1012.18 417.518 1009.26 419.213L799.289 540.436C796.362 542.118 794 546.65 794 550.552C794 554.442 796.362 556.239 799.289 554.545Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M799.289 629.836L1009.26 508.613C1012.18 506.918 1014.55 502.386 1014.55 498.497C1014.55 494.646 1012.18 492.81 1009.26 494.492L799.289 615.715C796.362 617.409 794 621.928 794 625.831C794 629.733 796.362 631.518 799.289 629.836Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M799.289 667.475L1009.26 546.252C1012.18 544.557 1014.55 540.038 1014.55 536.136C1014.55 532.285 1012.18 530.449 1009.26 532.131L799.289 653.354C796.362 655.049 794 659.58 794 663.47C794 667.373 796.362 669.17 799.289 667.475Z"></path>
|
||||
<path fill="#DFE6FD"
|
||||
d="M865.453 553.993L1009.23 470.961C1012.16 469.279 1014.52 464.747 1014.52 460.858C1014.52 457.006 1012.16 455.158 1009.23 456.852L865.453 539.872C862.526 541.566 860.164 546.085 860.164 549.988C860.164 553.89 862.526 555.675 865.453 553.993Z"></path>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="1272.23" x2="450.554" y1="399.733" x1="450.554"
|
||||
id="paint0_linear_1617_18725">
|
||||
<stop stop-color="#BFD1FF" offset="0.02"></stop>
|
||||
<stop stop-color="white" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="1161.11" x2="519.554" y1="436.983" x1="519.554"
|
||||
id="paint1_linear_1617_18725">
|
||||
<stop stop-color="#2575F2" offset="0.02"></stop>
|
||||
<stop stop-color="#6A11C1" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="1198.11" x2="594.554" y1="473.977" x1="594.554"
|
||||
id="paint2_linear_1617_18725">
|
||||
<stop stop-color="#2575F2" offset="0.02"></stop>
|
||||
<stop stop-color="#6A11C1" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="1381.17" x2="659.446" y1="508.686" x1="659.446"
|
||||
id="paint3_linear_1617_18725">
|
||||
<stop stop-color="#BFD1FF" offset="0.02"></stop>
|
||||
<stop stop-color="white" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="336.886" x2="961" y1="336.886" x1="1014.75"
|
||||
id="paint4_linear_1617_18725">
|
||||
<stop stop-color="#6070E3"></stop>
|
||||
<stop stop-color="#EE84C5" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="845.68" x2="836.477" y1="983.228" x1="302.962"
|
||||
id="paint5_linear_1617_18725">
|
||||
<stop stop-color="#2575F2" offset="0.02"></stop>
|
||||
<stop stop-color="#B881FF" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="1068.17" x2="308.756" y1="1372.84" x1="655.016"
|
||||
id="paint6_linear_1617_18725">
|
||||
<stop stop-color="#9CCFF7"></stop>
|
||||
<stop stop-color="#2E7FEB" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="364.401" x2="815.143" y1="444.096" x1="869.92"
|
||||
id="paint7_linear_1617_18725">
|
||||
<stop stop-color="#F477BB" offset="0.02"></stop>
|
||||
<stop stop-color="#F695CC" offset="1"></stop>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1617_18725">
|
||||
<rect fill="white" height="1387" width="1071"></rect>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
6
src/main/resources/icons/jiaoseguanli.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M1022.244739 804.543567h-43.881535a300.100943 300.100943 0 0 0-297.906867-255.975621c-3.413008 0-6.826017 0.828873-10.726597 0.975145a442.082087 442.082087 0 0 0 6.826017-43.881535c1.462718 0 2.437863 0.390058 3.90058 0.390058a170.650414 170.650414 0 1 0 0-341.300828 174.063423 174.063423 0 0 0-60.459003 11.311684c-5.850871-13.066946-12.676888-25.890106-19.502905-38.420722a217.213599 217.213599 0 0 1 79.961908-15.699838 214.87325 214.87325 0 0 1 215.994668 213.313018 212.094086 212.094086 0 0 1-112.629274 186.203981 342.471003 342.471003 0 0 1 238.423008 283.084658zM504.442625 578.553662a390.545662 390.545662 0 0 1 269.627654 323.504428h-49.732406a339.691839 339.691839 0 0 0-672.850205 0H1.755261a390.545662 390.545662 0 0 1 269.627655-323.504428 243.786306 243.786306 0 1 1 233.059709 0zM387.91277 170.699172a195.029045 195.029045 0 1 0 195.029045 195.029044 195.029045 195.029045 0 0 0-195.029045-195.029044z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
6
src/main/resources/icons/logout.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M184.552727 768l0-512c0-38.539636 31.278545-69.818182 69.818182-69.818182l302.545455 0L556.916364 139.636364l-325.818182 0c-51.432727 0-93.090909 41.658182-93.090909 93.090909l0 558.545455c0 51.432727 41.658182 93.090909 93.090909 93.090909l325.818182 0 0-46.545455-302.545455 0C215.784727 837.818182 184.552727 806.539636 184.552727 768zM924.113455 495.522909l-164.584727-164.584727c-9.076364-9.076364-23.831273-9.076364-32.907636 0-9.076364 9.076364-9.076364 23.831273 0 32.907636l124.834909 124.834909L394.007273 488.680727c-12.846545 0-23.272727 10.426182-23.272727 23.272727s10.426182 23.272727 23.272727 23.272727l457.448727 0-124.834909 124.834909c-9.076364 9.076364-9.076364 23.831273 0 32.907636 9.076364 9.076364 23.831273 9.076364 32.907636 0l164.584727-164.584727C933.189818 519.354182 933.189818 504.645818 924.113455 495.522909z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
src/main/resources/icons/menu/Document.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M347.221333 85.333333h329.173334C813.525333 85.333333 895.616 168.576 896 307.626667v408.746666C896 855.466667 814.250667 938.666667 676.778667 938.666667h-121.856a31.146667 31.146667 0 0 1-27.477334-31.104 31.146667 31.146667 0 0 1 27.477334-31.061334h121.472c104.789333 0 157.568-53.888 157.568-160.128V307.626667c0-106.24-52.778667-160.128-157.568-160.128H347.221333c-104.789333 0-157.909333 53.888-157.909333 160.128v408.746666c0 106.24 53.12 160.128 157.866667 160.128a31.146667 31.146667 0 0 1 27.477333 31.104 31.146667 31.146667 0 0 1-27.434667 31.061334C210.133333 938.666667 128 855.424 128 716.373333V307.626667C128 168.234667 210.133333 85.333333 347.221333 85.333333z m10.752 277.290667h117.034667a31.146667 31.146667 0 0 0 27.477333-31.104 31.146667 31.146667 0 0 0-27.434666-31.061333H357.973333a31.146667 31.146667 0 0 0-27.434666 31.061333 31.146667 31.146667 0 0 0 27.434666 31.104z m307.285334 180.48h-307.626667A31.146667 31.146667 0 0 1 330.154667 512a31.146667 31.146667 0 0 1 27.477333-31.104h307.626667a30.72 30.72 0 0 1 29.525333 14.506667 31.658667 31.658667 0 0 1 0 33.194666 30.72 30.72 0 0 1-29.525333 14.506667z m0 180.48h-307.626667a30.72 30.72 0 0 1-30.464-30.933333c0-17.066667 13.653333-30.890667 30.464-30.890667h307.626667a30.72 30.72 0 0 1 30.464 30.890667c0 17.066667-13.653333 30.890667-30.464 30.890666z" /></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
src/main/resources/icons/menu/address-book-o.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M768 64H256c-53.12 0-96 42.88-96 96V256h64V160c0-17.92 14.08-32 32-32h512c17.92 0 32 14.08 32 32v704c0 17.92-14.08 32-32 32H256c-17.92 0-32-14.08-32-32V768h-64v96c0 53.12 42.88 96 96 96h512c53.12 0 96-42.88 96-96v-704c0-53.12-42.88-96-96-96zM144 384h96c17.92 0 32-14.08 32-32s-14.08-32-32-32h-96c-17.92 0-32 14.08-32 32s14.08 32 32 32zM144 544h96c17.92 0 32-14.08 32-32s-14.08-32-32-32h-96c-17.92 0-32 14.08-32 32s14.08 32 32 32zM272 672c0-17.92-14.08-32-32-32h-96c-17.92 0-32 14.08-32 32s14.08 32 32 32h96c17.92 0 32-14.08 32-32zM512 496c61.44 0 112-50.56 112-112S573.44 272 512 272 400 322.56 400 384 450.56 496 512 496z m0-160c26.24 0 48 21.76 48 48s-21.76 48-48 48-48-21.76-48-48 21.76-48 48-48zM320 640v80c0 17.92 14.08 32 32 32h320c17.92 0 32-14.08 32-32V640c0-61.44-50.56-112-112-112h-160C370.56 528 320 578.56 320 640z m64 0c0-26.24 21.76-48 48-48h160c26.24 0 48 21.76 48 48v48H384V640z" /></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
src/main/resources/icons/menu/address-card.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M860.4 163.6H163.6C108.6 163.6 64 208.2 64 263.2v497.8c0 55 44.6 99.6 99.6 99.6h696.8c55 0 99.6-44.6 99.6-99.6V263.2c0-55-44.6-99.6-99.6-99.6z m49.8 597.2c0 27.4-22.4 49.8-49.8 49.8H163.6c-27.4 0-49.8-22.4-49.8-49.8V263.2c0-27.4 22.4-49.8 49.8-49.8h696.8c27.4 0 49.8 22.4 49.8 49.8v497.6z m-112-199H624c-6.8 0-12.4 5.6-12.4 12.4v24.8c0 6.8 5.6 12.4 12.4 12.4h174.2c6.8 0 12.4-5.6 12.4-12.4v-24.8c0-6.8-5.6-12.4-12.4-12.4z m0-99.6H624c-6.8 0-12.4 5.6-12.4 12.4v24.8c0 6.8 5.6 12.4 12.4 12.4h174.2c6.8 0 12.4-5.6 12.4-12.4v-24.8c0-6.8-5.6-12.4-12.4-12.4z m0-99.6H624c-6.8 0-12.4 5.6-12.4 12.4V400c0 6.8 5.6 12.4 12.4 12.4h174.2c6.8 0 12.4-5.6 12.4-12.4v-24.8c0-7-5.6-12.6-12.4-12.6z m-410.6 199.2c68.8 0 124.4-55.6 124.4-124.4s-55.6-124.4-124.4-124.4-124.4 55.6-124.4 124.4 55.6 124.4 124.4 124.4z m0-199.2c41.2 0 74.6 33.4 74.6 74.6S428.8 512 387.6 512s-74.6-33.4-74.6-74.6 33.4-74.8 74.6-74.8z m72.8 224c-30.4 0-38 10.8-72.8 10.8s-42.4-10.8-72.8-10.8c-33 0-65 14.6-83.6 42.6-11.2 16.6-17.8 36.8-17.8 58.4v36c0 6.8 5.6 12.4 12.4 12.4h24.8c6.8 0 12.4-5.6 12.4-12.4v-36c0-10.8 3.2-21.4 9.4-30.4 8.8-13 24.6-20.6 42.4-20.6 19.2 0 32.4 10.8 72.8 10.8 40.2 0 53.4-10.8 72.8-10.8 17.8 0 33.8 7.8 42.4 20.6 6 9 9.4 19.6 9.4 30.4v36c0 6.8 5.6 12.4 12.4 12.4h24.8c6.8 0 12.4-5.6 12.4-12.4v-36c0-21.6-6.6-41.6-17.8-58.4-18.8-28-50.8-42.6-83.6-42.6z" /></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
src/main/resources/icons/menu/avatar.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M508.289087 551.759785h6.78567c62.13129-1.060261 112.387658-22.901636 149.49679-64.675917 81.640091-92.030648 68.068751-249.797474 66.584386-264.853178-5.301305-113.023814-58.738455-167.097122-102.84531-192.331332C595.442535 11.026714 557.061089 0.848209 514.226548 0H510.621661c-23.537793 0-69.765169 3.816939-114.084076 29.051149-44.530959 25.23421-98.816318 79.307517-104.117622 193.179541-1.484365 15.055705-15.055705 172.822531 66.584386 264.853178 36.89708 41.77428 87.153448 63.615655 149.284738 64.675917z m-159.251191-324.227791c0-0.636157 0.212052-1.272313 0.212052-1.696417 6.997722-152.041416 114.932284-168.369435 161.159661-168.369435H512.954235c57.25409 1.272313 154.586043 24.598053 161.15966 168.369435 0 0.636157 0 1.272313 0.212052 1.696417 0.212052 1.484365 15.055705 145.679851-52.376889 221.594533-26.718575 30.11141-62.343342 44.955063-109.206875 45.379168h-2.120522c-46.651481-0.424104-82.4883-15.267757-108.994823-45.379168-67.220543-75.490578-52.800994-220.32222-52.588942-221.594533zM947.449161 813.432181v-0.636157c0-1.696417-0.212052-3.392835-0.212052-5.301305-1.272313-41.986333-4.028992-140.166494-96.05964-171.550217-0.636157-0.212052-1.484365-0.424104-2.120521-0.636157-95.635535-24.386001-175.155105-79.519569-176.003314-80.155725-12.935183-9.118244-30.747567-5.937461-39.86581 6.997722-9.118244 12.935183-5.937461 30.747567 6.997722 39.86581 3.604887 2.544626 88.001657 61.283081 193.603644 88.425761 49.408159 17.600331 54.921516 70.401325 56.405881 118.749224 0 1.90847 0 3.604887 0.212053 5.301304 0.212052 19.084697-1.060261 48.55995-4.453096 65.524126-34.352454 19.508801-169.005591 86.941396-373.848002 86.941395-203.994202 0-339.495548-67.644647-374.060054-87.153448-3.392835-16.964175-4.8772-46.439428-4.453096-65.524125 0-1.696417 0.212052-3.392835 0.212053-5.301304 1.484365-48.347898 6.997722-101.148892 56.405881-118.749224 105.601988-27.14268 189.998758-86.093187 193.603644-88.425761 12.935183-9.118244 16.115966-26.930627 6.997722-39.86581-9.118244-12.935183-26.930627-16.115966-39.86581-6.997723-0.848209 0.636157-79.943674 55.769725-176.003314 80.155726-0.848209 0.212052-1.484365 0.424104-2.120521 0.636157-92.030648 31.595776-94.787327 129.775937-96.05964 171.550217 0 1.90847 0 3.604887-0.212052 5.301305v0.636156c-0.212052 11.026714-0.424104 67.644647 10.814661 96.05964 2.120522 5.513357 5.937461 10.178505 11.026714 13.359288 6.361566 4.241044 158.827086 101.360944 413.925864 101.360944s407.564299-97.331953 413.925865-101.360944c4.8772-3.180783 8.906192-7.845931 11.026713-13.359288 10.602609-28.202941 10.390557-84.820874 10.178505-95.847587z" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
src/main/resources/icons/menu/chat-dot-round.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M166.912 858.236928l138.24-46.08 24.576 11.264c55.979008 28.672 116.736 43.008 182.272 43.008 111.275008-3.412992 203.947008-39.764992 278.016-109.056s112.468992-153.088 115.2-251.392c-2.731008-98.304-41.131008-182.100992-115.2-251.392S623.275008 148.94592 512 145.532928c-111.275008 3.412992-203.947008 39.764992-278.016 109.056s-112.468992 153.088-115.2 251.392c0 35.499008 6.144 70.656 18.432 105.472s30.379008 67.584 54.272 98.304l22.528 29.696-47.104 118.784z m-47.104 83.968c-12.971008 4.096-24.064 1.195008-33.28-8.704s-11.435008-21.332992-6.656-34.304l59.392-149.504c-27.307008-36.180992-48.468992-74.923008-63.488-116.224-15.019008-41.300992-22.528-83.796992-22.528-127.488 2.731008-112.64 46.420992-210.772992 131.072-294.4s193.876992-127.488 327.68-131.584c133.803008 4.096 243.028992 47.956992 327.68 131.584s128.340992 181.76 131.072 294.4c-2.731008 112.64-46.420992 210.772992-131.072 294.4s-193.876992 127.488-327.68 131.584c-74.411008 0-145.067008-16.384-211.968-49.152l-180.224 59.392z m392.192-384c-9.556992 0-18.260992-2.219008-26.112-6.656-7.851008-4.436992-14.164992-10.923008-18.944-19.456s-7.168-17.236992-7.168-26.112c0-8.875008 2.388992-17.579008 7.168-26.112 4.779008-8.532992 11.092992-15.019008 18.944-19.456s16.555008-6.656 26.112-6.656c15.019008 0 27.476992 4.948992 37.376 14.848 9.899008 9.899008 14.848 22.356992 14.848 37.376 0 15.019008-4.948992 27.476992-14.848 37.376-9.899008 9.899008-22.356992 14.848-37.376 14.848z m196.608 0c-9.556992 0-18.260992-2.219008-26.112-6.656-7.851008-4.436992-14.164992-10.923008-18.944-19.456s-7.168-17.236992-7.168-26.112c0-8.875008 2.388992-17.579008 7.168-26.112 4.779008-8.532992 11.092992-15.019008 18.944-19.456s16.555008-6.656 26.112-6.656c15.019008 0 27.476992 4.948992 37.376 14.848 9.899008 9.899008 14.848 22.356992 14.848 37.376 0 15.019008-4.948992 27.476992-14.848 37.376-9.899008 9.899008-22.356992 14.848-37.376 14.848z m-393.216 0c-9.556992 0-18.260992-2.219008-26.112-6.656-7.851008-4.436992-14.164992-10.923008-18.944-19.456s-7.168-17.236992-7.168-26.112c0-8.875008 2.388992-17.579008 7.168-26.112 4.779008-8.532992 11.092992-15.019008 18.944-19.456s16.555008-6.656 26.112-6.656c15.019008 0 27.476992 4.948992 37.376 14.848 9.899008 9.899008 14.848 22.356992 14.848 37.376 0 15.019008-4.948992 27.476992-14.848 37.376-9.899008 9.899008-22.356992 14.848-37.376 14.848z" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
src/main/resources/icons/menu/collection.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M192 736h640V128H256q-27.008 0.992-44.992 19.008T192 192v544zM256 64h608q14.016 0 23.008 8.992T896 96v672q0 14.016-8.992 23.008T864 800H160l-32 58.016V192q0.992-54.016 37.504-90.496T256 64z m-16 736q-20 0.992-33.504 14.496T192.992 848t13.504 33.504T240 896H832v-96H240z m0-64H896v160q-0.992 27.008-19.008 44.992T832 960H240q-48-0.992-79.488-32.512T128 848q0.992-48 32.512-79.488T240 736zM384 128v251.008l96-76.992 96 76.992V128h-192z m-64-64h320v380.992q-0.992 20-18.496 28.512t-33.504-3.488L480 384l-108 86.016q-16 12-33.504 3.488T320 444.992V64z" /></svg>
|
After Width: | Height: | Size: 839 B |
1
src/main/resources/icons/menu/document-copy.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M896 832h-64v-64h64V128H384v64h-64V128a64 64 0 0 1 64-64h512a64 64 0 0 1 64 64v640a64 64 0 0 1-64 64z" /><path fill="#6e6e6e" d="M704 960H128a64 64 0 0 1-64-64V320a64 64 0 0 1 64-64h576a64 64 0 0 1 64 64v576a64 64 0 0 1-64 64zM128 320v576h576V320H128z" /><path fill="#6e6e6e" d="M576 544H288a32 32 0 0 1 0-64h288a32 32 0 0 1 0 64zM576 736H288a32 32 0 0 1 0-64h288a32 32 0 0 1 0 64z" /></svg>
|
After Width: | Height: | Size: 676 B |
1
src/main/resources/icons/menu/house-user.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="177.78px" viewBox="0 0 1152 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M446.20062 448c0-70.6 59.2-128 129.8-128 70.6 0 128 57.4 128 128s-57.4 128-128 128-129.8-57.4-129.8-128z m129.8 64c35.4 0 64-28.6 64-64s-28.6-64-64-64-65.8 28.6-65.8 64 30.4 64 65.8 64z m-161.8 288c0 17.6-12.6 32-32 32-15.8 0-32-14.4-32-32v-16c0-79.6 66.2-144 144-144H656.00062c79.6 0 144 64.4 144 144v16c0 17.6-14.4 32-32 32s-32-14.4-32-32v-16c0-44.2-35.8-80-80-80h-161.8c-42.4 0-80 35.8-80 80v16zM554.80062 8.004a32.078 32.078 0 0 1 42.4 0L1141.20062 488c13.2 11.6 14.4 30.2 1 45.2-9.8 13.2-30.2 14.4-43.4 1l-74.8-66V864c0 88.4-71.6 160-160 160H288.00062c-88.36 0-160-71.6-160-160V468.2l-74.82 66c-13.26 13.4-33.482 12.2-45.174-1-11.694-15-10.43-33.6 2.822-45.2L554.80062 8.004zM192.00062 413.4V864c0 53 43 96 96 96h576c53 0 96-43 96-96V413.4L576.00062 74.68 192.00062 413.4z" /></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
src/main/resources/icons/menu/menu.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M384 480H192c-52.8 0-96-43.2-96-96V192c0-52.8 43.2-96 96-96h192c52.8 0 96 43.2 96 96v192c0 52.8-43.2 96-96 96zM192 160c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32V192c0-17.6-14.4-32-32-32H192zM832 480H640c-52.8 0-96-43.2-96-96V192c0-52.8 43.2-96 96-96h192c52.8 0 96 43.2 96 96v192c0 52.8-43.2 96-96 96zM640 160c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32V192c0-17.6-14.4-32-32-32H640zM384 928H192c-52.8 0-96-43.2-96-96V640c0-52.8 43.2-96 96-96h192c52.8 0 96 43.2 96 96v192c0 52.8-43.2 96-96 96zM192 608c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32V640c0-17.6-14.4-32-32-32H192zM832 928H640c-52.8 0-96-43.2-96-96V640c0-52.8 43.2-96 96-96h192c52.8 0 96 43.2 96 96v192c0 52.8-43.2 96-96 96zM640 608c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32V640c0-17.6-14.4-32-32-32H640z" /></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
src/main/resources/icons/menu/monitor.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M544 768v128h192q14.016 0 23.008 8.992T768 928t-8.992 23.008T736 960H288q-14.016 0-23.008-8.992T256 928t8.992-23.008T288 896h192v-128H192q-54.016-0.992-90.496-37.504T64 640V256q0.992-54.016 37.504-90.496T192 128h640q54.016 0.992 90.496 37.504T960 256v384q-0.992 54.016-37.504 90.496T832 768h-288zM192 192q-27.008 0.992-44.992 19.008T128 256v384q0.992 27.008 19.008 44.992T192 704h640q27.008-0.992 44.992-19.008T896 640V256q-0.992-27.008-19.008-44.992T832 192H192z" /></svg>
|
After Width: | Height: | Size: 755 B |
1
src/main/resources/icons/menu/tools.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M825.312 566.816a127.04 127.04 0 0 0-91.616 62.624A127.232 127.232 0 0 0 725.248 740a318.976 318.976 0 0 1-113.216 65.472A127.072 127.072 0 0 0 512 757.44a127.2 127.2 0 0 0-100.064 48A319.232 319.232 0 0 1 298.72 740a127.232 127.232 0 0 0-8.416-110.56 127.04 127.04 0 0 0-91.648-62.624 323.232 323.232 0 0 1 0-130.784 127.104 127.104 0 0 0 91.648-62.592 127.296 127.296 0 0 0 8.416-110.592 318.976 318.976 0 0 1 113.216-65.472A127.232 127.232 0 0 0 512 245.44c39.712 0 76.064-17.92 100.032-48.064a318.72 318.72 0 0 1 113.216 65.472 127.328 127.328 0 0 0 8.448 110.592 127.104 127.104 0 0 0 91.616 62.592 321.536 321.536 0 0 1 0 130.784m56.16-170.304a31.776 31.776 0 0 0-32.832-23.2 63.584 63.584 0 0 1-59.52-31.872 63.744 63.744 0 0 1 2.112-67.52 32 32 0 0 0-3.68-39.936 383.392 383.392 0 0 0-181.696-104.992 31.968 31.968 0 0 0-36.48 16.832A63.68 63.68 0 0 1 512 181.44a63.68 63.68 0 0 1-57.376-35.616 32 32 0 0 0-36.48-16.832 383.264 383.264 0 0 0-181.696 104.96 32 32 0 0 0-3.712 40 63.68 63.68 0 0 1 2.112 67.488 63.68 63.68 0 0 1-59.52 31.872 31.52 31.52 0 0 0-32.8 23.2A383.136 383.136 0 0 0 128 501.44c0 35.648 4.864 70.944 14.528 104.896a31.904 31.904 0 0 0 32.8 23.2 64.032 64.032 0 0 1 59.52 31.904c12.256 21.184 11.456 47.04-2.112 67.456a32 32 0 0 0 3.712 39.968 382.88 382.88 0 0 0 181.696 104.96 31.936 31.936 0 0 0 36.48-16.8A63.648 63.648 0 0 1 512 821.44c24.512 0 46.496 13.632 57.376 35.584a32 32 0 0 0 36.48 16.832 383.04 383.04 0 0 0 181.696-104.992 32 32 0 0 0 3.68-40 63.68 63.68 0 0 1-2.112-67.424 63.136 63.136 0 0 1 59.52-31.904c15.04 0.896 28.704-8.736 32.832-23.2A384.64 384.64 0 0 0 896 501.44c0-35.648-4.896-70.944-14.528-104.96M512 597.44c-52.928 0-96-43.104-96-96 0-52.96 43.072-96 96-96s96 43.04 96 96c0 52.896-43.072 96-96 96m0-256c-88.224 0-160 71.744-160 160 0 88.224 71.776 160 160 160s160-71.808 160-160c0-88.256-71.776-160-160-160" /></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
src/main/resources/icons/menu/user.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#6e6e6e" d="M517.461333 31.957333a218.752 218.752 0 0 1 115.626667 35.584c59.349333 38.058667 99.882667 100.736 118.613333 168.021334 4.48 16.128 7.765333 32.597333 9.856 49.237333 11.008 87.424-10.709333 180.352-66.346666 249.642667-10.282667 12.842667-21.76 24.576-34.133334 35.456l-0.256 0.213333-9.216 20.138667 90.752 23.04c5.845333 0 11.690667-0.042667 17.536 0.128a244.821333 244.821333 0 0 1 63.189334 10.965333 235.818667 235.818667 0 0 1 102.229333 65.578667c12.714667 13.994667 23.509333 29.44 32.682667 45.952 16.213333 30.506667 31.957333 61.269333 47.957333 91.904a115.2 115.2 0 0 1 12.416 44.672c0.682667 10.709333-0.213333 21.504-2.56 31.957333a113.237333 113.237333 0 0 1-60.842667 76.458667 113.706667 113.706667 0 0 1-45.184 11.093333c-264.021333 4.309333-528.085333 0.085333-792.149333 0.085333a112.64 112.64 0 0 1-72.490667-26.709333 113.28 113.28 0 0 1-39.68-89.301333 113.024 113.024 0 0 1 11.050667-45.226667c16-31.914667 32.725333-63.445333 49.493333-94.933333a235.477333 235.477333 0 0 1 150.272-115.84 241.706667 241.706667 0 0 1 55.893334-6.784h14.72l87.381333-22.186667-11.562667-25.216a291.797333 291.797333 0 0 1-17.450666-17.28 302.592 302.592 0 0 1-36.138667-48.938667 322.474667 322.474667 0 0 1-34.901333-86.144c-24.234667-97.450667-5.674667-207.317333 56.874666-287.061333 12.032-15.36 25.685333-29.525333 40.789334-41.941333a237.184 237.184 0 0 1 63.104-37.418667 219.050667 219.050667 0 0 1 75.861333-15.146667h6.613333z m-5.632 64a153.642667 153.642667 0 0 0-55.424 11.52c-48.042667 19.754667-83.968 61.696-104.874666 108.373334-26.24 58.709333-30.506667 127.232-13.44 189.098666A245.76 245.76 0 0 0 388.266667 500.650667c6.698667 7.722667 13.952 14.848 21.674666 21.546666l2.432 2.346667c0.725333 0.896 1.493333 1.706667 2.176 2.602667 1.834667 2.432 2.090667 3.2 3.498667 5.888l30.421333 66.304a32.298667 32.298667 0 0 1-9.472 38.613333 35.541333 35.541333 0 0 1-11.776 5.717333l-128.426666 32.64c-2.602667 0.512-2.602667 0.512-5.248 0.853334-9.045333 0.384-18.133333 0-27.221334 0.213333a171.605333 171.605333 0 0 0-144.085333 89.088c-16.256 30.592-32.512 61.184-48.042667 92.117333a50.773333 50.773333 0 0 0-4.736 19.498667c-0.597333 18.944 10.325333 36.949333 27.392 45.184 6.101333 2.944 12.672 4.437333 19.456 4.778667 263.765333 4.266667 527.616 4.266667 791.381334 0 6.784-0.341333 13.354667-1.834667 19.456-4.778667 17.109333-8.234667 27.989333-26.24 27.392-45.184a50.773333 50.773333 0 0 0-4.736-19.498667c-15.530667-30.933333-31.786667-61.525333-48.042667-92.117333a177.92 177.92 0 0 0-23.765333-33.408 171.861333 171.861333 0 0 0-117.376-55.552c-7.424-0.384-14.848-0.213333-22.272-0.213333l-2.645334-0.128c-2.645333-0.341333-2.602667-0.341333-5.205333-0.853334l-131.882667-33.493333a36.053333 36.053333 0 0 1-11.776-5.76 32.256 32.256 0 0 1-12.117333-29.098667 38.186667 38.186667 0 0 1 2.688-9.472l28.245333-61.610666c1.194667-2.304 1.408-2.901333 2.858667-5.034667 1.493333-2.133333 2.005333-2.517333 3.754667-4.437333 3.797333-3.413333 7.808-6.613333 11.605333-10.069334 7.68-7.168 14.848-14.805333 21.418667-22.954666a248.192 248.192 0 0 0 45.354666-90.965334c16.554667-61.482667 12.16-129.322667-13.866666-187.562666-20.565333-45.994667-55.765333-87.338667-102.741334-107.477334a153.728 153.728 0 0 0-55.253333-12.373333l-6.954667-0.042667z" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
7
src/main/resources/icons/mima.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M288 384v-74.666667c0-123.722667 100.266667-224 224-224s224 100.224 224 224v74.666667h10.677333C811.445333 384 864 436.597333 864 501.333333v320c0 64.821333-52.469333 117.333333-117.322667 117.333334H277.333333C212.554667 938.666667 160 886.069333 160 821.333333V501.333333c0-64.821333 52.469333-117.333333 117.322667-117.333333H288z m64 0h320v-74.666667c0-88.426667-71.605333-160-160-160-88.384 0-160 71.626667-160 160v74.666667zM224 501.333333v320c0 29.397333 23.914667 53.333333 53.322667 53.333334H746.666667A53.269333 53.269333 0 0 0 800 821.333333V501.333333c0-29.397333-23.914667-53.333333-53.322667-53.333333H277.333333A53.269333 53.269333 0 0 0 224 501.333333z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 990 B |
6
src/main/resources/icons/qq.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M110.08 808.409c22.43 7.581 46.927 2.973 68.962-13.135 0.572 0.886 1.123 1.752 1.694 2.619-37.632 22.961-58.624 55.02-58.624 90.762 0 73.511 86.469 126.858 205.627 126.858 63.193 0 121.758-16.404 159.39-44.288 12.229 0.689 23.138 0.689 35.505 0.02 37.632 27.864 96.177 44.268 159.37 44.268 119.138 0 205.646-53.347 205.646-126.858 0-35.663-20.913-67.624-58.387-90.605a99.888 99.888 0 0 0 1.713-2.638c21.977 15.99 46.316 20.618 68.766 13.016 67.17-22.823 70.833-140.012 40.192-238.69-16.266-52.342-46.16-93.361-71.07-120.655 0.295-3.78 0.453-7.542 0.453-11.343 0-28.947-7.582-57.029-22.528-83.672v-0.374c0-190.327-153.265-345.187-341.642-345.187-188.396 0-341.661 154.86-341.661 345.187v1.22c-14.632 26.388-22.056 54.213-22.056 82.807 0 3.446 0.118 6.931 0.394 10.476-25.226 27.451-55.473 68.785-71.857 121.54-30.661 98.718-26.998 215.868 40.113 238.672z m7.956-223.725c15.242-49.132 45.45-86.96 68.096-110.02a25.196 25.196 0 0 0 6.892-21.564c-0.827-5.317-1.26-10.397-1.26-15.34 0-21.681 6.301-43.047 18.688-63.429a25.488 25.488 0 0 0 3.623-14.828 79.882 79.882 0 0 1-0.236-5.79c0-162.56 130.678-294.813 291.288-294.813s291.289 132.253 291.289 294.813c0 1.753-0.079 3.446-0.197 5.16a25.277 25.277 0 0 0 3.683 14.828c12.642 20.559 19.042 42.102 19.042 64.04 0 5.159-0.453 10.377-1.359 15.93-1.339 7.917 1.221 15.951 6.833 21.721 22.37 22.902 52.264 60.475 67.407 109.292 26.959 86.784 17.507 167.286-8.211 176.03-13.332 4.51-29.125-9.708-38.952-21.445-5.336-6.42-13.41-9.807-21.937-8.881a25.137 25.137 0 0 0-19.594 13.233 324.714 324.714 0 0 1-31.252 47.97 25.242 25.242 0 0 0-4.549 21.918 25.215 25.215 0 0 0 14.69 16.876c35.152 14.651 55.277 35.88 55.277 58.25 0 42.181-69.651 76.485-155.274 76.485-55.512 0-107.185-14.828-134.813-38.715a25.174 25.174 0 0 0-16.463-6.124c-0.61 0-1.26 0.02-1.87 0.078-17.389 1.3-30.957 1.28-47.853-0.02-6.932-0.61-13.351 1.675-18.393 6.046-27.667 23.907-79.34 38.735-134.872 38.735-85.603 0-155.254-34.304-155.254-76.485 0-22.45 20.243-43.737 55.512-58.368 7.286-3.033 12.721-9.236 14.71-16.876a25.113 25.113 0 0 0-4.51-21.918c-11.874-15.183-22.37-31.35-31.231-48.049a25.163 25.163 0 0 0-19.633-13.253c-8.468-0.886-16.581 2.462-21.957 8.881-9.886 11.835-25.522 26.349-39.11 21.622-25.776-8.704-35.19-89.186-8.25-175.99z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
5328
src/main/resources/icons/quanxian.svg
Normal file
After Width: | Height: | Size: 183 KiB |
6
src/main/resources/icons/refresh.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M939.456 256.224c-16.672-5.984-34.976 2.72-40.896 19.36l-24.768 69.344c-28.992-65.312-74.784-122.72-133.088-165.92-185.376-137.28-449.408-99.776-588.384 83.648-67.264 88.768-95.616 198.176-79.84 308.032 15.84 110.304 74.208 207.776 164.352 274.496 75.424 55.808 163.808 82.752 251.456 82.752 128.032 0 254.56-57.44 336.992-166.272 36.48-48.128 61.472-102.08 74.208-160.416 3.776-17.248-7.136-34.304-24.416-38.08-17.216-3.712-34.304 7.104-38.08 24.416-10.784 49.184-31.872 94.752-62.72 135.456-117.888 155.52-341.92 187.232-499.392 70.72-76.288-56.48-125.664-138.912-139.072-232.16-13.344-92.8 10.656-185.248 67.488-260.288 117.856-155.584 341.792-187.424 499.328-70.848 57.024 42.24 99.84 100.608 122.976 166.624l-109.984-42.944c-16.416-6.368-35.008 1.696-41.44 18.176-6.432 16.48 1.728 35.008 18.176 41.44l161.856 63.2c3.808 1.472 7.744 2.208 11.616 2.208 0.544 0 1.024-0.192 1.568-0.224 1.216 0.128 2.432 0.64 3.648 0.64 13.12 0 25.472-8.16 30.112-21.248l57.632-161.184c5.984-16.672-2.688-35.008-19.328-40.928z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
7
src/main/resources/icons/rili.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M192.512 1012.622c-65.536 0-118.329-52.793-118.329-118.329v-700.871c0-65.536 52.793-118.329 118.329-118.329h72.818v-63.715h45.511v63.715h400.498v-63.715h45.511v63.715h72.818c65.536 0 118.329 52.793 118.329 118.329v700.871c0 65.536-52.793 118.329-118.329 118.329h-637.155zM119.694 894.293c0 40.050 32.768 72.818 72.818 72.818h637.155c40.050 0 72.818-32.768 72.818-72.818v-518.827h-782.791v518.827zM192.512 120.605c-40.050 0-72.818 32.768-72.818 72.818v136.533h782.791v-136.533c0-40.050-32.768-72.818-72.818-72.818h-72.818v63.715h-45.511v-63.715h-400.498v63.715h-45.511v-63.715h-72.818z" fill="#6E6E6E"/>
|
||||
<path d="M265.33 521.102h491.52v45.511h-491.52zM265.33 714.069h491.52v45.511h-491.52z" fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1003 B |
7
src/main/resources/icons/shoujihao.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M584.533333 742.4h-140.8c-8.533333 0-17.066667-8.533333-17.066666-17.066667s8.533333-17.066667 17.066666-17.066666h140.8c8.533333 0 17.066667 8.533333 17.066667 17.066666s-8.533333 17.066667-17.066667 17.066667z"/>
|
||||
<path fill="#6E6E6E" d="M691.2 896H332.8c-46.933333 0-89.6-38.4-89.6-89.6V217.6C247.466667 170.666667 285.866667 128 332.8 128h358.4c46.933333 0 89.6 38.4 89.6 89.6v588.8c-4.266667 46.933333-42.666667 89.6-89.6 89.6zM332.8 166.4c-29.866667 0-51.2 25.6-51.2 51.2v588.8c0 29.866667 25.6 51.2 51.2 51.2h358.4c29.866667 0 51.2-25.6 51.2-51.2V217.6c0-29.866667-25.6-51.2-51.2-51.2H332.8z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 912 B |
7
src/main/resources/icons/skin.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M706.545 128.019a63.985 63.985 0 0 1 48.599 22.363l172.835 201.763-63.996 127.857-41.374-41.371c-6.25-6.248-14.437-9.372-22.624-9.372-8.188 0-16.374 3.124-22.624 9.372a32.006 32.006 0 0 0-9.375 22.626v402.727c0 17.672-14.327 31.998-31.999 31.998H320.01c-17.671 0-31.998-14.326-31.998-31.998V461.256c0-17.672-14.328-31.998-32-31.998a31.997 31.997 0 0 0-22.624 9.372l-41.373 41.371L96.02 352.007l172.835-201.64a63.987 63.987 0 0 1 48.592-22.348h6.507a95.97 95.97 0 0 1 50.13 14.132C428.37 175.394 474.338 192.015 512 192.015s83.629-16.621 137.915-49.864a95.968 95.968 0 0 1 50.13-14.132h6.5m0-63.998h-6.5a159.89 159.89 0 0 0-83.557 23.558C561.904 121 529.537 128.018 512 128.018c-17.538 0-49.904-7.017-104.495-40.446a159.881 159.881 0 0 0-83.55-23.55h-6.508a127.823 127.823 0 0 0-97.182 44.701L47.428 310.36c-19.522 22.774-20.6 56.05-2.61 80.047L140.815 518.4a63.998 63.998 0 0 0 83.199 17.025v328.558c0 52.932 43.06 95.995 95.995 95.995h415.98c52.935 0 95.996-43.063 95.996-95.995V535.425a64.028 64.028 0 0 0 42.24 7.749 64.014 64.014 0 0 0 46.99-34.528l63.997-127.857c11.522-23.028 8.125-50.722-8.633-70.279L803.744 108.747c-24.336-28.422-59.77-44.726-97.2-44.726z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
src/main/resources/icons/success.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#333333" d="M512 74.666667C270.933333 74.666667 74.666667 270.933333 74.666667 512S270.933333 949.333333 512 949.333333 949.333333 753.066667 949.333333 512 753.066667 74.666667 512 74.666667z m238.933333 349.866666l-2.133333 2.133334-277.333333 277.333333c-10.666667 10.666667-29.866667 12.8-42.666667 2.133333L426.666667 704l-149.333334-149.333333c-12.8-12.8-12.8-32 0-44.8 10.666667-10.666667 29.866667-12.8 42.666667-2.133334l2.133333 2.133334 125.866667 125.866666 253.866667-253.866666c10.666667-10.666667 29.866667-12.8 42.666666-2.133334l2.133334 2.133334c12.8 12.8 12.8 32 4.266666 42.666666z" /></svg>
|
After Width: | Height: | Size: 881 B |
9
src/main/resources/icons/theme-dark.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6e6e6e"
|
||||
d="M795.648 334.848H228.352C130.56 334.848 51.2 414.208 51.2 512s79.36 177.152 177.152 177.152h567.296c97.792 0 177.152-79.36 177.152-177.152s-79.36-177.152-177.152-177.152z m-424.96 256.512c-10.752 7.168-23.04 11.776-35.84 14.336-12.8 2.048-25.6 2.048-38.4-0.512s-24.576-8.192-35.328-15.36c-10.752-7.168-19.456-16.896-26.624-27.648-14.336-22.016-18.944-48.64-13.312-74.24s20.992-48.128 43.008-61.952c9.728-6.144 20.992-10.752 32.256-13.312-24.064 32.256-27.136 76.8-4.096 112.128 10.752 16.896 26.624 30.208 45.056 37.888 18.432 7.68 38.912 9.216 58.368 5.12-6.656 9.216-15.36 17.408-25.088 23.552z m424.96 80.384h-389.12c24.064-8.192 46.592-22.016 65.024-40.448 31.744-31.744 49.152-74.24 49.152-119.296 0-44.544-17.92-87.552-49.152-119.296-18.432-18.432-40.96-32.256-65.024-40.448h389.12c88.064 0 159.744 71.68 159.744 159.744-0.512 88.064-71.68 159.744-159.744 159.744z"/>
|
||||
<path fill="#6e6e6e"
|
||||
d="M718.336 438.272c3.584 0 6.656-1.536 9.216-4.096s4.096-5.632 4.096-9.216v-16.384c0-1.536-0.512-3.584-1.024-5.12-0.512-1.536-1.536-3.072-3.072-4.096-1.024-1.024-2.56-2.048-4.096-3.072-1.536-0.512-3.072-1.024-5.12-1.024-1.536 0-3.584 0.512-5.12 1.024-1.536 0.512-3.072 1.536-4.096 3.072-1.024 1.024-2.048 2.56-3.072 4.096-0.512 1.536-1.024 3.072-1.024 5.12V424.96c0 3.584 1.536 6.656 4.096 9.216s5.632 4.096 9.216 4.096zM727.552 586.752c-1.024-1.024-2.56-2.048-4.096-3.072-1.536-0.512-3.072-1.024-5.12-1.024-3.584 0-6.656 1.536-9.216 4.096s-4.096 5.632-4.096 9.216v16.384c0 3.584 1.536 6.656 4.096 9.216s5.632 4.096 9.216 4.096 6.656-1.536 9.216-4.096 4.096-5.632 4.096-9.216v-16.384c0-1.536-0.512-3.584-1.024-5.12-1.024-1.024-1.536-2.56-3.072-4.096zM646.144 510.464c0-3.584-1.536-6.656-4.096-9.216s-5.632-4.096-9.216-4.096h-16.384c-1.536 0-3.584 0.512-5.12 1.024-1.536 0.512-3.072 1.536-4.096 3.072-1.024 1.024-2.048 2.56-3.072 4.096-0.512 1.536-1.024 3.072-1.024 5.12 0 7.168 5.632 13.312 13.312 13.312h16.384c3.584 0 6.656-1.536 9.216-4.096 2.56-2.048 4.096-5.632 4.096-9.216zM820.224 497.664H803.84c-1.536 0-3.584 0.512-5.12 1.024-1.536 0.512-3.072 1.536-4.096 3.072-1.024 1.024-2.048 2.56-3.072 4.096-0.512 1.536-1.024 3.072-1.024 5.12 0 7.168 6.144 13.312 13.312 13.312h16.384c3.584 0 6.656-1.536 9.216-4.096s4.096-5.632 4.096-9.216-1.536-6.656-4.096-9.216c-2.048-3.072-5.632-4.096-9.216-4.096zM648.704 459.264c1.024 1.536 2.56 2.56 4.096 3.072 1.536 0.512 3.584 1.024 5.12 1.024 1.536 0 3.584-0.512 5.12-1.024 1.536-0.512 3.072-1.536 4.608-3.072 1.024-1.024 2.048-2.56 3.072-4.608 0.512-1.536 1.024-3.584 1.024-5.12 0-1.536-0.512-3.584-1.024-5.12-0.512-1.536-1.536-3.072-3.072-4.096l-11.776-11.776c-2.56-2.56-5.632-4.096-9.216-4.096s-6.656 1.536-9.216 4.096-4.096 5.632-4.096 9.216 1.536 6.656 4.096 9.216l11.264 12.288zM787.968 561.664c-2.56-2.56-5.632-4.096-9.216-4.096s-6.656 1.536-9.216 4.096-4.096 5.632-4.096 9.216 1.536 6.656 4.096 9.216l11.776 11.776c2.56 2.56 5.632 3.584 9.216 3.584s6.656-1.536 9.216-4.096 3.584-5.632 4.096-9.216c0-3.584-1.024-6.656-3.584-9.216l-12.288-11.264zM657.92 558.08c-3.584 0-6.656 1.024-9.216 3.584l-11.776 11.776c-2.56 2.56-4.096 5.632-4.096 9.216s1.536 6.656 4.096 9.216 5.632 4.096 9.216 4.096 6.656-1.536 9.216-4.096l11.776-11.776c2.56-2.56 3.584-5.632 3.584-9.216s-1.536-6.656-4.096-9.216c-2.048-2.048-5.632-3.584-8.704-3.584zM769.536 459.264c2.56 2.56 5.632 4.096 9.216 4.096s6.656-1.536 9.216-4.096l11.776-11.776c1.536-1.024 2.56-2.56 3.072-4.096 0.512-1.536 1.024-3.584 1.024-5.12 0-1.536-0.512-3.584-1.024-5.12-0.512-1.536-1.536-3.072-3.072-4.608-1.024-1.024-2.56-2.048-4.608-3.072-1.536-0.512-3.584-1.024-5.12-1.024-1.536 0-3.584 0.512-5.12 1.024-1.536 0.512-3.072 1.536-4.096 3.072l-11.776 11.776c-1.024 1.024-2.048 2.56-3.072 4.096-0.512 1.536-1.024 3.072-1.024 5.12 0 1.536 0.512 3.584 1.024 5.12 1.536 2.048 2.56 3.584 3.584 4.608zM763.904 491.52c-2.56-6.144-6.144-11.264-10.752-15.872-4.608-4.608-10.24-8.192-15.872-10.752-6.144-2.56-12.288-3.584-18.944-3.584-13.312 0-25.6 5.12-34.816 14.336-9.216 9.216-14.336 22.016-14.336 34.816 0 13.312 5.12 25.6 14.336 34.816s22.016 14.336 34.816 14.336c6.656 0 12.8-1.024 18.944-3.584 6.144-2.56 11.264-6.144 15.872-10.752 4.608-4.608 8.192-10.24 10.752-15.872 2.56-6.144 3.584-12.288 3.584-18.944 0-6.144-1.024-12.8-3.584-18.944z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
9
src/main/resources/icons/theme-light.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6e6e6e"
|
||||
d="M795.648 334.848H228.352C130.56 334.848 51.2 414.208 51.2 512s79.36 177.152 177.152 177.152h567.296c97.792 0 177.152-79.36 177.152-177.152s-79.36-177.152-177.152-177.152z m-29.184 108.544c0.512-1.536 1.536-3.072 3.072-4.096l11.776-11.776c1.024-1.536 2.56-2.56 4.096-3.072 1.536-0.512 3.584-1.024 5.12-1.024 1.536 0 3.584 0.512 5.12 1.024 1.536 0.512 3.072 1.536 4.608 3.072 1.024 1.024 2.048 2.56 3.072 4.608 0.512 1.536 1.024 3.584 1.024 5.12 0 1.536-0.512 3.584-1.024 5.12-0.512 1.536-1.536 3.072-3.072 4.096l-11.776 11.776c-2.56 2.56-5.632 4.096-9.216 4.096s-6.656-1.536-9.216-4.096c-1.024-1.024-2.048-2.56-3.072-4.096-0.512-1.536-1.024-3.072-1.024-5.12-0.512-2.048 0-4.096 0.512-5.632z m-61.44-36.352c0-1.536 0.512-3.584 1.024-5.12 0.512-1.536 1.536-3.072 3.072-4.096 1.024-1.024 2.56-2.048 4.096-3.072 1.536-0.512 3.072-1.024 5.12-1.024 1.536 0 3.584 0.512 5.12 1.024 1.536 0.512 3.072 1.536 4.096 3.072 1.024 1.024 2.048 2.56 3.072 4.096 0.512 1.536 1.024 3.072 1.024 5.12v16.384c0 3.584-1.536 6.656-4.096 9.216s-5.632 4.096-9.216 4.096-6.656-1.536-9.216-4.096-4.096-5.632-4.096-9.216v-16.384z m-68.096 20.48c2.56-2.56 5.632-4.096 9.216-4.096s6.656 1.536 9.216 4.096l11.776 11.776c1.536 1.024 2.56 2.56 3.072 4.096 0.512 1.536 1.024 3.584 1.024 5.12 0 1.536-0.512 3.584-1.024 5.12-0.512 1.536-1.536 3.072-3.072 4.608-1.024 1.024-2.56 2.048-4.608 3.072-1.536 0.512-3.584 1.024-5.12 1.024-1.536 0-3.584-0.512-5.12-1.024-1.536-0.512-3.072-1.536-4.096-3.072l-11.776-11.776c-2.56-2.56-4.096-5.632-4.096-9.216s2.048-7.168 4.608-9.728z m-408.576 244.224c-88.064 0-159.744-71.68-159.744-159.744s71.68-159.744 159.744-159.744h389.12c-24.064 8.192-46.592 22.016-65.024 40.448-31.744 31.744-49.152 74.24-49.152 119.296 0 44.544 17.92 87.552 49.152 119.296 18.432 18.432 40.96 32.256 65.024 40.448h-389.12z m388.096-149.504c-7.168 0-13.312-6.144-13.312-13.312 0-1.536 0.512-3.584 1.024-5.12 0.512-1.536 1.536-3.072 3.072-4.096 1.024-1.024 2.56-2.048 4.096-3.072 1.536-0.512 3.072-1.024 5.12-1.024h16.384c3.584 0 6.656 1.536 9.216 4.096s4.096 5.632 4.096 9.216-1.536 6.656-4.096 9.216-5.632 4.096-9.216 4.096h-16.384z m50.688 56.832l-11.776 11.776c-2.56 2.56-5.632 4.096-9.216 4.096s-6.656-1.536-9.216-4.096-4.096-5.632-4.096-9.216 1.536-6.656 4.096-9.216l11.776-11.776c2.56-2.56 5.632-3.584 9.216-3.584s6.656 1.536 9.216 4.096 3.584 5.632 4.096 9.216c-0.512 2.56-1.536 6.144-4.096 8.704z m64.512 32.256c0 3.584-1.536 6.656-4.096 9.216s-5.632 4.096-9.216 4.096-6.656-1.536-9.216-4.096-4.096-5.632-4.096-9.216v-16.384c0-3.584 1.536-6.656 4.096-9.216s5.632-4.096 9.216-4.096c1.536 0 3.584 0.512 5.12 1.024 1.536 0.512 3.072 1.536 4.096 3.072 1.024 1.024 2.048 2.56 3.072 4.096 0.512 1.536 1.024 3.072 1.024 5.12v16.384z m21.504-67.584c-4.608 4.608-10.24 8.192-15.872 10.752-6.144 2.56-12.288 3.584-18.944 3.584-13.312 0-25.6-5.12-34.816-14.336-9.216-9.216-14.336-22.016-14.336-34.816 0-13.312 5.12-25.6 14.336-34.816 9.216-9.216 22.016-14.336 34.816-14.336 6.656 0 12.8 1.024 18.944 3.584 6.144 2.56 11.264 6.144 15.872 10.752 4.608 4.608 8.192 10.24 10.752 15.872s3.584 12.288 3.584 18.944c0 6.656-1.024 12.8-3.584 18.944-2.56 6.144-6.144 11.264-10.752 15.872z m46.592 46.592c-2.56 2.56-5.632 3.584-9.216 4.096-3.584 0-6.656-1.024-9.216-3.584l-11.776-11.776c-2.56-2.56-4.096-5.632-4.096-9.216s1.536-6.656 4.096-9.216 5.632-4.096 9.216-4.096 6.656 1.536 9.216 4.096l11.776 11.776c2.56 2.56 3.584 5.632 3.584 9.216 0 3.072-1.536 6.144-3.584 8.704z m29.696-72.192c-2.56 2.56-5.632 4.096-9.216 4.096H803.84c-7.168 0-13.312-6.144-13.312-13.312 0-1.536 0.512-3.584 1.024-5.12 0.512-1.536 1.536-3.072 3.072-4.096 1.024-1.024 2.56-2.048 4.096-3.072 1.536-0.512 3.072-1.024 5.12-1.024h16.384c3.584 0 6.656 1.536 9.216 4.096s4.096 5.632 4.096 9.216-1.536 7.168-4.096 9.216z"/>
|
||||
<path fill="#6e6e6e"
|
||||
d="M337.92 563.712c-18.432-7.68-34.304-20.992-45.056-37.888-23.04-35.84-19.456-80.384 4.096-112.128-11.264 2.56-22.528 6.656-32.256 13.312-22.016 14.336-37.376 36.352-43.008 61.952-5.632 25.6-0.512 52.224 13.312 74.24 7.168 10.752 15.872 20.48 26.624 27.648 10.752 7.168 22.528 12.8 35.328 15.36s25.6 3.072 38.4 0.512c12.8-2.048 25.088-7.168 35.84-14.336 9.728-6.656 18.432-14.848 25.6-24.064-19.968 4.608-40.448 3.072-58.88-4.608z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
7
src/main/resources/icons/tishi.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="48px" height="48.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M512 127.8c-213.7 0-384.2 170.5-384.2 384.2S298.3 896.2 512 896.2 896.2 725.7 896.2 512 725.7 127.8 512 127.8z m-29.2 199.3c8-8 14.8-13.3 27.7-13.3 14.4-1.1 27.7 5.7 33 15.9 6.1 7.2 9.5 23.2 8 32.6 0 2.7-1.9 20.5-2.7 25.4l-10.6 134.8c0 13.3-2.7 26.6-8 36.8-2.7 8-10.6 13.3-21.3 13.3-8 0-15.9-5.3-18.6-13.3-5.3-13.3-8-23.9-8-36.8l-7.2-132.1c-2.7-23.9-2.7-15.9-2.7-29.2 0.1-12.8 2.8-23.5 10.4-34.1z m58.4 372.4c-8 8-18.6 10.6-26.6 10.6-10.6 0-21.3-2.7-29.2-10.6-8-8-13.3-18.6-13.3-31.5 0-10.6 2.7-21.3 10.6-29.2 8-8 18.6-13.3 29.2-13.3 10.6 0 21.3 5.3 29.2 13.3 8 8 10.6 18.6 10.6 29.2-0.2 12.9-2.9 23.5-10.5 31.5z m0 0"
|
||||
fill="#6e6e6e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 936 B |
7
src/main/resources/icons/user-filling.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M512 74.666667C270.933333 74.666667 74.666667 270.933333 74.666667 512S270.933333 949.333333 512 949.333333 949.333333 753.066667 949.333333 512 753.066667 74.666667 512 74.666667z m0 160c70.4 0 128 57.6 128 128s-57.6 128-128 128-128-57.6-128-128 57.6-128 128-128z m236.8 507.733333c-23.466667 32-117.333333 100.266667-236.8 100.266667s-213.333333-68.266667-236.8-100.266667c-8.533333-10.666667-10.666667-21.333333-8.533333-32 29.866667-110.933333 130.133333-187.733333 245.333333-187.733333s215.466667 76.8 245.333333 187.733333c2.133333 10.666667 0 21.333333-8.533333 32z"
|
||||
fill="#6e6e6e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 894 B |
3
src/main/resources/icons/user-manage.svg
Normal file
After Width: | Height: | Size: 82 KiB |
7
src/main/resources/icons/user.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M823.04 970.24a45.013333 45.013333 0 0 1-45.824-45.781333v-131.413334c0-102.314667-44.288-145.066667-145.109333-145.066666H364.757333c-102.314667 0-145.066667 44.288-145.066666 145.066666v131.413334c0 25.941333-19.882667 45.824-45.866667 45.824A45.013333 45.013333 0 0 1 128 924.458667v-131.413334c0-152.746667 84.053333-236.757333 236.8-236.757333h267.306667c152.746667 0 236.8 84.053333 236.8 236.8v131.370667c0 24.448-19.882667 45.824-45.866667 45.824zM497.664 518.101333a232.106667 232.106667 0 0 1-232.192-232.192 232.106667 232.106667 0 0 1 232.192-232.192 232.106667 232.106667 0 0 1 232.192 232.192 232.106667 232.106667 0 0 1-232.192 232.192z m0-372.736A140.16 140.16 0 0 0 357.12 285.909333a140.16 140.16 0 0 0 140.544 140.544 140.16 140.16 0 0 0 140.544-140.544 140.16 140.16 0 0 0-140.544-140.544z"
|
||||
fill="#6e6e6e"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
src/main/resources/icons/warning.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill="#333333" d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64z m-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296z m32 440c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z" /></svg>
|
After Width: | Height: | Size: 540 B |
7
src/main/resources/icons/weixin.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M506.942 345.921c25.259 0 42.134-16.916 42.134-42.107 0-25.477-16.848-41.956-42.134-41.956-25.299 0-50.668 16.48-50.668 41.956 0.028 25.204 25.409 42.107 50.668 42.107l0 0zM506.942 345.921zM271.257 261.857c-25.259 0-50.79 16.48-50.79 41.956 0 25.19 25.532 42.107 50.79 42.107 25.163 0 42.012-16.916 42.012-42.107-0.014-25.477-16.834-41.956-42.012-41.956l0 0zM271.257 261.857zM1010.654 615.492c0-133.202-123.563-246.702-275.237-258.512 0.205-1.652 0.301-3.373-0.068-5.092-30.406-141.79-182.886-248.695-354.7-248.695-194.15 0-352.119 135.387-352.119 301.793 0 89.279 45.574 169.725 131.946 233.158l-30.106 90.508c-1.939 5.885-0.177 12.37 4.506 16.452 2.853 2.458 6.445 3.741 10.076 3.741 2.335 0 4.697-0.546 6.867-1.625l113.036-56.565 13.926 2.827c34.802 7.154 64.853 13.353 101.868 13.353 10.895 0 40.878-3.987 43.404-7.182 40.755 101.99 153.094 175.61 285.273 175.61 33.86 0 68.13-8.164 98.891-15.866l87.136 47.636c2.307 1.257 4.847 1.911 7.359 1.911 3.441 0 6.881-1.161 9.639-3.413 4.847-3.932 6.841-10.404 5.038-16.33l-22.255-74.001c74.602-58.955 115.521-129.488 115.521-199.708l0 0zM409.798 665.75c-9.626 0.833-19.388 1.243-29.082 1.243-32.686 0-60.334-5.652-92.31-12.26l-18.582-3.755c-3.195-0.683-6.567-0.245-9.503 1.269l-81.687 40.892 21.231-63.775c2.076-6.24-0.205-13.053-5.57-16.821-82.07-57.207-123.659-126.894-123.659-207.093 0-144.179 139.087-261.516 310.067-261.516 151.142 0 284.959 91.955 312.579 214.261-158.475 2.076-286.706 113.487-286.706 250.32 0 19.893 3.018 39.171 8.11 57.767-1.542-0.382-3.168-0.683-4.887-0.532l0 0zM860.371 788.699c-4.875 3.673-6.935 10.007-5.188 15.852l13.804 45.903-56.647-30.993c-2.157-1.188-4.588-1.803-7.004-1.803-1.188 0-2.389 0.15-3.564 0.464-30.379 7.674-61.822 15.593-92.433 15.593-142.186 0-257.857-97.717-257.857-217.811 0-120.095 115.658-217.771 257.857-217.771 139.469 0 257.325 99.724 257.325 217.771 0 59.87-37.738 121.255-106.291 172.797l0 0zM868.181 797.178zM616.454 506.006c-16.848 0-33.696 16.971-33.696 33.792 0 16.944 16.848 33.669 33.696 33.669 25.313 0 42.038-16.725 42.038-33.669 0-16.848-16.725-33.792-42.038-33.792l0 0zM616.454 506.006zM801.58 506.006c-16.603 0-33.451 16.971-33.451 33.792 0 16.944 16.848 33.669 33.451 33.669 25.231 0 42.257-16.725 42.257-33.669 0-16.848-16.998-33.792-42.257-33.792l0 0zM801.58 506.006z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
7
src/main/resources/icons/xianxingshenglve.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M251.656 465.031a46.667 46.667 0 1 0 93.335 0.001 46.667 46.667 0 0 0-93.335 0zM465.74 465.031c0 25.774 20.893 46.667 46.666 46.667 25.774 0 46.667-20.893 46.667-46.667 0-25.773-20.893-46.666-46.667-46.666-25.773 0-46.666 20.893-46.666 46.666zM679.823 465.031a46.667 46.667 0 1 0 93.334 0.001 46.667 46.667 0 0 0-93.334 0z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 643 B |
7
src/main/resources/icons/xinzeng.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M921.6 458.752h-357.888V100.864c0-27.648-22.016-49.664-49.664-49.664s-49.664 22.016-49.664 49.664v357.888H106.496c-27.648 0-49.664 22.016-49.664 49.664s22.016 49.664 49.664 49.664h357.888v358.4c0 27.648 22.016 49.664 49.664 49.664s49.664-22.016 49.664-49.664v-358.4H921.6c27.648 0 49.664-22.016 49.664-49.664s-22.016-49.664-49.664-49.664z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 659 B |
7
src/main/resources/icons/xiugai.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M684.202667 117.248c15.893333-15.872 42.154667-15.36 58.922666 1.408l90.517334 90.517333c16.661333 16.661333 17.344 42.986667 1.429333 58.922667l-445.653333 445.653333c-7.936 7.914667-23.104 16.746667-34.218667 19.776l-143.701333 39.253334c-21.909333 5.994667-35.114667-7.104-29.568-28.949334l37.248-146.773333c2.773333-10.944 11.562667-26.346667 19.392-34.176l445.653333-445.653333zM268.736 593.066667c-2.901333 2.901333-8.106667 12.074667-9.130667 16.021333l-29.12 114.773333 111.957334-30.570666c4.437333-1.216 13.632-6.549333 16.810666-9.728l445.653334-445.653334-90.517334-90.496-445.653333 445.653334zM682.794667 178.986667l90.517333 90.517333-30.186667 30.186667-90.496-90.517334 30.165334-30.165333z m-362.026667 362.048l90.496 90.517333-30.165333 30.165333-90.517334-90.496 30.165334-30.186666zM170.666667 874.666667c0-11.776 9.429333-21.333333 21.461333-21.333334h661.077333a21.333333 21.333333 0 1 1 0 42.666667H192.128A21.333333 21.333333 0 0 1 170.666667 874.666667z"
|
||||
fill="#6E6E6E"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
6
src/main/resources/icons/yuan.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#6E6E6E" d="M0 512C0 229.230208 229.805588 0 512 0 794.769792 0 1024 229.805588 1024 512 1024 794.769792 794.194412 1024 512 1024 229.230208 1024 0 794.194412 0 512Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 464 B |
@ -1084,7 +1084,7 @@
|
||||
|
||||
#login-pane {
|
||||
-fx-background-size: 100% 100%;
|
||||
-fx-background-image: url(/images/login.png);
|
||||
-fx-background-image: url(/images/beijing.png);
|
||||
}
|
||||
|
||||
#login-text {
|
||||
|